1 /* Everything about breakpoints, for GDB.
3 Copyright (C) 1986-2019 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"
68 #include "common/format.h"
69 #include "thread-fsm.h"
70 #include "tid-parse.h"
71 #include "cli/cli-style.h"
72 #include "mi/mi-main.h"
74 /* readline include files */
75 #include "readline/readline.h"
76 #include "readline/history.h"
78 /* readline defines this. */
81 #include "mi/mi-common.h"
82 #include "extension.h"
84 #include "progspace-and-thread.h"
85 #include "common/array-view.h"
86 #include "common/gdb_optional.h"
88 /* Prototypes for local functions. */
90 static void map_breakpoint_numbers (const char *,
91 gdb::function_view<void (breakpoint *)>);
93 static void breakpoint_re_set_default (struct breakpoint *);
96 create_sals_from_location_default (const struct event_location *location,
97 struct linespec_result *canonical,
98 enum bptype type_wanted);
100 static void create_breakpoints_sal_default (struct gdbarch *,
101 struct linespec_result *,
102 gdb::unique_xmalloc_ptr<char>,
103 gdb::unique_xmalloc_ptr<char>,
105 enum bpdisp, int, int,
107 const struct breakpoint_ops *,
108 int, int, int, unsigned);
110 static std::vector<symtab_and_line> decode_location_default
111 (struct breakpoint *b, const struct event_location *location,
112 struct program_space *search_pspace);
114 static int can_use_hardware_watchpoint
115 (const std::vector<value_ref_ptr> &vals);
117 static void mention (struct breakpoint *);
119 static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
121 const struct breakpoint_ops *);
122 static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
123 const struct symtab_and_line *);
125 /* This function is used in gdbtk sources and thus can not be made
127 struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
128 struct symtab_and_line,
130 const struct breakpoint_ops *);
132 static struct breakpoint *
133 momentary_breakpoint_from_master (struct breakpoint *orig,
135 const struct breakpoint_ops *ops,
138 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
140 static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
144 static void describe_other_breakpoints (struct gdbarch *,
145 struct program_space *, CORE_ADDR,
146 struct obj_section *, int);
148 static int watchpoint_locations_match (struct bp_location *loc1,
149 struct bp_location *loc2);
151 static int breakpoint_location_address_match (struct bp_location *bl,
152 const struct address_space *aspace,
155 static int breakpoint_location_address_range_overlap (struct bp_location *,
156 const address_space *,
159 static int remove_breakpoint (struct bp_location *);
160 static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
162 static enum print_stop_action print_bp_stop_message (bpstat bs);
164 static int hw_breakpoint_used_count (void);
166 static int hw_watchpoint_use_count (struct breakpoint *);
168 static int hw_watchpoint_used_count_others (struct breakpoint *except,
170 int *other_type_used);
172 static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
175 static void free_bp_location (struct bp_location *loc);
176 static void incref_bp_location (struct bp_location *loc);
177 static void decref_bp_location (struct bp_location **loc);
179 static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
181 /* update_global_location_list's modes of operation wrt to whether to
182 insert locations now. */
183 enum ugll_insert_mode
185 /* Don't insert any breakpoint locations into the inferior, only
186 remove already-inserted locations that no longer should be
187 inserted. Functions that delete a breakpoint or breakpoints
188 should specify this mode, so that deleting a breakpoint doesn't
189 have the side effect of inserting the locations of other
190 breakpoints that are marked not-inserted, but should_be_inserted
191 returns true on them.
193 This behavior is useful is situations close to tear-down -- e.g.,
194 after an exec, while the target still has execution, but
195 breakpoint shadows of the previous executable image should *NOT*
196 be restored to the new image; or before detaching, where the
197 target still has execution and wants to delete breakpoints from
198 GDB's lists, and all breakpoints had already been removed from
202 /* May insert breakpoints iff breakpoints_should_be_inserted_now
203 claims breakpoints should be inserted now. */
206 /* Insert locations now, irrespective of
207 breakpoints_should_be_inserted_now. E.g., say all threads are
208 stopped right now, and the user did "continue". We need to
209 insert breakpoints _before_ resuming the target, but
210 UGLL_MAY_INSERT wouldn't insert them, because
211 breakpoints_should_be_inserted_now returns false at that point,
212 as no thread is running yet. */
216 static void update_global_location_list (enum ugll_insert_mode);
218 static void update_global_location_list_nothrow (enum ugll_insert_mode);
220 static int is_hardware_watchpoint (const struct breakpoint *bpt);
222 static void insert_breakpoint_locations (void);
224 static void trace_pass_command (const char *, int);
226 static void set_tracepoint_count (int num);
228 static int is_masked_watchpoint (const struct breakpoint *b);
230 static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
232 /* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
235 static int strace_marker_p (struct breakpoint *b);
237 /* The breakpoint_ops structure to be inherited by all breakpoint_ops
238 that are implemented on top of software or hardware breakpoints
239 (user breakpoints, internal and momentary breakpoints, etc.). */
240 static struct breakpoint_ops bkpt_base_breakpoint_ops;
242 /* Internal breakpoints class type. */
243 static struct breakpoint_ops internal_breakpoint_ops;
245 /* Momentary breakpoints class type. */
246 static struct breakpoint_ops momentary_breakpoint_ops;
248 /* The breakpoint_ops structure to be used in regular user created
250 struct breakpoint_ops bkpt_breakpoint_ops;
252 /* Breakpoints set on probes. */
253 static struct breakpoint_ops bkpt_probe_breakpoint_ops;
255 /* Dynamic printf class type. */
256 struct breakpoint_ops dprintf_breakpoint_ops;
258 /* The style in which to perform a dynamic printf. This is a user
259 option because different output options have different tradeoffs;
260 if GDB does the printing, there is better error handling if there
261 is a problem with any of the arguments, but using an inferior
262 function lets you have special-purpose printers and sending of
263 output to the same place as compiled-in print functions. */
265 static const char dprintf_style_gdb[] = "gdb";
266 static const char dprintf_style_call[] = "call";
267 static const char dprintf_style_agent[] = "agent";
268 static const char *const dprintf_style_enums[] = {
274 static const char *dprintf_style = dprintf_style_gdb;
276 /* The function to use for dynamic printf if the preferred style is to
277 call into the inferior. The value is simply a string that is
278 copied into the command, so it can be anything that GDB can
279 evaluate to a callable address, not necessarily a function name. */
281 static char *dprintf_function;
283 /* The channel to use for dynamic printf if the preferred style is to
284 call into the inferior; if a nonempty string, it will be passed to
285 the call as the first argument, with the format string as the
286 second. As with the dprintf function, this can be anything that
287 GDB knows how to evaluate, so in addition to common choices like
288 "stderr", this could be an app-specific expression like
289 "mystreams[curlogger]". */
291 static char *dprintf_channel;
293 /* True if dprintf commands should continue to operate even if GDB
295 static int disconnected_dprintf = 1;
297 struct command_line *
298 breakpoint_commands (struct breakpoint *b)
300 return b->commands ? b->commands.get () : NULL;
303 /* Flag indicating that a command has proceeded the inferior past the
304 current breakpoint. */
306 static int breakpoint_proceeded;
309 bpdisp_text (enum bpdisp disp)
311 /* NOTE: the following values are a part of MI protocol and
312 represent values of 'disp' field returned when inferior stops at
314 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
316 return bpdisps[(int) disp];
319 /* Prototypes for exported functions. */
320 /* If FALSE, gdb will not use hardware support for watchpoints, even
321 if such is available. */
322 static int can_use_hw_watchpoints;
325 show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
326 struct cmd_list_element *c,
329 fprintf_filtered (file,
330 _("Debugger's willingness to use "
331 "watchpoint hardware is %s.\n"),
335 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
336 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
337 for unrecognized breakpoint locations.
338 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
339 static enum auto_boolean pending_break_support;
341 show_pending_break_support (struct ui_file *file, int from_tty,
342 struct cmd_list_element *c,
345 fprintf_filtered (file,
346 _("Debugger's behavior regarding "
347 "pending breakpoints is %s.\n"),
351 /* If 1, gdb will automatically use hardware breakpoints for breakpoints
352 set with "break" but falling in read-only memory.
353 If 0, gdb will warn about such breakpoints, but won't automatically
354 use hardware breakpoints. */
355 static int automatic_hardware_breakpoints;
357 show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
358 struct cmd_list_element *c,
361 fprintf_filtered (file,
362 _("Automatic usage of hardware breakpoints is %s.\n"),
366 /* If on, GDB keeps breakpoints inserted even if the inferior is
367 stopped, and immediately inserts any new breakpoints as soon as
368 they're created. If off (default), GDB keeps breakpoints off of
369 the target as long as possible. That is, it delays inserting
370 breakpoints until the next resume, and removes them again when the
371 target fully stops. This is a bit safer in case GDB crashes while
372 processing user input. */
373 static int always_inserted_mode = 0;
376 show_always_inserted_mode (struct ui_file *file, int from_tty,
377 struct cmd_list_element *c, const char *value)
379 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
383 /* See breakpoint.h. */
386 breakpoints_should_be_inserted_now (void)
388 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
390 /* If breakpoints are global, they should be inserted even if no
391 thread under gdb's control is running, or even if there are
392 no threads under GDB's control yet. */
395 else if (target_has_execution)
397 if (always_inserted_mode)
399 /* The user wants breakpoints inserted even if all threads
404 if (threads_are_executing ())
407 /* Don't remove breakpoints yet if, even though all threads are
408 stopped, we still have events to process. */
409 for (thread_info *tp : all_non_exited_threads ())
411 && tp->suspend.waitstatus_pending_p)
417 static const char condition_evaluation_both[] = "host or target";
419 /* Modes for breakpoint condition evaluation. */
420 static const char condition_evaluation_auto[] = "auto";
421 static const char condition_evaluation_host[] = "host";
422 static const char condition_evaluation_target[] = "target";
423 static const char *const condition_evaluation_enums[] = {
424 condition_evaluation_auto,
425 condition_evaluation_host,
426 condition_evaluation_target,
430 /* Global that holds the current mode for breakpoint condition evaluation. */
431 static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
433 /* Global that we use to display information to the user (gets its value from
434 condition_evaluation_mode_1. */
435 static const char *condition_evaluation_mode = condition_evaluation_auto;
437 /* Translate a condition evaluation mode MODE into either "host"
438 or "target". This is used mostly to translate from "auto" to the
439 real setting that is being used. It returns the translated
443 translate_condition_evaluation_mode (const char *mode)
445 if (mode == condition_evaluation_auto)
447 if (target_supports_evaluation_of_breakpoint_conditions ())
448 return condition_evaluation_target;
450 return condition_evaluation_host;
456 /* Discovers what condition_evaluation_auto translates to. */
459 breakpoint_condition_evaluation_mode (void)
461 return translate_condition_evaluation_mode (condition_evaluation_mode);
464 /* Return true if GDB should evaluate breakpoint conditions or false
468 gdb_evaluates_breakpoint_condition_p (void)
470 const char *mode = breakpoint_condition_evaluation_mode ();
472 return (mode == condition_evaluation_host);
475 /* Are we executing breakpoint commands? */
476 static int executing_breakpoint_commands;
478 /* Are overlay event breakpoints enabled? */
479 static int overlay_events_enabled;
481 /* See description in breakpoint.h. */
482 int target_exact_watchpoints = 0;
484 /* Walk the following statement or block through all breakpoints.
485 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
486 current breakpoint. */
488 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
490 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
491 for (B = breakpoint_chain; \
492 B ? (TMP=B->next, 1): 0; \
495 /* Similar iterator for the low-level breakpoints. SAFE variant is
496 not provided so update_global_location_list must not be called
497 while executing the block of ALL_BP_LOCATIONS. */
499 #define ALL_BP_LOCATIONS(B,BP_TMP) \
500 for (BP_TMP = bp_locations; \
501 BP_TMP < bp_locations + bp_locations_count && (B = *BP_TMP);\
504 /* Iterates through locations with address ADDRESS for the currently selected
505 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
506 to where the loop should start from.
507 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
508 appropriate location to start with. */
510 #define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
511 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
512 BP_LOCP_TMP = BP_LOCP_START; \
514 && (BP_LOCP_TMP < bp_locations + bp_locations_count \
515 && (*BP_LOCP_TMP)->address == ADDRESS); \
518 /* Iterator for tracepoints only. */
520 #define ALL_TRACEPOINTS(B) \
521 for (B = breakpoint_chain; B; B = B->next) \
522 if (is_tracepoint (B))
524 /* Chains of all breakpoints defined. */
526 struct breakpoint *breakpoint_chain;
528 /* Array is sorted by bp_locations_compare - primarily by the ADDRESS. */
530 static struct bp_location **bp_locations;
532 /* Number of elements of BP_LOCATIONS. */
534 static unsigned bp_locations_count;
536 /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
537 ADDRESS for the current elements of BP_LOCATIONS which get a valid
538 result from bp_location_has_shadow. You can use it for roughly
539 limiting the subrange of BP_LOCATIONS to scan for shadow bytes for
540 an address you need to read. */
542 static CORE_ADDR bp_locations_placed_address_before_address_max;
544 /* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
545 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
546 BP_LOCATIONS which get a valid result from bp_location_has_shadow.
547 You can use it for roughly limiting the subrange of BP_LOCATIONS to
548 scan for shadow bytes for an address you need to read. */
550 static CORE_ADDR bp_locations_shadow_len_after_address_max;
552 /* The locations that no longer correspond to any breakpoint, unlinked
553 from the bp_locations array, but for which a hit may still be
554 reported by a target. */
555 static std::vector<bp_location *> moribund_locations;
557 /* Number of last breakpoint made. */
559 static int breakpoint_count;
561 /* The value of `breakpoint_count' before the last command that
562 created breakpoints. If the last (break-like) command created more
563 than one breakpoint, then the difference between BREAKPOINT_COUNT
564 and PREV_BREAKPOINT_COUNT is more than one. */
565 static int prev_breakpoint_count;
567 /* Number of last tracepoint made. */
569 static int tracepoint_count;
571 static struct cmd_list_element *breakpoint_set_cmdlist;
572 static struct cmd_list_element *breakpoint_show_cmdlist;
573 struct cmd_list_element *save_cmdlist;
575 /* See declaration at breakpoint.h. */
578 breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
581 struct breakpoint *b = NULL;
585 if (func (b, user_data) != 0)
592 /* Return whether a breakpoint is an active enabled breakpoint. */
594 breakpoint_enabled (struct breakpoint *b)
596 return (b->enable_state == bp_enabled);
599 /* Set breakpoint count to NUM. */
602 set_breakpoint_count (int num)
604 prev_breakpoint_count = breakpoint_count;
605 breakpoint_count = num;
606 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
609 /* Used by `start_rbreak_breakpoints' below, to record the current
610 breakpoint count before "rbreak" creates any breakpoint. */
611 static int rbreak_start_breakpoint_count;
613 /* Called at the start an "rbreak" command to record the first
616 scoped_rbreak_breakpoints::scoped_rbreak_breakpoints ()
618 rbreak_start_breakpoint_count = breakpoint_count;
621 /* Called at the end of an "rbreak" command to record the last
624 scoped_rbreak_breakpoints::~scoped_rbreak_breakpoints ()
626 prev_breakpoint_count = rbreak_start_breakpoint_count;
629 /* Used in run_command to zero the hit count when a new run starts. */
632 clear_breakpoint_hit_counts (void)
634 struct breakpoint *b;
641 /* Return the breakpoint with the specified number, or NULL
642 if the number does not refer to an existing breakpoint. */
645 get_breakpoint (int num)
647 struct breakpoint *b;
650 if (b->number == num)
658 /* Mark locations as "conditions have changed" in case the target supports
659 evaluating conditions on its side. */
662 mark_breakpoint_modified (struct breakpoint *b)
664 struct bp_location *loc;
666 /* This is only meaningful if the target is
667 evaluating conditions and if the user has
668 opted for condition evaluation on the target's
670 if (gdb_evaluates_breakpoint_condition_p ()
671 || !target_supports_evaluation_of_breakpoint_conditions ())
674 if (!is_breakpoint (b))
677 for (loc = b->loc; loc; loc = loc->next)
678 loc->condition_changed = condition_modified;
681 /* Mark location as "conditions have changed" in case the target supports
682 evaluating conditions on its side. */
685 mark_breakpoint_location_modified (struct bp_location *loc)
687 /* This is only meaningful if the target is
688 evaluating conditions and if the user has
689 opted for condition evaluation on the target's
691 if (gdb_evaluates_breakpoint_condition_p ()
692 || !target_supports_evaluation_of_breakpoint_conditions ())
696 if (!is_breakpoint (loc->owner))
699 loc->condition_changed = condition_modified;
702 /* Sets the condition-evaluation mode using the static global
703 condition_evaluation_mode. */
706 set_condition_evaluation_mode (const char *args, int from_tty,
707 struct cmd_list_element *c)
709 const char *old_mode, *new_mode;
711 if ((condition_evaluation_mode_1 == condition_evaluation_target)
712 && !target_supports_evaluation_of_breakpoint_conditions ())
714 condition_evaluation_mode_1 = condition_evaluation_mode;
715 warning (_("Target does not support breakpoint condition evaluation.\n"
716 "Using host evaluation mode instead."));
720 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
721 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
723 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
724 settings was "auto". */
725 condition_evaluation_mode = condition_evaluation_mode_1;
727 /* Only update the mode if the user picked a different one. */
728 if (new_mode != old_mode)
730 struct bp_location *loc, **loc_tmp;
731 /* If the user switched to a different evaluation mode, we
732 need to synch the changes with the target as follows:
734 "host" -> "target": Send all (valid) conditions to the target.
735 "target" -> "host": Remove all the conditions from the target.
738 if (new_mode == condition_evaluation_target)
740 /* Mark everything modified and synch conditions with the
742 ALL_BP_LOCATIONS (loc, loc_tmp)
743 mark_breakpoint_location_modified (loc);
747 /* Manually mark non-duplicate locations to synch conditions
748 with the target. We do this to remove all the conditions the
749 target knows about. */
750 ALL_BP_LOCATIONS (loc, loc_tmp)
751 if (is_breakpoint (loc->owner) && loc->inserted)
752 loc->needs_update = 1;
756 update_global_location_list (UGLL_MAY_INSERT);
762 /* Shows the current mode of breakpoint condition evaluation. Explicitly shows
763 what "auto" is translating to. */
766 show_condition_evaluation_mode (struct ui_file *file, int from_tty,
767 struct cmd_list_element *c, const char *value)
769 if (condition_evaluation_mode == condition_evaluation_auto)
770 fprintf_filtered (file,
771 _("Breakpoint condition evaluation "
772 "mode is %s (currently %s).\n"),
774 breakpoint_condition_evaluation_mode ());
776 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
780 /* A comparison function for bp_location AP and BP that is used by
781 bsearch. This comparison function only cares about addresses, unlike
782 the more general bp_locations_compare function. */
785 bp_locations_compare_addrs (const void *ap, const void *bp)
787 const struct bp_location *a = *(const struct bp_location **) ap;
788 const struct bp_location *b = *(const struct bp_location **) bp;
790 if (a->address == b->address)
793 return ((a->address > b->address) - (a->address < b->address));
796 /* Helper function to skip all bp_locations with addresses
797 less than ADDRESS. It returns the first bp_location that
798 is greater than or equal to ADDRESS. If none is found, just
801 static struct bp_location **
802 get_first_locp_gte_addr (CORE_ADDR address)
804 struct bp_location dummy_loc;
805 struct bp_location *dummy_locp = &dummy_loc;
806 struct bp_location **locp_found = NULL;
808 /* Initialize the dummy location's address field. */
809 dummy_loc.address = address;
811 /* Find a close match to the first location at ADDRESS. */
812 locp_found = ((struct bp_location **)
813 bsearch (&dummy_locp, bp_locations, bp_locations_count,
814 sizeof (struct bp_location **),
815 bp_locations_compare_addrs));
817 /* Nothing was found, nothing left to do. */
818 if (locp_found == NULL)
821 /* We may have found a location that is at ADDRESS but is not the first in the
822 location's list. Go backwards (if possible) and locate the first one. */
823 while ((locp_found - 1) >= bp_locations
824 && (*(locp_found - 1))->address == address)
831 set_breakpoint_condition (struct breakpoint *b, const char *exp,
834 xfree (b->cond_string);
835 b->cond_string = NULL;
837 if (is_watchpoint (b))
839 struct watchpoint *w = (struct watchpoint *) b;
841 w->cond_exp.reset ();
845 struct bp_location *loc;
847 for (loc = b->loc; loc; loc = loc->next)
851 /* No need to free the condition agent expression
852 bytecode (if we have one). We will handle this
853 when we go through update_global_location_list. */
860 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
864 const char *arg = exp;
866 /* I don't know if it matters whether this is the string the user
867 typed in or the decompiled expression. */
868 b->cond_string = xstrdup (arg);
869 b->condition_not_parsed = 0;
871 if (is_watchpoint (b))
873 struct watchpoint *w = (struct watchpoint *) b;
875 innermost_block_tracker tracker;
877 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0, &tracker);
879 error (_("Junk at end of expression"));
880 w->cond_exp_valid_block = tracker.block ();
884 struct bp_location *loc;
886 for (loc = b->loc; loc; loc = loc->next)
890 parse_exp_1 (&arg, loc->address,
891 block_for_pc (loc->address), 0);
893 error (_("Junk at end of expression"));
897 mark_breakpoint_modified (b);
899 gdb::observers::breakpoint_modified.notify (b);
902 /* Completion for the "condition" command. */
905 condition_completer (struct cmd_list_element *cmd,
906 completion_tracker &tracker,
907 const char *text, const char *word)
911 text = skip_spaces (text);
912 space = skip_to_space (text);
916 struct breakpoint *b;
920 /* We don't support completion of history indices. */
921 if (!isdigit (text[1]))
922 complete_internalvar (tracker, &text[1]);
926 /* We're completing the breakpoint number. */
933 xsnprintf (number, sizeof (number), "%d", b->number);
935 if (strncmp (number, text, len) == 0)
936 tracker.add_completion (make_unique_xstrdup (number));
942 /* We're completing the expression part. */
943 text = skip_spaces (space);
944 expression_completer (cmd, tracker, text, word);
947 /* condition N EXP -- set break condition of breakpoint N to EXP. */
950 condition_command (const char *arg, int from_tty)
952 struct breakpoint *b;
957 error_no_arg (_("breakpoint number"));
960 bnum = get_number (&p);
962 error (_("Bad breakpoint argument: '%s'"), arg);
965 if (b->number == bnum)
967 /* Check if this breakpoint has a "stop" method implemented in an
968 extension language. This method and conditions entered into GDB
969 from the CLI are mutually exclusive. */
970 const struct extension_language_defn *extlang
971 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
975 error (_("Only one stop condition allowed. There is currently"
976 " a %s stop condition defined for this breakpoint."),
977 ext_lang_capitalized_name (extlang));
979 set_breakpoint_condition (b, p, from_tty);
981 if (is_breakpoint (b))
982 update_global_location_list (UGLL_MAY_INSERT);
987 error (_("No breakpoint number %d."), bnum);
990 /* Check that COMMAND do not contain commands that are suitable
991 only for tracepoints and not suitable for ordinary breakpoints.
992 Throw if any such commands is found. */
995 check_no_tracepoint_commands (struct command_line *commands)
997 struct command_line *c;
999 for (c = commands; c; c = c->next)
1001 if (c->control_type == while_stepping_control)
1002 error (_("The 'while-stepping' command can "
1003 "only be used for tracepoints"));
1005 check_no_tracepoint_commands (c->body_list_0.get ());
1006 check_no_tracepoint_commands (c->body_list_1.get ());
1008 /* Not that command parsing removes leading whitespace and comment
1009 lines and also empty lines. So, we only need to check for
1010 command directly. */
1011 if (strstr (c->line, "collect ") == c->line)
1012 error (_("The 'collect' command can only be used for tracepoints"));
1014 if (strstr (c->line, "teval ") == c->line)
1015 error (_("The 'teval' command can only be used for tracepoints"));
1019 struct longjmp_breakpoint : public breakpoint
1021 ~longjmp_breakpoint () override;
1024 /* Encapsulate tests for different types of tracepoints. */
1027 is_tracepoint_type (bptype type)
1029 return (type == bp_tracepoint
1030 || type == bp_fast_tracepoint
1031 || type == bp_static_tracepoint);
1035 is_longjmp_type (bptype type)
1037 return type == bp_longjmp || type == bp_exception;
1041 is_tracepoint (const struct breakpoint *b)
1043 return is_tracepoint_type (b->type);
1046 /* Factory function to create an appropriate instance of breakpoint given
1049 static std::unique_ptr<breakpoint>
1050 new_breakpoint_from_type (bptype type)
1054 if (is_tracepoint_type (type))
1055 b = new tracepoint ();
1056 else if (is_longjmp_type (type))
1057 b = new longjmp_breakpoint ();
1059 b = new breakpoint ();
1061 return std::unique_ptr<breakpoint> (b);
1064 /* A helper function that validates that COMMANDS are valid for a
1065 breakpoint. This function will throw an exception if a problem is
1069 validate_commands_for_breakpoint (struct breakpoint *b,
1070 struct command_line *commands)
1072 if (is_tracepoint (b))
1074 struct tracepoint *t = (struct tracepoint *) b;
1075 struct command_line *c;
1076 struct command_line *while_stepping = 0;
1078 /* Reset the while-stepping step count. The previous commands
1079 might have included a while-stepping action, while the new
1083 /* We need to verify that each top-level element of commands is
1084 valid for tracepoints, that there's at most one
1085 while-stepping element, and that the while-stepping's body
1086 has valid tracing commands excluding nested while-stepping.
1087 We also need to validate the tracepoint action line in the
1088 context of the tracepoint --- validate_actionline actually
1089 has side effects, like setting the tracepoint's
1090 while-stepping STEP_COUNT, in addition to checking if the
1091 collect/teval actions parse and make sense in the
1092 tracepoint's context. */
1093 for (c = commands; c; c = c->next)
1095 if (c->control_type == while_stepping_control)
1097 if (b->type == bp_fast_tracepoint)
1098 error (_("The 'while-stepping' command "
1099 "cannot be used for fast tracepoint"));
1100 else if (b->type == bp_static_tracepoint)
1101 error (_("The 'while-stepping' command "
1102 "cannot be used for static tracepoint"));
1105 error (_("The 'while-stepping' command "
1106 "can be used only once"));
1111 validate_actionline (c->line, b);
1115 struct command_line *c2;
1117 gdb_assert (while_stepping->body_list_1 == nullptr);
1118 c2 = while_stepping->body_list_0.get ();
1119 for (; c2; c2 = c2->next)
1121 if (c2->control_type == while_stepping_control)
1122 error (_("The 'while-stepping' command cannot be nested"));
1128 check_no_tracepoint_commands (commands);
1132 /* Return a vector of all the static tracepoints set at ADDR. The
1133 caller is responsible for releasing the vector. */
1135 std::vector<breakpoint *>
1136 static_tracepoints_here (CORE_ADDR addr)
1138 struct breakpoint *b;
1139 std::vector<breakpoint *> found;
1140 struct bp_location *loc;
1143 if (b->type == bp_static_tracepoint)
1145 for (loc = b->loc; loc; loc = loc->next)
1146 if (loc->address == addr)
1147 found.push_back (b);
1153 /* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
1154 validate that only allowed commands are included. */
1157 breakpoint_set_commands (struct breakpoint *b,
1158 counted_command_line &&commands)
1160 validate_commands_for_breakpoint (b, commands.get ());
1162 b->commands = std::move (commands);
1163 gdb::observers::breakpoint_modified.notify (b);
1166 /* Set the internal `silent' flag on the breakpoint. Note that this
1167 is not the same as the "silent" that may appear in the breakpoint's
1171 breakpoint_set_silent (struct breakpoint *b, int silent)
1173 int old_silent = b->silent;
1176 if (old_silent != silent)
1177 gdb::observers::breakpoint_modified.notify (b);
1180 /* Set the thread for this breakpoint. If THREAD is -1, make the
1181 breakpoint work for any thread. */
1184 breakpoint_set_thread (struct breakpoint *b, int thread)
1186 int old_thread = b->thread;
1189 if (old_thread != thread)
1190 gdb::observers::breakpoint_modified.notify (b);
1193 /* Set the task for this breakpoint. If TASK is 0, make the
1194 breakpoint work for any task. */
1197 breakpoint_set_task (struct breakpoint *b, int task)
1199 int old_task = b->task;
1202 if (old_task != task)
1203 gdb::observers::breakpoint_modified.notify (b);
1207 commands_command_1 (const char *arg, int from_tty,
1208 struct command_line *control)
1210 counted_command_line cmd;
1211 /* cmd_read will be true once we have read cmd. Note that cmd might still be
1212 NULL after the call to read_command_lines if the user provides an empty
1213 list of command by just typing "end". */
1214 bool cmd_read = false;
1216 std::string new_arg;
1218 if (arg == NULL || !*arg)
1220 if (breakpoint_count - prev_breakpoint_count > 1)
1221 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1223 else if (breakpoint_count > 0)
1224 new_arg = string_printf ("%d", breakpoint_count);
1225 arg = new_arg.c_str ();
1228 map_breakpoint_numbers
1229 (arg, [&] (breakpoint *b)
1233 gdb_assert (cmd == NULL);
1234 if (control != NULL)
1235 cmd = control->body_list_0;
1239 = string_printf (_("Type commands for breakpoint(s) "
1240 "%s, one per line."),
1243 auto do_validate = [=] (const char *line)
1245 validate_actionline (line, b);
1247 gdb::function_view<void (const char *)> validator;
1248 if (is_tracepoint (b))
1249 validator = do_validate;
1251 cmd = read_command_lines (str.c_str (), from_tty, 1, validator);
1256 /* If a breakpoint was on the list more than once, we don't need to
1258 if (b->commands != cmd)
1260 validate_commands_for_breakpoint (b, cmd.get ());
1262 gdb::observers::breakpoint_modified.notify (b);
1268 commands_command (const char *arg, int from_tty)
1270 commands_command_1 (arg, from_tty, NULL);
1273 /* Like commands_command, but instead of reading the commands from
1274 input stream, takes them from an already parsed command structure.
1276 This is used by cli-script.c to DTRT with breakpoint commands
1277 that are part of if and while bodies. */
1278 enum command_control_type
1279 commands_from_control_command (const char *arg, struct command_line *cmd)
1281 commands_command_1 (arg, 0, cmd);
1282 return simple_control;
1285 /* Return non-zero if BL->TARGET_INFO contains valid information. */
1288 bp_location_has_shadow (struct bp_location *bl)
1290 if (bl->loc_type != bp_loc_software_breakpoint)
1294 if (bl->target_info.shadow_len == 0)
1295 /* BL isn't valid, or doesn't shadow memory. */
1300 /* Update BUF, which is LEN bytes read from the target address
1301 MEMADDR, by replacing a memory breakpoint with its shadowed
1304 If READBUF is not NULL, this buffer must not overlap with the of
1305 the breakpoint location's shadow_contents buffer. Otherwise, a
1306 failed assertion internal error will be raised. */
1309 one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1310 const gdb_byte *writebuf_org,
1311 ULONGEST memaddr, LONGEST len,
1312 struct bp_target_info *target_info,
1313 struct gdbarch *gdbarch)
1315 /* Now do full processing of the found relevant range of elements. */
1316 CORE_ADDR bp_addr = 0;
1320 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1321 current_program_space->aspace, 0))
1323 /* The breakpoint is inserted in a different address space. */
1327 /* Addresses and length of the part of the breakpoint that
1329 bp_addr = target_info->placed_address;
1330 bp_size = target_info->shadow_len;
1332 if (bp_addr + bp_size <= memaddr)
1334 /* The breakpoint is entirely before the chunk of memory we are
1339 if (bp_addr >= memaddr + len)
1341 /* The breakpoint is entirely after the chunk of memory we are
1346 /* Offset within shadow_contents. */
1347 if (bp_addr < memaddr)
1349 /* Only copy the second part of the breakpoint. */
1350 bp_size -= memaddr - bp_addr;
1351 bptoffset = memaddr - bp_addr;
1355 if (bp_addr + bp_size > memaddr + len)
1357 /* Only copy the first part of the breakpoint. */
1358 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1361 if (readbuf != NULL)
1363 /* Verify that the readbuf buffer does not overlap with the
1364 shadow_contents buffer. */
1365 gdb_assert (target_info->shadow_contents >= readbuf + len
1366 || readbuf >= (target_info->shadow_contents
1367 + target_info->shadow_len));
1369 /* Update the read buffer with this inserted breakpoint's
1371 memcpy (readbuf + bp_addr - memaddr,
1372 target_info->shadow_contents + bptoffset, bp_size);
1376 const unsigned char *bp;
1377 CORE_ADDR addr = target_info->reqstd_address;
1380 /* Update the shadow with what we want to write to memory. */
1381 memcpy (target_info->shadow_contents + bptoffset,
1382 writebuf_org + bp_addr - memaddr, bp_size);
1384 /* Determine appropriate breakpoint contents and size for this
1386 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
1388 /* Update the final write buffer with this inserted
1389 breakpoint's INSN. */
1390 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1394 /* Update BUF, which is LEN bytes read from the target address MEMADDR,
1395 by replacing any memory breakpoints with their shadowed contents.
1397 If READBUF is not NULL, this buffer must not overlap with any of
1398 the breakpoint location's shadow_contents buffers. Otherwise,
1399 a failed assertion internal error will be raised.
1401 The range of shadowed area by each bp_location is:
1402 bl->address - bp_locations_placed_address_before_address_max
1403 up to bl->address + bp_locations_shadow_len_after_address_max
1404 The range we were requested to resolve shadows for is:
1405 memaddr ... memaddr + len
1406 Thus the safe cutoff boundaries for performance optimization are
1407 memaddr + len <= (bl->address
1408 - bp_locations_placed_address_before_address_max)
1410 bl->address + bp_locations_shadow_len_after_address_max <= memaddr */
1413 breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1414 const gdb_byte *writebuf_org,
1415 ULONGEST memaddr, LONGEST len)
1417 /* Left boundary, right boundary and median element of our binary
1419 unsigned bc_l, bc_r, bc;
1421 /* Find BC_L which is a leftmost element which may affect BUF
1422 content. It is safe to report lower value but a failure to
1423 report higher one. */
1426 bc_r = bp_locations_count;
1427 while (bc_l + 1 < bc_r)
1429 struct bp_location *bl;
1431 bc = (bc_l + bc_r) / 2;
1432 bl = bp_locations[bc];
1434 /* Check first BL->ADDRESS will not overflow due to the added
1435 constant. Then advance the left boundary only if we are sure
1436 the BC element can in no way affect the BUF content (MEMADDR
1437 to MEMADDR + LEN range).
1439 Use the BP_LOCATIONS_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1440 offset so that we cannot miss a breakpoint with its shadow
1441 range tail still reaching MEMADDR. */
1443 if ((bl->address + bp_locations_shadow_len_after_address_max
1445 && (bl->address + bp_locations_shadow_len_after_address_max
1452 /* Due to the binary search above, we need to make sure we pick the
1453 first location that's at BC_L's address. E.g., if there are
1454 multiple locations at the same address, BC_L may end up pointing
1455 at a duplicate location, and miss the "master"/"inserted"
1456 location. Say, given locations L1, L2 and L3 at addresses A and
1459 L1@A, L2@A, L3@B, ...
1461 BC_L could end up pointing at location L2, while the "master"
1462 location could be L1. Since the `loc->inserted' flag is only set
1463 on "master" locations, we'd forget to restore the shadow of L1
1466 && bp_locations[bc_l]->address == bp_locations[bc_l - 1]->address)
1469 /* Now do full processing of the found relevant range of elements. */
1471 for (bc = bc_l; bc < bp_locations_count; bc++)
1473 struct bp_location *bl = bp_locations[bc];
1475 /* bp_location array has BL->OWNER always non-NULL. */
1476 if (bl->owner->type == bp_none)
1477 warning (_("reading through apparently deleted breakpoint #%d?"),
1480 /* Performance optimization: any further element can no longer affect BUF
1483 if (bl->address >= bp_locations_placed_address_before_address_max
1484 && memaddr + len <= (bl->address
1485 - bp_locations_placed_address_before_address_max))
1488 if (!bp_location_has_shadow (bl))
1491 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1492 memaddr, len, &bl->target_info, bl->gdbarch);
1498 /* Return true if BPT is either a software breakpoint or a hardware
1502 is_breakpoint (const struct breakpoint *bpt)
1504 return (bpt->type == bp_breakpoint
1505 || bpt->type == bp_hardware_breakpoint
1506 || bpt->type == bp_dprintf);
1509 /* Return true if BPT is of any hardware watchpoint kind. */
1512 is_hardware_watchpoint (const struct breakpoint *bpt)
1514 return (bpt->type == bp_hardware_watchpoint
1515 || bpt->type == bp_read_watchpoint
1516 || bpt->type == bp_access_watchpoint);
1519 /* Return true if BPT is of any watchpoint kind, hardware or
1523 is_watchpoint (const struct breakpoint *bpt)
1525 return (is_hardware_watchpoint (bpt)
1526 || bpt->type == bp_watchpoint);
1529 /* Returns true if the current thread and its running state are safe
1530 to evaluate or update watchpoint B. Watchpoints on local
1531 expressions need to be evaluated in the context of the thread that
1532 was current when the watchpoint was created, and, that thread needs
1533 to be stopped to be able to select the correct frame context.
1534 Watchpoints on global expressions can be evaluated on any thread,
1535 and in any state. It is presently left to the target allowing
1536 memory accesses when threads are running. */
1539 watchpoint_in_thread_scope (struct watchpoint *b)
1541 return (b->pspace == current_program_space
1542 && (b->watchpoint_thread == null_ptid
1543 || (inferior_ptid == b->watchpoint_thread
1544 && !inferior_thread ()->executing)));
1547 /* Set watchpoint B to disp_del_at_next_stop, even including its possible
1548 associated bp_watchpoint_scope breakpoint. */
1551 watchpoint_del_at_next_stop (struct watchpoint *w)
1553 if (w->related_breakpoint != w)
1555 gdb_assert (w->related_breakpoint->type == bp_watchpoint_scope);
1556 gdb_assert (w->related_breakpoint->related_breakpoint == w);
1557 w->related_breakpoint->disposition = disp_del_at_next_stop;
1558 w->related_breakpoint->related_breakpoint = w->related_breakpoint;
1559 w->related_breakpoint = w;
1561 w->disposition = disp_del_at_next_stop;
1564 /* Extract a bitfield value from value VAL using the bit parameters contained in
1567 static struct value *
1568 extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1570 struct value *bit_val;
1575 bit_val = allocate_value (value_type (val));
1577 unpack_value_bitfield (bit_val,
1580 value_contents_for_printing (val),
1587 /* Allocate a dummy location and add it to B, which must be a software
1588 watchpoint. This is required because even if a software watchpoint
1589 is not watching any memory, bpstat_stop_status requires a location
1590 to be able to report stops. */
1593 software_watchpoint_add_no_memory_location (struct breakpoint *b,
1594 struct program_space *pspace)
1596 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1598 b->loc = allocate_bp_location (b);
1599 b->loc->pspace = pspace;
1600 b->loc->address = -1;
1601 b->loc->length = -1;
1604 /* Returns true if B is a software watchpoint that is not watching any
1605 memory (e.g., "watch $pc"). */
1608 is_no_memory_software_watchpoint (struct breakpoint *b)
1610 return (b->type == bp_watchpoint
1612 && b->loc->next == NULL
1613 && b->loc->address == -1
1614 && b->loc->length == -1);
1617 /* Assuming that B is a watchpoint:
1618 - Reparse watchpoint expression, if REPARSE is non-zero
1619 - Evaluate expression and store the result in B->val
1620 - Evaluate the condition if there is one, and store the result
1622 - Update the list of values that must be watched in B->loc.
1624 If the watchpoint disposition is disp_del_at_next_stop, then do
1625 nothing. If this is local watchpoint that is out of scope, delete
1628 Even with `set breakpoint always-inserted on' the watchpoints are
1629 removed + inserted on each stop here. Normal breakpoints must
1630 never be removed because they might be missed by a running thread
1631 when debugging in non-stop mode. On the other hand, hardware
1632 watchpoints (is_hardware_watchpoint; processed here) are specific
1633 to each LWP since they are stored in each LWP's hardware debug
1634 registers. Therefore, such LWP must be stopped first in order to
1635 be able to modify its hardware watchpoints.
1637 Hardware watchpoints must be reset exactly once after being
1638 presented to the user. It cannot be done sooner, because it would
1639 reset the data used to present the watchpoint hit to the user. And
1640 it must not be done later because it could display the same single
1641 watchpoint hit during multiple GDB stops. Note that the latter is
1642 relevant only to the hardware watchpoint types bp_read_watchpoint
1643 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1644 not user-visible - its hit is suppressed if the memory content has
1647 The following constraints influence the location where we can reset
1648 hardware watchpoints:
1650 * target_stopped_by_watchpoint and target_stopped_data_address are
1651 called several times when GDB stops.
1654 * Multiple hardware watchpoints can be hit at the same time,
1655 causing GDB to stop. GDB only presents one hardware watchpoint
1656 hit at a time as the reason for stopping, and all the other hits
1657 are presented later, one after the other, each time the user
1658 requests the execution to be resumed. Execution is not resumed
1659 for the threads still having pending hit event stored in
1660 LWP_INFO->STATUS. While the watchpoint is already removed from
1661 the inferior on the first stop the thread hit event is kept being
1662 reported from its cached value by linux_nat_stopped_data_address
1663 until the real thread resume happens after the watchpoint gets
1664 presented and thus its LWP_INFO->STATUS gets reset.
1666 Therefore the hardware watchpoint hit can get safely reset on the
1667 watchpoint removal from inferior. */
1670 update_watchpoint (struct watchpoint *b, int reparse)
1672 int within_current_scope;
1673 struct frame_id saved_frame_id;
1676 /* If this is a local watchpoint, we only want to check if the
1677 watchpoint frame is in scope if the current thread is the thread
1678 that was used to create the watchpoint. */
1679 if (!watchpoint_in_thread_scope (b))
1682 if (b->disposition == disp_del_at_next_stop)
1687 /* Determine if the watchpoint is within scope. */
1688 if (b->exp_valid_block == NULL)
1689 within_current_scope = 1;
1692 struct frame_info *fi = get_current_frame ();
1693 struct gdbarch *frame_arch = get_frame_arch (fi);
1694 CORE_ADDR frame_pc = get_frame_pc (fi);
1696 /* If we're at a point where the stack has been destroyed
1697 (e.g. in a function epilogue), unwinding may not work
1698 properly. Do not attempt to recreate locations at this
1699 point. See similar comments in watchpoint_check. */
1700 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
1703 /* Save the current frame's ID so we can restore it after
1704 evaluating the watchpoint expression on its own frame. */
1705 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1706 took a frame parameter, so that we didn't have to change the
1709 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1711 fi = frame_find_by_id (b->watchpoint_frame);
1712 within_current_scope = (fi != NULL);
1713 if (within_current_scope)
1717 /* We don't free locations. They are stored in the bp_location array
1718 and update_global_location_list will eventually delete them and
1719 remove breakpoints if needed. */
1722 if (within_current_scope && reparse)
1727 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1728 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
1729 /* If the meaning of expression itself changed, the old value is
1730 no longer relevant. We don't want to report a watchpoint hit
1731 to the user when the old value and the new value may actually
1732 be completely different objects. */
1736 /* Note that unlike with breakpoints, the watchpoint's condition
1737 expression is stored in the breakpoint object, not in the
1738 locations (re)created below. */
1739 if (b->cond_string != NULL)
1741 b->cond_exp.reset ();
1744 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
1748 /* If we failed to parse the expression, for example because
1749 it refers to a global variable in a not-yet-loaded shared library,
1750 don't try to insert watchpoint. We don't automatically delete
1751 such watchpoint, though, since failure to parse expression
1752 is different from out-of-scope watchpoint. */
1753 if (!target_has_execution)
1755 /* Without execution, memory can't change. No use to try and
1756 set watchpoint locations. The watchpoint will be reset when
1757 the target gains execution, through breakpoint_re_set. */
1758 if (!can_use_hw_watchpoints)
1760 if (b->ops->works_in_software_mode (b))
1761 b->type = bp_watchpoint;
1763 error (_("Can't set read/access watchpoint when "
1764 "hardware watchpoints are disabled."));
1767 else if (within_current_scope && b->exp)
1770 std::vector<value_ref_ptr> val_chain;
1771 struct value *v, *result;
1772 struct program_space *frame_pspace;
1774 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
1776 /* Avoid setting b->val if it's already set. The meaning of
1777 b->val is 'the last value' user saw, and we should update
1778 it only if we reported that last value to user. As it
1779 happens, the code that reports it updates b->val directly.
1780 We don't keep track of the memory value for masked
1782 if (!b->val_valid && !is_masked_watchpoint (b))
1784 if (b->val_bitsize != 0)
1785 v = extract_bitfield_from_watchpoint_value (b, v);
1786 b->val = release_value (v);
1790 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1792 /* Look at each value on the value chain. */
1793 gdb_assert (!val_chain.empty ());
1794 for (const value_ref_ptr &iter : val_chain)
1798 /* If it's a memory location, and GDB actually needed
1799 its contents to evaluate the expression, then we
1800 must watch it. If the first value returned is
1801 still lazy, that means an error occurred reading it;
1802 watch it anyway in case it becomes readable. */
1803 if (VALUE_LVAL (v) == lval_memory
1804 && (v == val_chain[0] || ! value_lazy (v)))
1806 struct type *vtype = check_typedef (value_type (v));
1808 /* We only watch structs and arrays if user asked
1809 for it explicitly, never if they just happen to
1810 appear in the middle of some value chain. */
1812 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1813 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1816 enum target_hw_bp_type type;
1817 struct bp_location *loc, **tmp;
1818 int bitpos = 0, bitsize = 0;
1820 if (value_bitsize (v) != 0)
1822 /* Extract the bit parameters out from the bitfield
1824 bitpos = value_bitpos (v);
1825 bitsize = value_bitsize (v);
1827 else if (v == result && b->val_bitsize != 0)
1829 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
1830 lvalue whose bit parameters are saved in the fields
1831 VAL_BITPOS and VAL_BITSIZE. */
1832 bitpos = b->val_bitpos;
1833 bitsize = b->val_bitsize;
1836 addr = value_address (v);
1839 /* Skip the bytes that don't contain the bitfield. */
1844 if (b->type == bp_read_watchpoint)
1846 else if (b->type == bp_access_watchpoint)
1849 loc = allocate_bp_location (b);
1850 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1853 loc->gdbarch = get_type_arch (value_type (v));
1855 loc->pspace = frame_pspace;
1856 loc->address = address_significant (loc->gdbarch, addr);
1860 /* Just cover the bytes that make up the bitfield. */
1861 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
1864 loc->length = TYPE_LENGTH (value_type (v));
1866 loc->watchpoint_type = type;
1871 /* Change the type of breakpoint between hardware assisted or
1872 an ordinary watchpoint depending on the hardware support
1873 and free hardware slots. REPARSE is set when the inferior
1878 enum bp_loc_type loc_type;
1879 struct bp_location *bl;
1881 reg_cnt = can_use_hardware_watchpoint (val_chain);
1885 int i, target_resources_ok, other_type_used;
1888 /* Use an exact watchpoint when there's only one memory region to be
1889 watched, and only one debug register is needed to watch it. */
1890 b->exact = target_exact_watchpoints && reg_cnt == 1;
1892 /* We need to determine how many resources are already
1893 used for all other hardware watchpoints plus this one
1894 to see if we still have enough resources to also fit
1895 this watchpoint in as well. */
1897 /* If this is a software watchpoint, we try to turn it
1898 to a hardware one -- count resources as if B was of
1899 hardware watchpoint type. */
1901 if (type == bp_watchpoint)
1902 type = bp_hardware_watchpoint;
1904 /* This watchpoint may or may not have been placed on
1905 the list yet at this point (it won't be in the list
1906 if we're trying to create it for the first time,
1907 through watch_command), so always account for it
1910 /* Count resources used by all watchpoints except B. */
1911 i = hw_watchpoint_used_count_others (b, type, &other_type_used);
1913 /* Add in the resources needed for B. */
1914 i += hw_watchpoint_use_count (b);
1917 = target_can_use_hardware_watchpoint (type, i, other_type_used);
1918 if (target_resources_ok <= 0)
1920 int sw_mode = b->ops->works_in_software_mode (b);
1922 if (target_resources_ok == 0 && !sw_mode)
1923 error (_("Target does not support this type of "
1924 "hardware watchpoint."));
1925 else if (target_resources_ok < 0 && !sw_mode)
1926 error (_("There are not enough available hardware "
1927 "resources for this watchpoint."));
1929 /* Downgrade to software watchpoint. */
1930 b->type = bp_watchpoint;
1934 /* If this was a software watchpoint, we've just
1935 found we have enough resources to turn it to a
1936 hardware watchpoint. Otherwise, this is a
1941 else if (!b->ops->works_in_software_mode (b))
1943 if (!can_use_hw_watchpoints)
1944 error (_("Can't set read/access watchpoint when "
1945 "hardware watchpoints are disabled."));
1947 error (_("Expression cannot be implemented with "
1948 "read/access watchpoint."));
1951 b->type = bp_watchpoint;
1953 loc_type = (b->type == bp_watchpoint? bp_loc_other
1954 : bp_loc_hardware_watchpoint);
1955 for (bl = b->loc; bl; bl = bl->next)
1956 bl->loc_type = loc_type;
1959 /* If a software watchpoint is not watching any memory, then the
1960 above left it without any location set up. But,
1961 bpstat_stop_status requires a location to be able to report
1962 stops, so make sure there's at least a dummy one. */
1963 if (b->type == bp_watchpoint && b->loc == NULL)
1964 software_watchpoint_add_no_memory_location (b, frame_pspace);
1966 else if (!within_current_scope)
1968 printf_filtered (_("\
1969 Watchpoint %d deleted because the program has left the block\n\
1970 in which its expression is valid.\n"),
1972 watchpoint_del_at_next_stop (b);
1975 /* Restore the selected frame. */
1977 select_frame (frame_find_by_id (saved_frame_id));
1981 /* Returns 1 iff breakpoint location should be
1982 inserted in the inferior. We don't differentiate the type of BL's owner
1983 (breakpoint vs. tracepoint), although insert_location in tracepoint's
1984 breakpoint_ops is not defined, because in insert_bp_location,
1985 tracepoint's insert_location will not be called. */
1987 should_be_inserted (struct bp_location *bl)
1989 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
1992 if (bl->owner->disposition == disp_del_at_next_stop)
1995 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
1998 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2001 /* This is set for example, when we're attached to the parent of a
2002 vfork, and have detached from the child. The child is running
2003 free, and we expect it to do an exec or exit, at which point the
2004 OS makes the parent schedulable again (and the target reports
2005 that the vfork is done). Until the child is done with the shared
2006 memory region, do not insert breakpoints in the parent, otherwise
2007 the child could still trip on the parent's breakpoints. Since
2008 the parent is blocked anyway, it won't miss any breakpoint. */
2009 if (bl->pspace->breakpoints_not_allowed)
2012 /* Don't insert a breakpoint if we're trying to step past its
2013 location, except if the breakpoint is a single-step breakpoint,
2014 and the breakpoint's thread is the thread which is stepping past
2016 if ((bl->loc_type == bp_loc_software_breakpoint
2017 || bl->loc_type == bp_loc_hardware_breakpoint)
2018 && stepping_past_instruction_at (bl->pspace->aspace,
2020 /* The single-step breakpoint may be inserted at the location
2021 we're trying to step if the instruction branches to itself.
2022 However, the instruction won't be executed at all and it may
2023 break the semantics of the instruction, for example, the
2024 instruction is a conditional branch or updates some flags.
2025 We can't fix it unless GDB is able to emulate the instruction
2026 or switch to displaced stepping. */
2027 && !(bl->owner->type == bp_single_step
2028 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
2032 fprintf_unfiltered (gdb_stdlog,
2033 "infrun: skipping breakpoint: "
2034 "stepping past insn at: %s\n",
2035 paddress (bl->gdbarch, bl->address));
2040 /* Don't insert watchpoints if we're trying to step past the
2041 instruction that triggered one. */
2042 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2043 && stepping_past_nonsteppable_watchpoint ())
2047 fprintf_unfiltered (gdb_stdlog,
2048 "infrun: stepping past non-steppable watchpoint. "
2049 "skipping watchpoint at %s:%d\n",
2050 paddress (bl->gdbarch, bl->address),
2059 /* Same as should_be_inserted but does the check assuming
2060 that the location is not duplicated. */
2063 unduplicated_should_be_inserted (struct bp_location *bl)
2066 const int save_duplicate = bl->duplicate;
2069 result = should_be_inserted (bl);
2070 bl->duplicate = save_duplicate;
2074 /* Parses a conditional described by an expression COND into an
2075 agent expression bytecode suitable for evaluation
2076 by the bytecode interpreter. Return NULL if there was
2077 any error during parsing. */
2079 static agent_expr_up
2080 parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2085 agent_expr_up aexpr;
2087 /* We don't want to stop processing, so catch any errors
2088 that may show up. */
2091 aexpr = gen_eval_for_expr (scope, cond);
2094 catch (const gdb_exception_error &ex)
2096 /* If we got here, it means the condition could not be parsed to a valid
2097 bytecode expression and thus can't be evaluated on the target's side.
2098 It's no use iterating through the conditions. */
2101 /* We have a valid agent expression. */
2105 /* Based on location BL, create a list of breakpoint conditions to be
2106 passed on to the target. If we have duplicated locations with different
2107 conditions, we will add such conditions to the list. The idea is that the
2108 target will evaluate the list of conditions and will only notify GDB when
2109 one of them is true. */
2112 build_target_condition_list (struct bp_location *bl)
2114 struct bp_location **locp = NULL, **loc2p;
2115 int null_condition_or_parse_error = 0;
2116 int modified = bl->needs_update;
2117 struct bp_location *loc;
2119 /* Release conditions left over from a previous insert. */
2120 bl->target_info.conditions.clear ();
2122 /* This is only meaningful if the target is
2123 evaluating conditions and if the user has
2124 opted for condition evaluation on the target's
2126 if (gdb_evaluates_breakpoint_condition_p ()
2127 || !target_supports_evaluation_of_breakpoint_conditions ())
2130 /* Do a first pass to check for locations with no assigned
2131 conditions or conditions that fail to parse to a valid agent expression
2132 bytecode. If any of these happen, then it's no use to send conditions
2133 to the target since this location will always trigger and generate a
2134 response back to GDB. */
2135 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2138 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2142 /* Re-parse the conditions since something changed. In that
2143 case we already freed the condition bytecodes (see
2144 force_breakpoint_reinsertion). We just
2145 need to parse the condition to bytecodes again. */
2146 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2150 /* If we have a NULL bytecode expression, it means something
2151 went wrong or we have a null condition expression. */
2152 if (!loc->cond_bytecode)
2154 null_condition_or_parse_error = 1;
2160 /* If any of these happened, it means we will have to evaluate the conditions
2161 for the location's address on gdb's side. It is no use keeping bytecodes
2162 for all the other duplicate locations, thus we free all of them here.
2164 This is so we have a finer control over which locations' conditions are
2165 being evaluated by GDB or the remote stub. */
2166 if (null_condition_or_parse_error)
2168 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2171 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2173 /* Only go as far as the first NULL bytecode is
2175 if (!loc->cond_bytecode)
2178 loc->cond_bytecode.reset ();
2183 /* No NULL conditions or failed bytecode generation. Build a condition list
2184 for this location's address. */
2185 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2189 && is_breakpoint (loc->owner)
2190 && loc->pspace->num == bl->pspace->num
2191 && loc->owner->enable_state == bp_enabled
2194 /* Add the condition to the vector. This will be used later
2195 to send the conditions to the target. */
2196 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2203 /* Parses a command described by string CMD into an agent expression
2204 bytecode suitable for evaluation by the bytecode interpreter.
2205 Return NULL if there was any error during parsing. */
2207 static agent_expr_up
2208 parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2210 const char *cmdrest;
2211 const char *format_start, *format_end;
2212 struct gdbarch *gdbarch = get_current_arch ();
2219 if (*cmdrest == ',')
2221 cmdrest = skip_spaces (cmdrest);
2223 if (*cmdrest++ != '"')
2224 error (_("No format string following the location"));
2226 format_start = cmdrest;
2228 format_pieces fpieces (&cmdrest);
2230 format_end = cmdrest;
2232 if (*cmdrest++ != '"')
2233 error (_("Bad format string, non-terminated '\"'."));
2235 cmdrest = skip_spaces (cmdrest);
2237 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2238 error (_("Invalid argument syntax"));
2240 if (*cmdrest == ',')
2242 cmdrest = skip_spaces (cmdrest);
2244 /* For each argument, make an expression. */
2246 std::vector<struct expression *> argvec;
2247 while (*cmdrest != '\0')
2252 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2253 argvec.push_back (expr.release ());
2255 if (*cmdrest == ',')
2259 agent_expr_up aexpr;
2261 /* We don't want to stop processing, so catch any errors
2262 that may show up. */
2265 aexpr = gen_printf (scope, gdbarch, 0, 0,
2266 format_start, format_end - format_start,
2267 argvec.size (), argvec.data ());
2269 catch (const gdb_exception_error &ex)
2271 /* If we got here, it means the command could not be parsed to a valid
2272 bytecode expression and thus can't be evaluated on the target's side.
2273 It's no use iterating through the other commands. */
2276 /* We have a valid agent expression, return it. */
2280 /* Based on location BL, create a list of breakpoint commands to be
2281 passed on to the target. If we have duplicated locations with
2282 different commands, we will add any such to the list. */
2285 build_target_command_list (struct bp_location *bl)
2287 struct bp_location **locp = NULL, **loc2p;
2288 int null_command_or_parse_error = 0;
2289 int modified = bl->needs_update;
2290 struct bp_location *loc;
2292 /* Clear commands left over from a previous insert. */
2293 bl->target_info.tcommands.clear ();
2295 if (!target_can_run_breakpoint_commands ())
2298 /* For now, limit to agent-style dprintf breakpoints. */
2299 if (dprintf_style != dprintf_style_agent)
2302 /* For now, if we have any duplicate location that isn't a dprintf,
2303 don't install the target-side commands, as that would make the
2304 breakpoint not be reported to the core, and we'd lose
2306 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2309 if (is_breakpoint (loc->owner)
2310 && loc->pspace->num == bl->pspace->num
2311 && loc->owner->type != bp_dprintf)
2315 /* Do a first pass to check for locations with no assigned
2316 conditions or conditions that fail to parse to a valid agent expression
2317 bytecode. If any of these happen, then it's no use to send conditions
2318 to the target since this location will always trigger and generate a
2319 response back to GDB. */
2320 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2323 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2327 /* Re-parse the commands since something changed. In that
2328 case we already freed the command bytecodes (see
2329 force_breakpoint_reinsertion). We just
2330 need to parse the command to bytecodes again. */
2332 = parse_cmd_to_aexpr (bl->address,
2333 loc->owner->extra_string);
2336 /* If we have a NULL bytecode expression, it means something
2337 went wrong or we have a null command expression. */
2338 if (!loc->cmd_bytecode)
2340 null_command_or_parse_error = 1;
2346 /* If anything failed, then we're not doing target-side commands,
2348 if (null_command_or_parse_error)
2350 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2353 if (is_breakpoint (loc->owner)
2354 && loc->pspace->num == bl->pspace->num)
2356 /* Only go as far as the first NULL bytecode is
2358 if (loc->cmd_bytecode == NULL)
2361 loc->cmd_bytecode.reset ();
2366 /* No NULL commands or failed bytecode generation. Build a command list
2367 for this location's address. */
2368 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2371 if (loc->owner->extra_string
2372 && is_breakpoint (loc->owner)
2373 && loc->pspace->num == bl->pspace->num
2374 && loc->owner->enable_state == bp_enabled
2377 /* Add the command to the vector. This will be used later
2378 to send the commands to the target. */
2379 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2383 bl->target_info.persist = 0;
2384 /* Maybe flag this location as persistent. */
2385 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2386 bl->target_info.persist = 1;
2389 /* Return the kind of breakpoint on address *ADDR. Get the kind
2390 of breakpoint according to ADDR except single-step breakpoint.
2391 Get the kind of single-step breakpoint according to the current
2395 breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2397 if (bl->owner->type == bp_single_step)
2399 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2400 struct regcache *regcache;
2402 regcache = get_thread_regcache (thr);
2404 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2408 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
2411 /* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2412 location. Any error messages are printed to TMP_ERROR_STREAM; and
2413 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
2414 Returns 0 for success, 1 if the bp_location type is not supported or
2417 NOTE drow/2003-09-09: This routine could be broken down to an
2418 object-style method for each breakpoint or catchpoint type. */
2420 insert_bp_location (struct bp_location *bl,
2421 struct ui_file *tmp_error_stream,
2422 int *disabled_breaks,
2423 int *hw_breakpoint_error,
2424 int *hw_bp_error_explained_already)
2426 gdb_exception bp_excpt;
2428 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2431 /* Note we don't initialize bl->target_info, as that wipes out
2432 the breakpoint location's shadow_contents if the breakpoint
2433 is still inserted at that location. This in turn breaks
2434 target_read_memory which depends on these buffers when
2435 a memory read is requested at the breakpoint location:
2436 Once the target_info has been wiped, we fail to see that
2437 we have a breakpoint inserted at that address and thus
2438 read the breakpoint instead of returning the data saved in
2439 the breakpoint location's shadow contents. */
2440 bl->target_info.reqstd_address = bl->address;
2441 bl->target_info.placed_address_space = bl->pspace->aspace;
2442 bl->target_info.length = bl->length;
2444 /* When working with target-side conditions, we must pass all the conditions
2445 for the same breakpoint address down to the target since GDB will not
2446 insert those locations. With a list of breakpoint conditions, the target
2447 can decide when to stop and notify GDB. */
2449 if (is_breakpoint (bl->owner))
2451 build_target_condition_list (bl);
2452 build_target_command_list (bl);
2453 /* Reset the modification marker. */
2454 bl->needs_update = 0;
2457 if (bl->loc_type == bp_loc_software_breakpoint
2458 || bl->loc_type == bp_loc_hardware_breakpoint)
2460 if (bl->owner->type != bp_hardware_breakpoint)
2462 /* If the explicitly specified breakpoint type
2463 is not hardware breakpoint, check the memory map to see
2464 if the breakpoint address is in read only memory or not.
2466 Two important cases are:
2467 - location type is not hardware breakpoint, memory
2468 is readonly. We change the type of the location to
2469 hardware breakpoint.
2470 - location type is hardware breakpoint, memory is
2471 read-write. This means we've previously made the
2472 location hardware one, but then the memory map changed,
2475 When breakpoints are removed, remove_breakpoints will use
2476 location types we've just set here, the only possible
2477 problem is that memory map has changed during running
2478 program, but it's not going to work anyway with current
2480 struct mem_region *mr
2481 = lookup_mem_region (bl->target_info.reqstd_address);
2485 if (automatic_hardware_breakpoints)
2487 enum bp_loc_type new_type;
2489 if (mr->attrib.mode != MEM_RW)
2490 new_type = bp_loc_hardware_breakpoint;
2492 new_type = bp_loc_software_breakpoint;
2494 if (new_type != bl->loc_type)
2496 static int said = 0;
2498 bl->loc_type = new_type;
2501 fprintf_filtered (gdb_stdout,
2502 _("Note: automatically using "
2503 "hardware breakpoints for "
2504 "read-only addresses.\n"));
2509 else if (bl->loc_type == bp_loc_software_breakpoint
2510 && mr->attrib.mode != MEM_RW)
2512 fprintf_unfiltered (tmp_error_stream,
2513 _("Cannot insert breakpoint %d.\n"
2514 "Cannot set software breakpoint "
2515 "at read-only address %s\n"),
2517 paddress (bl->gdbarch, bl->address));
2523 /* First check to see if we have to handle an overlay. */
2524 if (overlay_debugging == ovly_off
2525 || bl->section == NULL
2526 || !(section_is_overlay (bl->section)))
2528 /* No overlay handling: just set the breakpoint. */
2533 val = bl->owner->ops->insert_location (bl);
2535 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2537 catch (gdb_exception &e)
2539 bp_excpt = std::move (e);
2544 /* This breakpoint is in an overlay section.
2545 Shall we set a breakpoint at the LMA? */
2546 if (!overlay_events_enabled)
2548 /* Yes -- overlay event support is not active,
2549 so we must try to set a breakpoint at the LMA.
2550 This will not work for a hardware breakpoint. */
2551 if (bl->loc_type == bp_loc_hardware_breakpoint)
2552 warning (_("hardware breakpoint %d not supported in overlay!"),
2556 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2558 /* Set a software (trap) breakpoint at the LMA. */
2559 bl->overlay_target_info = bl->target_info;
2560 bl->overlay_target_info.reqstd_address = addr;
2562 /* No overlay handling: just set the breakpoint. */
2567 bl->overlay_target_info.kind
2568 = breakpoint_kind (bl, &addr);
2569 bl->overlay_target_info.placed_address = addr;
2570 val = target_insert_breakpoint (bl->gdbarch,
2571 &bl->overlay_target_info);
2574 = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2576 catch (gdb_exception &e)
2578 bp_excpt = std::move (e);
2581 if (bp_excpt.reason != 0)
2582 fprintf_unfiltered (tmp_error_stream,
2583 "Overlay breakpoint %d "
2584 "failed: in ROM?\n",
2588 /* Shall we set a breakpoint at the VMA? */
2589 if (section_is_mapped (bl->section))
2591 /* Yes. This overlay section is mapped into memory. */
2596 val = bl->owner->ops->insert_location (bl);
2598 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2600 catch (gdb_exception &e)
2602 bp_excpt = std::move (e);
2607 /* No. This breakpoint will not be inserted.
2608 No error, but do not mark the bp as 'inserted'. */
2613 if (bp_excpt.reason != 0)
2615 /* Can't set the breakpoint. */
2617 /* In some cases, we might not be able to insert a
2618 breakpoint in a shared library that has already been
2619 removed, but we have not yet processed the shlib unload
2620 event. Unfortunately, some targets that implement
2621 breakpoint insertion themselves can't tell why the
2622 breakpoint insertion failed (e.g., the remote target
2623 doesn't define error codes), so we must treat generic
2624 errors as memory errors. */
2625 if (bp_excpt.reason == RETURN_ERROR
2626 && (bp_excpt.error == GENERIC_ERROR
2627 || bp_excpt.error == MEMORY_ERROR)
2628 && bl->loc_type == bp_loc_software_breakpoint
2629 && (solib_name_from_address (bl->pspace, bl->address)
2630 || shared_objfile_contains_address_p (bl->pspace,
2633 /* See also: disable_breakpoints_in_shlibs. */
2634 bl->shlib_disabled = 1;
2635 gdb::observers::breakpoint_modified.notify (bl->owner);
2636 if (!*disabled_breaks)
2638 fprintf_unfiltered (tmp_error_stream,
2639 "Cannot insert breakpoint %d.\n",
2641 fprintf_unfiltered (tmp_error_stream,
2642 "Temporarily disabling shared "
2643 "library breakpoints:\n");
2645 *disabled_breaks = 1;
2646 fprintf_unfiltered (tmp_error_stream,
2647 "breakpoint #%d\n", bl->owner->number);
2652 if (bl->loc_type == bp_loc_hardware_breakpoint)
2654 *hw_breakpoint_error = 1;
2655 *hw_bp_error_explained_already = bp_excpt.message != NULL;
2656 fprintf_unfiltered (tmp_error_stream,
2657 "Cannot insert hardware breakpoint %d%s",
2659 bp_excpt.message ? ":" : ".\n");
2660 if (bp_excpt.message != NULL)
2661 fprintf_unfiltered (tmp_error_stream, "%s.\n",
2666 if (bp_excpt.message == NULL)
2669 = memory_error_message (TARGET_XFER_E_IO,
2670 bl->gdbarch, bl->address);
2672 fprintf_unfiltered (tmp_error_stream,
2673 "Cannot insert breakpoint %d.\n"
2675 bl->owner->number, message.c_str ());
2679 fprintf_unfiltered (tmp_error_stream,
2680 "Cannot insert breakpoint %d: %s\n",
2695 else if (bl->loc_type == bp_loc_hardware_watchpoint
2696 /* NOTE drow/2003-09-08: This state only exists for removing
2697 watchpoints. It's not clear that it's necessary... */
2698 && bl->owner->disposition != disp_del_at_next_stop)
2702 gdb_assert (bl->owner->ops != NULL
2703 && bl->owner->ops->insert_location != NULL);
2705 val = bl->owner->ops->insert_location (bl);
2707 /* If trying to set a read-watchpoint, and it turns out it's not
2708 supported, try emulating one with an access watchpoint. */
2709 if (val == 1 && bl->watchpoint_type == hw_read)
2711 struct bp_location *loc, **loc_temp;
2713 /* But don't try to insert it, if there's already another
2714 hw_access location that would be considered a duplicate
2716 ALL_BP_LOCATIONS (loc, loc_temp)
2718 && loc->watchpoint_type == hw_access
2719 && watchpoint_locations_match (bl, loc))
2723 bl->target_info = loc->target_info;
2724 bl->watchpoint_type = hw_access;
2731 bl->watchpoint_type = hw_access;
2732 val = bl->owner->ops->insert_location (bl);
2735 /* Back to the original value. */
2736 bl->watchpoint_type = hw_read;
2740 bl->inserted = (val == 0);
2743 else if (bl->owner->type == bp_catchpoint)
2747 gdb_assert (bl->owner->ops != NULL
2748 && bl->owner->ops->insert_location != NULL);
2750 val = bl->owner->ops->insert_location (bl);
2753 bl->owner->enable_state = bp_disabled;
2757 Error inserting catchpoint %d: Your system does not support this type\n\
2758 of catchpoint."), bl->owner->number);
2760 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2763 bl->inserted = (val == 0);
2765 /* We've already printed an error message if there was a problem
2766 inserting this catchpoint, and we've disabled the catchpoint,
2767 so just return success. */
2774 /* This function is called when program space PSPACE is about to be
2775 deleted. It takes care of updating breakpoints to not reference
2779 breakpoint_program_space_exit (struct program_space *pspace)
2781 struct breakpoint *b, *b_temp;
2782 struct bp_location *loc, **loc_temp;
2784 /* Remove any breakpoint that was set through this program space. */
2785 ALL_BREAKPOINTS_SAFE (b, b_temp)
2787 if (b->pspace == pspace)
2788 delete_breakpoint (b);
2791 /* Breakpoints set through other program spaces could have locations
2792 bound to PSPACE as well. Remove those. */
2793 ALL_BP_LOCATIONS (loc, loc_temp)
2795 struct bp_location *tmp;
2797 if (loc->pspace == pspace)
2799 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
2800 if (loc->owner->loc == loc)
2801 loc->owner->loc = loc->next;
2803 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2804 if (tmp->next == loc)
2806 tmp->next = loc->next;
2812 /* Now update the global location list to permanently delete the
2813 removed locations above. */
2814 update_global_location_list (UGLL_DONT_INSERT);
2817 /* Make sure all breakpoints are inserted in inferior.
2818 Throws exception on any error.
2819 A breakpoint that is already inserted won't be inserted
2820 again, so calling this function twice is safe. */
2822 insert_breakpoints (void)
2824 struct breakpoint *bpt;
2826 ALL_BREAKPOINTS (bpt)
2827 if (is_hardware_watchpoint (bpt))
2829 struct watchpoint *w = (struct watchpoint *) bpt;
2831 update_watchpoint (w, 0 /* don't reparse. */);
2834 /* Updating watchpoints creates new locations, so update the global
2835 location list. Explicitly tell ugll to insert locations and
2836 ignore breakpoints_always_inserted_mode. */
2837 update_global_location_list (UGLL_INSERT);
2840 /* Invoke CALLBACK for each of bp_location. */
2843 iterate_over_bp_locations (walk_bp_location_callback callback)
2845 struct bp_location *loc, **loc_tmp;
2847 ALL_BP_LOCATIONS (loc, loc_tmp)
2849 callback (loc, NULL);
2853 /* This is used when we need to synch breakpoint conditions between GDB and the
2854 target. It is the case with deleting and disabling of breakpoints when using
2855 always-inserted mode. */
2858 update_inserted_breakpoint_locations (void)
2860 struct bp_location *bl, **blp_tmp;
2863 int disabled_breaks = 0;
2864 int hw_breakpoint_error = 0;
2865 int hw_bp_details_reported = 0;
2867 string_file tmp_error_stream;
2869 /* Explicitly mark the warning -- this will only be printed if
2870 there was an error. */
2871 tmp_error_stream.puts ("Warning:\n");
2873 scoped_restore_current_pspace_and_thread restore_pspace_thread;
2875 ALL_BP_LOCATIONS (bl, blp_tmp)
2877 /* We only want to update software breakpoints and hardware
2879 if (!is_breakpoint (bl->owner))
2882 /* We only want to update locations that are already inserted
2883 and need updating. This is to avoid unwanted insertion during
2884 deletion of breakpoints. */
2885 if (!bl->inserted || !bl->needs_update)
2888 switch_to_program_space_and_thread (bl->pspace);
2890 /* For targets that support global breakpoints, there's no need
2891 to select an inferior to insert breakpoint to. In fact, even
2892 if we aren't attached to any process yet, we should still
2893 insert breakpoints. */
2894 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
2895 && inferior_ptid == null_ptid)
2898 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
2899 &hw_breakpoint_error, &hw_bp_details_reported);
2906 target_terminal::ours_for_output ();
2907 error_stream (tmp_error_stream);
2911 /* Used when starting or continuing the program. */
2914 insert_breakpoint_locations (void)
2916 struct breakpoint *bpt;
2917 struct bp_location *bl, **blp_tmp;
2920 int disabled_breaks = 0;
2921 int hw_breakpoint_error = 0;
2922 int hw_bp_error_explained_already = 0;
2924 string_file tmp_error_stream;
2926 /* Explicitly mark the warning -- this will only be printed if
2927 there was an error. */
2928 tmp_error_stream.puts ("Warning:\n");
2930 scoped_restore_current_pspace_and_thread restore_pspace_thread;
2932 ALL_BP_LOCATIONS (bl, blp_tmp)
2934 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2937 /* There is no point inserting thread-specific breakpoints if
2938 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2939 has BL->OWNER always non-NULL. */
2940 if (bl->owner->thread != -1
2941 && !valid_global_thread_id (bl->owner->thread))
2944 switch_to_program_space_and_thread (bl->pspace);
2946 /* For targets that support global breakpoints, there's no need
2947 to select an inferior to insert breakpoint to. In fact, even
2948 if we aren't attached to any process yet, we should still
2949 insert breakpoints. */
2950 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
2951 && inferior_ptid == null_ptid)
2954 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
2955 &hw_breakpoint_error, &hw_bp_error_explained_already);
2960 /* If we failed to insert all locations of a watchpoint, remove
2961 them, as half-inserted watchpoint is of limited use. */
2962 ALL_BREAKPOINTS (bpt)
2964 int some_failed = 0;
2965 struct bp_location *loc;
2967 if (!is_hardware_watchpoint (bpt))
2970 if (!breakpoint_enabled (bpt))
2973 if (bpt->disposition == disp_del_at_next_stop)
2976 for (loc = bpt->loc; loc; loc = loc->next)
2977 if (!loc->inserted && should_be_inserted (loc))
2984 for (loc = bpt->loc; loc; loc = loc->next)
2986 remove_breakpoint (loc);
2988 hw_breakpoint_error = 1;
2989 tmp_error_stream.printf ("Could not insert "
2990 "hardware watchpoint %d.\n",
2998 /* If a hardware breakpoint or watchpoint was inserted, add a
2999 message about possibly exhausted resources. */
3000 if (hw_breakpoint_error && !hw_bp_error_explained_already)
3002 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
3003 You may have requested too many hardware breakpoints/watchpoints.\n");
3005 target_terminal::ours_for_output ();
3006 error_stream (tmp_error_stream);
3010 /* Used when the program stops.
3011 Returns zero if successful, or non-zero if there was a problem
3012 removing a breakpoint location. */
3015 remove_breakpoints (void)
3017 struct bp_location *bl, **blp_tmp;
3020 ALL_BP_LOCATIONS (bl, blp_tmp)
3022 if (bl->inserted && !is_tracepoint (bl->owner))
3023 val |= remove_breakpoint (bl);
3028 /* When a thread exits, remove breakpoints that are related to
3032 remove_threaded_breakpoints (struct thread_info *tp, int silent)
3034 struct breakpoint *b, *b_tmp;
3036 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3038 if (b->thread == tp->global_num && user_breakpoint_p (b))
3040 b->disposition = disp_del_at_next_stop;
3042 printf_filtered (_("\
3043 Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3044 b->number, print_thread_id (tp));
3046 /* Hide it from the user. */
3052 /* Remove breakpoints of inferior INF. */
3055 remove_breakpoints_inf (inferior *inf)
3057 struct bp_location *bl, **blp_tmp;
3060 ALL_BP_LOCATIONS (bl, blp_tmp)
3062 if (bl->pspace != inf->pspace)
3065 if (bl->inserted && !bl->target_info.persist)
3067 val = remove_breakpoint (bl);
3075 static int internal_breakpoint_number = -1;
3077 /* Set the breakpoint number of B, depending on the value of INTERNAL.
3078 If INTERNAL is non-zero, the breakpoint number will be populated
3079 from internal_breakpoint_number and that variable decremented.
3080 Otherwise the breakpoint number will be populated from
3081 breakpoint_count and that value incremented. Internal breakpoints
3082 do not set the internal var bpnum. */
3084 set_breakpoint_number (int internal, struct breakpoint *b)
3087 b->number = internal_breakpoint_number--;
3090 set_breakpoint_count (breakpoint_count + 1);
3091 b->number = breakpoint_count;
3095 static struct breakpoint *
3096 create_internal_breakpoint (struct gdbarch *gdbarch,
3097 CORE_ADDR address, enum bptype type,
3098 const struct breakpoint_ops *ops)
3100 symtab_and_line sal;
3102 sal.section = find_pc_overlay (sal.pc);
3103 sal.pspace = current_program_space;
3105 breakpoint *b = set_raw_breakpoint (gdbarch, sal, type, ops);
3106 b->number = internal_breakpoint_number--;
3107 b->disposition = disp_donttouch;
3112 static const char *const longjmp_names[] =
3114 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3116 #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3118 /* Per-objfile data private to breakpoint.c. */
3119 struct breakpoint_objfile_data
3121 /* Minimal symbol for "_ovly_debug_event" (if any). */
3122 struct bound_minimal_symbol overlay_msym {};
3124 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3125 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
3127 /* True if we have looked for longjmp probes. */
3128 int longjmp_searched = 0;
3130 /* SystemTap probe points for longjmp (if any). These are non-owning
3132 std::vector<probe *> longjmp_probes;
3134 /* Minimal symbol for "std::terminate()" (if any). */
3135 struct bound_minimal_symbol terminate_msym {};
3137 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3138 struct bound_minimal_symbol exception_msym {};
3140 /* True if we have looked for exception probes. */
3141 int exception_searched = 0;
3143 /* SystemTap probe points for unwinding (if any). These are non-owning
3145 std::vector<probe *> exception_probes;
3148 static const struct objfile_key<breakpoint_objfile_data>
3149 breakpoint_objfile_key;
3151 /* Minimal symbol not found sentinel. */
3152 static struct minimal_symbol msym_not_found;
3154 /* Returns TRUE if MSYM point to the "not found" sentinel. */
3157 msym_not_found_p (const struct minimal_symbol *msym)
3159 return msym == &msym_not_found;
3162 /* Return per-objfile data needed by breakpoint.c.
3163 Allocate the data if necessary. */
3165 static struct breakpoint_objfile_data *
3166 get_breakpoint_objfile_data (struct objfile *objfile)
3168 struct breakpoint_objfile_data *bp_objfile_data;
3170 bp_objfile_data = breakpoint_objfile_key.get (objfile);
3171 if (bp_objfile_data == NULL)
3172 bp_objfile_data = breakpoint_objfile_key.emplace (objfile);
3173 return bp_objfile_data;
3177 create_overlay_event_breakpoint (void)
3179 const char *const func_name = "_ovly_debug_event";
3181 for (objfile *objfile : current_program_space->objfiles ())
3183 struct breakpoint *b;
3184 struct breakpoint_objfile_data *bp_objfile_data;
3186 struct explicit_location explicit_loc;
3188 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3190 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
3193 if (bp_objfile_data->overlay_msym.minsym == NULL)
3195 struct bound_minimal_symbol m;
3197 m = lookup_minimal_symbol_text (func_name, objfile);
3198 if (m.minsym == NULL)
3200 /* Avoid future lookups in this objfile. */
3201 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
3204 bp_objfile_data->overlay_msym = m;
3207 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
3208 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3210 &internal_breakpoint_ops);
3211 initialize_explicit_location (&explicit_loc);
3212 explicit_loc.function_name = ASTRDUP (func_name);
3213 b->location = new_explicit_location (&explicit_loc);
3215 if (overlay_debugging == ovly_auto)
3217 b->enable_state = bp_enabled;
3218 overlay_events_enabled = 1;
3222 b->enable_state = bp_disabled;
3223 overlay_events_enabled = 0;
3229 create_longjmp_master_breakpoint (void)
3231 struct program_space *pspace;
3233 scoped_restore_current_program_space restore_pspace;
3235 ALL_PSPACES (pspace)
3237 set_current_program_space (pspace);
3239 for (objfile *objfile : current_program_space->objfiles ())
3242 struct gdbarch *gdbarch;
3243 struct breakpoint_objfile_data *bp_objfile_data;
3245 gdbarch = get_objfile_arch (objfile);
3247 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3249 if (!bp_objfile_data->longjmp_searched)
3251 std::vector<probe *> ret
3252 = find_probes_in_objfile (objfile, "libc", "longjmp");
3256 /* We are only interested in checking one element. */
3259 if (!p->can_evaluate_arguments ())
3261 /* We cannot use the probe interface here, because it does
3262 not know how to evaluate arguments. */
3266 bp_objfile_data->longjmp_probes = ret;
3267 bp_objfile_data->longjmp_searched = 1;
3270 if (!bp_objfile_data->longjmp_probes.empty ())
3272 for (probe *p : bp_objfile_data->longjmp_probes)
3274 struct breakpoint *b;
3276 b = create_internal_breakpoint (gdbarch,
3277 p->get_relocated_address (objfile),
3279 &internal_breakpoint_ops);
3280 b->location = new_probe_location ("-probe-stap libc:longjmp");
3281 b->enable_state = bp_disabled;
3287 if (!gdbarch_get_longjmp_target_p (gdbarch))
3290 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
3292 struct breakpoint *b;
3293 const char *func_name;
3295 struct explicit_location explicit_loc;
3297 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
3300 func_name = longjmp_names[i];
3301 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
3303 struct bound_minimal_symbol m;
3305 m = lookup_minimal_symbol_text (func_name, objfile);
3306 if (m.minsym == NULL)
3308 /* Prevent future lookups in this objfile. */
3309 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
3312 bp_objfile_data->longjmp_msym[i] = m;
3315 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
3316 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3317 &internal_breakpoint_ops);
3318 initialize_explicit_location (&explicit_loc);
3319 explicit_loc.function_name = ASTRDUP (func_name);
3320 b->location = new_explicit_location (&explicit_loc);
3321 b->enable_state = bp_disabled;
3327 /* Create a master std::terminate breakpoint. */
3329 create_std_terminate_master_breakpoint (void)
3331 struct program_space *pspace;
3332 const char *const func_name = "std::terminate()";
3334 scoped_restore_current_program_space restore_pspace;
3336 ALL_PSPACES (pspace)
3340 set_current_program_space (pspace);
3342 for (objfile *objfile : current_program_space->objfiles ())
3344 struct breakpoint *b;
3345 struct breakpoint_objfile_data *bp_objfile_data;
3346 struct explicit_location explicit_loc;
3348 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3350 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
3353 if (bp_objfile_data->terminate_msym.minsym == NULL)
3355 struct bound_minimal_symbol m;
3357 m = lookup_minimal_symbol (func_name, NULL, objfile);
3358 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3359 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
3361 /* Prevent future lookups in this objfile. */
3362 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
3365 bp_objfile_data->terminate_msym = m;
3368 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
3369 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3370 bp_std_terminate_master,
3371 &internal_breakpoint_ops);
3372 initialize_explicit_location (&explicit_loc);
3373 explicit_loc.function_name = ASTRDUP (func_name);
3374 b->location = new_explicit_location (&explicit_loc);
3375 b->enable_state = bp_disabled;
3380 /* Install a master breakpoint on the unwinder's debug hook. */
3383 create_exception_master_breakpoint (void)
3385 const char *const func_name = "_Unwind_DebugHook";
3387 for (objfile *objfile : current_program_space->objfiles ())
3389 struct breakpoint *b;
3390 struct gdbarch *gdbarch;
3391 struct breakpoint_objfile_data *bp_objfile_data;
3393 struct explicit_location explicit_loc;
3395 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3397 /* We prefer the SystemTap probe point if it exists. */
3398 if (!bp_objfile_data->exception_searched)
3400 std::vector<probe *> ret
3401 = find_probes_in_objfile (objfile, "libgcc", "unwind");
3405 /* We are only interested in checking one element. */
3408 if (!p->can_evaluate_arguments ())
3410 /* We cannot use the probe interface here, because it does
3411 not know how to evaluate arguments. */
3415 bp_objfile_data->exception_probes = ret;
3416 bp_objfile_data->exception_searched = 1;
3419 if (!bp_objfile_data->exception_probes.empty ())
3421 gdbarch = get_objfile_arch (objfile);
3423 for (probe *p : bp_objfile_data->exception_probes)
3425 b = create_internal_breakpoint (gdbarch,
3426 p->get_relocated_address (objfile),
3427 bp_exception_master,
3428 &internal_breakpoint_ops);
3429 b->location = new_probe_location ("-probe-stap libgcc:unwind");
3430 b->enable_state = bp_disabled;
3436 /* Otherwise, try the hook function. */
3438 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
3441 gdbarch = get_objfile_arch (objfile);
3443 if (bp_objfile_data->exception_msym.minsym == NULL)
3445 struct bound_minimal_symbol debug_hook;
3447 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3448 if (debug_hook.minsym == NULL)
3450 bp_objfile_data->exception_msym.minsym = &msym_not_found;
3454 bp_objfile_data->exception_msym = debug_hook;
3457 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
3458 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3459 current_top_target ());
3460 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3461 &internal_breakpoint_ops);
3462 initialize_explicit_location (&explicit_loc);
3463 explicit_loc.function_name = ASTRDUP (func_name);
3464 b->location = new_explicit_location (&explicit_loc);
3465 b->enable_state = bp_disabled;
3469 /* Does B have a location spec? */
3472 breakpoint_event_location_empty_p (const struct breakpoint *b)
3474 return b->location != NULL && event_location_empty_p (b->location.get ());
3478 update_breakpoints_after_exec (void)
3480 struct breakpoint *b, *b_tmp;
3481 struct bp_location *bploc, **bplocp_tmp;
3483 /* We're about to delete breakpoints from GDB's lists. If the
3484 INSERTED flag is true, GDB will try to lift the breakpoints by
3485 writing the breakpoints' "shadow contents" back into memory. The
3486 "shadow contents" are NOT valid after an exec, so GDB should not
3487 do that. Instead, the target is responsible from marking
3488 breakpoints out as soon as it detects an exec. We don't do that
3489 here instead, because there may be other attempts to delete
3490 breakpoints after detecting an exec and before reaching here. */
3491 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
3492 if (bploc->pspace == current_program_space)
3493 gdb_assert (!bploc->inserted);
3495 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3497 if (b->pspace != current_program_space)
3500 /* Solib breakpoints must be explicitly reset after an exec(). */
3501 if (b->type == bp_shlib_event)
3503 delete_breakpoint (b);
3507 /* JIT breakpoints must be explicitly reset after an exec(). */
3508 if (b->type == bp_jit_event)
3510 delete_breakpoint (b);
3514 /* Thread event breakpoints must be set anew after an exec(),
3515 as must overlay event and longjmp master breakpoints. */
3516 if (b->type == bp_thread_event || b->type == bp_overlay_event
3517 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3518 || b->type == bp_exception_master)
3520 delete_breakpoint (b);
3524 /* Step-resume breakpoints are meaningless after an exec(). */
3525 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
3527 delete_breakpoint (b);
3531 /* Just like single-step breakpoints. */
3532 if (b->type == bp_single_step)
3534 delete_breakpoint (b);
3538 /* Longjmp and longjmp-resume breakpoints are also meaningless
3540 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
3541 || b->type == bp_longjmp_call_dummy
3542 || b->type == bp_exception || b->type == bp_exception_resume)
3544 delete_breakpoint (b);
3548 if (b->type == bp_catchpoint)
3550 /* For now, none of the bp_catchpoint breakpoints need to
3551 do anything at this point. In the future, if some of
3552 the catchpoints need to something, we will need to add
3553 a new method, and call this method from here. */
3557 /* bp_finish is a special case. The only way we ought to be able
3558 to see one of these when an exec() has happened, is if the user
3559 caught a vfork, and then said "finish". Ordinarily a finish just
3560 carries them to the call-site of the current callee, by setting
3561 a temporary bp there and resuming. But in this case, the finish
3562 will carry them entirely through the vfork & exec.
3564 We don't want to allow a bp_finish to remain inserted now. But
3565 we can't safely delete it, 'cause finish_command has a handle to
3566 the bp on a bpstat, and will later want to delete it. There's a
3567 chance (and I've seen it happen) that if we delete the bp_finish
3568 here, that its storage will get reused by the time finish_command
3569 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3570 We really must allow finish_command to delete a bp_finish.
3572 In the absence of a general solution for the "how do we know
3573 it's safe to delete something others may have handles to?"
3574 problem, what we'll do here is just uninsert the bp_finish, and
3575 let finish_command delete it.
3577 (We know the bp_finish is "doomed" in the sense that it's
3578 momentary, and will be deleted as soon as finish_command sees
3579 the inferior stopped. So it doesn't matter that the bp's
3580 address is probably bogus in the new a.out, unlike e.g., the
3581 solib breakpoints.) */
3583 if (b->type == bp_finish)
3588 /* Without a symbolic address, we have little hope of the
3589 pre-exec() address meaning the same thing in the post-exec()
3591 if (breakpoint_event_location_empty_p (b))
3593 delete_breakpoint (b);
3600 detach_breakpoints (ptid_t ptid)
3602 struct bp_location *bl, **blp_tmp;
3604 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
3605 struct inferior *inf = current_inferior ();
3607 if (ptid.pid () == inferior_ptid.pid ())
3608 error (_("Cannot detach breakpoints of inferior_ptid"));
3610 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
3611 inferior_ptid = ptid;
3612 ALL_BP_LOCATIONS (bl, blp_tmp)
3614 if (bl->pspace != inf->pspace)
3617 /* This function must physically remove breakpoints locations
3618 from the specified ptid, without modifying the breakpoint
3619 package's state. Locations of type bp_loc_other are only
3620 maintained at GDB side. So, there is no need to remove
3621 these bp_loc_other locations. Moreover, removing these
3622 would modify the breakpoint package's state. */
3623 if (bl->loc_type == bp_loc_other)
3627 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
3633 /* Remove the breakpoint location BL from the current address space.
3634 Note that this is used to detach breakpoints from a child fork.
3635 When we get here, the child isn't in the inferior list, and neither
3636 do we have objects to represent its address space --- we should
3637 *not* look at bl->pspace->aspace here. */
3640 remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
3644 /* BL is never in moribund_locations by our callers. */
3645 gdb_assert (bl->owner != NULL);
3647 /* The type of none suggests that owner is actually deleted.
3648 This should not ever happen. */
3649 gdb_assert (bl->owner->type != bp_none);
3651 if (bl->loc_type == bp_loc_software_breakpoint
3652 || bl->loc_type == bp_loc_hardware_breakpoint)
3654 /* "Normal" instruction breakpoint: either the standard
3655 trap-instruction bp (bp_breakpoint), or a
3656 bp_hardware_breakpoint. */
3658 /* First check to see if we have to handle an overlay. */
3659 if (overlay_debugging == ovly_off
3660 || bl->section == NULL
3661 || !(section_is_overlay (bl->section)))
3663 /* No overlay handling: just remove the breakpoint. */
3665 /* If we're trying to uninsert a memory breakpoint that we
3666 know is set in a dynamic object that is marked
3667 shlib_disabled, then either the dynamic object was
3668 removed with "remove-symbol-file" or with
3669 "nosharedlibrary". In the former case, we don't know
3670 whether another dynamic object might have loaded over the
3671 breakpoint's address -- the user might well let us know
3672 about it next with add-symbol-file (the whole point of
3673 add-symbol-file is letting the user manually maintain a
3674 list of dynamically loaded objects). If we have the
3675 breakpoint's shadow memory, that is, this is a software
3676 breakpoint managed by GDB, check whether the breakpoint
3677 is still inserted in memory, to avoid overwriting wrong
3678 code with stale saved shadow contents. Note that HW
3679 breakpoints don't have shadow memory, as they're
3680 implemented using a mechanism that is not dependent on
3681 being able to modify the target's memory, and as such
3682 they should always be removed. */
3683 if (bl->shlib_disabled
3684 && bl->target_info.shadow_len != 0
3685 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3688 val = bl->owner->ops->remove_location (bl, reason);
3692 /* This breakpoint is in an overlay section.
3693 Did we set a breakpoint at the LMA? */
3694 if (!overlay_events_enabled)
3696 /* Yes -- overlay event support is not active, so we
3697 should have set a breakpoint at the LMA. Remove it.
3699 /* Ignore any failures: if the LMA is in ROM, we will
3700 have already warned when we failed to insert it. */
3701 if (bl->loc_type == bp_loc_hardware_breakpoint)
3702 target_remove_hw_breakpoint (bl->gdbarch,
3703 &bl->overlay_target_info);
3705 target_remove_breakpoint (bl->gdbarch,
3706 &bl->overlay_target_info,
3709 /* Did we set a breakpoint at the VMA?
3710 If so, we will have marked the breakpoint 'inserted'. */
3713 /* Yes -- remove it. Previously we did not bother to
3714 remove the breakpoint if the section had been
3715 unmapped, but let's not rely on that being safe. We
3716 don't know what the overlay manager might do. */
3718 /* However, we should remove *software* breakpoints only
3719 if the section is still mapped, or else we overwrite
3720 wrong code with the saved shadow contents. */
3721 if (bl->loc_type == bp_loc_hardware_breakpoint
3722 || section_is_mapped (bl->section))
3723 val = bl->owner->ops->remove_location (bl, reason);
3729 /* No -- not inserted, so no need to remove. No error. */
3734 /* In some cases, we might not be able to remove a breakpoint in
3735 a shared library that has already been removed, but we have
3736 not yet processed the shlib unload event. Similarly for an
3737 unloaded add-symbol-file object - the user might not yet have
3738 had the chance to remove-symbol-file it. shlib_disabled will
3739 be set if the library/object has already been removed, but
3740 the breakpoint hasn't been uninserted yet, e.g., after
3741 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3742 always-inserted mode. */
3744 && (bl->loc_type == bp_loc_software_breakpoint
3745 && (bl->shlib_disabled
3746 || solib_name_from_address (bl->pspace, bl->address)
3747 || shared_objfile_contains_address_p (bl->pspace,
3753 bl->inserted = (reason == DETACH_BREAKPOINT);
3755 else if (bl->loc_type == bp_loc_hardware_watchpoint)
3757 gdb_assert (bl->owner->ops != NULL
3758 && bl->owner->ops->remove_location != NULL);
3760 bl->inserted = (reason == DETACH_BREAKPOINT);
3761 bl->owner->ops->remove_location (bl, reason);
3763 /* Failure to remove any of the hardware watchpoints comes here. */
3764 if (reason == REMOVE_BREAKPOINT && bl->inserted)
3765 warning (_("Could not remove hardware watchpoint %d."),
3768 else if (bl->owner->type == bp_catchpoint
3769 && breakpoint_enabled (bl->owner)
3772 gdb_assert (bl->owner->ops != NULL
3773 && bl->owner->ops->remove_location != NULL);
3775 val = bl->owner->ops->remove_location (bl, reason);
3779 bl->inserted = (reason == DETACH_BREAKPOINT);
3786 remove_breakpoint (struct bp_location *bl)
3788 /* BL is never in moribund_locations by our callers. */
3789 gdb_assert (bl->owner != NULL);
3791 /* The type of none suggests that owner is actually deleted.
3792 This should not ever happen. */
3793 gdb_assert (bl->owner->type != bp_none);
3795 scoped_restore_current_pspace_and_thread restore_pspace_thread;
3797 switch_to_program_space_and_thread (bl->pspace);
3799 return remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
3802 /* Clear the "inserted" flag in all breakpoints. */
3805 mark_breakpoints_out (void)
3807 struct bp_location *bl, **blp_tmp;
3809 ALL_BP_LOCATIONS (bl, blp_tmp)
3810 if (bl->pspace == current_program_space)
3814 /* Clear the "inserted" flag in all breakpoints and delete any
3815 breakpoints which should go away between runs of the program.
3817 Plus other such housekeeping that has to be done for breakpoints
3820 Note: this function gets called at the end of a run (by
3821 generic_mourn_inferior) and when a run begins (by
3822 init_wait_for_inferior). */
3827 breakpoint_init_inferior (enum inf_context context)
3829 struct breakpoint *b, *b_tmp;
3830 struct program_space *pspace = current_program_space;
3832 /* If breakpoint locations are shared across processes, then there's
3834 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
3837 mark_breakpoints_out ();
3839 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3841 if (b->loc && b->loc->pspace != pspace)
3847 case bp_longjmp_call_dummy:
3849 /* If the call dummy breakpoint is at the entry point it will
3850 cause problems when the inferior is rerun, so we better get
3853 case bp_watchpoint_scope:
3855 /* Also get rid of scope breakpoints. */
3857 case bp_shlib_event:
3859 /* Also remove solib event breakpoints. Their addresses may
3860 have changed since the last time we ran the program.
3861 Actually we may now be debugging against different target;
3862 and so the solib backend that installed this breakpoint may
3863 not be used in by the target. E.g.,
3865 (gdb) file prog-linux
3866 (gdb) run # native linux target
3869 (gdb) file prog-win.exe
3870 (gdb) tar rem :9999 # remote Windows gdbserver.
3873 case bp_step_resume:
3875 /* Also remove step-resume breakpoints. */
3877 case bp_single_step:
3879 /* Also remove single-step breakpoints. */
3881 delete_breakpoint (b);
3885 case bp_hardware_watchpoint:
3886 case bp_read_watchpoint:
3887 case bp_access_watchpoint:
3889 struct watchpoint *w = (struct watchpoint *) b;
3891 /* Likewise for watchpoints on local expressions. */
3892 if (w->exp_valid_block != NULL)
3893 delete_breakpoint (b);
3896 /* Get rid of existing locations, which are no longer
3897 valid. New ones will be created in
3898 update_watchpoint, when the inferior is restarted.
3899 The next update_global_location_list call will
3900 garbage collect them. */
3903 if (context == inf_starting)
3905 /* Reset val field to force reread of starting value in
3906 insert_breakpoints. */
3907 w->val.reset (nullptr);
3918 /* Get rid of the moribund locations. */
3919 for (bp_location *bl : moribund_locations)
3920 decref_bp_location (&bl);
3921 moribund_locations.clear ();
3924 /* These functions concern about actual breakpoints inserted in the
3925 target --- to e.g. check if we need to do decr_pc adjustment or if
3926 we need to hop over the bkpt --- so we check for address space
3927 match, not program space. */
3929 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3930 exists at PC. It returns ordinary_breakpoint_here if it's an
3931 ordinary breakpoint, or permanent_breakpoint_here if it's a
3932 permanent breakpoint.
3933 - When continuing from a location with an ordinary breakpoint, we
3934 actually single step once before calling insert_breakpoints.
3935 - When continuing from a location with a permanent breakpoint, we
3936 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3937 the target, to advance the PC past the breakpoint. */
3939 enum breakpoint_here
3940 breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
3942 struct bp_location *bl, **blp_tmp;
3943 int any_breakpoint_here = 0;
3945 ALL_BP_LOCATIONS (bl, blp_tmp)
3947 if (bl->loc_type != bp_loc_software_breakpoint
3948 && bl->loc_type != bp_loc_hardware_breakpoint)
3951 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
3952 if ((breakpoint_enabled (bl->owner)
3954 && breakpoint_location_address_match (bl, aspace, pc))
3956 if (overlay_debugging
3957 && section_is_overlay (bl->section)
3958 && !section_is_mapped (bl->section))
3959 continue; /* unmapped overlay -- can't be a match */
3960 else if (bl->permanent)
3961 return permanent_breakpoint_here;
3963 any_breakpoint_here = 1;
3967 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
3970 /* See breakpoint.h. */
3973 breakpoint_in_range_p (const address_space *aspace,
3974 CORE_ADDR addr, ULONGEST len)
3976 struct bp_location *bl, **blp_tmp;
3978 ALL_BP_LOCATIONS (bl, blp_tmp)
3980 if (bl->loc_type != bp_loc_software_breakpoint
3981 && bl->loc_type != bp_loc_hardware_breakpoint)
3984 if ((breakpoint_enabled (bl->owner)
3986 && breakpoint_location_address_range_overlap (bl, aspace,
3989 if (overlay_debugging
3990 && section_is_overlay (bl->section)
3991 && !section_is_mapped (bl->section))
3993 /* Unmapped overlay -- can't be a match. */
4004 /* Return true if there's a moribund breakpoint at PC. */
4007 moribund_breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
4009 for (bp_location *loc : moribund_locations)
4010 if (breakpoint_location_address_match (loc, aspace, pc))
4016 /* Returns non-zero iff BL is inserted at PC, in address space
4020 bp_location_inserted_here_p (struct bp_location *bl,
4021 const address_space *aspace, CORE_ADDR pc)
4024 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4027 if (overlay_debugging
4028 && section_is_overlay (bl->section)
4029 && !section_is_mapped (bl->section))
4030 return 0; /* unmapped overlay -- can't be a match */
4037 /* Returns non-zero iff there's a breakpoint inserted at PC. */
4040 breakpoint_inserted_here_p (const address_space *aspace, CORE_ADDR pc)
4042 struct bp_location **blp, **blp_tmp = NULL;
4044 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4046 struct bp_location *bl = *blp;
4048 if (bl->loc_type != bp_loc_software_breakpoint
4049 && bl->loc_type != bp_loc_hardware_breakpoint)
4052 if (bp_location_inserted_here_p (bl, aspace, pc))
4058 /* This function returns non-zero iff there is a software breakpoint
4062 software_breakpoint_inserted_here_p (const address_space *aspace,
4065 struct bp_location **blp, **blp_tmp = NULL;
4067 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4069 struct bp_location *bl = *blp;
4071 if (bl->loc_type != bp_loc_software_breakpoint)
4074 if (bp_location_inserted_here_p (bl, aspace, pc))
4081 /* See breakpoint.h. */
4084 hardware_breakpoint_inserted_here_p (const address_space *aspace,
4087 struct bp_location **blp, **blp_tmp = NULL;
4089 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4091 struct bp_location *bl = *blp;
4093 if (bl->loc_type != bp_loc_hardware_breakpoint)
4096 if (bp_location_inserted_here_p (bl, aspace, pc))
4104 hardware_watchpoint_inserted_in_range (const address_space *aspace,
4105 CORE_ADDR addr, ULONGEST len)
4107 struct breakpoint *bpt;
4109 ALL_BREAKPOINTS (bpt)
4111 struct bp_location *loc;
4113 if (bpt->type != bp_hardware_watchpoint
4114 && bpt->type != bp_access_watchpoint)
4117 if (!breakpoint_enabled (bpt))
4120 for (loc = bpt->loc; loc; loc = loc->next)
4121 if (loc->pspace->aspace == aspace && loc->inserted)
4125 /* Check for intersection. */
4126 l = std::max<CORE_ADDR> (loc->address, addr);
4127 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
4136 /* bpstat stuff. External routines' interfaces are documented
4140 is_catchpoint (struct breakpoint *ep)
4142 return (ep->type == bp_catchpoint);
4145 /* Frees any storage that is part of a bpstat. Does not walk the
4148 bpstats::~bpstats ()
4150 if (bp_location_at != NULL)
4151 decref_bp_location (&bp_location_at);
4154 /* Clear a bpstat so that it says we are not at any breakpoint.
4155 Also free any storage that is part of a bpstat. */
4158 bpstat_clear (bpstat *bsp)
4175 bpstats::bpstats (const bpstats &other)
4177 bp_location_at (other.bp_location_at),
4178 breakpoint_at (other.breakpoint_at),
4179 commands (other.commands),
4180 print (other.print),
4182 print_it (other.print_it)
4184 if (other.old_val != NULL)
4185 old_val = release_value (value_copy (other.old_val.get ()));
4186 incref_bp_location (bp_location_at);
4189 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4190 is part of the bpstat is copied as well. */
4193 bpstat_copy (bpstat bs)
4197 bpstat retval = NULL;
4202 for (; bs != NULL; bs = bs->next)
4204 tmp = new bpstats (*bs);
4207 /* This is the first thing in the chain. */
4217 /* Find the bpstat associated with this breakpoint. */
4220 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
4225 for (; bsp != NULL; bsp = bsp->next)
4227 if (bsp->breakpoint_at == breakpoint)
4233 /* See breakpoint.h. */
4236 bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
4238 for (; bsp != NULL; bsp = bsp->next)
4240 if (bsp->breakpoint_at == NULL)
4242 /* A moribund location can never explain a signal other than
4244 if (sig == GDB_SIGNAL_TRAP)
4249 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4258 /* Put in *NUM the breakpoint number of the first breakpoint we are
4259 stopped at. *BSP upon return is a bpstat which points to the
4260 remaining breakpoints stopped at (but which is not guaranteed to be
4261 good for anything but further calls to bpstat_num).
4263 Return 0 if passed a bpstat which does not indicate any breakpoints.
4264 Return -1 if stopped at a breakpoint that has been deleted since
4266 Return 1 otherwise. */
4269 bpstat_num (bpstat *bsp, int *num)
4271 struct breakpoint *b;
4274 return 0; /* No more breakpoint values */
4276 /* We assume we'll never have several bpstats that correspond to a
4277 single breakpoint -- otherwise, this function might return the
4278 same number more than once and this will look ugly. */
4279 b = (*bsp)->breakpoint_at;
4280 *bsp = (*bsp)->next;
4282 return -1; /* breakpoint that's been deleted since */
4284 *num = b->number; /* We have its number */
4288 /* See breakpoint.h. */
4291 bpstat_clear_actions (void)
4295 if (inferior_ptid == null_ptid)
4298 thread_info *tp = inferior_thread ();
4299 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
4301 bs->commands = NULL;
4302 bs->old_val.reset (nullptr);
4306 /* Called when a command is about to proceed the inferior. */
4309 breakpoint_about_to_proceed (void)
4311 if (inferior_ptid != null_ptid)
4313 struct thread_info *tp = inferior_thread ();
4315 /* Allow inferior function calls in breakpoint commands to not
4316 interrupt the command list. When the call finishes
4317 successfully, the inferior will be standing at the same
4318 breakpoint as if nothing happened. */
4319 if (tp->control.in_infcall)
4323 breakpoint_proceeded = 1;
4326 /* Return non-zero iff CMD as the first line of a command sequence is `silent'
4327 or its equivalent. */
4330 command_line_is_silent (struct command_line *cmd)
4332 return cmd && (strcmp ("silent", cmd->line) == 0);
4335 /* Execute all the commands associated with all the breakpoints at
4336 this location. Any of these commands could cause the process to
4337 proceed beyond this point, etc. We look out for such changes by
4338 checking the global "breakpoint_proceeded" after each command.
4340 Returns true if a breakpoint command resumed the inferior. In that
4341 case, it is the caller's responsibility to recall it again with the
4342 bpstat of the current thread. */
4345 bpstat_do_actions_1 (bpstat *bsp)
4350 /* Avoid endless recursion if a `source' command is contained
4352 if (executing_breakpoint_commands)
4355 scoped_restore save_executing
4356 = make_scoped_restore (&executing_breakpoint_commands, 1);
4358 scoped_restore preventer = prevent_dont_repeat ();
4360 /* This pointer will iterate over the list of bpstat's. */
4363 breakpoint_proceeded = 0;
4364 for (; bs != NULL; bs = bs->next)
4366 struct command_line *cmd = NULL;
4368 /* Take ownership of the BSP's command tree, if it has one.
4370 The command tree could legitimately contain commands like
4371 'step' and 'next', which call clear_proceed_status, which
4372 frees stop_bpstat's command tree. To make sure this doesn't
4373 free the tree we're executing out from under us, we need to
4374 take ownership of the tree ourselves. Since a given bpstat's
4375 commands are only executed once, we don't need to copy it; we
4376 can clear the pointer in the bpstat, and make sure we free
4377 the tree when we're done. */
4378 counted_command_line ccmd = bs->commands;
4379 bs->commands = NULL;
4382 if (command_line_is_silent (cmd))
4384 /* The action has been already done by bpstat_stop_status. */
4390 execute_control_command (cmd);
4392 if (breakpoint_proceeded)
4398 if (breakpoint_proceeded)
4400 if (current_ui->async)
4401 /* If we are in async mode, then the target might be still
4402 running, not stopped at any breakpoint, so nothing for
4403 us to do here -- just return to the event loop. */
4406 /* In sync mode, when execute_control_command returns
4407 we're already standing on the next breakpoint.
4408 Breakpoint commands for that stop were not run, since
4409 execute_command does not run breakpoint commands --
4410 only command_line_handler does, but that one is not
4411 involved in execution of breakpoint commands. So, we
4412 can now execute breakpoint commands. It should be
4413 noted that making execute_command do bpstat actions is
4414 not an option -- in this case we'll have recursive
4415 invocation of bpstat for each breakpoint with a
4416 command, and can easily blow up GDB stack. Instead, we
4417 return true, which will trigger the caller to recall us
4418 with the new stop_bpstat. */
4426 /* Helper for bpstat_do_actions. Get the current thread, if there's
4427 one, is alive and has execution. Return NULL otherwise. */
4429 static thread_info *
4430 get_bpstat_thread ()
4432 if (inferior_ptid == null_ptid || !target_has_execution)
4435 thread_info *tp = inferior_thread ();
4436 if (tp->state == THREAD_EXITED || tp->executing)
4442 bpstat_do_actions (void)
4444 auto cleanup_if_error = make_scope_exit (bpstat_clear_actions);
4447 /* Do any commands attached to breakpoint we are stopped at. */
4448 while ((tp = get_bpstat_thread ()) != NULL)
4450 /* Since in sync mode, bpstat_do_actions may resume the
4451 inferior, and only return when it is stopped at the next
4452 breakpoint, we keep doing breakpoint actions until it returns
4453 false to indicate the inferior was not resumed. */
4454 if (!bpstat_do_actions_1 (&tp->control.stop_bpstat))
4458 cleanup_if_error.release ();
4461 /* Print out the (old or new) value associated with a watchpoint. */
4464 watchpoint_value_print (struct value *val, struct ui_file *stream)
4467 fprintf_unfiltered (stream, _("<unreadable>"));
4470 struct value_print_options opts;
4471 get_user_print_options (&opts);
4472 value_print (val, stream, &opts);
4476 /* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4477 debugging multiple threads. */
4480 maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4482 if (uiout->is_mi_like_p ())
4487 if (show_thread_that_caused_stop ())
4490 struct thread_info *thr = inferior_thread ();
4492 uiout->text ("Thread ");
4493 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
4495 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4498 uiout->text (" \"");
4499 uiout->field_fmt ("name", "%s", name);
4503 uiout->text (" hit ");
4507 /* Generic routine for printing messages indicating why we
4508 stopped. The behavior of this function depends on the value
4509 'print_it' in the bpstat structure. Under some circumstances we
4510 may decide not to print anything here and delegate the task to
4513 static enum print_stop_action
4514 print_bp_stop_message (bpstat bs)
4516 switch (bs->print_it)
4519 /* Nothing should be printed for this bpstat entry. */
4520 return PRINT_UNKNOWN;
4524 /* We still want to print the frame, but we already printed the
4525 relevant messages. */
4526 return PRINT_SRC_AND_LOC;
4529 case print_it_normal:
4531 struct breakpoint *b = bs->breakpoint_at;
4533 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4534 which has since been deleted. */
4536 return PRINT_UNKNOWN;
4538 /* Normal case. Call the breakpoint's print_it method. */
4539 return b->ops->print_it (bs);
4544 internal_error (__FILE__, __LINE__,
4545 _("print_bp_stop_message: unrecognized enum value"));
4550 /* A helper function that prints a shared library stopped event. */
4553 print_solib_event (int is_catchpoint)
4555 bool any_deleted = !current_program_space->deleted_solibs.empty ();
4556 bool any_added = !current_program_space->added_solibs.empty ();
4560 if (any_added || any_deleted)
4561 current_uiout->text (_("Stopped due to shared library event:\n"));
4563 current_uiout->text (_("Stopped due to shared library event (no "
4564 "libraries added or removed)\n"));
4567 if (current_uiout->is_mi_like_p ())
4568 current_uiout->field_string ("reason",
4569 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4573 current_uiout->text (_(" Inferior unloaded "));
4574 ui_out_emit_list list_emitter (current_uiout, "removed");
4575 for (int ix = 0; ix < current_program_space->deleted_solibs.size (); ix++)
4577 const std::string &name = current_program_space->deleted_solibs[ix];
4580 current_uiout->text (" ");
4581 current_uiout->field_string ("library", name);
4582 current_uiout->text ("\n");
4588 current_uiout->text (_(" Inferior loaded "));
4589 ui_out_emit_list list_emitter (current_uiout, "added");
4591 for (so_list *iter : current_program_space->added_solibs)
4594 current_uiout->text (" ");
4596 current_uiout->field_string ("library", iter->so_name);
4597 current_uiout->text ("\n");
4602 /* Print a message indicating what happened. This is called from
4603 normal_stop(). The input to this routine is the head of the bpstat
4604 list - a list of the eventpoints that caused this stop. KIND is
4605 the target_waitkind for the stopping event. This
4606 routine calls the generic print routine for printing a message
4607 about reasons for stopping. This will print (for example) the
4608 "Breakpoint n," part of the output. The return value of this
4611 PRINT_UNKNOWN: Means we printed nothing.
4612 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4613 code to print the location. An example is
4614 "Breakpoint 1, " which should be followed by
4616 PRINT_SRC_ONLY: Means we printed something, but there is no need
4617 to also print the location part of the message.
4618 An example is the catch/throw messages, which
4619 don't require a location appended to the end.
4620 PRINT_NOTHING: We have done some printing and we don't need any
4621 further info to be printed. */
4623 enum print_stop_action
4624 bpstat_print (bpstat bs, int kind)
4626 enum print_stop_action val;
4628 /* Maybe another breakpoint in the chain caused us to stop.
4629 (Currently all watchpoints go on the bpstat whether hit or not.
4630 That probably could (should) be changed, provided care is taken
4631 with respect to bpstat_explains_signal). */
4632 for (; bs; bs = bs->next)
4634 val = print_bp_stop_message (bs);
4635 if (val == PRINT_SRC_ONLY
4636 || val == PRINT_SRC_AND_LOC
4637 || val == PRINT_NOTHING)
4641 /* If we had hit a shared library event breakpoint,
4642 print_bp_stop_message would print out this message. If we hit an
4643 OS-level shared library event, do the same thing. */
4644 if (kind == TARGET_WAITKIND_LOADED)
4646 print_solib_event (0);
4647 return PRINT_NOTHING;
4650 /* We reached the end of the chain, or we got a null BS to start
4651 with and nothing was printed. */
4652 return PRINT_UNKNOWN;
4655 /* Evaluate the boolean expression EXP and return the result. */
4658 breakpoint_cond_eval (expression *exp)
4660 struct value *mark = value_mark ();
4661 bool res = value_true (evaluate_expression (exp));
4663 value_free_to_mark (mark);
4667 /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
4669 bpstats::bpstats (struct bp_location *bl, bpstat **bs_link_pointer)
4671 bp_location_at (bl),
4672 breakpoint_at (bl->owner),
4676 print_it (print_it_normal)
4678 incref_bp_location (bl);
4679 **bs_link_pointer = this;
4680 *bs_link_pointer = &next;
4685 bp_location_at (NULL),
4686 breakpoint_at (NULL),
4690 print_it (print_it_normal)
4694 /* The target has stopped with waitstatus WS. Check if any hardware
4695 watchpoints have triggered, according to the target. */
4698 watchpoints_triggered (struct target_waitstatus *ws)
4700 bool stopped_by_watchpoint = target_stopped_by_watchpoint ();
4702 struct breakpoint *b;
4704 if (!stopped_by_watchpoint)
4706 /* We were not stopped by a watchpoint. Mark all watchpoints
4707 as not triggered. */
4709 if (is_hardware_watchpoint (b))
4711 struct watchpoint *w = (struct watchpoint *) b;
4713 w->watchpoint_triggered = watch_triggered_no;
4719 if (!target_stopped_data_address (current_top_target (), &addr))
4721 /* We were stopped by a watchpoint, but we don't know where.
4722 Mark all watchpoints as unknown. */
4724 if (is_hardware_watchpoint (b))
4726 struct watchpoint *w = (struct watchpoint *) b;
4728 w->watchpoint_triggered = watch_triggered_unknown;
4734 /* The target could report the data address. Mark watchpoints
4735 affected by this data address as triggered, and all others as not
4739 if (is_hardware_watchpoint (b))
4741 struct watchpoint *w = (struct watchpoint *) b;
4742 struct bp_location *loc;
4744 w->watchpoint_triggered = watch_triggered_no;
4745 for (loc = b->loc; loc; loc = loc->next)
4747 if (is_masked_watchpoint (b))
4749 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4750 CORE_ADDR start = loc->address & w->hw_wp_mask;
4752 if (newaddr == start)
4754 w->watchpoint_triggered = watch_triggered_yes;
4758 /* Exact match not required. Within range is sufficient. */
4759 else if (target_watchpoint_addr_within_range (current_top_target (),
4763 w->watchpoint_triggered = watch_triggered_yes;
4772 /* Possible return values for watchpoint_check. */
4773 enum wp_check_result
4775 /* The watchpoint has been deleted. */
4778 /* The value has changed. */
4779 WP_VALUE_CHANGED = 2,
4781 /* The value has not changed. */
4782 WP_VALUE_NOT_CHANGED = 3,
4784 /* Ignore this watchpoint, no matter if the value changed or not. */
4788 #define BP_TEMPFLAG 1
4789 #define BP_HARDWAREFLAG 2
4791 /* Evaluate watchpoint condition expression and check if its value
4794 static wp_check_result
4795 watchpoint_check (bpstat bs)
4797 struct watchpoint *b;
4798 struct frame_info *fr;
4799 int within_current_scope;
4801 /* BS is built from an existing struct breakpoint. */
4802 gdb_assert (bs->breakpoint_at != NULL);
4803 b = (struct watchpoint *) bs->breakpoint_at;
4805 /* If this is a local watchpoint, we only want to check if the
4806 watchpoint frame is in scope if the current thread is the thread
4807 that was used to create the watchpoint. */
4808 if (!watchpoint_in_thread_scope (b))
4811 if (b->exp_valid_block == NULL)
4812 within_current_scope = 1;
4815 struct frame_info *frame = get_current_frame ();
4816 struct gdbarch *frame_arch = get_frame_arch (frame);
4817 CORE_ADDR frame_pc = get_frame_pc (frame);
4819 /* stack_frame_destroyed_p() returns a non-zero value if we're
4820 still in the function but the stack frame has already been
4821 invalidated. Since we can't rely on the values of local
4822 variables after the stack has been destroyed, we are treating
4823 the watchpoint in that state as `not changed' without further
4824 checking. Don't mark watchpoints as changed if the current
4825 frame is in an epilogue - even if they are in some other
4826 frame, our view of the stack is likely to be wrong and
4827 frame_find_by_id could error out. */
4828 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
4831 fr = frame_find_by_id (b->watchpoint_frame);
4832 within_current_scope = (fr != NULL);
4834 /* If we've gotten confused in the unwinder, we might have
4835 returned a frame that can't describe this variable. */
4836 if (within_current_scope)
4838 struct symbol *function;
4840 function = get_frame_function (fr);
4841 if (function == NULL
4842 || !contained_in (b->exp_valid_block,
4843 SYMBOL_BLOCK_VALUE (function)))
4844 within_current_scope = 0;
4847 if (within_current_scope)
4848 /* If we end up stopping, the current frame will get selected
4849 in normal_stop. So this call to select_frame won't affect
4854 if (within_current_scope)
4856 /* We use value_{,free_to_}mark because it could be a *long*
4857 time before we return to the command level and call
4858 free_all_values. We can't call free_all_values because we
4859 might be in the middle of evaluating a function call. */
4863 struct value *new_val;
4865 if (is_masked_watchpoint (b))
4866 /* Since we don't know the exact trigger address (from
4867 stopped_data_address), just tell the user we've triggered
4868 a mask watchpoint. */
4869 return WP_VALUE_CHANGED;
4871 mark = value_mark ();
4872 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
4874 if (b->val_bitsize != 0)
4875 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
4877 /* We use value_equal_contents instead of value_equal because
4878 the latter coerces an array to a pointer, thus comparing just
4879 the address of the array instead of its contents. This is
4880 not what we want. */
4881 if ((b->val != NULL) != (new_val != NULL)
4882 || (b->val != NULL && !value_equal_contents (b->val.get (),
4885 bs->old_val = b->val;
4886 b->val = release_value (new_val);
4888 if (new_val != NULL)
4889 value_free_to_mark (mark);
4890 return WP_VALUE_CHANGED;
4894 /* Nothing changed. */
4895 value_free_to_mark (mark);
4896 return WP_VALUE_NOT_CHANGED;
4901 /* This seems like the only logical thing to do because
4902 if we temporarily ignored the watchpoint, then when
4903 we reenter the block in which it is valid it contains
4904 garbage (in the case of a function, it may have two
4905 garbage values, one before and one after the prologue).
4906 So we can't even detect the first assignment to it and
4907 watch after that (since the garbage may or may not equal
4908 the first value assigned). */
4909 /* We print all the stop information in
4910 breakpoint_ops->print_it, but in this case, by the time we
4911 call breakpoint_ops->print_it this bp will be deleted
4912 already. So we have no choice but print the information
4915 SWITCH_THRU_ALL_UIS ()
4917 struct ui_out *uiout = current_uiout;
4919 if (uiout->is_mi_like_p ())
4921 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
4922 uiout->text ("\nWatchpoint ");
4923 uiout->field_int ("wpnum", b->number);
4924 uiout->text (" deleted because the program has left the block in\n"
4925 "which its expression is valid.\n");
4928 /* Make sure the watchpoint's commands aren't executed. */
4930 watchpoint_del_at_next_stop (b);
4936 /* Return true if it looks like target has stopped due to hitting
4937 breakpoint location BL. This function does not check if we should
4938 stop, only if BL explains the stop. */
4941 bpstat_check_location (const struct bp_location *bl,
4942 const address_space *aspace, CORE_ADDR bp_addr,
4943 const struct target_waitstatus *ws)
4945 struct breakpoint *b = bl->owner;
4947 /* BL is from an existing breakpoint. */
4948 gdb_assert (b != NULL);
4950 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
4953 /* Determine if the watched values have actually changed, and we
4954 should stop. If not, set BS->stop to 0. */
4957 bpstat_check_watchpoint (bpstat bs)
4959 const struct bp_location *bl;
4960 struct watchpoint *b;
4962 /* BS is built for existing struct breakpoint. */
4963 bl = bs->bp_location_at;
4964 gdb_assert (bl != NULL);
4965 b = (struct watchpoint *) bs->breakpoint_at;
4966 gdb_assert (b != NULL);
4969 int must_check_value = 0;
4971 if (b->type == bp_watchpoint)
4972 /* For a software watchpoint, we must always check the
4974 must_check_value = 1;
4975 else if (b->watchpoint_triggered == watch_triggered_yes)
4976 /* We have a hardware watchpoint (read, write, or access)
4977 and the target earlier reported an address watched by
4979 must_check_value = 1;
4980 else if (b->watchpoint_triggered == watch_triggered_unknown
4981 && b->type == bp_hardware_watchpoint)
4982 /* We were stopped by a hardware watchpoint, but the target could
4983 not report the data address. We must check the watchpoint's
4984 value. Access and read watchpoints are out of luck; without
4985 a data address, we can't figure it out. */
4986 must_check_value = 1;
4988 if (must_check_value)
4994 e = watchpoint_check (bs);
4996 catch (const gdb_exception &ex)
4998 exception_fprintf (gdb_stderr, ex,
4999 "Error evaluating expression "
5000 "for watchpoint %d\n",
5003 SWITCH_THRU_ALL_UIS ()
5005 printf_filtered (_("Watchpoint %d deleted.\n"),
5008 watchpoint_del_at_next_stop (b);
5015 /* We've already printed what needs to be printed. */
5016 bs->print_it = print_it_done;
5020 bs->print_it = print_it_noop;
5023 case WP_VALUE_CHANGED:
5024 if (b->type == bp_read_watchpoint)
5026 /* There are two cases to consider here:
5028 1. We're watching the triggered memory for reads.
5029 In that case, trust the target, and always report
5030 the watchpoint hit to the user. Even though
5031 reads don't cause value changes, the value may
5032 have changed since the last time it was read, and
5033 since we're not trapping writes, we will not see
5034 those, and as such we should ignore our notion of
5037 2. We're watching the triggered memory for both
5038 reads and writes. There are two ways this may
5041 2.1. This is a target that can't break on data
5042 reads only, but can break on accesses (reads or
5043 writes), such as e.g., x86. We detect this case
5044 at the time we try to insert read watchpoints.
5046 2.2. Otherwise, the target supports read
5047 watchpoints, but, the user set an access or write
5048 watchpoint watching the same memory as this read
5051 If we're watching memory writes as well as reads,
5052 ignore watchpoint hits when we find that the
5053 value hasn't changed, as reads don't cause
5054 changes. This still gives false positives when
5055 the program writes the same value to memory as
5056 what there was already in memory (we will confuse
5057 it for a read), but it's much better than
5060 int other_write_watchpoint = 0;
5062 if (bl->watchpoint_type == hw_read)
5064 struct breakpoint *other_b;
5066 ALL_BREAKPOINTS (other_b)
5067 if (other_b->type == bp_hardware_watchpoint
5068 || other_b->type == bp_access_watchpoint)
5070 struct watchpoint *other_w =
5071 (struct watchpoint *) other_b;
5073 if (other_w->watchpoint_triggered
5074 == watch_triggered_yes)
5076 other_write_watchpoint = 1;
5082 if (other_write_watchpoint
5083 || bl->watchpoint_type == hw_access)
5085 /* We're watching the same memory for writes,
5086 and the value changed since the last time we
5087 updated it, so this trap must be for a write.
5089 bs->print_it = print_it_noop;
5094 case WP_VALUE_NOT_CHANGED:
5095 if (b->type == bp_hardware_watchpoint
5096 || b->type == bp_watchpoint)
5098 /* Don't stop: write watchpoints shouldn't fire if
5099 the value hasn't changed. */
5100 bs->print_it = print_it_noop;
5110 else /* must_check_value == 0 */
5112 /* This is a case where some watchpoint(s) triggered, but
5113 not at the address of this watchpoint, or else no
5114 watchpoint triggered after all. So don't print
5115 anything for this watchpoint. */
5116 bs->print_it = print_it_noop;
5122 /* For breakpoints that are currently marked as telling gdb to stop,
5123 check conditions (condition proper, frame, thread and ignore count)
5124 of breakpoint referred to by BS. If we should not stop for this
5125 breakpoint, set BS->stop to 0. */
5128 bpstat_check_breakpoint_conditions (bpstat bs, thread_info *thread)
5130 const struct bp_location *bl;
5131 struct breakpoint *b;
5133 bool condition_result = true;
5134 struct expression *cond;
5136 gdb_assert (bs->stop);
5138 /* BS is built for existing struct breakpoint. */
5139 bl = bs->bp_location_at;
5140 gdb_assert (bl != NULL);
5141 b = bs->breakpoint_at;
5142 gdb_assert (b != NULL);
5144 /* Even if the target evaluated the condition on its end and notified GDB, we
5145 need to do so again since GDB does not know if we stopped due to a
5146 breakpoint or a single step breakpoint. */
5148 if (frame_id_p (b->frame_id)
5149 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
5155 /* If this is a thread/task-specific breakpoint, don't waste cpu
5156 evaluating the condition if this isn't the specified
5158 if ((b->thread != -1 && b->thread != thread->global_num)
5159 || (b->task != 0 && b->task != ada_get_task_number (thread)))
5165 /* Evaluate extension language breakpoints that have a "stop" method
5167 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
5169 if (is_watchpoint (b))
5171 struct watchpoint *w = (struct watchpoint *) b;
5173 cond = w->cond_exp.get ();
5176 cond = bl->cond.get ();
5178 if (cond && b->disposition != disp_del_at_next_stop)
5180 int within_current_scope = 1;
5181 struct watchpoint * w;
5183 /* We use value_mark and value_free_to_mark because it could
5184 be a long time before we return to the command level and
5185 call free_all_values. We can't call free_all_values
5186 because we might be in the middle of evaluating a
5188 struct value *mark = value_mark ();
5190 if (is_watchpoint (b))
5191 w = (struct watchpoint *) b;
5195 /* Need to select the frame, with all that implies so that
5196 the conditions will have the right context. Because we
5197 use the frame, we will not see an inlined function's
5198 variables when we arrive at a breakpoint at the start
5199 of the inlined function; the current frame will be the
5201 if (w == NULL || w->cond_exp_valid_block == NULL)
5202 select_frame (get_current_frame ());
5205 struct frame_info *frame;
5207 /* For local watchpoint expressions, which particular
5208 instance of a local is being watched matters, so we
5209 keep track of the frame to evaluate the expression
5210 in. To evaluate the condition however, it doesn't
5211 really matter which instantiation of the function
5212 where the condition makes sense triggers the
5213 watchpoint. This allows an expression like "watch
5214 global if q > 10" set in `func', catch writes to
5215 global on all threads that call `func', or catch
5216 writes on all recursive calls of `func' by a single
5217 thread. We simply always evaluate the condition in
5218 the innermost frame that's executing where it makes
5219 sense to evaluate the condition. It seems
5221 frame = block_innermost_frame (w->cond_exp_valid_block);
5223 select_frame (frame);
5225 within_current_scope = 0;
5227 if (within_current_scope)
5231 condition_result = breakpoint_cond_eval (cond);
5233 catch (const gdb_exception &ex)
5235 exception_fprintf (gdb_stderr, ex,
5236 "Error in testing breakpoint condition:\n");
5241 warning (_("Watchpoint condition cannot be tested "
5242 "in the current scope"));
5243 /* If we failed to set the right context for this
5244 watchpoint, unconditionally report it. */
5246 /* FIXME-someday, should give breakpoint #. */
5247 value_free_to_mark (mark);
5250 if (cond && !condition_result)
5254 else if (b->ignore_count > 0)
5258 /* Increase the hit count even though we don't stop. */
5260 gdb::observers::breakpoint_modified.notify (b);
5264 /* Returns true if we need to track moribund locations of LOC's type
5265 on the current target. */
5268 need_moribund_for_location_type (struct bp_location *loc)
5270 return ((loc->loc_type == bp_loc_software_breakpoint
5271 && !target_supports_stopped_by_sw_breakpoint ())
5272 || (loc->loc_type == bp_loc_hardware_breakpoint
5273 && !target_supports_stopped_by_hw_breakpoint ()));
5276 /* See breakpoint.h. */
5279 build_bpstat_chain (const address_space *aspace, CORE_ADDR bp_addr,
5280 const struct target_waitstatus *ws)
5282 struct breakpoint *b;
5283 bpstat bs_head = NULL, *bs_link = &bs_head;
5287 if (!breakpoint_enabled (b))
5290 for (bp_location *bl = b->loc; bl != NULL; bl = bl->next)
5292 /* For hardware watchpoints, we look only at the first
5293 location. The watchpoint_check function will work on the
5294 entire expression, not the individual locations. For
5295 read watchpoints, the watchpoints_triggered function has
5296 checked all locations already. */
5297 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5300 if (!bl->enabled || bl->shlib_disabled)
5303 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
5306 /* Come here if it's a watchpoint, or if the break address
5309 bpstat bs = new bpstats (bl, &bs_link); /* Alloc a bpstat to
5312 /* Assume we stop. Should we find a watchpoint that is not
5313 actually triggered, or if the condition of the breakpoint
5314 evaluates as false, we'll reset 'stop' to 0. */
5318 /* If this is a scope breakpoint, mark the associated
5319 watchpoint as triggered so that we will handle the
5320 out-of-scope event. We'll get to the watchpoint next
5322 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
5324 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5326 w->watchpoint_triggered = watch_triggered_yes;
5331 /* Check if a moribund breakpoint explains the stop. */
5332 if (!target_supports_stopped_by_sw_breakpoint ()
5333 || !target_supports_stopped_by_hw_breakpoint ())
5335 for (bp_location *loc : moribund_locations)
5337 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5338 && need_moribund_for_location_type (loc))
5340 bpstat bs = new bpstats (loc, &bs_link);
5341 /* For hits of moribund locations, we should just proceed. */
5344 bs->print_it = print_it_noop;
5352 /* See breakpoint.h. */
5355 bpstat_stop_status (const address_space *aspace,
5356 CORE_ADDR bp_addr, thread_info *thread,
5357 const struct target_waitstatus *ws,
5360 struct breakpoint *b = NULL;
5361 /* First item of allocated bpstat's. */
5362 bpstat bs_head = stop_chain;
5364 int need_remove_insert;
5367 /* First, build the bpstat chain with locations that explain a
5368 target stop, while being careful to not set the target running,
5369 as that may invalidate locations (in particular watchpoint
5370 locations are recreated). Resuming will happen here with
5371 breakpoint conditions or watchpoint expressions that include
5372 inferior function calls. */
5373 if (bs_head == NULL)
5374 bs_head = build_bpstat_chain (aspace, bp_addr, ws);
5376 /* A bit of special processing for shlib breakpoints. We need to
5377 process solib loading here, so that the lists of loaded and
5378 unloaded libraries are correct before we handle "catch load" and
5380 for (bs = bs_head; bs != NULL; bs = bs->next)
5382 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
5384 handle_solib_event ();
5389 /* Now go through the locations that caused the target to stop, and
5390 check whether we're interested in reporting this stop to higher
5391 layers, or whether we should resume the target transparently. */
5395 for (bs = bs_head; bs != NULL; bs = bs->next)
5400 b = bs->breakpoint_at;
5401 b->ops->check_status (bs);
5404 bpstat_check_breakpoint_conditions (bs, thread);
5409 gdb::observers::breakpoint_modified.notify (b);
5411 /* We will stop here. */
5412 if (b->disposition == disp_disable)
5414 --(b->enable_count);
5415 if (b->enable_count <= 0)
5416 b->enable_state = bp_disabled;
5421 bs->commands = b->commands;
5422 if (command_line_is_silent (bs->commands
5423 ? bs->commands.get () : NULL))
5426 b->ops->after_condition_true (bs);
5431 /* Print nothing for this entry if we don't stop or don't
5433 if (!bs->stop || !bs->print)
5434 bs->print_it = print_it_noop;
5437 /* If we aren't stopping, the value of some hardware watchpoint may
5438 not have changed, but the intermediate memory locations we are
5439 watching may have. Don't bother if we're stopping; this will get
5441 need_remove_insert = 0;
5442 if (! bpstat_causes_stop (bs_head))
5443 for (bs = bs_head; bs != NULL; bs = bs->next)
5445 && bs->breakpoint_at
5446 && is_hardware_watchpoint (bs->breakpoint_at))
5448 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5450 update_watchpoint (w, 0 /* don't reparse. */);
5451 need_remove_insert = 1;
5454 if (need_remove_insert)
5455 update_global_location_list (UGLL_MAY_INSERT);
5456 else if (removed_any)
5457 update_global_location_list (UGLL_DONT_INSERT);
5463 handle_jit_event (void)
5465 struct frame_info *frame;
5466 struct gdbarch *gdbarch;
5469 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5471 /* Switch terminal for any messages produced by
5472 breakpoint_re_set. */
5473 target_terminal::ours_for_output ();
5475 frame = get_current_frame ();
5476 gdbarch = get_frame_arch (frame);
5478 jit_event_handler (gdbarch);
5480 target_terminal::inferior ();
5483 /* Prepare WHAT final decision for infrun. */
5485 /* Decide what infrun needs to do with this bpstat. */
5488 bpstat_what (bpstat bs_head)
5490 struct bpstat_what retval;
5493 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
5494 retval.call_dummy = STOP_NONE;
5495 retval.is_longjmp = 0;
5497 for (bs = bs_head; bs != NULL; bs = bs->next)
5499 /* Extract this BS's action. After processing each BS, we check
5500 if its action overrides all we've seem so far. */
5501 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5504 if (bs->breakpoint_at == NULL)
5506 /* I suspect this can happen if it was a momentary
5507 breakpoint which has since been deleted. */
5511 bptype = bs->breakpoint_at->type;
5518 case bp_hardware_breakpoint:
5519 case bp_single_step:
5522 case bp_shlib_event:
5526 this_action = BPSTAT_WHAT_STOP_NOISY;
5528 this_action = BPSTAT_WHAT_STOP_SILENT;
5531 this_action = BPSTAT_WHAT_SINGLE;
5534 case bp_hardware_watchpoint:
5535 case bp_read_watchpoint:
5536 case bp_access_watchpoint:
5540 this_action = BPSTAT_WHAT_STOP_NOISY;
5542 this_action = BPSTAT_WHAT_STOP_SILENT;
5546 /* There was a watchpoint, but we're not stopping.
5547 This requires no further action. */
5551 case bp_longjmp_call_dummy:
5555 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5556 retval.is_longjmp = bptype != bp_exception;
5559 this_action = BPSTAT_WHAT_SINGLE;
5561 case bp_longjmp_resume:
5562 case bp_exception_resume:
5565 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5566 retval.is_longjmp = bptype == bp_longjmp_resume;
5569 this_action = BPSTAT_WHAT_SINGLE;
5571 case bp_step_resume:
5573 this_action = BPSTAT_WHAT_STEP_RESUME;
5576 /* It is for the wrong frame. */
5577 this_action = BPSTAT_WHAT_SINGLE;
5580 case bp_hp_step_resume:
5582 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5585 /* It is for the wrong frame. */
5586 this_action = BPSTAT_WHAT_SINGLE;
5589 case bp_watchpoint_scope:
5590 case bp_thread_event:
5591 case bp_overlay_event:
5592 case bp_longjmp_master:
5593 case bp_std_terminate_master:
5594 case bp_exception_master:
5595 this_action = BPSTAT_WHAT_SINGLE;
5601 this_action = BPSTAT_WHAT_STOP_NOISY;
5603 this_action = BPSTAT_WHAT_STOP_SILENT;
5607 /* There was a catchpoint, but we're not stopping.
5608 This requires no further action. */
5612 this_action = BPSTAT_WHAT_SINGLE;
5615 /* Make sure the action is stop (silent or noisy),
5616 so infrun.c pops the dummy frame. */
5617 retval.call_dummy = STOP_STACK_DUMMY;
5618 this_action = BPSTAT_WHAT_STOP_SILENT;
5620 case bp_std_terminate:
5621 /* Make sure the action is stop (silent or noisy),
5622 so infrun.c pops the dummy frame. */
5623 retval.call_dummy = STOP_STD_TERMINATE;
5624 this_action = BPSTAT_WHAT_STOP_SILENT;
5627 case bp_fast_tracepoint:
5628 case bp_static_tracepoint:
5629 /* Tracepoint hits should not be reported back to GDB, and
5630 if one got through somehow, it should have been filtered
5632 internal_error (__FILE__, __LINE__,
5633 _("bpstat_what: tracepoint encountered"));
5635 case bp_gnu_ifunc_resolver:
5636 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5637 this_action = BPSTAT_WHAT_SINGLE;
5639 case bp_gnu_ifunc_resolver_return:
5640 /* The breakpoint will be removed, execution will restart from the
5641 PC of the former breakpoint. */
5642 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5647 this_action = BPSTAT_WHAT_STOP_SILENT;
5649 this_action = BPSTAT_WHAT_SINGLE;
5653 internal_error (__FILE__, __LINE__,
5654 _("bpstat_what: unhandled bptype %d"), (int) bptype);
5657 retval.main_action = std::max (retval.main_action, this_action);
5664 bpstat_run_callbacks (bpstat bs_head)
5668 for (bs = bs_head; bs != NULL; bs = bs->next)
5670 struct breakpoint *b = bs->breakpoint_at;
5677 handle_jit_event ();
5679 case bp_gnu_ifunc_resolver:
5680 gnu_ifunc_resolver_stop (b);
5682 case bp_gnu_ifunc_resolver_return:
5683 gnu_ifunc_resolver_return_stop (b);
5689 /* Nonzero if we should step constantly (e.g. watchpoints on machines
5690 without hardware support). This isn't related to a specific bpstat,
5691 just to things like whether watchpoints are set. */
5694 bpstat_should_step (void)
5696 struct breakpoint *b;
5699 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
5705 bpstat_causes_stop (bpstat bs)
5707 for (; bs != NULL; bs = bs->next)
5716 /* Compute a string of spaces suitable to indent the next line
5717 so it starts at the position corresponding to the table column
5718 named COL_NAME in the currently active table of UIOUT. */
5721 wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5723 static char wrap_indent[80];
5724 int i, total_width, width, align;
5728 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
5730 if (strcmp (text, col_name) == 0)
5732 gdb_assert (total_width < sizeof wrap_indent);
5733 memset (wrap_indent, ' ', total_width);
5734 wrap_indent[total_width] = 0;
5739 total_width += width + 1;
5745 /* Determine if the locations of this breakpoint will have their conditions
5746 evaluated by the target, host or a mix of both. Returns the following:
5748 "host": Host evals condition.
5749 "host or target": Host or Target evals condition.
5750 "target": Target evals condition.
5754 bp_condition_evaluator (struct breakpoint *b)
5756 struct bp_location *bl;
5757 char host_evals = 0;
5758 char target_evals = 0;
5763 if (!is_breakpoint (b))
5766 if (gdb_evaluates_breakpoint_condition_p ()
5767 || !target_supports_evaluation_of_breakpoint_conditions ())
5768 return condition_evaluation_host;
5770 for (bl = b->loc; bl; bl = bl->next)
5772 if (bl->cond_bytecode)
5778 if (host_evals && target_evals)
5779 return condition_evaluation_both;
5780 else if (target_evals)
5781 return condition_evaluation_target;
5783 return condition_evaluation_host;
5786 /* Determine the breakpoint location's condition evaluator. This is
5787 similar to bp_condition_evaluator, but for locations. */
5790 bp_location_condition_evaluator (struct bp_location *bl)
5792 if (bl && !is_breakpoint (bl->owner))
5795 if (gdb_evaluates_breakpoint_condition_p ()
5796 || !target_supports_evaluation_of_breakpoint_conditions ())
5797 return condition_evaluation_host;
5799 if (bl && bl->cond_bytecode)
5800 return condition_evaluation_target;
5802 return condition_evaluation_host;
5805 /* Print the LOC location out of the list of B->LOC locations. */
5808 print_breakpoint_location (struct breakpoint *b,
5809 struct bp_location *loc)
5811 struct ui_out *uiout = current_uiout;
5813 scoped_restore_current_program_space restore_pspace;
5815 if (loc != NULL && loc->shlib_disabled)
5819 set_current_program_space (loc->pspace);
5821 if (b->display_canonical)
5822 uiout->field_string ("what", event_location_to_string (b->location.get ()));
5823 else if (loc && loc->symtab)
5825 const struct symbol *sym = loc->symbol;
5829 uiout->text ("in ");
5830 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym),
5831 ui_out_style_kind::FUNCTION);
5833 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
5834 uiout->text ("at ");
5836 uiout->field_string ("file",
5837 symtab_to_filename_for_display (loc->symtab),
5838 ui_out_style_kind::FILE);
5841 if (uiout->is_mi_like_p ())
5842 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
5844 uiout->field_int ("line", loc->line_number);
5850 print_address_symbolic (loc->gdbarch, loc->address, &stb,
5852 uiout->field_stream ("at", stb);
5856 uiout->field_string ("pending",
5857 event_location_to_string (b->location.get ()));
5858 /* If extra_string is available, it could be holding a condition
5859 or dprintf arguments. In either case, make sure it is printed,
5860 too, but only for non-MI streams. */
5861 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
5863 if (b->type == bp_dprintf)
5867 uiout->text (b->extra_string);
5871 if (loc && is_breakpoint (b)
5872 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5873 && bp_condition_evaluator (b) == condition_evaluation_both)
5876 uiout->field_string ("evaluated-by",
5877 bp_location_condition_evaluator (loc));
5883 bptype_string (enum bptype type)
5885 struct ep_type_description
5888 const char *description;
5890 static struct ep_type_description bptypes[] =
5892 {bp_none, "?deleted?"},
5893 {bp_breakpoint, "breakpoint"},
5894 {bp_hardware_breakpoint, "hw breakpoint"},
5895 {bp_single_step, "sw single-step"},
5896 {bp_until, "until"},
5897 {bp_finish, "finish"},
5898 {bp_watchpoint, "watchpoint"},
5899 {bp_hardware_watchpoint, "hw watchpoint"},
5900 {bp_read_watchpoint, "read watchpoint"},
5901 {bp_access_watchpoint, "acc watchpoint"},
5902 {bp_longjmp, "longjmp"},
5903 {bp_longjmp_resume, "longjmp resume"},
5904 {bp_longjmp_call_dummy, "longjmp for call dummy"},
5905 {bp_exception, "exception"},
5906 {bp_exception_resume, "exception resume"},
5907 {bp_step_resume, "step resume"},
5908 {bp_hp_step_resume, "high-priority step resume"},
5909 {bp_watchpoint_scope, "watchpoint scope"},
5910 {bp_call_dummy, "call dummy"},
5911 {bp_std_terminate, "std::terminate"},
5912 {bp_shlib_event, "shlib events"},
5913 {bp_thread_event, "thread events"},
5914 {bp_overlay_event, "overlay events"},
5915 {bp_longjmp_master, "longjmp master"},
5916 {bp_std_terminate_master, "std::terminate master"},
5917 {bp_exception_master, "exception master"},
5918 {bp_catchpoint, "catchpoint"},
5919 {bp_tracepoint, "tracepoint"},
5920 {bp_fast_tracepoint, "fast tracepoint"},
5921 {bp_static_tracepoint, "static tracepoint"},
5922 {bp_dprintf, "dprintf"},
5923 {bp_jit_event, "jit events"},
5924 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
5925 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
5928 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
5929 || ((int) type != bptypes[(int) type].type))
5930 internal_error (__FILE__, __LINE__,
5931 _("bptypes table does not describe type #%d."),
5934 return bptypes[(int) type].description;
5937 /* For MI, output a field named 'thread-groups' with a list as the value.
5938 For CLI, prefix the list with the string 'inf'. */
5941 output_thread_groups (struct ui_out *uiout,
5942 const char *field_name,
5943 const std::vector<int> &inf_nums,
5946 int is_mi = uiout->is_mi_like_p ();
5948 /* For backward compatibility, don't display inferiors in CLI unless
5949 there are several. Always display them for MI. */
5950 if (!is_mi && mi_only)
5953 ui_out_emit_list list_emitter (uiout, field_name);
5955 for (size_t i = 0; i < inf_nums.size (); i++)
5961 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf_nums[i]);
5962 uiout->field_string (NULL, mi_group);
5967 uiout->text (" inf ");
5971 uiout->text (plongest (inf_nums[i]));
5976 /* Print B to gdb_stdout. */
5979 print_one_breakpoint_location (struct breakpoint *b,
5980 struct bp_location *loc,
5982 struct bp_location **last_loc,
5985 struct command_line *l;
5986 static char bpenables[] = "nynny";
5988 struct ui_out *uiout = current_uiout;
5989 int header_of_multiple = 0;
5990 int part_of_multiple = (loc != NULL);
5991 struct value_print_options opts;
5993 get_user_print_options (&opts);
5995 gdb_assert (!loc || loc_number != 0);
5996 /* See comment in print_one_breakpoint concerning treatment of
5997 breakpoints with single disabled location. */
6000 && (b->loc->next != NULL || !b->loc->enabled)))
6001 header_of_multiple = 1;
6009 if (part_of_multiple)
6010 uiout->field_fmt ("number", "%d.%d", b->number, loc_number);
6012 uiout->field_int ("number", b->number);
6016 if (part_of_multiple)
6017 uiout->field_skip ("type");
6019 uiout->field_string ("type", bptype_string (b->type));
6023 if (part_of_multiple)
6024 uiout->field_skip ("disp");
6026 uiout->field_string ("disp", bpdisp_text (b->disposition));
6030 if (part_of_multiple)
6031 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
6033 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
6036 if (b->ops != NULL && b->ops->print_one != NULL)
6038 /* Although the print_one can possibly print all locations,
6039 calling it here is not likely to get any nice result. So,
6040 make sure there's just one location. */
6041 gdb_assert (b->loc == NULL || b->loc->next == NULL);
6042 b->ops->print_one (b, last_loc);
6048 internal_error (__FILE__, __LINE__,
6049 _("print_one_breakpoint: bp_none encountered\n"));
6053 case bp_hardware_watchpoint:
6054 case bp_read_watchpoint:
6055 case bp_access_watchpoint:
6057 struct watchpoint *w = (struct watchpoint *) b;
6059 /* Field 4, the address, is omitted (which makes the columns
6060 not line up too nicely with the headers, but the effect
6061 is relatively readable). */
6062 if (opts.addressprint)
6063 uiout->field_skip ("addr");
6065 uiout->field_string ("what", w->exp_string);
6070 case bp_hardware_breakpoint:
6071 case bp_single_step:
6075 case bp_longjmp_resume:
6076 case bp_longjmp_call_dummy:
6078 case bp_exception_resume:
6079 case bp_step_resume:
6080 case bp_hp_step_resume:
6081 case bp_watchpoint_scope:
6083 case bp_std_terminate:
6084 case bp_shlib_event:
6085 case bp_thread_event:
6086 case bp_overlay_event:
6087 case bp_longjmp_master:
6088 case bp_std_terminate_master:
6089 case bp_exception_master:
6091 case bp_fast_tracepoint:
6092 case bp_static_tracepoint:
6095 case bp_gnu_ifunc_resolver:
6096 case bp_gnu_ifunc_resolver_return:
6097 if (opts.addressprint)
6100 if (header_of_multiple)
6101 uiout->field_string ("addr", "<MULTIPLE>");
6102 else if (b->loc == NULL || loc->shlib_disabled)
6103 uiout->field_string ("addr", "<PENDING>");
6105 uiout->field_core_addr ("addr",
6106 loc->gdbarch, loc->address);
6109 if (!header_of_multiple)
6110 print_breakpoint_location (b, loc);
6117 if (loc != NULL && !header_of_multiple)
6119 std::vector<int> inf_nums;
6122 for (inferior *inf : all_inferiors ())
6124 if (inf->pspace == loc->pspace)
6125 inf_nums.push_back (inf->num);
6128 /* For backward compatibility, don't display inferiors in CLI unless
6129 there are several. Always display for MI. */
6131 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6132 && (number_of_program_spaces () > 1
6133 || number_of_inferiors () > 1)
6134 /* LOC is for existing B, it cannot be in
6135 moribund_locations and thus having NULL OWNER. */
6136 && loc->owner->type != bp_catchpoint))
6138 output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
6141 if (!part_of_multiple)
6143 if (b->thread != -1)
6145 /* FIXME: This seems to be redundant and lost here; see the
6146 "stop only in" line a little further down. */
6147 uiout->text (" thread ");
6148 uiout->field_int ("thread", b->thread);
6150 else if (b->task != 0)
6152 uiout->text (" task ");
6153 uiout->field_int ("task", b->task);
6159 if (!part_of_multiple)
6160 b->ops->print_one_detail (b, uiout);
6162 if (part_of_multiple && frame_id_p (b->frame_id))
6165 uiout->text ("\tstop only in stack frame at ");
6166 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
6168 uiout->field_core_addr ("frame",
6169 b->gdbarch, b->frame_id.stack_addr);
6173 if (!part_of_multiple && b->cond_string)
6176 if (is_tracepoint (b))
6177 uiout->text ("\ttrace only if ");
6179 uiout->text ("\tstop only if ");
6180 uiout->field_string ("cond", b->cond_string);
6182 /* Print whether the target is doing the breakpoint's condition
6183 evaluation. If GDB is doing the evaluation, don't print anything. */
6184 if (is_breakpoint (b)
6185 && breakpoint_condition_evaluation_mode ()
6186 == condition_evaluation_target)
6189 uiout->field_string ("evaluated-by",
6190 bp_condition_evaluator (b));
6191 uiout->text (" evals)");
6196 if (!part_of_multiple && b->thread != -1)
6198 /* FIXME should make an annotation for this. */
6199 uiout->text ("\tstop only in thread ");
6200 if (uiout->is_mi_like_p ())
6201 uiout->field_int ("thread", b->thread);
6204 struct thread_info *thr = find_thread_global_id (b->thread);
6206 uiout->field_string ("thread", print_thread_id (thr));
6211 if (!part_of_multiple)
6215 /* FIXME should make an annotation for this. */
6216 if (is_catchpoint (b))
6217 uiout->text ("\tcatchpoint");
6218 else if (is_tracepoint (b))
6219 uiout->text ("\ttracepoint");
6221 uiout->text ("\tbreakpoint");
6222 uiout->text (" already hit ");
6223 uiout->field_int ("times", b->hit_count);
6224 if (b->hit_count == 1)
6225 uiout->text (" time\n");
6227 uiout->text (" times\n");
6231 /* Output the count also if it is zero, but only if this is mi. */
6232 if (uiout->is_mi_like_p ())
6233 uiout->field_int ("times", b->hit_count);
6237 if (!part_of_multiple && b->ignore_count)
6240 uiout->text ("\tignore next ");
6241 uiout->field_int ("ignore", b->ignore_count);
6242 uiout->text (" hits\n");
6245 /* Note that an enable count of 1 corresponds to "enable once"
6246 behavior, which is reported by the combination of enablement and
6247 disposition, so we don't need to mention it here. */
6248 if (!part_of_multiple && b->enable_count > 1)
6251 uiout->text ("\tdisable after ");
6252 /* Tweak the wording to clarify that ignore and enable counts
6253 are distinct, and have additive effect. */
6254 if (b->ignore_count)
6255 uiout->text ("additional ");
6257 uiout->text ("next ");
6258 uiout->field_int ("enable", b->enable_count);
6259 uiout->text (" hits\n");
6262 if (!part_of_multiple && is_tracepoint (b))
6264 struct tracepoint *tp = (struct tracepoint *) b;
6266 if (tp->traceframe_usage)
6268 uiout->text ("\ttrace buffer usage ");
6269 uiout->field_int ("traceframe-usage", tp->traceframe_usage);
6270 uiout->text (" bytes\n");
6274 l = b->commands ? b->commands.get () : NULL;
6275 if (!part_of_multiple && l)
6278 ui_out_emit_tuple tuple_emitter (uiout, "script");
6279 print_command_lines (uiout, l, 4);
6282 if (is_tracepoint (b))
6284 struct tracepoint *t = (struct tracepoint *) b;
6286 if (!part_of_multiple && t->pass_count)
6288 annotate_field (10);
6289 uiout->text ("\tpass count ");
6290 uiout->field_int ("pass", t->pass_count);
6291 uiout->text (" \n");
6294 /* Don't display it when tracepoint or tracepoint location is
6296 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6298 annotate_field (11);
6300 if (uiout->is_mi_like_p ())
6301 uiout->field_string ("installed",
6302 loc->inserted ? "y" : "n");
6308 uiout->text ("\tnot ");
6309 uiout->text ("installed on target\n");
6314 if (uiout->is_mi_like_p () && !part_of_multiple)
6316 if (is_watchpoint (b))
6318 struct watchpoint *w = (struct watchpoint *) b;
6320 uiout->field_string ("original-location", w->exp_string);
6322 else if (b->location != NULL
6323 && event_location_to_string (b->location.get ()) != NULL)
6324 uiout->field_string ("original-location",
6325 event_location_to_string (b->location.get ()));
6329 /* See breakpoint.h. */
6331 bool fix_multi_location_breakpoint_output_globally = false;
6334 print_one_breakpoint (struct breakpoint *b,
6335 struct bp_location **last_loc,
6338 struct ui_out *uiout = current_uiout;
6339 bool use_fixed_output
6340 = (uiout->test_flags (fix_multi_location_breakpoint_output)
6341 || fix_multi_location_breakpoint_output_globally);
6343 gdb::optional<ui_out_emit_tuple> bkpt_tuple_emitter (gdb::in_place, uiout, "bkpt");
6344 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6346 /* The mi2 broken format: the main breakpoint tuple ends here, the locations
6348 if (!use_fixed_output)
6349 bkpt_tuple_emitter.reset ();
6351 /* If this breakpoint has custom print function,
6352 it's already printed. Otherwise, print individual
6353 locations, if any. */
6354 if (b->ops == NULL || b->ops->print_one == NULL)
6356 /* If breakpoint has a single location that is disabled, we
6357 print it as if it had several locations, since otherwise it's
6358 hard to represent "breakpoint enabled, location disabled"
6361 Note that while hardware watchpoints have several locations
6362 internally, that's not a property exposed to user. */
6364 && !is_hardware_watchpoint (b)
6365 && (b->loc->next || !b->loc->enabled))
6367 gdb::optional<ui_out_emit_list> locations_list;
6369 /* For MI version <= 2, keep the behavior where GDB outputs an invalid
6370 MI record. For later versions, place breakpoint locations in a
6372 if (uiout->is_mi_like_p () && use_fixed_output)
6373 locations_list.emplace (uiout, "locations");
6376 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next, ++n)
6378 ui_out_emit_tuple loc_tuple_emitter (uiout, NULL);
6379 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6386 breakpoint_address_bits (struct breakpoint *b)
6388 int print_address_bits = 0;
6389 struct bp_location *loc;
6391 /* Software watchpoints that aren't watching memory don't have an
6392 address to print. */
6393 if (is_no_memory_software_watchpoint (b))
6396 for (loc = b->loc; loc; loc = loc->next)
6400 addr_bit = gdbarch_addr_bit (loc->gdbarch);
6401 if (addr_bit > print_address_bits)
6402 print_address_bits = addr_bit;
6405 return print_address_bits;
6408 /* See breakpoint.h. */
6411 print_breakpoint (breakpoint *b)
6413 struct bp_location *dummy_loc = NULL;
6414 print_one_breakpoint (b, &dummy_loc, 0);
6417 /* Return true if this breakpoint was set by the user, false if it is
6418 internal or momentary. */
6421 user_breakpoint_p (struct breakpoint *b)
6423 return b->number > 0;
6426 /* See breakpoint.h. */
6429 pending_breakpoint_p (struct breakpoint *b)
6431 return b->loc == NULL;
6434 /* Print information on user settable breakpoint (watchpoint, etc)
6435 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6436 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6437 FILTER is non-NULL, call it on each breakpoint and only include the
6438 ones for which it returns non-zero. Return the total number of
6439 breakpoints listed. */
6442 breakpoint_1 (const char *args, int allflag,
6443 int (*filter) (const struct breakpoint *))
6445 struct breakpoint *b;
6446 struct bp_location *last_loc = NULL;
6447 int nr_printable_breakpoints;
6448 struct value_print_options opts;
6449 int print_address_bits = 0;
6450 int print_type_col_width = 14;
6451 struct ui_out *uiout = current_uiout;
6453 get_user_print_options (&opts);
6455 /* Compute the number of rows in the table, as well as the size
6456 required for address fields. */
6457 nr_printable_breakpoints = 0;
6460 /* If we have a filter, only list the breakpoints it accepts. */
6461 if (filter && !filter (b))
6464 /* If we have an "args" string, it is a list of breakpoints to
6465 accept. Skip the others. */
6466 if (args != NULL && *args != '\0')
6468 if (allflag && parse_and_eval_long (args) != b->number)
6470 if (!allflag && !number_is_in_list (args, b->number))
6474 if (allflag || user_breakpoint_p (b))
6476 int addr_bit, type_len;
6478 addr_bit = breakpoint_address_bits (b);
6479 if (addr_bit > print_address_bits)
6480 print_address_bits = addr_bit;
6482 type_len = strlen (bptype_string (b->type));
6483 if (type_len > print_type_col_width)
6484 print_type_col_width = type_len;
6486 nr_printable_breakpoints++;
6491 ui_out_emit_table table_emitter (uiout,
6492 opts.addressprint ? 6 : 5,
6493 nr_printable_breakpoints,
6496 if (nr_printable_breakpoints > 0)
6497 annotate_breakpoints_headers ();
6498 if (nr_printable_breakpoints > 0)
6500 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
6501 if (nr_printable_breakpoints > 0)
6503 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
6504 if (nr_printable_breakpoints > 0)
6506 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
6507 if (nr_printable_breakpoints > 0)
6509 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
6510 if (opts.addressprint)
6512 if (nr_printable_breakpoints > 0)
6514 if (print_address_bits <= 32)
6515 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
6517 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
6519 if (nr_printable_breakpoints > 0)
6521 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6522 uiout->table_body ();
6523 if (nr_printable_breakpoints > 0)
6524 annotate_breakpoints_table ();
6529 /* If we have a filter, only list the breakpoints it accepts. */
6530 if (filter && !filter (b))
6533 /* If we have an "args" string, it is a list of breakpoints to
6534 accept. Skip the others. */
6536 if (args != NULL && *args != '\0')
6538 if (allflag) /* maintenance info breakpoint */
6540 if (parse_and_eval_long (args) != b->number)
6543 else /* all others */
6545 if (!number_is_in_list (args, b->number))
6549 /* We only print out user settable breakpoints unless the
6551 if (allflag || user_breakpoint_p (b))
6552 print_one_breakpoint (b, &last_loc, allflag);
6556 if (nr_printable_breakpoints == 0)
6558 /* If there's a filter, let the caller decide how to report
6562 if (args == NULL || *args == '\0')
6563 uiout->message ("No breakpoints or watchpoints.\n");
6565 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
6571 if (last_loc && !server_command)
6572 set_next_address (last_loc->gdbarch, last_loc->address);
6575 /* FIXME? Should this be moved up so that it is only called when
6576 there have been breakpoints? */
6577 annotate_breakpoints_table_end ();
6579 return nr_printable_breakpoints;
6582 /* Display the value of default-collect in a way that is generally
6583 compatible with the breakpoint list. */
6586 default_collect_info (void)
6588 struct ui_out *uiout = current_uiout;
6590 /* If it has no value (which is frequently the case), say nothing; a
6591 message like "No default-collect." gets in user's face when it's
6593 if (!*default_collect)
6596 /* The following phrase lines up nicely with per-tracepoint collect
6598 uiout->text ("default collect ");
6599 uiout->field_string ("default-collect", default_collect);
6600 uiout->text (" \n");
6604 info_breakpoints_command (const char *args, int from_tty)
6606 breakpoint_1 (args, 0, NULL);
6608 default_collect_info ();
6612 info_watchpoints_command (const char *args, int from_tty)
6614 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
6615 struct ui_out *uiout = current_uiout;
6617 if (num_printed == 0)
6619 if (args == NULL || *args == '\0')
6620 uiout->message ("No watchpoints.\n");
6622 uiout->message ("No watchpoint matching '%s'.\n", args);
6627 maintenance_info_breakpoints (const char *args, int from_tty)
6629 breakpoint_1 (args, 1, NULL);
6631 default_collect_info ();
6635 breakpoint_has_pc (struct breakpoint *b,
6636 struct program_space *pspace,
6637 CORE_ADDR pc, struct obj_section *section)
6639 struct bp_location *bl = b->loc;
6641 for (; bl; bl = bl->next)
6643 if (bl->pspace == pspace
6644 && bl->address == pc
6645 && (!overlay_debugging || bl->section == section))
6651 /* Print a message describing any user-breakpoints set at PC. This
6652 concerns with logical breakpoints, so we match program spaces, not
6656 describe_other_breakpoints (struct gdbarch *gdbarch,
6657 struct program_space *pspace, CORE_ADDR pc,
6658 struct obj_section *section, int thread)
6661 struct breakpoint *b;
6664 others += (user_breakpoint_p (b)
6665 && breakpoint_has_pc (b, pspace, pc, section));
6669 printf_filtered (_("Note: breakpoint "));
6670 else /* if (others == ???) */
6671 printf_filtered (_("Note: breakpoints "));
6673 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
6676 printf_filtered ("%d", b->number);
6677 if (b->thread == -1 && thread != -1)
6678 printf_filtered (" (all threads)");
6679 else if (b->thread != -1)
6680 printf_filtered (" (thread %d)", b->thread);
6681 printf_filtered ("%s%s ",
6682 ((b->enable_state == bp_disabled
6683 || b->enable_state == bp_call_disabled)
6687 : ((others == 1) ? " and" : ""));
6689 printf_filtered (_("also set at pc "));
6690 fputs_styled (paddress (gdbarch, pc), address_style.style (), gdb_stdout);
6691 printf_filtered (".\n");
6696 /* Return true iff it is meaningful to use the address member of
6697 BPT locations. For some breakpoint types, the locations' address members
6698 are irrelevant and it makes no sense to attempt to compare them to other
6699 addresses (or use them for any other purpose either).
6701 More specifically, each of the following breakpoint types will
6702 always have a zero valued location address and we don't want to mark
6703 breakpoints of any of these types to be a duplicate of an actual
6704 breakpoint location at address zero:
6712 breakpoint_address_is_meaningful (struct breakpoint *bpt)
6714 enum bptype type = bpt->type;
6716 return (type != bp_watchpoint && type != bp_catchpoint);
6719 /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6720 true if LOC1 and LOC2 represent the same watchpoint location. */
6723 watchpoint_locations_match (struct bp_location *loc1,
6724 struct bp_location *loc2)
6726 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6727 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6729 /* Both of them must exist. */
6730 gdb_assert (w1 != NULL);
6731 gdb_assert (w2 != NULL);
6733 /* If the target can evaluate the condition expression in hardware,
6734 then we we need to insert both watchpoints even if they are at
6735 the same place. Otherwise the watchpoint will only trigger when
6736 the condition of whichever watchpoint was inserted evaluates to
6737 true, not giving a chance for GDB to check the condition of the
6738 other watchpoint. */
6740 && target_can_accel_watchpoint_condition (loc1->address,
6742 loc1->watchpoint_type,
6743 w1->cond_exp.get ()))
6745 && target_can_accel_watchpoint_condition (loc2->address,
6747 loc2->watchpoint_type,
6748 w2->cond_exp.get ())))
6751 /* Note that this checks the owner's type, not the location's. In
6752 case the target does not support read watchpoints, but does
6753 support access watchpoints, we'll have bp_read_watchpoint
6754 watchpoints with hw_access locations. Those should be considered
6755 duplicates of hw_read locations. The hw_read locations will
6756 become hw_access locations later. */
6757 return (loc1->owner->type == loc2->owner->type
6758 && loc1->pspace->aspace == loc2->pspace->aspace
6759 && loc1->address == loc2->address
6760 && loc1->length == loc2->length);
6763 /* See breakpoint.h. */
6766 breakpoint_address_match (const address_space *aspace1, CORE_ADDR addr1,
6767 const address_space *aspace2, CORE_ADDR addr2)
6769 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6770 || aspace1 == aspace2)
6774 /* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6775 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6776 matches ASPACE2. On targets that have global breakpoints, the address
6777 space doesn't really matter. */
6780 breakpoint_address_match_range (const address_space *aspace1,
6782 int len1, const address_space *aspace2,
6785 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6786 || aspace1 == aspace2)
6787 && addr2 >= addr1 && addr2 < addr1 + len1);
6790 /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6791 a ranged breakpoint. In most targets, a match happens only if ASPACE
6792 matches the breakpoint's address space. On targets that have global
6793 breakpoints, the address space doesn't really matter. */
6796 breakpoint_location_address_match (struct bp_location *bl,
6797 const address_space *aspace,
6800 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6803 && breakpoint_address_match_range (bl->pspace->aspace,
6804 bl->address, bl->length,
6808 /* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
6809 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
6810 match happens only if ASPACE matches the breakpoint's address
6811 space. On targets that have global breakpoints, the address space
6812 doesn't really matter. */
6815 breakpoint_location_address_range_overlap (struct bp_location *bl,
6816 const address_space *aspace,
6817 CORE_ADDR addr, int len)
6819 if (gdbarch_has_global_breakpoints (target_gdbarch ())
6820 || bl->pspace->aspace == aspace)
6822 int bl_len = bl->length != 0 ? bl->length : 1;
6824 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
6830 /* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6831 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6832 true, otherwise returns false. */
6835 tracepoint_locations_match (struct bp_location *loc1,
6836 struct bp_location *loc2)
6838 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6839 /* Since tracepoint locations are never duplicated with others', tracepoint
6840 locations at the same address of different tracepoints are regarded as
6841 different locations. */
6842 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6847 /* Assuming LOC1 and LOC2's types' have meaningful target addresses
6848 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
6849 represent the same location. */
6852 breakpoint_locations_match (struct bp_location *loc1,
6853 struct bp_location *loc2)
6855 int hw_point1, hw_point2;
6857 /* Both of them must not be in moribund_locations. */
6858 gdb_assert (loc1->owner != NULL);
6859 gdb_assert (loc2->owner != NULL);
6861 hw_point1 = is_hardware_watchpoint (loc1->owner);
6862 hw_point2 = is_hardware_watchpoint (loc2->owner);
6864 if (hw_point1 != hw_point2)
6867 return watchpoint_locations_match (loc1, loc2);
6868 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6869 return tracepoint_locations_match (loc1, loc2);
6871 /* We compare bp_location.length in order to cover ranged breakpoints. */
6872 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6873 loc2->pspace->aspace, loc2->address)
6874 && loc1->length == loc2->length);
6878 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6879 int bnum, int have_bnum)
6881 /* The longest string possibly returned by hex_string_custom
6882 is 50 chars. These must be at least that big for safety. */
6886 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6887 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
6889 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
6890 bnum, astr1, astr2);
6892 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
6895 /* Adjust a breakpoint's address to account for architectural
6896 constraints on breakpoint placement. Return the adjusted address.
6897 Note: Very few targets require this kind of adjustment. For most
6898 targets, this function is simply the identity function. */
6901 adjust_breakpoint_address (struct gdbarch *gdbarch,
6902 CORE_ADDR bpaddr, enum bptype bptype)
6904 if (bptype == bp_watchpoint
6905 || bptype == bp_hardware_watchpoint
6906 || bptype == bp_read_watchpoint
6907 || bptype == bp_access_watchpoint
6908 || bptype == bp_catchpoint)
6910 /* Watchpoints and the various bp_catch_* eventpoints should not
6911 have their addresses modified. */
6914 else if (bptype == bp_single_step)
6916 /* Single-step breakpoints should not have their addresses
6917 modified. If there's any architectural constrain that
6918 applies to this address, then it should have already been
6919 taken into account when the breakpoint was created in the
6920 first place. If we didn't do this, stepping through e.g.,
6921 Thumb-2 IT blocks would break. */
6926 CORE_ADDR adjusted_bpaddr = bpaddr;
6928 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
6930 /* Some targets have architectural constraints on the placement
6931 of breakpoint instructions. Obtain the adjusted address. */
6932 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
6935 adjusted_bpaddr = address_significant (gdbarch, adjusted_bpaddr);
6937 /* An adjusted breakpoint address can significantly alter
6938 a user's expectations. Print a warning if an adjustment
6940 if (adjusted_bpaddr != bpaddr)
6941 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
6943 return adjusted_bpaddr;
6947 bp_location::bp_location (breakpoint *owner)
6949 bp_location *loc = this;
6952 loc->cond_bytecode = NULL;
6953 loc->shlib_disabled = 0;
6956 switch (owner->type)
6959 case bp_single_step:
6963 case bp_longjmp_resume:
6964 case bp_longjmp_call_dummy:
6966 case bp_exception_resume:
6967 case bp_step_resume:
6968 case bp_hp_step_resume:
6969 case bp_watchpoint_scope:
6971 case bp_std_terminate:
6972 case bp_shlib_event:
6973 case bp_thread_event:
6974 case bp_overlay_event:
6976 case bp_longjmp_master:
6977 case bp_std_terminate_master:
6978 case bp_exception_master:
6979 case bp_gnu_ifunc_resolver:
6980 case bp_gnu_ifunc_resolver_return:
6982 loc->loc_type = bp_loc_software_breakpoint;
6983 mark_breakpoint_location_modified (loc);
6985 case bp_hardware_breakpoint:
6986 loc->loc_type = bp_loc_hardware_breakpoint;
6987 mark_breakpoint_location_modified (loc);
6989 case bp_hardware_watchpoint:
6990 case bp_read_watchpoint:
6991 case bp_access_watchpoint:
6992 loc->loc_type = bp_loc_hardware_watchpoint;
6997 case bp_fast_tracepoint:
6998 case bp_static_tracepoint:
6999 loc->loc_type = bp_loc_other;
7002 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
7008 /* Allocate a struct bp_location. */
7010 static struct bp_location *
7011 allocate_bp_location (struct breakpoint *bpt)
7013 return bpt->ops->allocate_location (bpt);
7017 free_bp_location (struct bp_location *loc)
7022 /* Increment reference count. */
7025 incref_bp_location (struct bp_location *bl)
7030 /* Decrement reference count. If the reference count reaches 0,
7031 destroy the bp_location. Sets *BLP to NULL. */
7034 decref_bp_location (struct bp_location **blp)
7036 gdb_assert ((*blp)->refc > 0);
7038 if (--(*blp)->refc == 0)
7039 free_bp_location (*blp);
7043 /* Add breakpoint B at the end of the global breakpoint chain. */
7046 add_to_breakpoint_chain (std::unique_ptr<breakpoint> &&b)
7048 struct breakpoint *b1;
7049 struct breakpoint *result = b.get ();
7051 /* Add this breakpoint to the end of the chain so that a list of
7052 breakpoints will come out in order of increasing numbers. */
7054 b1 = breakpoint_chain;
7056 breakpoint_chain = b.release ();
7061 b1->next = b.release ();
7067 /* Initializes breakpoint B with type BPTYPE and no locations yet. */
7070 init_raw_breakpoint_without_location (struct breakpoint *b,
7071 struct gdbarch *gdbarch,
7073 const struct breakpoint_ops *ops)
7075 gdb_assert (ops != NULL);
7079 b->gdbarch = gdbarch;
7080 b->language = current_language->la_language;
7081 b->input_radix = input_radix;
7082 b->related_breakpoint = b;
7085 /* Helper to set_raw_breakpoint below. Creates a breakpoint
7086 that has type BPTYPE and has no locations as yet. */
7088 static struct breakpoint *
7089 set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
7091 const struct breakpoint_ops *ops)
7093 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
7095 init_raw_breakpoint_without_location (b.get (), gdbarch, bptype, ops);
7096 return add_to_breakpoint_chain (std::move (b));
7099 /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7100 resolutions should be made as the user specified the location explicitly
7104 set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
7106 gdb_assert (loc->owner != NULL);
7108 if (loc->owner->type == bp_breakpoint
7109 || loc->owner->type == bp_hardware_breakpoint
7110 || is_tracepoint (loc->owner))
7112 const char *function_name;
7114 if (loc->msymbol != NULL
7115 && (MSYMBOL_TYPE (loc->msymbol) == mst_text_gnu_ifunc
7116 || MSYMBOL_TYPE (loc->msymbol) == mst_data_gnu_ifunc)
7119 struct breakpoint *b = loc->owner;
7121 function_name = MSYMBOL_LINKAGE_NAME (loc->msymbol);
7123 if (b->type == bp_breakpoint && b->loc == loc
7124 && loc->next == NULL && b->related_breakpoint == b)
7126 /* Create only the whole new breakpoint of this type but do not
7127 mess more complicated breakpoints with multiple locations. */
7128 b->type = bp_gnu_ifunc_resolver;
7129 /* Remember the resolver's address for use by the return
7131 loc->related_address = loc->address;
7135 find_pc_partial_function (loc->address, &function_name, NULL, NULL);
7138 loc->function_name = xstrdup (function_name);
7142 /* Attempt to determine architecture of location identified by SAL. */
7144 get_sal_arch (struct symtab_and_line sal)
7147 return get_objfile_arch (sal.section->objfile);
7149 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
7154 /* Low level routine for partially initializing a breakpoint of type
7155 BPTYPE. The newly created breakpoint's address, section, source
7156 file name, and line number are provided by SAL.
7158 It is expected that the caller will complete the initialization of
7159 the newly created breakpoint struct as well as output any status
7160 information regarding the creation of a new breakpoint. */
7163 init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
7164 struct symtab_and_line sal, enum bptype bptype,
7165 const struct breakpoint_ops *ops)
7167 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7169 add_location_to_breakpoint (b, &sal);
7171 if (bptype != bp_catchpoint)
7172 gdb_assert (sal.pspace != NULL);
7174 /* Store the program space that was used to set the breakpoint,
7175 except for ordinary breakpoints, which are independent of the
7177 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7178 b->pspace = sal.pspace;
7181 /* set_raw_breakpoint is a low level routine for allocating and
7182 partially initializing a breakpoint of type BPTYPE. The newly
7183 created breakpoint's address, section, source file name, and line
7184 number are provided by SAL. The newly created and partially
7185 initialized breakpoint is added to the breakpoint chain and
7186 is also returned as the value of this function.
7188 It is expected that the caller will complete the initialization of
7189 the newly created breakpoint struct as well as output any status
7190 information regarding the creation of a new breakpoint. In
7191 particular, set_raw_breakpoint does NOT set the breakpoint
7192 number! Care should be taken to not allow an error to occur
7193 prior to completing the initialization of the breakpoint. If this
7194 should happen, a bogus breakpoint will be left on the chain. */
7197 set_raw_breakpoint (struct gdbarch *gdbarch,
7198 struct symtab_and_line sal, enum bptype bptype,
7199 const struct breakpoint_ops *ops)
7201 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
7203 init_raw_breakpoint (b.get (), gdbarch, sal, bptype, ops);
7204 return add_to_breakpoint_chain (std::move (b));
7207 /* Call this routine when stepping and nexting to enable a breakpoint
7208 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7209 initiated the operation. */
7212 set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
7214 struct breakpoint *b, *b_tmp;
7215 int thread = tp->global_num;
7217 /* To avoid having to rescan all objfile symbols at every step,
7218 we maintain a list of continually-inserted but always disabled
7219 longjmp "master" breakpoints. Here, we simply create momentary
7220 clones of those and enable them for the requested thread. */
7221 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7222 if (b->pspace == current_program_space
7223 && (b->type == bp_longjmp_master
7224 || b->type == bp_exception_master))
7226 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7227 struct breakpoint *clone;
7229 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7230 after their removal. */
7231 clone = momentary_breakpoint_from_master (b, type,
7232 &momentary_breakpoint_ops, 1);
7233 clone->thread = thread;
7236 tp->initiating_frame = frame;
7239 /* Delete all longjmp breakpoints from THREAD. */
7241 delete_longjmp_breakpoint (int thread)
7243 struct breakpoint *b, *b_tmp;
7245 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7246 if (b->type == bp_longjmp || b->type == bp_exception)
7248 if (b->thread == thread)
7249 delete_breakpoint (b);
7254 delete_longjmp_breakpoint_at_next_stop (int thread)
7256 struct breakpoint *b, *b_tmp;
7258 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7259 if (b->type == bp_longjmp || b->type == bp_exception)
7261 if (b->thread == thread)
7262 b->disposition = disp_del_at_next_stop;
7266 /* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7267 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7268 pointer to any of them. Return NULL if this system cannot place longjmp
7272 set_longjmp_breakpoint_for_call_dummy (void)
7274 struct breakpoint *b, *retval = NULL;
7277 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7279 struct breakpoint *new_b;
7281 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
7282 &momentary_breakpoint_ops,
7284 new_b->thread = inferior_thread ()->global_num;
7286 /* Link NEW_B into the chain of RETVAL breakpoints. */
7288 gdb_assert (new_b->related_breakpoint == new_b);
7291 new_b->related_breakpoint = retval;
7292 while (retval->related_breakpoint != new_b->related_breakpoint)
7293 retval = retval->related_breakpoint;
7294 retval->related_breakpoint = new_b;
7300 /* Verify all existing dummy frames and their associated breakpoints for
7301 TP. Remove those which can no longer be found in the current frame
7304 You should call this function only at places where it is safe to currently
7305 unwind the whole stack. Failed stack unwind would discard live dummy
7309 check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
7311 struct breakpoint *b, *b_tmp;
7313 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7314 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
7316 struct breakpoint *dummy_b = b->related_breakpoint;
7318 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7319 dummy_b = dummy_b->related_breakpoint;
7320 if (dummy_b->type != bp_call_dummy
7321 || frame_find_by_id (dummy_b->frame_id) != NULL)
7324 dummy_frame_discard (dummy_b->frame_id, tp);
7326 while (b->related_breakpoint != b)
7328 if (b_tmp == b->related_breakpoint)
7329 b_tmp = b->related_breakpoint->next;
7330 delete_breakpoint (b->related_breakpoint);
7332 delete_breakpoint (b);
7337 enable_overlay_breakpoints (void)
7339 struct breakpoint *b;
7342 if (b->type == bp_overlay_event)
7344 b->enable_state = bp_enabled;
7345 update_global_location_list (UGLL_MAY_INSERT);
7346 overlay_events_enabled = 1;
7351 disable_overlay_breakpoints (void)
7353 struct breakpoint *b;
7356 if (b->type == bp_overlay_event)
7358 b->enable_state = bp_disabled;
7359 update_global_location_list (UGLL_DONT_INSERT);
7360 overlay_events_enabled = 0;
7364 /* Set an active std::terminate breakpoint for each std::terminate
7365 master breakpoint. */
7367 set_std_terminate_breakpoint (void)
7369 struct breakpoint *b, *b_tmp;
7371 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7372 if (b->pspace == current_program_space
7373 && b->type == bp_std_terminate_master)
7375 momentary_breakpoint_from_master (b, bp_std_terminate,
7376 &momentary_breakpoint_ops, 1);
7380 /* Delete all the std::terminate breakpoints. */
7382 delete_std_terminate_breakpoint (void)
7384 struct breakpoint *b, *b_tmp;
7386 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7387 if (b->type == bp_std_terminate)
7388 delete_breakpoint (b);
7392 create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7394 struct breakpoint *b;
7396 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7397 &internal_breakpoint_ops);
7399 b->enable_state = bp_enabled;
7400 /* location has to be used or breakpoint_re_set will delete me. */
7401 b->location = new_address_location (b->loc->address, NULL, 0);
7403 update_global_location_list_nothrow (UGLL_MAY_INSERT);
7408 struct lang_and_radix
7414 /* Create a breakpoint for JIT code registration and unregistration. */
7417 create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7419 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7420 &internal_breakpoint_ops);
7423 /* Remove JIT code registration and unregistration breakpoint(s). */
7426 remove_jit_event_breakpoints (void)
7428 struct breakpoint *b, *b_tmp;
7430 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7431 if (b->type == bp_jit_event
7432 && b->loc->pspace == current_program_space)
7433 delete_breakpoint (b);
7437 remove_solib_event_breakpoints (void)
7439 struct breakpoint *b, *b_tmp;
7441 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7442 if (b->type == bp_shlib_event
7443 && b->loc->pspace == current_program_space)
7444 delete_breakpoint (b);
7447 /* See breakpoint.h. */
7450 remove_solib_event_breakpoints_at_next_stop (void)
7452 struct breakpoint *b, *b_tmp;
7454 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7455 if (b->type == bp_shlib_event
7456 && b->loc->pspace == current_program_space)
7457 b->disposition = disp_del_at_next_stop;
7460 /* Helper for create_solib_event_breakpoint /
7461 create_and_insert_solib_event_breakpoint. Allows specifying which
7462 INSERT_MODE to pass through to update_global_location_list. */
7464 static struct breakpoint *
7465 create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7466 enum ugll_insert_mode insert_mode)
7468 struct breakpoint *b;
7470 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7471 &internal_breakpoint_ops);
7472 update_global_location_list_nothrow (insert_mode);
7477 create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7479 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7482 /* See breakpoint.h. */
7485 create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7487 struct breakpoint *b;
7489 /* Explicitly tell update_global_location_list to insert
7491 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
7492 if (!b->loc->inserted)
7494 delete_breakpoint (b);
7500 /* Disable any breakpoints that are on code in shared libraries. Only
7501 apply to enabled breakpoints, disabled ones can just stay disabled. */
7504 disable_breakpoints_in_shlibs (void)
7506 struct bp_location *loc, **locp_tmp;
7508 ALL_BP_LOCATIONS (loc, locp_tmp)
7510 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7511 struct breakpoint *b = loc->owner;
7513 /* We apply the check to all breakpoints, including disabled for
7514 those with loc->duplicate set. This is so that when breakpoint
7515 becomes enabled, or the duplicate is removed, gdb will try to
7516 insert all breakpoints. If we don't set shlib_disabled here,
7517 we'll try to insert those breakpoints and fail. */
7518 if (((b->type == bp_breakpoint)
7519 || (b->type == bp_jit_event)
7520 || (b->type == bp_hardware_breakpoint)
7521 || (is_tracepoint (b)))
7522 && loc->pspace == current_program_space
7523 && !loc->shlib_disabled
7524 && solib_name_from_address (loc->pspace, loc->address)
7527 loc->shlib_disabled = 1;
7532 /* Disable any breakpoints and tracepoints that are in SOLIB upon
7533 notification of unloaded_shlib. Only apply to enabled breakpoints,
7534 disabled ones can just stay disabled. */
7537 disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7539 struct bp_location *loc, **locp_tmp;
7540 int disabled_shlib_breaks = 0;
7542 ALL_BP_LOCATIONS (loc, locp_tmp)
7544 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7545 struct breakpoint *b = loc->owner;
7547 if (solib->pspace == loc->pspace
7548 && !loc->shlib_disabled
7549 && (((b->type == bp_breakpoint
7550 || b->type == bp_jit_event
7551 || b->type == bp_hardware_breakpoint)
7552 && (loc->loc_type == bp_loc_hardware_breakpoint
7553 || loc->loc_type == bp_loc_software_breakpoint))
7554 || is_tracepoint (b))
7555 && solib_contains_address_p (solib, loc->address))
7557 loc->shlib_disabled = 1;
7558 /* At this point, we cannot rely on remove_breakpoint
7559 succeeding so we must mark the breakpoint as not inserted
7560 to prevent future errors occurring in remove_breakpoints. */
7563 /* This may cause duplicate notifications for the same breakpoint. */
7564 gdb::observers::breakpoint_modified.notify (b);
7566 if (!disabled_shlib_breaks)
7568 target_terminal::ours_for_output ();
7569 warning (_("Temporarily disabling breakpoints "
7570 "for unloaded shared library \"%s\""),
7573 disabled_shlib_breaks = 1;
7578 /* Disable any breakpoints and tracepoints in OBJFILE upon
7579 notification of free_objfile. Only apply to enabled breakpoints,
7580 disabled ones can just stay disabled. */
7583 disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7585 struct breakpoint *b;
7587 if (objfile == NULL)
7590 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7591 managed by the user with add-symbol-file/remove-symbol-file.
7592 Similarly to how breakpoints in shared libraries are handled in
7593 response to "nosharedlibrary", mark breakpoints in such modules
7594 shlib_disabled so they end up uninserted on the next global
7595 location list update. Shared libraries not loaded by the user
7596 aren't handled here -- they're already handled in
7597 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7598 solib_unloaded observer. We skip objfiles that are not
7599 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7601 if ((objfile->flags & OBJF_SHARED) == 0
7602 || (objfile->flags & OBJF_USERLOADED) == 0)
7607 struct bp_location *loc;
7608 int bp_modified = 0;
7610 if (!is_breakpoint (b) && !is_tracepoint (b))
7613 for (loc = b->loc; loc != NULL; loc = loc->next)
7615 CORE_ADDR loc_addr = loc->address;
7617 if (loc->loc_type != bp_loc_hardware_breakpoint
7618 && loc->loc_type != bp_loc_software_breakpoint)
7621 if (loc->shlib_disabled != 0)
7624 if (objfile->pspace != loc->pspace)
7627 if (loc->loc_type != bp_loc_hardware_breakpoint
7628 && loc->loc_type != bp_loc_software_breakpoint)
7631 if (is_addr_in_objfile (loc_addr, objfile))
7633 loc->shlib_disabled = 1;
7634 /* At this point, we don't know whether the object was
7635 unmapped from the inferior or not, so leave the
7636 inserted flag alone. We'll handle failure to
7637 uninsert quietly, in case the object was indeed
7640 mark_breakpoint_location_modified (loc);
7647 gdb::observers::breakpoint_modified.notify (b);
7651 /* FORK & VFORK catchpoints. */
7653 /* An instance of this type is used to represent a fork or vfork
7654 catchpoint. A breakpoint is really of this type iff its ops pointer points
7655 to CATCH_FORK_BREAKPOINT_OPS. */
7657 struct fork_catchpoint : public breakpoint
7659 /* Process id of a child process whose forking triggered this
7660 catchpoint. This field is only valid immediately after this
7661 catchpoint has triggered. */
7662 ptid_t forked_inferior_pid;
7665 /* Implement the "insert" breakpoint_ops method for fork
7669 insert_catch_fork (struct bp_location *bl)
7671 return target_insert_fork_catchpoint (inferior_ptid.pid ());
7674 /* Implement the "remove" breakpoint_ops method for fork
7678 remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
7680 return target_remove_fork_catchpoint (inferior_ptid.pid ());
7683 /* Implement the "breakpoint_hit" breakpoint_ops method for fork
7687 breakpoint_hit_catch_fork (const struct bp_location *bl,
7688 const address_space *aspace, CORE_ADDR bp_addr,
7689 const struct target_waitstatus *ws)
7691 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7693 if (ws->kind != TARGET_WAITKIND_FORKED)
7696 c->forked_inferior_pid = ws->value.related_pid;
7700 /* Implement the "print_it" breakpoint_ops method for fork
7703 static enum print_stop_action
7704 print_it_catch_fork (bpstat bs)
7706 struct ui_out *uiout = current_uiout;
7707 struct breakpoint *b = bs->breakpoint_at;
7708 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
7710 annotate_catchpoint (b->number);
7711 maybe_print_thread_hit_breakpoint (uiout);
7712 if (b->disposition == disp_del)
7713 uiout->text ("Temporary catchpoint ");
7715 uiout->text ("Catchpoint ");
7716 if (uiout->is_mi_like_p ())
7718 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
7719 uiout->field_string ("disp", bpdisp_text (b->disposition));
7721 uiout->field_int ("bkptno", b->number);
7722 uiout->text (" (forked process ");
7723 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
7724 uiout->text ("), ");
7725 return PRINT_SRC_AND_LOC;
7728 /* Implement the "print_one" breakpoint_ops method for fork
7732 print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
7734 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7735 struct value_print_options opts;
7736 struct ui_out *uiout = current_uiout;
7738 get_user_print_options (&opts);
7740 /* Field 4, the address, is omitted (which makes the columns not
7741 line up too nicely with the headers, but the effect is relatively
7743 if (opts.addressprint)
7744 uiout->field_skip ("addr");
7746 uiout->text ("fork");
7747 if (c->forked_inferior_pid != null_ptid)
7749 uiout->text (", process ");
7750 uiout->field_int ("what", c->forked_inferior_pid.pid ());
7754 if (uiout->is_mi_like_p ())
7755 uiout->field_string ("catch-type", "fork");
7758 /* Implement the "print_mention" breakpoint_ops method for fork
7762 print_mention_catch_fork (struct breakpoint *b)
7764 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7767 /* Implement the "print_recreate" breakpoint_ops method for fork
7771 print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7773 fprintf_unfiltered (fp, "catch fork");
7774 print_recreate_thread (b, fp);
7777 /* The breakpoint_ops structure to be used in fork catchpoints. */
7779 static struct breakpoint_ops catch_fork_breakpoint_ops;
7781 /* Implement the "insert" breakpoint_ops method for vfork
7785 insert_catch_vfork (struct bp_location *bl)
7787 return target_insert_vfork_catchpoint (inferior_ptid.pid ());
7790 /* Implement the "remove" breakpoint_ops method for vfork
7794 remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
7796 return target_remove_vfork_catchpoint (inferior_ptid.pid ());
7799 /* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7803 breakpoint_hit_catch_vfork (const struct bp_location *bl,
7804 const address_space *aspace, CORE_ADDR bp_addr,
7805 const struct target_waitstatus *ws)
7807 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7809 if (ws->kind != TARGET_WAITKIND_VFORKED)
7812 c->forked_inferior_pid = ws->value.related_pid;
7816 /* Implement the "print_it" breakpoint_ops method for vfork
7819 static enum print_stop_action
7820 print_it_catch_vfork (bpstat bs)
7822 struct ui_out *uiout = current_uiout;
7823 struct breakpoint *b = bs->breakpoint_at;
7824 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7826 annotate_catchpoint (b->number);
7827 maybe_print_thread_hit_breakpoint (uiout);
7828 if (b->disposition == disp_del)
7829 uiout->text ("Temporary catchpoint ");
7831 uiout->text ("Catchpoint ");
7832 if (uiout->is_mi_like_p ())
7834 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
7835 uiout->field_string ("disp", bpdisp_text (b->disposition));
7837 uiout->field_int ("bkptno", b->number);
7838 uiout->text (" (vforked process ");
7839 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
7840 uiout->text ("), ");
7841 return PRINT_SRC_AND_LOC;
7844 /* Implement the "print_one" breakpoint_ops method for vfork
7848 print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
7850 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7851 struct value_print_options opts;
7852 struct ui_out *uiout = current_uiout;
7854 get_user_print_options (&opts);
7855 /* Field 4, the address, is omitted (which makes the columns not
7856 line up too nicely with the headers, but the effect is relatively
7858 if (opts.addressprint)
7859 uiout->field_skip ("addr");
7861 uiout->text ("vfork");
7862 if (c->forked_inferior_pid != null_ptid)
7864 uiout->text (", process ");
7865 uiout->field_int ("what", c->forked_inferior_pid.pid ());
7869 if (uiout->is_mi_like_p ())
7870 uiout->field_string ("catch-type", "vfork");
7873 /* Implement the "print_mention" breakpoint_ops method for vfork
7877 print_mention_catch_vfork (struct breakpoint *b)
7879 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7882 /* Implement the "print_recreate" breakpoint_ops method for vfork
7886 print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7888 fprintf_unfiltered (fp, "catch vfork");
7889 print_recreate_thread (b, fp);
7892 /* The breakpoint_ops structure to be used in vfork catchpoints. */
7894 static struct breakpoint_ops catch_vfork_breakpoint_ops;
7896 /* An instance of this type is used to represent an solib catchpoint.
7897 A breakpoint is really of this type iff its ops pointer points to
7898 CATCH_SOLIB_BREAKPOINT_OPS. */
7900 struct solib_catchpoint : public breakpoint
7902 ~solib_catchpoint () override;
7904 /* True for "catch load", false for "catch unload". */
7905 unsigned char is_load;
7907 /* Regular expression to match, if any. COMPILED is only valid when
7908 REGEX is non-NULL. */
7910 std::unique_ptr<compiled_regex> compiled;
7913 solib_catchpoint::~solib_catchpoint ()
7915 xfree (this->regex);
7919 insert_catch_solib (struct bp_location *ignore)
7925 remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
7931 breakpoint_hit_catch_solib (const struct bp_location *bl,
7932 const address_space *aspace,
7934 const struct target_waitstatus *ws)
7936 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
7937 struct breakpoint *other;
7939 if (ws->kind == TARGET_WAITKIND_LOADED)
7942 ALL_BREAKPOINTS (other)
7944 struct bp_location *other_bl;
7946 if (other == bl->owner)
7949 if (other->type != bp_shlib_event)
7952 if (self->pspace != NULL && other->pspace != self->pspace)
7955 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
7957 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
7966 check_status_catch_solib (struct bpstats *bs)
7968 struct solib_catchpoint *self
7969 = (struct solib_catchpoint *) bs->breakpoint_at;
7973 for (so_list *iter : current_program_space->added_solibs)
7976 || self->compiled->exec (iter->so_name, 0, NULL, 0) == 0)
7982 for (const std::string &iter : current_program_space->deleted_solibs)
7985 || self->compiled->exec (iter.c_str (), 0, NULL, 0) == 0)
7991 bs->print_it = print_it_noop;
7994 static enum print_stop_action
7995 print_it_catch_solib (bpstat bs)
7997 struct breakpoint *b = bs->breakpoint_at;
7998 struct ui_out *uiout = current_uiout;
8000 annotate_catchpoint (b->number);
8001 maybe_print_thread_hit_breakpoint (uiout);
8002 if (b->disposition == disp_del)
8003 uiout->text ("Temporary catchpoint ");
8005 uiout->text ("Catchpoint ");
8006 uiout->field_int ("bkptno", b->number);
8008 if (uiout->is_mi_like_p ())
8009 uiout->field_string ("disp", bpdisp_text (b->disposition));
8010 print_solib_event (1);
8011 return PRINT_SRC_AND_LOC;
8015 print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8017 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8018 struct value_print_options opts;
8019 struct ui_out *uiout = current_uiout;
8021 get_user_print_options (&opts);
8022 /* Field 4, the address, is omitted (which makes the columns not
8023 line up too nicely with the headers, but the effect is relatively
8025 if (opts.addressprint)
8028 uiout->field_skip ("addr");
8036 msg = string_printf (_("load of library matching %s"), self->regex);
8038 msg = _("load of library");
8043 msg = string_printf (_("unload of library matching %s"), self->regex);
8045 msg = _("unload of library");
8047 uiout->field_string ("what", msg);
8049 if (uiout->is_mi_like_p ())
8050 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
8054 print_mention_catch_solib (struct breakpoint *b)
8056 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8058 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8059 self->is_load ? "load" : "unload");
8063 print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8065 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8067 fprintf_unfiltered (fp, "%s %s",
8068 b->disposition == disp_del ? "tcatch" : "catch",
8069 self->is_load ? "load" : "unload");
8071 fprintf_unfiltered (fp, " %s", self->regex);
8072 fprintf_unfiltered (fp, "\n");
8075 static struct breakpoint_ops catch_solib_breakpoint_ops;
8077 /* Shared helper function (MI and CLI) for creating and installing
8078 a shared object event catchpoint. If IS_LOAD is non-zero then
8079 the events to be caught are load events, otherwise they are
8080 unload events. If IS_TEMP is non-zero the catchpoint is a
8081 temporary one. If ENABLED is non-zero the catchpoint is
8082 created in an enabled state. */
8085 add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
8087 struct gdbarch *gdbarch = get_current_arch ();
8091 arg = skip_spaces (arg);
8093 std::unique_ptr<solib_catchpoint> c (new solib_catchpoint ());
8097 c->compiled.reset (new compiled_regex (arg, REG_NOSUB,
8098 _("Invalid regexp")));
8099 c->regex = xstrdup (arg);
8102 c->is_load = is_load;
8103 init_catchpoint (c.get (), gdbarch, is_temp, NULL,
8104 &catch_solib_breakpoint_ops);
8106 c->enable_state = enabled ? bp_enabled : bp_disabled;
8108 install_breakpoint (0, std::move (c), 1);
8111 /* A helper function that does all the work for "catch load" and
8115 catch_load_or_unload (const char *arg, int from_tty, int is_load,
8116 struct cmd_list_element *command)
8119 const int enabled = 1;
8121 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8123 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8127 catch_load_command_1 (const char *arg, int from_tty,
8128 struct cmd_list_element *command)
8130 catch_load_or_unload (arg, from_tty, 1, command);
8134 catch_unload_command_1 (const char *arg, int from_tty,
8135 struct cmd_list_element *command)
8137 catch_load_or_unload (arg, from_tty, 0, command);
8140 /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8141 is non-zero, then make the breakpoint temporary. If COND_STRING is
8142 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8143 the breakpoint_ops structure associated to the catchpoint. */
8146 init_catchpoint (struct breakpoint *b,
8147 struct gdbarch *gdbarch, int tempflag,
8148 const char *cond_string,
8149 const struct breakpoint_ops *ops)
8151 symtab_and_line sal;
8152 sal.pspace = current_program_space;
8154 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
8156 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
8157 b->disposition = tempflag ? disp_del : disp_donttouch;
8161 install_breakpoint (int internal, std::unique_ptr<breakpoint> &&arg, int update_gll)
8163 breakpoint *b = add_to_breakpoint_chain (std::move (arg));
8164 set_breakpoint_number (internal, b);
8165 if (is_tracepoint (b))
8166 set_tracepoint_count (breakpoint_count);
8169 gdb::observers::breakpoint_created.notify (b);
8172 update_global_location_list (UGLL_MAY_INSERT);
8176 create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8177 int tempflag, const char *cond_string,
8178 const struct breakpoint_ops *ops)
8180 std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
8182 init_catchpoint (c.get (), gdbarch, tempflag, cond_string, ops);
8184 c->forked_inferior_pid = null_ptid;
8186 install_breakpoint (0, std::move (c), 1);
8189 /* Exec catchpoints. */
8191 /* An instance of this type is used to represent an exec catchpoint.
8192 A breakpoint is really of this type iff its ops pointer points to
8193 CATCH_EXEC_BREAKPOINT_OPS. */
8195 struct exec_catchpoint : public breakpoint
8197 ~exec_catchpoint () override;
8199 /* Filename of a program whose exec triggered this catchpoint.
8200 This field is only valid immediately after this catchpoint has
8202 char *exec_pathname;
8205 /* Exec catchpoint destructor. */
8207 exec_catchpoint::~exec_catchpoint ()
8209 xfree (this->exec_pathname);
8213 insert_catch_exec (struct bp_location *bl)
8215 return target_insert_exec_catchpoint (inferior_ptid.pid ());
8219 remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
8221 return target_remove_exec_catchpoint (inferior_ptid.pid ());
8225 breakpoint_hit_catch_exec (const struct bp_location *bl,
8226 const address_space *aspace, CORE_ADDR bp_addr,
8227 const struct target_waitstatus *ws)
8229 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8231 if (ws->kind != TARGET_WAITKIND_EXECD)
8234 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8238 static enum print_stop_action
8239 print_it_catch_exec (bpstat bs)
8241 struct ui_out *uiout = current_uiout;
8242 struct breakpoint *b = bs->breakpoint_at;
8243 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8245 annotate_catchpoint (b->number);
8246 maybe_print_thread_hit_breakpoint (uiout);
8247 if (b->disposition == disp_del)
8248 uiout->text ("Temporary catchpoint ");
8250 uiout->text ("Catchpoint ");
8251 if (uiout->is_mi_like_p ())
8253 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8254 uiout->field_string ("disp", bpdisp_text (b->disposition));
8256 uiout->field_int ("bkptno", b->number);
8257 uiout->text (" (exec'd ");
8258 uiout->field_string ("new-exec", c->exec_pathname);
8259 uiout->text ("), ");
8261 return PRINT_SRC_AND_LOC;
8265 print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
8267 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8268 struct value_print_options opts;
8269 struct ui_out *uiout = current_uiout;
8271 get_user_print_options (&opts);
8273 /* Field 4, the address, is omitted (which makes the columns
8274 not line up too nicely with the headers, but the effect
8275 is relatively readable). */
8276 if (opts.addressprint)
8277 uiout->field_skip ("addr");
8279 uiout->text ("exec");
8280 if (c->exec_pathname != NULL)
8282 uiout->text (", program \"");
8283 uiout->field_string ("what", c->exec_pathname);
8284 uiout->text ("\" ");
8287 if (uiout->is_mi_like_p ())
8288 uiout->field_string ("catch-type", "exec");
8292 print_mention_catch_exec (struct breakpoint *b)
8294 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8297 /* Implement the "print_recreate" breakpoint_ops method for exec
8301 print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8303 fprintf_unfiltered (fp, "catch exec");
8304 print_recreate_thread (b, fp);
8307 static struct breakpoint_ops catch_exec_breakpoint_ops;
8310 hw_breakpoint_used_count (void)
8313 struct breakpoint *b;
8314 struct bp_location *bl;
8318 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
8319 for (bl = b->loc; bl; bl = bl->next)
8321 /* Special types of hardware breakpoints may use more than
8323 i += b->ops->resources_needed (bl);
8330 /* Returns the resources B would use if it were a hardware
8334 hw_watchpoint_use_count (struct breakpoint *b)
8337 struct bp_location *bl;
8339 if (!breakpoint_enabled (b))
8342 for (bl = b->loc; bl; bl = bl->next)
8344 /* Special types of hardware watchpoints may use more than
8346 i += b->ops->resources_needed (bl);
8352 /* Returns the sum the used resources of all hardware watchpoints of
8353 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8354 the sum of the used resources of all hardware watchpoints of other
8355 types _not_ TYPE. */
8358 hw_watchpoint_used_count_others (struct breakpoint *except,
8359 enum bptype type, int *other_type_used)
8362 struct breakpoint *b;
8364 *other_type_used = 0;
8369 if (!breakpoint_enabled (b))
8372 if (b->type == type)
8373 i += hw_watchpoint_use_count (b);
8374 else if (is_hardware_watchpoint (b))
8375 *other_type_used = 1;
8382 disable_watchpoints_before_interactive_call_start (void)
8384 struct breakpoint *b;
8388 if (is_watchpoint (b) && breakpoint_enabled (b))
8390 b->enable_state = bp_call_disabled;
8391 update_global_location_list (UGLL_DONT_INSERT);
8397 enable_watchpoints_after_interactive_call_stop (void)
8399 struct breakpoint *b;
8403 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
8405 b->enable_state = bp_enabled;
8406 update_global_location_list (UGLL_MAY_INSERT);
8412 disable_breakpoints_before_startup (void)
8414 current_program_space->executing_startup = 1;
8415 update_global_location_list (UGLL_DONT_INSERT);
8419 enable_breakpoints_after_startup (void)
8421 current_program_space->executing_startup = 0;
8422 breakpoint_re_set ();
8425 /* Create a new single-step breakpoint for thread THREAD, with no
8428 static struct breakpoint *
8429 new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8431 std::unique_ptr<breakpoint> b (new breakpoint ());
8433 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step,
8434 &momentary_breakpoint_ops);
8436 b->disposition = disp_donttouch;
8437 b->frame_id = null_frame_id;
8440 gdb_assert (b->thread != 0);
8442 return add_to_breakpoint_chain (std::move (b));
8445 /* Set a momentary breakpoint of type TYPE at address specified by
8446 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8450 set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8451 struct frame_id frame_id, enum bptype type)
8453 struct breakpoint *b;
8455 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8457 gdb_assert (!frame_id_artificial_p (frame_id));
8459 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
8460 b->enable_state = bp_enabled;
8461 b->disposition = disp_donttouch;
8462 b->frame_id = frame_id;
8464 b->thread = inferior_thread ()->global_num;
8466 update_global_location_list_nothrow (UGLL_MAY_INSERT);
8468 return breakpoint_up (b);
8471 /* Make a momentary breakpoint based on the master breakpoint ORIG.
8472 The new breakpoint will have type TYPE, use OPS as its
8473 breakpoint_ops, and will set enabled to LOC_ENABLED. */
8475 static struct breakpoint *
8476 momentary_breakpoint_from_master (struct breakpoint *orig,
8478 const struct breakpoint_ops *ops,
8481 struct breakpoint *copy;
8483 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
8484 copy->loc = allocate_bp_location (copy);
8485 set_breakpoint_location_function (copy->loc, 1);
8487 copy->loc->gdbarch = orig->loc->gdbarch;
8488 copy->loc->requested_address = orig->loc->requested_address;
8489 copy->loc->address = orig->loc->address;
8490 copy->loc->section = orig->loc->section;
8491 copy->loc->pspace = orig->loc->pspace;
8492 copy->loc->probe = orig->loc->probe;
8493 copy->loc->line_number = orig->loc->line_number;
8494 copy->loc->symtab = orig->loc->symtab;
8495 copy->loc->enabled = loc_enabled;
8496 copy->frame_id = orig->frame_id;
8497 copy->thread = orig->thread;
8498 copy->pspace = orig->pspace;
8500 copy->enable_state = bp_enabled;
8501 copy->disposition = disp_donttouch;
8502 copy->number = internal_breakpoint_number--;
8504 update_global_location_list_nothrow (UGLL_DONT_INSERT);
8508 /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8512 clone_momentary_breakpoint (struct breakpoint *orig)
8514 /* If there's nothing to clone, then return nothing. */
8518 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
8522 set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8525 struct symtab_and_line sal;
8527 sal = find_pc_line (pc, 0);
8529 sal.section = find_pc_overlay (pc);
8530 sal.explicit_pc = 1;
8532 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
8536 /* Tell the user we have just set a breakpoint B. */
8539 mention (struct breakpoint *b)
8541 b->ops->print_mention (b);
8542 current_uiout->text ("\n");
8546 static int bp_loc_is_permanent (struct bp_location *loc);
8548 static struct bp_location *
8549 add_location_to_breakpoint (struct breakpoint *b,
8550 const struct symtab_and_line *sal)
8552 struct bp_location *loc, **tmp;
8553 CORE_ADDR adjusted_address;
8554 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8556 if (loc_gdbarch == NULL)
8557 loc_gdbarch = b->gdbarch;
8559 /* Adjust the breakpoint's address prior to allocating a location.
8560 Once we call allocate_bp_location(), that mostly uninitialized
8561 location will be placed on the location chain. Adjustment of the
8562 breakpoint may cause target_read_memory() to be called and we do
8563 not want its scan of the location chain to find a breakpoint and
8564 location that's only been partially initialized. */
8565 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8568 /* Sort the locations by their ADDRESS. */
8569 loc = allocate_bp_location (b);
8570 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8571 tmp = &((*tmp)->next))
8576 loc->requested_address = sal->pc;
8577 loc->address = adjusted_address;
8578 loc->pspace = sal->pspace;
8579 loc->probe.prob = sal->prob;
8580 loc->probe.objfile = sal->objfile;
8581 gdb_assert (loc->pspace != NULL);
8582 loc->section = sal->section;
8583 loc->gdbarch = loc_gdbarch;
8584 loc->line_number = sal->line;
8585 loc->symtab = sal->symtab;
8586 loc->symbol = sal->symbol;
8587 loc->msymbol = sal->msymbol;
8588 loc->objfile = sal->objfile;
8590 set_breakpoint_location_function (loc,
8591 sal->explicit_pc || sal->explicit_line);
8593 /* While by definition, permanent breakpoints are already present in the
8594 code, we don't mark the location as inserted. Normally one would expect
8595 that GDB could rely on that breakpoint instruction to stop the program,
8596 thus removing the need to insert its own breakpoint, except that executing
8597 the breakpoint instruction can kill the target instead of reporting a
8598 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
8599 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
8600 with "Trap 0x02 while interrupts disabled, Error state". Letting the
8601 breakpoint be inserted normally results in QEMU knowing about the GDB
8602 breakpoint, and thus trap before the breakpoint instruction is executed.
8603 (If GDB later needs to continue execution past the permanent breakpoint,
8604 it manually increments the PC, thus avoiding executing the breakpoint
8606 if (bp_loc_is_permanent (loc))
8613 /* See breakpoint.h. */
8616 program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
8620 const gdb_byte *bpoint;
8621 gdb_byte *target_mem;
8624 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
8626 /* Software breakpoints unsupported? */
8630 target_mem = (gdb_byte *) alloca (len);
8632 /* Enable the automatic memory restoration from breakpoints while
8633 we read the memory. Otherwise we could say about our temporary
8634 breakpoints they are permanent. */
8635 scoped_restore restore_memory
8636 = make_scoped_restore_show_memory_breakpoints (0);
8638 if (target_read_memory (address, target_mem, len) == 0
8639 && memcmp (target_mem, bpoint, len) == 0)
8645 /* Return 1 if LOC is pointing to a permanent breakpoint,
8646 return 0 otherwise. */
8649 bp_loc_is_permanent (struct bp_location *loc)
8651 gdb_assert (loc != NULL);
8653 /* If we have a catchpoint or a watchpoint, just return 0. We should not
8654 attempt to read from the addresses the locations of these breakpoint types
8655 point to. program_breakpoint_here_p, below, will attempt to read
8657 if (!breakpoint_address_is_meaningful (loc->owner))
8660 scoped_restore_current_pspace_and_thread restore_pspace_thread;
8661 switch_to_program_space_and_thread (loc->pspace);
8662 return program_breakpoint_here_p (loc->gdbarch, loc->address);
8665 /* Build a command list for the dprintf corresponding to the current
8666 settings of the dprintf style options. */
8669 update_dprintf_command_list (struct breakpoint *b)
8671 char *dprintf_args = b->extra_string;
8672 char *printf_line = NULL;
8677 dprintf_args = skip_spaces (dprintf_args);
8679 /* Allow a comma, as it may have terminated a location, but don't
8681 if (*dprintf_args == ',')
8683 dprintf_args = skip_spaces (dprintf_args);
8685 if (*dprintf_args != '"')
8686 error (_("Bad format string, missing '\"'."));
8688 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
8689 printf_line = xstrprintf ("printf %s", dprintf_args);
8690 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
8692 if (!dprintf_function)
8693 error (_("No function supplied for dprintf call"));
8695 if (dprintf_channel && strlen (dprintf_channel) > 0)
8696 printf_line = xstrprintf ("call (void) %s (%s,%s)",
8701 printf_line = xstrprintf ("call (void) %s (%s)",
8705 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
8707 if (target_can_run_breakpoint_commands ())
8708 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
8711 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
8712 printf_line = xstrprintf ("printf %s", dprintf_args);
8716 internal_error (__FILE__, __LINE__,
8717 _("Invalid dprintf style."));
8719 gdb_assert (printf_line != NULL);
8721 /* Manufacture a printf sequence. */
8722 struct command_line *printf_cmd_line
8723 = new struct command_line (simple_control, printf_line);
8724 breakpoint_set_commands (b, counted_command_line (printf_cmd_line,
8725 command_lines_deleter ()));
8728 /* Update all dprintf commands, making their command lists reflect
8729 current style settings. */
8732 update_dprintf_commands (const char *args, int from_tty,
8733 struct cmd_list_element *c)
8735 struct breakpoint *b;
8739 if (b->type == bp_dprintf)
8740 update_dprintf_command_list (b);
8744 /* Create a breakpoint with SAL as location. Use LOCATION
8745 as a description of the location, and COND_STRING
8746 as condition expression. If LOCATION is NULL then create an
8747 "address location" from the address in the SAL. */
8750 init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
8751 gdb::array_view<const symtab_and_line> sals,
8752 event_location_up &&location,
8753 gdb::unique_xmalloc_ptr<char> filter,
8754 gdb::unique_xmalloc_ptr<char> cond_string,
8755 gdb::unique_xmalloc_ptr<char> extra_string,
8756 enum bptype type, enum bpdisp disposition,
8757 int thread, int task, int ignore_count,
8758 const struct breakpoint_ops *ops, int from_tty,
8759 int enabled, int internal, unsigned flags,
8760 int display_canonical)
8764 if (type == bp_hardware_breakpoint)
8766 int target_resources_ok;
8768 i = hw_breakpoint_used_count ();
8769 target_resources_ok =
8770 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
8772 if (target_resources_ok == 0)
8773 error (_("No hardware breakpoint support in the target."));
8774 else if (target_resources_ok < 0)
8775 error (_("Hardware breakpoints used exceeds limit."));
8778 gdb_assert (!sals.empty ());
8780 for (const auto &sal : sals)
8782 struct bp_location *loc;
8786 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8788 loc_gdbarch = gdbarch;
8790 describe_other_breakpoints (loc_gdbarch,
8791 sal.pspace, sal.pc, sal.section, thread);
8794 if (&sal == &sals[0])
8796 init_raw_breakpoint (b, gdbarch, sal, type, ops);
8800 b->cond_string = cond_string.release ();
8801 b->extra_string = extra_string.release ();
8802 b->ignore_count = ignore_count;
8803 b->enable_state = enabled ? bp_enabled : bp_disabled;
8804 b->disposition = disposition;
8806 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8807 b->loc->inserted = 1;
8809 if (type == bp_static_tracepoint)
8811 struct tracepoint *t = (struct tracepoint *) b;
8812 struct static_tracepoint_marker marker;
8814 if (strace_marker_p (b))
8816 /* We already know the marker exists, otherwise, we
8817 wouldn't see a sal for it. */
8819 = &event_location_to_string (b->location.get ())[3];
8822 p = skip_spaces (p);
8824 endp = skip_to_space (p);
8826 t->static_trace_marker_id.assign (p, endp - p);
8828 printf_filtered (_("Probed static tracepoint "
8830 t->static_trace_marker_id.c_str ());
8832 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
8834 t->static_trace_marker_id = std::move (marker.str_id);
8836 printf_filtered (_("Probed static tracepoint "
8838 t->static_trace_marker_id.c_str ());
8841 warning (_("Couldn't determine the static "
8842 "tracepoint marker to probe"));
8849 loc = add_location_to_breakpoint (b, &sal);
8850 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8856 const char *arg = b->cond_string;
8858 loc->cond = parse_exp_1 (&arg, loc->address,
8859 block_for_pc (loc->address), 0);
8861 error (_("Garbage '%s' follows condition"), arg);
8864 /* Dynamic printf requires and uses additional arguments on the
8865 command line, otherwise it's an error. */
8866 if (type == bp_dprintf)
8868 if (b->extra_string)
8869 update_dprintf_command_list (b);
8871 error (_("Format string required"));
8873 else if (b->extra_string)
8874 error (_("Garbage '%s' at end of command"), b->extra_string);
8877 b->display_canonical = display_canonical;
8878 if (location != NULL)
8879 b->location = std::move (location);
8881 b->location = new_address_location (b->loc->address, NULL, 0);
8882 b->filter = filter.release ();
8886 create_breakpoint_sal (struct gdbarch *gdbarch,
8887 gdb::array_view<const symtab_and_line> sals,
8888 event_location_up &&location,
8889 gdb::unique_xmalloc_ptr<char> filter,
8890 gdb::unique_xmalloc_ptr<char> cond_string,
8891 gdb::unique_xmalloc_ptr<char> extra_string,
8892 enum bptype type, enum bpdisp disposition,
8893 int thread, int task, int ignore_count,
8894 const struct breakpoint_ops *ops, int from_tty,
8895 int enabled, int internal, unsigned flags,
8896 int display_canonical)
8898 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (type);
8900 init_breakpoint_sal (b.get (), gdbarch,
8901 sals, std::move (location),
8903 std::move (cond_string),
8904 std::move (extra_string),
8906 thread, task, ignore_count,
8908 enabled, internal, flags,
8911 install_breakpoint (internal, std::move (b), 0);
8914 /* Add SALS.nelts breakpoints to the breakpoint table. For each
8915 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
8916 value. COND_STRING, if not NULL, specified the condition to be
8917 used for all breakpoints. Essentially the only case where
8918 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
8919 function. In that case, it's still not possible to specify
8920 separate conditions for different overloaded functions, so
8921 we take just a single condition string.
8923 NOTE: If the function succeeds, the caller is expected to cleanup
8924 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
8925 array contents). If the function fails (error() is called), the
8926 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
8927 COND and SALS arrays and each of those arrays contents. */
8930 create_breakpoints_sal (struct gdbarch *gdbarch,
8931 struct linespec_result *canonical,
8932 gdb::unique_xmalloc_ptr<char> cond_string,
8933 gdb::unique_xmalloc_ptr<char> extra_string,
8934 enum bptype type, enum bpdisp disposition,
8935 int thread, int task, int ignore_count,
8936 const struct breakpoint_ops *ops, int from_tty,
8937 int enabled, int internal, unsigned flags)
8939 if (canonical->pre_expanded)
8940 gdb_assert (canonical->lsals.size () == 1);
8942 for (const auto &lsal : canonical->lsals)
8944 /* Note that 'location' can be NULL in the case of a plain
8945 'break', without arguments. */
8946 event_location_up location
8947 = (canonical->location != NULL
8948 ? copy_event_location (canonical->location.get ()) : NULL);
8949 gdb::unique_xmalloc_ptr<char> filter_string
8950 (lsal.canonical != NULL ? xstrdup (lsal.canonical) : NULL);
8952 create_breakpoint_sal (gdbarch, lsal.sals,
8953 std::move (location),
8954 std::move (filter_string),
8955 std::move (cond_string),
8956 std::move (extra_string),
8958 thread, task, ignore_count, ops,
8959 from_tty, enabled, internal, flags,
8960 canonical->special_display);
8964 /* Parse LOCATION which is assumed to be a SAL specification possibly
8965 followed by conditionals. On return, SALS contains an array of SAL
8966 addresses found. LOCATION points to the end of the SAL (for
8967 linespec locations).
8969 The array and the line spec strings are allocated on the heap, it is
8970 the caller's responsibility to free them. */
8973 parse_breakpoint_sals (const struct event_location *location,
8974 struct linespec_result *canonical)
8976 struct symtab_and_line cursal;
8978 if (event_location_type (location) == LINESPEC_LOCATION)
8980 const char *spec = get_linespec_location (location)->spec_string;
8984 /* The last displayed codepoint, if it's valid, is our default
8985 breakpoint address. */
8986 if (last_displayed_sal_is_valid ())
8988 /* Set sal's pspace, pc, symtab, and line to the values
8989 corresponding to the last call to print_frame_info.
8990 Be sure to reinitialize LINE with NOTCURRENT == 0
8991 as the breakpoint line number is inappropriate otherwise.
8992 find_pc_line would adjust PC, re-set it back. */
8993 symtab_and_line sal = get_last_displayed_sal ();
8994 CORE_ADDR pc = sal.pc;
8996 sal = find_pc_line (pc, 0);
8998 /* "break" without arguments is equivalent to "break *PC"
8999 where PC is the last displayed codepoint's address. So
9000 make sure to set sal.explicit_pc to prevent GDB from
9001 trying to expand the list of sals to include all other
9002 instances with the same symtab and line. */
9004 sal.explicit_pc = 1;
9006 struct linespec_sals lsal;
9008 lsal.canonical = NULL;
9010 canonical->lsals.push_back (std::move (lsal));
9014 error (_("No default breakpoint address now."));
9018 /* Force almost all breakpoints to be in terms of the
9019 current_source_symtab (which is decode_line_1's default).
9020 This should produce the results we want almost all of the
9021 time while leaving default_breakpoint_* alone.
9023 ObjC: However, don't match an Objective-C method name which
9024 may have a '+' or '-' succeeded by a '['. */
9025 cursal = get_current_source_symtab_and_line ();
9026 if (last_displayed_sal_is_valid ())
9028 const char *spec = NULL;
9030 if (event_location_type (location) == LINESPEC_LOCATION)
9031 spec = get_linespec_location (location)->spec_string;
9035 && strchr ("+-", spec[0]) != NULL
9038 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9039 get_last_displayed_symtab (),
9040 get_last_displayed_line (),
9041 canonical, NULL, NULL);
9046 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9047 cursal.symtab, cursal.line, canonical, NULL, NULL);
9051 /* Convert each SAL into a real PC. Verify that the PC can be
9052 inserted as a breakpoint. If it can't throw an error. */
9055 breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
9057 for (auto &sal : sals)
9058 resolve_sal_pc (&sal);
9061 /* Fast tracepoints may have restrictions on valid locations. For
9062 instance, a fast tracepoint using a jump instead of a trap will
9063 likely have to overwrite more bytes than a trap would, and so can
9064 only be placed where the instruction is longer than the jump, or a
9065 multi-instruction sequence does not have a jump into the middle of
9069 check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9070 gdb::array_view<const symtab_and_line> sals)
9072 for (const auto &sal : sals)
9074 struct gdbarch *sarch;
9076 sarch = get_sal_arch (sal);
9077 /* We fall back to GDBARCH if there is no architecture
9078 associated with SAL. */
9082 if (!gdbarch_fast_tracepoint_valid_at (sarch, sal.pc, &msg))
9083 error (_("May not have a fast tracepoint at %s%s"),
9084 paddress (sarch, sal.pc), msg.c_str ());
9088 /* Given TOK, a string specification of condition and thread, as
9089 accepted by the 'break' command, extract the condition
9090 string and thread number and set *COND_STRING and *THREAD.
9091 PC identifies the context at which the condition should be parsed.
9092 If no condition is found, *COND_STRING is set to NULL.
9093 If no thread is found, *THREAD is set to -1. */
9096 find_condition_and_thread (const char *tok, CORE_ADDR pc,
9097 char **cond_string, int *thread, int *task,
9100 *cond_string = NULL;
9107 const char *end_tok;
9109 const char *cond_start = NULL;
9110 const char *cond_end = NULL;
9112 tok = skip_spaces (tok);
9114 if ((*tok == '"' || *tok == ',') && rest)
9116 *rest = savestring (tok, strlen (tok));
9120 end_tok = skip_to_space (tok);
9122 toklen = end_tok - tok;
9124 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9126 tok = cond_start = end_tok + 1;
9127 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
9129 *cond_string = savestring (cond_start, cond_end - cond_start);
9131 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9134 struct thread_info *thr;
9137 thr = parse_thread_id (tok, &tmptok);
9139 error (_("Junk after thread keyword."));
9140 *thread = thr->global_num;
9143 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9148 *task = strtol (tok, &tmptok, 0);
9150 error (_("Junk after task keyword."));
9151 if (!valid_task_id (*task))
9152 error (_("Unknown task %d."), *task);
9157 *rest = savestring (tok, strlen (tok));
9161 error (_("Junk at end of arguments."));
9165 /* Decode a static tracepoint marker spec. */
9167 static std::vector<symtab_and_line>
9168 decode_static_tracepoint_spec (const char **arg_p)
9170 const char *p = &(*arg_p)[3];
9173 p = skip_spaces (p);
9175 endp = skip_to_space (p);
9177 std::string marker_str (p, endp - p);
9179 std::vector<static_tracepoint_marker> markers
9180 = target_static_tracepoint_markers_by_strid (marker_str.c_str ());
9181 if (markers.empty ())
9182 error (_("No known static tracepoint marker named %s"),
9183 marker_str.c_str ());
9185 std::vector<symtab_and_line> sals;
9186 sals.reserve (markers.size ());
9188 for (const static_tracepoint_marker &marker : markers)
9190 symtab_and_line sal = find_pc_line (marker.address, 0);
9191 sal.pc = marker.address;
9192 sals.push_back (sal);
9199 /* See breakpoint.h. */
9202 create_breakpoint (struct gdbarch *gdbarch,
9203 const struct event_location *location,
9204 const char *cond_string,
9205 int thread, const char *extra_string,
9207 int tempflag, enum bptype type_wanted,
9209 enum auto_boolean pending_break_support,
9210 const struct breakpoint_ops *ops,
9211 int from_tty, int enabled, int internal,
9214 struct linespec_result canonical;
9217 int prev_bkpt_count = breakpoint_count;
9219 gdb_assert (ops != NULL);
9221 /* If extra_string isn't useful, set it to NULL. */
9222 if (extra_string != NULL && *extra_string == '\0')
9223 extra_string = NULL;
9227 ops->create_sals_from_location (location, &canonical, type_wanted);
9229 catch (const gdb_exception_error &e)
9231 /* If caller is interested in rc value from parse, set
9233 if (e.error == NOT_FOUND_ERROR)
9235 /* If pending breakpoint support is turned off, throw
9238 if (pending_break_support == AUTO_BOOLEAN_FALSE)
9241 exception_print (gdb_stderr, e);
9243 /* If pending breakpoint support is auto query and the user
9244 selects no, then simply return the error code. */
9245 if (pending_break_support == AUTO_BOOLEAN_AUTO
9246 && !nquery (_("Make %s pending on future shared library load? "),
9247 bptype_string (type_wanted)))
9250 /* At this point, either the user was queried about setting
9251 a pending breakpoint and selected yes, or pending
9252 breakpoint behavior is on and thus a pending breakpoint
9253 is defaulted on behalf of the user. */
9260 if (!pending && canonical.lsals.empty ())
9263 /* Resolve all line numbers to PC's and verify that the addresses
9264 are ok for the target. */
9267 for (auto &lsal : canonical.lsals)
9268 breakpoint_sals_to_pc (lsal.sals);
9271 /* Fast tracepoints may have additional restrictions on location. */
9272 if (!pending && type_wanted == bp_fast_tracepoint)
9274 for (const auto &lsal : canonical.lsals)
9275 check_fast_tracepoint_sals (gdbarch, lsal.sals);
9278 /* Verify that condition can be parsed, before setting any
9279 breakpoints. Allocate a separate condition expression for each
9283 gdb::unique_xmalloc_ptr<char> cond_string_copy;
9284 gdb::unique_xmalloc_ptr<char> extra_string_copy;
9291 const linespec_sals &lsal = canonical.lsals[0];
9293 /* Here we only parse 'arg' to separate condition
9294 from thread number, so parsing in context of first
9295 sal is OK. When setting the breakpoint we'll
9296 re-parse it in context of each sal. */
9298 find_condition_and_thread (extra_string, lsal.sals[0].pc,
9299 &cond, &thread, &task, &rest);
9300 cond_string_copy.reset (cond);
9301 extra_string_copy.reset (rest);
9305 if (type_wanted != bp_dprintf
9306 && extra_string != NULL && *extra_string != '\0')
9307 error (_("Garbage '%s' at end of location"), extra_string);
9309 /* Create a private copy of condition string. */
9311 cond_string_copy.reset (xstrdup (cond_string));
9312 /* Create a private copy of any extra string. */
9314 extra_string_copy.reset (xstrdup (extra_string));
9317 ops->create_breakpoints_sal (gdbarch, &canonical,
9318 std::move (cond_string_copy),
9319 std::move (extra_string_copy),
9321 tempflag ? disp_del : disp_donttouch,
9322 thread, task, ignore_count, ops,
9323 from_tty, enabled, internal, flags);
9327 std::unique_ptr <breakpoint> b = new_breakpoint_from_type (type_wanted);
9329 init_raw_breakpoint_without_location (b.get (), gdbarch, type_wanted, ops);
9330 b->location = copy_event_location (location);
9333 b->cond_string = NULL;
9336 /* Create a private copy of condition string. */
9337 b->cond_string = cond_string != NULL ? xstrdup (cond_string) : NULL;
9341 /* Create a private copy of any extra string. */
9342 b->extra_string = extra_string != NULL ? xstrdup (extra_string) : NULL;
9343 b->ignore_count = ignore_count;
9344 b->disposition = tempflag ? disp_del : disp_donttouch;
9345 b->condition_not_parsed = 1;
9346 b->enable_state = enabled ? bp_enabled : bp_disabled;
9347 if ((type_wanted != bp_breakpoint
9348 && type_wanted != bp_hardware_breakpoint) || thread != -1)
9349 b->pspace = current_program_space;
9351 install_breakpoint (internal, std::move (b), 0);
9354 if (canonical.lsals.size () > 1)
9356 warning (_("Multiple breakpoints were set.\nUse the "
9357 "\"delete\" command to delete unwanted breakpoints."));
9358 prev_breakpoint_count = prev_bkpt_count;
9361 update_global_location_list (UGLL_MAY_INSERT);
9366 /* Set a breakpoint.
9367 ARG is a string describing breakpoint address,
9368 condition, and thread.
9369 FLAG specifies if a breakpoint is hardware on,
9370 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9374 break_command_1 (const char *arg, int flag, int from_tty)
9376 int tempflag = flag & BP_TEMPFLAG;
9377 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9378 ? bp_hardware_breakpoint
9380 struct breakpoint_ops *ops;
9382 event_location_up location = string_to_event_location (&arg, current_language);
9384 /* Matching breakpoints on probes. */
9385 if (location != NULL
9386 && event_location_type (location.get ()) == PROBE_LOCATION)
9387 ops = &bkpt_probe_breakpoint_ops;
9389 ops = &bkpt_breakpoint_ops;
9391 create_breakpoint (get_current_arch (),
9393 NULL, 0, arg, 1 /* parse arg */,
9394 tempflag, type_wanted,
9395 0 /* Ignore count */,
9396 pending_break_support,
9404 /* Helper function for break_command_1 and disassemble_command. */
9407 resolve_sal_pc (struct symtab_and_line *sal)
9411 if (sal->pc == 0 && sal->symtab != NULL)
9413 if (!find_line_pc (sal->symtab, sal->line, &pc))
9414 error (_("No line %d in file \"%s\"."),
9415 sal->line, symtab_to_filename_for_display (sal->symtab));
9418 /* If this SAL corresponds to a breakpoint inserted using a line
9419 number, then skip the function prologue if necessary. */
9420 if (sal->explicit_line)
9421 skip_prologue_sal (sal);
9424 if (sal->section == 0 && sal->symtab != NULL)
9426 const struct blockvector *bv;
9427 const struct block *b;
9430 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
9431 SYMTAB_COMPUNIT (sal->symtab));
9434 sym = block_linkage_function (b);
9437 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
9438 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
9443 /* It really is worthwhile to have the section, so we'll
9444 just have to look harder. This case can be executed
9445 if we have line numbers but no functions (as can
9446 happen in assembly source). */
9448 scoped_restore_current_pspace_and_thread restore_pspace_thread;
9449 switch_to_program_space_and_thread (sal->pspace);
9451 bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (sal->pc);
9453 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
9460 break_command (const char *arg, int from_tty)
9462 break_command_1 (arg, 0, from_tty);
9466 tbreak_command (const char *arg, int from_tty)
9468 break_command_1 (arg, BP_TEMPFLAG, from_tty);
9472 hbreak_command (const char *arg, int from_tty)
9474 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
9478 thbreak_command (const char *arg, int from_tty)
9480 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
9484 stop_command (const char *arg, int from_tty)
9486 printf_filtered (_("Specify the type of breakpoint to set.\n\
9487 Usage: stop in <function | address>\n\
9488 stop at <line>\n"));
9492 stopin_command (const char *arg, int from_tty)
9498 else if (*arg != '*')
9500 const char *argptr = arg;
9503 /* Look for a ':'. If this is a line number specification, then
9504 say it is bad, otherwise, it should be an address or
9505 function/method name. */
9506 while (*argptr && !hasColon)
9508 hasColon = (*argptr == ':');
9513 badInput = (*argptr != ':'); /* Not a class::method */
9515 badInput = isdigit (*arg); /* a simple line number */
9519 printf_filtered (_("Usage: stop in <function | address>\n"));
9521 break_command_1 (arg, 0, from_tty);
9525 stopat_command (const char *arg, int from_tty)
9529 if (arg == NULL || *arg == '*') /* no line number */
9533 const char *argptr = arg;
9536 /* Look for a ':'. If there is a '::' then get out, otherwise
9537 it is probably a line number. */
9538 while (*argptr && !hasColon)
9540 hasColon = (*argptr == ':');
9545 badInput = (*argptr == ':'); /* we have class::method */
9547 badInput = !isdigit (*arg); /* not a line number */
9551 printf_filtered (_("Usage: stop at LINE\n"));
9553 break_command_1 (arg, 0, from_tty);
9556 /* The dynamic printf command is mostly like a regular breakpoint, but
9557 with a prewired command list consisting of a single output command,
9558 built from extra arguments supplied on the dprintf command
9562 dprintf_command (const char *arg, int from_tty)
9564 event_location_up location = string_to_event_location (&arg, current_language);
9566 /* If non-NULL, ARG should have been advanced past the location;
9567 the next character must be ','. */
9570 if (arg[0] != ',' || arg[1] == '\0')
9571 error (_("Format string required"));
9574 /* Skip the comma. */
9579 create_breakpoint (get_current_arch (),
9581 NULL, 0, arg, 1 /* parse arg */,
9583 0 /* Ignore count */,
9584 pending_break_support,
9585 &dprintf_breakpoint_ops,
9593 agent_printf_command (const char *arg, int from_tty)
9595 error (_("May only run agent-printf on the target"));
9598 /* Implement the "breakpoint_hit" breakpoint_ops method for
9599 ranged breakpoints. */
9602 breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
9603 const address_space *aspace,
9605 const struct target_waitstatus *ws)
9607 if (ws->kind != TARGET_WAITKIND_STOPPED
9608 || ws->value.sig != GDB_SIGNAL_TRAP)
9611 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
9612 bl->length, aspace, bp_addr);
9615 /* Implement the "resources_needed" breakpoint_ops method for
9616 ranged breakpoints. */
9619 resources_needed_ranged_breakpoint (const struct bp_location *bl)
9621 return target_ranged_break_num_registers ();
9624 /* Implement the "print_it" breakpoint_ops method for
9625 ranged breakpoints. */
9627 static enum print_stop_action
9628 print_it_ranged_breakpoint (bpstat bs)
9630 struct breakpoint *b = bs->breakpoint_at;
9631 struct bp_location *bl = b->loc;
9632 struct ui_out *uiout = current_uiout;
9634 gdb_assert (b->type == bp_hardware_breakpoint);
9636 /* Ranged breakpoints have only one location. */
9637 gdb_assert (bl && bl->next == NULL);
9639 annotate_breakpoint (b->number);
9641 maybe_print_thread_hit_breakpoint (uiout);
9643 if (b->disposition == disp_del)
9644 uiout->text ("Temporary ranged breakpoint ");
9646 uiout->text ("Ranged breakpoint ");
9647 if (uiout->is_mi_like_p ())
9649 uiout->field_string ("reason",
9650 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
9651 uiout->field_string ("disp", bpdisp_text (b->disposition));
9653 uiout->field_int ("bkptno", b->number);
9656 return PRINT_SRC_AND_LOC;
9659 /* Implement the "print_one" breakpoint_ops method for
9660 ranged breakpoints. */
9663 print_one_ranged_breakpoint (struct breakpoint *b,
9664 struct bp_location **last_loc)
9666 struct bp_location *bl = b->loc;
9667 struct value_print_options opts;
9668 struct ui_out *uiout = current_uiout;
9670 /* Ranged breakpoints have only one location. */
9671 gdb_assert (bl && bl->next == NULL);
9673 get_user_print_options (&opts);
9675 if (opts.addressprint)
9676 /* We don't print the address range here, it will be printed later
9677 by print_one_detail_ranged_breakpoint. */
9678 uiout->field_skip ("addr");
9680 print_breakpoint_location (b, bl);
9684 /* Implement the "print_one_detail" breakpoint_ops method for
9685 ranged breakpoints. */
9688 print_one_detail_ranged_breakpoint (const struct breakpoint *b,
9689 struct ui_out *uiout)
9691 CORE_ADDR address_start, address_end;
9692 struct bp_location *bl = b->loc;
9697 address_start = bl->address;
9698 address_end = address_start + bl->length - 1;
9700 uiout->text ("\taddress range: ");
9701 stb.printf ("[%s, %s]",
9702 print_core_address (bl->gdbarch, address_start),
9703 print_core_address (bl->gdbarch, address_end));
9704 uiout->field_stream ("addr", stb);
9708 /* Implement the "print_mention" breakpoint_ops method for
9709 ranged breakpoints. */
9712 print_mention_ranged_breakpoint (struct breakpoint *b)
9714 struct bp_location *bl = b->loc;
9715 struct ui_out *uiout = current_uiout;
9718 gdb_assert (b->type == bp_hardware_breakpoint);
9720 uiout->message (_("Hardware assisted ranged breakpoint %d from %s to %s."),
9721 b->number, paddress (bl->gdbarch, bl->address),
9722 paddress (bl->gdbarch, bl->address + bl->length - 1));
9725 /* Implement the "print_recreate" breakpoint_ops method for
9726 ranged breakpoints. */
9729 print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
9731 fprintf_unfiltered (fp, "break-range %s, %s",
9732 event_location_to_string (b->location.get ()),
9733 event_location_to_string (b->location_range_end.get ()));
9734 print_recreate_thread (b, fp);
9737 /* The breakpoint_ops structure to be used in ranged breakpoints. */
9739 static struct breakpoint_ops ranged_breakpoint_ops;
9741 /* Find the address where the end of the breakpoint range should be
9742 placed, given the SAL of the end of the range. This is so that if
9743 the user provides a line number, the end of the range is set to the
9744 last instruction of the given line. */
9747 find_breakpoint_range_end (struct symtab_and_line sal)
9751 /* If the user provided a PC value, use it. Otherwise,
9752 find the address of the end of the given location. */
9753 if (sal.explicit_pc)
9760 ret = find_line_pc_range (sal, &start, &end);
9762 error (_("Could not find location of the end of the range."));
9764 /* find_line_pc_range returns the start of the next line. */
9771 /* Implement the "break-range" CLI command. */
9774 break_range_command (const char *arg, int from_tty)
9776 const char *arg_start;
9777 struct linespec_result canonical_start, canonical_end;
9778 int bp_count, can_use_bp, length;
9780 struct breakpoint *b;
9782 /* We don't support software ranged breakpoints. */
9783 if (target_ranged_break_num_registers () < 0)
9784 error (_("This target does not support hardware ranged breakpoints."));
9786 bp_count = hw_breakpoint_used_count ();
9787 bp_count += target_ranged_break_num_registers ();
9788 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9791 error (_("Hardware breakpoints used exceeds limit."));
9793 arg = skip_spaces (arg);
9794 if (arg == NULL || arg[0] == '\0')
9795 error(_("No address range specified."));
9798 event_location_up start_location = string_to_event_location (&arg,
9800 parse_breakpoint_sals (start_location.get (), &canonical_start);
9803 error (_("Too few arguments."));
9804 else if (canonical_start.lsals.empty ())
9805 error (_("Could not find location of the beginning of the range."));
9807 const linespec_sals &lsal_start = canonical_start.lsals[0];
9809 if (canonical_start.lsals.size () > 1
9810 || lsal_start.sals.size () != 1)
9811 error (_("Cannot create a ranged breakpoint with multiple locations."));
9813 const symtab_and_line &sal_start = lsal_start.sals[0];
9814 std::string addr_string_start (arg_start, arg - arg_start);
9816 arg++; /* Skip the comma. */
9817 arg = skip_spaces (arg);
9819 /* Parse the end location. */
9823 /* We call decode_line_full directly here instead of using
9824 parse_breakpoint_sals because we need to specify the start location's
9825 symtab and line as the default symtab and line for the end of the
9826 range. This makes it possible to have ranges like "foo.c:27, +14",
9827 where +14 means 14 lines from the start location. */
9828 event_location_up end_location = string_to_event_location (&arg,
9830 decode_line_full (end_location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
9831 sal_start.symtab, sal_start.line,
9832 &canonical_end, NULL, NULL);
9834 if (canonical_end.lsals.empty ())
9835 error (_("Could not find location of the end of the range."));
9837 const linespec_sals &lsal_end = canonical_end.lsals[0];
9838 if (canonical_end.lsals.size () > 1
9839 || lsal_end.sals.size () != 1)
9840 error (_("Cannot create a ranged breakpoint with multiple locations."));
9842 const symtab_and_line &sal_end = lsal_end.sals[0];
9844 end = find_breakpoint_range_end (sal_end);
9845 if (sal_start.pc > end)
9846 error (_("Invalid address range, end precedes start."));
9848 length = end - sal_start.pc + 1;
9850 /* Length overflowed. */
9851 error (_("Address range too large."));
9852 else if (length == 1)
9854 /* This range is simple enough to be handled by
9855 the `hbreak' command. */
9856 hbreak_command (&addr_string_start[0], 1);
9861 /* Now set up the breakpoint. */
9862 b = set_raw_breakpoint (get_current_arch (), sal_start,
9863 bp_hardware_breakpoint, &ranged_breakpoint_ops);
9864 set_breakpoint_count (breakpoint_count + 1);
9865 b->number = breakpoint_count;
9866 b->disposition = disp_donttouch;
9867 b->location = std::move (start_location);
9868 b->location_range_end = std::move (end_location);
9869 b->loc->length = length;
9872 gdb::observers::breakpoint_created.notify (b);
9873 update_global_location_list (UGLL_MAY_INSERT);
9876 /* Return non-zero if EXP is verified as constant. Returned zero
9877 means EXP is variable. Also the constant detection may fail for
9878 some constant expressions and in such case still falsely return
9882 watchpoint_exp_is_const (const struct expression *exp)
9890 /* We are only interested in the descriptor of each element. */
9891 operator_length (exp, i, &oplenp, &argsp);
9894 switch (exp->elts[i].opcode)
9904 case BINOP_LOGICAL_AND:
9905 case BINOP_LOGICAL_OR:
9906 case BINOP_BITWISE_AND:
9907 case BINOP_BITWISE_IOR:
9908 case BINOP_BITWISE_XOR:
9910 case BINOP_NOTEQUAL:
9936 case OP_OBJC_NSSTRING:
9939 case UNOP_LOGICAL_NOT:
9940 case UNOP_COMPLEMENT:
9945 case UNOP_CAST_TYPE:
9946 case UNOP_REINTERPRET_CAST:
9947 case UNOP_DYNAMIC_CAST:
9948 /* Unary, binary and ternary operators: We have to check
9949 their operands. If they are constant, then so is the
9950 result of that operation. For instance, if A and B are
9951 determined to be constants, then so is "A + B".
9953 UNOP_IND is one exception to the rule above, because the
9954 value of *ADDR is not necessarily a constant, even when
9959 /* Check whether the associated symbol is a constant.
9961 We use SYMBOL_CLASS rather than TYPE_CONST because it's
9962 possible that a buggy compiler could mark a variable as
9963 constant even when it is not, and TYPE_CONST would return
9964 true in this case, while SYMBOL_CLASS wouldn't.
9966 We also have to check for function symbols because they
9967 are always constant. */
9969 struct symbol *s = exp->elts[i + 2].symbol;
9971 if (SYMBOL_CLASS (s) != LOC_BLOCK
9972 && SYMBOL_CLASS (s) != LOC_CONST
9973 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
9978 /* The default action is to return 0 because we are using
9979 the optimistic approach here: If we don't know something,
9980 then it is not a constant. */
9989 /* Watchpoint destructor. */
9991 watchpoint::~watchpoint ()
9993 xfree (this->exp_string);
9994 xfree (this->exp_string_reparse);
9997 /* Implement the "re_set" breakpoint_ops method for watchpoints. */
10000 re_set_watchpoint (struct breakpoint *b)
10002 struct watchpoint *w = (struct watchpoint *) b;
10004 /* Watchpoint can be either on expression using entirely global
10005 variables, or it can be on local variables.
10007 Watchpoints of the first kind are never auto-deleted, and even
10008 persist across program restarts. Since they can use variables
10009 from shared libraries, we need to reparse expression as libraries
10010 are loaded and unloaded.
10012 Watchpoints on local variables can also change meaning as result
10013 of solib event. For example, if a watchpoint uses both a local
10014 and a global variables in expression, it's a local watchpoint,
10015 but unloading of a shared library will make the expression
10016 invalid. This is not a very common use case, but we still
10017 re-evaluate expression, to avoid surprises to the user.
10019 Note that for local watchpoints, we re-evaluate it only if
10020 watchpoints frame id is still valid. If it's not, it means the
10021 watchpoint is out of scope and will be deleted soon. In fact,
10022 I'm not sure we'll ever be called in this case.
10024 If a local watchpoint's frame id is still valid, then
10025 w->exp_valid_block is likewise valid, and we can safely use it.
10027 Don't do anything about disabled watchpoints, since they will be
10028 reevaluated again when enabled. */
10029 update_watchpoint (w, 1 /* reparse */);
10032 /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10035 insert_watchpoint (struct bp_location *bl)
10037 struct watchpoint *w = (struct watchpoint *) bl->owner;
10038 int length = w->exact ? 1 : bl->length;
10040 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
10041 w->cond_exp.get ());
10044 /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10047 remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
10049 struct watchpoint *w = (struct watchpoint *) bl->owner;
10050 int length = w->exact ? 1 : bl->length;
10052 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
10053 w->cond_exp.get ());
10057 breakpoint_hit_watchpoint (const struct bp_location *bl,
10058 const address_space *aspace, CORE_ADDR bp_addr,
10059 const struct target_waitstatus *ws)
10061 struct breakpoint *b = bl->owner;
10062 struct watchpoint *w = (struct watchpoint *) b;
10064 /* Continuable hardware watchpoints are treated as non-existent if the
10065 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10066 some data address). Otherwise gdb won't stop on a break instruction
10067 in the code (not from a breakpoint) when a hardware watchpoint has
10068 been defined. Also skip watchpoints which we know did not trigger
10069 (did not match the data address). */
10070 if (is_hardware_watchpoint (b)
10071 && w->watchpoint_triggered == watch_triggered_no)
10078 check_status_watchpoint (bpstat bs)
10080 gdb_assert (is_watchpoint (bs->breakpoint_at));
10082 bpstat_check_watchpoint (bs);
10085 /* Implement the "resources_needed" breakpoint_ops method for
10086 hardware watchpoints. */
10089 resources_needed_watchpoint (const struct bp_location *bl)
10091 struct watchpoint *w = (struct watchpoint *) bl->owner;
10092 int length = w->exact? 1 : bl->length;
10094 return target_region_ok_for_hw_watchpoint (bl->address, length);
10097 /* Implement the "works_in_software_mode" breakpoint_ops method for
10098 hardware watchpoints. */
10101 works_in_software_mode_watchpoint (const struct breakpoint *b)
10103 /* Read and access watchpoints only work with hardware support. */
10104 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
10107 static enum print_stop_action
10108 print_it_watchpoint (bpstat bs)
10110 struct breakpoint *b;
10111 enum print_stop_action result;
10112 struct watchpoint *w;
10113 struct ui_out *uiout = current_uiout;
10115 gdb_assert (bs->bp_location_at != NULL);
10117 b = bs->breakpoint_at;
10118 w = (struct watchpoint *) b;
10120 annotate_watchpoint (b->number);
10121 maybe_print_thread_hit_breakpoint (uiout);
10125 gdb::optional<ui_out_emit_tuple> tuple_emitter;
10128 case bp_watchpoint:
10129 case bp_hardware_watchpoint:
10130 if (uiout->is_mi_like_p ())
10131 uiout->field_string
10132 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10134 tuple_emitter.emplace (uiout, "value");
10135 uiout->text ("\nOld value = ");
10136 watchpoint_value_print (bs->old_val.get (), &stb);
10137 uiout->field_stream ("old", stb);
10138 uiout->text ("\nNew value = ");
10139 watchpoint_value_print (w->val.get (), &stb);
10140 uiout->field_stream ("new", stb);
10141 uiout->text ("\n");
10142 /* More than one watchpoint may have been triggered. */
10143 result = PRINT_UNKNOWN;
10146 case bp_read_watchpoint:
10147 if (uiout->is_mi_like_p ())
10148 uiout->field_string
10149 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10151 tuple_emitter.emplace (uiout, "value");
10152 uiout->text ("\nValue = ");
10153 watchpoint_value_print (w->val.get (), &stb);
10154 uiout->field_stream ("value", stb);
10155 uiout->text ("\n");
10156 result = PRINT_UNKNOWN;
10159 case bp_access_watchpoint:
10160 if (bs->old_val != NULL)
10162 if (uiout->is_mi_like_p ())
10163 uiout->field_string
10165 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10167 tuple_emitter.emplace (uiout, "value");
10168 uiout->text ("\nOld value = ");
10169 watchpoint_value_print (bs->old_val.get (), &stb);
10170 uiout->field_stream ("old", stb);
10171 uiout->text ("\nNew value = ");
10176 if (uiout->is_mi_like_p ())
10177 uiout->field_string
10179 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10180 tuple_emitter.emplace (uiout, "value");
10181 uiout->text ("\nValue = ");
10183 watchpoint_value_print (w->val.get (), &stb);
10184 uiout->field_stream ("new", stb);
10185 uiout->text ("\n");
10186 result = PRINT_UNKNOWN;
10189 result = PRINT_UNKNOWN;
10195 /* Implement the "print_mention" breakpoint_ops method for hardware
10199 print_mention_watchpoint (struct breakpoint *b)
10201 struct watchpoint *w = (struct watchpoint *) b;
10202 struct ui_out *uiout = current_uiout;
10203 const char *tuple_name;
10207 case bp_watchpoint:
10208 uiout->text ("Watchpoint ");
10209 tuple_name = "wpt";
10211 case bp_hardware_watchpoint:
10212 uiout->text ("Hardware watchpoint ");
10213 tuple_name = "wpt";
10215 case bp_read_watchpoint:
10216 uiout->text ("Hardware read watchpoint ");
10217 tuple_name = "hw-rwpt";
10219 case bp_access_watchpoint:
10220 uiout->text ("Hardware access (read/write) watchpoint ");
10221 tuple_name = "hw-awpt";
10224 internal_error (__FILE__, __LINE__,
10225 _("Invalid hardware watchpoint type."));
10228 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
10229 uiout->field_int ("number", b->number);
10230 uiout->text (": ");
10231 uiout->field_string ("exp", w->exp_string);
10234 /* Implement the "print_recreate" breakpoint_ops method for
10238 print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10240 struct watchpoint *w = (struct watchpoint *) b;
10244 case bp_watchpoint:
10245 case bp_hardware_watchpoint:
10246 fprintf_unfiltered (fp, "watch");
10248 case bp_read_watchpoint:
10249 fprintf_unfiltered (fp, "rwatch");
10251 case bp_access_watchpoint:
10252 fprintf_unfiltered (fp, "awatch");
10255 internal_error (__FILE__, __LINE__,
10256 _("Invalid watchpoint type."));
10259 fprintf_unfiltered (fp, " %s", w->exp_string);
10260 print_recreate_thread (b, fp);
10263 /* Implement the "explains_signal" breakpoint_ops method for
10267 explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10269 /* A software watchpoint cannot cause a signal other than
10270 GDB_SIGNAL_TRAP. */
10271 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
10277 /* The breakpoint_ops structure to be used in hardware watchpoints. */
10279 static struct breakpoint_ops watchpoint_breakpoint_ops;
10281 /* Implement the "insert" breakpoint_ops method for
10282 masked hardware watchpoints. */
10285 insert_masked_watchpoint (struct bp_location *bl)
10287 struct watchpoint *w = (struct watchpoint *) bl->owner;
10289 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
10290 bl->watchpoint_type);
10293 /* Implement the "remove" breakpoint_ops method for
10294 masked hardware watchpoints. */
10297 remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
10299 struct watchpoint *w = (struct watchpoint *) bl->owner;
10301 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
10302 bl->watchpoint_type);
10305 /* Implement the "resources_needed" breakpoint_ops method for
10306 masked hardware watchpoints. */
10309 resources_needed_masked_watchpoint (const struct bp_location *bl)
10311 struct watchpoint *w = (struct watchpoint *) bl->owner;
10313 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
10316 /* Implement the "works_in_software_mode" breakpoint_ops method for
10317 masked hardware watchpoints. */
10320 works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10325 /* Implement the "print_it" breakpoint_ops method for
10326 masked hardware watchpoints. */
10328 static enum print_stop_action
10329 print_it_masked_watchpoint (bpstat bs)
10331 struct breakpoint *b = bs->breakpoint_at;
10332 struct ui_out *uiout = current_uiout;
10334 /* Masked watchpoints have only one location. */
10335 gdb_assert (b->loc && b->loc->next == NULL);
10337 annotate_watchpoint (b->number);
10338 maybe_print_thread_hit_breakpoint (uiout);
10342 case bp_hardware_watchpoint:
10343 if (uiout->is_mi_like_p ())
10344 uiout->field_string
10345 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10348 case bp_read_watchpoint:
10349 if (uiout->is_mi_like_p ())
10350 uiout->field_string
10351 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10354 case bp_access_watchpoint:
10355 if (uiout->is_mi_like_p ())
10356 uiout->field_string
10358 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10361 internal_error (__FILE__, __LINE__,
10362 _("Invalid hardware watchpoint type."));
10366 uiout->text (_("\n\
10367 Check the underlying instruction at PC for the memory\n\
10368 address and value which triggered this watchpoint.\n"));
10369 uiout->text ("\n");
10371 /* More than one watchpoint may have been triggered. */
10372 return PRINT_UNKNOWN;
10375 /* Implement the "print_one_detail" breakpoint_ops method for
10376 masked hardware watchpoints. */
10379 print_one_detail_masked_watchpoint (const struct breakpoint *b,
10380 struct ui_out *uiout)
10382 struct watchpoint *w = (struct watchpoint *) b;
10384 /* Masked watchpoints have only one location. */
10385 gdb_assert (b->loc && b->loc->next == NULL);
10387 uiout->text ("\tmask ");
10388 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
10389 uiout->text ("\n");
10392 /* Implement the "print_mention" breakpoint_ops method for
10393 masked hardware watchpoints. */
10396 print_mention_masked_watchpoint (struct breakpoint *b)
10398 struct watchpoint *w = (struct watchpoint *) b;
10399 struct ui_out *uiout = current_uiout;
10400 const char *tuple_name;
10404 case bp_hardware_watchpoint:
10405 uiout->text ("Masked hardware watchpoint ");
10406 tuple_name = "wpt";
10408 case bp_read_watchpoint:
10409 uiout->text ("Masked hardware read watchpoint ");
10410 tuple_name = "hw-rwpt";
10412 case bp_access_watchpoint:
10413 uiout->text ("Masked hardware access (read/write) watchpoint ");
10414 tuple_name = "hw-awpt";
10417 internal_error (__FILE__, __LINE__,
10418 _("Invalid hardware watchpoint type."));
10421 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
10422 uiout->field_int ("number", b->number);
10423 uiout->text (": ");
10424 uiout->field_string ("exp", w->exp_string);
10427 /* Implement the "print_recreate" breakpoint_ops method for
10428 masked hardware watchpoints. */
10431 print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10433 struct watchpoint *w = (struct watchpoint *) b;
10438 case bp_hardware_watchpoint:
10439 fprintf_unfiltered (fp, "watch");
10441 case bp_read_watchpoint:
10442 fprintf_unfiltered (fp, "rwatch");
10444 case bp_access_watchpoint:
10445 fprintf_unfiltered (fp, "awatch");
10448 internal_error (__FILE__, __LINE__,
10449 _("Invalid hardware watchpoint type."));
10452 sprintf_vma (tmp, w->hw_wp_mask);
10453 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
10454 print_recreate_thread (b, fp);
10457 /* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10459 static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
10461 /* Tell whether the given watchpoint is a masked hardware watchpoint. */
10464 is_masked_watchpoint (const struct breakpoint *b)
10466 return b->ops == &masked_watchpoint_breakpoint_ops;
10469 /* accessflag: hw_write: watch write,
10470 hw_read: watch read,
10471 hw_access: watch access (read or write) */
10473 watch_command_1 (const char *arg, int accessflag, int from_tty,
10474 int just_location, int internal)
10476 struct breakpoint *scope_breakpoint = NULL;
10477 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
10478 struct value *result;
10479 int saved_bitpos = 0, saved_bitsize = 0;
10480 const char *exp_start = NULL;
10481 const char *exp_end = NULL;
10482 const char *tok, *end_tok;
10484 const char *cond_start = NULL;
10485 const char *cond_end = NULL;
10486 enum bptype bp_type;
10489 /* Flag to indicate whether we are going to use masks for
10490 the hardware watchpoint. */
10492 CORE_ADDR mask = 0;
10494 /* Make sure that we actually have parameters to parse. */
10495 if (arg != NULL && arg[0] != '\0')
10497 const char *value_start;
10499 exp_end = arg + strlen (arg);
10501 /* Look for "parameter value" pairs at the end
10502 of the arguments string. */
10503 for (tok = exp_end - 1; tok > arg; tok--)
10505 /* Skip whitespace at the end of the argument list. */
10506 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10509 /* Find the beginning of the last token.
10510 This is the value of the parameter. */
10511 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10513 value_start = tok + 1;
10515 /* Skip whitespace. */
10516 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10521 /* Find the beginning of the second to last token.
10522 This is the parameter itself. */
10523 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10526 toklen = end_tok - tok + 1;
10528 if (toklen == 6 && startswith (tok, "thread"))
10530 struct thread_info *thr;
10531 /* At this point we've found a "thread" token, which means
10532 the user is trying to set a watchpoint that triggers
10533 only in a specific thread. */
10537 error(_("You can specify only one thread."));
10539 /* Extract the thread ID from the next token. */
10540 thr = parse_thread_id (value_start, &endp);
10542 /* Check if the user provided a valid thread ID. */
10543 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
10544 invalid_thread_id_error (value_start);
10546 thread = thr->global_num;
10548 else if (toklen == 4 && startswith (tok, "mask"))
10550 /* We've found a "mask" token, which means the user wants to
10551 create a hardware watchpoint that is going to have the mask
10553 struct value *mask_value, *mark;
10556 error(_("You can specify only one mask."));
10558 use_mask = just_location = 1;
10560 mark = value_mark ();
10561 mask_value = parse_to_comma_and_eval (&value_start);
10562 mask = value_as_address (mask_value);
10563 value_free_to_mark (mark);
10566 /* We didn't recognize what we found. We should stop here. */
10569 /* Truncate the string and get rid of the "parameter value" pair before
10570 the arguments string is parsed by the parse_exp_1 function. */
10577 /* Parse the rest of the arguments. From here on out, everything
10578 is in terms of a newly allocated string instead of the original
10580 std::string expression (arg, exp_end - arg);
10581 exp_start = arg = expression.c_str ();
10582 innermost_block_tracker tracker;
10583 expression_up exp = parse_exp_1 (&arg, 0, 0, 0, &tracker);
10585 /* Remove trailing whitespace from the expression before saving it.
10586 This makes the eventual display of the expression string a bit
10588 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
10591 /* Checking if the expression is not constant. */
10592 if (watchpoint_exp_is_const (exp.get ()))
10596 len = exp_end - exp_start;
10597 while (len > 0 && isspace (exp_start[len - 1]))
10599 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
10602 exp_valid_block = tracker.block ();
10603 struct value *mark = value_mark ();
10604 struct value *val_as_value = nullptr;
10605 fetch_subexp_value (exp.get (), &pc, &val_as_value, &result, NULL,
10608 if (val_as_value != NULL && just_location)
10610 saved_bitpos = value_bitpos (val_as_value);
10611 saved_bitsize = value_bitsize (val_as_value);
10619 exp_valid_block = NULL;
10620 val = release_value (value_addr (result));
10621 value_free_to_mark (mark);
10625 ret = target_masked_watch_num_registers (value_as_address (val.get ()),
10628 error (_("This target does not support masked watchpoints."));
10629 else if (ret == -2)
10630 error (_("Invalid mask or memory region."));
10633 else if (val_as_value != NULL)
10634 val = release_value (val_as_value);
10636 tok = skip_spaces (arg);
10637 end_tok = skip_to_space (tok);
10639 toklen = end_tok - tok;
10640 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10642 tok = cond_start = end_tok + 1;
10643 innermost_block_tracker if_tracker;
10644 parse_exp_1 (&tok, 0, 0, 0, &if_tracker);
10646 /* The watchpoint expression may not be local, but the condition
10647 may still be. E.g.: `watch global if local > 0'. */
10648 cond_exp_valid_block = if_tracker.block ();
10653 error (_("Junk at end of command."));
10655 frame_info *wp_frame = block_innermost_frame (exp_valid_block);
10657 /* Save this because create_internal_breakpoint below invalidates
10659 frame_id watchpoint_frame = get_frame_id (wp_frame);
10661 /* If the expression is "local", then set up a "watchpoint scope"
10662 breakpoint at the point where we've left the scope of the watchpoint
10663 expression. Create the scope breakpoint before the watchpoint, so
10664 that we will encounter it first in bpstat_stop_status. */
10665 if (exp_valid_block != NULL && wp_frame != NULL)
10667 frame_id caller_frame_id = frame_unwind_caller_id (wp_frame);
10669 if (frame_id_p (caller_frame_id))
10671 gdbarch *caller_arch = frame_unwind_caller_arch (wp_frame);
10672 CORE_ADDR caller_pc = frame_unwind_caller_pc (wp_frame);
10675 = create_internal_breakpoint (caller_arch, caller_pc,
10676 bp_watchpoint_scope,
10677 &momentary_breakpoint_ops);
10679 /* create_internal_breakpoint could invalidate WP_FRAME. */
10682 scope_breakpoint->enable_state = bp_enabled;
10684 /* Automatically delete the breakpoint when it hits. */
10685 scope_breakpoint->disposition = disp_del;
10687 /* Only break in the proper frame (help with recursion). */
10688 scope_breakpoint->frame_id = caller_frame_id;
10690 /* Set the address at which we will stop. */
10691 scope_breakpoint->loc->gdbarch = caller_arch;
10692 scope_breakpoint->loc->requested_address = caller_pc;
10693 scope_breakpoint->loc->address
10694 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
10695 scope_breakpoint->loc->requested_address,
10696 scope_breakpoint->type);
10700 /* Now set up the breakpoint. We create all watchpoints as hardware
10701 watchpoints here even if hardware watchpoints are turned off, a call
10702 to update_watchpoint later in this function will cause the type to
10703 drop back to bp_watchpoint (software watchpoint) if required. */
10705 if (accessflag == hw_read)
10706 bp_type = bp_read_watchpoint;
10707 else if (accessflag == hw_access)
10708 bp_type = bp_access_watchpoint;
10710 bp_type = bp_hardware_watchpoint;
10712 std::unique_ptr<watchpoint> w (new watchpoint ());
10715 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
10716 &masked_watchpoint_breakpoint_ops);
10718 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
10719 &watchpoint_breakpoint_ops);
10720 w->thread = thread;
10721 w->disposition = disp_donttouch;
10722 w->pspace = current_program_space;
10723 w->exp = std::move (exp);
10724 w->exp_valid_block = exp_valid_block;
10725 w->cond_exp_valid_block = cond_exp_valid_block;
10728 struct type *t = value_type (val.get ());
10729 CORE_ADDR addr = value_as_address (val.get ());
10731 w->exp_string_reparse
10732 = current_language->la_watch_location_expression (t, addr).release ();
10734 w->exp_string = xstrprintf ("-location %.*s",
10735 (int) (exp_end - exp_start), exp_start);
10738 w->exp_string = savestring (exp_start, exp_end - exp_start);
10742 w->hw_wp_mask = mask;
10747 w->val_bitpos = saved_bitpos;
10748 w->val_bitsize = saved_bitsize;
10753 w->cond_string = savestring (cond_start, cond_end - cond_start);
10755 w->cond_string = 0;
10757 if (frame_id_p (watchpoint_frame))
10759 w->watchpoint_frame = watchpoint_frame;
10760 w->watchpoint_thread = inferior_ptid;
10764 w->watchpoint_frame = null_frame_id;
10765 w->watchpoint_thread = null_ptid;
10768 if (scope_breakpoint != NULL)
10770 /* The scope breakpoint is related to the watchpoint. We will
10771 need to act on them together. */
10772 w->related_breakpoint = scope_breakpoint;
10773 scope_breakpoint->related_breakpoint = w.get ();
10776 if (!just_location)
10777 value_free_to_mark (mark);
10779 /* Finally update the new watchpoint. This creates the locations
10780 that should be inserted. */
10781 update_watchpoint (w.get (), 1);
10783 install_breakpoint (internal, std::move (w), 1);
10786 /* Return count of debug registers needed to watch the given expression.
10787 If the watchpoint cannot be handled in hardware return zero. */
10790 can_use_hardware_watchpoint (const std::vector<value_ref_ptr> &vals)
10792 int found_memory_cnt = 0;
10794 /* Did the user specifically forbid us to use hardware watchpoints? */
10795 if (!can_use_hw_watchpoints)
10798 gdb_assert (!vals.empty ());
10799 struct value *head = vals[0].get ();
10801 /* Make sure that the value of the expression depends only upon
10802 memory contents, and values computed from them within GDB. If we
10803 find any register references or function calls, we can't use a
10804 hardware watchpoint.
10806 The idea here is that evaluating an expression generates a series
10807 of values, one holding the value of every subexpression. (The
10808 expression a*b+c has five subexpressions: a, b, a*b, c, and
10809 a*b+c.) GDB's values hold almost enough information to establish
10810 the criteria given above --- they identify memory lvalues,
10811 register lvalues, computed values, etcetera. So we can evaluate
10812 the expression, and then scan the chain of values that leaves
10813 behind to decide whether we can detect any possible change to the
10814 expression's final value using only hardware watchpoints.
10816 However, I don't think that the values returned by inferior
10817 function calls are special in any way. So this function may not
10818 notice that an expression involving an inferior function call
10819 can't be watched with hardware watchpoints. FIXME. */
10820 for (const value_ref_ptr &iter : vals)
10822 struct value *v = iter.get ();
10824 if (VALUE_LVAL (v) == lval_memory)
10826 if (v != head && value_lazy (v))
10827 /* A lazy memory lvalue in the chain is one that GDB never
10828 needed to fetch; we either just used its address (e.g.,
10829 `a' in `a.b') or we never needed it at all (e.g., `a'
10830 in `a,b'). This doesn't apply to HEAD; if that is
10831 lazy then it was not readable, but watch it anyway. */
10835 /* Ahh, memory we actually used! Check if we can cover
10836 it with hardware watchpoints. */
10837 struct type *vtype = check_typedef (value_type (v));
10839 /* We only watch structs and arrays if user asked for it
10840 explicitly, never if they just happen to appear in a
10841 middle of some value chain. */
10843 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
10844 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
10846 CORE_ADDR vaddr = value_address (v);
10850 len = (target_exact_watchpoints
10851 && is_scalar_type_recursive (vtype))?
10852 1 : TYPE_LENGTH (value_type (v));
10854 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
10858 found_memory_cnt += num_regs;
10862 else if (VALUE_LVAL (v) != not_lval
10863 && deprecated_value_modifiable (v) == 0)
10864 return 0; /* These are values from the history (e.g., $1). */
10865 else if (VALUE_LVAL (v) == lval_register)
10866 return 0; /* Cannot watch a register with a HW watchpoint. */
10869 /* The expression itself looks suitable for using a hardware
10870 watchpoint, but give the target machine a chance to reject it. */
10871 return found_memory_cnt;
10875 watch_command_wrapper (const char *arg, int from_tty, int internal)
10877 watch_command_1 (arg, hw_write, from_tty, 0, internal);
10880 /* A helper function that looks for the "-location" argument and then
10881 calls watch_command_1. */
10884 watch_maybe_just_location (const char *arg, int accessflag, int from_tty)
10886 int just_location = 0;
10889 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
10890 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
10893 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
10897 watch_command (const char *arg, int from_tty)
10899 watch_maybe_just_location (arg, hw_write, from_tty);
10903 rwatch_command_wrapper (const char *arg, int from_tty, int internal)
10905 watch_command_1 (arg, hw_read, from_tty, 0, internal);
10909 rwatch_command (const char *arg, int from_tty)
10911 watch_maybe_just_location (arg, hw_read, from_tty);
10915 awatch_command_wrapper (const char *arg, int from_tty, int internal)
10917 watch_command_1 (arg, hw_access, from_tty, 0, internal);
10921 awatch_command (const char *arg, int from_tty)
10923 watch_maybe_just_location (arg, hw_access, from_tty);
10927 /* Data for the FSM that manages the until(location)/advance commands
10928 in infcmd.c. Here because it uses the mechanisms of
10931 struct until_break_fsm : public thread_fsm
10933 /* The thread that was current when the command was executed. */
10936 /* The breakpoint set at the destination location. */
10937 breakpoint_up location_breakpoint;
10939 /* Breakpoint set at the return address in the caller frame. May be
10941 breakpoint_up caller_breakpoint;
10943 until_break_fsm (struct interp *cmd_interp, int thread,
10944 breakpoint_up &&location_breakpoint,
10945 breakpoint_up &&caller_breakpoint)
10946 : thread_fsm (cmd_interp),
10948 location_breakpoint (std::move (location_breakpoint)),
10949 caller_breakpoint (std::move (caller_breakpoint))
10953 void clean_up (struct thread_info *thread) override;
10954 bool should_stop (struct thread_info *thread) override;
10955 enum async_reply_reason do_async_reply_reason () override;
10958 /* Implementation of the 'should_stop' FSM method for the
10959 until(location)/advance commands. */
10962 until_break_fsm::should_stop (struct thread_info *tp)
10964 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
10965 location_breakpoint.get ()) != NULL
10966 || (caller_breakpoint != NULL
10967 && bpstat_find_breakpoint (tp->control.stop_bpstat,
10968 caller_breakpoint.get ()) != NULL))
10974 /* Implementation of the 'clean_up' FSM method for the
10975 until(location)/advance commands. */
10978 until_break_fsm::clean_up (struct thread_info *)
10980 /* Clean up our temporary breakpoints. */
10981 location_breakpoint.reset ();
10982 caller_breakpoint.reset ();
10983 delete_longjmp_breakpoint (thread);
10986 /* Implementation of the 'async_reply_reason' FSM method for the
10987 until(location)/advance commands. */
10989 enum async_reply_reason
10990 until_break_fsm::do_async_reply_reason ()
10992 return EXEC_ASYNC_LOCATION_REACHED;
10996 until_break_command (const char *arg, int from_tty, int anywhere)
10998 struct frame_info *frame;
10999 struct gdbarch *frame_gdbarch;
11000 struct frame_id stack_frame_id;
11001 struct frame_id caller_frame_id;
11003 struct thread_info *tp;
11005 clear_proceed_status (0);
11007 /* Set a breakpoint where the user wants it and at return from
11010 event_location_up location = string_to_event_location (&arg, current_language);
11012 std::vector<symtab_and_line> sals
11013 = (last_displayed_sal_is_valid ()
11014 ? decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
11015 get_last_displayed_symtab (),
11016 get_last_displayed_line ())
11017 : decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE,
11020 if (sals.size () != 1)
11021 error (_("Couldn't get information on specified line."));
11023 symtab_and_line &sal = sals[0];
11026 error (_("Junk at end of arguments."));
11028 resolve_sal_pc (&sal);
11030 tp = inferior_thread ();
11031 thread = tp->global_num;
11033 /* Note linespec handling above invalidates the frame chain.
11034 Installing a breakpoint also invalidates the frame chain (as it
11035 may need to switch threads), so do any frame handling before
11038 frame = get_selected_frame (NULL);
11039 frame_gdbarch = get_frame_arch (frame);
11040 stack_frame_id = get_stack_frame_id (frame);
11041 caller_frame_id = frame_unwind_caller_id (frame);
11043 /* Keep within the current frame, or in frames called by the current
11046 breakpoint_up caller_breakpoint;
11048 gdb::optional<delete_longjmp_breakpoint_cleanup> lj_deleter;
11050 if (frame_id_p (caller_frame_id))
11052 struct symtab_and_line sal2;
11053 struct gdbarch *caller_gdbarch;
11055 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11056 sal2.pc = frame_unwind_caller_pc (frame);
11057 caller_gdbarch = frame_unwind_caller_arch (frame);
11058 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11063 set_longjmp_breakpoint (tp, caller_frame_id);
11064 lj_deleter.emplace (thread);
11067 /* set_momentary_breakpoint could invalidate FRAME. */
11070 breakpoint_up location_breakpoint;
11072 /* If the user told us to continue until a specified location,
11073 we don't specify a frame at which we need to stop. */
11074 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11075 null_frame_id, bp_until);
11077 /* Otherwise, specify the selected frame, because we want to stop
11078 only at the very same frame. */
11079 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11080 stack_frame_id, bp_until);
11082 tp->thread_fsm = new until_break_fsm (command_interp (), tp->global_num,
11083 std::move (location_breakpoint),
11084 std::move (caller_breakpoint));
11087 lj_deleter->release ();
11089 proceed (-1, GDB_SIGNAL_DEFAULT);
11092 /* This function attempts to parse an optional "if <cond>" clause
11093 from the arg string. If one is not found, it returns NULL.
11095 Else, it returns a pointer to the condition string. (It does not
11096 attempt to evaluate the string against a particular block.) And,
11097 it updates arg to point to the first character following the parsed
11098 if clause in the arg string. */
11101 ep_parse_optional_if_clause (const char **arg)
11103 const char *cond_string;
11105 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
11108 /* Skip the "if" keyword. */
11111 /* Skip any extra leading whitespace, and record the start of the
11112 condition string. */
11113 *arg = skip_spaces (*arg);
11114 cond_string = *arg;
11116 /* Assume that the condition occupies the remainder of the arg
11118 (*arg) += strlen (cond_string);
11120 return cond_string;
11123 /* Commands to deal with catching events, such as signals, exceptions,
11124 process start/exit, etc. */
11128 catch_fork_temporary, catch_vfork_temporary,
11129 catch_fork_permanent, catch_vfork_permanent
11134 catch_fork_command_1 (const char *arg, int from_tty,
11135 struct cmd_list_element *command)
11137 struct gdbarch *gdbarch = get_current_arch ();
11138 const char *cond_string = NULL;
11139 catch_fork_kind fork_kind;
11142 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11143 tempflag = (fork_kind == catch_fork_temporary
11144 || fork_kind == catch_vfork_temporary);
11148 arg = skip_spaces (arg);
11150 /* The allowed syntax is:
11152 catch [v]fork if <cond>
11154 First, check if there's an if clause. */
11155 cond_string = ep_parse_optional_if_clause (&arg);
11157 if ((*arg != '\0') && !isspace (*arg))
11158 error (_("Junk at end of arguments."));
11160 /* If this target supports it, create a fork or vfork catchpoint
11161 and enable reporting of such events. */
11164 case catch_fork_temporary:
11165 case catch_fork_permanent:
11166 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11167 &catch_fork_breakpoint_ops);
11169 case catch_vfork_temporary:
11170 case catch_vfork_permanent:
11171 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11172 &catch_vfork_breakpoint_ops);
11175 error (_("unsupported or unknown fork kind; cannot catch it"));
11181 catch_exec_command_1 (const char *arg, int from_tty,
11182 struct cmd_list_element *command)
11184 struct gdbarch *gdbarch = get_current_arch ();
11186 const char *cond_string = NULL;
11188 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11192 arg = skip_spaces (arg);
11194 /* The allowed syntax is:
11196 catch exec if <cond>
11198 First, check if there's an if clause. */
11199 cond_string = ep_parse_optional_if_clause (&arg);
11201 if ((*arg != '\0') && !isspace (*arg))
11202 error (_("Junk at end of arguments."));
11204 std::unique_ptr<exec_catchpoint> c (new exec_catchpoint ());
11205 init_catchpoint (c.get (), gdbarch, tempflag, cond_string,
11206 &catch_exec_breakpoint_ops);
11207 c->exec_pathname = NULL;
11209 install_breakpoint (0, std::move (c), 1);
11213 init_ada_exception_breakpoint (struct breakpoint *b,
11214 struct gdbarch *gdbarch,
11215 struct symtab_and_line sal,
11216 const char *addr_string,
11217 const struct breakpoint_ops *ops,
11224 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11226 loc_gdbarch = gdbarch;
11228 describe_other_breakpoints (loc_gdbarch,
11229 sal.pspace, sal.pc, sal.section, -1);
11230 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11231 version for exception catchpoints, because two catchpoints
11232 used for different exception names will use the same address.
11233 In this case, a "breakpoint ... also set at..." warning is
11234 unproductive. Besides, the warning phrasing is also a bit
11235 inappropriate, we should use the word catchpoint, and tell
11236 the user what type of catchpoint it is. The above is good
11237 enough for now, though. */
11240 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
11242 b->enable_state = enabled ? bp_enabled : bp_disabled;
11243 b->disposition = tempflag ? disp_del : disp_donttouch;
11244 b->location = string_to_event_location (&addr_string,
11245 language_def (language_ada));
11246 b->language = language_ada;
11250 catch_command (const char *arg, int from_tty)
11252 error (_("Catch requires an event name."));
11257 tcatch_command (const char *arg, int from_tty)
11259 error (_("Catch requires an event name."));
11262 /* Compare two breakpoints and return a strcmp-like result. */
11265 compare_breakpoints (const breakpoint *a, const breakpoint *b)
11267 uintptr_t ua = (uintptr_t) a;
11268 uintptr_t ub = (uintptr_t) b;
11270 if (a->number < b->number)
11272 else if (a->number > b->number)
11275 /* Now sort by address, in case we see, e..g, two breakpoints with
11279 return ua > ub ? 1 : 0;
11282 /* Delete breakpoints by address or line. */
11285 clear_command (const char *arg, int from_tty)
11287 struct breakpoint *b;
11290 std::vector<symtab_and_line> decoded_sals;
11291 symtab_and_line last_sal;
11292 gdb::array_view<symtab_and_line> sals;
11296 = decode_line_with_current_source (arg,
11297 (DECODE_LINE_FUNFIRSTLINE
11298 | DECODE_LINE_LIST_MODE));
11300 sals = decoded_sals;
11304 /* Set sal's line, symtab, pc, and pspace to the values
11305 corresponding to the last call to print_frame_info. If the
11306 codepoint is not valid, this will set all the fields to 0. */
11307 last_sal = get_last_displayed_sal ();
11308 if (last_sal.symtab == 0)
11309 error (_("No source file specified."));
11315 /* We don't call resolve_sal_pc here. That's not as bad as it
11316 seems, because all existing breakpoints typically have both
11317 file/line and pc set. So, if clear is given file/line, we can
11318 match this to existing breakpoint without obtaining pc at all.
11320 We only support clearing given the address explicitly
11321 present in breakpoint table. Say, we've set breakpoint
11322 at file:line. There were several PC values for that file:line,
11323 due to optimization, all in one block.
11325 We've picked one PC value. If "clear" is issued with another
11326 PC corresponding to the same file:line, the breakpoint won't
11327 be cleared. We probably can still clear the breakpoint, but
11328 since the other PC value is never presented to user, user
11329 can only find it by guessing, and it does not seem important
11330 to support that. */
11332 /* For each line spec given, delete bps which correspond to it. Do
11333 it in two passes, solely to preserve the current behavior that
11334 from_tty is forced true if we delete more than one
11337 std::vector<struct breakpoint *> found;
11338 for (const auto &sal : sals)
11340 const char *sal_fullname;
11342 /* If exact pc given, clear bpts at that pc.
11343 If line given (pc == 0), clear all bpts on specified line.
11344 If defaulting, clear all bpts on default line
11347 defaulting sal.pc != 0 tests to do
11352 1 0 <can't happen> */
11354 sal_fullname = (sal.symtab == NULL
11355 ? NULL : symtab_to_fullname (sal.symtab));
11357 /* Find all matching breakpoints and add them to 'found'. */
11358 ALL_BREAKPOINTS (b)
11361 /* Are we going to delete b? */
11362 if (b->type != bp_none && !is_watchpoint (b))
11364 struct bp_location *loc = b->loc;
11365 for (; loc; loc = loc->next)
11367 /* If the user specified file:line, don't allow a PC
11368 match. This matches historical gdb behavior. */
11369 int pc_match = (!sal.explicit_line
11371 && (loc->pspace == sal.pspace)
11372 && (loc->address == sal.pc)
11373 && (!section_is_overlay (loc->section)
11374 || loc->section == sal.section));
11375 int line_match = 0;
11377 if ((default_match || sal.explicit_line)
11378 && loc->symtab != NULL
11379 && sal_fullname != NULL
11380 && sal.pspace == loc->pspace
11381 && loc->line_number == sal.line
11382 && filename_cmp (symtab_to_fullname (loc->symtab),
11383 sal_fullname) == 0)
11386 if (pc_match || line_match)
11395 found.push_back (b);
11399 /* Now go thru the 'found' chain and delete them. */
11400 if (found.empty ())
11403 error (_("No breakpoint at %s."), arg);
11405 error (_("No breakpoint at this line."));
11408 /* Remove duplicates from the vec. */
11409 std::sort (found.begin (), found.end (),
11410 [] (const breakpoint *bp_a, const breakpoint *bp_b)
11412 return compare_breakpoints (bp_a, bp_b) < 0;
11414 found.erase (std::unique (found.begin (), found.end (),
11415 [] (const breakpoint *bp_a, const breakpoint *bp_b)
11417 return compare_breakpoints (bp_a, bp_b) == 0;
11421 if (found.size () > 1)
11422 from_tty = 1; /* Always report if deleted more than one. */
11425 if (found.size () == 1)
11426 printf_unfiltered (_("Deleted breakpoint "));
11428 printf_unfiltered (_("Deleted breakpoints "));
11431 for (breakpoint *iter : found)
11434 printf_unfiltered ("%d ", iter->number);
11435 delete_breakpoint (iter);
11438 putchar_unfiltered ('\n');
11441 /* Delete breakpoint in BS if they are `delete' breakpoints and
11442 all breakpoints that are marked for deletion, whether hit or not.
11443 This is called after any breakpoint is hit, or after errors. */
11446 breakpoint_auto_delete (bpstat bs)
11448 struct breakpoint *b, *b_tmp;
11450 for (; bs; bs = bs->next)
11451 if (bs->breakpoint_at
11452 && bs->breakpoint_at->disposition == disp_del
11454 delete_breakpoint (bs->breakpoint_at);
11456 ALL_BREAKPOINTS_SAFE (b, b_tmp)
11458 if (b->disposition == disp_del_at_next_stop)
11459 delete_breakpoint (b);
11463 /* A comparison function for bp_location AP and BP being interfaced to
11464 qsort. Sort elements primarily by their ADDRESS (no matter what
11465 does breakpoint_address_is_meaningful say for its OWNER),
11466 secondarily by ordering first permanent elements and
11467 terciarily just ensuring the array is sorted stable way despite
11468 qsort being an unstable algorithm. */
11471 bp_locations_compare (const void *ap, const void *bp)
11473 const struct bp_location *a = *(const struct bp_location **) ap;
11474 const struct bp_location *b = *(const struct bp_location **) bp;
11476 if (a->address != b->address)
11477 return (a->address > b->address) - (a->address < b->address);
11479 /* Sort locations at the same address by their pspace number, keeping
11480 locations of the same inferior (in a multi-inferior environment)
11483 if (a->pspace->num != b->pspace->num)
11484 return ((a->pspace->num > b->pspace->num)
11485 - (a->pspace->num < b->pspace->num));
11487 /* Sort permanent breakpoints first. */
11488 if (a->permanent != b->permanent)
11489 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
11491 /* Make the internal GDB representation stable across GDB runs
11492 where A and B memory inside GDB can differ. Breakpoint locations of
11493 the same type at the same address can be sorted in arbitrary order. */
11495 if (a->owner->number != b->owner->number)
11496 return ((a->owner->number > b->owner->number)
11497 - (a->owner->number < b->owner->number));
11499 return (a > b) - (a < b);
11502 /* Set bp_locations_placed_address_before_address_max and
11503 bp_locations_shadow_len_after_address_max according to the current
11504 content of the bp_locations array. */
11507 bp_locations_target_extensions_update (void)
11509 struct bp_location *bl, **blp_tmp;
11511 bp_locations_placed_address_before_address_max = 0;
11512 bp_locations_shadow_len_after_address_max = 0;
11514 ALL_BP_LOCATIONS (bl, blp_tmp)
11516 CORE_ADDR start, end, addr;
11518 if (!bp_location_has_shadow (bl))
11521 start = bl->target_info.placed_address;
11522 end = start + bl->target_info.shadow_len;
11524 gdb_assert (bl->address >= start);
11525 addr = bl->address - start;
11526 if (addr > bp_locations_placed_address_before_address_max)
11527 bp_locations_placed_address_before_address_max = addr;
11529 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
11531 gdb_assert (bl->address < end);
11532 addr = end - bl->address;
11533 if (addr > bp_locations_shadow_len_after_address_max)
11534 bp_locations_shadow_len_after_address_max = addr;
11538 /* Download tracepoint locations if they haven't been. */
11541 download_tracepoint_locations (void)
11543 struct breakpoint *b;
11544 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
11546 scoped_restore_current_pspace_and_thread restore_pspace_thread;
11548 ALL_TRACEPOINTS (b)
11550 struct bp_location *bl;
11551 struct tracepoint *t;
11552 int bp_location_downloaded = 0;
11554 if ((b->type == bp_fast_tracepoint
11555 ? !may_insert_fast_tracepoints
11556 : !may_insert_tracepoints))
11559 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
11561 if (target_can_download_tracepoint ())
11562 can_download_tracepoint = TRIBOOL_TRUE;
11564 can_download_tracepoint = TRIBOOL_FALSE;
11567 if (can_download_tracepoint == TRIBOOL_FALSE)
11570 for (bl = b->loc; bl; bl = bl->next)
11572 /* In tracepoint, locations are _never_ duplicated, so
11573 should_be_inserted is equivalent to
11574 unduplicated_should_be_inserted. */
11575 if (!should_be_inserted (bl) || bl->inserted)
11578 switch_to_program_space_and_thread (bl->pspace);
11580 target_download_tracepoint (bl);
11583 bp_location_downloaded = 1;
11585 t = (struct tracepoint *) b;
11586 t->number_on_target = b->number;
11587 if (bp_location_downloaded)
11588 gdb::observers::breakpoint_modified.notify (b);
11592 /* Swap the insertion/duplication state between two locations. */
11595 swap_insertion (struct bp_location *left, struct bp_location *right)
11597 const int left_inserted = left->inserted;
11598 const int left_duplicate = left->duplicate;
11599 const int left_needs_update = left->needs_update;
11600 const struct bp_target_info left_target_info = left->target_info;
11602 /* Locations of tracepoints can never be duplicated. */
11603 if (is_tracepoint (left->owner))
11604 gdb_assert (!left->duplicate);
11605 if (is_tracepoint (right->owner))
11606 gdb_assert (!right->duplicate);
11608 left->inserted = right->inserted;
11609 left->duplicate = right->duplicate;
11610 left->needs_update = right->needs_update;
11611 left->target_info = right->target_info;
11612 right->inserted = left_inserted;
11613 right->duplicate = left_duplicate;
11614 right->needs_update = left_needs_update;
11615 right->target_info = left_target_info;
11618 /* Force the re-insertion of the locations at ADDRESS. This is called
11619 once a new/deleted/modified duplicate location is found and we are evaluating
11620 conditions on the target's side. Such conditions need to be updated on
11624 force_breakpoint_reinsertion (struct bp_location *bl)
11626 struct bp_location **locp = NULL, **loc2p;
11627 struct bp_location *loc;
11628 CORE_ADDR address = 0;
11631 address = bl->address;
11632 pspace_num = bl->pspace->num;
11634 /* This is only meaningful if the target is
11635 evaluating conditions and if the user has
11636 opted for condition evaluation on the target's
11638 if (gdb_evaluates_breakpoint_condition_p ()
11639 || !target_supports_evaluation_of_breakpoint_conditions ())
11642 /* Flag all breakpoint locations with this address and
11643 the same program space as the location
11644 as "its condition has changed". We need to
11645 update the conditions on the target's side. */
11646 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
11650 if (!is_breakpoint (loc->owner)
11651 || pspace_num != loc->pspace->num)
11654 /* Flag the location appropriately. We use a different state to
11655 let everyone know that we already updated the set of locations
11656 with addr bl->address and program space bl->pspace. This is so
11657 we don't have to keep calling these functions just to mark locations
11658 that have already been marked. */
11659 loc->condition_changed = condition_updated;
11661 /* Free the agent expression bytecode as well. We will compute
11663 loc->cond_bytecode.reset ();
11666 /* Called whether new breakpoints are created, or existing breakpoints
11667 deleted, to update the global location list and recompute which
11668 locations are duplicate of which.
11670 The INSERT_MODE flag determines whether locations may not, may, or
11671 shall be inserted now. See 'enum ugll_insert_mode' for more
11675 update_global_location_list (enum ugll_insert_mode insert_mode)
11677 struct breakpoint *b;
11678 struct bp_location **locp, *loc;
11679 /* Last breakpoint location address that was marked for update. */
11680 CORE_ADDR last_addr = 0;
11681 /* Last breakpoint location program space that was marked for update. */
11682 int last_pspace_num = -1;
11684 /* Used in the duplicates detection below. When iterating over all
11685 bp_locations, points to the first bp_location of a given address.
11686 Breakpoints and watchpoints of different types are never
11687 duplicates of each other. Keep one pointer for each type of
11688 breakpoint/watchpoint, so we only need to loop over all locations
11690 struct bp_location *bp_loc_first; /* breakpoint */
11691 struct bp_location *wp_loc_first; /* hardware watchpoint */
11692 struct bp_location *awp_loc_first; /* access watchpoint */
11693 struct bp_location *rwp_loc_first; /* read watchpoint */
11695 /* Saved former bp_locations array which we compare against the newly
11696 built bp_locations from the current state of ALL_BREAKPOINTS. */
11697 struct bp_location **old_locp;
11698 unsigned old_locations_count;
11699 gdb::unique_xmalloc_ptr<struct bp_location *> old_locations (bp_locations);
11701 old_locations_count = bp_locations_count;
11702 bp_locations = NULL;
11703 bp_locations_count = 0;
11705 ALL_BREAKPOINTS (b)
11706 for (loc = b->loc; loc; loc = loc->next)
11707 bp_locations_count++;
11709 bp_locations = XNEWVEC (struct bp_location *, bp_locations_count);
11710 locp = bp_locations;
11711 ALL_BREAKPOINTS (b)
11712 for (loc = b->loc; loc; loc = loc->next)
11714 qsort (bp_locations, bp_locations_count, sizeof (*bp_locations),
11715 bp_locations_compare);
11717 bp_locations_target_extensions_update ();
11719 /* Identify bp_location instances that are no longer present in the
11720 new list, and therefore should be freed. Note that it's not
11721 necessary that those locations should be removed from inferior --
11722 if there's another location at the same address (previously
11723 marked as duplicate), we don't need to remove/insert the
11726 LOCP is kept in sync with OLD_LOCP, each pointing to the current
11727 and former bp_location array state respectively. */
11729 locp = bp_locations;
11730 for (old_locp = old_locations.get ();
11731 old_locp < old_locations.get () + old_locations_count;
11734 struct bp_location *old_loc = *old_locp;
11735 struct bp_location **loc2p;
11737 /* Tells if 'old_loc' is found among the new locations. If
11738 not, we have to free it. */
11739 int found_object = 0;
11740 /* Tells if the location should remain inserted in the target. */
11741 int keep_in_target = 0;
11744 /* Skip LOCP entries which will definitely never be needed.
11745 Stop either at or being the one matching OLD_LOC. */
11746 while (locp < bp_locations + bp_locations_count
11747 && (*locp)->address < old_loc->address)
11751 (loc2p < bp_locations + bp_locations_count
11752 && (*loc2p)->address == old_loc->address);
11755 /* Check if this is a new/duplicated location or a duplicated
11756 location that had its condition modified. If so, we want to send
11757 its condition to the target if evaluation of conditions is taking
11759 if ((*loc2p)->condition_changed == condition_modified
11760 && (last_addr != old_loc->address
11761 || last_pspace_num != old_loc->pspace->num))
11763 force_breakpoint_reinsertion (*loc2p);
11764 last_pspace_num = old_loc->pspace->num;
11767 if (*loc2p == old_loc)
11771 /* We have already handled this address, update it so that we don't
11772 have to go through updates again. */
11773 last_addr = old_loc->address;
11775 /* Target-side condition evaluation: Handle deleted locations. */
11777 force_breakpoint_reinsertion (old_loc);
11779 /* If this location is no longer present, and inserted, look if
11780 there's maybe a new location at the same address. If so,
11781 mark that one inserted, and don't remove this one. This is
11782 needed so that we don't have a time window where a breakpoint
11783 at certain location is not inserted. */
11785 if (old_loc->inserted)
11787 /* If the location is inserted now, we might have to remove
11790 if (found_object && should_be_inserted (old_loc))
11792 /* The location is still present in the location list,
11793 and still should be inserted. Don't do anything. */
11794 keep_in_target = 1;
11798 /* This location still exists, but it won't be kept in the
11799 target since it may have been disabled. We proceed to
11800 remove its target-side condition. */
11802 /* The location is either no longer present, or got
11803 disabled. See if there's another location at the
11804 same address, in which case we don't need to remove
11805 this one from the target. */
11807 /* OLD_LOC comes from existing struct breakpoint. */
11808 if (breakpoint_address_is_meaningful (old_loc->owner))
11811 (loc2p < bp_locations + bp_locations_count
11812 && (*loc2p)->address == old_loc->address);
11815 struct bp_location *loc2 = *loc2p;
11817 if (breakpoint_locations_match (loc2, old_loc))
11819 /* Read watchpoint locations are switched to
11820 access watchpoints, if the former are not
11821 supported, but the latter are. */
11822 if (is_hardware_watchpoint (old_loc->owner))
11824 gdb_assert (is_hardware_watchpoint (loc2->owner));
11825 loc2->watchpoint_type = old_loc->watchpoint_type;
11828 /* loc2 is a duplicated location. We need to check
11829 if it should be inserted in case it will be
11831 if (loc2 != old_loc
11832 && unduplicated_should_be_inserted (loc2))
11834 swap_insertion (old_loc, loc2);
11835 keep_in_target = 1;
11843 if (!keep_in_target)
11845 if (remove_breakpoint (old_loc))
11847 /* This is just about all we can do. We could keep
11848 this location on the global list, and try to
11849 remove it next time, but there's no particular
11850 reason why we will succeed next time.
11852 Note that at this point, old_loc->owner is still
11853 valid, as delete_breakpoint frees the breakpoint
11854 only after calling us. */
11855 printf_filtered (_("warning: Error removing "
11856 "breakpoint %d\n"),
11857 old_loc->owner->number);
11865 if (removed && target_is_non_stop_p ()
11866 && need_moribund_for_location_type (old_loc))
11868 /* This location was removed from the target. In
11869 non-stop mode, a race condition is possible where
11870 we've removed a breakpoint, but stop events for that
11871 breakpoint are already queued and will arrive later.
11872 We apply an heuristic to be able to distinguish such
11873 SIGTRAPs from other random SIGTRAPs: we keep this
11874 breakpoint location for a bit, and will retire it
11875 after we see some number of events. The theory here
11876 is that reporting of events should, "on the average",
11877 be fair, so after a while we'll see events from all
11878 threads that have anything of interest, and no longer
11879 need to keep this breakpoint location around. We
11880 don't hold locations forever so to reduce chances of
11881 mistaking a non-breakpoint SIGTRAP for a breakpoint
11884 The heuristic failing can be disastrous on
11885 decr_pc_after_break targets.
11887 On decr_pc_after_break targets, like e.g., x86-linux,
11888 if we fail to recognize a late breakpoint SIGTRAP,
11889 because events_till_retirement has reached 0 too
11890 soon, we'll fail to do the PC adjustment, and report
11891 a random SIGTRAP to the user. When the user resumes
11892 the inferior, it will most likely immediately crash
11893 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
11894 corrupted, because of being resumed e.g., in the
11895 middle of a multi-byte instruction, or skipped a
11896 one-byte instruction. This was actually seen happen
11897 on native x86-linux, and should be less rare on
11898 targets that do not support new thread events, like
11899 remote, due to the heuristic depending on
11902 Mistaking a random SIGTRAP for a breakpoint trap
11903 causes similar symptoms (PC adjustment applied when
11904 it shouldn't), but then again, playing with SIGTRAPs
11905 behind the debugger's back is asking for trouble.
11907 Since hardware watchpoint traps are always
11908 distinguishable from other traps, so we don't need to
11909 apply keep hardware watchpoint moribund locations
11910 around. We simply always ignore hardware watchpoint
11911 traps we can no longer explain. */
11913 old_loc->events_till_retirement = 3 * (thread_count () + 1);
11914 old_loc->owner = NULL;
11916 moribund_locations.push_back (old_loc);
11920 old_loc->owner = NULL;
11921 decref_bp_location (&old_loc);
11926 /* Rescan breakpoints at the same address and section, marking the
11927 first one as "first" and any others as "duplicates". This is so
11928 that the bpt instruction is only inserted once. If we have a
11929 permanent breakpoint at the same place as BPT, make that one the
11930 official one, and the rest as duplicates. Permanent breakpoints
11931 are sorted first for the same address.
11933 Do the same for hardware watchpoints, but also considering the
11934 watchpoint's type (regular/access/read) and length. */
11936 bp_loc_first = NULL;
11937 wp_loc_first = NULL;
11938 awp_loc_first = NULL;
11939 rwp_loc_first = NULL;
11940 ALL_BP_LOCATIONS (loc, locp)
11942 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
11944 struct bp_location **loc_first_p;
11947 if (!unduplicated_should_be_inserted (loc)
11948 || !breakpoint_address_is_meaningful (b)
11949 /* Don't detect duplicate for tracepoint locations because they are
11950 never duplicated. See the comments in field `duplicate' of
11951 `struct bp_location'. */
11952 || is_tracepoint (b))
11954 /* Clear the condition modification flag. */
11955 loc->condition_changed = condition_unchanged;
11959 if (b->type == bp_hardware_watchpoint)
11960 loc_first_p = &wp_loc_first;
11961 else if (b->type == bp_read_watchpoint)
11962 loc_first_p = &rwp_loc_first;
11963 else if (b->type == bp_access_watchpoint)
11964 loc_first_p = &awp_loc_first;
11966 loc_first_p = &bp_loc_first;
11968 if (*loc_first_p == NULL
11969 || (overlay_debugging && loc->section != (*loc_first_p)->section)
11970 || !breakpoint_locations_match (loc, *loc_first_p))
11972 *loc_first_p = loc;
11973 loc->duplicate = 0;
11975 if (is_breakpoint (loc->owner) && loc->condition_changed)
11977 loc->needs_update = 1;
11978 /* Clear the condition modification flag. */
11979 loc->condition_changed = condition_unchanged;
11985 /* This and the above ensure the invariant that the first location
11986 is not duplicated, and is the inserted one.
11987 All following are marked as duplicated, and are not inserted. */
11989 swap_insertion (loc, *loc_first_p);
11990 loc->duplicate = 1;
11992 /* Clear the condition modification flag. */
11993 loc->condition_changed = condition_unchanged;
11996 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
11998 if (insert_mode != UGLL_DONT_INSERT)
11999 insert_breakpoint_locations ();
12002 /* Even though the caller told us to not insert new
12003 locations, we may still need to update conditions on the
12004 target's side of breakpoints that were already inserted
12005 if the target is evaluating breakpoint conditions. We
12006 only update conditions for locations that are marked
12008 update_inserted_breakpoint_locations ();
12012 if (insert_mode != UGLL_DONT_INSERT)
12013 download_tracepoint_locations ();
12017 breakpoint_retire_moribund (void)
12019 for (int ix = 0; ix < moribund_locations.size (); ++ix)
12021 struct bp_location *loc = moribund_locations[ix];
12022 if (--(loc->events_till_retirement) == 0)
12024 decref_bp_location (&loc);
12025 unordered_remove (moribund_locations, ix);
12032 update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
12037 update_global_location_list (insert_mode);
12039 catch (const gdb_exception_error &e)
12044 /* Clear BKP from a BPS. */
12047 bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12051 for (bs = bps; bs; bs = bs->next)
12052 if (bs->breakpoint_at == bpt)
12054 bs->breakpoint_at = NULL;
12055 bs->old_val = NULL;
12056 /* bs->commands will be freed later. */
12060 /* Callback for iterate_over_threads. */
12062 bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12064 struct breakpoint *bpt = (struct breakpoint *) data;
12066 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12070 /* Helper for breakpoint and tracepoint breakpoint_ops->mention
12074 say_where (struct breakpoint *b)
12076 struct value_print_options opts;
12078 get_user_print_options (&opts);
12080 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12082 if (b->loc == NULL)
12084 /* For pending locations, the output differs slightly based
12085 on b->extra_string. If this is non-NULL, it contains either
12086 a condition or dprintf arguments. */
12087 if (b->extra_string == NULL)
12089 printf_filtered (_(" (%s) pending."),
12090 event_location_to_string (b->location.get ()));
12092 else if (b->type == bp_dprintf)
12094 printf_filtered (_(" (%s,%s) pending."),
12095 event_location_to_string (b->location.get ()),
12100 printf_filtered (_(" (%s %s) pending."),
12101 event_location_to_string (b->location.get ()),
12107 if (opts.addressprint || b->loc->symtab == NULL)
12109 printf_filtered (" at ");
12110 fputs_styled (paddress (b->loc->gdbarch, b->loc->address),
12111 address_style.style (),
12114 if (b->loc->symtab != NULL)
12116 /* If there is a single location, we can print the location
12118 if (b->loc->next == NULL)
12120 puts_filtered (": file ");
12121 fputs_styled (symtab_to_filename_for_display (b->loc->symtab),
12122 file_name_style.style (),
12124 printf_filtered (", line %d.",
12125 b->loc->line_number);
12128 /* This is not ideal, but each location may have a
12129 different file name, and this at least reflects the
12130 real situation somewhat. */
12131 printf_filtered (": %s.",
12132 event_location_to_string (b->location.get ()));
12137 struct bp_location *loc = b->loc;
12139 for (; loc; loc = loc->next)
12141 printf_filtered (" (%d locations)", n);
12146 bp_location::~bp_location ()
12148 xfree (function_name);
12151 /* Destructor for the breakpoint base class. */
12153 breakpoint::~breakpoint ()
12155 xfree (this->cond_string);
12156 xfree (this->extra_string);
12157 xfree (this->filter);
12160 static struct bp_location *
12161 base_breakpoint_allocate_location (struct breakpoint *self)
12163 return new bp_location (self);
12167 base_breakpoint_re_set (struct breakpoint *b)
12169 /* Nothing to re-set. */
12172 #define internal_error_pure_virtual_called() \
12173 gdb_assert_not_reached ("pure virtual function called")
12176 base_breakpoint_insert_location (struct bp_location *bl)
12178 internal_error_pure_virtual_called ();
12182 base_breakpoint_remove_location (struct bp_location *bl,
12183 enum remove_bp_reason reason)
12185 internal_error_pure_virtual_called ();
12189 base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12190 const address_space *aspace,
12192 const struct target_waitstatus *ws)
12194 internal_error_pure_virtual_called ();
12198 base_breakpoint_check_status (bpstat bs)
12203 /* A "works_in_software_mode" breakpoint_ops method that just internal
12207 base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12209 internal_error_pure_virtual_called ();
12212 /* A "resources_needed" breakpoint_ops method that just internal
12216 base_breakpoint_resources_needed (const struct bp_location *bl)
12218 internal_error_pure_virtual_called ();
12221 static enum print_stop_action
12222 base_breakpoint_print_it (bpstat bs)
12224 internal_error_pure_virtual_called ();
12228 base_breakpoint_print_one_detail (const struct breakpoint *self,
12229 struct ui_out *uiout)
12235 base_breakpoint_print_mention (struct breakpoint *b)
12237 internal_error_pure_virtual_called ();
12241 base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12243 internal_error_pure_virtual_called ();
12247 base_breakpoint_create_sals_from_location
12248 (const struct event_location *location,
12249 struct linespec_result *canonical,
12250 enum bptype type_wanted)
12252 internal_error_pure_virtual_called ();
12256 base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12257 struct linespec_result *c,
12258 gdb::unique_xmalloc_ptr<char> cond_string,
12259 gdb::unique_xmalloc_ptr<char> extra_string,
12260 enum bptype type_wanted,
12261 enum bpdisp disposition,
12263 int task, int ignore_count,
12264 const struct breakpoint_ops *o,
12265 int from_tty, int enabled,
12266 int internal, unsigned flags)
12268 internal_error_pure_virtual_called ();
12271 static std::vector<symtab_and_line>
12272 base_breakpoint_decode_location (struct breakpoint *b,
12273 const struct event_location *location,
12274 struct program_space *search_pspace)
12276 internal_error_pure_virtual_called ();
12279 /* The default 'explains_signal' method. */
12282 base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
12287 /* The default "after_condition_true" method. */
12290 base_breakpoint_after_condition_true (struct bpstats *bs)
12292 /* Nothing to do. */
12295 struct breakpoint_ops base_breakpoint_ops =
12297 base_breakpoint_allocate_location,
12298 base_breakpoint_re_set,
12299 base_breakpoint_insert_location,
12300 base_breakpoint_remove_location,
12301 base_breakpoint_breakpoint_hit,
12302 base_breakpoint_check_status,
12303 base_breakpoint_resources_needed,
12304 base_breakpoint_works_in_software_mode,
12305 base_breakpoint_print_it,
12307 base_breakpoint_print_one_detail,
12308 base_breakpoint_print_mention,
12309 base_breakpoint_print_recreate,
12310 base_breakpoint_create_sals_from_location,
12311 base_breakpoint_create_breakpoints_sal,
12312 base_breakpoint_decode_location,
12313 base_breakpoint_explains_signal,
12314 base_breakpoint_after_condition_true,
12317 /* Default breakpoint_ops methods. */
12320 bkpt_re_set (struct breakpoint *b)
12322 /* FIXME: is this still reachable? */
12323 if (breakpoint_event_location_empty_p (b))
12325 /* Anything without a location can't be re-set. */
12326 delete_breakpoint (b);
12330 breakpoint_re_set_default (b);
12334 bkpt_insert_location (struct bp_location *bl)
12336 CORE_ADDR addr = bl->target_info.reqstd_address;
12338 bl->target_info.kind = breakpoint_kind (bl, &addr);
12339 bl->target_info.placed_address = addr;
12341 if (bl->loc_type == bp_loc_hardware_breakpoint)
12342 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
12344 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
12348 bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
12350 if (bl->loc_type == bp_loc_hardware_breakpoint)
12351 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12353 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
12357 bkpt_breakpoint_hit (const struct bp_location *bl,
12358 const address_space *aspace, CORE_ADDR bp_addr,
12359 const struct target_waitstatus *ws)
12361 if (ws->kind != TARGET_WAITKIND_STOPPED
12362 || ws->value.sig != GDB_SIGNAL_TRAP)
12365 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12369 if (overlay_debugging /* unmapped overlay section */
12370 && section_is_overlay (bl->section)
12371 && !section_is_mapped (bl->section))
12378 dprintf_breakpoint_hit (const struct bp_location *bl,
12379 const address_space *aspace, CORE_ADDR bp_addr,
12380 const struct target_waitstatus *ws)
12382 if (dprintf_style == dprintf_style_agent
12383 && target_can_run_breakpoint_commands ())
12385 /* An agent-style dprintf never causes a stop. If we see a trap
12386 for this address it must be for a breakpoint that happens to
12387 be set at the same address. */
12391 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
12395 bkpt_resources_needed (const struct bp_location *bl)
12397 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12402 static enum print_stop_action
12403 bkpt_print_it (bpstat bs)
12405 struct breakpoint *b;
12406 const struct bp_location *bl;
12408 struct ui_out *uiout = current_uiout;
12410 gdb_assert (bs->bp_location_at != NULL);
12412 bl = bs->bp_location_at;
12413 b = bs->breakpoint_at;
12415 bp_temp = b->disposition == disp_del;
12416 if (bl->address != bl->requested_address)
12417 breakpoint_adjustment_warning (bl->requested_address,
12420 annotate_breakpoint (b->number);
12421 maybe_print_thread_hit_breakpoint (uiout);
12424 uiout->text ("Temporary breakpoint ");
12426 uiout->text ("Breakpoint ");
12427 if (uiout->is_mi_like_p ())
12429 uiout->field_string ("reason",
12430 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12431 uiout->field_string ("disp", bpdisp_text (b->disposition));
12433 uiout->field_int ("bkptno", b->number);
12434 uiout->text (", ");
12436 return PRINT_SRC_AND_LOC;
12440 bkpt_print_mention (struct breakpoint *b)
12442 if (current_uiout->is_mi_like_p ())
12447 case bp_breakpoint:
12448 case bp_gnu_ifunc_resolver:
12449 if (b->disposition == disp_del)
12450 printf_filtered (_("Temporary breakpoint"));
12452 printf_filtered (_("Breakpoint"));
12453 printf_filtered (_(" %d"), b->number);
12454 if (b->type == bp_gnu_ifunc_resolver)
12455 printf_filtered (_(" at gnu-indirect-function resolver"));
12457 case bp_hardware_breakpoint:
12458 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
12461 printf_filtered (_("Dprintf %d"), b->number);
12469 bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12471 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12472 fprintf_unfiltered (fp, "tbreak");
12473 else if (tp->type == bp_breakpoint)
12474 fprintf_unfiltered (fp, "break");
12475 else if (tp->type == bp_hardware_breakpoint
12476 && tp->disposition == disp_del)
12477 fprintf_unfiltered (fp, "thbreak");
12478 else if (tp->type == bp_hardware_breakpoint)
12479 fprintf_unfiltered (fp, "hbreak");
12481 internal_error (__FILE__, __LINE__,
12482 _("unhandled breakpoint type %d"), (int) tp->type);
12484 fprintf_unfiltered (fp, " %s",
12485 event_location_to_string (tp->location.get ()));
12487 /* Print out extra_string if this breakpoint is pending. It might
12488 contain, for example, conditions that were set by the user. */
12489 if (tp->loc == NULL && tp->extra_string != NULL)
12490 fprintf_unfiltered (fp, " %s", tp->extra_string);
12492 print_recreate_thread (tp, fp);
12496 bkpt_create_sals_from_location (const struct event_location *location,
12497 struct linespec_result *canonical,
12498 enum bptype type_wanted)
12500 create_sals_from_location_default (location, canonical, type_wanted);
12504 bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
12505 struct linespec_result *canonical,
12506 gdb::unique_xmalloc_ptr<char> cond_string,
12507 gdb::unique_xmalloc_ptr<char> extra_string,
12508 enum bptype type_wanted,
12509 enum bpdisp disposition,
12511 int task, int ignore_count,
12512 const struct breakpoint_ops *ops,
12513 int from_tty, int enabled,
12514 int internal, unsigned flags)
12516 create_breakpoints_sal_default (gdbarch, canonical,
12517 std::move (cond_string),
12518 std::move (extra_string),
12520 disposition, thread, task,
12521 ignore_count, ops, from_tty,
12522 enabled, internal, flags);
12525 static std::vector<symtab_and_line>
12526 bkpt_decode_location (struct breakpoint *b,
12527 const struct event_location *location,
12528 struct program_space *search_pspace)
12530 return decode_location_default (b, location, search_pspace);
12533 /* Virtual table for internal breakpoints. */
12536 internal_bkpt_re_set (struct breakpoint *b)
12540 /* Delete overlay event and longjmp master breakpoints; they
12541 will be reset later by breakpoint_re_set. */
12542 case bp_overlay_event:
12543 case bp_longjmp_master:
12544 case bp_std_terminate_master:
12545 case bp_exception_master:
12546 delete_breakpoint (b);
12549 /* This breakpoint is special, it's set up when the inferior
12550 starts and we really don't want to touch it. */
12551 case bp_shlib_event:
12553 /* Like bp_shlib_event, this breakpoint type is special. Once
12554 it is set up, we do not want to touch it. */
12555 case bp_thread_event:
12561 internal_bkpt_check_status (bpstat bs)
12563 if (bs->breakpoint_at->type == bp_shlib_event)
12565 /* If requested, stop when the dynamic linker notifies GDB of
12566 events. This allows the user to get control and place
12567 breakpoints in initializer routines for dynamically loaded
12568 objects (among other things). */
12569 bs->stop = stop_on_solib_events;
12570 bs->print = stop_on_solib_events;
12576 static enum print_stop_action
12577 internal_bkpt_print_it (bpstat bs)
12579 struct breakpoint *b;
12581 b = bs->breakpoint_at;
12585 case bp_shlib_event:
12586 /* Did we stop because the user set the stop_on_solib_events
12587 variable? (If so, we report this as a generic, "Stopped due
12588 to shlib event" message.) */
12589 print_solib_event (0);
12592 case bp_thread_event:
12593 /* Not sure how we will get here.
12594 GDB should not stop for these breakpoints. */
12595 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
12598 case bp_overlay_event:
12599 /* By analogy with the thread event, GDB should not stop for these. */
12600 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
12603 case bp_longjmp_master:
12604 /* These should never be enabled. */
12605 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
12608 case bp_std_terminate_master:
12609 /* These should never be enabled. */
12610 printf_filtered (_("std::terminate Master Breakpoint: "
12611 "gdb should not stop!\n"));
12614 case bp_exception_master:
12615 /* These should never be enabled. */
12616 printf_filtered (_("Exception Master Breakpoint: "
12617 "gdb should not stop!\n"));
12621 return PRINT_NOTHING;
12625 internal_bkpt_print_mention (struct breakpoint *b)
12627 /* Nothing to mention. These breakpoints are internal. */
12630 /* Virtual table for momentary breakpoints */
12633 momentary_bkpt_re_set (struct breakpoint *b)
12635 /* Keep temporary breakpoints, which can be encountered when we step
12636 over a dlopen call and solib_add is resetting the breakpoints.
12637 Otherwise these should have been blown away via the cleanup chain
12638 or by breakpoint_init_inferior when we rerun the executable. */
12642 momentary_bkpt_check_status (bpstat bs)
12644 /* Nothing. The point of these breakpoints is causing a stop. */
12647 static enum print_stop_action
12648 momentary_bkpt_print_it (bpstat bs)
12650 return PRINT_UNKNOWN;
12654 momentary_bkpt_print_mention (struct breakpoint *b)
12656 /* Nothing to mention. These breakpoints are internal. */
12659 /* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
12661 It gets cleared already on the removal of the first one of such placed
12662 breakpoints. This is OK as they get all removed altogether. */
12664 longjmp_breakpoint::~longjmp_breakpoint ()
12666 thread_info *tp = find_thread_global_id (this->thread);
12669 tp->initiating_frame = null_frame_id;
12672 /* Specific methods for probe breakpoints. */
12675 bkpt_probe_insert_location (struct bp_location *bl)
12677 int v = bkpt_insert_location (bl);
12681 /* The insertion was successful, now let's set the probe's semaphore
12683 bl->probe.prob->set_semaphore (bl->probe.objfile, bl->gdbarch);
12690 bkpt_probe_remove_location (struct bp_location *bl,
12691 enum remove_bp_reason reason)
12693 /* Let's clear the semaphore before removing the location. */
12694 bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch);
12696 return bkpt_remove_location (bl, reason);
12700 bkpt_probe_create_sals_from_location (const struct event_location *location,
12701 struct linespec_result *canonical,
12702 enum bptype type_wanted)
12704 struct linespec_sals lsal;
12706 lsal.sals = parse_probes (location, NULL, canonical);
12708 = xstrdup (event_location_to_string (canonical->location.get ()));
12709 canonical->lsals.push_back (std::move (lsal));
12712 static std::vector<symtab_and_line>
12713 bkpt_probe_decode_location (struct breakpoint *b,
12714 const struct event_location *location,
12715 struct program_space *search_pspace)
12717 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL);
12719 error (_("probe not found"));
12723 /* The breakpoint_ops structure to be used in tracepoints. */
12726 tracepoint_re_set (struct breakpoint *b)
12728 breakpoint_re_set_default (b);
12732 tracepoint_breakpoint_hit (const struct bp_location *bl,
12733 const address_space *aspace, CORE_ADDR bp_addr,
12734 const struct target_waitstatus *ws)
12736 /* By definition, the inferior does not report stops at
12742 tracepoint_print_one_detail (const struct breakpoint *self,
12743 struct ui_out *uiout)
12745 struct tracepoint *tp = (struct tracepoint *) self;
12746 if (!tp->static_trace_marker_id.empty ())
12748 gdb_assert (self->type == bp_static_tracepoint);
12750 uiout->text ("\tmarker id is ");
12751 uiout->field_string ("static-tracepoint-marker-string-id",
12752 tp->static_trace_marker_id);
12753 uiout->text ("\n");
12758 tracepoint_print_mention (struct breakpoint *b)
12760 if (current_uiout->is_mi_like_p ())
12765 case bp_tracepoint:
12766 printf_filtered (_("Tracepoint"));
12767 printf_filtered (_(" %d"), b->number);
12769 case bp_fast_tracepoint:
12770 printf_filtered (_("Fast tracepoint"));
12771 printf_filtered (_(" %d"), b->number);
12773 case bp_static_tracepoint:
12774 printf_filtered (_("Static tracepoint"));
12775 printf_filtered (_(" %d"), b->number);
12778 internal_error (__FILE__, __LINE__,
12779 _("unhandled tracepoint type %d"), (int) b->type);
12786 tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
12788 struct tracepoint *tp = (struct tracepoint *) self;
12790 if (self->type == bp_fast_tracepoint)
12791 fprintf_unfiltered (fp, "ftrace");
12792 else if (self->type == bp_static_tracepoint)
12793 fprintf_unfiltered (fp, "strace");
12794 else if (self->type == bp_tracepoint)
12795 fprintf_unfiltered (fp, "trace");
12797 internal_error (__FILE__, __LINE__,
12798 _("unhandled tracepoint type %d"), (int) self->type);
12800 fprintf_unfiltered (fp, " %s",
12801 event_location_to_string (self->location.get ()));
12802 print_recreate_thread (self, fp);
12804 if (tp->pass_count)
12805 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
12809 tracepoint_create_sals_from_location (const struct event_location *location,
12810 struct linespec_result *canonical,
12811 enum bptype type_wanted)
12813 create_sals_from_location_default (location, canonical, type_wanted);
12817 tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12818 struct linespec_result *canonical,
12819 gdb::unique_xmalloc_ptr<char> cond_string,
12820 gdb::unique_xmalloc_ptr<char> extra_string,
12821 enum bptype type_wanted,
12822 enum bpdisp disposition,
12824 int task, int ignore_count,
12825 const struct breakpoint_ops *ops,
12826 int from_tty, int enabled,
12827 int internal, unsigned flags)
12829 create_breakpoints_sal_default (gdbarch, canonical,
12830 std::move (cond_string),
12831 std::move (extra_string),
12833 disposition, thread, task,
12834 ignore_count, ops, from_tty,
12835 enabled, internal, flags);
12838 static std::vector<symtab_and_line>
12839 tracepoint_decode_location (struct breakpoint *b,
12840 const struct event_location *location,
12841 struct program_space *search_pspace)
12843 return decode_location_default (b, location, search_pspace);
12846 struct breakpoint_ops tracepoint_breakpoint_ops;
12848 /* The breakpoint_ops structure to be use on tracepoints placed in a
12852 tracepoint_probe_create_sals_from_location
12853 (const struct event_location *location,
12854 struct linespec_result *canonical,
12855 enum bptype type_wanted)
12857 /* We use the same method for breakpoint on probes. */
12858 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
12861 static std::vector<symtab_and_line>
12862 tracepoint_probe_decode_location (struct breakpoint *b,
12863 const struct event_location *location,
12864 struct program_space *search_pspace)
12866 /* We use the same method for breakpoint on probes. */
12867 return bkpt_probe_decode_location (b, location, search_pspace);
12870 static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
12872 /* Dprintf breakpoint_ops methods. */
12875 dprintf_re_set (struct breakpoint *b)
12877 breakpoint_re_set_default (b);
12879 /* extra_string should never be non-NULL for dprintf. */
12880 gdb_assert (b->extra_string != NULL);
12882 /* 1 - connect to target 1, that can run breakpoint commands.
12883 2 - create a dprintf, which resolves fine.
12884 3 - disconnect from target 1
12885 4 - connect to target 2, that can NOT run breakpoint commands.
12887 After steps #3/#4, you'll want the dprintf command list to
12888 be updated, because target 1 and 2 may well return different
12889 answers for target_can_run_breakpoint_commands().
12890 Given absence of finer grained resetting, we get to do
12891 it all the time. */
12892 if (b->extra_string != NULL)
12893 update_dprintf_command_list (b);
12896 /* Implement the "print_recreate" breakpoint_ops method for dprintf. */
12899 dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12901 fprintf_unfiltered (fp, "dprintf %s,%s",
12902 event_location_to_string (tp->location.get ()),
12904 print_recreate_thread (tp, fp);
12907 /* Implement the "after_condition_true" breakpoint_ops method for
12910 dprintf's are implemented with regular commands in their command
12911 list, but we run the commands here instead of before presenting the
12912 stop to the user, as dprintf's don't actually cause a stop. This
12913 also makes it so that the commands of multiple dprintfs at the same
12914 address are all handled. */
12917 dprintf_after_condition_true (struct bpstats *bs)
12919 struct bpstats tmp_bs;
12920 struct bpstats *tmp_bs_p = &tmp_bs;
12922 /* dprintf's never cause a stop. This wasn't set in the
12923 check_status hook instead because that would make the dprintf's
12924 condition not be evaluated. */
12927 /* Run the command list here. Take ownership of it instead of
12928 copying. We never want these commands to run later in
12929 bpstat_do_actions, if a breakpoint that causes a stop happens to
12930 be set at same address as this dprintf, or even if running the
12931 commands here throws. */
12932 tmp_bs.commands = bs->commands;
12933 bs->commands = NULL;
12935 bpstat_do_actions_1 (&tmp_bs_p);
12937 /* 'tmp_bs.commands' will usually be NULL by now, but
12938 bpstat_do_actions_1 may return early without processing the whole
12942 /* The breakpoint_ops structure to be used on static tracepoints with
12946 strace_marker_create_sals_from_location (const struct event_location *location,
12947 struct linespec_result *canonical,
12948 enum bptype type_wanted)
12950 struct linespec_sals lsal;
12951 const char *arg_start, *arg;
12953 arg = arg_start = get_linespec_location (location)->spec_string;
12954 lsal.sals = decode_static_tracepoint_spec (&arg);
12956 std::string str (arg_start, arg - arg_start);
12957 const char *ptr = str.c_str ();
12958 canonical->location
12959 = new_linespec_location (&ptr, symbol_name_match_type::FULL);
12962 = xstrdup (event_location_to_string (canonical->location.get ()));
12963 canonical->lsals.push_back (std::move (lsal));
12967 strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
12968 struct linespec_result *canonical,
12969 gdb::unique_xmalloc_ptr<char> cond_string,
12970 gdb::unique_xmalloc_ptr<char> extra_string,
12971 enum bptype type_wanted,
12972 enum bpdisp disposition,
12974 int task, int ignore_count,
12975 const struct breakpoint_ops *ops,
12976 int from_tty, int enabled,
12977 int internal, unsigned flags)
12979 const linespec_sals &lsal = canonical->lsals[0];
12981 /* If the user is creating a static tracepoint by marker id
12982 (strace -m MARKER_ID), then store the sals index, so that
12983 breakpoint_re_set can try to match up which of the newly
12984 found markers corresponds to this one, and, don't try to
12985 expand multiple locations for each sal, given than SALS
12986 already should contain all sals for MARKER_ID. */
12988 for (size_t i = 0; i < lsal.sals.size (); i++)
12990 event_location_up location
12991 = copy_event_location (canonical->location.get ());
12993 std::unique_ptr<tracepoint> tp (new tracepoint ());
12994 init_breakpoint_sal (tp.get (), gdbarch, lsal.sals[i],
12995 std::move (location), NULL,
12996 std::move (cond_string),
12997 std::move (extra_string),
12998 type_wanted, disposition,
12999 thread, task, ignore_count, ops,
13000 from_tty, enabled, internal, flags,
13001 canonical->special_display);
13002 /* Given that its possible to have multiple markers with
13003 the same string id, if the user is creating a static
13004 tracepoint by marker id ("strace -m MARKER_ID"), then
13005 store the sals index, so that breakpoint_re_set can
13006 try to match up which of the newly found markers
13007 corresponds to this one */
13008 tp->static_trace_marker_id_idx = i;
13010 install_breakpoint (internal, std::move (tp), 0);
13014 static std::vector<symtab_and_line>
13015 strace_marker_decode_location (struct breakpoint *b,
13016 const struct event_location *location,
13017 struct program_space *search_pspace)
13019 struct tracepoint *tp = (struct tracepoint *) b;
13020 const char *s = get_linespec_location (location)->spec_string;
13022 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s);
13023 if (sals.size () > tp->static_trace_marker_id_idx)
13025 sals[0] = sals[tp->static_trace_marker_id_idx];
13030 error (_("marker %s not found"), tp->static_trace_marker_id.c_str ());
13033 static struct breakpoint_ops strace_marker_breakpoint_ops;
13036 strace_marker_p (struct breakpoint *b)
13038 return b->ops == &strace_marker_breakpoint_ops;
13041 /* Delete a breakpoint and clean up all traces of it in the data
13045 delete_breakpoint (struct breakpoint *bpt)
13047 struct breakpoint *b;
13049 gdb_assert (bpt != NULL);
13051 /* Has this bp already been deleted? This can happen because
13052 multiple lists can hold pointers to bp's. bpstat lists are
13055 One example of this happening is a watchpoint's scope bp. When
13056 the scope bp triggers, we notice that the watchpoint is out of
13057 scope, and delete it. We also delete its scope bp. But the
13058 scope bp is marked "auto-deleting", and is already on a bpstat.
13059 That bpstat is then checked for auto-deleting bp's, which are
13062 A real solution to this problem might involve reference counts in
13063 bp's, and/or giving them pointers back to their referencing
13064 bpstat's, and teaching delete_breakpoint to only free a bp's
13065 storage when no more references were extent. A cheaper bandaid
13067 if (bpt->type == bp_none)
13070 /* At least avoid this stale reference until the reference counting
13071 of breakpoints gets resolved. */
13072 if (bpt->related_breakpoint != bpt)
13074 struct breakpoint *related;
13075 struct watchpoint *w;
13077 if (bpt->type == bp_watchpoint_scope)
13078 w = (struct watchpoint *) bpt->related_breakpoint;
13079 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
13080 w = (struct watchpoint *) bpt;
13084 watchpoint_del_at_next_stop (w);
13086 /* Unlink bpt from the bpt->related_breakpoint ring. */
13087 for (related = bpt; related->related_breakpoint != bpt;
13088 related = related->related_breakpoint);
13089 related->related_breakpoint = bpt->related_breakpoint;
13090 bpt->related_breakpoint = bpt;
13093 /* watch_command_1 creates a watchpoint but only sets its number if
13094 update_watchpoint succeeds in creating its bp_locations. If there's
13095 a problem in that process, we'll be asked to delete the half-created
13096 watchpoint. In that case, don't announce the deletion. */
13098 gdb::observers::breakpoint_deleted.notify (bpt);
13100 if (breakpoint_chain == bpt)
13101 breakpoint_chain = bpt->next;
13103 ALL_BREAKPOINTS (b)
13104 if (b->next == bpt)
13106 b->next = bpt->next;
13110 /* Be sure no bpstat's are pointing at the breakpoint after it's
13112 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
13113 in all threads for now. Note that we cannot just remove bpstats
13114 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13115 commands are associated with the bpstat; if we remove it here,
13116 then the later call to bpstat_do_actions (&stop_bpstat); in
13117 event-top.c won't do anything, and temporary breakpoints with
13118 commands won't work. */
13120 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13122 /* Now that breakpoint is removed from breakpoint list, update the
13123 global location list. This will remove locations that used to
13124 belong to this breakpoint. Do this before freeing the breakpoint
13125 itself, since remove_breakpoint looks at location's owner. It
13126 might be better design to have location completely
13127 self-contained, but it's not the case now. */
13128 update_global_location_list (UGLL_DONT_INSERT);
13130 /* On the chance that someone will soon try again to delete this
13131 same bp, we mark it as deleted before freeing its storage. */
13132 bpt->type = bp_none;
13136 /* Iterator function to call a user-provided callback function once
13137 for each of B and its related breakpoints. */
13140 iterate_over_related_breakpoints (struct breakpoint *b,
13141 gdb::function_view<void (breakpoint *)> function)
13143 struct breakpoint *related;
13148 struct breakpoint *next;
13150 /* FUNCTION may delete RELATED. */
13151 next = related->related_breakpoint;
13153 if (next == related)
13155 /* RELATED is the last ring entry. */
13156 function (related);
13158 /* FUNCTION may have deleted it, so we'd never reach back to
13159 B. There's nothing left to do anyway, so just break
13164 function (related);
13168 while (related != b);
13172 delete_command (const char *arg, int from_tty)
13174 struct breakpoint *b, *b_tmp;
13180 int breaks_to_delete = 0;
13182 /* Delete all breakpoints if no argument. Do not delete
13183 internal breakpoints, these have to be deleted with an
13184 explicit breakpoint number argument. */
13185 ALL_BREAKPOINTS (b)
13186 if (user_breakpoint_p (b))
13188 breaks_to_delete = 1;
13192 /* Ask user only if there are some breakpoints to delete. */
13194 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
13196 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13197 if (user_breakpoint_p (b))
13198 delete_breakpoint (b);
13202 map_breakpoint_numbers
13203 (arg, [&] (breakpoint *br)
13205 iterate_over_related_breakpoints (br, delete_breakpoint);
13209 /* Return true if all locations of B bound to PSPACE are pending. If
13210 PSPACE is NULL, all locations of all program spaces are
13214 all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
13216 struct bp_location *loc;
13218 for (loc = b->loc; loc != NULL; loc = loc->next)
13219 if ((pspace == NULL
13220 || loc->pspace == pspace)
13221 && !loc->shlib_disabled
13222 && !loc->pspace->executing_startup)
13227 /* Subroutine of update_breakpoint_locations to simplify it.
13228 Return non-zero if multiple fns in list LOC have the same name.
13229 Null names are ignored. */
13232 ambiguous_names_p (struct bp_location *loc)
13234 struct bp_location *l;
13235 htab_t htab = htab_create_alloc (13, htab_hash_string, streq_hash, NULL,
13238 for (l = loc; l != NULL; l = l->next)
13241 const char *name = l->function_name;
13243 /* Allow for some names to be NULL, ignore them. */
13247 slot = (const char **) htab_find_slot (htab, (const void *) name,
13249 /* NOTE: We can assume slot != NULL here because xcalloc never
13253 htab_delete (htab);
13259 htab_delete (htab);
13263 /* When symbols change, it probably means the sources changed as well,
13264 and it might mean the static tracepoint markers are no longer at
13265 the same address or line numbers they used to be at last we
13266 checked. Losing your static tracepoints whenever you rebuild is
13267 undesirable. This function tries to resync/rematch gdb static
13268 tracepoints with the markers on the target, for static tracepoints
13269 that have not been set by marker id. Static tracepoint that have
13270 been set by marker id are reset by marker id in breakpoint_re_set.
13273 1) For a tracepoint set at a specific address, look for a marker at
13274 the old PC. If one is found there, assume to be the same marker.
13275 If the name / string id of the marker found is different from the
13276 previous known name, assume that means the user renamed the marker
13277 in the sources, and output a warning.
13279 2) For a tracepoint set at a given line number, look for a marker
13280 at the new address of the old line number. If one is found there,
13281 assume to be the same marker. If the name / string id of the
13282 marker found is different from the previous known name, assume that
13283 means the user renamed the marker in the sources, and output a
13286 3) If a marker is no longer found at the same address or line, it
13287 may mean the marker no longer exists. But it may also just mean
13288 the code changed a bit. Maybe the user added a few lines of code
13289 that made the marker move up or down (in line number terms). Ask
13290 the target for info about the marker with the string id as we knew
13291 it. If found, update line number and address in the matching
13292 static tracepoint. This will get confused if there's more than one
13293 marker with the same ID (possible in UST, although unadvised
13294 precisely because it confuses tools). */
13296 static struct symtab_and_line
13297 update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13299 struct tracepoint *tp = (struct tracepoint *) b;
13300 struct static_tracepoint_marker marker;
13305 find_line_pc (sal.symtab, sal.line, &pc);
13307 if (target_static_tracepoint_marker_at (pc, &marker))
13309 if (tp->static_trace_marker_id != marker.str_id)
13310 warning (_("static tracepoint %d changed probed marker from %s to %s"),
13311 b->number, tp->static_trace_marker_id.c_str (),
13312 marker.str_id.c_str ());
13314 tp->static_trace_marker_id = std::move (marker.str_id);
13319 /* Old marker wasn't found on target at lineno. Try looking it up
13321 if (!sal.explicit_pc
13323 && sal.symtab != NULL
13324 && !tp->static_trace_marker_id.empty ())
13326 std::vector<static_tracepoint_marker> markers
13327 = target_static_tracepoint_markers_by_strid
13328 (tp->static_trace_marker_id.c_str ());
13330 if (!markers.empty ())
13332 struct symbol *sym;
13333 struct static_tracepoint_marker *tpmarker;
13334 struct ui_out *uiout = current_uiout;
13335 struct explicit_location explicit_loc;
13337 tpmarker = &markers[0];
13339 tp->static_trace_marker_id = std::move (tpmarker->str_id);
13341 warning (_("marker for static tracepoint %d (%s) not "
13342 "found at previous line number"),
13343 b->number, tp->static_trace_marker_id.c_str ());
13345 symtab_and_line sal2 = find_pc_line (tpmarker->address, 0);
13346 sym = find_pc_sect_function (tpmarker->address, NULL);
13347 uiout->text ("Now in ");
13350 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym),
13351 ui_out_style_kind::FUNCTION);
13352 uiout->text (" at ");
13354 uiout->field_string ("file",
13355 symtab_to_filename_for_display (sal2.symtab),
13356 ui_out_style_kind::FILE);
13359 if (uiout->is_mi_like_p ())
13361 const char *fullname = symtab_to_fullname (sal2.symtab);
13363 uiout->field_string ("fullname", fullname);
13366 uiout->field_int ("line", sal2.line);
13367 uiout->text ("\n");
13369 b->loc->line_number = sal2.line;
13370 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
13372 b->location.reset (NULL);
13373 initialize_explicit_location (&explicit_loc);
13374 explicit_loc.source_filename
13375 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
13376 explicit_loc.line_offset.offset = b->loc->line_number;
13377 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
13378 b->location = new_explicit_location (&explicit_loc);
13380 /* Might be nice to check if function changed, and warn if
13387 /* Returns 1 iff locations A and B are sufficiently same that
13388 we don't need to report breakpoint as changed. */
13391 locations_are_equal (struct bp_location *a, struct bp_location *b)
13395 if (a->address != b->address)
13398 if (a->shlib_disabled != b->shlib_disabled)
13401 if (a->enabled != b->enabled)
13408 if ((a == NULL) != (b == NULL))
13414 /* Split all locations of B that are bound to PSPACE out of B's
13415 location list to a separate list and return that list's head. If
13416 PSPACE is NULL, hoist out all locations of B. */
13418 static struct bp_location *
13419 hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
13421 struct bp_location head;
13422 struct bp_location *i = b->loc;
13423 struct bp_location **i_link = &b->loc;
13424 struct bp_location *hoisted = &head;
13426 if (pspace == NULL)
13437 if (i->pspace == pspace)
13452 /* Create new breakpoint locations for B (a hardware or software
13453 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
13454 zero, then B is a ranged breakpoint. Only recreates locations for
13455 FILTER_PSPACE. Locations of other program spaces are left
13459 update_breakpoint_locations (struct breakpoint *b,
13460 struct program_space *filter_pspace,
13461 gdb::array_view<const symtab_and_line> sals,
13462 gdb::array_view<const symtab_and_line> sals_end)
13464 struct bp_location *existing_locations;
13466 if (!sals_end.empty () && (sals.size () != 1 || sals_end.size () != 1))
13468 /* Ranged breakpoints have only one start location and one end
13470 b->enable_state = bp_disabled;
13471 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
13472 "multiple locations found\n"),
13477 /* If there's no new locations, and all existing locations are
13478 pending, don't do anything. This optimizes the common case where
13479 all locations are in the same shared library, that was unloaded.
13480 We'd like to retain the location, so that when the library is
13481 loaded again, we don't loose the enabled/disabled status of the
13482 individual locations. */
13483 if (all_locations_are_pending (b, filter_pspace) && sals.empty ())
13486 existing_locations = hoist_existing_locations (b, filter_pspace);
13488 for (const auto &sal : sals)
13490 struct bp_location *new_loc;
13492 switch_to_program_space_and_thread (sal.pspace);
13494 new_loc = add_location_to_breakpoint (b, &sal);
13496 /* Reparse conditions, they might contain references to the
13498 if (b->cond_string != NULL)
13502 s = b->cond_string;
13505 new_loc->cond = parse_exp_1 (&s, sal.pc,
13506 block_for_pc (sal.pc),
13509 catch (const gdb_exception_error &e)
13511 warning (_("failed to reevaluate condition "
13512 "for breakpoint %d: %s"),
13513 b->number, e.what ());
13514 new_loc->enabled = 0;
13518 if (!sals_end.empty ())
13520 CORE_ADDR end = find_breakpoint_range_end (sals_end[0]);
13522 new_loc->length = end - sals[0].pc + 1;
13526 /* If possible, carry over 'disable' status from existing
13529 struct bp_location *e = existing_locations;
13530 /* If there are multiple breakpoints with the same function name,
13531 e.g. for inline functions, comparing function names won't work.
13532 Instead compare pc addresses; this is just a heuristic as things
13533 may have moved, but in practice it gives the correct answer
13534 often enough until a better solution is found. */
13535 int have_ambiguous_names = ambiguous_names_p (b->loc);
13537 for (; e; e = e->next)
13539 if (!e->enabled && e->function_name)
13541 struct bp_location *l = b->loc;
13542 if (have_ambiguous_names)
13544 for (; l; l = l->next)
13545 if (breakpoint_locations_match (e, l))
13553 for (; l; l = l->next)
13554 if (l->function_name
13555 && strcmp (e->function_name, l->function_name) == 0)
13565 if (!locations_are_equal (existing_locations, b->loc))
13566 gdb::observers::breakpoint_modified.notify (b);
13569 /* Find the SaL locations corresponding to the given LOCATION.
13570 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
13572 static std::vector<symtab_and_line>
13573 location_to_sals (struct breakpoint *b, struct event_location *location,
13574 struct program_space *search_pspace, int *found)
13576 struct gdb_exception exception;
13578 gdb_assert (b->ops != NULL);
13580 std::vector<symtab_and_line> sals;
13584 sals = b->ops->decode_location (b, location, search_pspace);
13586 catch (gdb_exception_error &e)
13588 int not_found_and_ok = 0;
13590 /* For pending breakpoints, it's expected that parsing will
13591 fail until the right shared library is loaded. User has
13592 already told to create pending breakpoints and don't need
13593 extra messages. If breakpoint is in bp_shlib_disabled
13594 state, then user already saw the message about that
13595 breakpoint being disabled, and don't want to see more
13597 if (e.error == NOT_FOUND_ERROR
13598 && (b->condition_not_parsed
13600 && search_pspace != NULL
13601 && b->loc->pspace != search_pspace)
13602 || (b->loc && b->loc->shlib_disabled)
13603 || (b->loc && b->loc->pspace->executing_startup)
13604 || b->enable_state == bp_disabled))
13605 not_found_and_ok = 1;
13607 if (!not_found_and_ok)
13609 /* We surely don't want to warn about the same breakpoint
13610 10 times. One solution, implemented here, is disable
13611 the breakpoint on error. Another solution would be to
13612 have separate 'warning emitted' flag. Since this
13613 happens only when a binary has changed, I don't know
13614 which approach is better. */
13615 b->enable_state = bp_disabled;
13619 exception = std::move (e);
13622 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
13624 for (auto &sal : sals)
13625 resolve_sal_pc (&sal);
13626 if (b->condition_not_parsed && b->extra_string != NULL)
13628 char *cond_string, *extra_string;
13631 find_condition_and_thread (b->extra_string, sals[0].pc,
13632 &cond_string, &thread, &task,
13634 gdb_assert (b->cond_string == NULL);
13636 b->cond_string = cond_string;
13637 b->thread = thread;
13641 xfree (b->extra_string);
13642 b->extra_string = extra_string;
13644 b->condition_not_parsed = 0;
13647 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
13648 sals[0] = update_static_tracepoint (b, sals[0]);
13658 /* The default re_set method, for typical hardware or software
13659 breakpoints. Reevaluate the breakpoint and recreate its
13663 breakpoint_re_set_default (struct breakpoint *b)
13665 struct program_space *filter_pspace = current_program_space;
13666 std::vector<symtab_and_line> expanded, expanded_end;
13669 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (),
13670 filter_pspace, &found);
13672 expanded = std::move (sals);
13674 if (b->location_range_end != NULL)
13676 std::vector<symtab_and_line> sals_end
13677 = location_to_sals (b, b->location_range_end.get (),
13678 filter_pspace, &found);
13680 expanded_end = std::move (sals_end);
13683 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
13686 /* Default method for creating SALs from an address string. It basically
13687 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
13690 create_sals_from_location_default (const struct event_location *location,
13691 struct linespec_result *canonical,
13692 enum bptype type_wanted)
13694 parse_breakpoint_sals (location, canonical);
13697 /* Call create_breakpoints_sal for the given arguments. This is the default
13698 function for the `create_breakpoints_sal' method of
13702 create_breakpoints_sal_default (struct gdbarch *gdbarch,
13703 struct linespec_result *canonical,
13704 gdb::unique_xmalloc_ptr<char> cond_string,
13705 gdb::unique_xmalloc_ptr<char> extra_string,
13706 enum bptype type_wanted,
13707 enum bpdisp disposition,
13709 int task, int ignore_count,
13710 const struct breakpoint_ops *ops,
13711 int from_tty, int enabled,
13712 int internal, unsigned flags)
13714 create_breakpoints_sal (gdbarch, canonical,
13715 std::move (cond_string),
13716 std::move (extra_string),
13717 type_wanted, disposition,
13718 thread, task, ignore_count, ops, from_tty,
13719 enabled, internal, flags);
13722 /* Decode the line represented by S by calling decode_line_full. This is the
13723 default function for the `decode_location' method of breakpoint_ops. */
13725 static std::vector<symtab_and_line>
13726 decode_location_default (struct breakpoint *b,
13727 const struct event_location *location,
13728 struct program_space *search_pspace)
13730 struct linespec_result canonical;
13732 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
13733 NULL, 0, &canonical, multiple_symbols_all,
13736 /* We should get 0 or 1 resulting SALs. */
13737 gdb_assert (canonical.lsals.size () < 2);
13739 if (!canonical.lsals.empty ())
13741 const linespec_sals &lsal = canonical.lsals[0];
13742 return std::move (lsal.sals);
13747 /* Reset a breakpoint. */
13750 breakpoint_re_set_one (breakpoint *b)
13752 input_radix = b->input_radix;
13753 set_language (b->language);
13755 b->ops->re_set (b);
13758 /* Re-set breakpoint locations for the current program space.
13759 Locations bound to other program spaces are left untouched. */
13762 breakpoint_re_set (void)
13764 struct breakpoint *b, *b_tmp;
13767 scoped_restore_current_language save_language;
13768 scoped_restore save_input_radix = make_scoped_restore (&input_radix);
13769 scoped_restore_current_pspace_and_thread restore_pspace_thread;
13771 /* breakpoint_re_set_one sets the current_language to the language
13772 of the breakpoint it is resetting (see prepare_re_set_context)
13773 before re-evaluating the breakpoint's location. This change can
13774 unfortunately get undone by accident if the language_mode is set
13775 to auto, and we either switch frames, or more likely in this context,
13776 we select the current frame.
13778 We prevent this by temporarily turning the language_mode to
13779 language_mode_manual. We restore it once all breakpoints
13780 have been reset. */
13781 scoped_restore save_language_mode = make_scoped_restore (&language_mode);
13782 language_mode = language_mode_manual;
13784 /* Note: we must not try to insert locations until after all
13785 breakpoints have been re-set. Otherwise, e.g., when re-setting
13786 breakpoint 1, we'd insert the locations of breakpoint 2, which
13787 hadn't been re-set yet, and thus may have stale locations. */
13789 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13793 breakpoint_re_set_one (b);
13795 catch (const gdb_exception &ex)
13797 exception_fprintf (gdb_stderr, ex,
13798 "Error in re-setting breakpoint %d: ",
13803 jit_breakpoint_re_set ();
13806 create_overlay_event_breakpoint ();
13807 create_longjmp_master_breakpoint ();
13808 create_std_terminate_master_breakpoint ();
13809 create_exception_master_breakpoint ();
13811 /* Now we can insert. */
13812 update_global_location_list (UGLL_MAY_INSERT);
13815 /* Reset the thread number of this breakpoint:
13817 - If the breakpoint is for all threads, leave it as-is.
13818 - Else, reset it to the current thread for inferior_ptid. */
13820 breakpoint_re_set_thread (struct breakpoint *b)
13822 if (b->thread != -1)
13824 b->thread = inferior_thread ()->global_num;
13826 /* We're being called after following a fork. The new fork is
13827 selected as current, and unless this was a vfork will have a
13828 different program space from the original thread. Reset that
13830 b->loc->pspace = current_program_space;
13834 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
13835 If from_tty is nonzero, it prints a message to that effect,
13836 which ends with a period (no newline). */
13839 set_ignore_count (int bptnum, int count, int from_tty)
13841 struct breakpoint *b;
13846 ALL_BREAKPOINTS (b)
13847 if (b->number == bptnum)
13849 if (is_tracepoint (b))
13851 if (from_tty && count != 0)
13852 printf_filtered (_("Ignore count ignored for tracepoint %d."),
13857 b->ignore_count = count;
13861 printf_filtered (_("Will stop next time "
13862 "breakpoint %d is reached."),
13864 else if (count == 1)
13865 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
13868 printf_filtered (_("Will ignore next %d "
13869 "crossings of breakpoint %d."),
13872 gdb::observers::breakpoint_modified.notify (b);
13876 error (_("No breakpoint number %d."), bptnum);
13879 /* Command to set ignore-count of breakpoint N to COUNT. */
13882 ignore_command (const char *args, int from_tty)
13884 const char *p = args;
13888 error_no_arg (_("a breakpoint number"));
13890 num = get_number (&p);
13892 error (_("bad breakpoint number: '%s'"), args);
13894 error (_("Second argument (specified ignore-count) is missing."));
13896 set_ignore_count (num,
13897 longest_to_int (value_as_long (parse_and_eval (p))),
13900 printf_filtered ("\n");
13904 /* Call FUNCTION on each of the breakpoints with numbers in the range
13905 defined by BP_NUM_RANGE (an inclusive range). */
13908 map_breakpoint_number_range (std::pair<int, int> bp_num_range,
13909 gdb::function_view<void (breakpoint *)> function)
13911 if (bp_num_range.first == 0)
13913 warning (_("bad breakpoint number at or near '%d'"),
13914 bp_num_range.first);
13918 struct breakpoint *b, *tmp;
13920 for (int i = bp_num_range.first; i <= bp_num_range.second; i++)
13922 bool match = false;
13924 ALL_BREAKPOINTS_SAFE (b, tmp)
13925 if (b->number == i)
13932 printf_unfiltered (_("No breakpoint number %d.\n"), i);
13937 /* Call FUNCTION on each of the breakpoints whose numbers are given in
13941 map_breakpoint_numbers (const char *args,
13942 gdb::function_view<void (breakpoint *)> function)
13944 if (args == NULL || *args == '\0')
13945 error_no_arg (_("one or more breakpoint numbers"));
13947 number_or_range_parser parser (args);
13949 while (!parser.finished ())
13951 int num = parser.get_number ();
13952 map_breakpoint_number_range (std::make_pair (num, num), function);
13956 /* Return the breakpoint location structure corresponding to the
13957 BP_NUM and LOC_NUM values. */
13959 static struct bp_location *
13960 find_location_by_number (int bp_num, int loc_num)
13962 struct breakpoint *b;
13964 ALL_BREAKPOINTS (b)
13965 if (b->number == bp_num)
13970 if (!b || b->number != bp_num)
13971 error (_("Bad breakpoint number '%d'"), bp_num);
13974 error (_("Bad breakpoint location number '%d'"), loc_num);
13977 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next)
13978 if (++n == loc_num)
13981 error (_("Bad breakpoint location number '%d'"), loc_num);
13984 /* Modes of operation for extract_bp_num. */
13985 enum class extract_bp_kind
13987 /* Extracting a breakpoint number. */
13990 /* Extracting a location number. */
13994 /* Extract a breakpoint or location number (as determined by KIND)
13995 from the string starting at START. TRAILER is a character which
13996 can be found after the number. If you don't want a trailer, use
13997 '\0'. If END_OUT is not NULL, it is set to point after the parsed
13998 string. This always returns a positive integer. */
14001 extract_bp_num (extract_bp_kind kind, const char *start,
14002 int trailer, const char **end_out = NULL)
14004 const char *end = start;
14005 int num = get_number_trailer (&end, trailer);
14007 error (kind == extract_bp_kind::bp
14008 ? _("Negative breakpoint number '%.*s'")
14009 : _("Negative breakpoint location number '%.*s'"),
14010 int (end - start), start);
14012 error (kind == extract_bp_kind::bp
14013 ? _("Bad breakpoint number '%.*s'")
14014 : _("Bad breakpoint location number '%.*s'"),
14015 int (end - start), start);
14017 if (end_out != NULL)
14022 /* Extract a breakpoint or location range (as determined by KIND) in
14023 the form NUM1-NUM2 stored at &ARG[arg_offset]. Returns a std::pair
14024 representing the (inclusive) range. The returned pair's elements
14025 are always positive integers. */
14027 static std::pair<int, int>
14028 extract_bp_or_bp_range (extract_bp_kind kind,
14029 const std::string &arg,
14030 std::string::size_type arg_offset)
14032 std::pair<int, int> range;
14033 const char *bp_loc = &arg[arg_offset];
14034 std::string::size_type dash = arg.find ('-', arg_offset);
14035 if (dash != std::string::npos)
14037 /* bp_loc is a range (x-z). */
14038 if (arg.length () == dash + 1)
14039 error (kind == extract_bp_kind::bp
14040 ? _("Bad breakpoint number at or near: '%s'")
14041 : _("Bad breakpoint location number at or near: '%s'"),
14045 const char *start_first = bp_loc;
14046 const char *start_second = &arg[dash + 1];
14047 range.first = extract_bp_num (kind, start_first, '-');
14048 range.second = extract_bp_num (kind, start_second, '\0', &end);
14050 if (range.first > range.second)
14051 error (kind == extract_bp_kind::bp
14052 ? _("Inverted breakpoint range at '%.*s'")
14053 : _("Inverted breakpoint location range at '%.*s'"),
14054 int (end - start_first), start_first);
14058 /* bp_loc is a single value. */
14059 range.first = extract_bp_num (kind, bp_loc, '\0');
14060 range.second = range.first;
14065 /* Extract the breakpoint/location range specified by ARG. Returns
14066 the breakpoint range in BP_NUM_RANGE, and the location range in
14069 ARG may be in any of the following forms:
14071 x where 'x' is a breakpoint number.
14072 x-y where 'x' and 'y' specify a breakpoint numbers range.
14073 x.y where 'x' is a breakpoint number and 'y' a location number.
14074 x.y-z where 'x' is a breakpoint number and 'y' and 'z' specify a
14075 location number range.
14079 extract_bp_number_and_location (const std::string &arg,
14080 std::pair<int, int> &bp_num_range,
14081 std::pair<int, int> &bp_loc_range)
14083 std::string::size_type dot = arg.find ('.');
14085 if (dot != std::string::npos)
14087 /* Handle 'x.y' and 'x.y-z' cases. */
14089 if (arg.length () == dot + 1 || dot == 0)
14090 error (_("Bad breakpoint number at or near: '%s'"), arg.c_str ());
14093 = extract_bp_num (extract_bp_kind::bp, arg.c_str (), '.');
14094 bp_num_range.second = bp_num_range.first;
14096 bp_loc_range = extract_bp_or_bp_range (extract_bp_kind::loc,
14101 /* Handle x and x-y cases. */
14103 bp_num_range = extract_bp_or_bp_range (extract_bp_kind::bp, arg, 0);
14104 bp_loc_range.first = 0;
14105 bp_loc_range.second = 0;
14109 /* Enable or disable a breakpoint location BP_NUM.LOC_NUM. ENABLE
14110 specifies whether to enable or disable. */
14113 enable_disable_bp_num_loc (int bp_num, int loc_num, bool enable)
14115 struct bp_location *loc = find_location_by_number (bp_num, loc_num);
14118 if (loc->enabled != enable)
14120 loc->enabled = enable;
14121 mark_breakpoint_location_modified (loc);
14123 if (target_supports_enable_disable_tracepoint ()
14124 && current_trace_status ()->running && loc->owner
14125 && is_tracepoint (loc->owner))
14126 target_disable_tracepoint (loc);
14128 update_global_location_list (UGLL_DONT_INSERT);
14130 gdb::observers::breakpoint_modified.notify (loc->owner);
14133 /* Enable or disable a range of breakpoint locations. BP_NUM is the
14134 number of the breakpoint, and BP_LOC_RANGE specifies the
14135 (inclusive) range of location numbers of that breakpoint to
14136 enable/disable. ENABLE specifies whether to enable or disable the
14140 enable_disable_breakpoint_location_range (int bp_num,
14141 std::pair<int, int> &bp_loc_range,
14144 for (int i = bp_loc_range.first; i <= bp_loc_range.second; i++)
14145 enable_disable_bp_num_loc (bp_num, i, enable);
14148 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
14149 If from_tty is nonzero, it prints a message to that effect,
14150 which ends with a period (no newline). */
14153 disable_breakpoint (struct breakpoint *bpt)
14155 /* Never disable a watchpoint scope breakpoint; we want to
14156 hit them when we leave scope so we can delete both the
14157 watchpoint and its scope breakpoint at that time. */
14158 if (bpt->type == bp_watchpoint_scope)
14161 bpt->enable_state = bp_disabled;
14163 /* Mark breakpoint locations modified. */
14164 mark_breakpoint_modified (bpt);
14166 if (target_supports_enable_disable_tracepoint ()
14167 && current_trace_status ()->running && is_tracepoint (bpt))
14169 struct bp_location *location;
14171 for (location = bpt->loc; location; location = location->next)
14172 target_disable_tracepoint (location);
14175 update_global_location_list (UGLL_DONT_INSERT);
14177 gdb::observers::breakpoint_modified.notify (bpt);
14180 /* Enable or disable the breakpoint(s) or breakpoint location(s)
14181 specified in ARGS. ARGS may be in any of the formats handled by
14182 extract_bp_number_and_location. ENABLE specifies whether to enable
14183 or disable the breakpoints/locations. */
14186 enable_disable_command (const char *args, int from_tty, bool enable)
14190 struct breakpoint *bpt;
14192 ALL_BREAKPOINTS (bpt)
14193 if (user_breakpoint_p (bpt))
14196 enable_breakpoint (bpt);
14198 disable_breakpoint (bpt);
14203 std::string num = extract_arg (&args);
14205 while (!num.empty ())
14207 std::pair<int, int> bp_num_range, bp_loc_range;
14209 extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
14211 if (bp_loc_range.first == bp_loc_range.second
14212 && bp_loc_range.first == 0)
14214 /* Handle breakpoint ids with formats 'x' or 'x-z'. */
14215 map_breakpoint_number_range (bp_num_range,
14217 ? enable_breakpoint
14218 : disable_breakpoint);
14222 /* Handle breakpoint ids with formats 'x.y' or
14224 enable_disable_breakpoint_location_range
14225 (bp_num_range.first, bp_loc_range, enable);
14227 num = extract_arg (&args);
14232 /* The disable command disables the specified breakpoints/locations
14233 (or all defined breakpoints) so they're no longer effective in
14234 stopping the inferior. ARGS may be in any of the forms defined in
14235 extract_bp_number_and_location. */
14238 disable_command (const char *args, int from_tty)
14240 enable_disable_command (args, from_tty, false);
14244 enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14247 int target_resources_ok;
14249 if (bpt->type == bp_hardware_breakpoint)
14252 i = hw_breakpoint_used_count ();
14253 target_resources_ok =
14254 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
14256 if (target_resources_ok == 0)
14257 error (_("No hardware breakpoint support in the target."));
14258 else if (target_resources_ok < 0)
14259 error (_("Hardware breakpoints used exceeds limit."));
14262 if (is_watchpoint (bpt))
14264 /* Initialize it just to avoid a GCC false warning. */
14265 enum enable_state orig_enable_state = bp_disabled;
14269 struct watchpoint *w = (struct watchpoint *) bpt;
14271 orig_enable_state = bpt->enable_state;
14272 bpt->enable_state = bp_enabled;
14273 update_watchpoint (w, 1 /* reparse */);
14275 catch (const gdb_exception &e)
14277 bpt->enable_state = orig_enable_state;
14278 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14284 bpt->enable_state = bp_enabled;
14286 /* Mark breakpoint locations modified. */
14287 mark_breakpoint_modified (bpt);
14289 if (target_supports_enable_disable_tracepoint ()
14290 && current_trace_status ()->running && is_tracepoint (bpt))
14292 struct bp_location *location;
14294 for (location = bpt->loc; location; location = location->next)
14295 target_enable_tracepoint (location);
14298 bpt->disposition = disposition;
14299 bpt->enable_count = count;
14300 update_global_location_list (UGLL_MAY_INSERT);
14302 gdb::observers::breakpoint_modified.notify (bpt);
14307 enable_breakpoint (struct breakpoint *bpt)
14309 enable_breakpoint_disp (bpt, bpt->disposition, 0);
14312 /* The enable command enables the specified breakpoints/locations (or
14313 all defined breakpoints) so they once again become (or continue to
14314 be) effective in stopping the inferior. ARGS may be in any of the
14315 forms defined in extract_bp_number_and_location. */
14318 enable_command (const char *args, int from_tty)
14320 enable_disable_command (args, from_tty, true);
14324 enable_once_command (const char *args, int from_tty)
14326 map_breakpoint_numbers
14327 (args, [&] (breakpoint *b)
14329 iterate_over_related_breakpoints
14330 (b, [&] (breakpoint *bpt)
14332 enable_breakpoint_disp (bpt, disp_disable, 1);
14338 enable_count_command (const char *args, int from_tty)
14343 error_no_arg (_("hit count"));
14345 count = get_number (&args);
14347 map_breakpoint_numbers
14348 (args, [&] (breakpoint *b)
14350 iterate_over_related_breakpoints
14351 (b, [&] (breakpoint *bpt)
14353 enable_breakpoint_disp (bpt, disp_disable, count);
14359 enable_delete_command (const char *args, int from_tty)
14361 map_breakpoint_numbers
14362 (args, [&] (breakpoint *b)
14364 iterate_over_related_breakpoints
14365 (b, [&] (breakpoint *bpt)
14367 enable_breakpoint_disp (bpt, disp_del, 1);
14373 set_breakpoint_cmd (const char *args, int from_tty)
14378 show_breakpoint_cmd (const char *args, int from_tty)
14382 /* Invalidate last known value of any hardware watchpoint if
14383 the memory which that value represents has been written to by
14387 invalidate_bp_value_on_memory_change (struct inferior *inferior,
14388 CORE_ADDR addr, ssize_t len,
14389 const bfd_byte *data)
14391 struct breakpoint *bp;
14393 ALL_BREAKPOINTS (bp)
14394 if (bp->enable_state == bp_enabled
14395 && bp->type == bp_hardware_watchpoint)
14397 struct watchpoint *wp = (struct watchpoint *) bp;
14399 if (wp->val_valid && wp->val != nullptr)
14401 struct bp_location *loc;
14403 for (loc = bp->loc; loc != NULL; loc = loc->next)
14404 if (loc->loc_type == bp_loc_hardware_watchpoint
14405 && loc->address + loc->length > addr
14406 && addr + len > loc->address)
14415 /* Create and insert a breakpoint for software single step. */
14418 insert_single_step_breakpoint (struct gdbarch *gdbarch,
14419 const address_space *aspace,
14422 struct thread_info *tp = inferior_thread ();
14423 struct symtab_and_line sal;
14424 CORE_ADDR pc = next_pc;
14426 if (tp->control.single_step_breakpoints == NULL)
14428 tp->control.single_step_breakpoints
14429 = new_single_step_breakpoint (tp->global_num, gdbarch);
14432 sal = find_pc_line (pc, 0);
14434 sal.section = find_pc_overlay (pc);
14435 sal.explicit_pc = 1;
14436 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
14438 update_global_location_list (UGLL_INSERT);
14441 /* Insert single step breakpoints according to the current state. */
14444 insert_single_step_breakpoints (struct gdbarch *gdbarch)
14446 struct regcache *regcache = get_current_regcache ();
14447 std::vector<CORE_ADDR> next_pcs;
14449 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
14451 if (!next_pcs.empty ())
14453 struct frame_info *frame = get_current_frame ();
14454 const address_space *aspace = get_frame_address_space (frame);
14456 for (CORE_ADDR pc : next_pcs)
14457 insert_single_step_breakpoint (gdbarch, aspace, pc);
14465 /* See breakpoint.h. */
14468 breakpoint_has_location_inserted_here (struct breakpoint *bp,
14469 const address_space *aspace,
14472 struct bp_location *loc;
14474 for (loc = bp->loc; loc != NULL; loc = loc->next)
14476 && breakpoint_location_address_match (loc, aspace, pc))
14482 /* Check whether a software single-step breakpoint is inserted at
14486 single_step_breakpoint_inserted_here_p (const address_space *aspace,
14489 struct breakpoint *bpt;
14491 ALL_BREAKPOINTS (bpt)
14493 if (bpt->type == bp_single_step
14494 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
14500 /* Tracepoint-specific operations. */
14502 /* Set tracepoint count to NUM. */
14504 set_tracepoint_count (int num)
14506 tracepoint_count = num;
14507 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
14511 trace_command (const char *arg, int from_tty)
14513 struct breakpoint_ops *ops;
14515 event_location_up location = string_to_event_location (&arg,
14517 if (location != NULL
14518 && event_location_type (location.get ()) == PROBE_LOCATION)
14519 ops = &tracepoint_probe_breakpoint_ops;
14521 ops = &tracepoint_breakpoint_ops;
14523 create_breakpoint (get_current_arch (),
14525 NULL, 0, arg, 1 /* parse arg */,
14527 bp_tracepoint /* type_wanted */,
14528 0 /* Ignore count */,
14529 pending_break_support,
14533 0 /* internal */, 0);
14537 ftrace_command (const char *arg, int from_tty)
14539 event_location_up location = string_to_event_location (&arg,
14541 create_breakpoint (get_current_arch (),
14543 NULL, 0, arg, 1 /* parse arg */,
14545 bp_fast_tracepoint /* type_wanted */,
14546 0 /* Ignore count */,
14547 pending_break_support,
14548 &tracepoint_breakpoint_ops,
14551 0 /* internal */, 0);
14554 /* strace command implementation. Creates a static tracepoint. */
14557 strace_command (const char *arg, int from_tty)
14559 struct breakpoint_ops *ops;
14560 event_location_up location;
14562 /* Decide if we are dealing with a static tracepoint marker (`-m'),
14563 or with a normal static tracepoint. */
14564 if (arg && startswith (arg, "-m") && isspace (arg[2]))
14566 ops = &strace_marker_breakpoint_ops;
14567 location = new_linespec_location (&arg, symbol_name_match_type::FULL);
14571 ops = &tracepoint_breakpoint_ops;
14572 location = string_to_event_location (&arg, current_language);
14575 create_breakpoint (get_current_arch (),
14577 NULL, 0, arg, 1 /* parse arg */,
14579 bp_static_tracepoint /* type_wanted */,
14580 0 /* Ignore count */,
14581 pending_break_support,
14585 0 /* internal */, 0);
14588 /* Set up a fake reader function that gets command lines from a linked
14589 list that was acquired during tracepoint uploading. */
14591 static struct uploaded_tp *this_utp;
14592 static int next_cmd;
14595 read_uploaded_action (void)
14597 char *rslt = nullptr;
14599 if (next_cmd < this_utp->cmd_strings.size ())
14601 rslt = this_utp->cmd_strings[next_cmd].get ();
14608 /* Given information about a tracepoint as recorded on a target (which
14609 can be either a live system or a trace file), attempt to create an
14610 equivalent GDB tracepoint. This is not a reliable process, since
14611 the target does not necessarily have all the information used when
14612 the tracepoint was originally defined. */
14614 struct tracepoint *
14615 create_tracepoint_from_upload (struct uploaded_tp *utp)
14617 const char *addr_str;
14618 char small_buf[100];
14619 struct tracepoint *tp;
14621 if (utp->at_string)
14622 addr_str = utp->at_string.get ();
14625 /* In the absence of a source location, fall back to raw
14626 address. Since there is no way to confirm that the address
14627 means the same thing as when the trace was started, warn the
14629 warning (_("Uploaded tracepoint %d has no "
14630 "source location, using raw address"),
14632 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
14633 addr_str = small_buf;
14636 /* There's not much we can do with a sequence of bytecodes. */
14637 if (utp->cond && !utp->cond_string)
14638 warning (_("Uploaded tracepoint %d condition "
14639 "has no source form, ignoring it"),
14642 event_location_up location = string_to_event_location (&addr_str,
14644 if (!create_breakpoint (get_current_arch (),
14646 utp->cond_string.get (), -1, addr_str,
14647 0 /* parse cond/thread */,
14649 utp->type /* type_wanted */,
14650 0 /* Ignore count */,
14651 pending_break_support,
14652 &tracepoint_breakpoint_ops,
14654 utp->enabled /* enabled */,
14656 CREATE_BREAKPOINT_FLAGS_INSERTED))
14659 /* Get the tracepoint we just created. */
14660 tp = get_tracepoint (tracepoint_count);
14661 gdb_assert (tp != NULL);
14665 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
14668 trace_pass_command (small_buf, 0);
14671 /* If we have uploaded versions of the original commands, set up a
14672 special-purpose "reader" function and call the usual command line
14673 reader, then pass the result to the breakpoint command-setting
14675 if (!utp->cmd_strings.empty ())
14677 counted_command_line cmd_list;
14682 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL);
14684 breakpoint_set_commands (tp, std::move (cmd_list));
14686 else if (!utp->actions.empty ()
14687 || !utp->step_actions.empty ())
14688 warning (_("Uploaded tracepoint %d actions "
14689 "have no source form, ignoring them"),
14692 /* Copy any status information that might be available. */
14693 tp->hit_count = utp->hit_count;
14694 tp->traceframe_usage = utp->traceframe_usage;
14699 /* Print information on tracepoint number TPNUM_EXP, or all if
14703 info_tracepoints_command (const char *args, int from_tty)
14705 struct ui_out *uiout = current_uiout;
14708 num_printed = breakpoint_1 (args, 0, is_tracepoint);
14710 if (num_printed == 0)
14712 if (args == NULL || *args == '\0')
14713 uiout->message ("No tracepoints.\n");
14715 uiout->message ("No tracepoint matching '%s'.\n", args);
14718 default_collect_info ();
14721 /* The 'enable trace' command enables tracepoints.
14722 Not supported by all targets. */
14724 enable_trace_command (const char *args, int from_tty)
14726 enable_command (args, from_tty);
14729 /* The 'disable trace' command disables tracepoints.
14730 Not supported by all targets. */
14732 disable_trace_command (const char *args, int from_tty)
14734 disable_command (args, from_tty);
14737 /* Remove a tracepoint (or all if no argument). */
14739 delete_trace_command (const char *arg, int from_tty)
14741 struct breakpoint *b, *b_tmp;
14747 int breaks_to_delete = 0;
14749 /* Delete all breakpoints if no argument.
14750 Do not delete internal or call-dummy breakpoints, these
14751 have to be deleted with an explicit breakpoint number
14753 ALL_TRACEPOINTS (b)
14754 if (is_tracepoint (b) && user_breakpoint_p (b))
14756 breaks_to_delete = 1;
14760 /* Ask user only if there are some breakpoints to delete. */
14762 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
14764 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14765 if (is_tracepoint (b) && user_breakpoint_p (b))
14766 delete_breakpoint (b);
14770 map_breakpoint_numbers
14771 (arg, [&] (breakpoint *br)
14773 iterate_over_related_breakpoints (br, delete_breakpoint);
14777 /* Helper function for trace_pass_command. */
14780 trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
14782 tp->pass_count = count;
14783 gdb::observers::breakpoint_modified.notify (tp);
14785 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
14786 tp->number, count);
14789 /* Set passcount for tracepoint.
14791 First command argument is passcount, second is tracepoint number.
14792 If tracepoint number omitted, apply to most recently defined.
14793 Also accepts special argument "all". */
14796 trace_pass_command (const char *args, int from_tty)
14798 struct tracepoint *t1;
14801 if (args == 0 || *args == 0)
14802 error (_("passcount command requires an "
14803 "argument (count + optional TP num)"));
14805 count = strtoulst (args, &args, 10); /* Count comes first, then TP num. */
14807 args = skip_spaces (args);
14808 if (*args && strncasecmp (args, "all", 3) == 0)
14810 struct breakpoint *b;
14812 args += 3; /* Skip special argument "all". */
14814 error (_("Junk at end of arguments."));
14816 ALL_TRACEPOINTS (b)
14818 t1 = (struct tracepoint *) b;
14819 trace_pass_set_count (t1, count, from_tty);
14822 else if (*args == '\0')
14824 t1 = get_tracepoint_by_number (&args, NULL);
14826 trace_pass_set_count (t1, count, from_tty);
14830 number_or_range_parser parser (args);
14831 while (!parser.finished ())
14833 t1 = get_tracepoint_by_number (&args, &parser);
14835 trace_pass_set_count (t1, count, from_tty);
14840 struct tracepoint *
14841 get_tracepoint (int num)
14843 struct breakpoint *t;
14845 ALL_TRACEPOINTS (t)
14846 if (t->number == num)
14847 return (struct tracepoint *) t;
14852 /* Find the tracepoint with the given target-side number (which may be
14853 different from the tracepoint number after disconnecting and
14856 struct tracepoint *
14857 get_tracepoint_by_number_on_target (int num)
14859 struct breakpoint *b;
14861 ALL_TRACEPOINTS (b)
14863 struct tracepoint *t = (struct tracepoint *) b;
14865 if (t->number_on_target == num)
14872 /* Utility: parse a tracepoint number and look it up in the list.
14873 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
14874 If the argument is missing, the most recent tracepoint
14875 (tracepoint_count) is returned. */
14877 struct tracepoint *
14878 get_tracepoint_by_number (const char **arg,
14879 number_or_range_parser *parser)
14881 struct breakpoint *t;
14883 const char *instring = arg == NULL ? NULL : *arg;
14885 if (parser != NULL)
14887 gdb_assert (!parser->finished ());
14888 tpnum = parser->get_number ();
14890 else if (arg == NULL || *arg == NULL || ! **arg)
14891 tpnum = tracepoint_count;
14893 tpnum = get_number (arg);
14897 if (instring && *instring)
14898 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
14901 printf_filtered (_("No previous tracepoint\n"));
14905 ALL_TRACEPOINTS (t)
14906 if (t->number == tpnum)
14908 return (struct tracepoint *) t;
14911 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
14916 print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
14918 if (b->thread != -1)
14919 fprintf_unfiltered (fp, " thread %d", b->thread);
14922 fprintf_unfiltered (fp, " task %d", b->task);
14924 fprintf_unfiltered (fp, "\n");
14927 /* Save information on user settable breakpoints (watchpoints, etc) to
14928 a new script file named FILENAME. If FILTER is non-NULL, call it
14929 on each breakpoint and only include the ones for which it returns
14933 save_breakpoints (const char *filename, int from_tty,
14934 int (*filter) (const struct breakpoint *))
14936 struct breakpoint *tp;
14938 int extra_trace_bits = 0;
14940 if (filename == 0 || *filename == 0)
14941 error (_("Argument required (file name in which to save)"));
14943 /* See if we have anything to save. */
14944 ALL_BREAKPOINTS (tp)
14946 /* Skip internal and momentary breakpoints. */
14947 if (!user_breakpoint_p (tp))
14950 /* If we have a filter, only save the breakpoints it accepts. */
14951 if (filter && !filter (tp))
14956 if (is_tracepoint (tp))
14958 extra_trace_bits = 1;
14960 /* We can stop searching. */
14967 warning (_("Nothing to save."));
14971 gdb::unique_xmalloc_ptr<char> expanded_filename (tilde_expand (filename));
14975 if (!fp.open (expanded_filename.get (), "w"))
14976 error (_("Unable to open file '%s' for saving (%s)"),
14977 expanded_filename.get (), safe_strerror (errno));
14979 if (extra_trace_bits)
14980 save_trace_state_variables (&fp);
14982 ALL_BREAKPOINTS (tp)
14984 /* Skip internal and momentary breakpoints. */
14985 if (!user_breakpoint_p (tp))
14988 /* If we have a filter, only save the breakpoints it accepts. */
14989 if (filter && !filter (tp))
14992 tp->ops->print_recreate (tp, &fp);
14994 /* Note, we can't rely on tp->number for anything, as we can't
14995 assume the recreated breakpoint numbers will match. Use $bpnum
14998 if (tp->cond_string)
14999 fp.printf (" condition $bpnum %s\n", tp->cond_string);
15001 if (tp->ignore_count)
15002 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
15004 if (tp->type != bp_dprintf && tp->commands)
15006 fp.puts (" commands\n");
15008 current_uiout->redirect (&fp);
15011 print_command_lines (current_uiout, tp->commands.get (), 2);
15013 catch (const gdb_exception &ex)
15015 current_uiout->redirect (NULL);
15019 current_uiout->redirect (NULL);
15020 fp.puts (" end\n");
15023 if (tp->enable_state == bp_disabled)
15024 fp.puts ("disable $bpnum\n");
15026 /* If this is a multi-location breakpoint, check if the locations
15027 should be individually disabled. Watchpoint locations are
15028 special, and not user visible. */
15029 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15031 struct bp_location *loc;
15034 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15036 fp.printf ("disable $bpnum.%d\n", n);
15040 if (extra_trace_bits && *default_collect)
15041 fp.printf ("set default-collect %s\n", default_collect);
15044 printf_filtered (_("Saved to file '%s'.\n"), expanded_filename.get ());
15047 /* The `save breakpoints' command. */
15050 save_breakpoints_command (const char *args, int from_tty)
15052 save_breakpoints (args, from_tty, NULL);
15055 /* The `save tracepoints' command. */
15058 save_tracepoints_command (const char *args, int from_tty)
15060 save_breakpoints (args, from_tty, is_tracepoint);
15063 /* Create a vector of all tracepoints. */
15065 std::vector<breakpoint *>
15066 all_tracepoints (void)
15068 std::vector<breakpoint *> tp_vec;
15069 struct breakpoint *tp;
15071 ALL_TRACEPOINTS (tp)
15073 tp_vec.push_back (tp);
15080 /* This help string is used to consolidate all the help string for specifying
15081 locations used by several commands. */
15083 #define LOCATION_HELP_STRING \
15084 "Linespecs are colon-separated lists of location parameters, such as\n\
15085 source filename, function name, label name, and line number.\n\
15086 Example: To specify the start of a label named \"the_top\" in the\n\
15087 function \"fact\" in the file \"factorial.c\", use\n\
15088 \"factorial.c:fact:the_top\".\n\
15090 Address locations begin with \"*\" and specify an exact address in the\n\
15091 program. Example: To specify the fourth byte past the start function\n\
15092 \"main\", use \"*main + 4\".\n\
15094 Explicit locations are similar to linespecs but use an option/argument\n\
15095 syntax to specify location parameters.\n\
15096 Example: To specify the start of the label named \"the_top\" in the\n\
15097 function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
15098 -function fact -label the_top\".\n\
15100 By default, a specified function is matched against the program's\n\
15101 functions in all scopes. For C++, this means in all namespaces and\n\
15102 classes. For Ada, this means in all packages. E.g., in C++,\n\
15103 \"func()\" matches \"A::func()\", \"A::B::func()\", etc. The\n\
15104 \"-qualified\" flag overrides this behavior, making GDB interpret the\n\
15105 specified name as a complete fully-qualified name instead."
15107 /* This help string is used for the break, hbreak, tbreak and thbreak
15108 commands. It is defined as a macro to prevent duplication.
15109 COMMAND should be a string constant containing the name of the
15112 #define BREAK_ARGS_HELP(command) \
15113 command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15114 PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15115 probe point. Accepted values are `-probe' (for a generic, automatically\n\
15116 guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15117 `-probe-dtrace' (for a DTrace probe).\n\
15118 LOCATION may be a linespec, address, or explicit location as described\n\
15121 With no LOCATION, uses current execution address of the selected\n\
15122 stack frame. This is useful for breaking on return to a stack frame.\n\
15124 THREADNUM is the number from \"info threads\".\n\
15125 CONDITION is a boolean expression.\n\
15126 \n" LOCATION_HELP_STRING "\n\n\
15127 Multiple breakpoints at one place are permitted, and useful if their\n\
15128 conditions are different.\n\
15130 Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15132 /* List of subcommands for "catch". */
15133 static struct cmd_list_element *catch_cmdlist;
15135 /* List of subcommands for "tcatch". */
15136 static struct cmd_list_element *tcatch_cmdlist;
15139 add_catch_command (const char *name, const char *docstring,
15140 cmd_const_sfunc_ftype *sfunc,
15141 completer_ftype *completer,
15142 void *user_data_catch,
15143 void *user_data_tcatch)
15145 struct cmd_list_element *command;
15147 command = add_cmd (name, class_breakpoint, docstring,
15149 set_cmd_sfunc (command, sfunc);
15150 set_cmd_context (command, user_data_catch);
15151 set_cmd_completer (command, completer);
15153 command = add_cmd (name, class_breakpoint, docstring,
15155 set_cmd_sfunc (command, sfunc);
15156 set_cmd_context (command, user_data_tcatch);
15157 set_cmd_completer (command, completer);
15161 save_command (const char *arg, int from_tty)
15163 printf_unfiltered (_("\"save\" must be followed by "
15164 "the name of a save subcommand.\n"));
15165 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
15168 struct breakpoint *
15169 iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15172 struct breakpoint *b, *b_tmp;
15174 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15176 if ((*callback) (b, data))
15183 /* Zero if any of the breakpoint's locations could be a location where
15184 functions have been inlined, nonzero otherwise. */
15187 is_non_inline_function (struct breakpoint *b)
15189 /* The shared library event breakpoint is set on the address of a
15190 non-inline function. */
15191 if (b->type == bp_shlib_event)
15197 /* Nonzero if the specified PC cannot be a location where functions
15198 have been inlined. */
15201 pc_at_non_inline_function (const address_space *aspace, CORE_ADDR pc,
15202 const struct target_waitstatus *ws)
15204 struct breakpoint *b;
15205 struct bp_location *bl;
15207 ALL_BREAKPOINTS (b)
15209 if (!is_non_inline_function (b))
15212 for (bl = b->loc; bl != NULL; bl = bl->next)
15214 if (!bl->shlib_disabled
15215 && bpstat_check_location (bl, aspace, pc, ws))
15223 /* Remove any references to OBJFILE which is going to be freed. */
15226 breakpoint_free_objfile (struct objfile *objfile)
15228 struct bp_location **locp, *loc;
15230 ALL_BP_LOCATIONS (loc, locp)
15231 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
15232 loc->symtab = NULL;
15236 initialize_breakpoint_ops (void)
15238 static int initialized = 0;
15240 struct breakpoint_ops *ops;
15246 /* The breakpoint_ops structure to be inherit by all kinds of
15247 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15248 internal and momentary breakpoints, etc.). */
15249 ops = &bkpt_base_breakpoint_ops;
15250 *ops = base_breakpoint_ops;
15251 ops->re_set = bkpt_re_set;
15252 ops->insert_location = bkpt_insert_location;
15253 ops->remove_location = bkpt_remove_location;
15254 ops->breakpoint_hit = bkpt_breakpoint_hit;
15255 ops->create_sals_from_location = bkpt_create_sals_from_location;
15256 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
15257 ops->decode_location = bkpt_decode_location;
15259 /* The breakpoint_ops structure to be used in regular breakpoints. */
15260 ops = &bkpt_breakpoint_ops;
15261 *ops = bkpt_base_breakpoint_ops;
15262 ops->re_set = bkpt_re_set;
15263 ops->resources_needed = bkpt_resources_needed;
15264 ops->print_it = bkpt_print_it;
15265 ops->print_mention = bkpt_print_mention;
15266 ops->print_recreate = bkpt_print_recreate;
15268 /* Ranged breakpoints. */
15269 ops = &ranged_breakpoint_ops;
15270 *ops = bkpt_breakpoint_ops;
15271 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15272 ops->resources_needed = resources_needed_ranged_breakpoint;
15273 ops->print_it = print_it_ranged_breakpoint;
15274 ops->print_one = print_one_ranged_breakpoint;
15275 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15276 ops->print_mention = print_mention_ranged_breakpoint;
15277 ops->print_recreate = print_recreate_ranged_breakpoint;
15279 /* Internal breakpoints. */
15280 ops = &internal_breakpoint_ops;
15281 *ops = bkpt_base_breakpoint_ops;
15282 ops->re_set = internal_bkpt_re_set;
15283 ops->check_status = internal_bkpt_check_status;
15284 ops->print_it = internal_bkpt_print_it;
15285 ops->print_mention = internal_bkpt_print_mention;
15287 /* Momentary breakpoints. */
15288 ops = &momentary_breakpoint_ops;
15289 *ops = bkpt_base_breakpoint_ops;
15290 ops->re_set = momentary_bkpt_re_set;
15291 ops->check_status = momentary_bkpt_check_status;
15292 ops->print_it = momentary_bkpt_print_it;
15293 ops->print_mention = momentary_bkpt_print_mention;
15295 /* Probe breakpoints. */
15296 ops = &bkpt_probe_breakpoint_ops;
15297 *ops = bkpt_breakpoint_ops;
15298 ops->insert_location = bkpt_probe_insert_location;
15299 ops->remove_location = bkpt_probe_remove_location;
15300 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
15301 ops->decode_location = bkpt_probe_decode_location;
15304 ops = &watchpoint_breakpoint_ops;
15305 *ops = base_breakpoint_ops;
15306 ops->re_set = re_set_watchpoint;
15307 ops->insert_location = insert_watchpoint;
15308 ops->remove_location = remove_watchpoint;
15309 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15310 ops->check_status = check_status_watchpoint;
15311 ops->resources_needed = resources_needed_watchpoint;
15312 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15313 ops->print_it = print_it_watchpoint;
15314 ops->print_mention = print_mention_watchpoint;
15315 ops->print_recreate = print_recreate_watchpoint;
15316 ops->explains_signal = explains_signal_watchpoint;
15318 /* Masked watchpoints. */
15319 ops = &masked_watchpoint_breakpoint_ops;
15320 *ops = watchpoint_breakpoint_ops;
15321 ops->insert_location = insert_masked_watchpoint;
15322 ops->remove_location = remove_masked_watchpoint;
15323 ops->resources_needed = resources_needed_masked_watchpoint;
15324 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15325 ops->print_it = print_it_masked_watchpoint;
15326 ops->print_one_detail = print_one_detail_masked_watchpoint;
15327 ops->print_mention = print_mention_masked_watchpoint;
15328 ops->print_recreate = print_recreate_masked_watchpoint;
15331 ops = &tracepoint_breakpoint_ops;
15332 *ops = base_breakpoint_ops;
15333 ops->re_set = tracepoint_re_set;
15334 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15335 ops->print_one_detail = tracepoint_print_one_detail;
15336 ops->print_mention = tracepoint_print_mention;
15337 ops->print_recreate = tracepoint_print_recreate;
15338 ops->create_sals_from_location = tracepoint_create_sals_from_location;
15339 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
15340 ops->decode_location = tracepoint_decode_location;
15342 /* Probe tracepoints. */
15343 ops = &tracepoint_probe_breakpoint_ops;
15344 *ops = tracepoint_breakpoint_ops;
15345 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
15346 ops->decode_location = tracepoint_probe_decode_location;
15348 /* Static tracepoints with marker (`-m'). */
15349 ops = &strace_marker_breakpoint_ops;
15350 *ops = tracepoint_breakpoint_ops;
15351 ops->create_sals_from_location = strace_marker_create_sals_from_location;
15352 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
15353 ops->decode_location = strace_marker_decode_location;
15355 /* Fork catchpoints. */
15356 ops = &catch_fork_breakpoint_ops;
15357 *ops = base_breakpoint_ops;
15358 ops->insert_location = insert_catch_fork;
15359 ops->remove_location = remove_catch_fork;
15360 ops->breakpoint_hit = breakpoint_hit_catch_fork;
15361 ops->print_it = print_it_catch_fork;
15362 ops->print_one = print_one_catch_fork;
15363 ops->print_mention = print_mention_catch_fork;
15364 ops->print_recreate = print_recreate_catch_fork;
15366 /* Vfork catchpoints. */
15367 ops = &catch_vfork_breakpoint_ops;
15368 *ops = base_breakpoint_ops;
15369 ops->insert_location = insert_catch_vfork;
15370 ops->remove_location = remove_catch_vfork;
15371 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
15372 ops->print_it = print_it_catch_vfork;
15373 ops->print_one = print_one_catch_vfork;
15374 ops->print_mention = print_mention_catch_vfork;
15375 ops->print_recreate = print_recreate_catch_vfork;
15377 /* Exec catchpoints. */
15378 ops = &catch_exec_breakpoint_ops;
15379 *ops = base_breakpoint_ops;
15380 ops->insert_location = insert_catch_exec;
15381 ops->remove_location = remove_catch_exec;
15382 ops->breakpoint_hit = breakpoint_hit_catch_exec;
15383 ops->print_it = print_it_catch_exec;
15384 ops->print_one = print_one_catch_exec;
15385 ops->print_mention = print_mention_catch_exec;
15386 ops->print_recreate = print_recreate_catch_exec;
15388 /* Solib-related catchpoints. */
15389 ops = &catch_solib_breakpoint_ops;
15390 *ops = base_breakpoint_ops;
15391 ops->insert_location = insert_catch_solib;
15392 ops->remove_location = remove_catch_solib;
15393 ops->breakpoint_hit = breakpoint_hit_catch_solib;
15394 ops->check_status = check_status_catch_solib;
15395 ops->print_it = print_it_catch_solib;
15396 ops->print_one = print_one_catch_solib;
15397 ops->print_mention = print_mention_catch_solib;
15398 ops->print_recreate = print_recreate_catch_solib;
15400 ops = &dprintf_breakpoint_ops;
15401 *ops = bkpt_base_breakpoint_ops;
15402 ops->re_set = dprintf_re_set;
15403 ops->resources_needed = bkpt_resources_needed;
15404 ops->print_it = bkpt_print_it;
15405 ops->print_mention = bkpt_print_mention;
15406 ops->print_recreate = dprintf_print_recreate;
15407 ops->after_condition_true = dprintf_after_condition_true;
15408 ops->breakpoint_hit = dprintf_breakpoint_hit;
15411 /* Chain containing all defined "enable breakpoint" subcommands. */
15413 static struct cmd_list_element *enablebreaklist = NULL;
15415 /* See breakpoint.h. */
15417 cmd_list_element *commands_cmd_element = nullptr;
15420 _initialize_breakpoint (void)
15422 struct cmd_list_element *c;
15424 initialize_breakpoint_ops ();
15426 gdb::observers::solib_unloaded.attach (disable_breakpoints_in_unloaded_shlib);
15427 gdb::observers::free_objfile.attach (disable_breakpoints_in_freed_objfile);
15428 gdb::observers::memory_changed.attach (invalidate_bp_value_on_memory_change);
15430 breakpoint_chain = 0;
15431 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
15432 before a breakpoint is set. */
15433 breakpoint_count = 0;
15435 tracepoint_count = 0;
15437 add_com ("ignore", class_breakpoint, ignore_command, _("\
15438 Set ignore-count of breakpoint number N to COUNT.\n\
15439 Usage is `ignore N COUNT'."));
15441 commands_cmd_element = add_com ("commands", class_breakpoint,
15442 commands_command, _("\
15443 Set commands to be executed when the given breakpoints are hit.\n\
15444 Give a space-separated breakpoint list as argument after \"commands\".\n\
15445 A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
15447 With no argument, the targeted breakpoint is the last one set.\n\
15448 The commands themselves follow starting on the next line.\n\
15449 Type a line containing \"end\" to indicate the end of them.\n\
15450 Give \"silent\" as the first line to make the breakpoint silent;\n\
15451 then no output is printed when it is hit, except what the commands print."));
15453 c = add_com ("condition", class_breakpoint, condition_command, _("\
15454 Specify breakpoint number N to break only if COND is true.\n\
15455 Usage is `condition N COND', where N is an integer and COND is an\n\
15456 expression to be evaluated whenever breakpoint N is reached."));
15457 set_cmd_completer (c, condition_completer);
15459 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
15460 Set a temporary breakpoint.\n\
15461 Like \"break\" except the breakpoint is only temporary,\n\
15462 so it will be deleted when hit. Equivalent to \"break\" followed\n\
15463 by using \"enable delete\" on the breakpoint number.\n\
15465 BREAK_ARGS_HELP ("tbreak")));
15466 set_cmd_completer (c, location_completer);
15468 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
15469 Set a hardware assisted breakpoint.\n\
15470 Like \"break\" except the breakpoint requires hardware support,\n\
15471 some target hardware may not have this support.\n\
15473 BREAK_ARGS_HELP ("hbreak")));
15474 set_cmd_completer (c, location_completer);
15476 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
15477 Set a temporary hardware assisted breakpoint.\n\
15478 Like \"hbreak\" except the breakpoint is only temporary,\n\
15479 so it will be deleted when hit.\n\
15481 BREAK_ARGS_HELP ("thbreak")));
15482 set_cmd_completer (c, location_completer);
15484 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
15485 Enable some breakpoints.\n\
15486 Give breakpoint numbers (separated by spaces) as arguments.\n\
15487 With no subcommand, breakpoints are enabled until you command otherwise.\n\
15488 This is used to cancel the effect of the \"disable\" command.\n\
15489 With a subcommand you can enable temporarily."),
15490 &enablelist, "enable ", 1, &cmdlist);
15492 add_com_alias ("en", "enable", class_breakpoint, 1);
15494 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
15495 Enable some breakpoints.\n\
15496 Give breakpoint numbers (separated by spaces) as arguments.\n\
15497 This is used to cancel the effect of the \"disable\" command.\n\
15498 May be abbreviated to simply \"enable\"."),
15499 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
15501 add_cmd ("once", no_class, enable_once_command, _("\
15502 Enable breakpoints for one hit. Give breakpoint numbers.\n\
15503 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
15506 add_cmd ("delete", no_class, enable_delete_command, _("\
15507 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15508 If a breakpoint is hit while enabled in this fashion, it is deleted."),
15511 add_cmd ("count", no_class, enable_count_command, _("\
15512 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15513 If a breakpoint is hit while enabled in this fashion,\n\
15514 the count is decremented; when it reaches zero, the breakpoint is disabled."),
15517 add_cmd ("delete", no_class, enable_delete_command, _("\
15518 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15519 If a breakpoint is hit while enabled in this fashion, it is deleted."),
15522 add_cmd ("once", no_class, enable_once_command, _("\
15523 Enable breakpoints for one hit. Give breakpoint numbers.\n\
15524 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
15527 add_cmd ("count", no_class, enable_count_command, _("\
15528 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15529 If a breakpoint is hit while enabled in this fashion,\n\
15530 the count is decremented; when it reaches zero, the breakpoint is disabled."),
15533 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
15534 Disable some breakpoints.\n\
15535 Arguments are breakpoint numbers with spaces in between.\n\
15536 To disable all breakpoints, give no argument.\n\
15537 A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
15538 &disablelist, "disable ", 1, &cmdlist);
15539 add_com_alias ("dis", "disable", class_breakpoint, 1);
15540 add_com_alias ("disa", "disable", class_breakpoint, 1);
15542 add_cmd ("breakpoints", class_alias, disable_command, _("\
15543 Disable some breakpoints.\n\
15544 Arguments are breakpoint numbers with spaces in between.\n\
15545 To disable all breakpoints, give no argument.\n\
15546 A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
15547 This command may be abbreviated \"disable\"."),
15550 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
15551 Delete some breakpoints or auto-display expressions.\n\
15552 Arguments are breakpoint numbers with spaces in between.\n\
15553 To delete all breakpoints, give no argument.\n\
15555 Also a prefix command for deletion of other GDB objects.\n\
15556 The \"unset\" command is also an alias for \"delete\"."),
15557 &deletelist, "delete ", 1, &cmdlist);
15558 add_com_alias ("d", "delete", class_breakpoint, 1);
15559 add_com_alias ("del", "delete", class_breakpoint, 1);
15561 add_cmd ("breakpoints", class_alias, delete_command, _("\
15562 Delete some breakpoints or auto-display expressions.\n\
15563 Arguments are breakpoint numbers with spaces in between.\n\
15564 To delete all breakpoints, give no argument.\n\
15565 This command may be abbreviated \"delete\"."),
15568 add_com ("clear", class_breakpoint, clear_command, _("\
15569 Clear breakpoint at specified location.\n\
15570 Argument may be a linespec, explicit, or address location as described below.\n\
15572 With no argument, clears all breakpoints in the line that the selected frame\n\
15573 is executing in.\n"
15574 "\n" LOCATION_HELP_STRING "\n\n\
15575 See also the \"delete\" command which clears breakpoints by number."));
15576 add_com_alias ("cl", "clear", class_breakpoint, 1);
15578 c = add_com ("break", class_breakpoint, break_command, _("\
15579 Set breakpoint at specified location.\n"
15580 BREAK_ARGS_HELP ("break")));
15581 set_cmd_completer (c, location_completer);
15583 add_com_alias ("b", "break", class_run, 1);
15584 add_com_alias ("br", "break", class_run, 1);
15585 add_com_alias ("bre", "break", class_run, 1);
15586 add_com_alias ("brea", "break", class_run, 1);
15590 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
15591 Break in function/address or break at a line in the current file."),
15592 &stoplist, "stop ", 1, &cmdlist);
15593 add_cmd ("in", class_breakpoint, stopin_command,
15594 _("Break in function or address."), &stoplist);
15595 add_cmd ("at", class_breakpoint, stopat_command,
15596 _("Break at a line in the current file."), &stoplist);
15597 add_com ("status", class_info, info_breakpoints_command, _("\
15598 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
15599 The \"Type\" column indicates one of:\n\
15600 \tbreakpoint - normal breakpoint\n\
15601 \twatchpoint - watchpoint\n\
15602 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15603 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15604 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15605 address and file/line number respectively.\n\
15607 Convenience variable \"$_\" and default examine address for \"x\"\n\
15608 are set to the address of the last breakpoint listed unless the command\n\
15609 is prefixed with \"server \".\n\n\
15610 Convenience variable \"$bpnum\" contains the number of the last\n\
15611 breakpoint set."));
15614 add_info ("breakpoints", info_breakpoints_command, _("\
15615 Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
15616 The \"Type\" column indicates one of:\n\
15617 \tbreakpoint - normal breakpoint\n\
15618 \twatchpoint - watchpoint\n\
15619 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15620 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15621 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15622 address and file/line number respectively.\n\
15624 Convenience variable \"$_\" and default examine address for \"x\"\n\
15625 are set to the address of the last breakpoint listed unless the command\n\
15626 is prefixed with \"server \".\n\n\
15627 Convenience variable \"$bpnum\" contains the number of the last\n\
15628 breakpoint set."));
15630 add_info_alias ("b", "breakpoints", 1);
15632 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
15633 Status of all breakpoints, or breakpoint number NUMBER.\n\
15634 The \"Type\" column indicates one of:\n\
15635 \tbreakpoint - normal breakpoint\n\
15636 \twatchpoint - watchpoint\n\
15637 \tlongjmp - internal breakpoint used to step through longjmp()\n\
15638 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
15639 \tuntil - internal breakpoint used by the \"until\" command\n\
15640 \tfinish - internal breakpoint used by the \"finish\" command\n\
15641 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15642 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15643 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15644 address and file/line number respectively.\n\
15646 Convenience variable \"$_\" and default examine address for \"x\"\n\
15647 are set to the address of the last breakpoint listed unless the command\n\
15648 is prefixed with \"server \".\n\n\
15649 Convenience variable \"$bpnum\" contains the number of the last\n\
15651 &maintenanceinfolist);
15653 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
15654 Set catchpoints to catch events."),
15655 &catch_cmdlist, "catch ",
15656 0/*allow-unknown*/, &cmdlist);
15658 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
15659 Set temporary catchpoints to catch events."),
15660 &tcatch_cmdlist, "tcatch ",
15661 0/*allow-unknown*/, &cmdlist);
15663 add_catch_command ("fork", _("Catch calls to fork."),
15664 catch_fork_command_1,
15666 (void *) (uintptr_t) catch_fork_permanent,
15667 (void *) (uintptr_t) catch_fork_temporary);
15668 add_catch_command ("vfork", _("Catch calls to vfork."),
15669 catch_fork_command_1,
15671 (void *) (uintptr_t) catch_vfork_permanent,
15672 (void *) (uintptr_t) catch_vfork_temporary);
15673 add_catch_command ("exec", _("Catch calls to exec."),
15674 catch_exec_command_1,
15678 add_catch_command ("load", _("Catch loads of shared libraries.\n\
15679 Usage: catch load [REGEX]\n\
15680 If REGEX is given, only stop for libraries matching the regular expression."),
15681 catch_load_command_1,
15685 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
15686 Usage: catch unload [REGEX]\n\
15687 If REGEX is given, only stop for libraries matching the regular expression."),
15688 catch_unload_command_1,
15693 c = add_com ("watch", class_breakpoint, watch_command, _("\
15694 Set a watchpoint for an expression.\n\
15695 Usage: watch [-l|-location] EXPRESSION\n\
15696 A watchpoint stops execution of your program whenever the value of\n\
15697 an expression changes.\n\
15698 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15699 the memory to which it refers."));
15700 set_cmd_completer (c, expression_completer);
15702 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
15703 Set a read watchpoint for an expression.\n\
15704 Usage: rwatch [-l|-location] EXPRESSION\n\
15705 A watchpoint stops execution of your program whenever the value of\n\
15706 an expression is read.\n\
15707 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15708 the memory to which it refers."));
15709 set_cmd_completer (c, expression_completer);
15711 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
15712 Set a watchpoint for an expression.\n\
15713 Usage: awatch [-l|-location] EXPRESSION\n\
15714 A watchpoint stops execution of your program whenever the value of\n\
15715 an expression is either read or written.\n\
15716 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15717 the memory to which it refers."));
15718 set_cmd_completer (c, expression_completer);
15720 add_info ("watchpoints", info_watchpoints_command, _("\
15721 Status of specified watchpoints (all watchpoints if no argument)."));
15723 /* XXX: cagney/2005-02-23: This should be a boolean, and should
15724 respond to changes - contrary to the description. */
15725 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
15726 &can_use_hw_watchpoints, _("\
15727 Set debugger's willingness to use watchpoint hardware."), _("\
15728 Show debugger's willingness to use watchpoint hardware."), _("\
15729 If zero, gdb will not use hardware for new watchpoints, even if\n\
15730 such is available. (However, any hardware watchpoints that were\n\
15731 created before setting this to nonzero, will continue to use watchpoint\n\
15734 show_can_use_hw_watchpoints,
15735 &setlist, &showlist);
15737 can_use_hw_watchpoints = 1;
15739 /* Tracepoint manipulation commands. */
15741 c = add_com ("trace", class_breakpoint, trace_command, _("\
15742 Set a tracepoint at specified location.\n\
15744 BREAK_ARGS_HELP ("trace") "\n\
15745 Do \"help tracepoints\" for info on other tracepoint commands."));
15746 set_cmd_completer (c, location_completer);
15748 add_com_alias ("tp", "trace", class_alias, 0);
15749 add_com_alias ("tr", "trace", class_alias, 1);
15750 add_com_alias ("tra", "trace", class_alias, 1);
15751 add_com_alias ("trac", "trace", class_alias, 1);
15753 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
15754 Set a fast tracepoint at specified location.\n\
15756 BREAK_ARGS_HELP ("ftrace") "\n\
15757 Do \"help tracepoints\" for info on other tracepoint commands."));
15758 set_cmd_completer (c, location_completer);
15760 c = add_com ("strace", class_breakpoint, strace_command, _("\
15761 Set a static tracepoint at location or marker.\n\
15763 strace [LOCATION] [if CONDITION]\n\
15764 LOCATION may be a linespec, explicit, or address location (described below) \n\
15765 or -m MARKER_ID.\n\n\
15766 If a marker id is specified, probe the marker with that name. With\n\
15767 no LOCATION, uses current execution address of the selected stack frame.\n\
15768 Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
15769 This collects arbitrary user data passed in the probe point call to the\n\
15770 tracing library. You can inspect it when analyzing the trace buffer,\n\
15771 by printing the $_sdata variable like any other convenience variable.\n\
15773 CONDITION is a boolean expression.\n\
15774 \n" LOCATION_HELP_STRING "\n\n\
15775 Multiple tracepoints at one place are permitted, and useful if their\n\
15776 conditions are different.\n\
15778 Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
15779 Do \"help tracepoints\" for info on other tracepoint commands."));
15780 set_cmd_completer (c, location_completer);
15782 add_info ("tracepoints", info_tracepoints_command, _("\
15783 Status of specified tracepoints (all tracepoints if no argument).\n\
15784 Convenience variable \"$tpnum\" contains the number of the\n\
15785 last tracepoint set."));
15787 add_info_alias ("tp", "tracepoints", 1);
15789 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
15790 Delete specified tracepoints.\n\
15791 Arguments are tracepoint numbers, separated by spaces.\n\
15792 No argument means delete all tracepoints."),
15794 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
15796 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
15797 Disable specified tracepoints.\n\
15798 Arguments are tracepoint numbers, separated by spaces.\n\
15799 No argument means disable all tracepoints."),
15801 deprecate_cmd (c, "disable");
15803 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
15804 Enable specified tracepoints.\n\
15805 Arguments are tracepoint numbers, separated by spaces.\n\
15806 No argument means enable all tracepoints."),
15808 deprecate_cmd (c, "enable");
15810 add_com ("passcount", class_trace, trace_pass_command, _("\
15811 Set the passcount for a tracepoint.\n\
15812 The trace will end when the tracepoint has been passed 'count' times.\n\
15813 Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
15814 if TPNUM is omitted, passcount refers to the last tracepoint defined."));
15816 add_prefix_cmd ("save", class_breakpoint, save_command,
15817 _("Save breakpoint definitions as a script."),
15818 &save_cmdlist, "save ",
15819 0/*allow-unknown*/, &cmdlist);
15821 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
15822 Save current breakpoint definitions as a script.\n\
15823 This includes all types of breakpoints (breakpoints, watchpoints,\n\
15824 catchpoints, tracepoints). Use the 'source' command in another debug\n\
15825 session to restore them."),
15827 set_cmd_completer (c, filename_completer);
15829 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
15830 Save current tracepoint definitions as a script.\n\
15831 Use the 'source' command in another debug session to restore them."),
15833 set_cmd_completer (c, filename_completer);
15835 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
15836 deprecate_cmd (c, "save tracepoints");
15838 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
15839 Breakpoint specific settings\n\
15840 Configure various breakpoint-specific variables such as\n\
15841 pending breakpoint behavior"),
15842 &breakpoint_set_cmdlist, "set breakpoint ",
15843 0/*allow-unknown*/, &setlist);
15844 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
15845 Breakpoint specific settings\n\
15846 Configure various breakpoint-specific variables such as\n\
15847 pending breakpoint behavior"),
15848 &breakpoint_show_cmdlist, "show breakpoint ",
15849 0/*allow-unknown*/, &showlist);
15851 add_setshow_auto_boolean_cmd ("pending", no_class,
15852 &pending_break_support, _("\
15853 Set debugger's behavior regarding pending breakpoints."), _("\
15854 Show debugger's behavior regarding pending breakpoints."), _("\
15855 If on, an unrecognized breakpoint location will cause gdb to create a\n\
15856 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
15857 an error. If auto, an unrecognized breakpoint location results in a\n\
15858 user-query to see if a pending breakpoint should be created."),
15860 show_pending_break_support,
15861 &breakpoint_set_cmdlist,
15862 &breakpoint_show_cmdlist);
15864 pending_break_support = AUTO_BOOLEAN_AUTO;
15866 add_setshow_boolean_cmd ("auto-hw", no_class,
15867 &automatic_hardware_breakpoints, _("\
15868 Set automatic usage of hardware breakpoints."), _("\
15869 Show automatic usage of hardware breakpoints."), _("\
15870 If set, the debugger will automatically use hardware breakpoints for\n\
15871 breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
15872 a warning will be emitted for such breakpoints."),
15874 show_automatic_hardware_breakpoints,
15875 &breakpoint_set_cmdlist,
15876 &breakpoint_show_cmdlist);
15878 add_setshow_boolean_cmd ("always-inserted", class_support,
15879 &always_inserted_mode, _("\
15880 Set mode for inserting breakpoints."), _("\
15881 Show mode for inserting breakpoints."), _("\
15882 When this mode is on, breakpoints are inserted immediately as soon as\n\
15883 they're created, kept inserted even when execution stops, and removed\n\
15884 only when the user deletes them. When this mode is off (the default),\n\
15885 breakpoints are inserted only when execution continues, and removed\n\
15886 when execution stops."),
15888 &show_always_inserted_mode,
15889 &breakpoint_set_cmdlist,
15890 &breakpoint_show_cmdlist);
15892 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
15893 condition_evaluation_enums,
15894 &condition_evaluation_mode_1, _("\
15895 Set mode of breakpoint condition evaluation."), _("\
15896 Show mode of breakpoint condition evaluation."), _("\
15897 When this is set to \"host\", breakpoint conditions will be\n\
15898 evaluated on the host's side by GDB. When it is set to \"target\",\n\
15899 breakpoint conditions will be downloaded to the target (if the target\n\
15900 supports such feature) and conditions will be evaluated on the target's side.\n\
15901 If this is set to \"auto\" (default), this will be automatically set to\n\
15902 \"target\" if it supports condition evaluation, otherwise it will\n\
15903 be set to \"gdb\""),
15904 &set_condition_evaluation_mode,
15905 &show_condition_evaluation_mode,
15906 &breakpoint_set_cmdlist,
15907 &breakpoint_show_cmdlist);
15909 add_com ("break-range", class_breakpoint, break_range_command, _("\
15910 Set a breakpoint for an address range.\n\
15911 break-range START-LOCATION, END-LOCATION\n\
15912 where START-LOCATION and END-LOCATION can be one of the following:\n\
15913 LINENUM, for that line in the current file,\n\
15914 FILE:LINENUM, for that line in that file,\n\
15915 +OFFSET, for that number of lines after the current line\n\
15916 or the start of the range\n\
15917 FUNCTION, for the first line in that function,\n\
15918 FILE:FUNCTION, to distinguish among like-named static functions.\n\
15919 *ADDRESS, for the instruction at that address.\n\
15921 The breakpoint will stop execution of the inferior whenever it executes\n\
15922 an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
15923 range (including START-LOCATION and END-LOCATION)."));
15925 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
15926 Set a dynamic printf at specified location.\n\
15927 dprintf location,format string,arg1,arg2,...\n\
15928 location may be a linespec, explicit, or address location.\n"
15929 "\n" LOCATION_HELP_STRING));
15930 set_cmd_completer (c, location_completer);
15932 add_setshow_enum_cmd ("dprintf-style", class_support,
15933 dprintf_style_enums, &dprintf_style, _("\
15934 Set the style of usage for dynamic printf."), _("\
15935 Show the style of usage for dynamic printf."), _("\
15936 This setting chooses how GDB will do a dynamic printf.\n\
15937 If the value is \"gdb\", then the printing is done by GDB to its own\n\
15938 console, as with the \"printf\" command.\n\
15939 If the value is \"call\", the print is done by calling a function in your\n\
15940 program; by default printf(), but you can choose a different function or\n\
15941 output stream by setting dprintf-function and dprintf-channel."),
15942 update_dprintf_commands, NULL,
15943 &setlist, &showlist);
15945 dprintf_function = xstrdup ("printf");
15946 add_setshow_string_cmd ("dprintf-function", class_support,
15947 &dprintf_function, _("\
15948 Set the function to use for dynamic printf"), _("\
15949 Show the function to use for dynamic printf"), NULL,
15950 update_dprintf_commands, NULL,
15951 &setlist, &showlist);
15953 dprintf_channel = xstrdup ("");
15954 add_setshow_string_cmd ("dprintf-channel", class_support,
15955 &dprintf_channel, _("\
15956 Set the channel to use for dynamic printf"), _("\
15957 Show the channel to use for dynamic printf"), NULL,
15958 update_dprintf_commands, NULL,
15959 &setlist, &showlist);
15961 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
15962 &disconnected_dprintf, _("\
15963 Set whether dprintf continues after GDB disconnects."), _("\
15964 Show whether dprintf continues after GDB disconnects."), _("\
15965 Use this to let dprintf commands continue to hit and produce output\n\
15966 even if GDB disconnects or detaches from the target."),
15969 &setlist, &showlist);
15971 add_com ("agent-printf", class_vars, agent_printf_command, _("\
15972 agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
15973 (target agent only) This is useful for formatted output in user-defined commands."));
15975 automatic_hardware_breakpoints = 1;
15977 gdb::observers::about_to_proceed.attach (breakpoint_about_to_proceed);
15978 gdb::observers::thread_exit.attach (remove_threaded_breakpoints);