Replace some uses of xstrprintf with string_printf
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
e2882c85 3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
a6d9a66e 21#include "arch-utils.h"
c906108c 22#include <ctype.h>
776592bf 23#include "hashtab.h"
c906108c
SS
24#include "symtab.h"
25#include "frame.h"
26#include "breakpoint.h"
1042e4c0 27#include "tracepoint.h"
c906108c
SS
28#include "gdbtypes.h"
29#include "expression.h"
30#include "gdbcore.h"
31#include "gdbcmd.h"
32#include "value.h"
33#include "command.h"
34#include "inferior.h"
45741a9c 35#include "infrun.h"
c906108c
SS
36#include "gdbthread.h"
37#include "target.h"
38#include "language.h"
50f182aa 39#include "gdb-demangle.h"
0ba1096a 40#include "filenames.h"
c906108c
SS
41#include "annotate.h"
42#include "symfile.h"
43#include "objfiles.h"
0378c332 44#include "source.h"
c5f0f3d0 45#include "linespec.h"
c94fdfd0 46#include "completer.h"
8b93c638 47#include "ui-out.h"
e1507482 48#include "cli/cli-script.h"
fe898f56 49#include "block.h"
a77053c2 50#include "solib.h"
84acb35a 51#include "solist.h"
76727919 52#include "observable.h"
765dc015 53#include "memattr.h"
f7f9143b 54#include "ada-lang.h"
d1aa2f50 55#include "top.h"
79a45b7d 56#include "valprint.h"
4efc6507 57#include "jit.h"
65d79d4b 58#include "parser-defs.h"
55aa24fb
SDJ
59#include "gdb_regex.h"
60#include "probe.h"
e9cafbcc 61#include "cli/cli-utils.h"
be34f849 62#include "continuations.h"
1bfeeb0f
JL
63#include "stack.h"
64#include "skip.h"
b775012e 65#include "ax-gdb.h"
e2e4d78b 66#include "dummy-frame.h"
5589af0e 67#include "interps.h"
d3ce09f5 68#include "format.h"
cfc31633 69#include "thread-fsm.h"
5d5658a1 70#include "tid-parse.h"
d3ce09f5 71
1042e4c0
SS
72/* readline include files */
73#include "readline/readline.h"
74#include "readline/history.h"
75
76/* readline defines this. */
77#undef savestring
78
034dad6f 79#include "mi/mi-common.h"
6dddc817 80#include "extension.h"
325fac50 81#include <algorithm>
5ed8105e 82#include "progspace-and-thread.h"
6c5b2ebe 83#include "common/array-view.h"
76f9c9cf 84#include "common/gdb_optional.h"
104c1213 85
e7e8980f
YQ
86/* Enums for exception-handling support. */
87enum exception_event_kind
88{
89 EX_EVENT_THROW,
591f19e8 90 EX_EVENT_RETHROW,
e7e8980f
YQ
91 EX_EVENT_CATCH
92};
93
4a64f543 94/* Prototypes for local functions. */
c906108c 95
896b6bda 96static void map_breakpoint_numbers (const char *,
48649e1b 97 gdb::function_view<void (breakpoint *)>);
c906108c 98
348d480f
PA
99static void breakpoint_re_set_default (struct breakpoint *);
100
f00aae0f
KS
101static void
102 create_sals_from_location_default (const struct event_location *location,
103 struct linespec_result *canonical,
104 enum bptype type_wanted);
983af33b
SDJ
105
106static void create_breakpoints_sal_default (struct gdbarch *,
107 struct linespec_result *,
e1e01040
PA
108 gdb::unique_xmalloc_ptr<char>,
109 gdb::unique_xmalloc_ptr<char>,
110 enum bptype,
983af33b
SDJ
111 enum bpdisp, int, int,
112 int,
113 const struct breakpoint_ops *,
44f238bb 114 int, int, int, unsigned);
983af33b 115
6c5b2ebe
PA
116static std::vector<symtab_and_line> decode_location_default
117 (struct breakpoint *b, const struct event_location *location,
118 struct program_space *search_pspace);
983af33b 119
a6535de1
TT
120static int can_use_hardware_watchpoint
121 (const std::vector<value_ref_ptr> &vals);
c906108c 122
a14ed312 123static void mention (struct breakpoint *);
c906108c 124
348d480f
PA
125static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
126 enum bptype,
c0a91b2b 127 const struct breakpoint_ops *);
3742cc8b
YQ
128static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
129 const struct symtab_and_line *);
130
4a64f543
MS
131/* This function is used in gdbtk sources and thus can not be made
132 static. */
63c252f8 133struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 134 struct symtab_and_line,
c0a91b2b
TT
135 enum bptype,
136 const struct breakpoint_ops *);
c906108c 137
06edf0c0
PA
138static struct breakpoint *
139 momentary_breakpoint_from_master (struct breakpoint *orig,
140 enum bptype type,
a1aa2221
LM
141 const struct breakpoint_ops *ops,
142 int loc_enabled);
06edf0c0 143
76897487
KB
144static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
145
a6d9a66e
UW
146static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
147 CORE_ADDR bpaddr,
88f7da05 148 enum bptype bptype);
76897487 149
6c95b8df
PA
150static void describe_other_breakpoints (struct gdbarch *,
151 struct program_space *, CORE_ADDR,
5af949e3 152 struct obj_section *, int);
c906108c 153
85d721b8
PA
154static int watchpoint_locations_match (struct bp_location *loc1,
155 struct bp_location *loc2);
156
f1310107 157static int breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 158 const struct address_space *aspace,
f1310107
TJB
159 CORE_ADDR addr);
160
d35ae833 161static int breakpoint_location_address_range_overlap (struct bp_location *,
accd0bcd 162 const address_space *,
d35ae833
PA
163 CORE_ADDR, int);
164
834c0d03 165static int remove_breakpoint (struct bp_location *);
b2b6a7da 166static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
c906108c 167
e514a9d6 168static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 169
a14ed312 170static int hw_breakpoint_used_count (void);
c906108c 171
a1398e0c
PA
172static int hw_watchpoint_use_count (struct breakpoint *);
173
174static int hw_watchpoint_used_count_others (struct breakpoint *except,
175 enum bptype type,
176 int *other_type_used);
c906108c 177
816338b5
SS
178static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
179 int count);
c906108c 180
fe3f5fa8 181static void free_bp_location (struct bp_location *loc);
f431efe5
PA
182static void incref_bp_location (struct bp_location *loc);
183static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 184
39d61571 185static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 186
44702360
PA
187/* update_global_location_list's modes of operation wrt to whether to
188 insert locations now. */
189enum ugll_insert_mode
190{
191 /* Don't insert any breakpoint locations into the inferior, only
192 remove already-inserted locations that no longer should be
193 inserted. Functions that delete a breakpoint or breakpoints
194 should specify this mode, so that deleting a breakpoint doesn't
195 have the side effect of inserting the locations of other
196 breakpoints that are marked not-inserted, but should_be_inserted
197 returns true on them.
198
199 This behavior is useful is situations close to tear-down -- e.g.,
200 after an exec, while the target still has execution, but
201 breakpoint shadows of the previous executable image should *NOT*
202 be restored to the new image; or before detaching, where the
203 target still has execution and wants to delete breakpoints from
204 GDB's lists, and all breakpoints had already been removed from
205 the inferior. */
206 UGLL_DONT_INSERT,
207
a25a5a45
PA
208 /* May insert breakpoints iff breakpoints_should_be_inserted_now
209 claims breakpoints should be inserted now. */
04086b45
PA
210 UGLL_MAY_INSERT,
211
a25a5a45
PA
212 /* Insert locations now, irrespective of
213 breakpoints_should_be_inserted_now. E.g., say all threads are
214 stopped right now, and the user did "continue". We need to
215 insert breakpoints _before_ resuming the target, but
216 UGLL_MAY_INSERT wouldn't insert them, because
217 breakpoints_should_be_inserted_now returns false at that point,
218 as no thread is running yet. */
04086b45 219 UGLL_INSERT
44702360
PA
220};
221
222static void update_global_location_list (enum ugll_insert_mode);
a5606eee 223
44702360 224static void update_global_location_list_nothrow (enum ugll_insert_mode);
74960c60 225
d77f58be 226static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60
VP
227
228static void insert_breakpoint_locations (void);
a5606eee 229
0b39b52e 230static void trace_pass_command (const char *, int);
1042e4c0 231
558a9d82
YQ
232static void set_tracepoint_count (int num);
233
9c06b0b4
TJB
234static int is_masked_watchpoint (const struct breakpoint *b);
235
b775012e
LM
236static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
237
983af33b
SDJ
238/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
239 otherwise. */
240
241static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 242
2060206e
PA
243/* The breakpoint_ops structure to be inherited by all breakpoint_ops
244 that are implemented on top of software or hardware breakpoints
245 (user breakpoints, internal and momentary breakpoints, etc.). */
246static struct breakpoint_ops bkpt_base_breakpoint_ops;
247
248/* Internal breakpoints class type. */
06edf0c0 249static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
250
251/* Momentary breakpoints class type. */
06edf0c0
PA
252static struct breakpoint_ops momentary_breakpoint_ops;
253
2060206e
PA
254/* The breakpoint_ops structure to be used in regular user created
255 breakpoints. */
256struct breakpoint_ops bkpt_breakpoint_ops;
257
55aa24fb
SDJ
258/* Breakpoints set on probes. */
259static struct breakpoint_ops bkpt_probe_breakpoint_ops;
260
e7e0cddf 261/* Dynamic printf class type. */
c5867ab6 262struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 263
d3ce09f5
SS
264/* The style in which to perform a dynamic printf. This is a user
265 option because different output options have different tradeoffs;
266 if GDB does the printing, there is better error handling if there
267 is a problem with any of the arguments, but using an inferior
268 function lets you have special-purpose printers and sending of
269 output to the same place as compiled-in print functions. */
270
271static const char dprintf_style_gdb[] = "gdb";
272static const char dprintf_style_call[] = "call";
273static const char dprintf_style_agent[] = "agent";
274static const char *const dprintf_style_enums[] = {
275 dprintf_style_gdb,
276 dprintf_style_call,
277 dprintf_style_agent,
278 NULL
279};
280static const char *dprintf_style = dprintf_style_gdb;
281
282/* The function to use for dynamic printf if the preferred style is to
283 call into the inferior. The value is simply a string that is
284 copied into the command, so it can be anything that GDB can
285 evaluate to a callable address, not necessarily a function name. */
286
bde6261a 287static char *dprintf_function;
d3ce09f5
SS
288
289/* The channel to use for dynamic printf if the preferred style is to
290 call into the inferior; if a nonempty string, it will be passed to
291 the call as the first argument, with the format string as the
292 second. As with the dprintf function, this can be anything that
293 GDB knows how to evaluate, so in addition to common choices like
294 "stderr", this could be an app-specific expression like
295 "mystreams[curlogger]". */
296
bde6261a 297static char *dprintf_channel;
d3ce09f5
SS
298
299/* True if dprintf commands should continue to operate even if GDB
300 has disconnected. */
301static int disconnected_dprintf = 1;
302
5cea2a26
PA
303struct command_line *
304breakpoint_commands (struct breakpoint *b)
305{
d1b0a7bf 306 return b->commands ? b->commands.get () : NULL;
5cea2a26 307}
3daf8fe5 308
f3b1572e
PA
309/* Flag indicating that a command has proceeded the inferior past the
310 current breakpoint. */
311
312static int breakpoint_proceeded;
313
956a9fb9 314const char *
2cec12e5
AR
315bpdisp_text (enum bpdisp disp)
316{
4a64f543
MS
317 /* NOTE: the following values are a part of MI protocol and
318 represent values of 'disp' field returned when inferior stops at
319 a breakpoint. */
bc043ef3 320 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 321
2cec12e5
AR
322 return bpdisps[(int) disp];
323}
c906108c 324
4a64f543 325/* Prototypes for exported functions. */
c906108c 326/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 327 if such is available. */
c906108c
SS
328static int can_use_hw_watchpoints;
329
920d2a44
AC
330static void
331show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
332 struct cmd_list_element *c,
333 const char *value)
334{
3e43a32a
MS
335 fprintf_filtered (file,
336 _("Debugger's willingness to use "
337 "watchpoint hardware is %s.\n"),
920d2a44
AC
338 value);
339}
340
fa8d40ab
JJ
341/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
342 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 343 for unrecognized breakpoint locations.
fa8d40ab
JJ
344 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
345static enum auto_boolean pending_break_support;
920d2a44
AC
346static void
347show_pending_break_support (struct ui_file *file, int from_tty,
348 struct cmd_list_element *c,
349 const char *value)
350{
3e43a32a
MS
351 fprintf_filtered (file,
352 _("Debugger's behavior regarding "
353 "pending breakpoints is %s.\n"),
920d2a44
AC
354 value);
355}
fa8d40ab 356
765dc015 357/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 358 set with "break" but falling in read-only memory.
765dc015
VP
359 If 0, gdb will warn about such breakpoints, but won't automatically
360 use hardware breakpoints. */
361static int automatic_hardware_breakpoints;
362static void
363show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
364 struct cmd_list_element *c,
365 const char *value)
366{
3e43a32a
MS
367 fprintf_filtered (file,
368 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
369 value);
370}
371
a25a5a45
PA
372/* If on, GDB keeps breakpoints inserted even if the inferior is
373 stopped, and immediately inserts any new breakpoints as soon as
374 they're created. If off (default), GDB keeps breakpoints off of
375 the target as long as possible. That is, it delays inserting
376 breakpoints until the next resume, and removes them again when the
377 target fully stops. This is a bit safer in case GDB crashes while
378 processing user input. */
379static int always_inserted_mode = 0;
72d0e2c5 380
33e5cbd6 381static void
74960c60 382show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 383 struct cmd_list_element *c, const char *value)
74960c60 384{
a25a5a45
PA
385 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
386 value);
74960c60
VP
387}
388
b57bacec
PA
389/* See breakpoint.h. */
390
33e5cbd6 391int
a25a5a45 392breakpoints_should_be_inserted_now (void)
33e5cbd6 393{
a25a5a45
PA
394 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
395 {
396 /* If breakpoints are global, they should be inserted even if no
397 thread under gdb's control is running, or even if there are
398 no threads under GDB's control yet. */
399 return 1;
400 }
401 else if (target_has_execution)
402 {
372316f1
PA
403 struct thread_info *tp;
404
a25a5a45
PA
405 if (always_inserted_mode)
406 {
407 /* The user wants breakpoints inserted even if all threads
408 are stopped. */
409 return 1;
410 }
411
b57bacec
PA
412 if (threads_are_executing ())
413 return 1;
372316f1
PA
414
415 /* Don't remove breakpoints yet if, even though all threads are
416 stopped, we still have events to process. */
417 ALL_NON_EXITED_THREADS (tp)
418 if (tp->resumed
419 && tp->suspend.waitstatus_pending_p)
420 return 1;
a25a5a45
PA
421 }
422 return 0;
33e5cbd6 423}
765dc015 424
b775012e
LM
425static const char condition_evaluation_both[] = "host or target";
426
427/* Modes for breakpoint condition evaluation. */
428static const char condition_evaluation_auto[] = "auto";
429static const char condition_evaluation_host[] = "host";
430static const char condition_evaluation_target[] = "target";
431static const char *const condition_evaluation_enums[] = {
432 condition_evaluation_auto,
433 condition_evaluation_host,
434 condition_evaluation_target,
435 NULL
436};
437
438/* Global that holds the current mode for breakpoint condition evaluation. */
439static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
440
441/* Global that we use to display information to the user (gets its value from
442 condition_evaluation_mode_1. */
443static const char *condition_evaluation_mode = condition_evaluation_auto;
444
445/* Translate a condition evaluation mode MODE into either "host"
446 or "target". This is used mostly to translate from "auto" to the
447 real setting that is being used. It returns the translated
448 evaluation mode. */
449
450static const char *
451translate_condition_evaluation_mode (const char *mode)
452{
453 if (mode == condition_evaluation_auto)
454 {
455 if (target_supports_evaluation_of_breakpoint_conditions ())
456 return condition_evaluation_target;
457 else
458 return condition_evaluation_host;
459 }
460 else
461 return mode;
462}
463
464/* Discovers what condition_evaluation_auto translates to. */
465
466static const char *
467breakpoint_condition_evaluation_mode (void)
468{
469 return translate_condition_evaluation_mode (condition_evaluation_mode);
470}
471
472/* Return true if GDB should evaluate breakpoint conditions or false
473 otherwise. */
474
475static int
476gdb_evaluates_breakpoint_condition_p (void)
477{
478 const char *mode = breakpoint_condition_evaluation_mode ();
479
480 return (mode == condition_evaluation_host);
481}
482
c906108c
SS
483/* Are we executing breakpoint commands? */
484static int executing_breakpoint_commands;
485
c02f5703
MS
486/* Are overlay event breakpoints enabled? */
487static int overlay_events_enabled;
488
e09342b5
TJB
489/* See description in breakpoint.h. */
490int target_exact_watchpoints = 0;
491
c906108c 492/* Walk the following statement or block through all breakpoints.
e5dd4106 493 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 494 current breakpoint. */
c906108c 495
5c44784c 496#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 497
5c44784c
JM
498#define ALL_BREAKPOINTS_SAFE(B,TMP) \
499 for (B = breakpoint_chain; \
500 B ? (TMP=B->next, 1): 0; \
501 B = TMP)
c906108c 502
4a64f543
MS
503/* Similar iterator for the low-level breakpoints. SAFE variant is
504 not provided so update_global_location_list must not be called
505 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 506
876fa593 507#define ALL_BP_LOCATIONS(B,BP_TMP) \
f5336ca5
PA
508 for (BP_TMP = bp_locations; \
509 BP_TMP < bp_locations + bp_locations_count && (B = *BP_TMP);\
876fa593 510 BP_TMP++)
7cc221ef 511
b775012e
LM
512/* Iterates through locations with address ADDRESS for the currently selected
513 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
514 to where the loop should start from.
515 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
516 appropriate location to start with. */
517
518#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
519 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
520 BP_LOCP_TMP = BP_LOCP_START; \
521 BP_LOCP_START \
f5336ca5 522 && (BP_LOCP_TMP < bp_locations + bp_locations_count \
b775012e
LM
523 && (*BP_LOCP_TMP)->address == ADDRESS); \
524 BP_LOCP_TMP++)
525
1042e4c0
SS
526/* Iterator for tracepoints only. */
527
528#define ALL_TRACEPOINTS(B) \
529 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 530 if (is_tracepoint (B))
1042e4c0 531
7cc221ef 532/* Chains of all breakpoints defined. */
c906108c
SS
533
534struct breakpoint *breakpoint_chain;
535
f5336ca5 536/* Array is sorted by bp_locations_compare - primarily by the ADDRESS. */
876fa593 537
f5336ca5 538static struct bp_location **bp_locations;
876fa593 539
f5336ca5 540/* Number of elements of BP_LOCATIONS. */
876fa593 541
f5336ca5 542static unsigned bp_locations_count;
876fa593 543
4a64f543 544/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
f5336ca5 545 ADDRESS for the current elements of BP_LOCATIONS which get a valid
4a64f543 546 result from bp_location_has_shadow. You can use it for roughly
f5336ca5 547 limiting the subrange of BP_LOCATIONS to scan for shadow bytes for
4a64f543 548 an address you need to read. */
876fa593 549
f5336ca5 550static CORE_ADDR bp_locations_placed_address_before_address_max;
876fa593 551
4a64f543
MS
552/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
553 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
f5336ca5
PA
554 BP_LOCATIONS which get a valid result from bp_location_has_shadow.
555 You can use it for roughly limiting the subrange of BP_LOCATIONS to
4a64f543 556 scan for shadow bytes for an address you need to read. */
876fa593 557
f5336ca5 558static CORE_ADDR bp_locations_shadow_len_after_address_max;
7cc221ef 559
4a64f543 560/* The locations that no longer correspond to any breakpoint, unlinked
f5336ca5
PA
561 from the bp_locations array, but for which a hit may still be
562 reported by a target. */
1123588c 563static std::vector<bp_location *> moribund_locations;
20874c92 564
c906108c
SS
565/* Number of last breakpoint made. */
566
95a42b64
TT
567static int breakpoint_count;
568
86b17b60
PA
569/* The value of `breakpoint_count' before the last command that
570 created breakpoints. If the last (break-like) command created more
571 than one breakpoint, then the difference between BREAKPOINT_COUNT
572 and PREV_BREAKPOINT_COUNT is more than one. */
573static int prev_breakpoint_count;
c906108c 574
1042e4c0
SS
575/* Number of last tracepoint made. */
576
95a42b64 577static int tracepoint_count;
1042e4c0 578
6149aea9
PA
579static struct cmd_list_element *breakpoint_set_cmdlist;
580static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 581struct cmd_list_element *save_cmdlist;
6149aea9 582
badd37ce
SDJ
583/* See declaration at breakpoint.h. */
584
585struct breakpoint *
586breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
587 void *user_data)
588{
589 struct breakpoint *b = NULL;
590
591 ALL_BREAKPOINTS (b)
592 {
593 if (func (b, user_data) != 0)
594 break;
595 }
596
597 return b;
598}
599
468d015d
JJ
600/* Return whether a breakpoint is an active enabled breakpoint. */
601static int
602breakpoint_enabled (struct breakpoint *b)
603{
0d381245 604 return (b->enable_state == bp_enabled);
468d015d
JJ
605}
606
c906108c
SS
607/* Set breakpoint count to NUM. */
608
95a42b64 609static void
fba45db2 610set_breakpoint_count (int num)
c906108c 611{
86b17b60 612 prev_breakpoint_count = breakpoint_count;
c906108c 613 breakpoint_count = num;
4fa62494 614 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
615}
616
86b17b60
PA
617/* Used by `start_rbreak_breakpoints' below, to record the current
618 breakpoint count before "rbreak" creates any breakpoint. */
619static int rbreak_start_breakpoint_count;
620
95a42b64
TT
621/* Called at the start an "rbreak" command to record the first
622 breakpoint made. */
86b17b60 623
c80049d3 624scoped_rbreak_breakpoints::scoped_rbreak_breakpoints ()
95a42b64 625{
86b17b60 626 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
627}
628
629/* Called at the end of an "rbreak" command to record the last
630 breakpoint made. */
86b17b60 631
c80049d3 632scoped_rbreak_breakpoints::~scoped_rbreak_breakpoints ()
95a42b64 633{
86b17b60 634 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
635}
636
4a64f543 637/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
638
639void
fba45db2 640clear_breakpoint_hit_counts (void)
c906108c
SS
641{
642 struct breakpoint *b;
643
644 ALL_BREAKPOINTS (b)
645 b->hit_count = 0;
646}
647
c906108c 648\f
48cb2d85
VP
649/* Return the breakpoint with the specified number, or NULL
650 if the number does not refer to an existing breakpoint. */
651
652struct breakpoint *
653get_breakpoint (int num)
654{
655 struct breakpoint *b;
656
657 ALL_BREAKPOINTS (b)
658 if (b->number == num)
659 return b;
660
661 return NULL;
662}
5c44784c 663
c906108c 664\f
adc36818 665
b775012e
LM
666/* Mark locations as "conditions have changed" in case the target supports
667 evaluating conditions on its side. */
668
669static void
670mark_breakpoint_modified (struct breakpoint *b)
671{
672 struct bp_location *loc;
673
674 /* This is only meaningful if the target is
675 evaluating conditions and if the user has
676 opted for condition evaluation on the target's
677 side. */
678 if (gdb_evaluates_breakpoint_condition_p ()
679 || !target_supports_evaluation_of_breakpoint_conditions ())
680 return;
681
682 if (!is_breakpoint (b))
683 return;
684
685 for (loc = b->loc; loc; loc = loc->next)
686 loc->condition_changed = condition_modified;
687}
688
689/* Mark location as "conditions have changed" in case the target supports
690 evaluating conditions on its side. */
691
692static void
693mark_breakpoint_location_modified (struct bp_location *loc)
694{
695 /* This is only meaningful if the target is
696 evaluating conditions and if the user has
697 opted for condition evaluation on the target's
698 side. */
699 if (gdb_evaluates_breakpoint_condition_p ()
700 || !target_supports_evaluation_of_breakpoint_conditions ())
701
702 return;
703
704 if (!is_breakpoint (loc->owner))
705 return;
706
707 loc->condition_changed = condition_modified;
708}
709
710/* Sets the condition-evaluation mode using the static global
711 condition_evaluation_mode. */
712
713static void
eb4c3f4a 714set_condition_evaluation_mode (const char *args, int from_tty,
b775012e
LM
715 struct cmd_list_element *c)
716{
b775012e
LM
717 const char *old_mode, *new_mode;
718
719 if ((condition_evaluation_mode_1 == condition_evaluation_target)
720 && !target_supports_evaluation_of_breakpoint_conditions ())
721 {
722 condition_evaluation_mode_1 = condition_evaluation_mode;
723 warning (_("Target does not support breakpoint condition evaluation.\n"
724 "Using host evaluation mode instead."));
725 return;
726 }
727
728 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
729 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
730
abf1152a
JK
731 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
732 settings was "auto". */
733 condition_evaluation_mode = condition_evaluation_mode_1;
734
b775012e
LM
735 /* Only update the mode if the user picked a different one. */
736 if (new_mode != old_mode)
737 {
738 struct bp_location *loc, **loc_tmp;
739 /* If the user switched to a different evaluation mode, we
740 need to synch the changes with the target as follows:
741
742 "host" -> "target": Send all (valid) conditions to the target.
743 "target" -> "host": Remove all the conditions from the target.
744 */
745
b775012e
LM
746 if (new_mode == condition_evaluation_target)
747 {
748 /* Mark everything modified and synch conditions with the
749 target. */
750 ALL_BP_LOCATIONS (loc, loc_tmp)
751 mark_breakpoint_location_modified (loc);
752 }
753 else
754 {
755 /* Manually mark non-duplicate locations to synch conditions
756 with the target. We do this to remove all the conditions the
757 target knows about. */
758 ALL_BP_LOCATIONS (loc, loc_tmp)
759 if (is_breakpoint (loc->owner) && loc->inserted)
760 loc->needs_update = 1;
761 }
762
763 /* Do the update. */
44702360 764 update_global_location_list (UGLL_MAY_INSERT);
b775012e
LM
765 }
766
767 return;
768}
769
770/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
771 what "auto" is translating to. */
772
773static void
774show_condition_evaluation_mode (struct ui_file *file, int from_tty,
775 struct cmd_list_element *c, const char *value)
776{
777 if (condition_evaluation_mode == condition_evaluation_auto)
778 fprintf_filtered (file,
779 _("Breakpoint condition evaluation "
780 "mode is %s (currently %s).\n"),
781 value,
782 breakpoint_condition_evaluation_mode ());
783 else
784 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
785 value);
786}
787
788/* A comparison function for bp_location AP and BP that is used by
789 bsearch. This comparison function only cares about addresses, unlike
f5336ca5 790 the more general bp_locations_compare function. */
b775012e
LM
791
792static int
f5336ca5 793bp_locations_compare_addrs (const void *ap, const void *bp)
b775012e 794{
9a3c8263
SM
795 const struct bp_location *a = *(const struct bp_location **) ap;
796 const struct bp_location *b = *(const struct bp_location **) bp;
b775012e
LM
797
798 if (a->address == b->address)
799 return 0;
800 else
801 return ((a->address > b->address) - (a->address < b->address));
802}
803
804/* Helper function to skip all bp_locations with addresses
805 less than ADDRESS. It returns the first bp_location that
806 is greater than or equal to ADDRESS. If none is found, just
807 return NULL. */
808
809static struct bp_location **
810get_first_locp_gte_addr (CORE_ADDR address)
811{
812 struct bp_location dummy_loc;
813 struct bp_location *dummy_locp = &dummy_loc;
814 struct bp_location **locp_found = NULL;
815
816 /* Initialize the dummy location's address field. */
b775012e
LM
817 dummy_loc.address = address;
818
819 /* Find a close match to the first location at ADDRESS. */
9a3c8263 820 locp_found = ((struct bp_location **)
f5336ca5 821 bsearch (&dummy_locp, bp_locations, bp_locations_count,
9a3c8263 822 sizeof (struct bp_location **),
f5336ca5 823 bp_locations_compare_addrs));
b775012e
LM
824
825 /* Nothing was found, nothing left to do. */
826 if (locp_found == NULL)
827 return NULL;
828
829 /* We may have found a location that is at ADDRESS but is not the first in the
830 location's list. Go backwards (if possible) and locate the first one. */
f5336ca5 831 while ((locp_found - 1) >= bp_locations
b775012e
LM
832 && (*(locp_found - 1))->address == address)
833 locp_found--;
834
835 return locp_found;
836}
837
adc36818 838void
7a26bd4d 839set_breakpoint_condition (struct breakpoint *b, const char *exp,
adc36818
PM
840 int from_tty)
841{
3a5c3e22
PA
842 xfree (b->cond_string);
843 b->cond_string = NULL;
adc36818 844
3a5c3e22 845 if (is_watchpoint (b))
adc36818 846 {
3a5c3e22
PA
847 struct watchpoint *w = (struct watchpoint *) b;
848
4d01a485 849 w->cond_exp.reset ();
3a5c3e22
PA
850 }
851 else
852 {
853 struct bp_location *loc;
854
855 for (loc = b->loc; loc; loc = loc->next)
856 {
4d01a485 857 loc->cond.reset ();
b775012e
LM
858
859 /* No need to free the condition agent expression
860 bytecode (if we have one). We will handle this
861 when we go through update_global_location_list. */
3a5c3e22 862 }
adc36818 863 }
adc36818
PM
864
865 if (*exp == 0)
866 {
867 if (from_tty)
868 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
869 }
870 else
871 {
bbc13ae3 872 const char *arg = exp;
cc59ec59 873
adc36818
PM
874 /* I don't know if it matters whether this is the string the user
875 typed in or the decompiled expression. */
876 b->cond_string = xstrdup (arg);
877 b->condition_not_parsed = 0;
878
879 if (is_watchpoint (b))
880 {
3a5c3e22
PA
881 struct watchpoint *w = (struct watchpoint *) b;
882
aee1fcdf 883 innermost_block.reset ();
adc36818 884 arg = exp;
1bb9788d 885 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
adc36818
PM
886 if (*arg)
887 error (_("Junk at end of expression"));
aee1fcdf 888 w->cond_exp_valid_block = innermost_block.block ();
adc36818
PM
889 }
890 else
891 {
3a5c3e22
PA
892 struct bp_location *loc;
893
adc36818
PM
894 for (loc = b->loc; loc; loc = loc->next)
895 {
896 arg = exp;
897 loc->cond =
1bb9788d
TT
898 parse_exp_1 (&arg, loc->address,
899 block_for_pc (loc->address), 0);
adc36818
PM
900 if (*arg)
901 error (_("Junk at end of expression"));
902 }
903 }
904 }
b775012e
LM
905 mark_breakpoint_modified (b);
906
76727919 907 gdb::observers::breakpoint_modified.notify (b);
adc36818
PM
908}
909
d55637df
TT
910/* Completion for the "condition" command. */
911
eb3ff9a5 912static void
6f937416 913condition_completer (struct cmd_list_element *cmd,
eb3ff9a5 914 completion_tracker &tracker,
6f937416 915 const char *text, const char *word)
d55637df 916{
6f937416 917 const char *space;
d55637df 918
f1735a53
TT
919 text = skip_spaces (text);
920 space = skip_to_space (text);
d55637df
TT
921 if (*space == '\0')
922 {
923 int len;
924 struct breakpoint *b;
d55637df
TT
925
926 if (text[0] == '$')
927 {
928 /* We don't support completion of history indices. */
eb3ff9a5
PA
929 if (!isdigit (text[1]))
930 complete_internalvar (tracker, &text[1]);
931 return;
d55637df
TT
932 }
933
934 /* We're completing the breakpoint number. */
935 len = strlen (text);
936
937 ALL_BREAKPOINTS (b)
58ce7251
SDJ
938 {
939 char number[50];
940
941 xsnprintf (number, sizeof (number), "%d", b->number);
942
943 if (strncmp (number, text, len) == 0)
eb3ff9a5
PA
944 {
945 gdb::unique_xmalloc_ptr<char> copy (xstrdup (number));
946 tracker.add_completion (std::move (copy));
947 }
58ce7251 948 }
d55637df 949
eb3ff9a5 950 return;
d55637df
TT
951 }
952
953 /* We're completing the expression part. */
f1735a53 954 text = skip_spaces (space);
eb3ff9a5 955 expression_completer (cmd, tracker, text, word);
d55637df
TT
956}
957
c906108c
SS
958/* condition N EXP -- set break condition of breakpoint N to EXP. */
959
960static void
0b39b52e 961condition_command (const char *arg, int from_tty)
c906108c 962{
52f0bd74 963 struct breakpoint *b;
0b39b52e 964 const char *p;
52f0bd74 965 int bnum;
c906108c
SS
966
967 if (arg == 0)
e2e0b3e5 968 error_no_arg (_("breakpoint number"));
c906108c
SS
969
970 p = arg;
971 bnum = get_number (&p);
5c44784c 972 if (bnum == 0)
8a3fe4f8 973 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
974
975 ALL_BREAKPOINTS (b)
976 if (b->number == bnum)
2f069f6f 977 {
6dddc817
DE
978 /* Check if this breakpoint has a "stop" method implemented in an
979 extension language. This method and conditions entered into GDB
980 from the CLI are mutually exclusive. */
981 const struct extension_language_defn *extlang
982 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
983
984 if (extlang != NULL)
985 {
986 error (_("Only one stop condition allowed. There is currently"
987 " a %s stop condition defined for this breakpoint."),
988 ext_lang_capitalized_name (extlang));
989 }
2566ad2d 990 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
991
992 if (is_breakpoint (b))
44702360 993 update_global_location_list (UGLL_MAY_INSERT);
b775012e 994
2f069f6f
JB
995 return;
996 }
c906108c 997
8a3fe4f8 998 error (_("No breakpoint number %d."), bnum);
c906108c
SS
999}
1000
a7bdde9e
VP
1001/* Check that COMMAND do not contain commands that are suitable
1002 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
1003 Throw if any such commands is found. */
1004
a7bdde9e
VP
1005static void
1006check_no_tracepoint_commands (struct command_line *commands)
1007{
1008 struct command_line *c;
cc59ec59 1009
a7bdde9e
VP
1010 for (c = commands; c; c = c->next)
1011 {
a7bdde9e 1012 if (c->control_type == while_stepping_control)
3e43a32a
MS
1013 error (_("The 'while-stepping' command can "
1014 "only be used for tracepoints"));
a7bdde9e 1015
12973681
TT
1016 check_no_tracepoint_commands (c->body_list_0.get ());
1017 check_no_tracepoint_commands (c->body_list_1.get ());
a7bdde9e
VP
1018
1019 /* Not that command parsing removes leading whitespace and comment
4a64f543 1020 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1021 command directly. */
1022 if (strstr (c->line, "collect ") == c->line)
1023 error (_("The 'collect' command can only be used for tracepoints"));
1024
51661e93
VP
1025 if (strstr (c->line, "teval ") == c->line)
1026 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1027 }
1028}
1029
c1fc2657 1030struct longjmp_breakpoint : public breakpoint
3b0871f4 1031{
c1fc2657 1032 ~longjmp_breakpoint () override;
3b0871f4
SM
1033};
1034
d77f58be
SS
1035/* Encapsulate tests for different types of tracepoints. */
1036
3b0871f4
SM
1037static bool
1038is_tracepoint_type (bptype type)
d9b3f62e
PA
1039{
1040 return (type == bp_tracepoint
1041 || type == bp_fast_tracepoint
1042 || type == bp_static_tracepoint);
1043}
1044
3b0871f4
SM
1045static bool
1046is_longjmp_type (bptype type)
1047{
1048 return type == bp_longjmp || type == bp_exception;
1049}
1050
a7bdde9e 1051int
d77f58be 1052is_tracepoint (const struct breakpoint *b)
a7bdde9e 1053{
d9b3f62e 1054 return is_tracepoint_type (b->type);
a7bdde9e 1055}
d9b3f62e 1056
a5e364af
SM
1057/* Factory function to create an appropriate instance of breakpoint given
1058 TYPE. */
1059
1060static std::unique_ptr<breakpoint>
1061new_breakpoint_from_type (bptype type)
1062{
1063 breakpoint *b;
1064
1065 if (is_tracepoint_type (type))
c1fc2657 1066 b = new tracepoint ();
3b0871f4 1067 else if (is_longjmp_type (type))
c1fc2657 1068 b = new longjmp_breakpoint ();
a5e364af
SM
1069 else
1070 b = new breakpoint ();
1071
1072 return std::unique_ptr<breakpoint> (b);
1073}
1074
e5dd4106 1075/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1076 breakpoint. This function will throw an exception if a problem is
1077 found. */
48cb2d85 1078
95a42b64
TT
1079static void
1080validate_commands_for_breakpoint (struct breakpoint *b,
1081 struct command_line *commands)
48cb2d85 1082{
d77f58be 1083 if (is_tracepoint (b))
a7bdde9e 1084 {
c9a6ce02 1085 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1086 struct command_line *c;
1087 struct command_line *while_stepping = 0;
c9a6ce02
PA
1088
1089 /* Reset the while-stepping step count. The previous commands
1090 might have included a while-stepping action, while the new
1091 ones might not. */
1092 t->step_count = 0;
1093
1094 /* We need to verify that each top-level element of commands is
1095 valid for tracepoints, that there's at most one
1096 while-stepping element, and that the while-stepping's body
1097 has valid tracing commands excluding nested while-stepping.
1098 We also need to validate the tracepoint action line in the
1099 context of the tracepoint --- validate_actionline actually
1100 has side effects, like setting the tracepoint's
1101 while-stepping STEP_COUNT, in addition to checking if the
1102 collect/teval actions parse and make sense in the
1103 tracepoint's context. */
a7bdde9e
VP
1104 for (c = commands; c; c = c->next)
1105 {
a7bdde9e
VP
1106 if (c->control_type == while_stepping_control)
1107 {
1108 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1109 error (_("The 'while-stepping' command "
1110 "cannot be used for fast tracepoint"));
0fb4aa4b 1111 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1112 error (_("The 'while-stepping' command "
1113 "cannot be used for static tracepoint"));
a7bdde9e
VP
1114
1115 if (while_stepping)
3e43a32a
MS
1116 error (_("The 'while-stepping' command "
1117 "can be used only once"));
a7bdde9e
VP
1118 else
1119 while_stepping = c;
1120 }
c9a6ce02
PA
1121
1122 validate_actionline (c->line, b);
a7bdde9e
VP
1123 }
1124 if (while_stepping)
1125 {
1126 struct command_line *c2;
1127
12973681
TT
1128 gdb_assert (while_stepping->body_list_1 == nullptr);
1129 c2 = while_stepping->body_list_0.get ();
a7bdde9e
VP
1130 for (; c2; c2 = c2->next)
1131 {
a7bdde9e
VP
1132 if (c2->control_type == while_stepping_control)
1133 error (_("The 'while-stepping' command cannot be nested"));
1134 }
1135 }
1136 }
1137 else
1138 {
1139 check_no_tracepoint_commands (commands);
1140 }
95a42b64
TT
1141}
1142
0fb4aa4b
PA
1143/* Return a vector of all the static tracepoints set at ADDR. The
1144 caller is responsible for releasing the vector. */
1145
f51e0e20 1146std::vector<breakpoint *>
0fb4aa4b
PA
1147static_tracepoints_here (CORE_ADDR addr)
1148{
1149 struct breakpoint *b;
f51e0e20 1150 std::vector<breakpoint *> found;
0fb4aa4b
PA
1151 struct bp_location *loc;
1152
1153 ALL_BREAKPOINTS (b)
1154 if (b->type == bp_static_tracepoint)
1155 {
1156 for (loc = b->loc; loc; loc = loc->next)
1157 if (loc->address == addr)
f51e0e20 1158 found.push_back (b);
0fb4aa4b
PA
1159 }
1160
1161 return found;
1162}
1163
95a42b64 1164/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1165 validate that only allowed commands are included. */
95a42b64
TT
1166
1167void
4a64f543 1168breakpoint_set_commands (struct breakpoint *b,
12973681 1169 counted_command_line &&commands)
95a42b64 1170{
93921405 1171 validate_commands_for_breakpoint (b, commands.get ());
a7bdde9e 1172
d1b0a7bf 1173 b->commands = std::move (commands);
76727919 1174 gdb::observers::breakpoint_modified.notify (b);
48cb2d85
VP
1175}
1176
45a43567
TT
1177/* Set the internal `silent' flag on the breakpoint. Note that this
1178 is not the same as the "silent" that may appear in the breakpoint's
1179 commands. */
1180
1181void
1182breakpoint_set_silent (struct breakpoint *b, int silent)
1183{
1184 int old_silent = b->silent;
1185
1186 b->silent = silent;
1187 if (old_silent != silent)
76727919 1188 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1189}
1190
1191/* Set the thread for this breakpoint. If THREAD is -1, make the
1192 breakpoint work for any thread. */
1193
1194void
1195breakpoint_set_thread (struct breakpoint *b, int thread)
1196{
1197 int old_thread = b->thread;
1198
1199 b->thread = thread;
1200 if (old_thread != thread)
76727919 1201 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1202}
1203
1204/* Set the task for this breakpoint. If TASK is 0, make the
1205 breakpoint work for any task. */
1206
1207void
1208breakpoint_set_task (struct breakpoint *b, int task)
1209{
1210 int old_task = b->task;
1211
1212 b->task = task;
1213 if (old_task != task)
76727919 1214 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1215}
1216
95a42b64 1217static void
896b6bda 1218commands_command_1 (const char *arg, int from_tty,
4a64f543 1219 struct command_line *control)
95a42b64 1220{
d1b0a7bf 1221 counted_command_line cmd;
95a42b64 1222
896b6bda
PA
1223 std::string new_arg;
1224
95a42b64
TT
1225 if (arg == NULL || !*arg)
1226 {
86b17b60 1227 if (breakpoint_count - prev_breakpoint_count > 1)
896b6bda
PA
1228 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1229 breakpoint_count);
95a42b64 1230 else if (breakpoint_count > 0)
896b6bda 1231 new_arg = string_printf ("%d", breakpoint_count);
48649e1b
TT
1232 arg = new_arg.c_str ();
1233 }
1234
1235 map_breakpoint_numbers
1236 (arg, [&] (breakpoint *b)
1237 {
1238 if (cmd == NULL)
1239 {
48649e1b 1240 if (control != NULL)
12973681 1241 cmd = control->body_list_0;
48649e1b
TT
1242 else
1243 {
81b1e71c
TT
1244 std::string str
1245 = string_printf (_("Type commands for breakpoint(s) "
1246 "%s, one per line."),
1247 arg);
48649e1b 1248
60b3cef2
TT
1249 auto do_validate = [=] (const char *line)
1250 {
1251 validate_actionline (line, b);
1252 };
1253 gdb::function_view<void (const char *)> validator;
1254 if (is_tracepoint (b))
1255 validator = do_validate;
1256
1257 cmd = read_command_lines (str.c_str (), from_tty, 1, validator);
48649e1b 1258 }
48649e1b
TT
1259 }
1260
1261 /* If a breakpoint was on the list more than once, we don't need to
1262 do anything. */
1263 if (b->commands != cmd)
1264 {
d1b0a7bf 1265 validate_commands_for_breakpoint (b, cmd.get ());
48649e1b 1266 b->commands = cmd;
76727919 1267 gdb::observers::breakpoint_modified.notify (b);
48649e1b
TT
1268 }
1269 });
95a42b64
TT
1270}
1271
1272static void
0b39b52e 1273commands_command (const char *arg, int from_tty)
95a42b64
TT
1274{
1275 commands_command_1 (arg, from_tty, NULL);
c906108c 1276}
40c03ae8
EZ
1277
1278/* Like commands_command, but instead of reading the commands from
1279 input stream, takes them from an already parsed command structure.
1280
1281 This is used by cli-script.c to DTRT with breakpoint commands
1282 that are part of if and while bodies. */
1283enum command_control_type
896b6bda 1284commands_from_control_command (const char *arg, struct command_line *cmd)
40c03ae8 1285{
95a42b64
TT
1286 commands_command_1 (arg, 0, cmd);
1287 return simple_control;
40c03ae8 1288}
876fa593
JK
1289
1290/* Return non-zero if BL->TARGET_INFO contains valid information. */
1291
1292static int
1293bp_location_has_shadow (struct bp_location *bl)
1294{
1295 if (bl->loc_type != bp_loc_software_breakpoint)
1296 return 0;
1297 if (!bl->inserted)
1298 return 0;
1299 if (bl->target_info.shadow_len == 0)
e5dd4106 1300 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1301 return 0;
1302 return 1;
1303}
1304
9d497a19
PA
1305/* Update BUF, which is LEN bytes read from the target address
1306 MEMADDR, by replacing a memory breakpoint with its shadowed
1307 contents.
1308
1309 If READBUF is not NULL, this buffer must not overlap with the of
1310 the breakpoint location's shadow_contents buffer. Otherwise, a
1311 failed assertion internal error will be raised. */
1312
1313static void
1314one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1315 const gdb_byte *writebuf_org,
1316 ULONGEST memaddr, LONGEST len,
1317 struct bp_target_info *target_info,
1318 struct gdbarch *gdbarch)
1319{
1320 /* Now do full processing of the found relevant range of elements. */
1321 CORE_ADDR bp_addr = 0;
1322 int bp_size = 0;
1323 int bptoffset = 0;
1324
1325 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1326 current_program_space->aspace, 0))
1327 {
1328 /* The breakpoint is inserted in a different address space. */
1329 return;
1330 }
1331
1332 /* Addresses and length of the part of the breakpoint that
1333 we need to copy. */
1334 bp_addr = target_info->placed_address;
1335 bp_size = target_info->shadow_len;
1336
1337 if (bp_addr + bp_size <= memaddr)
1338 {
1339 /* The breakpoint is entirely before the chunk of memory we are
1340 reading. */
1341 return;
1342 }
1343
1344 if (bp_addr >= memaddr + len)
1345 {
1346 /* The breakpoint is entirely after the chunk of memory we are
1347 reading. */
1348 return;
1349 }
1350
1351 /* Offset within shadow_contents. */
1352 if (bp_addr < memaddr)
1353 {
1354 /* Only copy the second part of the breakpoint. */
1355 bp_size -= memaddr - bp_addr;
1356 bptoffset = memaddr - bp_addr;
1357 bp_addr = memaddr;
1358 }
1359
1360 if (bp_addr + bp_size > memaddr + len)
1361 {
1362 /* Only copy the first part of the breakpoint. */
1363 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1364 }
1365
1366 if (readbuf != NULL)
1367 {
1368 /* Verify that the readbuf buffer does not overlap with the
1369 shadow_contents buffer. */
1370 gdb_assert (target_info->shadow_contents >= readbuf + len
1371 || readbuf >= (target_info->shadow_contents
1372 + target_info->shadow_len));
1373
1374 /* Update the read buffer with this inserted breakpoint's
1375 shadow. */
1376 memcpy (readbuf + bp_addr - memaddr,
1377 target_info->shadow_contents + bptoffset, bp_size);
1378 }
1379 else
1380 {
1381 const unsigned char *bp;
0d5ed153
MR
1382 CORE_ADDR addr = target_info->reqstd_address;
1383 int placed_size;
9d497a19
PA
1384
1385 /* Update the shadow with what we want to write to memory. */
1386 memcpy (target_info->shadow_contents + bptoffset,
1387 writebuf_org + bp_addr - memaddr, bp_size);
1388
1389 /* Determine appropriate breakpoint contents and size for this
1390 address. */
0d5ed153 1391 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
9d497a19
PA
1392
1393 /* Update the final write buffer with this inserted
1394 breakpoint's INSN. */
1395 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1396 }
1397}
1398
8defab1a 1399/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1400 by replacing any memory breakpoints with their shadowed contents.
1401
35c63cd8
JB
1402 If READBUF is not NULL, this buffer must not overlap with any of
1403 the breakpoint location's shadow_contents buffers. Otherwise,
1404 a failed assertion internal error will be raised.
1405
876fa593 1406 The range of shadowed area by each bp_location is:
f5336ca5
PA
1407 bl->address - bp_locations_placed_address_before_address_max
1408 up to bl->address + bp_locations_shadow_len_after_address_max
876fa593
JK
1409 The range we were requested to resolve shadows for is:
1410 memaddr ... memaddr + len
1411 Thus the safe cutoff boundaries for performance optimization are
35df4500 1412 memaddr + len <= (bl->address
f5336ca5 1413 - bp_locations_placed_address_before_address_max)
876fa593 1414 and:
f5336ca5 1415 bl->address + bp_locations_shadow_len_after_address_max <= memaddr */
c906108c 1416
8defab1a 1417void
f0ba3972
PA
1418breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1419 const gdb_byte *writebuf_org,
1420 ULONGEST memaddr, LONGEST len)
c906108c 1421{
4a64f543
MS
1422 /* Left boundary, right boundary and median element of our binary
1423 search. */
876fa593
JK
1424 unsigned bc_l, bc_r, bc;
1425
4a64f543
MS
1426 /* Find BC_L which is a leftmost element which may affect BUF
1427 content. It is safe to report lower value but a failure to
1428 report higher one. */
876fa593
JK
1429
1430 bc_l = 0;
f5336ca5 1431 bc_r = bp_locations_count;
876fa593
JK
1432 while (bc_l + 1 < bc_r)
1433 {
35df4500 1434 struct bp_location *bl;
876fa593
JK
1435
1436 bc = (bc_l + bc_r) / 2;
f5336ca5 1437 bl = bp_locations[bc];
876fa593 1438
4a64f543
MS
1439 /* Check first BL->ADDRESS will not overflow due to the added
1440 constant. Then advance the left boundary only if we are sure
1441 the BC element can in no way affect the BUF content (MEMADDR
1442 to MEMADDR + LEN range).
876fa593 1443
f5336ca5 1444 Use the BP_LOCATIONS_SHADOW_LEN_AFTER_ADDRESS_MAX safety
4a64f543
MS
1445 offset so that we cannot miss a breakpoint with its shadow
1446 range tail still reaching MEMADDR. */
c5aa993b 1447
f5336ca5 1448 if ((bl->address + bp_locations_shadow_len_after_address_max
35df4500 1449 >= bl->address)
f5336ca5 1450 && (bl->address + bp_locations_shadow_len_after_address_max
35df4500 1451 <= memaddr))
876fa593
JK
1452 bc_l = bc;
1453 else
1454 bc_r = bc;
1455 }
1456
128070bb
PA
1457 /* Due to the binary search above, we need to make sure we pick the
1458 first location that's at BC_L's address. E.g., if there are
1459 multiple locations at the same address, BC_L may end up pointing
1460 at a duplicate location, and miss the "master"/"inserted"
1461 location. Say, given locations L1, L2 and L3 at addresses A and
1462 B:
1463
1464 L1@A, L2@A, L3@B, ...
1465
1466 BC_L could end up pointing at location L2, while the "master"
1467 location could be L1. Since the `loc->inserted' flag is only set
1468 on "master" locations, we'd forget to restore the shadow of L1
1469 and L2. */
1470 while (bc_l > 0
f5336ca5 1471 && bp_locations[bc_l]->address == bp_locations[bc_l - 1]->address)
128070bb
PA
1472 bc_l--;
1473
876fa593
JK
1474 /* Now do full processing of the found relevant range of elements. */
1475
f5336ca5 1476 for (bc = bc_l; bc < bp_locations_count; bc++)
c5aa993b 1477 {
f5336ca5 1478 struct bp_location *bl = bp_locations[bc];
876fa593 1479
35df4500
TJB
1480 /* bp_location array has BL->OWNER always non-NULL. */
1481 if (bl->owner->type == bp_none)
8a3fe4f8 1482 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1483 bl->owner->number);
ffce0d52 1484
e5dd4106 1485 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1486 content. */
1487
f5336ca5
PA
1488 if (bl->address >= bp_locations_placed_address_before_address_max
1489 && memaddr + len <= (bl->address
1490 - bp_locations_placed_address_before_address_max))
876fa593
JK
1491 break;
1492
35df4500 1493 if (!bp_location_has_shadow (bl))
c5aa993b 1494 continue;
6c95b8df 1495
9d497a19
PA
1496 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1497 memaddr, len, &bl->target_info, bl->gdbarch);
1498 }
c906108c 1499}
9d497a19 1500
c906108c 1501\f
c5aa993b 1502
b775012e
LM
1503/* Return true if BPT is either a software breakpoint or a hardware
1504 breakpoint. */
1505
1506int
1507is_breakpoint (const struct breakpoint *bpt)
1508{
1509 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1510 || bpt->type == bp_hardware_breakpoint
1511 || bpt->type == bp_dprintf);
b775012e
LM
1512}
1513
60e1c644
PA
1514/* Return true if BPT is of any hardware watchpoint kind. */
1515
a5606eee 1516static int
d77f58be 1517is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1518{
1519 return (bpt->type == bp_hardware_watchpoint
1520 || bpt->type == bp_read_watchpoint
1521 || bpt->type == bp_access_watchpoint);
1522}
7270d8f2 1523
60e1c644
PA
1524/* Return true if BPT is of any watchpoint kind, hardware or
1525 software. */
1526
3a5c3e22 1527int
d77f58be 1528is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1529{
1530 return (is_hardware_watchpoint (bpt)
1531 || bpt->type == bp_watchpoint);
1532}
1533
3a5c3e22
PA
1534/* Returns true if the current thread and its running state are safe
1535 to evaluate or update watchpoint B. Watchpoints on local
1536 expressions need to be evaluated in the context of the thread that
1537 was current when the watchpoint was created, and, that thread needs
1538 to be stopped to be able to select the correct frame context.
1539 Watchpoints on global expressions can be evaluated on any thread,
1540 and in any state. It is presently left to the target allowing
1541 memory accesses when threads are running. */
f6bc2008
PA
1542
1543static int
3a5c3e22 1544watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1545{
c1fc2657 1546 return (b->pspace == current_program_space
d7e15655
TT
1547 && (b->watchpoint_thread == null_ptid
1548 || (inferior_ptid == b->watchpoint_thread
00431a78 1549 && !inferior_thread ()->executing)));
f6bc2008
PA
1550}
1551
d0fb5eae
JK
1552/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1553 associated bp_watchpoint_scope breakpoint. */
1554
1555static void
3a5c3e22 1556watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1557{
c1fc2657 1558 if (w->related_breakpoint != w)
d0fb5eae 1559 {
c1fc2657
SM
1560 gdb_assert (w->related_breakpoint->type == bp_watchpoint_scope);
1561 gdb_assert (w->related_breakpoint->related_breakpoint == w);
1562 w->related_breakpoint->disposition = disp_del_at_next_stop;
1563 w->related_breakpoint->related_breakpoint = w->related_breakpoint;
1564 w->related_breakpoint = w;
d0fb5eae 1565 }
c1fc2657 1566 w->disposition = disp_del_at_next_stop;
d0fb5eae
JK
1567}
1568
bb9d5f81
PP
1569/* Extract a bitfield value from value VAL using the bit parameters contained in
1570 watchpoint W. */
1571
1572static struct value *
1573extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1574{
1575 struct value *bit_val;
1576
1577 if (val == NULL)
1578 return NULL;
1579
1580 bit_val = allocate_value (value_type (val));
1581
1582 unpack_value_bitfield (bit_val,
1583 w->val_bitpos,
1584 w->val_bitsize,
1585 value_contents_for_printing (val),
1586 value_offset (val),
1587 val);
1588
1589 return bit_val;
1590}
1591
c6d81124
PA
1592/* Allocate a dummy location and add it to B, which must be a software
1593 watchpoint. This is required because even if a software watchpoint
1594 is not watching any memory, bpstat_stop_status requires a location
1595 to be able to report stops. */
1596
1597static void
1598software_watchpoint_add_no_memory_location (struct breakpoint *b,
1599 struct program_space *pspace)
1600{
1601 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1602
1603 b->loc = allocate_bp_location (b);
1604 b->loc->pspace = pspace;
1605 b->loc->address = -1;
1606 b->loc->length = -1;
1607}
1608
1609/* Returns true if B is a software watchpoint that is not watching any
1610 memory (e.g., "watch $pc"). */
1611
1612static int
1613is_no_memory_software_watchpoint (struct breakpoint *b)
1614{
1615 return (b->type == bp_watchpoint
1616 && b->loc != NULL
1617 && b->loc->next == NULL
1618 && b->loc->address == -1
1619 && b->loc->length == -1);
1620}
1621
567e1b4e
JB
1622/* Assuming that B is a watchpoint:
1623 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1624 - Evaluate expression and store the result in B->val
567e1b4e
JB
1625 - Evaluate the condition if there is one, and store the result
1626 in b->loc->cond.
a5606eee
VP
1627 - Update the list of values that must be watched in B->loc.
1628
4a64f543
MS
1629 If the watchpoint disposition is disp_del_at_next_stop, then do
1630 nothing. If this is local watchpoint that is out of scope, delete
1631 it.
1632
1633 Even with `set breakpoint always-inserted on' the watchpoints are
1634 removed + inserted on each stop here. Normal breakpoints must
1635 never be removed because they might be missed by a running thread
1636 when debugging in non-stop mode. On the other hand, hardware
1637 watchpoints (is_hardware_watchpoint; processed here) are specific
1638 to each LWP since they are stored in each LWP's hardware debug
1639 registers. Therefore, such LWP must be stopped first in order to
1640 be able to modify its hardware watchpoints.
1641
1642 Hardware watchpoints must be reset exactly once after being
1643 presented to the user. It cannot be done sooner, because it would
1644 reset the data used to present the watchpoint hit to the user. And
1645 it must not be done later because it could display the same single
1646 watchpoint hit during multiple GDB stops. Note that the latter is
1647 relevant only to the hardware watchpoint types bp_read_watchpoint
1648 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1649 not user-visible - its hit is suppressed if the memory content has
1650 not changed.
1651
1652 The following constraints influence the location where we can reset
1653 hardware watchpoints:
1654
1655 * target_stopped_by_watchpoint and target_stopped_data_address are
1656 called several times when GDB stops.
1657
1658 [linux]
1659 * Multiple hardware watchpoints can be hit at the same time,
1660 causing GDB to stop. GDB only presents one hardware watchpoint
1661 hit at a time as the reason for stopping, and all the other hits
1662 are presented later, one after the other, each time the user
1663 requests the execution to be resumed. Execution is not resumed
1664 for the threads still having pending hit event stored in
1665 LWP_INFO->STATUS. While the watchpoint is already removed from
1666 the inferior on the first stop the thread hit event is kept being
1667 reported from its cached value by linux_nat_stopped_data_address
1668 until the real thread resume happens after the watchpoint gets
1669 presented and thus its LWP_INFO->STATUS gets reset.
1670
1671 Therefore the hardware watchpoint hit can get safely reset on the
1672 watchpoint removal from inferior. */
a79d3c27 1673
b40ce68a 1674static void
3a5c3e22 1675update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1676{
a5606eee 1677 int within_current_scope;
a5606eee 1678 struct frame_id saved_frame_id;
66076460 1679 int frame_saved;
a5606eee 1680
f6bc2008
PA
1681 /* If this is a local watchpoint, we only want to check if the
1682 watchpoint frame is in scope if the current thread is the thread
1683 that was used to create the watchpoint. */
1684 if (!watchpoint_in_thread_scope (b))
1685 return;
1686
c1fc2657 1687 if (b->disposition == disp_del_at_next_stop)
a5606eee
VP
1688 return;
1689
66076460 1690 frame_saved = 0;
a5606eee
VP
1691
1692 /* Determine if the watchpoint is within scope. */
1693 if (b->exp_valid_block == NULL)
1694 within_current_scope = 1;
1695 else
1696 {
b5db5dfc
UW
1697 struct frame_info *fi = get_current_frame ();
1698 struct gdbarch *frame_arch = get_frame_arch (fi);
1699 CORE_ADDR frame_pc = get_frame_pc (fi);
1700
c9cf6e20
MG
1701 /* If we're at a point where the stack has been destroyed
1702 (e.g. in a function epilogue), unwinding may not work
1703 properly. Do not attempt to recreate locations at this
b5db5dfc 1704 point. See similar comments in watchpoint_check. */
c9cf6e20 1705 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
b5db5dfc 1706 return;
66076460
DJ
1707
1708 /* Save the current frame's ID so we can restore it after
1709 evaluating the watchpoint expression on its own frame. */
1710 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1711 took a frame parameter, so that we didn't have to change the
1712 selected frame. */
1713 frame_saved = 1;
1714 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1715
a5606eee
VP
1716 fi = frame_find_by_id (b->watchpoint_frame);
1717 within_current_scope = (fi != NULL);
1718 if (within_current_scope)
1719 select_frame (fi);
1720 }
1721
b5db5dfc
UW
1722 /* We don't free locations. They are stored in the bp_location array
1723 and update_global_location_list will eventually delete them and
1724 remove breakpoints if needed. */
c1fc2657 1725 b->loc = NULL;
b5db5dfc 1726
a5606eee
VP
1727 if (within_current_scope && reparse)
1728 {
bbc13ae3 1729 const char *s;
d63d0675 1730
4d01a485 1731 b->exp.reset ();
d63d0675 1732 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1733 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1734 /* If the meaning of expression itself changed, the old value is
1735 no longer relevant. We don't want to report a watchpoint hit
1736 to the user when the old value and the new value may actually
1737 be completely different objects. */
fa4727a6
DJ
1738 b->val = NULL;
1739 b->val_valid = 0;
60e1c644
PA
1740
1741 /* Note that unlike with breakpoints, the watchpoint's condition
1742 expression is stored in the breakpoint object, not in the
1743 locations (re)created below. */
c1fc2657 1744 if (b->cond_string != NULL)
60e1c644 1745 {
4d01a485 1746 b->cond_exp.reset ();
60e1c644 1747
c1fc2657 1748 s = b->cond_string;
1bb9788d 1749 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1750 }
a5606eee 1751 }
a5606eee
VP
1752
1753 /* If we failed to parse the expression, for example because
1754 it refers to a global variable in a not-yet-loaded shared library,
1755 don't try to insert watchpoint. We don't automatically delete
1756 such watchpoint, though, since failure to parse expression
1757 is different from out-of-scope watchpoint. */
e8369a73 1758 if (!target_has_execution)
2d134ed3
PA
1759 {
1760 /* Without execution, memory can't change. No use to try and
1761 set watchpoint locations. The watchpoint will be reset when
1762 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1763 if (!can_use_hw_watchpoints)
1764 {
c1fc2657
SM
1765 if (b->ops->works_in_software_mode (b))
1766 b->type = bp_watchpoint;
e8369a73 1767 else
638aa5a1
AB
1768 error (_("Can't set read/access watchpoint when "
1769 "hardware watchpoints are disabled."));
e8369a73 1770 }
2d134ed3
PA
1771 }
1772 else if (within_current_scope && b->exp)
a5606eee 1773 {
0cf6dd15 1774 int pc = 0;
a6535de1 1775 std::vector<value_ref_ptr> val_chain;
8d49165d 1776 struct value *v, *result;
2d134ed3 1777 struct program_space *frame_pspace;
a5606eee 1778
4d01a485 1779 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
a5606eee 1780
a5606eee
VP
1781 /* Avoid setting b->val if it's already set. The meaning of
1782 b->val is 'the last value' user saw, and we should update
1783 it only if we reported that last value to user. As it
9c06b0b4
TJB
1784 happens, the code that reports it updates b->val directly.
1785 We don't keep track of the memory value for masked
1786 watchpoints. */
c1fc2657 1787 if (!b->val_valid && !is_masked_watchpoint (b))
fa4727a6 1788 {
bb9d5f81 1789 if (b->val_bitsize != 0)
850645cf
TT
1790 v = extract_bitfield_from_watchpoint_value (b, v);
1791 b->val = release_value (v);
fa4727a6
DJ
1792 b->val_valid = 1;
1793 }
a5606eee 1794
2d134ed3
PA
1795 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1796
a5606eee 1797 /* Look at each value on the value chain. */
a6535de1
TT
1798 gdb_assert (!val_chain.empty ());
1799 for (const value_ref_ptr &iter : val_chain)
a5606eee 1800 {
a6535de1
TT
1801 v = iter.get ();
1802
a5606eee
VP
1803 /* If it's a memory location, and GDB actually needed
1804 its contents to evaluate the expression, then we
fa4727a6
DJ
1805 must watch it. If the first value returned is
1806 still lazy, that means an error occurred reading it;
1807 watch it anyway in case it becomes readable. */
a5606eee 1808 if (VALUE_LVAL (v) == lval_memory
a6535de1 1809 && (v == val_chain[0] || ! value_lazy (v)))
a5606eee
VP
1810 {
1811 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1812
a5606eee
VP
1813 /* We only watch structs and arrays if user asked
1814 for it explicitly, never if they just happen to
1815 appear in the middle of some value chain. */
fa4727a6 1816 if (v == result
a5606eee
VP
1817 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1818 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1819 {
1820 CORE_ADDR addr;
f486487f 1821 enum target_hw_bp_type type;
a5606eee 1822 struct bp_location *loc, **tmp;
bb9d5f81
PP
1823 int bitpos = 0, bitsize = 0;
1824
1825 if (value_bitsize (v) != 0)
1826 {
1827 /* Extract the bit parameters out from the bitfield
1828 sub-expression. */
1829 bitpos = value_bitpos (v);
1830 bitsize = value_bitsize (v);
1831 }
1832 else if (v == result && b->val_bitsize != 0)
1833 {
1834 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
1835 lvalue whose bit parameters are saved in the fields
1836 VAL_BITPOS and VAL_BITSIZE. */
1837 bitpos = b->val_bitpos;
1838 bitsize = b->val_bitsize;
1839 }
a5606eee 1840
42ae5230 1841 addr = value_address (v);
bb9d5f81
PP
1842 if (bitsize != 0)
1843 {
1844 /* Skip the bytes that don't contain the bitfield. */
1845 addr += bitpos / 8;
1846 }
1847
a5606eee 1848 type = hw_write;
c1fc2657 1849 if (b->type == bp_read_watchpoint)
a5606eee 1850 type = hw_read;
c1fc2657 1851 else if (b->type == bp_access_watchpoint)
a5606eee 1852 type = hw_access;
3a5c3e22 1853
c1fc2657
SM
1854 loc = allocate_bp_location (b);
1855 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
1856 ;
1857 *tmp = loc;
a6d9a66e 1858 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1859
1860 loc->pspace = frame_pspace;
f17d9474 1861 loc->address = address_significant (loc->gdbarch, addr);
bb9d5f81
PP
1862
1863 if (bitsize != 0)
1864 {
1865 /* Just cover the bytes that make up the bitfield. */
1866 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
1867 }
1868 else
1869 loc->length = TYPE_LENGTH (value_type (v));
1870
a5606eee
VP
1871 loc->watchpoint_type = type;
1872 }
1873 }
9fa40276
TJB
1874 }
1875
1876 /* Change the type of breakpoint between hardware assisted or
1877 an ordinary watchpoint depending on the hardware support
1878 and free hardware slots. REPARSE is set when the inferior
1879 is started. */
a9634178 1880 if (reparse)
9fa40276 1881 {
e09342b5 1882 int reg_cnt;
9fa40276
TJB
1883 enum bp_loc_type loc_type;
1884 struct bp_location *bl;
a5606eee 1885
a9634178 1886 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
1887
1888 if (reg_cnt)
9fa40276
TJB
1889 {
1890 int i, target_resources_ok, other_type_used;
a1398e0c 1891 enum bptype type;
9fa40276 1892
a9634178
TJB
1893 /* Use an exact watchpoint when there's only one memory region to be
1894 watched, and only one debug register is needed to watch it. */
1895 b->exact = target_exact_watchpoints && reg_cnt == 1;
1896
9fa40276 1897 /* We need to determine how many resources are already
e09342b5
TJB
1898 used for all other hardware watchpoints plus this one
1899 to see if we still have enough resources to also fit
a1398e0c
PA
1900 this watchpoint in as well. */
1901
1902 /* If this is a software watchpoint, we try to turn it
1903 to a hardware one -- count resources as if B was of
1904 hardware watchpoint type. */
c1fc2657 1905 type = b->type;
a1398e0c
PA
1906 if (type == bp_watchpoint)
1907 type = bp_hardware_watchpoint;
1908
1909 /* This watchpoint may or may not have been placed on
1910 the list yet at this point (it won't be in the list
1911 if we're trying to create it for the first time,
1912 through watch_command), so always account for it
1913 manually. */
1914
1915 /* Count resources used by all watchpoints except B. */
c1fc2657 1916 i = hw_watchpoint_used_count_others (b, type, &other_type_used);
a1398e0c
PA
1917
1918 /* Add in the resources needed for B. */
c1fc2657 1919 i += hw_watchpoint_use_count (b);
a1398e0c
PA
1920
1921 target_resources_ok
1922 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 1923 if (target_resources_ok <= 0)
a9634178 1924 {
c1fc2657 1925 int sw_mode = b->ops->works_in_software_mode (b);
9c06b0b4
TJB
1926
1927 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
1928 error (_("Target does not support this type of "
1929 "hardware watchpoint."));
9c06b0b4
TJB
1930 else if (target_resources_ok < 0 && !sw_mode)
1931 error (_("There are not enough available hardware "
1932 "resources for this watchpoint."));
a1398e0c
PA
1933
1934 /* Downgrade to software watchpoint. */
c1fc2657 1935 b->type = bp_watchpoint;
a1398e0c
PA
1936 }
1937 else
1938 {
1939 /* If this was a software watchpoint, we've just
1940 found we have enough resources to turn it to a
1941 hardware watchpoint. Otherwise, this is a
1942 nop. */
c1fc2657 1943 b->type = type;
a9634178 1944 }
9fa40276 1945 }
c1fc2657 1946 else if (!b->ops->works_in_software_mode (b))
638aa5a1
AB
1947 {
1948 if (!can_use_hw_watchpoints)
1949 error (_("Can't set read/access watchpoint when "
1950 "hardware watchpoints are disabled."));
1951 else
1952 error (_("Expression cannot be implemented with "
1953 "read/access watchpoint."));
1954 }
9fa40276 1955 else
c1fc2657 1956 b->type = bp_watchpoint;
9fa40276 1957
c1fc2657 1958 loc_type = (b->type == bp_watchpoint? bp_loc_other
9fa40276 1959 : bp_loc_hardware_watchpoint);
c1fc2657 1960 for (bl = b->loc; bl; bl = bl->next)
9fa40276
TJB
1961 bl->loc_type = loc_type;
1962 }
1963
c7437ca6
PA
1964 /* If a software watchpoint is not watching any memory, then the
1965 above left it without any location set up. But,
1966 bpstat_stop_status requires a location to be able to report
1967 stops, so make sure there's at least a dummy one. */
c1fc2657
SM
1968 if (b->type == bp_watchpoint && b->loc == NULL)
1969 software_watchpoint_add_no_memory_location (b, frame_pspace);
a5606eee
VP
1970 }
1971 else if (!within_current_scope)
7270d8f2 1972 {
ac74f770
MS
1973 printf_filtered (_("\
1974Watchpoint %d deleted because the program has left the block\n\
1975in which its expression is valid.\n"),
c1fc2657 1976 b->number);
d0fb5eae 1977 watchpoint_del_at_next_stop (b);
7270d8f2 1978 }
a5606eee
VP
1979
1980 /* Restore the selected frame. */
66076460
DJ
1981 if (frame_saved)
1982 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1983}
1984
a5606eee 1985
74960c60 1986/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
1987 inserted in the inferior. We don't differentiate the type of BL's owner
1988 (breakpoint vs. tracepoint), although insert_location in tracepoint's
1989 breakpoint_ops is not defined, because in insert_bp_location,
1990 tracepoint's insert_location will not be called. */
74960c60 1991static int
35df4500 1992should_be_inserted (struct bp_location *bl)
74960c60 1993{
35df4500 1994 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
1995 return 0;
1996
35df4500 1997 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
1998 return 0;
1999
35df4500 2000 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
2001 return 0;
2002
f8eba3c6
TT
2003 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2004 return 0;
2005
56710373
PA
2006 /* This is set for example, when we're attached to the parent of a
2007 vfork, and have detached from the child. The child is running
2008 free, and we expect it to do an exec or exit, at which point the
2009 OS makes the parent schedulable again (and the target reports
2010 that the vfork is done). Until the child is done with the shared
2011 memory region, do not insert breakpoints in the parent, otherwise
2012 the child could still trip on the parent's breakpoints. Since
2013 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2014 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2015 return 0;
2016
31e77af2 2017 /* Don't insert a breakpoint if we're trying to step past its
21edc42f
YQ
2018 location, except if the breakpoint is a single-step breakpoint,
2019 and the breakpoint's thread is the thread which is stepping past
2020 a breakpoint. */
31e77af2
PA
2021 if ((bl->loc_type == bp_loc_software_breakpoint
2022 || bl->loc_type == bp_loc_hardware_breakpoint)
2023 && stepping_past_instruction_at (bl->pspace->aspace,
21edc42f
YQ
2024 bl->address)
2025 /* The single-step breakpoint may be inserted at the location
2026 we're trying to step if the instruction branches to itself.
2027 However, the instruction won't be executed at all and it may
2028 break the semantics of the instruction, for example, the
2029 instruction is a conditional branch or updates some flags.
2030 We can't fix it unless GDB is able to emulate the instruction
2031 or switch to displaced stepping. */
2032 && !(bl->owner->type == bp_single_step
2033 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
e558d7c1
PA
2034 {
2035 if (debug_infrun)
2036 {
2037 fprintf_unfiltered (gdb_stdlog,
2038 "infrun: skipping breakpoint: "
2039 "stepping past insn at: %s\n",
2040 paddress (bl->gdbarch, bl->address));
2041 }
2042 return 0;
2043 }
31e77af2 2044
963f9c80
PA
2045 /* Don't insert watchpoints if we're trying to step past the
2046 instruction that triggered one. */
2047 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2048 && stepping_past_nonsteppable_watchpoint ())
2049 {
2050 if (debug_infrun)
2051 {
2052 fprintf_unfiltered (gdb_stdlog,
2053 "infrun: stepping past non-steppable watchpoint. "
2054 "skipping watchpoint at %s:%d\n",
2055 paddress (bl->gdbarch, bl->address),
2056 bl->length);
2057 }
2058 return 0;
2059 }
2060
74960c60
VP
2061 return 1;
2062}
2063
934709f0
PW
2064/* Same as should_be_inserted but does the check assuming
2065 that the location is not duplicated. */
2066
2067static int
2068unduplicated_should_be_inserted (struct bp_location *bl)
2069{
2070 int result;
2071 const int save_duplicate = bl->duplicate;
2072
2073 bl->duplicate = 0;
2074 result = should_be_inserted (bl);
2075 bl->duplicate = save_duplicate;
2076 return result;
2077}
2078
b775012e
LM
2079/* Parses a conditional described by an expression COND into an
2080 agent expression bytecode suitable for evaluation
2081 by the bytecode interpreter. Return NULL if there was
2082 any error during parsing. */
2083
833177a4 2084static agent_expr_up
b775012e
LM
2085parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2086{
833177a4 2087 if (cond == NULL)
b775012e
LM
2088 return NULL;
2089
833177a4
PA
2090 agent_expr_up aexpr;
2091
b775012e
LM
2092 /* We don't want to stop processing, so catch any errors
2093 that may show up. */
492d29ea 2094 TRY
b775012e 2095 {
036e657b 2096 aexpr = gen_eval_for_expr (scope, cond);
b775012e
LM
2097 }
2098
492d29ea 2099 CATCH (ex, RETURN_MASK_ERROR)
b775012e
LM
2100 {
2101 /* If we got here, it means the condition could not be parsed to a valid
2102 bytecode expression and thus can't be evaluated on the target's side.
2103 It's no use iterating through the conditions. */
b775012e 2104 }
492d29ea 2105 END_CATCH
b775012e
LM
2106
2107 /* We have a valid agent expression. */
2108 return aexpr;
2109}
2110
2111/* Based on location BL, create a list of breakpoint conditions to be
2112 passed on to the target. If we have duplicated locations with different
2113 conditions, we will add such conditions to the list. The idea is that the
2114 target will evaluate the list of conditions and will only notify GDB when
2115 one of them is true. */
2116
2117static void
2118build_target_condition_list (struct bp_location *bl)
2119{
2120 struct bp_location **locp = NULL, **loc2p;
2121 int null_condition_or_parse_error = 0;
2122 int modified = bl->needs_update;
2123 struct bp_location *loc;
2124
8b4f3082 2125 /* Release conditions left over from a previous insert. */
3cde5c42 2126 bl->target_info.conditions.clear ();
8b4f3082 2127
b775012e
LM
2128 /* This is only meaningful if the target is
2129 evaluating conditions and if the user has
2130 opted for condition evaluation on the target's
2131 side. */
2132 if (gdb_evaluates_breakpoint_condition_p ()
2133 || !target_supports_evaluation_of_breakpoint_conditions ())
2134 return;
2135
2136 /* Do a first pass to check for locations with no assigned
2137 conditions or conditions that fail to parse to a valid agent expression
2138 bytecode. If any of these happen, then it's no use to send conditions
2139 to the target since this location will always trigger and generate a
2140 response back to GDB. */
2141 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2142 {
2143 loc = (*loc2p);
2144 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2145 {
2146 if (modified)
2147 {
b775012e
LM
2148 /* Re-parse the conditions since something changed. In that
2149 case we already freed the condition bytecodes (see
2150 force_breakpoint_reinsertion). We just
2151 need to parse the condition to bytecodes again. */
833177a4
PA
2152 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2153 loc->cond.get ());
b775012e
LM
2154 }
2155
2156 /* If we have a NULL bytecode expression, it means something
2157 went wrong or we have a null condition expression. */
2158 if (!loc->cond_bytecode)
2159 {
2160 null_condition_or_parse_error = 1;
2161 break;
2162 }
2163 }
2164 }
2165
2166 /* If any of these happened, it means we will have to evaluate the conditions
2167 for the location's address on gdb's side. It is no use keeping bytecodes
2168 for all the other duplicate locations, thus we free all of them here.
2169
2170 This is so we have a finer control over which locations' conditions are
2171 being evaluated by GDB or the remote stub. */
2172 if (null_condition_or_parse_error)
2173 {
2174 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2175 {
2176 loc = (*loc2p);
2177 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2178 {
2179 /* Only go as far as the first NULL bytecode is
2180 located. */
2181 if (!loc->cond_bytecode)
2182 return;
2183
833177a4 2184 loc->cond_bytecode.reset ();
b775012e
LM
2185 }
2186 }
2187 }
2188
2189 /* No NULL conditions or failed bytecode generation. Build a condition list
2190 for this location's address. */
2191 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2192 {
2193 loc = (*loc2p);
2194 if (loc->cond
2195 && is_breakpoint (loc->owner)
2196 && loc->pspace->num == bl->pspace->num
2197 && loc->owner->enable_state == bp_enabled
2198 && loc->enabled)
3cde5c42
PA
2199 {
2200 /* Add the condition to the vector. This will be used later
2201 to send the conditions to the target. */
2202 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2203 }
b775012e
LM
2204 }
2205
2206 return;
2207}
2208
d3ce09f5
SS
2209/* Parses a command described by string CMD into an agent expression
2210 bytecode suitable for evaluation by the bytecode interpreter.
2211 Return NULL if there was any error during parsing. */
2212
833177a4 2213static agent_expr_up
d3ce09f5
SS
2214parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2215{
bbc13ae3
KS
2216 const char *cmdrest;
2217 const char *format_start, *format_end;
d3ce09f5
SS
2218 struct gdbarch *gdbarch = get_current_arch ();
2219
833177a4 2220 if (cmd == NULL)
d3ce09f5
SS
2221 return NULL;
2222
2223 cmdrest = cmd;
2224
2225 if (*cmdrest == ',')
2226 ++cmdrest;
f1735a53 2227 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2228
2229 if (*cmdrest++ != '"')
2230 error (_("No format string following the location"));
2231
2232 format_start = cmdrest;
2233
8e481c3b 2234 format_pieces fpieces (&cmdrest);
d3ce09f5
SS
2235
2236 format_end = cmdrest;
2237
2238 if (*cmdrest++ != '"')
2239 error (_("Bad format string, non-terminated '\"'."));
2240
f1735a53 2241 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2242
2243 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2244 error (_("Invalid argument syntax"));
2245
2246 if (*cmdrest == ',')
2247 cmdrest++;
f1735a53 2248 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2249
2250 /* For each argument, make an expression. */
2251
8e481c3b 2252 std::vector<struct expression *> argvec;
d3ce09f5
SS
2253 while (*cmdrest != '\0')
2254 {
bbc13ae3 2255 const char *cmd1;
d3ce09f5
SS
2256
2257 cmd1 = cmdrest;
4d01a485 2258 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
8e481c3b 2259 argvec.push_back (expr.release ());
d3ce09f5
SS
2260 cmdrest = cmd1;
2261 if (*cmdrest == ',')
2262 ++cmdrest;
2263 }
2264
833177a4
PA
2265 agent_expr_up aexpr;
2266
d3ce09f5
SS
2267 /* We don't want to stop processing, so catch any errors
2268 that may show up. */
492d29ea 2269 TRY
d3ce09f5 2270 {
036e657b
JB
2271 aexpr = gen_printf (scope, gdbarch, 0, 0,
2272 format_start, format_end - format_start,
8e481c3b 2273 argvec.size (), argvec.data ());
d3ce09f5 2274 }
492d29ea 2275 CATCH (ex, RETURN_MASK_ERROR)
d3ce09f5
SS
2276 {
2277 /* If we got here, it means the command could not be parsed to a valid
2278 bytecode expression and thus can't be evaluated on the target's side.
2279 It's no use iterating through the other commands. */
d3ce09f5 2280 }
492d29ea
PA
2281 END_CATCH
2282
d3ce09f5
SS
2283 /* We have a valid agent expression, return it. */
2284 return aexpr;
2285}
2286
2287/* Based on location BL, create a list of breakpoint commands to be
2288 passed on to the target. If we have duplicated locations with
2289 different commands, we will add any such to the list. */
2290
2291static void
2292build_target_command_list (struct bp_location *bl)
2293{
2294 struct bp_location **locp = NULL, **loc2p;
2295 int null_command_or_parse_error = 0;
2296 int modified = bl->needs_update;
2297 struct bp_location *loc;
2298
3cde5c42
PA
2299 /* Clear commands left over from a previous insert. */
2300 bl->target_info.tcommands.clear ();
8b4f3082 2301
41fac0cf 2302 if (!target_can_run_breakpoint_commands ())
d3ce09f5
SS
2303 return;
2304
41fac0cf
PA
2305 /* For now, limit to agent-style dprintf breakpoints. */
2306 if (dprintf_style != dprintf_style_agent)
d3ce09f5
SS
2307 return;
2308
41fac0cf
PA
2309 /* For now, if we have any duplicate location that isn't a dprintf,
2310 don't install the target-side commands, as that would make the
2311 breakpoint not be reported to the core, and we'd lose
2312 control. */
2313 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2314 {
2315 loc = (*loc2p);
2316 if (is_breakpoint (loc->owner)
2317 && loc->pspace->num == bl->pspace->num
2318 && loc->owner->type != bp_dprintf)
2319 return;
2320 }
2321
d3ce09f5
SS
2322 /* Do a first pass to check for locations with no assigned
2323 conditions or conditions that fail to parse to a valid agent expression
2324 bytecode. If any of these happen, then it's no use to send conditions
2325 to the target since this location will always trigger and generate a
2326 response back to GDB. */
2327 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2328 {
2329 loc = (*loc2p);
2330 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2331 {
2332 if (modified)
2333 {
d3ce09f5
SS
2334 /* Re-parse the commands since something changed. In that
2335 case we already freed the command bytecodes (see
2336 force_breakpoint_reinsertion). We just
2337 need to parse the command to bytecodes again. */
833177a4
PA
2338 loc->cmd_bytecode
2339 = parse_cmd_to_aexpr (bl->address,
2340 loc->owner->extra_string);
d3ce09f5
SS
2341 }
2342
2343 /* If we have a NULL bytecode expression, it means something
2344 went wrong or we have a null command expression. */
2345 if (!loc->cmd_bytecode)
2346 {
2347 null_command_or_parse_error = 1;
2348 break;
2349 }
2350 }
2351 }
2352
2353 /* If anything failed, then we're not doing target-side commands,
2354 and so clean up. */
2355 if (null_command_or_parse_error)
2356 {
2357 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2358 {
2359 loc = (*loc2p);
2360 if (is_breakpoint (loc->owner)
2361 && loc->pspace->num == bl->pspace->num)
2362 {
2363 /* Only go as far as the first NULL bytecode is
2364 located. */
40fb6c5e 2365 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2366 return;
2367
833177a4 2368 loc->cmd_bytecode.reset ();
d3ce09f5
SS
2369 }
2370 }
2371 }
2372
2373 /* No NULL commands or failed bytecode generation. Build a command list
2374 for this location's address. */
2375 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2376 {
2377 loc = (*loc2p);
2378 if (loc->owner->extra_string
2379 && is_breakpoint (loc->owner)
2380 && loc->pspace->num == bl->pspace->num
2381 && loc->owner->enable_state == bp_enabled
2382 && loc->enabled)
3cde5c42
PA
2383 {
2384 /* Add the command to the vector. This will be used later
2385 to send the commands to the target. */
2386 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2387 }
d3ce09f5
SS
2388 }
2389
2390 bl->target_info.persist = 0;
2391 /* Maybe flag this location as persistent. */
2392 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2393 bl->target_info.persist = 1;
2394}
2395
833b7ab5
YQ
2396/* Return the kind of breakpoint on address *ADDR. Get the kind
2397 of breakpoint according to ADDR except single-step breakpoint.
2398 Get the kind of single-step breakpoint according to the current
2399 registers state. */
cd6c3b4f
YQ
2400
2401static int
2402breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2403{
833b7ab5
YQ
2404 if (bl->owner->type == bp_single_step)
2405 {
2406 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2407 struct regcache *regcache;
2408
00431a78 2409 regcache = get_thread_regcache (thr);
833b7ab5
YQ
2410
2411 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2412 regcache, addr);
2413 }
2414 else
2415 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
cd6c3b4f
YQ
2416}
2417
35df4500
TJB
2418/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2419 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2420 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2421 Returns 0 for success, 1 if the bp_location type is not supported or
2422 -1 for failure.
879bfdc2 2423
4a64f543
MS
2424 NOTE drow/2003-09-09: This routine could be broken down to an
2425 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2426static int
35df4500 2427insert_bp_location (struct bp_location *bl,
26bb91f3 2428 struct ui_file *tmp_error_stream,
3fbb6ffa 2429 int *disabled_breaks,
dd61ec5c
MW
2430 int *hw_breakpoint_error,
2431 int *hw_bp_error_explained_already)
879bfdc2 2432{
688fca4f 2433 gdb_exception bp_excpt = exception_none;
879bfdc2 2434
b775012e 2435 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2436 return 0;
2437
35c63cd8
JB
2438 /* Note we don't initialize bl->target_info, as that wipes out
2439 the breakpoint location's shadow_contents if the breakpoint
2440 is still inserted at that location. This in turn breaks
2441 target_read_memory which depends on these buffers when
2442 a memory read is requested at the breakpoint location:
2443 Once the target_info has been wiped, we fail to see that
2444 we have a breakpoint inserted at that address and thus
2445 read the breakpoint instead of returning the data saved in
2446 the breakpoint location's shadow contents. */
0d5ed153 2447 bl->target_info.reqstd_address = bl->address;
35df4500 2448 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2449 bl->target_info.length = bl->length;
8181d85f 2450
b775012e
LM
2451 /* When working with target-side conditions, we must pass all the conditions
2452 for the same breakpoint address down to the target since GDB will not
2453 insert those locations. With a list of breakpoint conditions, the target
2454 can decide when to stop and notify GDB. */
2455
2456 if (is_breakpoint (bl->owner))
2457 {
2458 build_target_condition_list (bl);
d3ce09f5
SS
2459 build_target_command_list (bl);
2460 /* Reset the modification marker. */
b775012e
LM
2461 bl->needs_update = 0;
2462 }
2463
35df4500
TJB
2464 if (bl->loc_type == bp_loc_software_breakpoint
2465 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2466 {
35df4500 2467 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2468 {
2469 /* If the explicitly specified breakpoint type
2470 is not hardware breakpoint, check the memory map to see
2471 if the breakpoint address is in read only memory or not.
4a64f543 2472
765dc015
VP
2473 Two important cases are:
2474 - location type is not hardware breakpoint, memory
2475 is readonly. We change the type of the location to
2476 hardware breakpoint.
4a64f543
MS
2477 - location type is hardware breakpoint, memory is
2478 read-write. This means we've previously made the
2479 location hardware one, but then the memory map changed,
2480 so we undo.
765dc015 2481
4a64f543
MS
2482 When breakpoints are removed, remove_breakpoints will use
2483 location types we've just set here, the only possible
2484 problem is that memory map has changed during running
2485 program, but it's not going to work anyway with current
2486 gdb. */
765dc015 2487 struct mem_region *mr
0d5ed153 2488 = lookup_mem_region (bl->target_info.reqstd_address);
765dc015
VP
2489
2490 if (mr)
2491 {
2492 if (automatic_hardware_breakpoints)
2493 {
765dc015
VP
2494 enum bp_loc_type new_type;
2495
2496 if (mr->attrib.mode != MEM_RW)
2497 new_type = bp_loc_hardware_breakpoint;
2498 else
2499 new_type = bp_loc_software_breakpoint;
2500
35df4500 2501 if (new_type != bl->loc_type)
765dc015
VP
2502 {
2503 static int said = 0;
cc59ec59 2504
35df4500 2505 bl->loc_type = new_type;
765dc015
VP
2506 if (!said)
2507 {
3e43a32a
MS
2508 fprintf_filtered (gdb_stdout,
2509 _("Note: automatically using "
2510 "hardware breakpoints for "
2511 "read-only addresses.\n"));
765dc015
VP
2512 said = 1;
2513 }
2514 }
2515 }
35df4500 2516 else if (bl->loc_type == bp_loc_software_breakpoint
0fec99e8
PA
2517 && mr->attrib.mode != MEM_RW)
2518 {
2519 fprintf_unfiltered (tmp_error_stream,
2520 _("Cannot insert breakpoint %d.\n"
2521 "Cannot set software breakpoint "
2522 "at read-only address %s\n"),
2523 bl->owner->number,
2524 paddress (bl->gdbarch, bl->address));
2525 return 1;
2526 }
765dc015
VP
2527 }
2528 }
2529
879bfdc2
DJ
2530 /* First check to see if we have to handle an overlay. */
2531 if (overlay_debugging == ovly_off
35df4500
TJB
2532 || bl->section == NULL
2533 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2534 {
2535 /* No overlay handling: just set the breakpoint. */
492d29ea 2536 TRY
dd61ec5c 2537 {
0000e5cc
PA
2538 int val;
2539
dd61ec5c 2540 val = bl->owner->ops->insert_location (bl);
0000e5cc 2541 if (val)
688fca4f 2542 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2543 }
492d29ea 2544 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2545 {
688fca4f 2546 bp_excpt = e;
dd61ec5c 2547 }
492d29ea 2548 END_CATCH
879bfdc2
DJ
2549 }
2550 else
2551 {
4a64f543 2552 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2553 Shall we set a breakpoint at the LMA? */
2554 if (!overlay_events_enabled)
2555 {
2556 /* Yes -- overlay event support is not active,
2557 so we must try to set a breakpoint at the LMA.
2558 This will not work for a hardware breakpoint. */
35df4500 2559 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2560 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2561 bl->owner->number);
879bfdc2
DJ
2562 else
2563 {
35df4500
TJB
2564 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2565 bl->section);
879bfdc2 2566 /* Set a software (trap) breakpoint at the LMA. */
35df4500 2567 bl->overlay_target_info = bl->target_info;
0d5ed153 2568 bl->overlay_target_info.reqstd_address = addr;
0000e5cc
PA
2569
2570 /* No overlay handling: just set the breakpoint. */
492d29ea 2571 TRY
0000e5cc
PA
2572 {
2573 int val;
2574
579c6ad9 2575 bl->overlay_target_info.kind
cd6c3b4f
YQ
2576 = breakpoint_kind (bl, &addr);
2577 bl->overlay_target_info.placed_address = addr;
0000e5cc
PA
2578 val = target_insert_breakpoint (bl->gdbarch,
2579 &bl->overlay_target_info);
2580 if (val)
688fca4f
PA
2581 bp_excpt
2582 = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
0000e5cc 2583 }
492d29ea 2584 CATCH (e, RETURN_MASK_ALL)
0000e5cc 2585 {
688fca4f 2586 bp_excpt = e;
0000e5cc 2587 }
492d29ea 2588 END_CATCH
0000e5cc 2589
688fca4f 2590 if (bp_excpt.reason != 0)
99361f52 2591 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2592 "Overlay breakpoint %d "
2593 "failed: in ROM?\n",
35df4500 2594 bl->owner->number);
879bfdc2
DJ
2595 }
2596 }
2597 /* Shall we set a breakpoint at the VMA? */
35df4500 2598 if (section_is_mapped (bl->section))
879bfdc2
DJ
2599 {
2600 /* Yes. This overlay section is mapped into memory. */
492d29ea 2601 TRY
dd61ec5c 2602 {
0000e5cc
PA
2603 int val;
2604
dd61ec5c 2605 val = bl->owner->ops->insert_location (bl);
0000e5cc 2606 if (val)
688fca4f 2607 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2608 }
492d29ea 2609 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2610 {
688fca4f 2611 bp_excpt = e;
dd61ec5c 2612 }
492d29ea 2613 END_CATCH
879bfdc2
DJ
2614 }
2615 else
2616 {
2617 /* No. This breakpoint will not be inserted.
2618 No error, but do not mark the bp as 'inserted'. */
2619 return 0;
2620 }
2621 }
2622
688fca4f 2623 if (bp_excpt.reason != 0)
879bfdc2
DJ
2624 {
2625 /* Can't set the breakpoint. */
0000e5cc
PA
2626
2627 /* In some cases, we might not be able to insert a
2628 breakpoint in a shared library that has already been
2629 removed, but we have not yet processed the shlib unload
2630 event. Unfortunately, some targets that implement
076855f9
PA
2631 breakpoint insertion themselves can't tell why the
2632 breakpoint insertion failed (e.g., the remote target
2633 doesn't define error codes), so we must treat generic
2634 errors as memory errors. */
688fca4f
PA
2635 if (bp_excpt.reason == RETURN_ERROR
2636 && (bp_excpt.error == GENERIC_ERROR
2637 || bp_excpt.error == MEMORY_ERROR)
076855f9 2638 && bl->loc_type == bp_loc_software_breakpoint
08351840 2639 && (solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
2640 || shared_objfile_contains_address_p (bl->pspace,
2641 bl->address)))
879bfdc2 2642 {
4a64f543 2643 /* See also: disable_breakpoints_in_shlibs. */
35df4500 2644 bl->shlib_disabled = 1;
76727919 2645 gdb::observers::breakpoint_modified.notify (bl->owner);
3fbb6ffa
TJB
2646 if (!*disabled_breaks)
2647 {
2648 fprintf_unfiltered (tmp_error_stream,
2649 "Cannot insert breakpoint %d.\n",
2650 bl->owner->number);
2651 fprintf_unfiltered (tmp_error_stream,
2652 "Temporarily disabling shared "
2653 "library breakpoints:\n");
2654 }
2655 *disabled_breaks = 1;
879bfdc2 2656 fprintf_unfiltered (tmp_error_stream,
35df4500 2657 "breakpoint #%d\n", bl->owner->number);
0000e5cc 2658 return 0;
879bfdc2
DJ
2659 }
2660 else
879bfdc2 2661 {
35df4500 2662 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2663 {
0000e5cc 2664 *hw_breakpoint_error = 1;
688fca4f 2665 *hw_bp_error_explained_already = bp_excpt.message != NULL;
dd61ec5c
MW
2666 fprintf_unfiltered (tmp_error_stream,
2667 "Cannot insert hardware breakpoint %d%s",
688fca4f
PA
2668 bl->owner->number,
2669 bp_excpt.message ? ":" : ".\n");
2670 if (bp_excpt.message != NULL)
2671 fprintf_unfiltered (tmp_error_stream, "%s.\n",
2672 bp_excpt.message);
879bfdc2
DJ
2673 }
2674 else
2675 {
688fca4f 2676 if (bp_excpt.message == NULL)
0000e5cc 2677 {
1ccbe998 2678 std::string message
0000e5cc
PA
2679 = memory_error_message (TARGET_XFER_E_IO,
2680 bl->gdbarch, bl->address);
0000e5cc
PA
2681
2682 fprintf_unfiltered (tmp_error_stream,
2683 "Cannot insert breakpoint %d.\n"
2684 "%s\n",
1ccbe998 2685 bl->owner->number, message.c_str ());
0000e5cc
PA
2686 }
2687 else
2688 {
2689 fprintf_unfiltered (tmp_error_stream,
2690 "Cannot insert breakpoint %d: %s\n",
2691 bl->owner->number,
688fca4f 2692 bp_excpt.message);
0000e5cc 2693 }
879bfdc2 2694 }
0000e5cc 2695 return 1;
879bfdc2
DJ
2696
2697 }
2698 }
2699 else
35df4500 2700 bl->inserted = 1;
879bfdc2 2701
0000e5cc 2702 return 0;
879bfdc2
DJ
2703 }
2704
35df4500 2705 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2706 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2707 watchpoints. It's not clear that it's necessary... */
35df4500 2708 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2709 {
0000e5cc
PA
2710 int val;
2711
77b06cd7
TJB
2712 gdb_assert (bl->owner->ops != NULL
2713 && bl->owner->ops->insert_location != NULL);
2714
2715 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2716
2717 /* If trying to set a read-watchpoint, and it turns out it's not
2718 supported, try emulating one with an access watchpoint. */
35df4500 2719 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2720 {
2721 struct bp_location *loc, **loc_temp;
2722
2723 /* But don't try to insert it, if there's already another
2724 hw_access location that would be considered a duplicate
2725 of this one. */
2726 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2727 if (loc != bl
85d721b8 2728 && loc->watchpoint_type == hw_access
35df4500 2729 && watchpoint_locations_match (bl, loc))
85d721b8 2730 {
35df4500
TJB
2731 bl->duplicate = 1;
2732 bl->inserted = 1;
2733 bl->target_info = loc->target_info;
2734 bl->watchpoint_type = hw_access;
85d721b8
PA
2735 val = 0;
2736 break;
2737 }
2738
2739 if (val == 1)
2740 {
77b06cd7
TJB
2741 bl->watchpoint_type = hw_access;
2742 val = bl->owner->ops->insert_location (bl);
2743
2744 if (val)
2745 /* Back to the original value. */
2746 bl->watchpoint_type = hw_read;
85d721b8
PA
2747 }
2748 }
2749
35df4500 2750 bl->inserted = (val == 0);
879bfdc2
DJ
2751 }
2752
35df4500 2753 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2754 {
0000e5cc
PA
2755 int val;
2756
77b06cd7
TJB
2757 gdb_assert (bl->owner->ops != NULL
2758 && bl->owner->ops->insert_location != NULL);
2759
2760 val = bl->owner->ops->insert_location (bl);
2761 if (val)
2762 {
2763 bl->owner->enable_state = bp_disabled;
2764
2765 if (val == 1)
2766 warning (_("\
2767Error inserting catchpoint %d: Your system does not support this type\n\
2768of catchpoint."), bl->owner->number);
2769 else
2770 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2771 }
2772
2773 bl->inserted = (val == 0);
1640b821
DJ
2774
2775 /* We've already printed an error message if there was a problem
2776 inserting this catchpoint, and we've disabled the catchpoint,
2777 so just return success. */
2778 return 0;
879bfdc2
DJ
2779 }
2780
2781 return 0;
2782}
2783
6c95b8df
PA
2784/* This function is called when program space PSPACE is about to be
2785 deleted. It takes care of updating breakpoints to not reference
2786 PSPACE anymore. */
2787
2788void
2789breakpoint_program_space_exit (struct program_space *pspace)
2790{
2791 struct breakpoint *b, *b_temp;
876fa593 2792 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2793
2794 /* Remove any breakpoint that was set through this program space. */
2795 ALL_BREAKPOINTS_SAFE (b, b_temp)
2796 {
2797 if (b->pspace == pspace)
2798 delete_breakpoint (b);
2799 }
2800
2801 /* Breakpoints set through other program spaces could have locations
2802 bound to PSPACE as well. Remove those. */
876fa593 2803 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2804 {
2805 struct bp_location *tmp;
2806
2807 if (loc->pspace == pspace)
2808 {
2bdf28a0 2809 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2810 if (loc->owner->loc == loc)
2811 loc->owner->loc = loc->next;
2812 else
2813 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2814 if (tmp->next == loc)
2815 {
2816 tmp->next = loc->next;
2817 break;
2818 }
2819 }
2820 }
2821
2822 /* Now update the global location list to permanently delete the
2823 removed locations above. */
44702360 2824 update_global_location_list (UGLL_DONT_INSERT);
6c95b8df
PA
2825}
2826
74960c60
VP
2827/* Make sure all breakpoints are inserted in inferior.
2828 Throws exception on any error.
2829 A breakpoint that is already inserted won't be inserted
2830 again, so calling this function twice is safe. */
2831void
2832insert_breakpoints (void)
2833{
2834 struct breakpoint *bpt;
2835
2836 ALL_BREAKPOINTS (bpt)
2837 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
2838 {
2839 struct watchpoint *w = (struct watchpoint *) bpt;
2840
2841 update_watchpoint (w, 0 /* don't reparse. */);
2842 }
74960c60 2843
04086b45
PA
2844 /* Updating watchpoints creates new locations, so update the global
2845 location list. Explicitly tell ugll to insert locations and
2846 ignore breakpoints_always_inserted_mode. */
2847 update_global_location_list (UGLL_INSERT);
74960c60
VP
2848}
2849
20388dd6
YQ
2850/* Invoke CALLBACK for each of bp_location. */
2851
2852void
2853iterate_over_bp_locations (walk_bp_location_callback callback)
2854{
2855 struct bp_location *loc, **loc_tmp;
2856
2857 ALL_BP_LOCATIONS (loc, loc_tmp)
2858 {
2859 callback (loc, NULL);
2860 }
2861}
2862
b775012e
LM
2863/* This is used when we need to synch breakpoint conditions between GDB and the
2864 target. It is the case with deleting and disabling of breakpoints when using
2865 always-inserted mode. */
2866
2867static void
2868update_inserted_breakpoint_locations (void)
2869{
2870 struct bp_location *bl, **blp_tmp;
2871 int error_flag = 0;
2872 int val = 0;
2873 int disabled_breaks = 0;
2874 int hw_breakpoint_error = 0;
dd61ec5c 2875 int hw_bp_details_reported = 0;
b775012e 2876
d7e74731 2877 string_file tmp_error_stream;
b775012e
LM
2878
2879 /* Explicitly mark the warning -- this will only be printed if
2880 there was an error. */
d7e74731 2881 tmp_error_stream.puts ("Warning:\n");
b775012e 2882
5ed8105e 2883 scoped_restore_current_pspace_and_thread restore_pspace_thread;
b775012e
LM
2884
2885 ALL_BP_LOCATIONS (bl, blp_tmp)
2886 {
2887 /* We only want to update software breakpoints and hardware
2888 breakpoints. */
2889 if (!is_breakpoint (bl->owner))
2890 continue;
2891
2892 /* We only want to update locations that are already inserted
2893 and need updating. This is to avoid unwanted insertion during
2894 deletion of breakpoints. */
2895 if (!bl->inserted || (bl->inserted && !bl->needs_update))
2896 continue;
2897
2898 switch_to_program_space_and_thread (bl->pspace);
2899
2900 /* For targets that support global breakpoints, there's no need
2901 to select an inferior to insert breakpoint to. In fact, even
2902 if we aren't attached to any process yet, we should still
2903 insert breakpoints. */
f5656ead 2904 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
d7e15655 2905 && inferior_ptid == null_ptid)
b775012e
LM
2906 continue;
2907
d7e74731 2908 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2909 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
2910 if (val)
2911 error_flag = val;
2912 }
2913
2914 if (error_flag)
2915 {
223ffa71 2916 target_terminal::ours_for_output ();
b775012e
LM
2917 error_stream (tmp_error_stream);
2918 }
b775012e
LM
2919}
2920
c30eee59 2921/* Used when starting or continuing the program. */
c906108c 2922
74960c60
VP
2923static void
2924insert_breakpoint_locations (void)
c906108c 2925{
a5606eee 2926 struct breakpoint *bpt;
35df4500 2927 struct bp_location *bl, **blp_tmp;
eacd795a 2928 int error_flag = 0;
c906108c 2929 int val = 0;
3fbb6ffa 2930 int disabled_breaks = 0;
81d0cc19 2931 int hw_breakpoint_error = 0;
dd61ec5c 2932 int hw_bp_error_explained_already = 0;
c906108c 2933
d7e74731
PA
2934 string_file tmp_error_stream;
2935
81d0cc19
GS
2936 /* Explicitly mark the warning -- this will only be printed if
2937 there was an error. */
d7e74731 2938 tmp_error_stream.puts ("Warning:\n");
6c95b8df 2939
5ed8105e 2940 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 2941
35df4500 2942 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 2943 {
b775012e 2944 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2945 continue;
2946
4a64f543
MS
2947 /* There is no point inserting thread-specific breakpoints if
2948 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2949 has BL->OWNER always non-NULL. */
35df4500 2950 if (bl->owner->thread != -1
5d5658a1 2951 && !valid_global_thread_id (bl->owner->thread))
f365de73
AS
2952 continue;
2953
35df4500 2954 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
2955
2956 /* For targets that support global breakpoints, there's no need
2957 to select an inferior to insert breakpoint to. In fact, even
2958 if we aren't attached to any process yet, we should still
2959 insert breakpoints. */
f5656ead 2960 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
d7e15655 2961 && inferior_ptid == null_ptid)
6c95b8df
PA
2962 continue;
2963
d7e74731 2964 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2965 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 2966 if (val)
eacd795a 2967 error_flag = val;
879bfdc2 2968 }
c906108c 2969
4a64f543
MS
2970 /* If we failed to insert all locations of a watchpoint, remove
2971 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
2972 ALL_BREAKPOINTS (bpt)
2973 {
2974 int some_failed = 0;
2975 struct bp_location *loc;
2976
2977 if (!is_hardware_watchpoint (bpt))
2978 continue;
2979
d6b74ac4 2980 if (!breakpoint_enabled (bpt))
a5606eee 2981 continue;
74960c60
VP
2982
2983 if (bpt->disposition == disp_del_at_next_stop)
2984 continue;
a5606eee
VP
2985
2986 for (loc = bpt->loc; loc; loc = loc->next)
56710373 2987 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
2988 {
2989 some_failed = 1;
2990 break;
2991 }
2992 if (some_failed)
2993 {
2994 for (loc = bpt->loc; loc; loc = loc->next)
2995 if (loc->inserted)
834c0d03 2996 remove_breakpoint (loc);
a5606eee
VP
2997
2998 hw_breakpoint_error = 1;
d7e74731
PA
2999 tmp_error_stream.printf ("Could not insert "
3000 "hardware watchpoint %d.\n",
3001 bpt->number);
eacd795a 3002 error_flag = -1;
a5606eee
VP
3003 }
3004 }
3005
eacd795a 3006 if (error_flag)
81d0cc19
GS
3007 {
3008 /* If a hardware breakpoint or watchpoint was inserted, add a
3009 message about possibly exhausted resources. */
dd61ec5c 3010 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 3011 {
d7e74731 3012 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
c6510018 3013You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 3014 }
223ffa71 3015 target_terminal::ours_for_output ();
81d0cc19
GS
3016 error_stream (tmp_error_stream);
3017 }
c906108c
SS
3018}
3019
c30eee59
TJB
3020/* Used when the program stops.
3021 Returns zero if successful, or non-zero if there was a problem
3022 removing a breakpoint location. */
3023
c906108c 3024int
fba45db2 3025remove_breakpoints (void)
c906108c 3026{
35df4500 3027 struct bp_location *bl, **blp_tmp;
3a1bae8e 3028 int val = 0;
c906108c 3029
35df4500 3030 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3031 {
1e4d1764 3032 if (bl->inserted && !is_tracepoint (bl->owner))
834c0d03 3033 val |= remove_breakpoint (bl);
c5aa993b 3034 }
3a1bae8e 3035 return val;
c906108c
SS
3036}
3037
49fa26b0
PA
3038/* When a thread exits, remove breakpoints that are related to
3039 that thread. */
3040
3041static void
3042remove_threaded_breakpoints (struct thread_info *tp, int silent)
3043{
3044 struct breakpoint *b, *b_tmp;
3045
3046 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3047 {
5d5658a1 3048 if (b->thread == tp->global_num && user_breakpoint_p (b))
49fa26b0
PA
3049 {
3050 b->disposition = disp_del_at_next_stop;
3051
3052 printf_filtered (_("\
43792cf0
PA
3053Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3054 b->number, print_thread_id (tp));
49fa26b0
PA
3055
3056 /* Hide it from the user. */
3057 b->number = 0;
3058 }
3059 }
3060}
3061
00431a78 3062/* Remove breakpoints of inferior INF. */
6c95b8df
PA
3063
3064int
00431a78 3065remove_breakpoints_inf (inferior *inf)
6c95b8df 3066{
35df4500 3067 struct bp_location *bl, **blp_tmp;
6c95b8df 3068 int val;
6c95b8df 3069
35df4500 3070 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3071 {
35df4500 3072 if (bl->pspace != inf->pspace)
6c95b8df
PA
3073 continue;
3074
fc126975 3075 if (bl->inserted && !bl->target_info.persist)
6c95b8df 3076 {
834c0d03 3077 val = remove_breakpoint (bl);
6c95b8df
PA
3078 if (val != 0)
3079 return val;
3080 }
3081 }
3082 return 0;
3083}
3084
e58b0e63
PA
3085static int internal_breakpoint_number = -1;
3086
84f4c1fe
PM
3087/* Set the breakpoint number of B, depending on the value of INTERNAL.
3088 If INTERNAL is non-zero, the breakpoint number will be populated
3089 from internal_breakpoint_number and that variable decremented.
e5dd4106 3090 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3091 breakpoint_count and that value incremented. Internal breakpoints
3092 do not set the internal var bpnum. */
3093static void
3094set_breakpoint_number (int internal, struct breakpoint *b)
3095{
3096 if (internal)
3097 b->number = internal_breakpoint_number--;
3098 else
3099 {
3100 set_breakpoint_count (breakpoint_count + 1);
3101 b->number = breakpoint_count;
3102 }
3103}
3104
e62c965a 3105static struct breakpoint *
a6d9a66e 3106create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3107 CORE_ADDR address, enum bptype type,
c0a91b2b 3108 const struct breakpoint_ops *ops)
e62c965a 3109{
51abb421 3110 symtab_and_line sal;
e62c965a
PP
3111 sal.pc = address;
3112 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3113 sal.pspace = current_program_space;
e62c965a 3114
51abb421 3115 breakpoint *b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3116 b->number = internal_breakpoint_number--;
3117 b->disposition = disp_donttouch;
3118
3119 return b;
3120}
3121
17450429
PP
3122static const char *const longjmp_names[] =
3123 {
3124 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3125 };
3126#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3127
3128/* Per-objfile data private to breakpoint.c. */
3129struct breakpoint_objfile_data
3130{
3131 /* Minimal symbol for "_ovly_debug_event" (if any). */
43dce439 3132 struct bound_minimal_symbol overlay_msym {};
17450429
PP
3133
3134 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
43dce439 3135 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
17450429 3136
28106bc2 3137 /* True if we have looked for longjmp probes. */
43dce439 3138 int longjmp_searched = 0;
28106bc2 3139
45461e0d
SM
3140 /* SystemTap probe points for longjmp (if any). These are non-owning
3141 references. */
3142 std::vector<probe *> longjmp_probes;
28106bc2 3143
17450429 3144 /* Minimal symbol for "std::terminate()" (if any). */
43dce439 3145 struct bound_minimal_symbol terminate_msym {};
17450429
PP
3146
3147 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
43dce439 3148 struct bound_minimal_symbol exception_msym {};
28106bc2
SDJ
3149
3150 /* True if we have looked for exception probes. */
43dce439 3151 int exception_searched = 0;
28106bc2 3152
45461e0d
SM
3153 /* SystemTap probe points for unwinding (if any). These are non-owning
3154 references. */
3155 std::vector<probe *> exception_probes;
17450429
PP
3156};
3157
3158static const struct objfile_data *breakpoint_objfile_key;
3159
3160/* Minimal symbol not found sentinel. */
3161static struct minimal_symbol msym_not_found;
3162
3163/* Returns TRUE if MSYM point to the "not found" sentinel. */
3164
3165static int
3166msym_not_found_p (const struct minimal_symbol *msym)
3167{
3168 return msym == &msym_not_found;
3169}
3170
3171/* Return per-objfile data needed by breakpoint.c.
3172 Allocate the data if necessary. */
3173
3174static struct breakpoint_objfile_data *
3175get_breakpoint_objfile_data (struct objfile *objfile)
3176{
3177 struct breakpoint_objfile_data *bp_objfile_data;
3178
9a3c8263
SM
3179 bp_objfile_data = ((struct breakpoint_objfile_data *)
3180 objfile_data (objfile, breakpoint_objfile_key));
17450429
PP
3181 if (bp_objfile_data == NULL)
3182 {
43dce439 3183 bp_objfile_data = new breakpoint_objfile_data ();
17450429
PP
3184 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3185 }
3186 return bp_objfile_data;
3187}
3188
28106bc2 3189static void
43dce439 3190free_breakpoint_objfile_data (struct objfile *obj, void *data)
28106bc2 3191{
9a3c8263
SM
3192 struct breakpoint_objfile_data *bp_objfile_data
3193 = (struct breakpoint_objfile_data *) data;
28106bc2 3194
43dce439 3195 delete bp_objfile_data;
28106bc2
SDJ
3196}
3197
e62c965a 3198static void
af02033e 3199create_overlay_event_breakpoint (void)
e62c965a 3200{
69de3c6a 3201 struct objfile *objfile;
af02033e 3202 const char *const func_name = "_ovly_debug_event";
e62c965a 3203
69de3c6a
PP
3204 ALL_OBJFILES (objfile)
3205 {
3206 struct breakpoint *b;
17450429
PP
3207 struct breakpoint_objfile_data *bp_objfile_data;
3208 CORE_ADDR addr;
67994074 3209 struct explicit_location explicit_loc;
69de3c6a 3210
17450429
PP
3211 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3212
3b7344d5 3213 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
17450429
PP
3214 continue;
3215
3b7344d5 3216 if (bp_objfile_data->overlay_msym.minsym == NULL)
17450429 3217 {
3b7344d5 3218 struct bound_minimal_symbol m;
17450429
PP
3219
3220 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3221 if (m.minsym == NULL)
17450429
PP
3222 {
3223 /* Avoid future lookups in this objfile. */
3b7344d5 3224 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
17450429
PP
3225 continue;
3226 }
3227 bp_objfile_data->overlay_msym = m;
3228 }
e62c965a 3229
77e371c0 3230 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
17450429 3231 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3232 bp_overlay_event,
3233 &internal_breakpoint_ops);
67994074
KS
3234 initialize_explicit_location (&explicit_loc);
3235 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3236 b->location = new_explicit_location (&explicit_loc);
e62c965a 3237
69de3c6a
PP
3238 if (overlay_debugging == ovly_auto)
3239 {
3240 b->enable_state = bp_enabled;
3241 overlay_events_enabled = 1;
3242 }
3243 else
3244 {
3245 b->enable_state = bp_disabled;
3246 overlay_events_enabled = 0;
3247 }
e62c965a 3248 }
e62c965a
PP
3249}
3250
0fd8e87f 3251static void
af02033e 3252create_longjmp_master_breakpoint (void)
0fd8e87f 3253{
6c95b8df 3254 struct program_space *pspace;
6c95b8df 3255
5ed8105e 3256 scoped_restore_current_program_space restore_pspace;
0fd8e87f 3257
6c95b8df 3258 ALL_PSPACES (pspace)
af02033e
PP
3259 {
3260 struct objfile *objfile;
3261
3262 set_current_program_space (pspace);
3263
3264 ALL_OBJFILES (objfile)
0fd8e87f 3265 {
af02033e
PP
3266 int i;
3267 struct gdbarch *gdbarch;
17450429 3268 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3269
af02033e 3270 gdbarch = get_objfile_arch (objfile);
0fd8e87f 3271
17450429
PP
3272 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3273
28106bc2
SDJ
3274 if (!bp_objfile_data->longjmp_searched)
3275 {
45461e0d
SM
3276 std::vector<probe *> ret
3277 = find_probes_in_objfile (objfile, "libc", "longjmp");
25f9533e 3278
45461e0d 3279 if (!ret.empty ())
25f9533e
SDJ
3280 {
3281 /* We are only interested in checking one element. */
45461e0d 3282 probe *p = ret[0];
25f9533e 3283
935676c9 3284 if (!p->can_evaluate_arguments ())
25f9533e
SDJ
3285 {
3286 /* We cannot use the probe interface here, because it does
3287 not know how to evaluate arguments. */
45461e0d 3288 ret.clear ();
25f9533e
SDJ
3289 }
3290 }
3291 bp_objfile_data->longjmp_probes = ret;
28106bc2
SDJ
3292 bp_objfile_data->longjmp_searched = 1;
3293 }
3294
45461e0d 3295 if (!bp_objfile_data->longjmp_probes.empty ())
28106bc2 3296 {
28106bc2
SDJ
3297 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3298
45461e0d 3299 for (probe *p : bp_objfile_data->longjmp_probes)
28106bc2
SDJ
3300 {
3301 struct breakpoint *b;
3302
729662a5 3303 b = create_internal_breakpoint (gdbarch,
935676c9 3304 p->get_relocated_address (objfile),
28106bc2
SDJ
3305 bp_longjmp_master,
3306 &internal_breakpoint_ops);
d28cd78a 3307 b->location = new_probe_location ("-probe-stap libc:longjmp");
28106bc2
SDJ
3308 b->enable_state = bp_disabled;
3309 }
3310
3311 continue;
3312 }
3313
0569175e
TSD
3314 if (!gdbarch_get_longjmp_target_p (gdbarch))
3315 continue;
3316
17450429 3317 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
3318 {
3319 struct breakpoint *b;
af02033e 3320 const char *func_name;
17450429 3321 CORE_ADDR addr;
67994074 3322 struct explicit_location explicit_loc;
6c95b8df 3323
3b7344d5 3324 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
af02033e 3325 continue;
0fd8e87f 3326
17450429 3327 func_name = longjmp_names[i];
3b7344d5 3328 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
17450429 3329 {
3b7344d5 3330 struct bound_minimal_symbol m;
17450429
PP
3331
3332 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3333 if (m.minsym == NULL)
17450429
PP
3334 {
3335 /* Prevent future lookups in this objfile. */
3b7344d5 3336 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
17450429
PP
3337 continue;
3338 }
3339 bp_objfile_data->longjmp_msym[i] = m;
3340 }
3341
77e371c0 3342 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
06edf0c0
PA
3343 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3344 &internal_breakpoint_ops);
67994074
KS
3345 initialize_explicit_location (&explicit_loc);
3346 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3347 b->location = new_explicit_location (&explicit_loc);
af02033e
PP
3348 b->enable_state = bp_disabled;
3349 }
0fd8e87f 3350 }
af02033e 3351 }
0fd8e87f
UW
3352}
3353
af02033e 3354/* Create a master std::terminate breakpoint. */
aa7d318d 3355static void
af02033e 3356create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3357{
3358 struct program_space *pspace;
af02033e 3359 const char *const func_name = "std::terminate()";
aa7d318d 3360
5ed8105e 3361 scoped_restore_current_program_space restore_pspace;
aa7d318d
TT
3362
3363 ALL_PSPACES (pspace)
17450429
PP
3364 {
3365 struct objfile *objfile;
3366 CORE_ADDR addr;
3367
3368 set_current_program_space (pspace);
3369
aa7d318d
TT
3370 ALL_OBJFILES (objfile)
3371 {
3372 struct breakpoint *b;
17450429 3373 struct breakpoint_objfile_data *bp_objfile_data;
67994074 3374 struct explicit_location explicit_loc;
aa7d318d 3375
17450429 3376 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3377
3b7344d5 3378 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
17450429
PP
3379 continue;
3380
3b7344d5 3381 if (bp_objfile_data->terminate_msym.minsym == NULL)
17450429 3382 {
3b7344d5 3383 struct bound_minimal_symbol m;
17450429
PP
3384
3385 m = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5
TT
3386 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3387 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
17450429
PP
3388 {
3389 /* Prevent future lookups in this objfile. */
3b7344d5 3390 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
17450429
PP
3391 continue;
3392 }
3393 bp_objfile_data->terminate_msym = m;
3394 }
aa7d318d 3395
77e371c0 3396 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
17450429 3397 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3398 bp_std_terminate_master,
3399 &internal_breakpoint_ops);
67994074
KS
3400 initialize_explicit_location (&explicit_loc);
3401 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3402 b->location = new_explicit_location (&explicit_loc);
aa7d318d
TT
3403 b->enable_state = bp_disabled;
3404 }
17450429 3405 }
aa7d318d
TT
3406}
3407
186c406b
TT
3408/* Install a master breakpoint on the unwinder's debug hook. */
3409
70221824 3410static void
186c406b
TT
3411create_exception_master_breakpoint (void)
3412{
3413 struct objfile *objfile;
17450429 3414 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
3415
3416 ALL_OBJFILES (objfile)
3417 {
17450429
PP
3418 struct breakpoint *b;
3419 struct gdbarch *gdbarch;
3420 struct breakpoint_objfile_data *bp_objfile_data;
3421 CORE_ADDR addr;
67994074 3422 struct explicit_location explicit_loc;
17450429
PP
3423
3424 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3425
28106bc2
SDJ
3426 /* We prefer the SystemTap probe point if it exists. */
3427 if (!bp_objfile_data->exception_searched)
3428 {
45461e0d
SM
3429 std::vector<probe *> ret
3430 = find_probes_in_objfile (objfile, "libgcc", "unwind");
25f9533e 3431
45461e0d 3432 if (!ret.empty ())
25f9533e
SDJ
3433 {
3434 /* We are only interested in checking one element. */
45461e0d 3435 probe *p = ret[0];
25f9533e 3436
935676c9 3437 if (!p->can_evaluate_arguments ())
25f9533e
SDJ
3438 {
3439 /* We cannot use the probe interface here, because it does
3440 not know how to evaluate arguments. */
45461e0d 3441 ret.clear ();
25f9533e
SDJ
3442 }
3443 }
3444 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3445 bp_objfile_data->exception_searched = 1;
3446 }
3447
45461e0d 3448 if (!bp_objfile_data->exception_probes.empty ())
28106bc2
SDJ
3449 {
3450 struct gdbarch *gdbarch = get_objfile_arch (objfile);
45461e0d
SM
3451
3452 for (probe *p : bp_objfile_data->exception_probes)
28106bc2
SDJ
3453 {
3454 struct breakpoint *b;
3455
729662a5 3456 b = create_internal_breakpoint (gdbarch,
935676c9 3457 p->get_relocated_address (objfile),
28106bc2
SDJ
3458 bp_exception_master,
3459 &internal_breakpoint_ops);
d28cd78a 3460 b->location = new_probe_location ("-probe-stap libgcc:unwind");
28106bc2
SDJ
3461 b->enable_state = bp_disabled;
3462 }
3463
3464 continue;
3465 }
3466
3467 /* Otherwise, try the hook function. */
3468
3b7344d5 3469 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
17450429
PP
3470 continue;
3471
3472 gdbarch = get_objfile_arch (objfile);
186c406b 3473
3b7344d5 3474 if (bp_objfile_data->exception_msym.minsym == NULL)
186c406b 3475 {
3b7344d5 3476 struct bound_minimal_symbol debug_hook;
186c406b 3477
17450429 3478 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5 3479 if (debug_hook.minsym == NULL)
17450429 3480 {
3b7344d5 3481 bp_objfile_data->exception_msym.minsym = &msym_not_found;
17450429
PP
3482 continue;
3483 }
3484
3485 bp_objfile_data->exception_msym = debug_hook;
186c406b 3486 }
17450429 3487
77e371c0 3488 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
8b88a78e
PA
3489 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3490 current_top_target ());
06edf0c0
PA
3491 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3492 &internal_breakpoint_ops);
67994074
KS
3493 initialize_explicit_location (&explicit_loc);
3494 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3495 b->location = new_explicit_location (&explicit_loc);
17450429 3496 b->enable_state = bp_disabled;
186c406b 3497 }
186c406b
TT
3498}
3499
9ef9e6a6
KS
3500/* Does B have a location spec? */
3501
3502static int
3503breakpoint_event_location_empty_p (const struct breakpoint *b)
3504{
d28cd78a 3505 return b->location != NULL && event_location_empty_p (b->location.get ());
9ef9e6a6
KS
3506}
3507
c906108c 3508void
fba45db2 3509update_breakpoints_after_exec (void)
c906108c 3510{
35df4500 3511 struct breakpoint *b, *b_tmp;
876fa593 3512 struct bp_location *bploc, **bplocp_tmp;
c906108c 3513
25b22b0a
PA
3514 /* We're about to delete breakpoints from GDB's lists. If the
3515 INSERTED flag is true, GDB will try to lift the breakpoints by
3516 writing the breakpoints' "shadow contents" back into memory. The
3517 "shadow contents" are NOT valid after an exec, so GDB should not
3518 do that. Instead, the target is responsible from marking
3519 breakpoints out as soon as it detects an exec. We don't do that
3520 here instead, because there may be other attempts to delete
3521 breakpoints after detecting an exec and before reaching here. */
876fa593 3522 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3523 if (bploc->pspace == current_program_space)
3524 gdb_assert (!bploc->inserted);
c906108c 3525
35df4500 3526 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3527 {
6c95b8df
PA
3528 if (b->pspace != current_program_space)
3529 continue;
3530
4a64f543 3531 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3532 if (b->type == bp_shlib_event)
3533 {
3534 delete_breakpoint (b);
3535 continue;
3536 }
c906108c 3537
4a64f543 3538 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3539 if (b->type == bp_jit_event)
3540 {
3541 delete_breakpoint (b);
3542 continue;
3543 }
3544
1900040c 3545 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3546 as must overlay event and longjmp master breakpoints. */
3547 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3548 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3549 || b->type == bp_exception_master)
c4093a6a
JM
3550 {
3551 delete_breakpoint (b);
3552 continue;
3553 }
3554
4a64f543 3555 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3556 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3557 {
3558 delete_breakpoint (b);
3559 continue;
3560 }
3561
7c16b83e
PA
3562 /* Just like single-step breakpoints. */
3563 if (b->type == bp_single_step)
3564 {
3565 delete_breakpoint (b);
3566 continue;
3567 }
3568
611c83ae
PA
3569 /* Longjmp and longjmp-resume breakpoints are also meaningless
3570 after an exec. */
186c406b 3571 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3572 || b->type == bp_longjmp_call_dummy
186c406b 3573 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3574 {
3575 delete_breakpoint (b);
3576 continue;
3577 }
3578
ce78b96d
JB
3579 if (b->type == bp_catchpoint)
3580 {
3581 /* For now, none of the bp_catchpoint breakpoints need to
3582 do anything at this point. In the future, if some of
3583 the catchpoints need to something, we will need to add
3584 a new method, and call this method from here. */
3585 continue;
3586 }
3587
c5aa993b
JM
3588 /* bp_finish is a special case. The only way we ought to be able
3589 to see one of these when an exec() has happened, is if the user
3590 caught a vfork, and then said "finish". Ordinarily a finish just
3591 carries them to the call-site of the current callee, by setting
3592 a temporary bp there and resuming. But in this case, the finish
3593 will carry them entirely through the vfork & exec.
3594
3595 We don't want to allow a bp_finish to remain inserted now. But
3596 we can't safely delete it, 'cause finish_command has a handle to
3597 the bp on a bpstat, and will later want to delete it. There's a
3598 chance (and I've seen it happen) that if we delete the bp_finish
3599 here, that its storage will get reused by the time finish_command
3600 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3601 We really must allow finish_command to delete a bp_finish.
3602
e5dd4106 3603 In the absence of a general solution for the "how do we know
53a5351d
JM
3604 it's safe to delete something others may have handles to?"
3605 problem, what we'll do here is just uninsert the bp_finish, and
3606 let finish_command delete it.
3607
3608 (We know the bp_finish is "doomed" in the sense that it's
3609 momentary, and will be deleted as soon as finish_command sees
3610 the inferior stopped. So it doesn't matter that the bp's
3611 address is probably bogus in the new a.out, unlike e.g., the
3612 solib breakpoints.) */
c5aa993b 3613
c5aa993b
JM
3614 if (b->type == bp_finish)
3615 {
3616 continue;
3617 }
3618
3619 /* Without a symbolic address, we have little hope of the
3620 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3621 a.out. */
9ef9e6a6 3622 if (breakpoint_event_location_empty_p (b))
c5aa993b
JM
3623 {
3624 delete_breakpoint (b);
3625 continue;
3626 }
c5aa993b 3627 }
c906108c
SS
3628}
3629
3630int
d80ee84f 3631detach_breakpoints (ptid_t ptid)
c906108c 3632{
35df4500 3633 struct bp_location *bl, **blp_tmp;
3a1bae8e 3634 int val = 0;
2989a365 3635 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
6c95b8df 3636 struct inferior *inf = current_inferior ();
c5aa993b 3637
e99b03dc 3638 if (ptid.pid () == inferior_ptid.pid ())
8a3fe4f8 3639 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3640
6c95b8df 3641 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3642 inferior_ptid = ptid;
35df4500 3643 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3644 {
35df4500 3645 if (bl->pspace != inf->pspace)
6c95b8df
PA
3646 continue;
3647
bd9673a4
PW
3648 /* This function must physically remove breakpoints locations
3649 from the specified ptid, without modifying the breakpoint
3650 package's state. Locations of type bp_loc_other are only
3651 maintained at GDB side. So, there is no need to remove
3652 these bp_loc_other locations. Moreover, removing these
3653 would modify the breakpoint package's state. */
3654 if (bl->loc_type == bp_loc_other)
3655 continue;
3656
35df4500 3657 if (bl->inserted)
b2b6a7da 3658 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
c5aa993b 3659 }
d03285ec 3660
3a1bae8e 3661 return val;
c906108c
SS
3662}
3663
35df4500 3664/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3665 Note that this is used to detach breakpoints from a child fork.
3666 When we get here, the child isn't in the inferior list, and neither
3667 do we have objects to represent its address space --- we should
35df4500 3668 *not* look at bl->pspace->aspace here. */
6c95b8df 3669
c906108c 3670static int
b2b6a7da 3671remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
c906108c
SS
3672{
3673 int val;
c5aa993b 3674
35df4500
TJB
3675 /* BL is never in moribund_locations by our callers. */
3676 gdb_assert (bl->owner != NULL);
2bdf28a0 3677
74960c60
VP
3678 /* The type of none suggests that owner is actually deleted.
3679 This should not ever happen. */
35df4500 3680 gdb_assert (bl->owner->type != bp_none);
0bde7532 3681
35df4500
TJB
3682 if (bl->loc_type == bp_loc_software_breakpoint
3683 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3684 {
c02f5703
MS
3685 /* "Normal" instruction breakpoint: either the standard
3686 trap-instruction bp (bp_breakpoint), or a
3687 bp_hardware_breakpoint. */
3688
3689 /* First check to see if we have to handle an overlay. */
3690 if (overlay_debugging == ovly_off
35df4500
TJB
3691 || bl->section == NULL
3692 || !(section_is_overlay (bl->section)))
c02f5703
MS
3693 {
3694 /* No overlay handling: just remove the breakpoint. */
08351840
PA
3695
3696 /* If we're trying to uninsert a memory breakpoint that we
3697 know is set in a dynamic object that is marked
3698 shlib_disabled, then either the dynamic object was
3699 removed with "remove-symbol-file" or with
3700 "nosharedlibrary". In the former case, we don't know
3701 whether another dynamic object might have loaded over the
3702 breakpoint's address -- the user might well let us know
3703 about it next with add-symbol-file (the whole point of
d03de421 3704 add-symbol-file is letting the user manually maintain a
08351840
PA
3705 list of dynamically loaded objects). If we have the
3706 breakpoint's shadow memory, that is, this is a software
3707 breakpoint managed by GDB, check whether the breakpoint
3708 is still inserted in memory, to avoid overwriting wrong
3709 code with stale saved shadow contents. Note that HW
3710 breakpoints don't have shadow memory, as they're
3711 implemented using a mechanism that is not dependent on
3712 being able to modify the target's memory, and as such
3713 they should always be removed. */
3714 if (bl->shlib_disabled
3715 && bl->target_info.shadow_len != 0
3716 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3717 val = 0;
3718 else
73971819 3719 val = bl->owner->ops->remove_location (bl, reason);
c02f5703 3720 }
c906108c
SS
3721 else
3722 {
4a64f543 3723 /* This breakpoint is in an overlay section.
c02f5703
MS
3724 Did we set a breakpoint at the LMA? */
3725 if (!overlay_events_enabled)
3726 {
3727 /* Yes -- overlay event support is not active, so we
3728 should have set a breakpoint at the LMA. Remove it.
3729 */
c02f5703
MS
3730 /* Ignore any failures: if the LMA is in ROM, we will
3731 have already warned when we failed to insert it. */
35df4500
TJB
3732 if (bl->loc_type == bp_loc_hardware_breakpoint)
3733 target_remove_hw_breakpoint (bl->gdbarch,
3734 &bl->overlay_target_info);
c02f5703 3735 else
35df4500 3736 target_remove_breakpoint (bl->gdbarch,
73971819
PA
3737 &bl->overlay_target_info,
3738 reason);
c02f5703
MS
3739 }
3740 /* Did we set a breakpoint at the VMA?
3741 If so, we will have marked the breakpoint 'inserted'. */
35df4500 3742 if (bl->inserted)
c906108c 3743 {
c02f5703
MS
3744 /* Yes -- remove it. Previously we did not bother to
3745 remove the breakpoint if the section had been
3746 unmapped, but let's not rely on that being safe. We
3747 don't know what the overlay manager might do. */
aa67235e
UW
3748
3749 /* However, we should remove *software* breakpoints only
3750 if the section is still mapped, or else we overwrite
3751 wrong code with the saved shadow contents. */
348d480f
PA
3752 if (bl->loc_type == bp_loc_hardware_breakpoint
3753 || section_is_mapped (bl->section))
73971819 3754 val = bl->owner->ops->remove_location (bl, reason);
aa67235e
UW
3755 else
3756 val = 0;
c906108c 3757 }
c02f5703
MS
3758 else
3759 {
3760 /* No -- not inserted, so no need to remove. No error. */
3761 val = 0;
3762 }
c906108c 3763 }
879d1e6b 3764
08351840
PA
3765 /* In some cases, we might not be able to remove a breakpoint in
3766 a shared library that has already been removed, but we have
3767 not yet processed the shlib unload event. Similarly for an
3768 unloaded add-symbol-file object - the user might not yet have
3769 had the chance to remove-symbol-file it. shlib_disabled will
3770 be set if the library/object has already been removed, but
3771 the breakpoint hasn't been uninserted yet, e.g., after
3772 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3773 always-inserted mode. */
076855f9 3774 if (val
08351840
PA
3775 && (bl->loc_type == bp_loc_software_breakpoint
3776 && (bl->shlib_disabled
3777 || solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
3778 || shared_objfile_contains_address_p (bl->pspace,
3779 bl->address))))
879d1e6b
UW
3780 val = 0;
3781
c906108c
SS
3782 if (val)
3783 return val;
b2b6a7da 3784 bl->inserted = (reason == DETACH_BREAKPOINT);
c906108c 3785 }
35df4500 3786 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 3787 {
77b06cd7
TJB
3788 gdb_assert (bl->owner->ops != NULL
3789 && bl->owner->ops->remove_location != NULL);
3790
b2b6a7da 3791 bl->inserted = (reason == DETACH_BREAKPOINT);
73971819 3792 bl->owner->ops->remove_location (bl, reason);
2e70b7b9 3793
c906108c 3794 /* Failure to remove any of the hardware watchpoints comes here. */
b2b6a7da 3795 if (reason == REMOVE_BREAKPOINT && bl->inserted)
8a3fe4f8 3796 warning (_("Could not remove hardware watchpoint %d."),
35df4500 3797 bl->owner->number);
c906108c 3798 }
35df4500
TJB
3799 else if (bl->owner->type == bp_catchpoint
3800 && breakpoint_enabled (bl->owner)
3801 && !bl->duplicate)
ce78b96d 3802 {
77b06cd7
TJB
3803 gdb_assert (bl->owner->ops != NULL
3804 && bl->owner->ops->remove_location != NULL);
ce78b96d 3805
73971819 3806 val = bl->owner->ops->remove_location (bl, reason);
ce78b96d
JB
3807 if (val)
3808 return val;
77b06cd7 3809
b2b6a7da 3810 bl->inserted = (reason == DETACH_BREAKPOINT);
ce78b96d 3811 }
c906108c
SS
3812
3813 return 0;
3814}
3815
6c95b8df 3816static int
834c0d03 3817remove_breakpoint (struct bp_location *bl)
6c95b8df 3818{
35df4500
TJB
3819 /* BL is never in moribund_locations by our callers. */
3820 gdb_assert (bl->owner != NULL);
2bdf28a0 3821
6c95b8df
PA
3822 /* The type of none suggests that owner is actually deleted.
3823 This should not ever happen. */
35df4500 3824 gdb_assert (bl->owner->type != bp_none);
6c95b8df 3825
5ed8105e 3826 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 3827
35df4500 3828 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 3829
5ed8105e 3830 return remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
6c95b8df
PA
3831}
3832
c906108c
SS
3833/* Clear the "inserted" flag in all breakpoints. */
3834
25b22b0a 3835void
fba45db2 3836mark_breakpoints_out (void)
c906108c 3837{
35df4500 3838 struct bp_location *bl, **blp_tmp;
c906108c 3839
35df4500 3840 ALL_BP_LOCATIONS (bl, blp_tmp)
66c4b3e8 3841 if (bl->pspace == current_program_space)
35df4500 3842 bl->inserted = 0;
c906108c
SS
3843}
3844
53a5351d
JM
3845/* Clear the "inserted" flag in all breakpoints and delete any
3846 breakpoints which should go away between runs of the program.
c906108c
SS
3847
3848 Plus other such housekeeping that has to be done for breakpoints
3849 between runs.
3850
53a5351d
JM
3851 Note: this function gets called at the end of a run (by
3852 generic_mourn_inferior) and when a run begins (by
4a64f543 3853 init_wait_for_inferior). */
c906108c
SS
3854
3855
3856
3857void
fba45db2 3858breakpoint_init_inferior (enum inf_context context)
c906108c 3859{
35df4500 3860 struct breakpoint *b, *b_tmp;
6c95b8df 3861 struct program_space *pspace = current_program_space;
c906108c 3862
50c71eaf
PA
3863 /* If breakpoint locations are shared across processes, then there's
3864 nothing to do. */
f5656ead 3865 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
3866 return;
3867
1a853c52 3868 mark_breakpoints_out ();
075f6582 3869
35df4500 3870 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3871 {
6c95b8df
PA
3872 if (b->loc && b->loc->pspace != pspace)
3873 continue;
3874
c5aa993b
JM
3875 switch (b->type)
3876 {
3877 case bp_call_dummy:
e2e4d78b 3878 case bp_longjmp_call_dummy:
c906108c 3879
c5aa993b 3880 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
3881 cause problems when the inferior is rerun, so we better get
3882 rid of it. */
3883
3884 case bp_watchpoint_scope:
3885
3886 /* Also get rid of scope breakpoints. */
3887
3888 case bp_shlib_event:
3889
3890 /* Also remove solib event breakpoints. Their addresses may
3891 have changed since the last time we ran the program.
3892 Actually we may now be debugging against different target;
3893 and so the solib backend that installed this breakpoint may
3894 not be used in by the target. E.g.,
3895
3896 (gdb) file prog-linux
3897 (gdb) run # native linux target
3898 ...
3899 (gdb) kill
3900 (gdb) file prog-win.exe
3901 (gdb) tar rem :9999 # remote Windows gdbserver.
3902 */
c906108c 3903
f59f708a
PA
3904 case bp_step_resume:
3905
3906 /* Also remove step-resume breakpoints. */
3907
7c16b83e
PA
3908 case bp_single_step:
3909
3910 /* Also remove single-step breakpoints. */
3911
c5aa993b
JM
3912 delete_breakpoint (b);
3913 break;
c906108c 3914
c5aa993b
JM
3915 case bp_watchpoint:
3916 case bp_hardware_watchpoint:
3917 case bp_read_watchpoint:
3918 case bp_access_watchpoint:
3a5c3e22
PA
3919 {
3920 struct watchpoint *w = (struct watchpoint *) b;
c906108c 3921
3a5c3e22
PA
3922 /* Likewise for watchpoints on local expressions. */
3923 if (w->exp_valid_block != NULL)
3924 delete_breakpoint (b);
63000888 3925 else
3a5c3e22 3926 {
63000888
PA
3927 /* Get rid of existing locations, which are no longer
3928 valid. New ones will be created in
3929 update_watchpoint, when the inferior is restarted.
3930 The next update_global_location_list call will
3931 garbage collect them. */
3932 b->loc = NULL;
3933
3934 if (context == inf_starting)
3935 {
3936 /* Reset val field to force reread of starting value in
3937 insert_breakpoints. */
850645cf 3938 w->val.reset (nullptr);
63000888
PA
3939 w->val_valid = 0;
3940 }
3941 }
3a5c3e22 3942 }
c5aa993b
JM
3943 break;
3944 default:
c5aa993b
JM
3945 break;
3946 }
3947 }
1c5cfe86
PA
3948
3949 /* Get rid of the moribund locations. */
1123588c 3950 for (bp_location *bl : moribund_locations)
35df4500 3951 decref_bp_location (&bl);
1123588c 3952 moribund_locations.clear ();
c906108c
SS
3953}
3954
6c95b8df
PA
3955/* These functions concern about actual breakpoints inserted in the
3956 target --- to e.g. check if we need to do decr_pc adjustment or if
3957 we need to hop over the bkpt --- so we check for address space
3958 match, not program space. */
3959
c2c6d25f
JM
3960/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3961 exists at PC. It returns ordinary_breakpoint_here if it's an
3962 ordinary breakpoint, or permanent_breakpoint_here if it's a
3963 permanent breakpoint.
3964 - When continuing from a location with an ordinary breakpoint, we
3965 actually single step once before calling insert_breakpoints.
e5dd4106 3966 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
3967 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3968 the target, to advance the PC past the breakpoint. */
c906108c 3969
c2c6d25f 3970enum breakpoint_here
accd0bcd 3971breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 3972{
35df4500 3973 struct bp_location *bl, **blp_tmp;
c2c6d25f 3974 int any_breakpoint_here = 0;
c906108c 3975
35df4500 3976 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 3977 {
35df4500
TJB
3978 if (bl->loc_type != bp_loc_software_breakpoint
3979 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
3980 continue;
3981
f1310107 3982 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500 3983 if ((breakpoint_enabled (bl->owner)
1a853c52 3984 || bl->permanent)
f1310107 3985 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
3986 {
3987 if (overlay_debugging
35df4500
TJB
3988 && section_is_overlay (bl->section)
3989 && !section_is_mapped (bl->section))
075f6582 3990 continue; /* unmapped overlay -- can't be a match */
1a853c52 3991 else if (bl->permanent)
075f6582
DJ
3992 return permanent_breakpoint_here;
3993 else
3994 any_breakpoint_here = 1;
3995 }
3996 }
c906108c 3997
f486487f 3998 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
c906108c
SS
3999}
4000
d35ae833
PA
4001/* See breakpoint.h. */
4002
4003int
accd0bcd 4004breakpoint_in_range_p (const address_space *aspace,
d35ae833
PA
4005 CORE_ADDR addr, ULONGEST len)
4006{
4007 struct bp_location *bl, **blp_tmp;
4008
4009 ALL_BP_LOCATIONS (bl, blp_tmp)
4010 {
4011 if (bl->loc_type != bp_loc_software_breakpoint
4012 && bl->loc_type != bp_loc_hardware_breakpoint)
4013 continue;
4014
4015 if ((breakpoint_enabled (bl->owner)
4016 || bl->permanent)
4017 && breakpoint_location_address_range_overlap (bl, aspace,
4018 addr, len))
4019 {
4020 if (overlay_debugging
4021 && section_is_overlay (bl->section)
4022 && !section_is_mapped (bl->section))
4023 {
4024 /* Unmapped overlay -- can't be a match. */
4025 continue;
4026 }
4027
4028 return 1;
4029 }
4030 }
4031
4032 return 0;
4033}
4034
1c5cfe86
PA
4035/* Return true if there's a moribund breakpoint at PC. */
4036
4037int
accd0bcd 4038moribund_breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
1c5cfe86 4039{
1123588c 4040 for (bp_location *loc : moribund_locations)
f1310107 4041 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
4042 return 1;
4043
4044 return 0;
4045}
c2c6d25f 4046
f7ce857f
PA
4047/* Returns non-zero iff BL is inserted at PC, in address space
4048 ASPACE. */
4049
4050static int
4051bp_location_inserted_here_p (struct bp_location *bl,
accd0bcd 4052 const address_space *aspace, CORE_ADDR pc)
f7ce857f
PA
4053{
4054 if (bl->inserted
4055 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4056 aspace, pc))
4057 {
4058 if (overlay_debugging
4059 && section_is_overlay (bl->section)
4060 && !section_is_mapped (bl->section))
4061 return 0; /* unmapped overlay -- can't be a match */
4062 else
4063 return 1;
4064 }
4065 return 0;
4066}
4067
a1fd2fa5 4068/* Returns non-zero iff there's a breakpoint inserted at PC. */
c906108c
SS
4069
4070int
accd0bcd 4071breakpoint_inserted_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 4072{
f7ce857f 4073 struct bp_location **blp, **blp_tmp = NULL;
c906108c 4074
f7ce857f 4075 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
c5aa993b 4076 {
f7ce857f
PA
4077 struct bp_location *bl = *blp;
4078
35df4500
TJB
4079 if (bl->loc_type != bp_loc_software_breakpoint
4080 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4081 continue;
4082
f7ce857f
PA
4083 if (bp_location_inserted_here_p (bl, aspace, pc))
4084 return 1;
c5aa993b 4085 }
c36b740a
VP
4086 return 0;
4087}
4088
a1fd2fa5
PA
4089/* This function returns non-zero iff there is a software breakpoint
4090 inserted at PC. */
c36b740a
VP
4091
4092int
accd0bcd 4093software_breakpoint_inserted_here_p (const address_space *aspace,
a1fd2fa5 4094 CORE_ADDR pc)
4fa8626c 4095{
f7ce857f 4096 struct bp_location **blp, **blp_tmp = NULL;
4fa8626c 4097
f7ce857f 4098 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4fa8626c 4099 {
f7ce857f
PA
4100 struct bp_location *bl = *blp;
4101
35df4500 4102 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4103 continue;
4104
f7ce857f
PA
4105 if (bp_location_inserted_here_p (bl, aspace, pc))
4106 return 1;
4fa8626c
DJ
4107 }
4108
4109 return 0;
9c02b525
PA
4110}
4111
4112/* See breakpoint.h. */
4113
4114int
accd0bcd 4115hardware_breakpoint_inserted_here_p (const address_space *aspace,
9c02b525
PA
4116 CORE_ADDR pc)
4117{
4118 struct bp_location **blp, **blp_tmp = NULL;
9c02b525
PA
4119
4120 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4121 {
4122 struct bp_location *bl = *blp;
4123
4124 if (bl->loc_type != bp_loc_hardware_breakpoint)
4125 continue;
4126
4127 if (bp_location_inserted_here_p (bl, aspace, pc))
4128 return 1;
4129 }
4130
4131 return 0;
4fa8626c
DJ
4132}
4133
9093389c 4134int
accd0bcd 4135hardware_watchpoint_inserted_in_range (const address_space *aspace,
9093389c
PA
4136 CORE_ADDR addr, ULONGEST len)
4137{
4138 struct breakpoint *bpt;
4139
4140 ALL_BREAKPOINTS (bpt)
4141 {
4142 struct bp_location *loc;
4143
4144 if (bpt->type != bp_hardware_watchpoint
4145 && bpt->type != bp_access_watchpoint)
4146 continue;
4147
4148 if (!breakpoint_enabled (bpt))
4149 continue;
4150
4151 for (loc = bpt->loc; loc; loc = loc->next)
4152 if (loc->pspace->aspace == aspace && loc->inserted)
4153 {
4154 CORE_ADDR l, h;
4155
4156 /* Check for intersection. */
768adc05
PA
4157 l = std::max<CORE_ADDR> (loc->address, addr);
4158 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
9093389c
PA
4159 if (l < h)
4160 return 1;
4161 }
4162 }
4163 return 0;
4164}
c906108c 4165\f
c5aa993b 4166
c906108c
SS
4167/* bpstat stuff. External routines' interfaces are documented
4168 in breakpoint.h. */
4169
4170int
c326b90e 4171is_catchpoint (struct breakpoint *ep)
c906108c 4172{
533be4dd 4173 return (ep->type == bp_catchpoint);
c906108c
SS
4174}
4175
f431efe5
PA
4176/* Frees any storage that is part of a bpstat. Does not walk the
4177 'next' chain. */
4178
04afa70c 4179bpstats::~bpstats ()
198757a8 4180{
04afa70c
TT
4181 if (bp_location_at != NULL)
4182 decref_bp_location (&bp_location_at);
198757a8
VP
4183}
4184
c906108c
SS
4185/* Clear a bpstat so that it says we are not at any breakpoint.
4186 Also free any storage that is part of a bpstat. */
4187
4188void
fba45db2 4189bpstat_clear (bpstat *bsp)
c906108c
SS
4190{
4191 bpstat p;
4192 bpstat q;
4193
4194 if (bsp == 0)
4195 return;
4196 p = *bsp;
4197 while (p != NULL)
4198 {
4199 q = p->next;
04afa70c 4200 delete p;
c906108c
SS
4201 p = q;
4202 }
4203 *bsp = NULL;
4204}
4205
04afa70c
TT
4206bpstats::bpstats (const bpstats &other)
4207 : next (NULL),
4208 bp_location_at (other.bp_location_at),
4209 breakpoint_at (other.breakpoint_at),
4210 commands (other.commands),
04afa70c
TT
4211 print (other.print),
4212 stop (other.stop),
4213 print_it (other.print_it)
4214{
850645cf
TT
4215 if (other.old_val != NULL)
4216 old_val = release_value (value_copy (other.old_val.get ()));
04afa70c 4217 incref_bp_location (bp_location_at);
04afa70c
TT
4218}
4219
c906108c
SS
4220/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4221 is part of the bpstat is copied as well. */
4222
4223bpstat
fba45db2 4224bpstat_copy (bpstat bs)
c906108c
SS
4225{
4226 bpstat p = NULL;
4227 bpstat tmp;
4228 bpstat retval = NULL;
4229
4230 if (bs == NULL)
4231 return bs;
4232
4233 for (; bs != NULL; bs = bs->next)
4234 {
04afa70c 4235 tmp = new bpstats (*bs);
31cc81e9 4236
c906108c
SS
4237 if (p == NULL)
4238 /* This is the first thing in the chain. */
4239 retval = tmp;
4240 else
4241 p->next = tmp;
4242 p = tmp;
4243 }
4244 p->next = NULL;
4245 return retval;
4246}
4247
4a64f543 4248/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4249
4250bpstat
fba45db2 4251bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4252{
c5aa993b
JM
4253 if (bsp == NULL)
4254 return NULL;
c906108c 4255
c5aa993b
JM
4256 for (; bsp != NULL; bsp = bsp->next)
4257 {
f431efe5 4258 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4259 return bsp;
4260 }
c906108c
SS
4261 return NULL;
4262}
4263
ab04a2af
TT
4264/* See breakpoint.h. */
4265
47591c29 4266int
427cd150 4267bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4268{
ab04a2af
TT
4269 for (; bsp != NULL; bsp = bsp->next)
4270 {
427cd150
TT
4271 if (bsp->breakpoint_at == NULL)
4272 {
4273 /* A moribund location can never explain a signal other than
4274 GDB_SIGNAL_TRAP. */
4275 if (sig == GDB_SIGNAL_TRAP)
47591c29 4276 return 1;
427cd150
TT
4277 }
4278 else
47591c29
PA
4279 {
4280 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4281 sig))
4282 return 1;
4283 }
ab04a2af
TT
4284 }
4285
47591c29 4286 return 0;
ab04a2af
TT
4287}
4288
4a64f543
MS
4289/* Put in *NUM the breakpoint number of the first breakpoint we are
4290 stopped at. *BSP upon return is a bpstat which points to the
4291 remaining breakpoints stopped at (but which is not guaranteed to be
4292 good for anything but further calls to bpstat_num).
4293
8671a17b
PA
4294 Return 0 if passed a bpstat which does not indicate any breakpoints.
4295 Return -1 if stopped at a breakpoint that has been deleted since
4296 we set it.
4297 Return 1 otherwise. */
c906108c
SS
4298
4299int
8671a17b 4300bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4301{
4302 struct breakpoint *b;
4303
4304 if ((*bsp) == NULL)
4305 return 0; /* No more breakpoint values */
8671a17b 4306
4a64f543
MS
4307 /* We assume we'll never have several bpstats that correspond to a
4308 single breakpoint -- otherwise, this function might return the
4309 same number more than once and this will look ugly. */
f431efe5 4310 b = (*bsp)->breakpoint_at;
8671a17b
PA
4311 *bsp = (*bsp)->next;
4312 if (b == NULL)
4313 return -1; /* breakpoint that's been deleted since */
4314
4315 *num = b->number; /* We have its number */
4316 return 1;
c906108c
SS
4317}
4318
e93ca019 4319/* See breakpoint.h. */
c906108c
SS
4320
4321void
e93ca019 4322bpstat_clear_actions (void)
c906108c 4323{
e93ca019
JK
4324 bpstat bs;
4325
00431a78 4326 if (inferior_ptid == null_ptid)
e93ca019
JK
4327 return;
4328
00431a78 4329 thread_info *tp = inferior_thread ();
e93ca019 4330 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4331 {
d1b0a7bf 4332 bs->commands = NULL;
850645cf 4333 bs->old_val.reset (nullptr);
c906108c
SS
4334 }
4335}
4336
f3b1572e
PA
4337/* Called when a command is about to proceed the inferior. */
4338
4339static void
4340breakpoint_about_to_proceed (void)
4341{
d7e15655 4342 if (inferior_ptid != null_ptid)
f3b1572e
PA
4343 {
4344 struct thread_info *tp = inferior_thread ();
4345
4346 /* Allow inferior function calls in breakpoint commands to not
4347 interrupt the command list. When the call finishes
4348 successfully, the inferior will be standing at the same
4349 breakpoint as if nothing happened. */
16c381f0 4350 if (tp->control.in_infcall)
f3b1572e
PA
4351 return;
4352 }
4353
4354 breakpoint_proceeded = 1;
4355}
4356
abf85f46
JK
4357/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4358 or its equivalent. */
4359
4360static int
4361command_line_is_silent (struct command_line *cmd)
4362{
4f45d445 4363 return cmd && (strcmp ("silent", cmd->line) == 0);
abf85f46
JK
4364}
4365
4a64f543
MS
4366/* Execute all the commands associated with all the breakpoints at
4367 this location. Any of these commands could cause the process to
4368 proceed beyond this point, etc. We look out for such changes by
4369 checking the global "breakpoint_proceeded" after each command.
c906108c 4370
347bddb7
PA
4371 Returns true if a breakpoint command resumed the inferior. In that
4372 case, it is the caller's responsibility to recall it again with the
4373 bpstat of the current thread. */
4374
4375static int
4376bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4377{
4378 bpstat bs;
347bddb7 4379 int again = 0;
c906108c
SS
4380
4381 /* Avoid endless recursion if a `source' command is contained
4382 in bs->commands. */
4383 if (executing_breakpoint_commands)
347bddb7 4384 return 0;
c906108c 4385
81b1e71c
TT
4386 scoped_restore save_executing
4387 = make_scoped_restore (&executing_breakpoint_commands, 1);
c906108c 4388
1ac32117 4389 scoped_restore preventer = prevent_dont_repeat ();
cf6c5ffb 4390
4a64f543 4391 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4392 bs = *bsp;
4393
4394 breakpoint_proceeded = 0;
4395 for (; bs != NULL; bs = bs->next)
4396 {
d1b0a7bf 4397 struct command_line *cmd = NULL;
6c50ab1c
JB
4398
4399 /* Take ownership of the BSP's command tree, if it has one.
4400
4401 The command tree could legitimately contain commands like
4402 'step' and 'next', which call clear_proceed_status, which
4403 frees stop_bpstat's command tree. To make sure this doesn't
4404 free the tree we're executing out from under us, we need to
4405 take ownership of the tree ourselves. Since a given bpstat's
4406 commands are only executed once, we don't need to copy it; we
4407 can clear the pointer in the bpstat, and make sure we free
4408 the tree when we're done. */
d1b0a7bf 4409 counted_command_line ccmd = bs->commands;
9add0f1b 4410 bs->commands = NULL;
d1b0a7bf
TT
4411 if (ccmd != NULL)
4412 cmd = ccmd.get ();
abf85f46
JK
4413 if (command_line_is_silent (cmd))
4414 {
4415 /* The action has been already done by bpstat_stop_status. */
4416 cmd = cmd->next;
4417 }
6c50ab1c 4418
c906108c
SS
4419 while (cmd != NULL)
4420 {
4421 execute_control_command (cmd);
4422
4423 if (breakpoint_proceeded)
4424 break;
4425 else
4426 cmd = cmd->next;
4427 }
6c50ab1c 4428
c906108c 4429 if (breakpoint_proceeded)
32c1e744 4430 {
cb814510 4431 if (current_ui->async)
347bddb7
PA
4432 /* If we are in async mode, then the target might be still
4433 running, not stopped at any breakpoint, so nothing for
4434 us to do here -- just return to the event loop. */
4435 ;
32c1e744
VP
4436 else
4437 /* In sync mode, when execute_control_command returns
4438 we're already standing on the next breakpoint.
347bddb7
PA
4439 Breakpoint commands for that stop were not run, since
4440 execute_command does not run breakpoint commands --
4441 only command_line_handler does, but that one is not
4442 involved in execution of breakpoint commands. So, we
4443 can now execute breakpoint commands. It should be
4444 noted that making execute_command do bpstat actions is
4445 not an option -- in this case we'll have recursive
4446 invocation of bpstat for each breakpoint with a
4447 command, and can easily blow up GDB stack. Instead, we
4448 return true, which will trigger the caller to recall us
4449 with the new stop_bpstat. */
4450 again = 1;
4451 break;
32c1e744 4452 }
c906108c 4453 }
347bddb7
PA
4454 return again;
4455}
4456
00431a78
PA
4457/* Helper for bpstat_do_actions. Get the current thread, if there's
4458 one, is alive and has execution. Return NULL otherwise. */
4459
4460static thread_info *
4461get_bpstat_thread ()
4462{
4463 if (inferior_ptid == null_ptid || !target_has_execution)
4464 return NULL;
4465
4466 thread_info *tp = inferior_thread ();
4467 if (tp->state == THREAD_EXITED || tp->executing)
4468 return NULL;
4469 return tp;
4470}
4471
347bddb7
PA
4472void
4473bpstat_do_actions (void)
4474{
353d1d73 4475 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
00431a78 4476 thread_info *tp;
353d1d73 4477
347bddb7 4478 /* Do any commands attached to breakpoint we are stopped at. */
00431a78
PA
4479 while ((tp = get_bpstat_thread ()) != NULL)
4480 {
4481 /* Since in sync mode, bpstat_do_actions may resume the
4482 inferior, and only return when it is stopped at the next
4483 breakpoint, we keep doing breakpoint actions until it returns
4484 false to indicate the inferior was not resumed. */
4485 if (!bpstat_do_actions_1 (&tp->control.stop_bpstat))
4486 break;
4487 }
353d1d73
JK
4488
4489 discard_cleanups (cleanup_if_error);
c906108c
SS
4490}
4491
fa4727a6
DJ
4492/* Print out the (old or new) value associated with a watchpoint. */
4493
4494static void
4495watchpoint_value_print (struct value *val, struct ui_file *stream)
4496{
4497 if (val == NULL)
4498 fprintf_unfiltered (stream, _("<unreadable>"));
4499 else
79a45b7d
TT
4500 {
4501 struct value_print_options opts;
4502 get_user_print_options (&opts);
4503 value_print (val, stream, &opts);
4504 }
fa4727a6
DJ
4505}
4506
f303dbd6
PA
4507/* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4508 debugging multiple threads. */
4509
4510void
4511maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4512{
112e8700 4513 if (uiout->is_mi_like_p ())
f303dbd6
PA
4514 return;
4515
112e8700 4516 uiout->text ("\n");
f303dbd6
PA
4517
4518 if (show_thread_that_caused_stop ())
4519 {
4520 const char *name;
4521 struct thread_info *thr = inferior_thread ();
4522
112e8700
SM
4523 uiout->text ("Thread ");
4524 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
f303dbd6
PA
4525
4526 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4527 if (name != NULL)
4528 {
112e8700
SM
4529 uiout->text (" \"");
4530 uiout->field_fmt ("name", "%s", name);
4531 uiout->text ("\"");
f303dbd6
PA
4532 }
4533
112e8700 4534 uiout->text (" hit ");
f303dbd6
PA
4535 }
4536}
4537
e514a9d6 4538/* Generic routine for printing messages indicating why we
4a64f543 4539 stopped. The behavior of this function depends on the value
e514a9d6
JM
4540 'print_it' in the bpstat structure. Under some circumstances we
4541 may decide not to print anything here and delegate the task to
4a64f543 4542 normal_stop(). */
e514a9d6
JM
4543
4544static enum print_stop_action
4545print_bp_stop_message (bpstat bs)
4546{
4547 switch (bs->print_it)
4548 {
4549 case print_it_noop:
4a64f543 4550 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4551 return PRINT_UNKNOWN;
4552 break;
4553
4554 case print_it_done:
4555 /* We still want to print the frame, but we already printed the
4a64f543 4556 relevant messages. */
e514a9d6
JM
4557 return PRINT_SRC_AND_LOC;
4558 break;
4559
4560 case print_it_normal:
4f8d1dc6 4561 {
f431efe5
PA
4562 struct breakpoint *b = bs->breakpoint_at;
4563
1a6a67de
TJB
4564 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4565 which has since been deleted. */
4566 if (b == NULL)
4567 return PRINT_UNKNOWN;
4568
348d480f
PA
4569 /* Normal case. Call the breakpoint's print_it method. */
4570 return b->ops->print_it (bs);
4f8d1dc6 4571 }
348d480f 4572 break;
3086aeae 4573
e514a9d6 4574 default:
8e65ff28 4575 internal_error (__FILE__, __LINE__,
e2e0b3e5 4576 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4577 break;
c906108c 4578 }
c906108c
SS
4579}
4580
edcc5120
TT
4581/* A helper function that prints a shared library stopped event. */
4582
4583static void
4584print_solib_event (int is_catchpoint)
4585{
6fb16ce6 4586 bool any_deleted = !current_program_space->deleted_solibs.empty ();
bcb430e4 4587 bool any_added = !current_program_space->added_solibs.empty ();
edcc5120
TT
4588
4589 if (!is_catchpoint)
4590 {
4591 if (any_added || any_deleted)
112e8700 4592 current_uiout->text (_("Stopped due to shared library event:\n"));
edcc5120 4593 else
112e8700
SM
4594 current_uiout->text (_("Stopped due to shared library event (no "
4595 "libraries added or removed)\n"));
edcc5120
TT
4596 }
4597
112e8700
SM
4598 if (current_uiout->is_mi_like_p ())
4599 current_uiout->field_string ("reason",
4600 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
edcc5120
TT
4601
4602 if (any_deleted)
4603 {
112e8700 4604 current_uiout->text (_(" Inferior unloaded "));
10f489e5 4605 ui_out_emit_list list_emitter (current_uiout, "removed");
6fb16ce6 4606 for (int ix = 0; ix < current_program_space->deleted_solibs.size (); ix++)
edcc5120 4607 {
6fb16ce6
SM
4608 const std::string &name = current_program_space->deleted_solibs[ix];
4609
edcc5120 4610 if (ix > 0)
112e8700
SM
4611 current_uiout->text (" ");
4612 current_uiout->field_string ("library", name);
4613 current_uiout->text ("\n");
edcc5120 4614 }
edcc5120
TT
4615 }
4616
4617 if (any_added)
4618 {
112e8700 4619 current_uiout->text (_(" Inferior loaded "));
10f489e5 4620 ui_out_emit_list list_emitter (current_uiout, "added");
bcb430e4 4621 bool first = true;
52941706 4622 for (so_list *iter : current_program_space->added_solibs)
edcc5120 4623 {
bcb430e4 4624 if (!first)
112e8700 4625 current_uiout->text (" ");
bcb430e4 4626 first = false;
112e8700
SM
4627 current_uiout->field_string ("library", iter->so_name);
4628 current_uiout->text ("\n");
edcc5120 4629 }
edcc5120
TT
4630 }
4631}
4632
e514a9d6
JM
4633/* Print a message indicating what happened. This is called from
4634 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4635 list - a list of the eventpoints that caused this stop. KIND is
4636 the target_waitkind for the stopping event. This
e514a9d6
JM
4637 routine calls the generic print routine for printing a message
4638 about reasons for stopping. This will print (for example) the
4639 "Breakpoint n," part of the output. The return value of this
4640 routine is one of:
c906108c 4641
4a64f543 4642 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4643 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4644 code to print the location. An example is
c5aa993b
JM
4645 "Breakpoint 1, " which should be followed by
4646 the location.
917317f4 4647 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4648 to also print the location part of the message.
4649 An example is the catch/throw messages, which
4a64f543 4650 don't require a location appended to the end.
917317f4 4651 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4652 further info to be printed. */
c906108c 4653
917317f4 4654enum print_stop_action
36dfb11c 4655bpstat_print (bpstat bs, int kind)
c906108c 4656{
f486487f 4657 enum print_stop_action val;
c5aa993b 4658
c906108c 4659 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4660 (Currently all watchpoints go on the bpstat whether hit or not.
4661 That probably could (should) be changed, provided care is taken
c906108c 4662 with respect to bpstat_explains_signal). */
e514a9d6
JM
4663 for (; bs; bs = bs->next)
4664 {
4665 val = print_bp_stop_message (bs);
4666 if (val == PRINT_SRC_ONLY
4667 || val == PRINT_SRC_AND_LOC
4668 || val == PRINT_NOTHING)
4669 return val;
4670 }
c906108c 4671
36dfb11c
TT
4672 /* If we had hit a shared library event breakpoint,
4673 print_bp_stop_message would print out this message. If we hit an
4674 OS-level shared library event, do the same thing. */
4675 if (kind == TARGET_WAITKIND_LOADED)
4676 {
edcc5120 4677 print_solib_event (0);
36dfb11c
TT
4678 return PRINT_NOTHING;
4679 }
4680
e514a9d6 4681 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4682 with and nothing was printed. */
917317f4 4683 return PRINT_UNKNOWN;
c906108c
SS
4684}
4685
bf469271 4686/* Evaluate the boolean expression EXP and return the result. */
c906108c 4687
bf469271
PA
4688static bool
4689breakpoint_cond_eval (expression *exp)
c906108c 4690{
278cd55f 4691 struct value *mark = value_mark ();
bf469271 4692 bool res = value_true (evaluate_expression (exp));
cc59ec59 4693
c906108c 4694 value_free_to_mark (mark);
bf469271 4695 return res;
c906108c
SS
4696}
4697
5760d0ab 4698/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c 4699
04afa70c
TT
4700bpstats::bpstats (struct bp_location *bl, bpstat **bs_link_pointer)
4701 : next (NULL),
4702 bp_location_at (bl),
4703 breakpoint_at (bl->owner),
4704 commands (NULL),
04afa70c
TT
4705 print (0),
4706 stop (0),
4707 print_it (print_it_normal)
c906108c 4708{
f431efe5 4709 incref_bp_location (bl);
04afa70c
TT
4710 **bs_link_pointer = this;
4711 *bs_link_pointer = &next;
4712}
4713
4714bpstats::bpstats ()
4715 : next (NULL),
4716 bp_location_at (NULL),
4717 breakpoint_at (NULL),
4718 commands (NULL),
04afa70c
TT
4719 print (0),
4720 stop (0),
4721 print_it (print_it_normal)
4722{
c906108c
SS
4723}
4724\f
d983da9c
DJ
4725/* The target has stopped with waitstatus WS. Check if any hardware
4726 watchpoints have triggered, according to the target. */
4727
4728int
4729watchpoints_triggered (struct target_waitstatus *ws)
4730{
57810aa7 4731 bool stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
4732 CORE_ADDR addr;
4733 struct breakpoint *b;
4734
4735 if (!stopped_by_watchpoint)
4736 {
4737 /* We were not stopped by a watchpoint. Mark all watchpoints
4738 as not triggered. */
4739 ALL_BREAKPOINTS (b)
cc60f2e3 4740 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4741 {
4742 struct watchpoint *w = (struct watchpoint *) b;
4743
4744 w->watchpoint_triggered = watch_triggered_no;
4745 }
d983da9c
DJ
4746
4747 return 0;
4748 }
4749
8b88a78e 4750 if (!target_stopped_data_address (current_top_target (), &addr))
d983da9c
DJ
4751 {
4752 /* We were stopped by a watchpoint, but we don't know where.
4753 Mark all watchpoints as unknown. */
4754 ALL_BREAKPOINTS (b)
cc60f2e3 4755 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4756 {
4757 struct watchpoint *w = (struct watchpoint *) b;
4758
4759 w->watchpoint_triggered = watch_triggered_unknown;
4760 }
d983da9c 4761
3c4797ba 4762 return 1;
d983da9c
DJ
4763 }
4764
4765 /* The target could report the data address. Mark watchpoints
4766 affected by this data address as triggered, and all others as not
4767 triggered. */
4768
4769 ALL_BREAKPOINTS (b)
cc60f2e3 4770 if (is_hardware_watchpoint (b))
d983da9c 4771 {
3a5c3e22 4772 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 4773 struct bp_location *loc;
d983da9c 4774
3a5c3e22 4775 w->watchpoint_triggered = watch_triggered_no;
a5606eee 4776 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 4777 {
3a5c3e22 4778 if (is_masked_watchpoint (b))
9c06b0b4 4779 {
3a5c3e22
PA
4780 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4781 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
4782
4783 if (newaddr == start)
4784 {
3a5c3e22 4785 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4786 break;
4787 }
4788 }
4789 /* Exact match not required. Within range is sufficient. */
8b88a78e 4790 else if (target_watchpoint_addr_within_range (current_top_target (),
9c06b0b4
TJB
4791 addr, loc->address,
4792 loc->length))
4793 {
3a5c3e22 4794 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4795 break;
4796 }
4797 }
d983da9c
DJ
4798 }
4799
4800 return 1;
4801}
4802
bf469271
PA
4803/* Possible return values for watchpoint_check. */
4804enum wp_check_result
4805 {
4806 /* The watchpoint has been deleted. */
4807 WP_DELETED = 1,
4808
4809 /* The value has changed. */
4810 WP_VALUE_CHANGED = 2,
4811
4812 /* The value has not changed. */
4813 WP_VALUE_NOT_CHANGED = 3,
4814
4815 /* Ignore this watchpoint, no matter if the value changed or not. */
4816 WP_IGNORE = 4,
4817 };
c906108c
SS
4818
4819#define BP_TEMPFLAG 1
4820#define BP_HARDWAREFLAG 2
4821
4a64f543 4822/* Evaluate watchpoint condition expression and check if its value
bf469271 4823 changed. */
553e4c11 4824
bf469271
PA
4825static wp_check_result
4826watchpoint_check (bpstat bs)
c906108c 4827{
3a5c3e22 4828 struct watchpoint *b;
c906108c
SS
4829 struct frame_info *fr;
4830 int within_current_scope;
4831
f431efe5 4832 /* BS is built from an existing struct breakpoint. */
2bdf28a0 4833 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 4834 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 4835
f6bc2008
PA
4836 /* If this is a local watchpoint, we only want to check if the
4837 watchpoint frame is in scope if the current thread is the thread
4838 that was used to create the watchpoint. */
4839 if (!watchpoint_in_thread_scope (b))
60e1c644 4840 return WP_IGNORE;
f6bc2008 4841
c906108c
SS
4842 if (b->exp_valid_block == NULL)
4843 within_current_scope = 1;
4844 else
4845 {
edb3359d
DJ
4846 struct frame_info *frame = get_current_frame ();
4847 struct gdbarch *frame_arch = get_frame_arch (frame);
4848 CORE_ADDR frame_pc = get_frame_pc (frame);
4849
c9cf6e20 4850 /* stack_frame_destroyed_p() returns a non-zero value if we're
4a64f543
MS
4851 still in the function but the stack frame has already been
4852 invalidated. Since we can't rely on the values of local
4853 variables after the stack has been destroyed, we are treating
4854 the watchpoint in that state as `not changed' without further
4855 checking. Don't mark watchpoints as changed if the current
4856 frame is in an epilogue - even if they are in some other
4857 frame, our view of the stack is likely to be wrong and
4858 frame_find_by_id could error out. */
c9cf6e20 4859 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
60e1c644 4860 return WP_IGNORE;
a0f49112 4861
101dcfbe 4862 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 4863 within_current_scope = (fr != NULL);
69fbadd5
DJ
4864
4865 /* If we've gotten confused in the unwinder, we might have
4866 returned a frame that can't describe this variable. */
edb3359d
DJ
4867 if (within_current_scope)
4868 {
4869 struct symbol *function;
4870
4871 function = get_frame_function (fr);
4872 if (function == NULL
4873 || !contained_in (b->exp_valid_block,
4874 SYMBOL_BLOCK_VALUE (function)))
4875 within_current_scope = 0;
4876 }
69fbadd5 4877
edb3359d 4878 if (within_current_scope)
c906108c
SS
4879 /* If we end up stopping, the current frame will get selected
4880 in normal_stop. So this call to select_frame won't affect
4881 the user. */
0f7d239c 4882 select_frame (fr);
c906108c 4883 }
c5aa993b 4884
c906108c
SS
4885 if (within_current_scope)
4886 {
4a64f543
MS
4887 /* We use value_{,free_to_}mark because it could be a *long*
4888 time before we return to the command level and call
4889 free_all_values. We can't call free_all_values because we
4890 might be in the middle of evaluating a function call. */
c906108c 4891
0cf6dd15 4892 int pc = 0;
9c06b0b4 4893 struct value *mark;
fa4727a6
DJ
4894 struct value *new_val;
4895
c1fc2657 4896 if (is_masked_watchpoint (b))
9c06b0b4
TJB
4897 /* Since we don't know the exact trigger address (from
4898 stopped_data_address), just tell the user we've triggered
4899 a mask watchpoint. */
4900 return WP_VALUE_CHANGED;
4901
4902 mark = value_mark ();
4d01a485 4903 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
218d2fc6 4904
bb9d5f81
PP
4905 if (b->val_bitsize != 0)
4906 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
4907
4a64f543
MS
4908 /* We use value_equal_contents instead of value_equal because
4909 the latter coerces an array to a pointer, thus comparing just
4910 the address of the array instead of its contents. This is
4911 not what we want. */
fa4727a6 4912 if ((b->val != NULL) != (new_val != NULL)
850645cf
TT
4913 || (b->val != NULL && !value_equal_contents (b->val.get (),
4914 new_val)))
c906108c 4915 {
c906108c 4916 bs->old_val = b->val;
850645cf 4917 b->val = release_value (new_val);
fa4727a6 4918 b->val_valid = 1;
850645cf
TT
4919 if (new_val != NULL)
4920 value_free_to_mark (mark);
c906108c
SS
4921 return WP_VALUE_CHANGED;
4922 }
4923 else
4924 {
60e1c644 4925 /* Nothing changed. */
c906108c 4926 value_free_to_mark (mark);
c906108c
SS
4927 return WP_VALUE_NOT_CHANGED;
4928 }
4929 }
4930 else
4931 {
4932 /* This seems like the only logical thing to do because
c5aa993b
JM
4933 if we temporarily ignored the watchpoint, then when
4934 we reenter the block in which it is valid it contains
4935 garbage (in the case of a function, it may have two
4936 garbage values, one before and one after the prologue).
4937 So we can't even detect the first assignment to it and
4938 watch after that (since the garbage may or may not equal
4939 the first value assigned). */
348d480f
PA
4940 /* We print all the stop information in
4941 breakpoint_ops->print_it, but in this case, by the time we
4942 call breakpoint_ops->print_it this bp will be deleted
4943 already. So we have no choice but print the information
4944 here. */
468afe6c 4945
0e454242 4946 SWITCH_THRU_ALL_UIS ()
468afe6c
PA
4947 {
4948 struct ui_out *uiout = current_uiout;
4949
112e8700
SM
4950 if (uiout->is_mi_like_p ())
4951 uiout->field_string
4952 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
4953 uiout->text ("\nWatchpoint ");
c1fc2657 4954 uiout->field_int ("wpnum", b->number);
112e8700 4955 uiout->text (" deleted because the program has left the block in\n"
468afe6c
PA
4956 "which its expression is valid.\n");
4957 }
4ce44c66 4958
cdac0397 4959 /* Make sure the watchpoint's commands aren't executed. */
d1b0a7bf 4960 b->commands = NULL;
d0fb5eae 4961 watchpoint_del_at_next_stop (b);
c906108c
SS
4962
4963 return WP_DELETED;
4964 }
4965}
4966
18a18393 4967/* Return true if it looks like target has stopped due to hitting
348d480f
PA
4968 breakpoint location BL. This function does not check if we should
4969 stop, only if BL explains the stop. */
4970
18a18393 4971static int
6c95b8df 4972bpstat_check_location (const struct bp_location *bl,
accd0bcd 4973 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 4974 const struct target_waitstatus *ws)
18a18393
VP
4975{
4976 struct breakpoint *b = bl->owner;
4977
348d480f 4978 /* BL is from an existing breakpoint. */
2bdf28a0
JK
4979 gdb_assert (b != NULL);
4980
bd522513 4981 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
4982}
4983
3a5c3e22
PA
4984/* Determine if the watched values have actually changed, and we
4985 should stop. If not, set BS->stop to 0. */
4986
18a18393
VP
4987static void
4988bpstat_check_watchpoint (bpstat bs)
4989{
2bdf28a0 4990 const struct bp_location *bl;
3a5c3e22 4991 struct watchpoint *b;
2bdf28a0
JK
4992
4993 /* BS is built for existing struct breakpoint. */
f431efe5 4994 bl = bs->bp_location_at;
2bdf28a0 4995 gdb_assert (bl != NULL);
3a5c3e22 4996 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 4997 gdb_assert (b != NULL);
18a18393 4998
18a18393 4999 {
18a18393
VP
5000 int must_check_value = 0;
5001
c1fc2657 5002 if (b->type == bp_watchpoint)
18a18393
VP
5003 /* For a software watchpoint, we must always check the
5004 watched value. */
5005 must_check_value = 1;
5006 else if (b->watchpoint_triggered == watch_triggered_yes)
5007 /* We have a hardware watchpoint (read, write, or access)
5008 and the target earlier reported an address watched by
5009 this watchpoint. */
5010 must_check_value = 1;
5011 else if (b->watchpoint_triggered == watch_triggered_unknown
c1fc2657 5012 && b->type == bp_hardware_watchpoint)
18a18393
VP
5013 /* We were stopped by a hardware watchpoint, but the target could
5014 not report the data address. We must check the watchpoint's
5015 value. Access and read watchpoints are out of luck; without
5016 a data address, we can't figure it out. */
5017 must_check_value = 1;
3a5c3e22 5018
18a18393
VP
5019 if (must_check_value)
5020 {
bf469271
PA
5021 wp_check_result e;
5022
5023 TRY
5024 {
5025 e = watchpoint_check (bs);
5026 }
5027 CATCH (ex, RETURN_MASK_ALL)
5028 {
5029 exception_fprintf (gdb_stderr, ex,
5030 "Error evaluating expression "
5031 "for watchpoint %d\n",
5032 b->number);
5033
5034 SWITCH_THRU_ALL_UIS ()
5035 {
5036 printf_filtered (_("Watchpoint %d deleted.\n"),
5037 b->number);
5038 }
5039 watchpoint_del_at_next_stop (b);
5040 e = WP_DELETED;
5041 }
5042 END_CATCH
5043
18a18393
VP
5044 switch (e)
5045 {
5046 case WP_DELETED:
5047 /* We've already printed what needs to be printed. */
5048 bs->print_it = print_it_done;
5049 /* Stop. */
5050 break;
60e1c644
PA
5051 case WP_IGNORE:
5052 bs->print_it = print_it_noop;
5053 bs->stop = 0;
5054 break;
18a18393 5055 case WP_VALUE_CHANGED:
c1fc2657 5056 if (b->type == bp_read_watchpoint)
18a18393 5057 {
85d721b8
PA
5058 /* There are two cases to consider here:
5059
4a64f543 5060 1. We're watching the triggered memory for reads.
85d721b8
PA
5061 In that case, trust the target, and always report
5062 the watchpoint hit to the user. Even though
5063 reads don't cause value changes, the value may
5064 have changed since the last time it was read, and
5065 since we're not trapping writes, we will not see
5066 those, and as such we should ignore our notion of
5067 old value.
5068
4a64f543 5069 2. We're watching the triggered memory for both
85d721b8
PA
5070 reads and writes. There are two ways this may
5071 happen:
5072
4a64f543 5073 2.1. This is a target that can't break on data
85d721b8
PA
5074 reads only, but can break on accesses (reads or
5075 writes), such as e.g., x86. We detect this case
5076 at the time we try to insert read watchpoints.
5077
4a64f543 5078 2.2. Otherwise, the target supports read
85d721b8
PA
5079 watchpoints, but, the user set an access or write
5080 watchpoint watching the same memory as this read
5081 watchpoint.
5082
5083 If we're watching memory writes as well as reads,
5084 ignore watchpoint hits when we find that the
5085 value hasn't changed, as reads don't cause
5086 changes. This still gives false positives when
5087 the program writes the same value to memory as
5088 what there was already in memory (we will confuse
5089 it for a read), but it's much better than
5090 nothing. */
5091
5092 int other_write_watchpoint = 0;
5093
5094 if (bl->watchpoint_type == hw_read)
5095 {
5096 struct breakpoint *other_b;
5097
5098 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5099 if (other_b->type == bp_hardware_watchpoint
5100 || other_b->type == bp_access_watchpoint)
85d721b8 5101 {
3a5c3e22
PA
5102 struct watchpoint *other_w =
5103 (struct watchpoint *) other_b;
5104
5105 if (other_w->watchpoint_triggered
5106 == watch_triggered_yes)
5107 {
5108 other_write_watchpoint = 1;
5109 break;
5110 }
85d721b8
PA
5111 }
5112 }
5113
5114 if (other_write_watchpoint
5115 || bl->watchpoint_type == hw_access)
5116 {
5117 /* We're watching the same memory for writes,
5118 and the value changed since the last time we
5119 updated it, so this trap must be for a write.
5120 Ignore it. */
5121 bs->print_it = print_it_noop;
5122 bs->stop = 0;
5123 }
18a18393
VP
5124 }
5125 break;
5126 case WP_VALUE_NOT_CHANGED:
c1fc2657
SM
5127 if (b->type == bp_hardware_watchpoint
5128 || b->type == bp_watchpoint)
18a18393
VP
5129 {
5130 /* Don't stop: write watchpoints shouldn't fire if
5131 the value hasn't changed. */
5132 bs->print_it = print_it_noop;
5133 bs->stop = 0;
5134 }
5135 /* Stop. */
5136 break;
5137 default:
5138 /* Can't happen. */
18a18393
VP
5139 break;
5140 }
5141 }
5142 else /* must_check_value == 0 */
5143 {
5144 /* This is a case where some watchpoint(s) triggered, but
5145 not at the address of this watchpoint, or else no
5146 watchpoint triggered after all. So don't print
5147 anything for this watchpoint. */
5148 bs->print_it = print_it_noop;
5149 bs->stop = 0;
5150 }
5151 }
5152}
5153
7d4df6a4
DE
5154/* For breakpoints that are currently marked as telling gdb to stop,
5155 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5156 of breakpoint referred to by BS. If we should not stop for this
5157 breakpoint, set BS->stop to 0. */
f431efe5 5158
18a18393 5159static void
00431a78 5160bpstat_check_breakpoint_conditions (bpstat bs, thread_info *thread)
18a18393 5161{
2bdf28a0
JK
5162 const struct bp_location *bl;
5163 struct breakpoint *b;
bf469271
PA
5164 /* Assume stop. */
5165 bool condition_result = true;
7d4df6a4
DE
5166 struct expression *cond;
5167
5168 gdb_assert (bs->stop);
2bdf28a0
JK
5169
5170 /* BS is built for existing struct breakpoint. */
f431efe5 5171 bl = bs->bp_location_at;
2bdf28a0 5172 gdb_assert (bl != NULL);
f431efe5 5173 b = bs->breakpoint_at;
2bdf28a0 5174 gdb_assert (b != NULL);
18a18393 5175
b775012e
LM
5176 /* Even if the target evaluated the condition on its end and notified GDB, we
5177 need to do so again since GDB does not know if we stopped due to a
5178 breakpoint or a single step breakpoint. */
5179
18a18393 5180 if (frame_id_p (b->frame_id)
edb3359d 5181 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5182 {
7d4df6a4
DE
5183 bs->stop = 0;
5184 return;
5185 }
60e1c644 5186
12ab52e9
PA
5187 /* If this is a thread/task-specific breakpoint, don't waste cpu
5188 evaluating the condition if this isn't the specified
5189 thread/task. */
00431a78
PA
5190 if ((b->thread != -1 && b->thread != thread->global_num)
5191 || (b->task != 0 && b->task != ada_get_task_number (thread)))
6c1b0f7b
DE
5192 {
5193 bs->stop = 0;
5194 return;
5195 }
5196
6dddc817
DE
5197 /* Evaluate extension language breakpoints that have a "stop" method
5198 implemented. */
5199 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
7371cf6d 5200
7d4df6a4
DE
5201 if (is_watchpoint (b))
5202 {
5203 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5204
4d01a485 5205 cond = w->cond_exp.get ();
7d4df6a4
DE
5206 }
5207 else
4d01a485 5208 cond = bl->cond.get ();
60e1c644 5209
7d4df6a4
DE
5210 if (cond && b->disposition != disp_del_at_next_stop)
5211 {
5212 int within_current_scope = 1;
5213 struct watchpoint * w;
60e1c644 5214
7d4df6a4
DE
5215 /* We use value_mark and value_free_to_mark because it could
5216 be a long time before we return to the command level and
5217 call free_all_values. We can't call free_all_values
5218 because we might be in the middle of evaluating a
5219 function call. */
5220 struct value *mark = value_mark ();
5221
5222 if (is_watchpoint (b))
5223 w = (struct watchpoint *) b;
5224 else
5225 w = NULL;
5226
5227 /* Need to select the frame, with all that implies so that
5228 the conditions will have the right context. Because we
5229 use the frame, we will not see an inlined function's
5230 variables when we arrive at a breakpoint at the start
5231 of the inlined function; the current frame will be the
5232 call site. */
5233 if (w == NULL || w->cond_exp_valid_block == NULL)
5234 select_frame (get_current_frame ());
5235 else
18a18393 5236 {
7d4df6a4
DE
5237 struct frame_info *frame;
5238
5239 /* For local watchpoint expressions, which particular
5240 instance of a local is being watched matters, so we
5241 keep track of the frame to evaluate the expression
5242 in. To evaluate the condition however, it doesn't
5243 really matter which instantiation of the function
5244 where the condition makes sense triggers the
5245 watchpoint. This allows an expression like "watch
5246 global if q > 10" set in `func', catch writes to
5247 global on all threads that call `func', or catch
5248 writes on all recursive calls of `func' by a single
5249 thread. We simply always evaluate the condition in
5250 the innermost frame that's executing where it makes
5251 sense to evaluate the condition. It seems
5252 intuitive. */
5253 frame = block_innermost_frame (w->cond_exp_valid_block);
5254 if (frame != NULL)
5255 select_frame (frame);
5256 else
5257 within_current_scope = 0;
18a18393 5258 }
7d4df6a4 5259 if (within_current_scope)
bf469271
PA
5260 {
5261 TRY
5262 {
5263 condition_result = breakpoint_cond_eval (cond);
5264 }
5265 CATCH (ex, RETURN_MASK_ALL)
5266 {
5267 exception_fprintf (gdb_stderr, ex,
5268 "Error in testing breakpoint condition:\n");
5269 }
5270 END_CATCH
5271 }
7d4df6a4 5272 else
18a18393 5273 {
7d4df6a4
DE
5274 warning (_("Watchpoint condition cannot be tested "
5275 "in the current scope"));
5276 /* If we failed to set the right context for this
5277 watchpoint, unconditionally report it. */
18a18393 5278 }
7d4df6a4
DE
5279 /* FIXME-someday, should give breakpoint #. */
5280 value_free_to_mark (mark);
18a18393 5281 }
7d4df6a4 5282
bf469271 5283 if (cond && !condition_result)
7d4df6a4
DE
5284 {
5285 bs->stop = 0;
5286 }
7d4df6a4
DE
5287 else if (b->ignore_count > 0)
5288 {
5289 b->ignore_count--;
5290 bs->stop = 0;
5291 /* Increase the hit count even though we don't stop. */
5292 ++(b->hit_count);
76727919 5293 gdb::observers::breakpoint_modified.notify (b);
7d4df6a4 5294 }
18a18393
VP
5295}
5296
1cf4d951
PA
5297/* Returns true if we need to track moribund locations of LOC's type
5298 on the current target. */
5299
5300static int
5301need_moribund_for_location_type (struct bp_location *loc)
5302{
5303 return ((loc->loc_type == bp_loc_software_breakpoint
5304 && !target_supports_stopped_by_sw_breakpoint ())
5305 || (loc->loc_type == bp_loc_hardware_breakpoint
5306 && !target_supports_stopped_by_hw_breakpoint ()));
5307}
5308
ddfe970e 5309/* See breakpoint.h. */
c906108c
SS
5310
5311bpstat
ddfe970e 5312build_bpstat_chain (const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 5313 const struct target_waitstatus *ws)
c906108c 5314{
ddfe970e 5315 struct breakpoint *b;
5760d0ab 5316 bpstat bs_head = NULL, *bs_link = &bs_head;
c5aa993b 5317
429374b8
JK
5318 ALL_BREAKPOINTS (b)
5319 {
1a853c52 5320 if (!breakpoint_enabled (b))
429374b8 5321 continue;
a5606eee 5322
ddfe970e 5323 for (bp_location *bl = b->loc; bl != NULL; bl = bl->next)
429374b8 5324 {
4a64f543
MS
5325 /* For hardware watchpoints, we look only at the first
5326 location. The watchpoint_check function will work on the
5327 entire expression, not the individual locations. For
5328 read watchpoints, the watchpoints_triggered function has
5329 checked all locations already. */
429374b8
JK
5330 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5331 break;
18a18393 5332
f6592439 5333 if (!bl->enabled || bl->shlib_disabled)
429374b8 5334 continue;
c5aa993b 5335
09ac7c10 5336 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5337 continue;
c5aa993b 5338
4a64f543
MS
5339 /* Come here if it's a watchpoint, or if the break address
5340 matches. */
c5aa993b 5341
ddfe970e
KS
5342 bpstat bs = new bpstats (bl, &bs_link); /* Alloc a bpstat to
5343 explain stop. */
c5aa993b 5344
f431efe5
PA
5345 /* Assume we stop. Should we find a watchpoint that is not
5346 actually triggered, or if the condition of the breakpoint
5347 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5348 bs->stop = 1;
5349 bs->print = 1;
d983da9c 5350
f431efe5
PA
5351 /* If this is a scope breakpoint, mark the associated
5352 watchpoint as triggered so that we will handle the
5353 out-of-scope event. We'll get to the watchpoint next
5354 iteration. */
d0fb5eae 5355 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5356 {
5357 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5358
5359 w->watchpoint_triggered = watch_triggered_yes;
5360 }
f431efe5
PA
5361 }
5362 }
5363
7c16b83e 5364 /* Check if a moribund breakpoint explains the stop. */
1cf4d951
PA
5365 if (!target_supports_stopped_by_sw_breakpoint ()
5366 || !target_supports_stopped_by_hw_breakpoint ())
f431efe5 5367 {
1123588c 5368 for (bp_location *loc : moribund_locations)
f431efe5 5369 {
1cf4d951
PA
5370 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5371 && need_moribund_for_location_type (loc))
5372 {
ddfe970e 5373 bpstat bs = new bpstats (loc, &bs_link);
1cf4d951
PA
5374 /* For hits of moribund locations, we should just proceed. */
5375 bs->stop = 0;
5376 bs->print = 0;
5377 bs->print_it = print_it_noop;
5378 }
f431efe5
PA
5379 }
5380 }
5381
ddfe970e
KS
5382 return bs_head;
5383}
5384
5385/* See breakpoint.h. */
5386
5387bpstat
5388bpstat_stop_status (const address_space *aspace,
00431a78 5389 CORE_ADDR bp_addr, thread_info *thread,
ddfe970e
KS
5390 const struct target_waitstatus *ws,
5391 bpstat stop_chain)
5392{
5393 struct breakpoint *b = NULL;
5394 /* First item of allocated bpstat's. */
5395 bpstat bs_head = stop_chain;
5396 bpstat bs;
5397 int need_remove_insert;
5398 int removed_any;
5399
5400 /* First, build the bpstat chain with locations that explain a
5401 target stop, while being careful to not set the target running,
5402 as that may invalidate locations (in particular watchpoint
5403 locations are recreated). Resuming will happen here with
5404 breakpoint conditions or watchpoint expressions that include
5405 inferior function calls. */
5406 if (bs_head == NULL)
5407 bs_head = build_bpstat_chain (aspace, bp_addr, ws);
5408
edcc5120
TT
5409 /* A bit of special processing for shlib breakpoints. We need to
5410 process solib loading here, so that the lists of loaded and
5411 unloaded libraries are correct before we handle "catch load" and
5412 "catch unload". */
5413 for (bs = bs_head; bs != NULL; bs = bs->next)
5414 {
5d268276 5415 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5416 {
5417 handle_solib_event ();
5418 break;
5419 }
5420 }
5421
f431efe5
PA
5422 /* Now go through the locations that caused the target to stop, and
5423 check whether we're interested in reporting this stop to higher
5424 layers, or whether we should resume the target transparently. */
5425
5426 removed_any = 0;
5427
5760d0ab 5428 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5429 {
5430 if (!bs->stop)
5431 continue;
5432
f431efe5 5433 b = bs->breakpoint_at;
348d480f
PA
5434 b->ops->check_status (bs);
5435 if (bs->stop)
28010a5d 5436 {
00431a78 5437 bpstat_check_breakpoint_conditions (bs, thread);
f431efe5 5438
429374b8
JK
5439 if (bs->stop)
5440 {
5441 ++(b->hit_count);
76727919 5442 gdb::observers::breakpoint_modified.notify (b);
c906108c 5443
4a64f543 5444 /* We will stop here. */
429374b8
JK
5445 if (b->disposition == disp_disable)
5446 {
816338b5 5447 --(b->enable_count);
1a853c52 5448 if (b->enable_count <= 0)
429374b8 5449 b->enable_state = bp_disabled;
f431efe5 5450 removed_any = 1;
429374b8
JK
5451 }
5452 if (b->silent)
5453 bs->print = 0;
5454 bs->commands = b->commands;
abf85f46 5455 if (command_line_is_silent (bs->commands
d1b0a7bf 5456 ? bs->commands.get () : NULL))
abf85f46 5457 bs->print = 0;
9d6e6e84
HZ
5458
5459 b->ops->after_condition_true (bs);
429374b8
JK
5460 }
5461
348d480f 5462 }
a9b3a50f
PA
5463
5464 /* Print nothing for this entry if we don't stop or don't
5465 print. */
5466 if (!bs->stop || !bs->print)
5467 bs->print_it = print_it_noop;
429374b8 5468 }
876fa593 5469
d983da9c
DJ
5470 /* If we aren't stopping, the value of some hardware watchpoint may
5471 not have changed, but the intermediate memory locations we are
5472 watching may have. Don't bother if we're stopping; this will get
5473 done later. */
d832cb68 5474 need_remove_insert = 0;
5760d0ab
JK
5475 if (! bpstat_causes_stop (bs_head))
5476 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5477 if (!bs->stop
f431efe5
PA
5478 && bs->breakpoint_at
5479 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5480 {
3a5c3e22
PA
5481 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5482
5483 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5484 need_remove_insert = 1;
d983da9c
DJ
5485 }
5486
d832cb68 5487 if (need_remove_insert)
44702360 5488 update_global_location_list (UGLL_MAY_INSERT);
f431efe5 5489 else if (removed_any)
44702360 5490 update_global_location_list (UGLL_DONT_INSERT);
d832cb68 5491
5760d0ab 5492 return bs_head;
c906108c 5493}
628fe4e4
JK
5494
5495static void
5496handle_jit_event (void)
5497{
5498 struct frame_info *frame;
5499 struct gdbarch *gdbarch;
5500
243a9253
PA
5501 if (debug_infrun)
5502 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5503
628fe4e4
JK
5504 /* Switch terminal for any messages produced by
5505 breakpoint_re_set. */
223ffa71 5506 target_terminal::ours_for_output ();
628fe4e4
JK
5507
5508 frame = get_current_frame ();
5509 gdbarch = get_frame_arch (frame);
5510
5511 jit_event_handler (gdbarch);
5512
223ffa71 5513 target_terminal::inferior ();
628fe4e4
JK
5514}
5515
5516/* Prepare WHAT final decision for infrun. */
5517
5518/* Decide what infrun needs to do with this bpstat. */
5519
c906108c 5520struct bpstat_what
0e30163f 5521bpstat_what (bpstat bs_head)
c906108c 5522{
c906108c 5523 struct bpstat_what retval;
0e30163f 5524 bpstat bs;
c906108c 5525
628fe4e4 5526 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5527 retval.call_dummy = STOP_NONE;
186c406b 5528 retval.is_longjmp = 0;
628fe4e4 5529
0e30163f 5530 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5531 {
628fe4e4
JK
5532 /* Extract this BS's action. After processing each BS, we check
5533 if its action overrides all we've seem so far. */
5534 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5535 enum bptype bptype;
5536
c906108c 5537 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5538 {
5539 /* I suspect this can happen if it was a momentary
5540 breakpoint which has since been deleted. */
5541 bptype = bp_none;
5542 }
20874c92 5543 else
f431efe5 5544 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5545
5546 switch (bptype)
c906108c
SS
5547 {
5548 case bp_none:
628fe4e4 5549 break;
c906108c
SS
5550 case bp_breakpoint:
5551 case bp_hardware_breakpoint:
7c16b83e 5552 case bp_single_step:
c906108c
SS
5553 case bp_until:
5554 case bp_finish:
a9b3a50f 5555 case bp_shlib_event:
c906108c
SS
5556 if (bs->stop)
5557 {
5558 if (bs->print)
628fe4e4 5559 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5560 else
628fe4e4 5561 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5562 }
5563 else
628fe4e4 5564 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5565 break;
5566 case bp_watchpoint:
5567 case bp_hardware_watchpoint:
5568 case bp_read_watchpoint:
5569 case bp_access_watchpoint:
5570 if (bs->stop)
5571 {
5572 if (bs->print)
628fe4e4 5573 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5574 else
628fe4e4 5575 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5576 }
5577 else
628fe4e4
JK
5578 {
5579 /* There was a watchpoint, but we're not stopping.
5580 This requires no further action. */
5581 }
c906108c
SS
5582 break;
5583 case bp_longjmp:
e2e4d78b 5584 case bp_longjmp_call_dummy:
186c406b 5585 case bp_exception:
0a39bb32
PA
5586 if (bs->stop)
5587 {
5588 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5589 retval.is_longjmp = bptype != bp_exception;
5590 }
5591 else
5592 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5593 break;
5594 case bp_longjmp_resume:
186c406b 5595 case bp_exception_resume:
0a39bb32
PA
5596 if (bs->stop)
5597 {
5598 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5599 retval.is_longjmp = bptype == bp_longjmp_resume;
5600 }
5601 else
5602 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5603 break;
5604 case bp_step_resume:
5605 if (bs->stop)
628fe4e4
JK
5606 this_action = BPSTAT_WHAT_STEP_RESUME;
5607 else
c906108c 5608 {
628fe4e4
JK
5609 /* It is for the wrong frame. */
5610 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5611 }
c906108c 5612 break;
2c03e5be
PA
5613 case bp_hp_step_resume:
5614 if (bs->stop)
5615 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5616 else
5617 {
5618 /* It is for the wrong frame. */
5619 this_action = BPSTAT_WHAT_SINGLE;
5620 }
5621 break;
c906108c 5622 case bp_watchpoint_scope:
c4093a6a 5623 case bp_thread_event:
1900040c 5624 case bp_overlay_event:
0fd8e87f 5625 case bp_longjmp_master:
aa7d318d 5626 case bp_std_terminate_master:
186c406b 5627 case bp_exception_master:
628fe4e4 5628 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5629 break;
ce78b96d 5630 case bp_catchpoint:
c5aa993b
JM
5631 if (bs->stop)
5632 {
5633 if (bs->print)
628fe4e4 5634 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5635 else
628fe4e4 5636 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5637 }
5638 else
628fe4e4
JK
5639 {
5640 /* There was a catchpoint, but we're not stopping.
5641 This requires no further action. */
5642 }
5643 break;
628fe4e4 5644 case bp_jit_event:
628fe4e4 5645 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5646 break;
c906108c 5647 case bp_call_dummy:
53a5351d
JM
5648 /* Make sure the action is stop (silent or noisy),
5649 so infrun.c pops the dummy frame. */
aa7d318d 5650 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5651 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5652 break;
5653 case bp_std_terminate:
5654 /* Make sure the action is stop (silent or noisy),
5655 so infrun.c pops the dummy frame. */
aa7d318d 5656 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5657 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5658 break;
1042e4c0 5659 case bp_tracepoint:
7a697b8d 5660 case bp_fast_tracepoint:
0fb4aa4b 5661 case bp_static_tracepoint:
1042e4c0
SS
5662 /* Tracepoint hits should not be reported back to GDB, and
5663 if one got through somehow, it should have been filtered
5664 out already. */
5665 internal_error (__FILE__, __LINE__,
7a697b8d 5666 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5667 break;
5668 case bp_gnu_ifunc_resolver:
5669 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5670 this_action = BPSTAT_WHAT_SINGLE;
5671 break;
5672 case bp_gnu_ifunc_resolver_return:
5673 /* The breakpoint will be removed, execution will restart from the
5674 PC of the former breakpoint. */
5675 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5676 break;
e7e0cddf
SS
5677
5678 case bp_dprintf:
a11cfd87
HZ
5679 if (bs->stop)
5680 this_action = BPSTAT_WHAT_STOP_SILENT;
5681 else
5682 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5683 break;
5684
628fe4e4
JK
5685 default:
5686 internal_error (__FILE__, __LINE__,
5687 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5688 }
628fe4e4 5689
325fac50 5690 retval.main_action = std::max (retval.main_action, this_action);
c906108c 5691 }
628fe4e4 5692
243a9253
PA
5693 return retval;
5694}
628fe4e4 5695
243a9253
PA
5696void
5697bpstat_run_callbacks (bpstat bs_head)
5698{
5699 bpstat bs;
628fe4e4 5700
0e30163f
JK
5701 for (bs = bs_head; bs != NULL; bs = bs->next)
5702 {
5703 struct breakpoint *b = bs->breakpoint_at;
5704
5705 if (b == NULL)
5706 continue;
5707 switch (b->type)
5708 {
243a9253
PA
5709 case bp_jit_event:
5710 handle_jit_event ();
5711 break;
0e30163f
JK
5712 case bp_gnu_ifunc_resolver:
5713 gnu_ifunc_resolver_stop (b);
5714 break;
5715 case bp_gnu_ifunc_resolver_return:
5716 gnu_ifunc_resolver_return_stop (b);
5717 break;
5718 }
5719 }
c906108c
SS
5720}
5721
5722/* Nonzero if we should step constantly (e.g. watchpoints on machines
5723 without hardware support). This isn't related to a specific bpstat,
5724 just to things like whether watchpoints are set. */
5725
c5aa993b 5726int
fba45db2 5727bpstat_should_step (void)
c906108c
SS
5728{
5729 struct breakpoint *b;
cc59ec59 5730
c906108c 5731 ALL_BREAKPOINTS (b)
717a8278 5732 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 5733 return 1;
c906108c
SS
5734 return 0;
5735}
5736
67822962
PA
5737int
5738bpstat_causes_stop (bpstat bs)
5739{
5740 for (; bs != NULL; bs = bs->next)
5741 if (bs->stop)
5742 return 1;
5743
5744 return 0;
5745}
5746
c906108c 5747\f
c5aa993b 5748
170b53b2
UW
5749/* Compute a string of spaces suitable to indent the next line
5750 so it starts at the position corresponding to the table column
5751 named COL_NAME in the currently active table of UIOUT. */
5752
5753static char *
5754wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5755{
5756 static char wrap_indent[80];
5757 int i, total_width, width, align;
c5209615 5758 const char *text;
170b53b2
UW
5759
5760 total_width = 0;
112e8700 5761 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
170b53b2
UW
5762 {
5763 if (strcmp (text, col_name) == 0)
5764 {
5765 gdb_assert (total_width < sizeof wrap_indent);
5766 memset (wrap_indent, ' ', total_width);
5767 wrap_indent[total_width] = 0;
5768
5769 return wrap_indent;
5770 }
5771
5772 total_width += width + 1;
5773 }
5774
5775 return NULL;
5776}
5777
b775012e
LM
5778/* Determine if the locations of this breakpoint will have their conditions
5779 evaluated by the target, host or a mix of both. Returns the following:
5780
5781 "host": Host evals condition.
5782 "host or target": Host or Target evals condition.
5783 "target": Target evals condition.
5784*/
5785
5786static const char *
5787bp_condition_evaluator (struct breakpoint *b)
5788{
5789 struct bp_location *bl;
5790 char host_evals = 0;
5791 char target_evals = 0;
5792
5793 if (!b)
5794 return NULL;
5795
5796 if (!is_breakpoint (b))
5797 return NULL;
5798
5799 if (gdb_evaluates_breakpoint_condition_p ()
5800 || !target_supports_evaluation_of_breakpoint_conditions ())
5801 return condition_evaluation_host;
5802
5803 for (bl = b->loc; bl; bl = bl->next)
5804 {
5805 if (bl->cond_bytecode)
5806 target_evals++;
5807 else
5808 host_evals++;
5809 }
5810
5811 if (host_evals && target_evals)
5812 return condition_evaluation_both;
5813 else if (target_evals)
5814 return condition_evaluation_target;
5815 else
5816 return condition_evaluation_host;
5817}
5818
5819/* Determine the breakpoint location's condition evaluator. This is
5820 similar to bp_condition_evaluator, but for locations. */
5821
5822static const char *
5823bp_location_condition_evaluator (struct bp_location *bl)
5824{
5825 if (bl && !is_breakpoint (bl->owner))
5826 return NULL;
5827
5828 if (gdb_evaluates_breakpoint_condition_p ()
5829 || !target_supports_evaluation_of_breakpoint_conditions ())
5830 return condition_evaluation_host;
5831
5832 if (bl && bl->cond_bytecode)
5833 return condition_evaluation_target;
5834 else
5835 return condition_evaluation_host;
5836}
5837
859825b8
JK
5838/* Print the LOC location out of the list of B->LOC locations. */
5839
170b53b2
UW
5840static void
5841print_breakpoint_location (struct breakpoint *b,
5842 struct bp_location *loc)
0d381245 5843{
79a45e25 5844 struct ui_out *uiout = current_uiout;
5ed8105e
PA
5845
5846 scoped_restore_current_program_space restore_pspace;
6c95b8df 5847
859825b8
JK
5848 if (loc != NULL && loc->shlib_disabled)
5849 loc = NULL;
5850
6c95b8df
PA
5851 if (loc != NULL)
5852 set_current_program_space (loc->pspace);
5853
56435ebe 5854 if (b->display_canonical)
d28cd78a 5855 uiout->field_string ("what", event_location_to_string (b->location.get ()));
2f202fde 5856 else if (loc && loc->symtab)
0d381245 5857 {
4a27f119
KS
5858 const struct symbol *sym = loc->symbol;
5859
0d381245
VP
5860 if (sym)
5861 {
112e8700
SM
5862 uiout->text ("in ");
5863 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
5864 uiout->text (" ");
5865 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
5866 uiout->text ("at ");
0d381245 5867 }
112e8700 5868 uiout->field_string ("file",
05cba821 5869 symtab_to_filename_for_display (loc->symtab));
112e8700 5870 uiout->text (":");
05cba821 5871
112e8700
SM
5872 if (uiout->is_mi_like_p ())
5873 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
0d381245 5874
112e8700 5875 uiout->field_int ("line", loc->line_number);
0d381245 5876 }
859825b8 5877 else if (loc)
0d381245 5878 {
d7e74731 5879 string_file stb;
170b53b2 5880
d7e74731 5881 print_address_symbolic (loc->gdbarch, loc->address, &stb,
22e722e1 5882 demangle, "");
112e8700 5883 uiout->field_stream ("at", stb);
0d381245 5884 }
859825b8 5885 else
f00aae0f 5886 {
d28cd78a
TT
5887 uiout->field_string ("pending",
5888 event_location_to_string (b->location.get ()));
f00aae0f
KS
5889 /* If extra_string is available, it could be holding a condition
5890 or dprintf arguments. In either case, make sure it is printed,
5891 too, but only for non-MI streams. */
112e8700 5892 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
f00aae0f
KS
5893 {
5894 if (b->type == bp_dprintf)
112e8700 5895 uiout->text (",");
f00aae0f 5896 else
112e8700
SM
5897 uiout->text (" ");
5898 uiout->text (b->extra_string);
f00aae0f
KS
5899 }
5900 }
6c95b8df 5901
b775012e
LM
5902 if (loc && is_breakpoint (b)
5903 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5904 && bp_condition_evaluator (b) == condition_evaluation_both)
5905 {
112e8700
SM
5906 uiout->text (" (");
5907 uiout->field_string ("evaluated-by",
b775012e 5908 bp_location_condition_evaluator (loc));
112e8700 5909 uiout->text (")");
b775012e 5910 }
0d381245
VP
5911}
5912
269b11a2
PA
5913static const char *
5914bptype_string (enum bptype type)
c906108c 5915{
c4093a6a
JM
5916 struct ep_type_description
5917 {
5918 enum bptype type;
a121b7c1 5919 const char *description;
c4093a6a
JM
5920 };
5921 static struct ep_type_description bptypes[] =
c906108c 5922 {
c5aa993b
JM
5923 {bp_none, "?deleted?"},
5924 {bp_breakpoint, "breakpoint"},
c906108c 5925 {bp_hardware_breakpoint, "hw breakpoint"},
7c16b83e 5926 {bp_single_step, "sw single-step"},
c5aa993b
JM
5927 {bp_until, "until"},
5928 {bp_finish, "finish"},
5929 {bp_watchpoint, "watchpoint"},
c906108c 5930 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
5931 {bp_read_watchpoint, "read watchpoint"},
5932 {bp_access_watchpoint, "acc watchpoint"},
5933 {bp_longjmp, "longjmp"},
5934 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 5935 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
5936 {bp_exception, "exception"},
5937 {bp_exception_resume, "exception resume"},
c5aa993b 5938 {bp_step_resume, "step resume"},
2c03e5be 5939 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
5940 {bp_watchpoint_scope, "watchpoint scope"},
5941 {bp_call_dummy, "call dummy"},
aa7d318d 5942 {bp_std_terminate, "std::terminate"},
c5aa993b 5943 {bp_shlib_event, "shlib events"},
c4093a6a 5944 {bp_thread_event, "thread events"},
1900040c 5945 {bp_overlay_event, "overlay events"},
0fd8e87f 5946 {bp_longjmp_master, "longjmp master"},
aa7d318d 5947 {bp_std_terminate_master, "std::terminate master"},
186c406b 5948 {bp_exception_master, "exception master"},
ce78b96d 5949 {bp_catchpoint, "catchpoint"},
1042e4c0 5950 {bp_tracepoint, "tracepoint"},
7a697b8d 5951 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 5952 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 5953 {bp_dprintf, "dprintf"},
4efc6507 5954 {bp_jit_event, "jit events"},
0e30163f
JK
5955 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
5956 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 5957 };
269b11a2
PA
5958
5959 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
5960 || ((int) type != bptypes[(int) type].type))
5961 internal_error (__FILE__, __LINE__,
5962 _("bptypes table does not describe type #%d."),
5963 (int) type);
5964
5965 return bptypes[(int) type].description;
5966}
5967
998580f1
MK
5968/* For MI, output a field named 'thread-groups' with a list as the value.
5969 For CLI, prefix the list with the string 'inf'. */
5970
5971static void
5972output_thread_groups (struct ui_out *uiout,
5973 const char *field_name,
5c632425 5974 const std::vector<int> &inf_nums,
998580f1
MK
5975 int mi_only)
5976{
112e8700 5977 int is_mi = uiout->is_mi_like_p ();
998580f1
MK
5978
5979 /* For backward compatibility, don't display inferiors in CLI unless
5980 there are several. Always display them for MI. */
5981 if (!is_mi && mi_only)
5982 return;
5983
10f489e5 5984 ui_out_emit_list list_emitter (uiout, field_name);
752eb8b4 5985
5c632425 5986 for (size_t i = 0; i < inf_nums.size (); i++)
998580f1
MK
5987 {
5988 if (is_mi)
5989 {
5990 char mi_group[10];
5991
5c632425 5992 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf_nums[i]);
112e8700 5993 uiout->field_string (NULL, mi_group);
998580f1
MK
5994 }
5995 else
5996 {
5997 if (i == 0)
112e8700 5998 uiout->text (" inf ");
998580f1 5999 else
112e8700 6000 uiout->text (", ");
998580f1 6001
5c632425 6002 uiout->text (plongest (inf_nums[i]));
998580f1
MK
6003 }
6004 }
998580f1
MK
6005}
6006
269b11a2
PA
6007/* Print B to gdb_stdout. */
6008
6009static void
6010print_one_breakpoint_location (struct breakpoint *b,
6011 struct bp_location *loc,
6012 int loc_number,
6013 struct bp_location **last_loc,
269b11a2
PA
6014 int allflag)
6015{
6016 struct command_line *l;
c2c6d25f 6017 static char bpenables[] = "nynny";
c906108c 6018
79a45e25 6019 struct ui_out *uiout = current_uiout;
0d381245
VP
6020 int header_of_multiple = 0;
6021 int part_of_multiple = (loc != NULL);
79a45b7d
TT
6022 struct value_print_options opts;
6023
6024 get_user_print_options (&opts);
0d381245
VP
6025
6026 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
6027 /* See comment in print_one_breakpoint concerning treatment of
6028 breakpoints with single disabled location. */
0d381245
VP
6029 if (loc == NULL
6030 && (b->loc != NULL
6031 && (b->loc->next != NULL || !b->loc->enabled)))
6032 header_of_multiple = 1;
6033 if (loc == NULL)
6034 loc = b->loc;
6035
c4093a6a
JM
6036 annotate_record ();
6037
6038 /* 1 */
6039 annotate_field (0);
0d381245 6040 if (part_of_multiple)
528e1572 6041 uiout->field_fmt ("number", "%d.%d", b->number, loc_number);
0d381245 6042 else
528e1572 6043 uiout->field_int ("number", b->number);
c4093a6a
JM
6044
6045 /* 2 */
6046 annotate_field (1);
0d381245 6047 if (part_of_multiple)
112e8700 6048 uiout->field_skip ("type");
269b11a2 6049 else
112e8700 6050 uiout->field_string ("type", bptype_string (b->type));
c4093a6a
JM
6051
6052 /* 3 */
6053 annotate_field (2);
0d381245 6054 if (part_of_multiple)
112e8700 6055 uiout->field_skip ("disp");
0d381245 6056 else
112e8700 6057 uiout->field_string ("disp", bpdisp_text (b->disposition));
0d381245 6058
c4093a6a
JM
6059
6060 /* 4 */
6061 annotate_field (3);
0d381245 6062 if (part_of_multiple)
112e8700 6063 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
0d381245 6064 else
112e8700
SM
6065 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
6066 uiout->spaces (2);
0d381245 6067
c4093a6a
JM
6068
6069 /* 5 and 6 */
3086aeae 6070 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 6071 {
4a64f543
MS
6072 /* Although the print_one can possibly print all locations,
6073 calling it here is not likely to get any nice result. So,
6074 make sure there's just one location. */
0d381245 6075 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 6076 b->ops->print_one (b, last_loc);
0d381245 6077 }
3086aeae
DJ
6078 else
6079 switch (b->type)
6080 {
6081 case bp_none:
6082 internal_error (__FILE__, __LINE__,
e2e0b3e5 6083 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 6084 break;
c906108c 6085
3086aeae
DJ
6086 case bp_watchpoint:
6087 case bp_hardware_watchpoint:
6088 case bp_read_watchpoint:
6089 case bp_access_watchpoint:
3a5c3e22
PA
6090 {
6091 struct watchpoint *w = (struct watchpoint *) b;
6092
6093 /* Field 4, the address, is omitted (which makes the columns
6094 not line up too nicely with the headers, but the effect
6095 is relatively readable). */
6096 if (opts.addressprint)
112e8700 6097 uiout->field_skip ("addr");
3a5c3e22 6098 annotate_field (5);
112e8700 6099 uiout->field_string ("what", w->exp_string);
3a5c3e22 6100 }
3086aeae
DJ
6101 break;
6102
3086aeae
DJ
6103 case bp_breakpoint:
6104 case bp_hardware_breakpoint:
7c16b83e 6105 case bp_single_step:
3086aeae
DJ
6106 case bp_until:
6107 case bp_finish:
6108 case bp_longjmp:
6109 case bp_longjmp_resume:
e2e4d78b 6110 case bp_longjmp_call_dummy:
186c406b
TT
6111 case bp_exception:
6112 case bp_exception_resume:
3086aeae 6113 case bp_step_resume:
2c03e5be 6114 case bp_hp_step_resume:
3086aeae
DJ
6115 case bp_watchpoint_scope:
6116 case bp_call_dummy:
aa7d318d 6117 case bp_std_terminate:
3086aeae
DJ
6118 case bp_shlib_event:
6119 case bp_thread_event:
6120 case bp_overlay_event:
0fd8e87f 6121 case bp_longjmp_master:
aa7d318d 6122 case bp_std_terminate_master:
186c406b 6123 case bp_exception_master:
1042e4c0 6124 case bp_tracepoint:
7a697b8d 6125 case bp_fast_tracepoint:
0fb4aa4b 6126 case bp_static_tracepoint:
e7e0cddf 6127 case bp_dprintf:
4efc6507 6128 case bp_jit_event:
0e30163f
JK
6129 case bp_gnu_ifunc_resolver:
6130 case bp_gnu_ifunc_resolver_return:
79a45b7d 6131 if (opts.addressprint)
3086aeae
DJ
6132 {
6133 annotate_field (4);
54e52265 6134 if (header_of_multiple)
112e8700 6135 uiout->field_string ("addr", "<MULTIPLE>");
e9bbd7c5 6136 else if (b->loc == NULL || loc->shlib_disabled)
112e8700 6137 uiout->field_string ("addr", "<PENDING>");
0101ce28 6138 else
112e8700 6139 uiout->field_core_addr ("addr",
5af949e3 6140 loc->gdbarch, loc->address);
3086aeae
DJ
6141 }
6142 annotate_field (5);
0d381245 6143 if (!header_of_multiple)
170b53b2 6144 print_breakpoint_location (b, loc);
0d381245 6145 if (b->loc)
a6d9a66e 6146 *last_loc = b->loc;
3086aeae
DJ
6147 break;
6148 }
c906108c 6149
6c95b8df 6150
998580f1 6151 if (loc != NULL && !header_of_multiple)
6c95b8df
PA
6152 {
6153 struct inferior *inf;
5c632425 6154 std::vector<int> inf_nums;
998580f1 6155 int mi_only = 1;
6c95b8df 6156
998580f1 6157 ALL_INFERIORS (inf)
6c95b8df
PA
6158 {
6159 if (inf->pspace == loc->pspace)
5c632425 6160 inf_nums.push_back (inf->num);
6c95b8df 6161 }
998580f1
MK
6162
6163 /* For backward compatibility, don't display inferiors in CLI unless
6164 there are several. Always display for MI. */
6165 if (allflag
6166 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6167 && (number_of_program_spaces () > 1
6168 || number_of_inferiors () > 1)
6169 /* LOC is for existing B, it cannot be in
6170 moribund_locations and thus having NULL OWNER. */
6171 && loc->owner->type != bp_catchpoint))
6172 mi_only = 0;
5c632425 6173 output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
6c95b8df
PA
6174 }
6175
4a306c9a 6176 if (!part_of_multiple)
c4093a6a 6177 {
4a306c9a
JB
6178 if (b->thread != -1)
6179 {
6180 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6181 "stop only in" line a little further down. */
112e8700
SM
6182 uiout->text (" thread ");
6183 uiout->field_int ("thread", b->thread);
4a306c9a
JB
6184 }
6185 else if (b->task != 0)
6186 {
112e8700
SM
6187 uiout->text (" task ");
6188 uiout->field_int ("task", b->task);
4a306c9a 6189 }
c4093a6a 6190 }
f1310107 6191
112e8700 6192 uiout->text ("\n");
f1310107 6193
348d480f 6194 if (!part_of_multiple)
f1310107
TJB
6195 b->ops->print_one_detail (b, uiout);
6196
0d381245 6197 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6198 {
6199 annotate_field (6);
112e8700 6200 uiout->text ("\tstop only in stack frame at ");
e5dd4106 6201 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6202 the frame ID. */
112e8700 6203 uiout->field_core_addr ("frame",
5af949e3 6204 b->gdbarch, b->frame_id.stack_addr);
112e8700 6205 uiout->text ("\n");
c4093a6a
JM
6206 }
6207
28010a5d 6208 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6209 {
6210 annotate_field (7);
d77f58be 6211 if (is_tracepoint (b))
112e8700 6212 uiout->text ("\ttrace only if ");
1042e4c0 6213 else
112e8700
SM
6214 uiout->text ("\tstop only if ");
6215 uiout->field_string ("cond", b->cond_string);
b775012e
LM
6216
6217 /* Print whether the target is doing the breakpoint's condition
6218 evaluation. If GDB is doing the evaluation, don't print anything. */
6219 if (is_breakpoint (b)
6220 && breakpoint_condition_evaluation_mode ()
6221 == condition_evaluation_target)
6222 {
112e8700
SM
6223 uiout->text (" (");
6224 uiout->field_string ("evaluated-by",
b775012e 6225 bp_condition_evaluator (b));
112e8700 6226 uiout->text (" evals)");
b775012e 6227 }
112e8700 6228 uiout->text ("\n");
0101ce28
JJ
6229 }
6230
0d381245 6231 if (!part_of_multiple && b->thread != -1)
c4093a6a 6232 {
4a64f543 6233 /* FIXME should make an annotation for this. */
112e8700
SM
6234 uiout->text ("\tstop only in thread ");
6235 if (uiout->is_mi_like_p ())
6236 uiout->field_int ("thread", b->thread);
5d5658a1
PA
6237 else
6238 {
6239 struct thread_info *thr = find_thread_global_id (b->thread);
6240
112e8700 6241 uiout->field_string ("thread", print_thread_id (thr));
5d5658a1 6242 }
112e8700 6243 uiout->text ("\n");
c4093a6a
JM
6244 }
6245
556ec64d
YQ
6246 if (!part_of_multiple)
6247 {
6248 if (b->hit_count)
31f56a27
YQ
6249 {
6250 /* FIXME should make an annotation for this. */
6251 if (is_catchpoint (b))
112e8700 6252 uiout->text ("\tcatchpoint");
31f56a27 6253 else if (is_tracepoint (b))
112e8700 6254 uiout->text ("\ttracepoint");
31f56a27 6255 else
112e8700
SM
6256 uiout->text ("\tbreakpoint");
6257 uiout->text (" already hit ");
6258 uiout->field_int ("times", b->hit_count);
31f56a27 6259 if (b->hit_count == 1)
112e8700 6260 uiout->text (" time\n");
31f56a27 6261 else
112e8700 6262 uiout->text (" times\n");
31f56a27 6263 }
556ec64d
YQ
6264 else
6265 {
31f56a27 6266 /* Output the count also if it is zero, but only if this is mi. */
112e8700
SM
6267 if (uiout->is_mi_like_p ())
6268 uiout->field_int ("times", b->hit_count);
556ec64d
YQ
6269 }
6270 }
8b93c638 6271
0d381245 6272 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6273 {
6274 annotate_field (8);
112e8700
SM
6275 uiout->text ("\tignore next ");
6276 uiout->field_int ("ignore", b->ignore_count);
6277 uiout->text (" hits\n");
c4093a6a 6278 }
059fb39f 6279
816338b5
SS
6280 /* Note that an enable count of 1 corresponds to "enable once"
6281 behavior, which is reported by the combination of enablement and
6282 disposition, so we don't need to mention it here. */
6283 if (!part_of_multiple && b->enable_count > 1)
6284 {
6285 annotate_field (8);
112e8700 6286 uiout->text ("\tdisable after ");
816338b5
SS
6287 /* Tweak the wording to clarify that ignore and enable counts
6288 are distinct, and have additive effect. */
6289 if (b->ignore_count)
112e8700 6290 uiout->text ("additional ");
816338b5 6291 else
112e8700
SM
6292 uiout->text ("next ");
6293 uiout->field_int ("enable", b->enable_count);
6294 uiout->text (" hits\n");
816338b5
SS
6295 }
6296
f196051f
SS
6297 if (!part_of_multiple && is_tracepoint (b))
6298 {
6299 struct tracepoint *tp = (struct tracepoint *) b;
6300
6301 if (tp->traceframe_usage)
6302 {
112e8700
SM
6303 uiout->text ("\ttrace buffer usage ");
6304 uiout->field_int ("traceframe-usage", tp->traceframe_usage);
6305 uiout->text (" bytes\n");
f196051f
SS
6306 }
6307 }
d3ce09f5 6308
d1b0a7bf 6309 l = b->commands ? b->commands.get () : NULL;
059fb39f 6310 if (!part_of_multiple && l)
c4093a6a
JM
6311 {
6312 annotate_field (9);
2e783024 6313 ui_out_emit_tuple tuple_emitter (uiout, "script");
8b93c638 6314 print_command_lines (uiout, l, 4);
c4093a6a 6315 }
d24317b4 6316
d9b3f62e 6317 if (is_tracepoint (b))
1042e4c0 6318 {
d9b3f62e
PA
6319 struct tracepoint *t = (struct tracepoint *) b;
6320
6321 if (!part_of_multiple && t->pass_count)
6322 {
6323 annotate_field (10);
112e8700
SM
6324 uiout->text ("\tpass count ");
6325 uiout->field_int ("pass", t->pass_count);
6326 uiout->text (" \n");
d9b3f62e 6327 }
f2a8bc8a
YQ
6328
6329 /* Don't display it when tracepoint or tracepoint location is
6330 pending. */
6331 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6332 {
6333 annotate_field (11);
6334
112e8700
SM
6335 if (uiout->is_mi_like_p ())
6336 uiout->field_string ("installed",
f2a8bc8a
YQ
6337 loc->inserted ? "y" : "n");
6338 else
6339 {
6340 if (loc->inserted)
112e8700 6341 uiout->text ("\t");
f2a8bc8a 6342 else
112e8700
SM
6343 uiout->text ("\tnot ");
6344 uiout->text ("installed on target\n");
f2a8bc8a
YQ
6345 }
6346 }
1042e4c0
SS
6347 }
6348
112e8700 6349 if (uiout->is_mi_like_p () && !part_of_multiple)
d24317b4 6350 {
3a5c3e22
PA
6351 if (is_watchpoint (b))
6352 {
6353 struct watchpoint *w = (struct watchpoint *) b;
6354
112e8700 6355 uiout->field_string ("original-location", w->exp_string);
3a5c3e22 6356 }
f00aae0f 6357 else if (b->location != NULL
d28cd78a 6358 && event_location_to_string (b->location.get ()) != NULL)
112e8700 6359 uiout->field_string ("original-location",
d28cd78a 6360 event_location_to_string (b->location.get ()));
d24317b4 6361 }
c4093a6a 6362}
c5aa993b 6363
0d381245
VP
6364static void
6365print_one_breakpoint (struct breakpoint *b,
4a64f543 6366 struct bp_location **last_loc,
6c95b8df 6367 int allflag)
0d381245 6368{
79a45e25 6369 struct ui_out *uiout = current_uiout;
8d3788bd 6370
2e783024
TT
6371 {
6372 ui_out_emit_tuple tuple_emitter (uiout, "bkpt");
8d3788bd 6373
2e783024
TT
6374 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6375 }
0d381245
VP
6376
6377 /* If this breakpoint has custom print function,
6378 it's already printed. Otherwise, print individual
6379 locations, if any. */
6380 if (b->ops == NULL || b->ops->print_one == NULL)
6381 {
4a64f543
MS
6382 /* If breakpoint has a single location that is disabled, we
6383 print it as if it had several locations, since otherwise it's
6384 hard to represent "breakpoint enabled, location disabled"
6385 situation.
6386
6387 Note that while hardware watchpoints have several locations
a3be7890 6388 internally, that's not a property exposed to user. */
0d381245 6389 if (b->loc
a5606eee 6390 && !is_hardware_watchpoint (b)
8d3788bd 6391 && (b->loc->next || !b->loc->enabled))
0d381245
VP
6392 {
6393 struct bp_location *loc;
6394 int n = 1;
8d3788bd 6395
0d381245 6396 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd 6397 {
2e783024 6398 ui_out_emit_tuple tuple_emitter (uiout, NULL);
8d3788bd 6399 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
8d3788bd 6400 }
0d381245
VP
6401 }
6402 }
6403}
6404
a6d9a66e
UW
6405static int
6406breakpoint_address_bits (struct breakpoint *b)
6407{
6408 int print_address_bits = 0;
6409 struct bp_location *loc;
6410
c6d81124
PA
6411 /* Software watchpoints that aren't watching memory don't have an
6412 address to print. */
6413 if (is_no_memory_software_watchpoint (b))
6414 return 0;
6415
a6d9a66e
UW
6416 for (loc = b->loc; loc; loc = loc->next)
6417 {
c7437ca6
PA
6418 int addr_bit;
6419
c7437ca6 6420 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6421 if (addr_bit > print_address_bits)
6422 print_address_bits = addr_bit;
6423 }
6424
6425 return print_address_bits;
6426}
0d381245 6427
65630365 6428/* See breakpoint.h. */
c5aa993b 6429
65630365
PA
6430void
6431print_breakpoint (breakpoint *b)
c4093a6a 6432{
a6d9a66e 6433 struct bp_location *dummy_loc = NULL;
65630365 6434 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6435}
c5aa993b 6436
09d682a4
TT
6437/* Return true if this breakpoint was set by the user, false if it is
6438 internal or momentary. */
6439
6440int
6441user_breakpoint_p (struct breakpoint *b)
6442{
46c6471b 6443 return b->number > 0;
09d682a4
TT
6444}
6445
93daf339
TT
6446/* See breakpoint.h. */
6447
6448int
6449pending_breakpoint_p (struct breakpoint *b)
6450{
6451 return b->loc == NULL;
6452}
6453
7f3b0473 6454/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
6455 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6456 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6457 FILTER is non-NULL, call it on each breakpoint and only include the
6458 ones for which it returns non-zero. Return the total number of
6459 breakpoints listed. */
c906108c 6460
d77f58be 6461static int
4495129a 6462breakpoint_1 (const char *args, int allflag,
4a64f543 6463 int (*filter) (const struct breakpoint *))
c4093a6a 6464{
52f0bd74 6465 struct breakpoint *b;
a6d9a66e 6466 struct bp_location *last_loc = NULL;
7f3b0473 6467 int nr_printable_breakpoints;
79a45b7d 6468 struct value_print_options opts;
a6d9a66e 6469 int print_address_bits = 0;
269b11a2 6470 int print_type_col_width = 14;
79a45e25 6471 struct ui_out *uiout = current_uiout;
269b11a2 6472
79a45b7d
TT
6473 get_user_print_options (&opts);
6474
4a64f543
MS
6475 /* Compute the number of rows in the table, as well as the size
6476 required for address fields. */
7f3b0473
AC
6477 nr_printable_breakpoints = 0;
6478 ALL_BREAKPOINTS (b)
e5a67952
MS
6479 {
6480 /* If we have a filter, only list the breakpoints it accepts. */
6481 if (filter && !filter (b))
6482 continue;
6483
6484 /* If we have an "args" string, it is a list of breakpoints to
6485 accept. Skip the others. */
6486 if (args != NULL && *args != '\0')
6487 {
6488 if (allflag && parse_and_eval_long (args) != b->number)
6489 continue;
6490 if (!allflag && !number_is_in_list (args, b->number))
6491 continue;
6492 }
269b11a2 6493
e5a67952
MS
6494 if (allflag || user_breakpoint_p (b))
6495 {
6496 int addr_bit, type_len;
a6d9a66e 6497
e5a67952
MS
6498 addr_bit = breakpoint_address_bits (b);
6499 if (addr_bit > print_address_bits)
6500 print_address_bits = addr_bit;
269b11a2 6501
e5a67952
MS
6502 type_len = strlen (bptype_string (b->type));
6503 if (type_len > print_type_col_width)
6504 print_type_col_width = type_len;
6505
6506 nr_printable_breakpoints++;
6507 }
6508 }
7f3b0473 6509
4a2b031d
TT
6510 {
6511 ui_out_emit_table table_emitter (uiout,
6512 opts.addressprint ? 6 : 5,
6513 nr_printable_breakpoints,
6514 "BreakpointTable");
6515
6516 if (nr_printable_breakpoints > 0)
6517 annotate_breakpoints_headers ();
6518 if (nr_printable_breakpoints > 0)
6519 annotate_field (0);
6520 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
6521 if (nr_printable_breakpoints > 0)
6522 annotate_field (1);
6523 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
6524 if (nr_printable_breakpoints > 0)
6525 annotate_field (2);
6526 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
6527 if (nr_printable_breakpoints > 0)
6528 annotate_field (3);
6529 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
6530 if (opts.addressprint)
6531 {
6532 if (nr_printable_breakpoints > 0)
6533 annotate_field (4);
6534 if (print_address_bits <= 32)
6535 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
6536 else
6537 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
6538 }
6539 if (nr_printable_breakpoints > 0)
6540 annotate_field (5);
6541 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6542 uiout->table_body ();
6543 if (nr_printable_breakpoints > 0)
6544 annotate_breakpoints_table ();
6545
6546 ALL_BREAKPOINTS (b)
6547 {
6548 QUIT;
6549 /* If we have a filter, only list the breakpoints it accepts. */
6550 if (filter && !filter (b))
6551 continue;
e5a67952 6552
4a2b031d
TT
6553 /* If we have an "args" string, it is a list of breakpoints to
6554 accept. Skip the others. */
e5a67952 6555
4a2b031d
TT
6556 if (args != NULL && *args != '\0')
6557 {
6558 if (allflag) /* maintenance info breakpoint */
6559 {
6560 if (parse_and_eval_long (args) != b->number)
6561 continue;
6562 }
6563 else /* all others */
6564 {
6565 if (!number_is_in_list (args, b->number))
6566 continue;
6567 }
6568 }
6569 /* We only print out user settable breakpoints unless the
6570 allflag is set. */
6571 if (allflag || user_breakpoint_p (b))
6572 print_one_breakpoint (b, &last_loc, allflag);
6573 }
6574 }
698384cd 6575
7f3b0473 6576 if (nr_printable_breakpoints == 0)
c906108c 6577 {
4a64f543
MS
6578 /* If there's a filter, let the caller decide how to report
6579 empty list. */
d77f58be
SS
6580 if (!filter)
6581 {
e5a67952 6582 if (args == NULL || *args == '\0')
112e8700 6583 uiout->message ("No breakpoints or watchpoints.\n");
d77f58be 6584 else
112e8700 6585 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
e5a67952 6586 args);
d77f58be 6587 }
c906108c
SS
6588 }
6589 else
c4093a6a 6590 {
a6d9a66e
UW
6591 if (last_loc && !server_command)
6592 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6593 }
c906108c 6594
4a64f543 6595 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6596 there have been breakpoints? */
c906108c 6597 annotate_breakpoints_table_end ();
d77f58be
SS
6598
6599 return nr_printable_breakpoints;
c906108c
SS
6600}
6601
ad443146
SS
6602/* Display the value of default-collect in a way that is generally
6603 compatible with the breakpoint list. */
6604
6605static void
6606default_collect_info (void)
6607{
79a45e25
PA
6608 struct ui_out *uiout = current_uiout;
6609
ad443146
SS
6610 /* If it has no value (which is frequently the case), say nothing; a
6611 message like "No default-collect." gets in user's face when it's
6612 not wanted. */
6613 if (!*default_collect)
6614 return;
6615
6616 /* The following phrase lines up nicely with per-tracepoint collect
6617 actions. */
112e8700
SM
6618 uiout->text ("default collect ");
6619 uiout->field_string ("default-collect", default_collect);
6620 uiout->text (" \n");
ad443146
SS
6621}
6622
c906108c 6623static void
0b39b52e 6624info_breakpoints_command (const char *args, int from_tty)
c906108c 6625{
e5a67952 6626 breakpoint_1 (args, 0, NULL);
ad443146
SS
6627
6628 default_collect_info ();
d77f58be
SS
6629}
6630
6631static void
1d12d88f 6632info_watchpoints_command (const char *args, int from_tty)
d77f58be 6633{
e5a67952 6634 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
79a45e25 6635 struct ui_out *uiout = current_uiout;
d77f58be
SS
6636
6637 if (num_printed == 0)
6638 {
e5a67952 6639 if (args == NULL || *args == '\0')
112e8700 6640 uiout->message ("No watchpoints.\n");
d77f58be 6641 else
112e8700 6642 uiout->message ("No watchpoint matching '%s'.\n", args);
d77f58be 6643 }
c906108c
SS
6644}
6645
7a292a7a 6646static void
4495129a 6647maintenance_info_breakpoints (const char *args, int from_tty)
c906108c 6648{
e5a67952 6649 breakpoint_1 (args, 1, NULL);
ad443146
SS
6650
6651 default_collect_info ();
c906108c
SS
6652}
6653
0d381245 6654static int
714835d5 6655breakpoint_has_pc (struct breakpoint *b,
6c95b8df 6656 struct program_space *pspace,
714835d5 6657 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
6658{
6659 struct bp_location *bl = b->loc;
cc59ec59 6660
0d381245
VP
6661 for (; bl; bl = bl->next)
6662 {
6c95b8df
PA
6663 if (bl->pspace == pspace
6664 && bl->address == pc
0d381245
VP
6665 && (!overlay_debugging || bl->section == section))
6666 return 1;
6667 }
6668 return 0;
6669}
6670
672f9b60 6671/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
6672 concerns with logical breakpoints, so we match program spaces, not
6673 address spaces. */
c906108c
SS
6674
6675static void
6c95b8df
PA
6676describe_other_breakpoints (struct gdbarch *gdbarch,
6677 struct program_space *pspace, CORE_ADDR pc,
5af949e3 6678 struct obj_section *section, int thread)
c906108c 6679{
52f0bd74
AC
6680 int others = 0;
6681 struct breakpoint *b;
c906108c
SS
6682
6683 ALL_BREAKPOINTS (b)
672f9b60
KP
6684 others += (user_breakpoint_p (b)
6685 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
6686 if (others > 0)
6687 {
a3f17187
AC
6688 if (others == 1)
6689 printf_filtered (_("Note: breakpoint "));
6690 else /* if (others == ???) */
6691 printf_filtered (_("Note: breakpoints "));
c906108c 6692 ALL_BREAKPOINTS (b)
672f9b60 6693 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
6694 {
6695 others--;
6696 printf_filtered ("%d", b->number);
6697 if (b->thread == -1 && thread != -1)
6698 printf_filtered (" (all threads)");
6699 else if (b->thread != -1)
6700 printf_filtered (" (thread %d)", b->thread);
6701 printf_filtered ("%s%s ",
059fb39f 6702 ((b->enable_state == bp_disabled
f8eba3c6 6703 || b->enable_state == bp_call_disabled)
0d381245 6704 ? " (disabled)"
0d381245
VP
6705 : ""),
6706 (others > 1) ? ","
6707 : ((others == 1) ? " and" : ""));
6708 }
a3f17187 6709 printf_filtered (_("also set at pc "));
5af949e3 6710 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
6711 printf_filtered (".\n");
6712 }
6713}
6714\f
c906108c 6715
e4f237da 6716/* Return true iff it is meaningful to use the address member of
244558af
LM
6717 BPT locations. For some breakpoint types, the locations' address members
6718 are irrelevant and it makes no sense to attempt to compare them to other
6719 addresses (or use them for any other purpose either).
e4f237da 6720
4a64f543 6721 More specifically, each of the following breakpoint types will
244558af 6722 always have a zero valued location address and we don't want to mark
4a64f543 6723 breakpoints of any of these types to be a duplicate of an actual
244558af 6724 breakpoint location at address zero:
e4f237da
KB
6725
6726 bp_watchpoint
2d134ed3
PA
6727 bp_catchpoint
6728
6729*/
e4f237da
KB
6730
6731static int
6732breakpoint_address_is_meaningful (struct breakpoint *bpt)
6733{
6734 enum bptype type = bpt->type;
6735
2d134ed3
PA
6736 return (type != bp_watchpoint && type != bp_catchpoint);
6737}
6738
6739/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6740 true if LOC1 and LOC2 represent the same watchpoint location. */
6741
6742static int
4a64f543
MS
6743watchpoint_locations_match (struct bp_location *loc1,
6744 struct bp_location *loc2)
2d134ed3 6745{
3a5c3e22
PA
6746 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6747 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6748
6749 /* Both of them must exist. */
6750 gdb_assert (w1 != NULL);
6751 gdb_assert (w2 != NULL);
2bdf28a0 6752
4a64f543
MS
6753 /* If the target can evaluate the condition expression in hardware,
6754 then we we need to insert both watchpoints even if they are at
6755 the same place. Otherwise the watchpoint will only trigger when
6756 the condition of whichever watchpoint was inserted evaluates to
6757 true, not giving a chance for GDB to check the condition of the
6758 other watchpoint. */
3a5c3e22 6759 if ((w1->cond_exp
4a64f543
MS
6760 && target_can_accel_watchpoint_condition (loc1->address,
6761 loc1->length,
0cf6dd15 6762 loc1->watchpoint_type,
4d01a485 6763 w1->cond_exp.get ()))
3a5c3e22 6764 || (w2->cond_exp
4a64f543
MS
6765 && target_can_accel_watchpoint_condition (loc2->address,
6766 loc2->length,
0cf6dd15 6767 loc2->watchpoint_type,
4d01a485 6768 w2->cond_exp.get ())))
0cf6dd15
TJB
6769 return 0;
6770
85d721b8
PA
6771 /* Note that this checks the owner's type, not the location's. In
6772 case the target does not support read watchpoints, but does
6773 support access watchpoints, we'll have bp_read_watchpoint
6774 watchpoints with hw_access locations. Those should be considered
6775 duplicates of hw_read locations. The hw_read locations will
6776 become hw_access locations later. */
2d134ed3
PA
6777 return (loc1->owner->type == loc2->owner->type
6778 && loc1->pspace->aspace == loc2->pspace->aspace
6779 && loc1->address == loc2->address
6780 && loc1->length == loc2->length);
e4f237da
KB
6781}
6782
31e77af2 6783/* See breakpoint.h. */
6c95b8df 6784
31e77af2 6785int
accd0bcd
YQ
6786breakpoint_address_match (const address_space *aspace1, CORE_ADDR addr1,
6787 const address_space *aspace2, CORE_ADDR addr2)
6c95b8df 6788{
f5656ead 6789 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
6790 || aspace1 == aspace2)
6791 && addr1 == addr2);
6792}
6793
f1310107
TJB
6794/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6795 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6796 matches ASPACE2. On targets that have global breakpoints, the address
6797 space doesn't really matter. */
6798
6799static int
accd0bcd
YQ
6800breakpoint_address_match_range (const address_space *aspace1,
6801 CORE_ADDR addr1,
6802 int len1, const address_space *aspace2,
f1310107
TJB
6803 CORE_ADDR addr2)
6804{
f5656ead 6805 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
6806 || aspace1 == aspace2)
6807 && addr2 >= addr1 && addr2 < addr1 + len1);
6808}
6809
6810/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6811 a ranged breakpoint. In most targets, a match happens only if ASPACE
6812 matches the breakpoint's address space. On targets that have global
6813 breakpoints, the address space doesn't really matter. */
6814
6815static int
6816breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 6817 const address_space *aspace,
f1310107
TJB
6818 CORE_ADDR addr)
6819{
6820 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6821 aspace, addr)
6822 || (bl->length
6823 && breakpoint_address_match_range (bl->pspace->aspace,
6824 bl->address, bl->length,
6825 aspace, addr)));
6826}
6827
d35ae833
PA
6828/* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
6829 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
6830 match happens only if ASPACE matches the breakpoint's address
6831 space. On targets that have global breakpoints, the address space
6832 doesn't really matter. */
6833
6834static int
6835breakpoint_location_address_range_overlap (struct bp_location *bl,
accd0bcd 6836 const address_space *aspace,
d35ae833
PA
6837 CORE_ADDR addr, int len)
6838{
6839 if (gdbarch_has_global_breakpoints (target_gdbarch ())
6840 || bl->pspace->aspace == aspace)
6841 {
6842 int bl_len = bl->length != 0 ? bl->length : 1;
6843
6844 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
6845 return 1;
6846 }
6847 return 0;
6848}
6849
1e4d1764
YQ
6850/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6851 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6852 true, otherwise returns false. */
6853
6854static int
6855tracepoint_locations_match (struct bp_location *loc1,
6856 struct bp_location *loc2)
6857{
6858 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6859 /* Since tracepoint locations are never duplicated with others', tracepoint
6860 locations at the same address of different tracepoints are regarded as
6861 different locations. */
6862 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6863 else
6864 return 0;
6865}
6866
2d134ed3
PA
6867/* Assuming LOC1 and LOC2's types' have meaningful target addresses
6868 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
6869 represent the same location. */
6870
6871static int
4a64f543
MS
6872breakpoint_locations_match (struct bp_location *loc1,
6873 struct bp_location *loc2)
2d134ed3 6874{
2bdf28a0
JK
6875 int hw_point1, hw_point2;
6876
6877 /* Both of them must not be in moribund_locations. */
6878 gdb_assert (loc1->owner != NULL);
6879 gdb_assert (loc2->owner != NULL);
6880
6881 hw_point1 = is_hardware_watchpoint (loc1->owner);
6882 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
6883
6884 if (hw_point1 != hw_point2)
6885 return 0;
6886 else if (hw_point1)
6887 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
6888 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6889 return tracepoint_locations_match (loc1, loc2);
2d134ed3 6890 else
f1310107
TJB
6891 /* We compare bp_location.length in order to cover ranged breakpoints. */
6892 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6893 loc2->pspace->aspace, loc2->address)
6894 && loc1->length == loc2->length);
2d134ed3
PA
6895}
6896
76897487
KB
6897static void
6898breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6899 int bnum, int have_bnum)
6900{
f63fbe86
MS
6901 /* The longest string possibly returned by hex_string_custom
6902 is 50 chars. These must be at least that big for safety. */
6903 char astr1[64];
6904 char astr2[64];
76897487 6905
bb599908
PH
6906 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6907 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 6908 if (have_bnum)
8a3fe4f8 6909 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
6910 bnum, astr1, astr2);
6911 else
8a3fe4f8 6912 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
6913}
6914
4a64f543
MS
6915/* Adjust a breakpoint's address to account for architectural
6916 constraints on breakpoint placement. Return the adjusted address.
6917 Note: Very few targets require this kind of adjustment. For most
6918 targets, this function is simply the identity function. */
76897487
KB
6919
6920static CORE_ADDR
a6d9a66e
UW
6921adjust_breakpoint_address (struct gdbarch *gdbarch,
6922 CORE_ADDR bpaddr, enum bptype bptype)
76897487 6923{
a0de8c21
YQ
6924 if (bptype == bp_watchpoint
6925 || bptype == bp_hardware_watchpoint
6926 || bptype == bp_read_watchpoint
6927 || bptype == bp_access_watchpoint
6928 || bptype == bp_catchpoint)
88f7da05
KB
6929 {
6930 /* Watchpoints and the various bp_catch_* eventpoints should not
6931 have their addresses modified. */
6932 return bpaddr;
6933 }
7c16b83e
PA
6934 else if (bptype == bp_single_step)
6935 {
6936 /* Single-step breakpoints should not have their addresses
6937 modified. If there's any architectural constrain that
6938 applies to this address, then it should have already been
6939 taken into account when the breakpoint was created in the
6940 first place. If we didn't do this, stepping through e.g.,
6941 Thumb-2 IT blocks would break. */
6942 return bpaddr;
6943 }
76897487
KB
6944 else
6945 {
a0de8c21
YQ
6946 CORE_ADDR adjusted_bpaddr = bpaddr;
6947
6948 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
6949 {
6950 /* Some targets have architectural constraints on the placement
6951 of breakpoint instructions. Obtain the adjusted address. */
6952 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
6953 }
76897487 6954
a0de8c21 6955 adjusted_bpaddr = address_significant (gdbarch, adjusted_bpaddr);
76897487
KB
6956
6957 /* An adjusted breakpoint address can significantly alter
6958 a user's expectations. Print a warning if an adjustment
6959 is required. */
6960 if (adjusted_bpaddr != bpaddr)
6961 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
6962
6963 return adjusted_bpaddr;
6964 }
6965}
6966
5625a286 6967bp_location::bp_location (const bp_location_ops *ops, breakpoint *owner)
7cc221ef 6968{
5625a286 6969 bp_location *loc = this;
7cc221ef 6970
348d480f
PA
6971 gdb_assert (ops != NULL);
6972
28010a5d
PA
6973 loc->ops = ops;
6974 loc->owner = owner;
b775012e 6975 loc->cond_bytecode = NULL;
0d381245
VP
6976 loc->shlib_disabled = 0;
6977 loc->enabled = 1;
e049a4b5 6978
28010a5d 6979 switch (owner->type)
e049a4b5
DJ
6980 {
6981 case bp_breakpoint:
7c16b83e 6982 case bp_single_step:
e049a4b5
DJ
6983 case bp_until:
6984 case bp_finish:
6985 case bp_longjmp:
6986 case bp_longjmp_resume:
e2e4d78b 6987 case bp_longjmp_call_dummy:
186c406b
TT
6988 case bp_exception:
6989 case bp_exception_resume:
e049a4b5 6990 case bp_step_resume:
2c03e5be 6991 case bp_hp_step_resume:
e049a4b5
DJ
6992 case bp_watchpoint_scope:
6993 case bp_call_dummy:
aa7d318d 6994 case bp_std_terminate:
e049a4b5
DJ
6995 case bp_shlib_event:
6996 case bp_thread_event:
6997 case bp_overlay_event:
4efc6507 6998 case bp_jit_event:
0fd8e87f 6999 case bp_longjmp_master:
aa7d318d 7000 case bp_std_terminate_master:
186c406b 7001 case bp_exception_master:
0e30163f
JK
7002 case bp_gnu_ifunc_resolver:
7003 case bp_gnu_ifunc_resolver_return:
e7e0cddf 7004 case bp_dprintf:
e049a4b5 7005 loc->loc_type = bp_loc_software_breakpoint;
b775012e 7006 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7007 break;
7008 case bp_hardware_breakpoint:
7009 loc->loc_type = bp_loc_hardware_breakpoint;
b775012e 7010 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7011 break;
7012 case bp_hardware_watchpoint:
7013 case bp_read_watchpoint:
7014 case bp_access_watchpoint:
7015 loc->loc_type = bp_loc_hardware_watchpoint;
7016 break;
7017 case bp_watchpoint:
ce78b96d 7018 case bp_catchpoint:
15c3d785
PA
7019 case bp_tracepoint:
7020 case bp_fast_tracepoint:
0fb4aa4b 7021 case bp_static_tracepoint:
e049a4b5
DJ
7022 loc->loc_type = bp_loc_other;
7023 break;
7024 default:
e2e0b3e5 7025 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
7026 }
7027
f431efe5 7028 loc->refc = 1;
28010a5d
PA
7029}
7030
7031/* Allocate a struct bp_location. */
7032
7033static struct bp_location *
7034allocate_bp_location (struct breakpoint *bpt)
7035{
348d480f
PA
7036 return bpt->ops->allocate_location (bpt);
7037}
7cc221ef 7038
f431efe5
PA
7039static void
7040free_bp_location (struct bp_location *loc)
fe3f5fa8 7041{
348d480f 7042 loc->ops->dtor (loc);
4d01a485 7043 delete loc;
fe3f5fa8
VP
7044}
7045
f431efe5
PA
7046/* Increment reference count. */
7047
7048static void
7049incref_bp_location (struct bp_location *bl)
7050{
7051 ++bl->refc;
7052}
7053
7054/* Decrement reference count. If the reference count reaches 0,
7055 destroy the bp_location. Sets *BLP to NULL. */
7056
7057static void
7058decref_bp_location (struct bp_location **blp)
7059{
0807b50c
PA
7060 gdb_assert ((*blp)->refc > 0);
7061
f431efe5
PA
7062 if (--(*blp)->refc == 0)
7063 free_bp_location (*blp);
7064 *blp = NULL;
7065}
7066
346774a9 7067/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 7068
b270e6f9
TT
7069static breakpoint *
7070add_to_breakpoint_chain (std::unique_ptr<breakpoint> &&b)
c906108c 7071{
346774a9 7072 struct breakpoint *b1;
b270e6f9 7073 struct breakpoint *result = b.get ();
c906108c 7074
346774a9
PA
7075 /* Add this breakpoint to the end of the chain so that a list of
7076 breakpoints will come out in order of increasing numbers. */
7077
7078 b1 = breakpoint_chain;
7079 if (b1 == 0)
b270e6f9 7080 breakpoint_chain = b.release ();
346774a9
PA
7081 else
7082 {
7083 while (b1->next)
7084 b1 = b1->next;
b270e6f9 7085 b1->next = b.release ();
346774a9 7086 }
b270e6f9
TT
7087
7088 return result;
346774a9
PA
7089}
7090
7091/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7092
7093static void
7094init_raw_breakpoint_without_location (struct breakpoint *b,
7095 struct gdbarch *gdbarch,
28010a5d 7096 enum bptype bptype,
c0a91b2b 7097 const struct breakpoint_ops *ops)
346774a9 7098{
348d480f
PA
7099 gdb_assert (ops != NULL);
7100
28010a5d 7101 b->ops = ops;
4d28f7a8 7102 b->type = bptype;
a6d9a66e 7103 b->gdbarch = gdbarch;
c906108c
SS
7104 b->language = current_language->la_language;
7105 b->input_radix = input_radix;
d0fb5eae 7106 b->related_breakpoint = b;
346774a9
PA
7107}
7108
7109/* Helper to set_raw_breakpoint below. Creates a breakpoint
7110 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7111
7112static struct breakpoint *
7113set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7114 enum bptype bptype,
c0a91b2b 7115 const struct breakpoint_ops *ops)
346774a9 7116{
3b0871f4 7117 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7118
3b0871f4 7119 init_raw_breakpoint_without_location (b.get (), gdbarch, bptype, ops);
b270e6f9 7120 return add_to_breakpoint_chain (std::move (b));
0d381245
VP
7121}
7122
0e30163f
JK
7123/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7124 resolutions should be made as the user specified the location explicitly
7125 enough. */
7126
0d381245 7127static void
0e30163f 7128set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 7129{
2bdf28a0
JK
7130 gdb_assert (loc->owner != NULL);
7131
0d381245 7132 if (loc->owner->type == bp_breakpoint
1042e4c0 7133 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7134 || is_tracepoint (loc->owner))
0d381245 7135 {
2c02bd72 7136 const char *function_name;
0e30163f 7137
3467ec66 7138 if (loc->msymbol != NULL
f50776aa
PA
7139 && (MSYMBOL_TYPE (loc->msymbol) == mst_text_gnu_ifunc
7140 || MSYMBOL_TYPE (loc->msymbol) == mst_data_gnu_ifunc)
3467ec66 7141 && !explicit_loc)
0e30163f
JK
7142 {
7143 struct breakpoint *b = loc->owner;
7144
3467ec66
PA
7145 function_name = MSYMBOL_LINKAGE_NAME (loc->msymbol);
7146
7147 if (b->type == bp_breakpoint && b->loc == loc
7148 && loc->next == NULL && b->related_breakpoint == b)
0e30163f
JK
7149 {
7150 /* Create only the whole new breakpoint of this type but do not
7151 mess more complicated breakpoints with multiple locations. */
7152 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7153 /* Remember the resolver's address for use by the return
7154 breakpoint. */
3467ec66 7155 loc->related_address = loc->address;
0e30163f
JK
7156 }
7157 }
3467ec66
PA
7158 else
7159 find_pc_partial_function (loc->address, &function_name, NULL, NULL);
0e30163f 7160
2c02bd72
DE
7161 if (function_name)
7162 loc->function_name = xstrdup (function_name);
0d381245
VP
7163 }
7164}
7165
a6d9a66e 7166/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7167struct gdbarch *
a6d9a66e
UW
7168get_sal_arch (struct symtab_and_line sal)
7169{
7170 if (sal.section)
7171 return get_objfile_arch (sal.section->objfile);
7172 if (sal.symtab)
eb822aa6 7173 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
a6d9a66e
UW
7174
7175 return NULL;
7176}
7177
346774a9
PA
7178/* Low level routine for partially initializing a breakpoint of type
7179 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7180 file name, and line number are provided by SAL.
0d381245
VP
7181
7182 It is expected that the caller will complete the initialization of
7183 the newly created breakpoint struct as well as output any status
c56053d2 7184 information regarding the creation of a new breakpoint. */
0d381245 7185
346774a9
PA
7186static void
7187init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7188 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7189 const struct breakpoint_ops *ops)
0d381245 7190{
28010a5d 7191 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7192
3742cc8b 7193 add_location_to_breakpoint (b, &sal);
0d381245 7194
6c95b8df
PA
7195 if (bptype != bp_catchpoint)
7196 gdb_assert (sal.pspace != NULL);
7197
f8eba3c6
TT
7198 /* Store the program space that was used to set the breakpoint,
7199 except for ordinary breakpoints, which are independent of the
7200 program space. */
7201 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7202 b->pspace = sal.pspace;
346774a9 7203}
c906108c 7204
346774a9
PA
7205/* set_raw_breakpoint is a low level routine for allocating and
7206 partially initializing a breakpoint of type BPTYPE. The newly
7207 created breakpoint's address, section, source file name, and line
7208 number are provided by SAL. The newly created and partially
7209 initialized breakpoint is added to the breakpoint chain and
7210 is also returned as the value of this function.
7211
7212 It is expected that the caller will complete the initialization of
7213 the newly created breakpoint struct as well as output any status
7214 information regarding the creation of a new breakpoint. In
7215 particular, set_raw_breakpoint does NOT set the breakpoint
7216 number! Care should be taken to not allow an error to occur
7217 prior to completing the initialization of the breakpoint. If this
7218 should happen, a bogus breakpoint will be left on the chain. */
7219
7220struct breakpoint *
7221set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7222 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7223 const struct breakpoint_ops *ops)
346774a9 7224{
3b0871f4 7225 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7226
3b0871f4 7227 init_raw_breakpoint (b.get (), gdbarch, sal, bptype, ops);
b270e6f9 7228 return add_to_breakpoint_chain (std::move (b));
c906108c
SS
7229}
7230
53a5351d 7231/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7232 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7233 initiated the operation. */
c906108c
SS
7234
7235void
186c406b 7236set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7237{
35df4500 7238 struct breakpoint *b, *b_tmp;
5d5658a1 7239 int thread = tp->global_num;
0fd8e87f
UW
7240
7241 /* To avoid having to rescan all objfile symbols at every step,
7242 we maintain a list of continually-inserted but always disabled
7243 longjmp "master" breakpoints. Here, we simply create momentary
7244 clones of those and enable them for the requested thread. */
35df4500 7245 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7246 if (b->pspace == current_program_space
186c406b
TT
7247 && (b->type == bp_longjmp_master
7248 || b->type == bp_exception_master))
0fd8e87f 7249 {
06edf0c0
PA
7250 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7251 struct breakpoint *clone;
cc59ec59 7252
e2e4d78b
JK
7253 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7254 after their removal. */
06edf0c0 7255 clone = momentary_breakpoint_from_master (b, type,
c1fc2657 7256 &momentary_breakpoint_ops, 1);
0fd8e87f
UW
7257 clone->thread = thread;
7258 }
186c406b
TT
7259
7260 tp->initiating_frame = frame;
c906108c
SS
7261}
7262
611c83ae 7263/* Delete all longjmp breakpoints from THREAD. */
c906108c 7264void
611c83ae 7265delete_longjmp_breakpoint (int thread)
c906108c 7266{
35df4500 7267 struct breakpoint *b, *b_tmp;
c906108c 7268
35df4500 7269 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7270 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7271 {
7272 if (b->thread == thread)
7273 delete_breakpoint (b);
7274 }
c906108c
SS
7275}
7276
f59f708a
PA
7277void
7278delete_longjmp_breakpoint_at_next_stop (int thread)
7279{
7280 struct breakpoint *b, *b_tmp;
7281
7282 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7283 if (b->type == bp_longjmp || b->type == bp_exception)
7284 {
7285 if (b->thread == thread)
7286 b->disposition = disp_del_at_next_stop;
7287 }
7288}
7289
e2e4d78b
JK
7290/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7291 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7292 pointer to any of them. Return NULL if this system cannot place longjmp
7293 breakpoints. */
7294
7295struct breakpoint *
7296set_longjmp_breakpoint_for_call_dummy (void)
7297{
7298 struct breakpoint *b, *retval = NULL;
7299
7300 ALL_BREAKPOINTS (b)
7301 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7302 {
7303 struct breakpoint *new_b;
7304
7305 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
a1aa2221
LM
7306 &momentary_breakpoint_ops,
7307 1);
00431a78 7308 new_b->thread = inferior_thread ()->global_num;
e2e4d78b
JK
7309
7310 /* Link NEW_B into the chain of RETVAL breakpoints. */
7311
7312 gdb_assert (new_b->related_breakpoint == new_b);
7313 if (retval == NULL)
7314 retval = new_b;
7315 new_b->related_breakpoint = retval;
7316 while (retval->related_breakpoint != new_b->related_breakpoint)
7317 retval = retval->related_breakpoint;
7318 retval->related_breakpoint = new_b;
7319 }
7320
7321 return retval;
7322}
7323
7324/* Verify all existing dummy frames and their associated breakpoints for
b67a2c6f 7325 TP. Remove those which can no longer be found in the current frame
e2e4d78b
JK
7326 stack.
7327
7328 You should call this function only at places where it is safe to currently
7329 unwind the whole stack. Failed stack unwind would discard live dummy
7330 frames. */
7331
7332void
b67a2c6f 7333check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
e2e4d78b
JK
7334{
7335 struct breakpoint *b, *b_tmp;
7336
7337 ALL_BREAKPOINTS_SAFE (b, b_tmp)
5d5658a1 7338 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
e2e4d78b
JK
7339 {
7340 struct breakpoint *dummy_b = b->related_breakpoint;
7341
7342 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7343 dummy_b = dummy_b->related_breakpoint;
7344 if (dummy_b->type != bp_call_dummy
7345 || frame_find_by_id (dummy_b->frame_id) != NULL)
7346 continue;
7347
00431a78 7348 dummy_frame_discard (dummy_b->frame_id, tp);
e2e4d78b
JK
7349
7350 while (b->related_breakpoint != b)
7351 {
7352 if (b_tmp == b->related_breakpoint)
7353 b_tmp = b->related_breakpoint->next;
7354 delete_breakpoint (b->related_breakpoint);
7355 }
7356 delete_breakpoint (b);
7357 }
7358}
7359
1900040c
MS
7360void
7361enable_overlay_breakpoints (void)
7362{
52f0bd74 7363 struct breakpoint *b;
1900040c
MS
7364
7365 ALL_BREAKPOINTS (b)
7366 if (b->type == bp_overlay_event)
7367 {
7368 b->enable_state = bp_enabled;
44702360 7369 update_global_location_list (UGLL_MAY_INSERT);
c02f5703 7370 overlay_events_enabled = 1;
1900040c
MS
7371 }
7372}
7373
7374void
7375disable_overlay_breakpoints (void)
7376{
52f0bd74 7377 struct breakpoint *b;
1900040c
MS
7378
7379 ALL_BREAKPOINTS (b)
7380 if (b->type == bp_overlay_event)
7381 {
7382 b->enable_state = bp_disabled;
44702360 7383 update_global_location_list (UGLL_DONT_INSERT);
c02f5703 7384 overlay_events_enabled = 0;
1900040c
MS
7385 }
7386}
7387
aa7d318d
TT
7388/* Set an active std::terminate breakpoint for each std::terminate
7389 master breakpoint. */
7390void
7391set_std_terminate_breakpoint (void)
7392{
35df4500 7393 struct breakpoint *b, *b_tmp;
aa7d318d 7394
35df4500 7395 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7396 if (b->pspace == current_program_space
7397 && b->type == bp_std_terminate_master)
7398 {
06edf0c0 7399 momentary_breakpoint_from_master (b, bp_std_terminate,
a1aa2221 7400 &momentary_breakpoint_ops, 1);
aa7d318d
TT
7401 }
7402}
7403
7404/* Delete all the std::terminate breakpoints. */
7405void
7406delete_std_terminate_breakpoint (void)
7407{
35df4500 7408 struct breakpoint *b, *b_tmp;
aa7d318d 7409
35df4500 7410 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7411 if (b->type == bp_std_terminate)
7412 delete_breakpoint (b);
7413}
7414
c4093a6a 7415struct breakpoint *
a6d9a66e 7416create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7417{
7418 struct breakpoint *b;
c4093a6a 7419
06edf0c0
PA
7420 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7421 &internal_breakpoint_ops);
7422
b5de0fa7 7423 b->enable_state = bp_enabled;
f00aae0f 7424 /* location has to be used or breakpoint_re_set will delete me. */
d28cd78a 7425 b->location = new_address_location (b->loc->address, NULL, 0);
c4093a6a 7426
44702360 7427 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 7428
c4093a6a
JM
7429 return b;
7430}
7431
0101ce28
JJ
7432struct lang_and_radix
7433 {
7434 enum language lang;
7435 int radix;
7436 };
7437
4efc6507
DE
7438/* Create a breakpoint for JIT code registration and unregistration. */
7439
7440struct breakpoint *
7441create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7442{
2a7f3dff
PA
7443 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7444 &internal_breakpoint_ops);
4efc6507 7445}
0101ce28 7446
03673fc7
PP
7447/* Remove JIT code registration and unregistration breakpoint(s). */
7448
7449void
7450remove_jit_event_breakpoints (void)
7451{
7452 struct breakpoint *b, *b_tmp;
7453
7454 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7455 if (b->type == bp_jit_event
7456 && b->loc->pspace == current_program_space)
7457 delete_breakpoint (b);
7458}
7459
cae688ec
JJ
7460void
7461remove_solib_event_breakpoints (void)
7462{
35df4500 7463 struct breakpoint *b, *b_tmp;
cae688ec 7464
35df4500 7465 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7466 if (b->type == bp_shlib_event
7467 && b->loc->pspace == current_program_space)
cae688ec
JJ
7468 delete_breakpoint (b);
7469}
7470
f37f681c
PA
7471/* See breakpoint.h. */
7472
7473void
7474remove_solib_event_breakpoints_at_next_stop (void)
7475{
7476 struct breakpoint *b, *b_tmp;
7477
7478 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7479 if (b->type == bp_shlib_event
7480 && b->loc->pspace == current_program_space)
7481 b->disposition = disp_del_at_next_stop;
7482}
7483
04086b45
PA
7484/* Helper for create_solib_event_breakpoint /
7485 create_and_insert_solib_event_breakpoint. Allows specifying which
7486 INSERT_MODE to pass through to update_global_location_list. */
7487
7488static struct breakpoint *
7489create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7490 enum ugll_insert_mode insert_mode)
cae688ec
JJ
7491{
7492 struct breakpoint *b;
7493
06edf0c0
PA
7494 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7495 &internal_breakpoint_ops);
04086b45 7496 update_global_location_list_nothrow (insert_mode);
cae688ec
JJ
7497 return b;
7498}
7499
04086b45
PA
7500struct breakpoint *
7501create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7502{
7503 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7504}
7505
f37f681c
PA
7506/* See breakpoint.h. */
7507
7508struct breakpoint *
7509create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7510{
7511 struct breakpoint *b;
7512
04086b45
PA
7513 /* Explicitly tell update_global_location_list to insert
7514 locations. */
7515 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
f37f681c
PA
7516 if (!b->loc->inserted)
7517 {
7518 delete_breakpoint (b);
7519 return NULL;
7520 }
7521 return b;
7522}
7523
cae688ec
JJ
7524/* Disable any breakpoints that are on code in shared libraries. Only
7525 apply to enabled breakpoints, disabled ones can just stay disabled. */
7526
7527void
cb851954 7528disable_breakpoints_in_shlibs (void)
cae688ec 7529{
876fa593 7530 struct bp_location *loc, **locp_tmp;
cae688ec 7531
876fa593 7532 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7533 {
2bdf28a0 7534 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7535 struct breakpoint *b = loc->owner;
2bdf28a0 7536
4a64f543
MS
7537 /* We apply the check to all breakpoints, including disabled for
7538 those with loc->duplicate set. This is so that when breakpoint
7539 becomes enabled, or the duplicate is removed, gdb will try to
7540 insert all breakpoints. If we don't set shlib_disabled here,
7541 we'll try to insert those breakpoints and fail. */
1042e4c0 7542 if (((b->type == bp_breakpoint)
508ccb1f 7543 || (b->type == bp_jit_event)
1042e4c0 7544 || (b->type == bp_hardware_breakpoint)
d77f58be 7545 || (is_tracepoint (b)))
6c95b8df 7546 && loc->pspace == current_program_space
0d381245 7547 && !loc->shlib_disabled
6c95b8df 7548 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7549 )
0d381245
VP
7550 {
7551 loc->shlib_disabled = 1;
7552 }
cae688ec
JJ
7553 }
7554}
7555
63644780
NB
7556/* Disable any breakpoints and tracepoints that are in SOLIB upon
7557 notification of unloaded_shlib. Only apply to enabled breakpoints,
7558 disabled ones can just stay disabled. */
84acb35a 7559
75149521 7560static void
84acb35a
JJ
7561disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7562{
876fa593 7563 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7564 int disabled_shlib_breaks = 0;
7565
876fa593 7566 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7567 {
2bdf28a0 7568 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7569 struct breakpoint *b = loc->owner;
cc59ec59 7570
1e4d1764 7571 if (solib->pspace == loc->pspace
e2dd7057 7572 && !loc->shlib_disabled
1e4d1764
YQ
7573 && (((b->type == bp_breakpoint
7574 || b->type == bp_jit_event
7575 || b->type == bp_hardware_breakpoint)
7576 && (loc->loc_type == bp_loc_hardware_breakpoint
7577 || loc->loc_type == bp_loc_software_breakpoint))
7578 || is_tracepoint (b))
e2dd7057 7579 && solib_contains_address_p (solib, loc->address))
84acb35a 7580 {
e2dd7057
PP
7581 loc->shlib_disabled = 1;
7582 /* At this point, we cannot rely on remove_breakpoint
7583 succeeding so we must mark the breakpoint as not inserted
7584 to prevent future errors occurring in remove_breakpoints. */
7585 loc->inserted = 0;
8d3788bd
VP
7586
7587 /* This may cause duplicate notifications for the same breakpoint. */
76727919 7588 gdb::observers::breakpoint_modified.notify (b);
8d3788bd 7589
e2dd7057
PP
7590 if (!disabled_shlib_breaks)
7591 {
223ffa71 7592 target_terminal::ours_for_output ();
3e43a32a
MS
7593 warning (_("Temporarily disabling breakpoints "
7594 "for unloaded shared library \"%s\""),
e2dd7057 7595 solib->so_name);
84acb35a 7596 }
e2dd7057 7597 disabled_shlib_breaks = 1;
84acb35a
JJ
7598 }
7599 }
84acb35a
JJ
7600}
7601
63644780
NB
7602/* Disable any breakpoints and tracepoints in OBJFILE upon
7603 notification of free_objfile. Only apply to enabled breakpoints,
7604 disabled ones can just stay disabled. */
7605
7606static void
7607disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7608{
7609 struct breakpoint *b;
7610
7611 if (objfile == NULL)
7612 return;
7613
d03de421
PA
7614 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7615 managed by the user with add-symbol-file/remove-symbol-file.
7616 Similarly to how breakpoints in shared libraries are handled in
7617 response to "nosharedlibrary", mark breakpoints in such modules
08351840
PA
7618 shlib_disabled so they end up uninserted on the next global
7619 location list update. Shared libraries not loaded by the user
7620 aren't handled here -- they're already handled in
7621 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7622 solib_unloaded observer. We skip objfiles that are not
d03de421
PA
7623 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7624 main objfile). */
7625 if ((objfile->flags & OBJF_SHARED) == 0
7626 || (objfile->flags & OBJF_USERLOADED) == 0)
63644780
NB
7627 return;
7628
7629 ALL_BREAKPOINTS (b)
7630 {
7631 struct bp_location *loc;
7632 int bp_modified = 0;
7633
7634 if (!is_breakpoint (b) && !is_tracepoint (b))
7635 continue;
7636
7637 for (loc = b->loc; loc != NULL; loc = loc->next)
7638 {
7639 CORE_ADDR loc_addr = loc->address;
7640
7641 if (loc->loc_type != bp_loc_hardware_breakpoint
7642 && loc->loc_type != bp_loc_software_breakpoint)
7643 continue;
7644
7645 if (loc->shlib_disabled != 0)
7646 continue;
7647
7648 if (objfile->pspace != loc->pspace)
7649 continue;
7650
7651 if (loc->loc_type != bp_loc_hardware_breakpoint
7652 && loc->loc_type != bp_loc_software_breakpoint)
7653 continue;
7654
7655 if (is_addr_in_objfile (loc_addr, objfile))
7656 {
7657 loc->shlib_disabled = 1;
08351840
PA
7658 /* At this point, we don't know whether the object was
7659 unmapped from the inferior or not, so leave the
7660 inserted flag alone. We'll handle failure to
7661 uninsert quietly, in case the object was indeed
7662 unmapped. */
63644780
NB
7663
7664 mark_breakpoint_location_modified (loc);
7665
7666 bp_modified = 1;
7667 }
7668 }
7669
7670 if (bp_modified)
76727919 7671 gdb::observers::breakpoint_modified.notify (b);
63644780
NB
7672 }
7673}
7674
ce78b96d
JB
7675/* FORK & VFORK catchpoints. */
7676
e29a4733 7677/* An instance of this type is used to represent a fork or vfork
c1fc2657
SM
7678 catchpoint. A breakpoint is really of this type iff its ops pointer points
7679 to CATCH_FORK_BREAKPOINT_OPS. */
e29a4733 7680
c1fc2657 7681struct fork_catchpoint : public breakpoint
e29a4733 7682{
e29a4733
PA
7683 /* Process id of a child process whose forking triggered this
7684 catchpoint. This field is only valid immediately after this
7685 catchpoint has triggered. */
7686 ptid_t forked_inferior_pid;
7687};
7688
4a64f543
MS
7689/* Implement the "insert" breakpoint_ops method for fork
7690 catchpoints. */
ce78b96d 7691
77b06cd7
TJB
7692static int
7693insert_catch_fork (struct bp_location *bl)
ce78b96d 7694{
e99b03dc 7695 return target_insert_fork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7696}
7697
4a64f543
MS
7698/* Implement the "remove" breakpoint_ops method for fork
7699 catchpoints. */
ce78b96d
JB
7700
7701static int
73971819 7702remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7703{
e99b03dc 7704 return target_remove_fork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7705}
7706
7707/* Implement the "breakpoint_hit" breakpoint_ops method for fork
7708 catchpoints. */
7709
7710static int
f1310107 7711breakpoint_hit_catch_fork (const struct bp_location *bl,
bd522513 7712 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7713 const struct target_waitstatus *ws)
ce78b96d 7714{
e29a4733
PA
7715 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7716
f90263c1
TT
7717 if (ws->kind != TARGET_WAITKIND_FORKED)
7718 return 0;
7719
7720 c->forked_inferior_pid = ws->value.related_pid;
7721 return 1;
ce78b96d
JB
7722}
7723
4a64f543
MS
7724/* Implement the "print_it" breakpoint_ops method for fork
7725 catchpoints. */
ce78b96d
JB
7726
7727static enum print_stop_action
348d480f 7728print_it_catch_fork (bpstat bs)
ce78b96d 7729{
36dfb11c 7730 struct ui_out *uiout = current_uiout;
348d480f
PA
7731 struct breakpoint *b = bs->breakpoint_at;
7732 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 7733
ce78b96d 7734 annotate_catchpoint (b->number);
f303dbd6 7735 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7736 if (b->disposition == disp_del)
112e8700 7737 uiout->text ("Temporary catchpoint ");
36dfb11c 7738 else
112e8700
SM
7739 uiout->text ("Catchpoint ");
7740 if (uiout->is_mi_like_p ())
36dfb11c 7741 {
112e8700
SM
7742 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
7743 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7744 }
112e8700
SM
7745 uiout->field_int ("bkptno", b->number);
7746 uiout->text (" (forked process ");
e99b03dc 7747 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
112e8700 7748 uiout->text ("), ");
ce78b96d
JB
7749 return PRINT_SRC_AND_LOC;
7750}
7751
4a64f543
MS
7752/* Implement the "print_one" breakpoint_ops method for fork
7753 catchpoints. */
ce78b96d
JB
7754
7755static void
a6d9a66e 7756print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7757{
e29a4733 7758 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7759 struct value_print_options opts;
79a45e25 7760 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7761
7762 get_user_print_options (&opts);
7763
4a64f543
MS
7764 /* Field 4, the address, is omitted (which makes the columns not
7765 line up too nicely with the headers, but the effect is relatively
7766 readable). */
79a45b7d 7767 if (opts.addressprint)
112e8700 7768 uiout->field_skip ("addr");
ce78b96d 7769 annotate_field (5);
112e8700 7770 uiout->text ("fork");
d7e15655 7771 if (c->forked_inferior_pid != null_ptid)
ce78b96d 7772 {
112e8700 7773 uiout->text (", process ");
e99b03dc 7774 uiout->field_int ("what", c->forked_inferior_pid.pid ());
112e8700 7775 uiout->spaces (1);
ce78b96d 7776 }
8ac3646f 7777
112e8700
SM
7778 if (uiout->is_mi_like_p ())
7779 uiout->field_string ("catch-type", "fork");
ce78b96d
JB
7780}
7781
7782/* Implement the "print_mention" breakpoint_ops method for fork
7783 catchpoints. */
7784
7785static void
7786print_mention_catch_fork (struct breakpoint *b)
7787{
7788 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7789}
7790
6149aea9
PA
7791/* Implement the "print_recreate" breakpoint_ops method for fork
7792 catchpoints. */
7793
7794static void
7795print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7796{
7797 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 7798 print_recreate_thread (b, fp);
6149aea9
PA
7799}
7800
ce78b96d
JB
7801/* The breakpoint_ops structure to be used in fork catchpoints. */
7802
2060206e 7803static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 7804
4a64f543
MS
7805/* Implement the "insert" breakpoint_ops method for vfork
7806 catchpoints. */
ce78b96d 7807
77b06cd7
TJB
7808static int
7809insert_catch_vfork (struct bp_location *bl)
ce78b96d 7810{
e99b03dc 7811 return target_insert_vfork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7812}
7813
4a64f543
MS
7814/* Implement the "remove" breakpoint_ops method for vfork
7815 catchpoints. */
ce78b96d
JB
7816
7817static int
73971819 7818remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7819{
e99b03dc 7820 return target_remove_vfork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7821}
7822
7823/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7824 catchpoints. */
7825
7826static int
f1310107 7827breakpoint_hit_catch_vfork (const struct bp_location *bl,
bd522513 7828 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7829 const struct target_waitstatus *ws)
ce78b96d 7830{
e29a4733
PA
7831 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7832
f90263c1
TT
7833 if (ws->kind != TARGET_WAITKIND_VFORKED)
7834 return 0;
7835
7836 c->forked_inferior_pid = ws->value.related_pid;
7837 return 1;
ce78b96d
JB
7838}
7839
4a64f543
MS
7840/* Implement the "print_it" breakpoint_ops method for vfork
7841 catchpoints. */
ce78b96d
JB
7842
7843static enum print_stop_action
348d480f 7844print_it_catch_vfork (bpstat bs)
ce78b96d 7845{
36dfb11c 7846 struct ui_out *uiout = current_uiout;
348d480f 7847 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
7848 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7849
ce78b96d 7850 annotate_catchpoint (b->number);
f303dbd6 7851 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7852 if (b->disposition == disp_del)
112e8700 7853 uiout->text ("Temporary catchpoint ");
36dfb11c 7854 else
112e8700
SM
7855 uiout->text ("Catchpoint ");
7856 if (uiout->is_mi_like_p ())
36dfb11c 7857 {
112e8700
SM
7858 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
7859 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7860 }
112e8700
SM
7861 uiout->field_int ("bkptno", b->number);
7862 uiout->text (" (vforked process ");
e99b03dc 7863 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
112e8700 7864 uiout->text ("), ");
ce78b96d
JB
7865 return PRINT_SRC_AND_LOC;
7866}
7867
4a64f543
MS
7868/* Implement the "print_one" breakpoint_ops method for vfork
7869 catchpoints. */
ce78b96d
JB
7870
7871static void
a6d9a66e 7872print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7873{
e29a4733 7874 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7875 struct value_print_options opts;
79a45e25 7876 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7877
7878 get_user_print_options (&opts);
4a64f543
MS
7879 /* Field 4, the address, is omitted (which makes the columns not
7880 line up too nicely with the headers, but the effect is relatively
7881 readable). */
79a45b7d 7882 if (opts.addressprint)
112e8700 7883 uiout->field_skip ("addr");
ce78b96d 7884 annotate_field (5);
112e8700 7885 uiout->text ("vfork");
d7e15655 7886 if (c->forked_inferior_pid != null_ptid)
ce78b96d 7887 {
112e8700 7888 uiout->text (", process ");
e99b03dc 7889 uiout->field_int ("what", c->forked_inferior_pid.pid ());
112e8700 7890 uiout->spaces (1);
ce78b96d 7891 }
8ac3646f 7892
112e8700
SM
7893 if (uiout->is_mi_like_p ())
7894 uiout->field_string ("catch-type", "vfork");
ce78b96d
JB
7895}
7896
7897/* Implement the "print_mention" breakpoint_ops method for vfork
7898 catchpoints. */
7899
7900static void
7901print_mention_catch_vfork (struct breakpoint *b)
7902{
7903 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7904}
7905
6149aea9
PA
7906/* Implement the "print_recreate" breakpoint_ops method for vfork
7907 catchpoints. */
7908
7909static void
7910print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7911{
7912 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 7913 print_recreate_thread (b, fp);
6149aea9
PA
7914}
7915
ce78b96d
JB
7916/* The breakpoint_ops structure to be used in vfork catchpoints. */
7917
2060206e 7918static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 7919
edcc5120 7920/* An instance of this type is used to represent an solib catchpoint.
c1fc2657 7921 A breakpoint is really of this type iff its ops pointer points to
edcc5120
TT
7922 CATCH_SOLIB_BREAKPOINT_OPS. */
7923
c1fc2657 7924struct solib_catchpoint : public breakpoint
edcc5120 7925{
c1fc2657 7926 ~solib_catchpoint () override;
edcc5120
TT
7927
7928 /* True for "catch load", false for "catch unload". */
7929 unsigned char is_load;
7930
7931 /* Regular expression to match, if any. COMPILED is only valid when
7932 REGEX is non-NULL. */
7933 char *regex;
2d7cc5c7 7934 std::unique_ptr<compiled_regex> compiled;
edcc5120
TT
7935};
7936
c1fc2657 7937solib_catchpoint::~solib_catchpoint ()
edcc5120 7938{
c1fc2657 7939 xfree (this->regex);
edcc5120
TT
7940}
7941
7942static int
7943insert_catch_solib (struct bp_location *ignore)
7944{
7945 return 0;
7946}
7947
7948static int
73971819 7949remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
edcc5120
TT
7950{
7951 return 0;
7952}
7953
7954static int
7955breakpoint_hit_catch_solib (const struct bp_location *bl,
bd522513 7956 const address_space *aspace,
edcc5120
TT
7957 CORE_ADDR bp_addr,
7958 const struct target_waitstatus *ws)
7959{
7960 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
7961 struct breakpoint *other;
7962
7963 if (ws->kind == TARGET_WAITKIND_LOADED)
7964 return 1;
7965
7966 ALL_BREAKPOINTS (other)
7967 {
7968 struct bp_location *other_bl;
7969
7970 if (other == bl->owner)
7971 continue;
7972
7973 if (other->type != bp_shlib_event)
7974 continue;
7975
c1fc2657 7976 if (self->pspace != NULL && other->pspace != self->pspace)
edcc5120
TT
7977 continue;
7978
7979 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
7980 {
7981 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
7982 return 1;
7983 }
7984 }
7985
7986 return 0;
7987}
7988
7989static void
7990check_status_catch_solib (struct bpstats *bs)
7991{
7992 struct solib_catchpoint *self
7993 = (struct solib_catchpoint *) bs->breakpoint_at;
edcc5120
TT
7994
7995 if (self->is_load)
7996 {
52941706 7997 for (so_list *iter : current_program_space->added_solibs)
edcc5120
TT
7998 {
7999 if (!self->regex
2d7cc5c7 8000 || self->compiled->exec (iter->so_name, 0, NULL, 0) == 0)
edcc5120
TT
8001 return;
8002 }
8003 }
8004 else
8005 {
6fb16ce6 8006 for (const std::string &iter : current_program_space->deleted_solibs)
edcc5120
TT
8007 {
8008 if (!self->regex
6fb16ce6 8009 || self->compiled->exec (iter.c_str (), 0, NULL, 0) == 0)
edcc5120
TT
8010 return;
8011 }
8012 }
8013
8014 bs->stop = 0;
8015 bs->print_it = print_it_noop;
8016}
8017
8018static enum print_stop_action
8019print_it_catch_solib (bpstat bs)
8020{
8021 struct breakpoint *b = bs->breakpoint_at;
8022 struct ui_out *uiout = current_uiout;
8023
8024 annotate_catchpoint (b->number);
f303dbd6 8025 maybe_print_thread_hit_breakpoint (uiout);
edcc5120 8026 if (b->disposition == disp_del)
112e8700 8027 uiout->text ("Temporary catchpoint ");
edcc5120 8028 else
112e8700
SM
8029 uiout->text ("Catchpoint ");
8030 uiout->field_int ("bkptno", b->number);
8031 uiout->text ("\n");
8032 if (uiout->is_mi_like_p ())
8033 uiout->field_string ("disp", bpdisp_text (b->disposition));
edcc5120
TT
8034 print_solib_event (1);
8035 return PRINT_SRC_AND_LOC;
8036}
8037
8038static void
8039print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8040{
8041 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8042 struct value_print_options opts;
8043 struct ui_out *uiout = current_uiout;
edcc5120
TT
8044
8045 get_user_print_options (&opts);
8046 /* Field 4, the address, is omitted (which makes the columns not
8047 line up too nicely with the headers, but the effect is relatively
8048 readable). */
8049 if (opts.addressprint)
8050 {
8051 annotate_field (4);
112e8700 8052 uiout->field_skip ("addr");
edcc5120
TT
8053 }
8054
528e1572 8055 std::string msg;
edcc5120
TT
8056 annotate_field (5);
8057 if (self->is_load)
8058 {
8059 if (self->regex)
528e1572 8060 msg = string_printf (_("load of library matching %s"), self->regex);
edcc5120 8061 else
528e1572 8062 msg = _("load of library");
edcc5120
TT
8063 }
8064 else
8065 {
8066 if (self->regex)
528e1572 8067 msg = string_printf (_("unload of library matching %s"), self->regex);
edcc5120 8068 else
528e1572 8069 msg = _("unload of library");
edcc5120 8070 }
112e8700 8071 uiout->field_string ("what", msg);
8ac3646f 8072
112e8700
SM
8073 if (uiout->is_mi_like_p ())
8074 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
edcc5120
TT
8075}
8076
8077static void
8078print_mention_catch_solib (struct breakpoint *b)
8079{
8080 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8081
8082 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8083 self->is_load ? "load" : "unload");
8084}
8085
8086static void
8087print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8088{
8089 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8090
8091 fprintf_unfiltered (fp, "%s %s",
8092 b->disposition == disp_del ? "tcatch" : "catch",
8093 self->is_load ? "load" : "unload");
8094 if (self->regex)
8095 fprintf_unfiltered (fp, " %s", self->regex);
8096 fprintf_unfiltered (fp, "\n");
8097}
8098
8099static struct breakpoint_ops catch_solib_breakpoint_ops;
8100
91985142
MG
8101/* Shared helper function (MI and CLI) for creating and installing
8102 a shared object event catchpoint. If IS_LOAD is non-zero then
8103 the events to be caught are load events, otherwise they are
8104 unload events. If IS_TEMP is non-zero the catchpoint is a
8105 temporary one. If ENABLED is non-zero the catchpoint is
8106 created in an enabled state. */
edcc5120 8107
91985142 8108void
a121b7c1 8109add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
edcc5120 8110{
edcc5120 8111 struct gdbarch *gdbarch = get_current_arch ();
edcc5120 8112
edcc5120
TT
8113 if (!arg)
8114 arg = "";
f1735a53 8115 arg = skip_spaces (arg);
edcc5120 8116
36bd8eaa 8117 std::unique_ptr<solib_catchpoint> c (new solib_catchpoint ());
edcc5120
TT
8118
8119 if (*arg != '\0')
8120 {
2d7cc5c7
PA
8121 c->compiled.reset (new compiled_regex (arg, REG_NOSUB,
8122 _("Invalid regexp")));
edcc5120
TT
8123 c->regex = xstrdup (arg);
8124 }
8125
8126 c->is_load = is_load;
36bd8eaa 8127 init_catchpoint (c.get (), gdbarch, is_temp, NULL,
edcc5120
TT
8128 &catch_solib_breakpoint_ops);
8129
c1fc2657 8130 c->enable_state = enabled ? bp_enabled : bp_disabled;
91985142 8131
b270e6f9 8132 install_breakpoint (0, std::move (c), 1);
edcc5120
TT
8133}
8134
91985142
MG
8135/* A helper function that does all the work for "catch load" and
8136 "catch unload". */
8137
8138static void
eb4c3f4a 8139catch_load_or_unload (const char *arg, int from_tty, int is_load,
91985142
MG
8140 struct cmd_list_element *command)
8141{
8142 int tempflag;
8143 const int enabled = 1;
8144
8145 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8146
8147 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8148}
8149
edcc5120 8150static void
eb4c3f4a 8151catch_load_command_1 (const char *arg, int from_tty,
edcc5120
TT
8152 struct cmd_list_element *command)
8153{
8154 catch_load_or_unload (arg, from_tty, 1, command);
8155}
8156
8157static void
eb4c3f4a 8158catch_unload_command_1 (const char *arg, int from_tty,
edcc5120
TT
8159 struct cmd_list_element *command)
8160{
8161 catch_load_or_unload (arg, from_tty, 0, command);
8162}
8163
346774a9
PA
8164/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8165 is non-zero, then make the breakpoint temporary. If COND_STRING is
8166 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8167 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8168
ab04a2af 8169void
346774a9
PA
8170init_catchpoint (struct breakpoint *b,
8171 struct gdbarch *gdbarch, int tempflag,
63160a43 8172 const char *cond_string,
c0a91b2b 8173 const struct breakpoint_ops *ops)
c906108c 8174{
51abb421 8175 symtab_and_line sal;
6c95b8df 8176 sal.pspace = current_program_space;
c5aa993b 8177
28010a5d 8178 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8179
1b36a34b 8180 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8181 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8182}
8183
28010a5d 8184void
b270e6f9 8185install_breakpoint (int internal, std::unique_ptr<breakpoint> &&arg, int update_gll)
c56053d2 8186{
b270e6f9 8187 breakpoint *b = add_to_breakpoint_chain (std::move (arg));
3a5c3e22 8188 set_breakpoint_number (internal, b);
558a9d82
YQ
8189 if (is_tracepoint (b))
8190 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8191 if (!internal)
8192 mention (b);
76727919 8193 gdb::observers::breakpoint_created.notify (b);
3ea46bff
YQ
8194
8195 if (update_gll)
44702360 8196 update_global_location_list (UGLL_MAY_INSERT);
c56053d2
PA
8197}
8198
9b70b993 8199static void
a6d9a66e 8200create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
63160a43 8201 int tempflag, const char *cond_string,
c0a91b2b 8202 const struct breakpoint_ops *ops)
c906108c 8203{
b270e6f9 8204 std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
ce78b96d 8205
b270e6f9 8206 init_catchpoint (c.get (), gdbarch, tempflag, cond_string, ops);
e29a4733
PA
8207
8208 c->forked_inferior_pid = null_ptid;
8209
b270e6f9 8210 install_breakpoint (0, std::move (c), 1);
c906108c
SS
8211}
8212
fe798b75
JB
8213/* Exec catchpoints. */
8214
b4d90040 8215/* An instance of this type is used to represent an exec catchpoint.
c1fc2657 8216 A breakpoint is really of this type iff its ops pointer points to
b4d90040
PA
8217 CATCH_EXEC_BREAKPOINT_OPS. */
8218
c1fc2657 8219struct exec_catchpoint : public breakpoint
b4d90040 8220{
c1fc2657 8221 ~exec_catchpoint () override;
b4d90040
PA
8222
8223 /* Filename of a program whose exec triggered this catchpoint.
8224 This field is only valid immediately after this catchpoint has
8225 triggered. */
8226 char *exec_pathname;
8227};
8228
c1fc2657 8229/* Exec catchpoint destructor. */
b4d90040 8230
c1fc2657 8231exec_catchpoint::~exec_catchpoint ()
b4d90040 8232{
c1fc2657 8233 xfree (this->exec_pathname);
b4d90040
PA
8234}
8235
77b06cd7
TJB
8236static int
8237insert_catch_exec (struct bp_location *bl)
c906108c 8238{
e99b03dc 8239 return target_insert_exec_catchpoint (inferior_ptid.pid ());
fe798b75 8240}
c906108c 8241
fe798b75 8242static int
73971819 8243remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
fe798b75 8244{
e99b03dc 8245 return target_remove_exec_catchpoint (inferior_ptid.pid ());
fe798b75 8246}
c906108c 8247
fe798b75 8248static int
f1310107 8249breakpoint_hit_catch_exec (const struct bp_location *bl,
bd522513 8250 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 8251 const struct target_waitstatus *ws)
fe798b75 8252{
b4d90040
PA
8253 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8254
f90263c1
TT
8255 if (ws->kind != TARGET_WAITKIND_EXECD)
8256 return 0;
8257
8258 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8259 return 1;
fe798b75 8260}
c906108c 8261
fe798b75 8262static enum print_stop_action
348d480f 8263print_it_catch_exec (bpstat bs)
fe798b75 8264{
36dfb11c 8265 struct ui_out *uiout = current_uiout;
348d480f 8266 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8267 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8268
fe798b75 8269 annotate_catchpoint (b->number);
f303dbd6 8270 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8271 if (b->disposition == disp_del)
112e8700 8272 uiout->text ("Temporary catchpoint ");
36dfb11c 8273 else
112e8700
SM
8274 uiout->text ("Catchpoint ");
8275 if (uiout->is_mi_like_p ())
36dfb11c 8276 {
112e8700
SM
8277 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8278 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8279 }
112e8700
SM
8280 uiout->field_int ("bkptno", b->number);
8281 uiout->text (" (exec'd ");
8282 uiout->field_string ("new-exec", c->exec_pathname);
8283 uiout->text ("), ");
36dfb11c 8284
fe798b75 8285 return PRINT_SRC_AND_LOC;
c906108c
SS
8286}
8287
fe798b75 8288static void
a6d9a66e 8289print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 8290{
b4d90040 8291 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 8292 struct value_print_options opts;
79a45e25 8293 struct ui_out *uiout = current_uiout;
fe798b75
JB
8294
8295 get_user_print_options (&opts);
8296
8297 /* Field 4, the address, is omitted (which makes the columns
8298 not line up too nicely with the headers, but the effect
8299 is relatively readable). */
8300 if (opts.addressprint)
112e8700 8301 uiout->field_skip ("addr");
fe798b75 8302 annotate_field (5);
112e8700 8303 uiout->text ("exec");
b4d90040 8304 if (c->exec_pathname != NULL)
fe798b75 8305 {
112e8700
SM
8306 uiout->text (", program \"");
8307 uiout->field_string ("what", c->exec_pathname);
8308 uiout->text ("\" ");
fe798b75 8309 }
8ac3646f 8310
112e8700
SM
8311 if (uiout->is_mi_like_p ())
8312 uiout->field_string ("catch-type", "exec");
fe798b75
JB
8313}
8314
8315static void
8316print_mention_catch_exec (struct breakpoint *b)
8317{
8318 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8319}
8320
6149aea9
PA
8321/* Implement the "print_recreate" breakpoint_ops method for exec
8322 catchpoints. */
8323
8324static void
8325print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8326{
8327 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 8328 print_recreate_thread (b, fp);
6149aea9
PA
8329}
8330
2060206e 8331static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 8332
c906108c 8333static int
fba45db2 8334hw_breakpoint_used_count (void)
c906108c 8335{
c906108c 8336 int i = 0;
f1310107
TJB
8337 struct breakpoint *b;
8338 struct bp_location *bl;
c906108c
SS
8339
8340 ALL_BREAKPOINTS (b)
c5aa993b 8341 {
d6b74ac4 8342 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
8343 for (bl = b->loc; bl; bl = bl->next)
8344 {
8345 /* Special types of hardware breakpoints may use more than
8346 one register. */
348d480f 8347 i += b->ops->resources_needed (bl);
f1310107 8348 }
c5aa993b 8349 }
c906108c
SS
8350
8351 return i;
8352}
8353
a1398e0c
PA
8354/* Returns the resources B would use if it were a hardware
8355 watchpoint. */
8356
c906108c 8357static int
a1398e0c 8358hw_watchpoint_use_count (struct breakpoint *b)
c906108c 8359{
c906108c 8360 int i = 0;
e09342b5 8361 struct bp_location *bl;
c906108c 8362
a1398e0c
PA
8363 if (!breakpoint_enabled (b))
8364 return 0;
8365
8366 for (bl = b->loc; bl; bl = bl->next)
8367 {
8368 /* Special types of hardware watchpoints may use more than
8369 one register. */
8370 i += b->ops->resources_needed (bl);
8371 }
8372
8373 return i;
8374}
8375
8376/* Returns the sum the used resources of all hardware watchpoints of
8377 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8378 the sum of the used resources of all hardware watchpoints of other
8379 types _not_ TYPE. */
8380
8381static int
8382hw_watchpoint_used_count_others (struct breakpoint *except,
8383 enum bptype type, int *other_type_used)
8384{
8385 int i = 0;
8386 struct breakpoint *b;
8387
c906108c
SS
8388 *other_type_used = 0;
8389 ALL_BREAKPOINTS (b)
e09342b5 8390 {
a1398e0c
PA
8391 if (b == except)
8392 continue;
e09342b5
TJB
8393 if (!breakpoint_enabled (b))
8394 continue;
8395
a1398e0c
PA
8396 if (b->type == type)
8397 i += hw_watchpoint_use_count (b);
8398 else if (is_hardware_watchpoint (b))
8399 *other_type_used = 1;
e09342b5
TJB
8400 }
8401
c906108c
SS
8402 return i;
8403}
8404
c906108c 8405void
fba45db2 8406disable_watchpoints_before_interactive_call_start (void)
c906108c 8407{
c5aa993b 8408 struct breakpoint *b;
c906108c
SS
8409
8410 ALL_BREAKPOINTS (b)
c5aa993b 8411 {
cc60f2e3 8412 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 8413 {
b5de0fa7 8414 b->enable_state = bp_call_disabled;
44702360 8415 update_global_location_list (UGLL_DONT_INSERT);
c5aa993b
JM
8416 }
8417 }
c906108c
SS
8418}
8419
8420void
fba45db2 8421enable_watchpoints_after_interactive_call_stop (void)
c906108c 8422{
c5aa993b 8423 struct breakpoint *b;
c906108c
SS
8424
8425 ALL_BREAKPOINTS (b)
c5aa993b 8426 {
cc60f2e3 8427 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 8428 {
b5de0fa7 8429 b->enable_state = bp_enabled;
44702360 8430 update_global_location_list (UGLL_MAY_INSERT);
c5aa993b
JM
8431 }
8432 }
c906108c
SS
8433}
8434
8bea4e01
UW
8435void
8436disable_breakpoints_before_startup (void)
8437{
6c95b8df 8438 current_program_space->executing_startup = 1;
44702360 8439 update_global_location_list (UGLL_DONT_INSERT);
8bea4e01
UW
8440}
8441
8442void
8443enable_breakpoints_after_startup (void)
8444{
6c95b8df 8445 current_program_space->executing_startup = 0;
f8eba3c6 8446 breakpoint_re_set ();
8bea4e01
UW
8447}
8448
7c16b83e
PA
8449/* Create a new single-step breakpoint for thread THREAD, with no
8450 locations. */
c906108c 8451
7c16b83e
PA
8452static struct breakpoint *
8453new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8454{
b270e6f9 8455 std::unique_ptr<breakpoint> b (new breakpoint ());
7c16b83e 8456
b270e6f9 8457 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step,
7c16b83e
PA
8458 &momentary_breakpoint_ops);
8459
8460 b->disposition = disp_donttouch;
8461 b->frame_id = null_frame_id;
8462
8463 b->thread = thread;
8464 gdb_assert (b->thread != 0);
8465
b270e6f9 8466 return add_to_breakpoint_chain (std::move (b));
7c16b83e
PA
8467}
8468
8469/* Set a momentary breakpoint of type TYPE at address specified by
8470 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8471 frame. */
c906108c 8472
454dafbd 8473breakpoint_up
a6d9a66e
UW
8474set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8475 struct frame_id frame_id, enum bptype type)
c906108c 8476{
52f0bd74 8477 struct breakpoint *b;
edb3359d 8478
193facb3
JK
8479 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8480 tail-called one. */
8481 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 8482
06edf0c0 8483 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
8484 b->enable_state = bp_enabled;
8485 b->disposition = disp_donttouch;
818dd999 8486 b->frame_id = frame_id;
c906108c 8487
00431a78 8488 b->thread = inferior_thread ()->global_num;
c906108c 8489
44702360 8490 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 8491
454dafbd 8492 return breakpoint_up (b);
c906108c 8493}
611c83ae 8494
06edf0c0 8495/* Make a momentary breakpoint based on the master breakpoint ORIG.
a1aa2221
LM
8496 The new breakpoint will have type TYPE, use OPS as its
8497 breakpoint_ops, and will set enabled to LOC_ENABLED. */
e58b0e63 8498
06edf0c0
PA
8499static struct breakpoint *
8500momentary_breakpoint_from_master (struct breakpoint *orig,
8501 enum bptype type,
a1aa2221
LM
8502 const struct breakpoint_ops *ops,
8503 int loc_enabled)
e58b0e63
PA
8504{
8505 struct breakpoint *copy;
8506
06edf0c0 8507 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 8508 copy->loc = allocate_bp_location (copy);
0e30163f 8509 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 8510
a6d9a66e 8511 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
8512 copy->loc->requested_address = orig->loc->requested_address;
8513 copy->loc->address = orig->loc->address;
8514 copy->loc->section = orig->loc->section;
6c95b8df 8515 copy->loc->pspace = orig->loc->pspace;
55aa24fb 8516 copy->loc->probe = orig->loc->probe;
f8eba3c6 8517 copy->loc->line_number = orig->loc->line_number;
2f202fde 8518 copy->loc->symtab = orig->loc->symtab;
a1aa2221 8519 copy->loc->enabled = loc_enabled;
e58b0e63
PA
8520 copy->frame_id = orig->frame_id;
8521 copy->thread = orig->thread;
6c95b8df 8522 copy->pspace = orig->pspace;
e58b0e63
PA
8523
8524 copy->enable_state = bp_enabled;
8525 copy->disposition = disp_donttouch;
8526 copy->number = internal_breakpoint_number--;
8527
44702360 8528 update_global_location_list_nothrow (UGLL_DONT_INSERT);
e58b0e63
PA
8529 return copy;
8530}
8531
06edf0c0
PA
8532/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8533 ORIG is NULL. */
8534
8535struct breakpoint *
8536clone_momentary_breakpoint (struct breakpoint *orig)
8537{
8538 /* If there's nothing to clone, then return nothing. */
8539 if (orig == NULL)
8540 return NULL;
8541
a1aa2221 8542 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
06edf0c0
PA
8543}
8544
454dafbd 8545breakpoint_up
a6d9a66e
UW
8546set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8547 enum bptype type)
611c83ae
PA
8548{
8549 struct symtab_and_line sal;
8550
8551 sal = find_pc_line (pc, 0);
8552 sal.pc = pc;
8553 sal.section = find_pc_overlay (pc);
8554 sal.explicit_pc = 1;
8555
a6d9a66e 8556 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 8557}
c906108c 8558\f
c5aa993b 8559
c906108c
SS
8560/* Tell the user we have just set a breakpoint B. */
8561
8562static void
fba45db2 8563mention (struct breakpoint *b)
c906108c 8564{
348d480f 8565 b->ops->print_mention (b);
2d33446d 8566 current_uiout->text ("\n");
c906108c 8567}
c906108c 8568\f
c5aa993b 8569
1a853c52
PA
8570static int bp_loc_is_permanent (struct bp_location *loc);
8571
0d381245 8572static struct bp_location *
39d61571 8573add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
8574 const struct symtab_and_line *sal)
8575{
8576 struct bp_location *loc, **tmp;
3742cc8b
YQ
8577 CORE_ADDR adjusted_address;
8578 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8579
8580 if (loc_gdbarch == NULL)
8581 loc_gdbarch = b->gdbarch;
8582
8583 /* Adjust the breakpoint's address prior to allocating a location.
8584 Once we call allocate_bp_location(), that mostly uninitialized
8585 location will be placed on the location chain. Adjustment of the
8586 breakpoint may cause target_read_memory() to be called and we do
8587 not want its scan of the location chain to find a breakpoint and
8588 location that's only been partially initialized. */
8589 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8590 sal->pc, b->type);
0d381245 8591
d30113d4 8592 /* Sort the locations by their ADDRESS. */
39d61571 8593 loc = allocate_bp_location (b);
d30113d4
JK
8594 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8595 tmp = &((*tmp)->next))
0d381245 8596 ;
d30113d4 8597 loc->next = *tmp;
0d381245 8598 *tmp = loc;
3742cc8b 8599
0d381245 8600 loc->requested_address = sal->pc;
3742cc8b 8601 loc->address = adjusted_address;
6c95b8df 8602 loc->pspace = sal->pspace;
935676c9 8603 loc->probe.prob = sal->prob;
729662a5 8604 loc->probe.objfile = sal->objfile;
6c95b8df 8605 gdb_assert (loc->pspace != NULL);
0d381245 8606 loc->section = sal->section;
3742cc8b 8607 loc->gdbarch = loc_gdbarch;
f8eba3c6 8608 loc->line_number = sal->line;
2f202fde 8609 loc->symtab = sal->symtab;
4a27f119 8610 loc->symbol = sal->symbol;
3467ec66
PA
8611 loc->msymbol = sal->msymbol;
8612 loc->objfile = sal->objfile;
f8eba3c6 8613
0e30163f
JK
8614 set_breakpoint_location_function (loc,
8615 sal->explicit_pc || sal->explicit_line);
1a853c52 8616
6ae88661
LM
8617 /* While by definition, permanent breakpoints are already present in the
8618 code, we don't mark the location as inserted. Normally one would expect
8619 that GDB could rely on that breakpoint instruction to stop the program,
8620 thus removing the need to insert its own breakpoint, except that executing
8621 the breakpoint instruction can kill the target instead of reporting a
8622 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
8623 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
8624 with "Trap 0x02 while interrupts disabled, Error state". Letting the
8625 breakpoint be inserted normally results in QEMU knowing about the GDB
8626 breakpoint, and thus trap before the breakpoint instruction is executed.
8627 (If GDB later needs to continue execution past the permanent breakpoint,
8628 it manually increments the PC, thus avoiding executing the breakpoint
8629 instruction.) */
1a853c52 8630 if (bp_loc_is_permanent (loc))
6ae88661 8631 loc->permanent = 1;
1a853c52 8632
0d381245
VP
8633 return loc;
8634}
514f746b
AR
8635\f
8636
1cf4d951 8637/* See breakpoint.h. */
514f746b 8638
1cf4d951
PA
8639int
8640program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
514f746b
AR
8641{
8642 int len;
8643 CORE_ADDR addr;
1afeeb75 8644 const gdb_byte *bpoint;
514f746b
AR
8645 gdb_byte *target_mem;
8646
1cf4d951
PA
8647 addr = address;
8648 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
8649
8650 /* Software breakpoints unsupported? */
8651 if (bpoint == NULL)
8652 return 0;
8653
224c3ddb 8654 target_mem = (gdb_byte *) alloca (len);
1cf4d951
PA
8655
8656 /* Enable the automatic memory restoration from breakpoints while
8657 we read the memory. Otherwise we could say about our temporary
8658 breakpoints they are permanent. */
cb85b21b
TT
8659 scoped_restore restore_memory
8660 = make_scoped_restore_show_memory_breakpoints (0);
1cf4d951
PA
8661
8662 if (target_read_memory (address, target_mem, len) == 0
8663 && memcmp (target_mem, bpoint, len) == 0)
cb85b21b 8664 return 1;
1cf4d951 8665
cb85b21b 8666 return 0;
1cf4d951
PA
8667}
8668
8669/* Return 1 if LOC is pointing to a permanent breakpoint,
8670 return 0 otherwise. */
8671
8672static int
8673bp_loc_is_permanent (struct bp_location *loc)
8674{
514f746b
AR
8675 gdb_assert (loc != NULL);
8676
244558af
LM
8677 /* If we have a catchpoint or a watchpoint, just return 0. We should not
8678 attempt to read from the addresses the locations of these breakpoint types
8679 point to. program_breakpoint_here_p, below, will attempt to read
8680 memory. */
8681 if (!breakpoint_address_is_meaningful (loc->owner))
8682 return 0;
8683
5ed8105e 8684 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 8685 switch_to_program_space_and_thread (loc->pspace);
5ed8105e 8686 return program_breakpoint_here_p (loc->gdbarch, loc->address);
514f746b
AR
8687}
8688
e7e0cddf
SS
8689/* Build a command list for the dprintf corresponding to the current
8690 settings of the dprintf style options. */
8691
8692static void
8693update_dprintf_command_list (struct breakpoint *b)
8694{
8695 char *dprintf_args = b->extra_string;
8696 char *printf_line = NULL;
8697
8698 if (!dprintf_args)
8699 return;
8700
8701 dprintf_args = skip_spaces (dprintf_args);
8702
8703 /* Allow a comma, as it may have terminated a location, but don't
8704 insist on it. */
8705 if (*dprintf_args == ',')
8706 ++dprintf_args;
8707 dprintf_args = skip_spaces (dprintf_args);
8708
8709 if (*dprintf_args != '"')
8710 error (_("Bad format string, missing '\"'."));
8711
d3ce09f5 8712 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 8713 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 8714 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
8715 {
8716 if (!dprintf_function)
8717 error (_("No function supplied for dprintf call"));
8718
8719 if (dprintf_channel && strlen (dprintf_channel) > 0)
8720 printf_line = xstrprintf ("call (void) %s (%s,%s)",
8721 dprintf_function,
8722 dprintf_channel,
8723 dprintf_args);
8724 else
8725 printf_line = xstrprintf ("call (void) %s (%s)",
8726 dprintf_function,
8727 dprintf_args);
8728 }
d3ce09f5
SS
8729 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
8730 {
8731 if (target_can_run_breakpoint_commands ())
8732 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
8733 else
8734 {
8735 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
8736 printf_line = xstrprintf ("printf %s", dprintf_args);
8737 }
8738 }
e7e0cddf
SS
8739 else
8740 internal_error (__FILE__, __LINE__,
8741 _("Invalid dprintf style."));
8742
f28045c2 8743 gdb_assert (printf_line != NULL);
e7e0cddf 8744
12973681
TT
8745 /* Manufacture a printf sequence. */
8746 struct command_line *printf_cmd_line
8747 = new struct command_line (simple_control, printf_line);
8748 breakpoint_set_commands (b, counted_command_line (printf_cmd_line,
8749 command_lines_deleter ()));
e7e0cddf
SS
8750}
8751
8752/* Update all dprintf commands, making their command lists reflect
8753 current style settings. */
8754
8755static void
eb4c3f4a 8756update_dprintf_commands (const char *args, int from_tty,
e7e0cddf
SS
8757 struct cmd_list_element *c)
8758{
8759 struct breakpoint *b;
8760
8761 ALL_BREAKPOINTS (b)
8762 {
8763 if (b->type == bp_dprintf)
8764 update_dprintf_command_list (b);
8765 }
8766}
c3f6f71d 8767
f00aae0f
KS
8768/* Create a breakpoint with SAL as location. Use LOCATION
8769 as a description of the location, and COND_STRING
b35a8b2f
DE
8770 as condition expression. If LOCATION is NULL then create an
8771 "address location" from the address in the SAL. */
018d34a4
VP
8772
8773static void
d9b3f62e 8774init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
6c5b2ebe 8775 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8776 event_location_up &&location,
e1e01040
PA
8777 gdb::unique_xmalloc_ptr<char> filter,
8778 gdb::unique_xmalloc_ptr<char> cond_string,
8779 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
8780 enum bptype type, enum bpdisp disposition,
8781 int thread, int task, int ignore_count,
c0a91b2b 8782 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
8783 int enabled, int internal, unsigned flags,
8784 int display_canonical)
018d34a4 8785{
0d381245 8786 int i;
018d34a4
VP
8787
8788 if (type == bp_hardware_breakpoint)
8789 {
fbbd034e
AS
8790 int target_resources_ok;
8791
8792 i = hw_breakpoint_used_count ();
8793 target_resources_ok =
8794 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
8795 i + 1, 0);
8796 if (target_resources_ok == 0)
8797 error (_("No hardware breakpoint support in the target."));
8798 else if (target_resources_ok < 0)
8799 error (_("Hardware breakpoints used exceeds limit."));
8800 }
8801
6c5b2ebe 8802 gdb_assert (!sals.empty ());
6c95b8df 8803
6c5b2ebe 8804 for (const auto &sal : sals)
0d381245 8805 {
0d381245
VP
8806 struct bp_location *loc;
8807
8808 if (from_tty)
5af949e3
UW
8809 {
8810 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8811 if (!loc_gdbarch)
8812 loc_gdbarch = gdbarch;
8813
8814 describe_other_breakpoints (loc_gdbarch,
6c95b8df 8815 sal.pspace, sal.pc, sal.section, thread);
5af949e3 8816 }
0d381245 8817
6c5b2ebe 8818 if (&sal == &sals[0])
0d381245 8819 {
d9b3f62e 8820 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 8821 b->thread = thread;
4a306c9a 8822 b->task = task;
855a6e68 8823
e1e01040
PA
8824 b->cond_string = cond_string.release ();
8825 b->extra_string = extra_string.release ();
0d381245 8826 b->ignore_count = ignore_count;
41447f92 8827 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 8828 b->disposition = disposition;
6c95b8df 8829
44f238bb
PA
8830 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8831 b->loc->inserted = 1;
8832
0fb4aa4b
PA
8833 if (type == bp_static_tracepoint)
8834 {
d9b3f62e 8835 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
8836 struct static_tracepoint_marker marker;
8837
983af33b 8838 if (strace_marker_p (b))
0fb4aa4b
PA
8839 {
8840 /* We already know the marker exists, otherwise, we
8841 wouldn't see a sal for it. */
d28cd78a
TT
8842 const char *p
8843 = &event_location_to_string (b->location.get ())[3];
f00aae0f 8844 const char *endp;
0fb4aa4b 8845
f1735a53 8846 p = skip_spaces (p);
0fb4aa4b 8847
f1735a53 8848 endp = skip_to_space (p);
0fb4aa4b 8849
5d9310c4 8850 t->static_trace_marker_id.assign (p, endp - p);
0fb4aa4b 8851
3e43a32a
MS
8852 printf_filtered (_("Probed static tracepoint "
8853 "marker \"%s\"\n"),
5d9310c4 8854 t->static_trace_marker_id.c_str ());
0fb4aa4b
PA
8855 }
8856 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
8857 {
5d9310c4 8858 t->static_trace_marker_id = std::move (marker.str_id);
0fb4aa4b 8859
3e43a32a
MS
8860 printf_filtered (_("Probed static tracepoint "
8861 "marker \"%s\"\n"),
5d9310c4 8862 t->static_trace_marker_id.c_str ());
0fb4aa4b
PA
8863 }
8864 else
3e43a32a
MS
8865 warning (_("Couldn't determine the static "
8866 "tracepoint marker to probe"));
0fb4aa4b
PA
8867 }
8868
0d381245
VP
8869 loc = b->loc;
8870 }
8871 else
018d34a4 8872 {
39d61571 8873 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
8874 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8875 loc->inserted = 1;
0d381245
VP
8876 }
8877
8878 if (b->cond_string)
8879 {
bbc13ae3
KS
8880 const char *arg = b->cond_string;
8881
1bb9788d
TT
8882 loc->cond = parse_exp_1 (&arg, loc->address,
8883 block_for_pc (loc->address), 0);
0d381245 8884 if (*arg)
588ae58c 8885 error (_("Garbage '%s' follows condition"), arg);
018d34a4 8886 }
e7e0cddf
SS
8887
8888 /* Dynamic printf requires and uses additional arguments on the
8889 command line, otherwise it's an error. */
8890 if (type == bp_dprintf)
8891 {
8892 if (b->extra_string)
8893 update_dprintf_command_list (b);
8894 else
8895 error (_("Format string required"));
8896 }
8897 else if (b->extra_string)
588ae58c 8898 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 8899 }
018d34a4 8900
56435ebe 8901 b->display_canonical = display_canonical;
f00aae0f 8902 if (location != NULL)
d28cd78a 8903 b->location = std::move (location);
018d34a4 8904 else
d28cd78a 8905 b->location = new_address_location (b->loc->address, NULL, 0);
e1e01040 8906 b->filter = filter.release ();
d9b3f62e 8907}
018d34a4 8908
d9b3f62e
PA
8909static void
8910create_breakpoint_sal (struct gdbarch *gdbarch,
6c5b2ebe 8911 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8912 event_location_up &&location,
e1e01040
PA
8913 gdb::unique_xmalloc_ptr<char> filter,
8914 gdb::unique_xmalloc_ptr<char> cond_string,
8915 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
8916 enum bptype type, enum bpdisp disposition,
8917 int thread, int task, int ignore_count,
c0a91b2b 8918 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
8919 int enabled, int internal, unsigned flags,
8920 int display_canonical)
d9b3f62e 8921{
a5e364af 8922 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (type);
d9b3f62e 8923
a5e364af 8924 init_breakpoint_sal (b.get (), gdbarch,
ffc2605c 8925 sals, std::move (location),
e1e01040
PA
8926 std::move (filter),
8927 std::move (cond_string),
8928 std::move (extra_string),
d9b3f62e
PA
8929 type, disposition,
8930 thread, task, ignore_count,
8931 ops, from_tty,
44f238bb
PA
8932 enabled, internal, flags,
8933 display_canonical);
d9b3f62e 8934
b270e6f9 8935 install_breakpoint (internal, std::move (b), 0);
018d34a4
VP
8936}
8937
8938/* Add SALS.nelts breakpoints to the breakpoint table. For each
8939 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
8940 value. COND_STRING, if not NULL, specified the condition to be
8941 used for all breakpoints. Essentially the only case where
8942 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
8943 function. In that case, it's still not possible to specify
8944 separate conditions for different overloaded functions, so
8945 we take just a single condition string.
8946
c3f6f71d 8947 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 8948 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
8949 array contents). If the function fails (error() is called), the
8950 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 8951 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
8952
8953static void
8cdf0e15 8954create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 8955 struct linespec_result *canonical,
e1e01040
PA
8956 gdb::unique_xmalloc_ptr<char> cond_string,
8957 gdb::unique_xmalloc_ptr<char> extra_string,
8cdf0e15
VP
8958 enum bptype type, enum bpdisp disposition,
8959 int thread, int task, int ignore_count,
c0a91b2b 8960 const struct breakpoint_ops *ops, int from_tty,
44f238bb 8961 int enabled, int internal, unsigned flags)
c906108c 8962{
f8eba3c6 8963 if (canonical->pre_expanded)
6c5b2ebe 8964 gdb_assert (canonical->lsals.size () == 1);
f8eba3c6 8965
6c5b2ebe 8966 for (const auto &lsal : canonical->lsals)
c3f6f71d 8967 {
f00aae0f 8968 /* Note that 'location' can be NULL in the case of a plain
f8eba3c6 8969 'break', without arguments. */
ffc2605c 8970 event_location_up location
f00aae0f 8971 = (canonical->location != NULL
8e9e35b1 8972 ? copy_event_location (canonical->location.get ()) : NULL);
e1e01040 8973 gdb::unique_xmalloc_ptr<char> filter_string
6c5b2ebe 8974 (lsal.canonical != NULL ? xstrdup (lsal.canonical) : NULL);
0d381245 8975
6c5b2ebe 8976 create_breakpoint_sal (gdbarch, lsal.sals,
ffc2605c 8977 std::move (location),
e1e01040
PA
8978 std::move (filter_string),
8979 std::move (cond_string),
8980 std::move (extra_string),
e7e0cddf 8981 type, disposition,
84f4c1fe 8982 thread, task, ignore_count, ops,
44f238bb 8983 from_tty, enabled, internal, flags,
56435ebe 8984 canonical->special_display);
c3f6f71d 8985 }
c3f6f71d 8986}
c906108c 8987
f00aae0f 8988/* Parse LOCATION which is assumed to be a SAL specification possibly
c3f6f71d 8989 followed by conditionals. On return, SALS contains an array of SAL
f00aae0f
KS
8990 addresses found. LOCATION points to the end of the SAL (for
8991 linespec locations).
9998af43
TJB
8992
8993 The array and the line spec strings are allocated on the heap, it is
8994 the caller's responsibility to free them. */
c906108c 8995
b9362cc7 8996static void
f00aae0f 8997parse_breakpoint_sals (const struct event_location *location,
58438ac1 8998 struct linespec_result *canonical)
c3f6f71d 8999{
f00aae0f
KS
9000 struct symtab_and_line cursal;
9001
9002 if (event_location_type (location) == LINESPEC_LOCATION)
9003 {
a20714ff 9004 const char *spec = get_linespec_location (location)->spec_string;
f00aae0f 9005
a20714ff 9006 if (spec == NULL)
f00aae0f
KS
9007 {
9008 /* The last displayed codepoint, if it's valid, is our default
9009 breakpoint address. */
9010 if (last_displayed_sal_is_valid ())
9011 {
f00aae0f
KS
9012 /* Set sal's pspace, pc, symtab, and line to the values
9013 corresponding to the last call to print_frame_info.
9014 Be sure to reinitialize LINE with NOTCURRENT == 0
9015 as the breakpoint line number is inappropriate otherwise.
9016 find_pc_line would adjust PC, re-set it back. */
51abb421
PA
9017 symtab_and_line sal = get_last_displayed_sal ();
9018 CORE_ADDR pc = sal.pc;
9019
f00aae0f
KS
9020 sal = find_pc_line (pc, 0);
9021
9022 /* "break" without arguments is equivalent to "break *PC"
9023 where PC is the last displayed codepoint's address. So
9024 make sure to set sal.explicit_pc to prevent GDB from
9025 trying to expand the list of sals to include all other
9026 instances with the same symtab and line. */
9027 sal.pc = pc;
9028 sal.explicit_pc = 1;
9029
6c5b2ebe
PA
9030 struct linespec_sals lsal;
9031 lsal.sals = {sal};
f00aae0f
KS
9032 lsal.canonical = NULL;
9033
6c5b2ebe 9034 canonical->lsals.push_back (std::move (lsal));
f00aae0f
KS
9035 return;
9036 }
9037 else
9038 error (_("No default breakpoint address now."));
c906108c 9039 }
c906108c 9040 }
f00aae0f
KS
9041
9042 /* Force almost all breakpoints to be in terms of the
9043 current_source_symtab (which is decode_line_1's default).
9044 This should produce the results we want almost all of the
9045 time while leaving default_breakpoint_* alone.
9046
9047 ObjC: However, don't match an Objective-C method name which
9048 may have a '+' or '-' succeeded by a '['. */
9049 cursal = get_current_source_symtab_and_line ();
9050 if (last_displayed_sal_is_valid ())
c906108c 9051 {
a20714ff 9052 const char *spec = NULL;
cc80f267 9053
f00aae0f 9054 if (event_location_type (location) == LINESPEC_LOCATION)
a20714ff 9055 spec = get_linespec_location (location)->spec_string;
cc80f267 9056
f00aae0f 9057 if (!cursal.symtab
a20714ff
PA
9058 || (spec != NULL
9059 && strchr ("+-", spec[0]) != NULL
9060 && spec[1] != '['))
f00aae0f 9061 {
c2f4122d 9062 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f
KS
9063 get_last_displayed_symtab (),
9064 get_last_displayed_line (),
9065 canonical, NULL, NULL);
9066 return;
9067 }
c906108c 9068 }
f00aae0f 9069
c2f4122d 9070 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f 9071 cursal.symtab, cursal.line, canonical, NULL, NULL);
c3f6f71d 9072}
c906108c 9073
c906108c 9074
c3f6f71d 9075/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 9076 inserted as a breakpoint. If it can't throw an error. */
c906108c 9077
b9362cc7 9078static void
6c5b2ebe 9079breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
c3f6f71d 9080{
6c5b2ebe
PA
9081 for (auto &sal : sals)
9082 resolve_sal_pc (&sal);
c3f6f71d
JM
9083}
9084
7a697b8d
SS
9085/* Fast tracepoints may have restrictions on valid locations. For
9086 instance, a fast tracepoint using a jump instead of a trap will
9087 likely have to overwrite more bytes than a trap would, and so can
9088 only be placed where the instruction is longer than the jump, or a
9089 multi-instruction sequence does not have a jump into the middle of
9090 it, etc. */
9091
9092static void
9093check_fast_tracepoint_sals (struct gdbarch *gdbarch,
6c5b2ebe 9094 gdb::array_view<const symtab_and_line> sals)
7a697b8d 9095{
6c5b2ebe 9096 for (const auto &sal : sals)
7a697b8d 9097 {
f8eba3c6
TT
9098 struct gdbarch *sarch;
9099
6c5b2ebe 9100 sarch = get_sal_arch (sal);
f8eba3c6
TT
9101 /* We fall back to GDBARCH if there is no architecture
9102 associated with SAL. */
9103 if (sarch == NULL)
9104 sarch = gdbarch;
281d762b
TT
9105 std::string msg;
9106 if (!gdbarch_fast_tracepoint_valid_at (sarch, sal.pc, &msg))
53c3572a 9107 error (_("May not have a fast tracepoint at %s%s"),
281d762b 9108 paddress (sarch, sal.pc), msg.c_str ());
7a697b8d
SS
9109 }
9110}
9111
018d34a4
VP
9112/* Given TOK, a string specification of condition and thread, as
9113 accepted by the 'break' command, extract the condition
9114 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9115 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9116 If no condition is found, *COND_STRING is set to NULL.
9117 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9118
9119static void
bbc13ae3 9120find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9121 char **cond_string, int *thread, int *task,
9122 char **rest)
018d34a4
VP
9123{
9124 *cond_string = NULL;
9125 *thread = -1;
ed1d1739
KS
9126 *task = 0;
9127 *rest = NULL;
9128
018d34a4
VP
9129 while (tok && *tok)
9130 {
bbc13ae3 9131 const char *end_tok;
018d34a4 9132 int toklen;
bbc13ae3
KS
9133 const char *cond_start = NULL;
9134 const char *cond_end = NULL;
cc59ec59 9135
f1735a53 9136 tok = skip_spaces (tok);
e7e0cddf
SS
9137
9138 if ((*tok == '"' || *tok == ',') && rest)
9139 {
9140 *rest = savestring (tok, strlen (tok));
9141 return;
9142 }
9143
f1735a53 9144 end_tok = skip_to_space (tok);
d634f2de 9145
018d34a4 9146 toklen = end_tok - tok;
d634f2de 9147
018d34a4
VP
9148 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9149 {
9150 tok = cond_start = end_tok + 1;
4d01a485 9151 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
018d34a4 9152 cond_end = tok;
d634f2de 9153 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9154 }
9155 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9156 {
5d5658a1
PA
9157 const char *tmptok;
9158 struct thread_info *thr;
d634f2de 9159
018d34a4 9160 tok = end_tok + 1;
5d5658a1 9161 thr = parse_thread_id (tok, &tmptok);
018d34a4
VP
9162 if (tok == tmptok)
9163 error (_("Junk after thread keyword."));
5d5658a1 9164 *thread = thr->global_num;
bbc13ae3 9165 tok = tmptok;
018d34a4 9166 }
4a306c9a
JB
9167 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9168 {
9169 char *tmptok;
9170
9171 tok = end_tok + 1;
bbc13ae3 9172 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9173 if (tok == tmptok)
9174 error (_("Junk after task keyword."));
9175 if (!valid_task_id (*task))
b6199126 9176 error (_("Unknown task %d."), *task);
bbc13ae3 9177 tok = tmptok;
4a306c9a 9178 }
e7e0cddf
SS
9179 else if (rest)
9180 {
9181 *rest = savestring (tok, strlen (tok));
ccab2054 9182 return;
e7e0cddf 9183 }
018d34a4
VP
9184 else
9185 error (_("Junk at end of arguments."));
9186 }
9187}
9188
0fb4aa4b
PA
9189/* Decode a static tracepoint marker spec. */
9190
6c5b2ebe 9191static std::vector<symtab_and_line>
f00aae0f 9192decode_static_tracepoint_spec (const char **arg_p)
0fb4aa4b 9193{
f00aae0f
KS
9194 const char *p = &(*arg_p)[3];
9195 const char *endp;
0fb4aa4b 9196
f1735a53 9197 p = skip_spaces (p);
0fb4aa4b 9198
f1735a53 9199 endp = skip_to_space (p);
0fb4aa4b 9200
81b1e71c 9201 std::string marker_str (p, endp - p);
0fb4aa4b 9202
5d9310c4
SM
9203 std::vector<static_tracepoint_marker> markers
9204 = target_static_tracepoint_markers_by_strid (marker_str.c_str ());
9205 if (markers.empty ())
81b1e71c
TT
9206 error (_("No known static tracepoint marker named %s"),
9207 marker_str.c_str ());
0fb4aa4b 9208
6c5b2ebe 9209 std::vector<symtab_and_line> sals;
5d9310c4 9210 sals.reserve (markers.size ());
0fb4aa4b 9211
5d9310c4 9212 for (const static_tracepoint_marker &marker : markers)
0fb4aa4b 9213 {
5d9310c4
SM
9214 symtab_and_line sal = find_pc_line (marker.address, 0);
9215 sal.pc = marker.address;
6c5b2ebe 9216 sals.push_back (sal);
5d9310c4 9217 }
0fb4aa4b 9218
0fb4aa4b
PA
9219 *arg_p = endp;
9220 return sals;
9221}
9222
f00aae0f 9223/* See breakpoint.h. */
0101ce28 9224
8cdf0e15
VP
9225int
9226create_breakpoint (struct gdbarch *gdbarch,
e1e01040
PA
9227 const struct event_location *location,
9228 const char *cond_string,
9229 int thread, const char *extra_string,
f00aae0f 9230 int parse_extra,
0fb4aa4b 9231 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9232 int ignore_count,
9233 enum auto_boolean pending_break_support,
c0a91b2b 9234 const struct breakpoint_ops *ops,
44f238bb
PA
9235 int from_tty, int enabled, int internal,
9236 unsigned flags)
c3f6f71d 9237{
7efd8fc2 9238 struct linespec_result canonical;
80c99de1 9239 struct cleanup *bkpt_chain = NULL;
0101ce28 9240 int pending = 0;
4a306c9a 9241 int task = 0;
86b17b60 9242 int prev_bkpt_count = breakpoint_count;
c3f6f71d 9243
348d480f
PA
9244 gdb_assert (ops != NULL);
9245
f00aae0f
KS
9246 /* If extra_string isn't useful, set it to NULL. */
9247 if (extra_string != NULL && *extra_string == '\0')
9248 extra_string = NULL;
9249
492d29ea 9250 TRY
b78a6381 9251 {
f00aae0f 9252 ops->create_sals_from_location (location, &canonical, type_wanted);
b78a6381 9253 }
492d29ea 9254 CATCH (e, RETURN_MASK_ERROR)
0101ce28 9255 {
492d29ea
PA
9256 /* If caller is interested in rc value from parse, set
9257 value. */
9258 if (e.error == NOT_FOUND_ERROR)
0101ce28 9259 {
05ff989b
AC
9260 /* If pending breakpoint support is turned off, throw
9261 error. */
fa8d40ab
JJ
9262
9263 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
9264 throw_exception (e);
9265
9266 exception_print (gdb_stderr, e);
fa8d40ab 9267
05ff989b
AC
9268 /* If pending breakpoint support is auto query and the user
9269 selects no, then simply return the error code. */
059fb39f 9270 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
9271 && !nquery (_("Make %s pending on future shared library load? "),
9272 bptype_string (type_wanted)))
fd9b8c24 9273 return 0;
fa8d40ab 9274
05ff989b
AC
9275 /* At this point, either the user was queried about setting
9276 a pending breakpoint and selected yes, or pending
9277 breakpoint behavior is on and thus a pending breakpoint
9278 is defaulted on behalf of the user. */
f00aae0f 9279 pending = 1;
0101ce28 9280 }
492d29ea
PA
9281 else
9282 throw_exception (e);
0101ce28 9283 }
492d29ea
PA
9284 END_CATCH
9285
6c5b2ebe 9286 if (!pending && canonical.lsals.empty ())
492d29ea 9287 return 0;
c3f6f71d 9288
c3f6f71d
JM
9289 /* ----------------------------- SNIP -----------------------------
9290 Anything added to the cleanup chain beyond this point is assumed
9291 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
9292 then the memory is not reclaimed. */
9293 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 9294
c3f6f71d
JM
9295 /* Resolve all line numbers to PC's and verify that the addresses
9296 are ok for the target. */
0101ce28 9297 if (!pending)
f8eba3c6 9298 {
6c5b2ebe
PA
9299 for (auto &lsal : canonical.lsals)
9300 breakpoint_sals_to_pc (lsal.sals);
f8eba3c6 9301 }
c3f6f71d 9302
7a697b8d 9303 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 9304 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6 9305 {
6c5b2ebe
PA
9306 for (const auto &lsal : canonical.lsals)
9307 check_fast_tracepoint_sals (gdbarch, lsal.sals);
f8eba3c6 9308 }
7a697b8d 9309
c3f6f71d
JM
9310 /* Verify that condition can be parsed, before setting any
9311 breakpoints. Allocate a separate condition expression for each
4a64f543 9312 breakpoint. */
0101ce28 9313 if (!pending)
c3f6f71d 9314 {
e1e01040
PA
9315 gdb::unique_xmalloc_ptr<char> cond_string_copy;
9316 gdb::unique_xmalloc_ptr<char> extra_string_copy;
9317
f00aae0f 9318 if (parse_extra)
72b2ff0e 9319 {
0878d0fa 9320 char *rest;
e1e01040 9321 char *cond;
52d361e1 9322
6c5b2ebe 9323 const linespec_sals &lsal = canonical.lsals[0];
52d361e1 9324
0878d0fa
YQ
9325 /* Here we only parse 'arg' to separate condition
9326 from thread number, so parsing in context of first
9327 sal is OK. When setting the breakpoint we'll
9328 re-parse it in context of each sal. */
9329
6c5b2ebe 9330 find_condition_and_thread (extra_string, lsal.sals[0].pc,
e1e01040
PA
9331 &cond, &thread, &task, &rest);
9332 cond_string_copy.reset (cond);
9333 extra_string_copy.reset (rest);
72b2ff0e 9334 }
2f069f6f 9335 else
72b2ff0e 9336 {
f00aae0f
KS
9337 if (type_wanted != bp_dprintf
9338 && extra_string != NULL && *extra_string != '\0')
9339 error (_("Garbage '%s' at end of location"), extra_string);
0878d0fa
YQ
9340
9341 /* Create a private copy of condition string. */
9342 if (cond_string)
e1e01040 9343 cond_string_copy.reset (xstrdup (cond_string));
0878d0fa
YQ
9344 /* Create a private copy of any extra string. */
9345 if (extra_string)
e1e01040 9346 extra_string_copy.reset (xstrdup (extra_string));
72b2ff0e 9347 }
0fb4aa4b 9348
52d361e1 9349 ops->create_breakpoints_sal (gdbarch, &canonical,
e1e01040
PA
9350 std::move (cond_string_copy),
9351 std::move (extra_string_copy),
9352 type_wanted,
d9b3f62e
PA
9353 tempflag ? disp_del : disp_donttouch,
9354 thread, task, ignore_count, ops,
44f238bb 9355 from_tty, enabled, internal, flags);
c906108c 9356 }
0101ce28
JJ
9357 else
9358 {
a5e364af 9359 std::unique_ptr <breakpoint> b = new_breakpoint_from_type (type_wanted);
bfccc43c 9360
a5e364af 9361 init_raw_breakpoint_without_location (b.get (), gdbarch, type_wanted, ops);
d28cd78a 9362 b->location = copy_event_location (location);
bfccc43c 9363
f00aae0f
KS
9364 if (parse_extra)
9365 b->cond_string = NULL;
e12c7713
MK
9366 else
9367 {
9368 /* Create a private copy of condition string. */
e1e01040 9369 b->cond_string = cond_string != NULL ? xstrdup (cond_string) : NULL;
15630549 9370 b->thread = thread;
e12c7713 9371 }
f00aae0f
KS
9372
9373 /* Create a private copy of any extra string. */
e1e01040 9374 b->extra_string = extra_string != NULL ? xstrdup (extra_string) : NULL;
0101ce28 9375 b->ignore_count = ignore_count;
0101ce28 9376 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 9377 b->condition_not_parsed = 1;
41447f92 9378 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
9379 if ((type_wanted != bp_breakpoint
9380 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 9381 b->pspace = current_program_space;
8bea4e01 9382
b270e6f9 9383 install_breakpoint (internal, std::move (b), 0);
0101ce28
JJ
9384 }
9385
6c5b2ebe 9386 if (canonical.lsals.size () > 1)
95a42b64 9387 {
3e43a32a
MS
9388 warning (_("Multiple breakpoints were set.\nUse the "
9389 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 9390 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
9391 }
9392
80c99de1
PA
9393 /* That's it. Discard the cleanups for data inserted into the
9394 breakpoint. */
9395 discard_cleanups (bkpt_chain);
217dc9e2 9396
80c99de1 9397 /* error call may happen here - have BKPT_CHAIN already discarded. */
44702360 9398 update_global_location_list (UGLL_MAY_INSERT);
fd9b8c24
PA
9399
9400 return 1;
c3f6f71d 9401}
c906108c 9402
348d480f 9403/* Set a breakpoint.
72b2ff0e
VP
9404 ARG is a string describing breakpoint address,
9405 condition, and thread.
9406 FLAG specifies if a breakpoint is hardware on,
9407 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9408 and BP_TEMPFLAG. */
348d480f 9409
98deb0da 9410static void
f2fc3015 9411break_command_1 (const char *arg, int flag, int from_tty)
c3f6f71d 9412{
72b2ff0e 9413 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
9414 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9415 ? bp_hardware_breakpoint
9416 : bp_breakpoint);
55aa24fb 9417 struct breakpoint_ops *ops;
f00aae0f 9418
ffc2605c 9419 event_location_up location = string_to_event_location (&arg, current_language);
55aa24fb
SDJ
9420
9421 /* Matching breakpoints on probes. */
5b56227b 9422 if (location != NULL
ffc2605c 9423 && event_location_type (location.get ()) == PROBE_LOCATION)
55aa24fb
SDJ
9424 ops = &bkpt_probe_breakpoint_ops;
9425 else
9426 ops = &bkpt_breakpoint_ops;
c3f6f71d 9427
8cdf0e15 9428 create_breakpoint (get_current_arch (),
ffc2605c 9429 location.get (),
f00aae0f 9430 NULL, 0, arg, 1 /* parse arg */,
0fb4aa4b 9431 tempflag, type_wanted,
8cdf0e15
VP
9432 0 /* Ignore count */,
9433 pending_break_support,
55aa24fb 9434 ops,
8cdf0e15 9435 from_tty,
84f4c1fe 9436 1 /* enabled */,
44f238bb
PA
9437 0 /* internal */,
9438 0);
c906108c
SS
9439}
9440
c906108c
SS
9441/* Helper function for break_command_1 and disassemble_command. */
9442
9443void
fba45db2 9444resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
9445{
9446 CORE_ADDR pc;
9447
9448 if (sal->pc == 0 && sal->symtab != NULL)
9449 {
9450 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 9451 error (_("No line %d in file \"%s\"."),
05cba821 9452 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 9453 sal->pc = pc;
6a048695 9454
4a64f543
MS
9455 /* If this SAL corresponds to a breakpoint inserted using a line
9456 number, then skip the function prologue if necessary. */
6a048695 9457 if (sal->explicit_line)
059acae7 9458 skip_prologue_sal (sal);
c906108c
SS
9459 }
9460
9461 if (sal->section == 0 && sal->symtab != NULL)
9462 {
346d1dfe 9463 const struct blockvector *bv;
3977b71f 9464 const struct block *b;
c5aa993b 9465 struct symbol *sym;
c906108c 9466
43f3e411
DE
9467 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
9468 SYMTAB_COMPUNIT (sal->symtab));
c906108c
SS
9469 if (bv != NULL)
9470 {
7f0df278 9471 sym = block_linkage_function (b);
c906108c
SS
9472 if (sym != NULL)
9473 {
eb822aa6
DE
9474 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
9475 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
9476 sym);
c906108c
SS
9477 }
9478 else
9479 {
4a64f543
MS
9480 /* It really is worthwhile to have the section, so we'll
9481 just have to look harder. This case can be executed
9482 if we have line numbers but no functions (as can
9483 happen in assembly source). */
c906108c 9484
5ed8105e 9485 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 9486 switch_to_program_space_and_thread (sal->pspace);
c906108c 9487
5ed8105e 9488 bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 9489 if (msym.minsym)
efd66ac6 9490 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
c906108c
SS
9491 }
9492 }
9493 }
9494}
9495
9496void
0b39b52e 9497break_command (const char *arg, int from_tty)
c906108c 9498{
db107f19 9499 break_command_1 (arg, 0, from_tty);
c906108c
SS
9500}
9501
c906108c 9502void
0b39b52e 9503tbreak_command (const char *arg, int from_tty)
c906108c 9504{
db107f19 9505 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
9506}
9507
c906108c 9508static void
0b39b52e 9509hbreak_command (const char *arg, int from_tty)
c906108c 9510{
db107f19 9511 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
9512}
9513
9514static void
0b39b52e 9515thbreak_command (const char *arg, int from_tty)
c906108c 9516{
db107f19 9517 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
9518}
9519
9520static void
ee7ddd71 9521stop_command (const char *arg, int from_tty)
c906108c 9522{
a3f17187 9523 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 9524Usage: stop in <function | address>\n\
a3f17187 9525 stop at <line>\n"));
c906108c
SS
9526}
9527
9528static void
4495129a 9529stopin_command (const char *arg, int from_tty)
c906108c
SS
9530{
9531 int badInput = 0;
9532
c5aa993b 9533 if (arg == (char *) NULL)
c906108c
SS
9534 badInput = 1;
9535 else if (*arg != '*')
9536 {
4495129a 9537 const char *argptr = arg;
c906108c
SS
9538 int hasColon = 0;
9539
4a64f543 9540 /* Look for a ':'. If this is a line number specification, then
53a5351d 9541 say it is bad, otherwise, it should be an address or
4a64f543 9542 function/method name. */
c906108c 9543 while (*argptr && !hasColon)
c5aa993b
JM
9544 {
9545 hasColon = (*argptr == ':');
9546 argptr++;
9547 }
c906108c
SS
9548
9549 if (hasColon)
c5aa993b 9550 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 9551 else
c5aa993b 9552 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
9553 }
9554
9555 if (badInput)
a3f17187 9556 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 9557 else
db107f19 9558 break_command_1 (arg, 0, from_tty);
c906108c
SS
9559}
9560
9561static void
4495129a 9562stopat_command (const char *arg, int from_tty)
c906108c
SS
9563{
9564 int badInput = 0;
9565
c5aa993b 9566 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
9567 badInput = 1;
9568 else
9569 {
4495129a 9570 const char *argptr = arg;
c906108c
SS
9571 int hasColon = 0;
9572
4a64f543
MS
9573 /* Look for a ':'. If there is a '::' then get out, otherwise
9574 it is probably a line number. */
c906108c 9575 while (*argptr && !hasColon)
c5aa993b
JM
9576 {
9577 hasColon = (*argptr == ':');
9578 argptr++;
9579 }
c906108c
SS
9580
9581 if (hasColon)
c5aa993b 9582 badInput = (*argptr == ':'); /* we have class::method */
c906108c 9583 else
c5aa993b 9584 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
9585 }
9586
9587 if (badInput)
a3f17187 9588 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 9589 else
db107f19 9590 break_command_1 (arg, 0, from_tty);
c906108c
SS
9591}
9592
e7e0cddf
SS
9593/* The dynamic printf command is mostly like a regular breakpoint, but
9594 with a prewired command list consisting of a single output command,
9595 built from extra arguments supplied on the dprintf command
9596 line. */
9597
da821c7b 9598static void
0b39b52e 9599dprintf_command (const char *arg, int from_tty)
e7e0cddf 9600{
ffc2605c 9601 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f
KS
9602
9603 /* If non-NULL, ARG should have been advanced past the location;
9604 the next character must be ','. */
9605 if (arg != NULL)
9606 {
9607 if (arg[0] != ',' || arg[1] == '\0')
9608 error (_("Format string required"));
9609 else
9610 {
9611 /* Skip the comma. */
9612 ++arg;
9613 }
9614 }
9615
e7e0cddf 9616 create_breakpoint (get_current_arch (),
ffc2605c 9617 location.get (),
f00aae0f 9618 NULL, 0, arg, 1 /* parse arg */,
e7e0cddf
SS
9619 0, bp_dprintf,
9620 0 /* Ignore count */,
9621 pending_break_support,
9622 &dprintf_breakpoint_ops,
9623 from_tty,
9624 1 /* enabled */,
9625 0 /* internal */,
9626 0);
9627}
9628
d3ce09f5 9629static void
0b39b52e 9630agent_printf_command (const char *arg, int from_tty)
d3ce09f5
SS
9631{
9632 error (_("May only run agent-printf on the target"));
9633}
9634
f1310107
TJB
9635/* Implement the "breakpoint_hit" breakpoint_ops method for
9636 ranged breakpoints. */
9637
9638static int
9639breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
bd522513 9640 const address_space *aspace,
09ac7c10
TT
9641 CORE_ADDR bp_addr,
9642 const struct target_waitstatus *ws)
f1310107 9643{
09ac7c10 9644 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 9645 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
9646 return 0;
9647
f1310107
TJB
9648 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
9649 bl->length, aspace, bp_addr);
9650}
9651
9652/* Implement the "resources_needed" breakpoint_ops method for
9653 ranged breakpoints. */
9654
9655static int
9656resources_needed_ranged_breakpoint (const struct bp_location *bl)
9657{
9658 return target_ranged_break_num_registers ();
9659}
9660
9661/* Implement the "print_it" breakpoint_ops method for
9662 ranged breakpoints. */
9663
9664static enum print_stop_action
348d480f 9665print_it_ranged_breakpoint (bpstat bs)
f1310107 9666{
348d480f 9667 struct breakpoint *b = bs->breakpoint_at;
f1310107 9668 struct bp_location *bl = b->loc;
79a45e25 9669 struct ui_out *uiout = current_uiout;
f1310107
TJB
9670
9671 gdb_assert (b->type == bp_hardware_breakpoint);
9672
9673 /* Ranged breakpoints have only one location. */
9674 gdb_assert (bl && bl->next == NULL);
9675
9676 annotate_breakpoint (b->number);
f303dbd6
PA
9677
9678 maybe_print_thread_hit_breakpoint (uiout);
9679
f1310107 9680 if (b->disposition == disp_del)
112e8700 9681 uiout->text ("Temporary ranged breakpoint ");
f1310107 9682 else
112e8700
SM
9683 uiout->text ("Ranged breakpoint ");
9684 if (uiout->is_mi_like_p ())
f1310107 9685 {
112e8700 9686 uiout->field_string ("reason",
f1310107 9687 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 9688 uiout->field_string ("disp", bpdisp_text (b->disposition));
f1310107 9689 }
112e8700
SM
9690 uiout->field_int ("bkptno", b->number);
9691 uiout->text (", ");
f1310107
TJB
9692
9693 return PRINT_SRC_AND_LOC;
9694}
9695
9696/* Implement the "print_one" breakpoint_ops method for
9697 ranged breakpoints. */
9698
9699static void
9700print_one_ranged_breakpoint (struct breakpoint *b,
9701 struct bp_location **last_loc)
9702{
9703 struct bp_location *bl = b->loc;
9704 struct value_print_options opts;
79a45e25 9705 struct ui_out *uiout = current_uiout;
f1310107
TJB
9706
9707 /* Ranged breakpoints have only one location. */
9708 gdb_assert (bl && bl->next == NULL);
9709
9710 get_user_print_options (&opts);
9711
9712 if (opts.addressprint)
9713 /* We don't print the address range here, it will be printed later
9714 by print_one_detail_ranged_breakpoint. */
112e8700 9715 uiout->field_skip ("addr");
f1310107
TJB
9716 annotate_field (5);
9717 print_breakpoint_location (b, bl);
9718 *last_loc = bl;
9719}
9720
9721/* Implement the "print_one_detail" breakpoint_ops method for
9722 ranged breakpoints. */
9723
9724static void
9725print_one_detail_ranged_breakpoint (const struct breakpoint *b,
9726 struct ui_out *uiout)
9727{
9728 CORE_ADDR address_start, address_end;
9729 struct bp_location *bl = b->loc;
d7e74731 9730 string_file stb;
f1310107
TJB
9731
9732 gdb_assert (bl);
9733
9734 address_start = bl->address;
9735 address_end = address_start + bl->length - 1;
9736
112e8700 9737 uiout->text ("\taddress range: ");
d7e74731
PA
9738 stb.printf ("[%s, %s]",
9739 print_core_address (bl->gdbarch, address_start),
9740 print_core_address (bl->gdbarch, address_end));
112e8700
SM
9741 uiout->field_stream ("addr", stb);
9742 uiout->text ("\n");
f1310107
TJB
9743}
9744
9745/* Implement the "print_mention" breakpoint_ops method for
9746 ranged breakpoints. */
9747
9748static void
9749print_mention_ranged_breakpoint (struct breakpoint *b)
9750{
9751 struct bp_location *bl = b->loc;
79a45e25 9752 struct ui_out *uiout = current_uiout;
f1310107
TJB
9753
9754 gdb_assert (bl);
9755 gdb_assert (b->type == bp_hardware_breakpoint);
9756
2d33446d
TT
9757 uiout->message (_("Hardware assisted ranged breakpoint %d from %s to %s."),
9758 b->number, paddress (bl->gdbarch, bl->address),
9759 paddress (bl->gdbarch, bl->address + bl->length - 1));
f1310107
TJB
9760}
9761
9762/* Implement the "print_recreate" breakpoint_ops method for
9763 ranged breakpoints. */
9764
9765static void
9766print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
9767{
f00aae0f 9768 fprintf_unfiltered (fp, "break-range %s, %s",
d28cd78a
TT
9769 event_location_to_string (b->location.get ()),
9770 event_location_to_string (b->location_range_end.get ()));
d9b3f62e 9771 print_recreate_thread (b, fp);
f1310107
TJB
9772}
9773
9774/* The breakpoint_ops structure to be used in ranged breakpoints. */
9775
2060206e 9776static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
9777
9778/* Find the address where the end of the breakpoint range should be
9779 placed, given the SAL of the end of the range. This is so that if
9780 the user provides a line number, the end of the range is set to the
9781 last instruction of the given line. */
9782
9783static CORE_ADDR
9784find_breakpoint_range_end (struct symtab_and_line sal)
9785{
9786 CORE_ADDR end;
9787
9788 /* If the user provided a PC value, use it. Otherwise,
9789 find the address of the end of the given location. */
9790 if (sal.explicit_pc)
9791 end = sal.pc;
9792 else
9793 {
9794 int ret;
9795 CORE_ADDR start;
9796
9797 ret = find_line_pc_range (sal, &start, &end);
9798 if (!ret)
9799 error (_("Could not find location of the end of the range."));
9800
9801 /* find_line_pc_range returns the start of the next line. */
9802 end--;
9803 }
9804
9805 return end;
9806}
9807
9808/* Implement the "break-range" CLI command. */
9809
9810static void
0b39b52e 9811break_range_command (const char *arg, int from_tty)
f1310107 9812{
f2fc3015 9813 const char *arg_start;
f1310107
TJB
9814 struct linespec_result canonical_start, canonical_end;
9815 int bp_count, can_use_bp, length;
9816 CORE_ADDR end;
9817 struct breakpoint *b;
f1310107
TJB
9818
9819 /* We don't support software ranged breakpoints. */
9820 if (target_ranged_break_num_registers () < 0)
9821 error (_("This target does not support hardware ranged breakpoints."));
9822
9823 bp_count = hw_breakpoint_used_count ();
9824 bp_count += target_ranged_break_num_registers ();
9825 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9826 bp_count, 0);
9827 if (can_use_bp < 0)
9828 error (_("Hardware breakpoints used exceeds limit."));
9829
f8eba3c6 9830 arg = skip_spaces (arg);
f1310107
TJB
9831 if (arg == NULL || arg[0] == '\0')
9832 error(_("No address range specified."));
9833
f8eba3c6 9834 arg_start = arg;
ffc2605c
TT
9835 event_location_up start_location = string_to_event_location (&arg,
9836 current_language);
9837 parse_breakpoint_sals (start_location.get (), &canonical_start);
f1310107
TJB
9838
9839 if (arg[0] != ',')
9840 error (_("Too few arguments."));
6c5b2ebe 9841 else if (canonical_start.lsals.empty ())
f1310107 9842 error (_("Could not find location of the beginning of the range."));
f8eba3c6 9843
6c5b2ebe 9844 const linespec_sals &lsal_start = canonical_start.lsals[0];
f8eba3c6 9845
6c5b2ebe
PA
9846 if (canonical_start.lsals.size () > 1
9847 || lsal_start.sals.size () != 1)
f1310107
TJB
9848 error (_("Cannot create a ranged breakpoint with multiple locations."));
9849
6c5b2ebe 9850 const symtab_and_line &sal_start = lsal_start.sals[0];
81b1e71c 9851 std::string addr_string_start (arg_start, arg - arg_start);
f1310107
TJB
9852
9853 arg++; /* Skip the comma. */
f8eba3c6 9854 arg = skip_spaces (arg);
f1310107
TJB
9855
9856 /* Parse the end location. */
9857
f1310107
TJB
9858 arg_start = arg;
9859
f8eba3c6 9860 /* We call decode_line_full directly here instead of using
f1310107
TJB
9861 parse_breakpoint_sals because we need to specify the start location's
9862 symtab and line as the default symtab and line for the end of the
9863 range. This makes it possible to have ranges like "foo.c:27, +14",
9864 where +14 means 14 lines from the start location. */
ffc2605c
TT
9865 event_location_up end_location = string_to_event_location (&arg,
9866 current_language);
9867 decode_line_full (end_location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
f8eba3c6
TT
9868 sal_start.symtab, sal_start.line,
9869 &canonical_end, NULL, NULL);
9870
6c5b2ebe 9871 if (canonical_end.lsals.empty ())
f1310107 9872 error (_("Could not find location of the end of the range."));
f8eba3c6 9873
6c5b2ebe
PA
9874 const linespec_sals &lsal_end = canonical_end.lsals[0];
9875 if (canonical_end.lsals.size () > 1
9876 || lsal_end.sals.size () != 1)
f1310107
TJB
9877 error (_("Cannot create a ranged breakpoint with multiple locations."));
9878
6c5b2ebe 9879 const symtab_and_line &sal_end = lsal_end.sals[0];
f1310107
TJB
9880
9881 end = find_breakpoint_range_end (sal_end);
9882 if (sal_start.pc > end)
177b42fe 9883 error (_("Invalid address range, end precedes start."));
f1310107
TJB
9884
9885 length = end - sal_start.pc + 1;
9886 if (length < 0)
9887 /* Length overflowed. */
9888 error (_("Address range too large."));
9889 else if (length == 1)
9890 {
9891 /* This range is simple enough to be handled by
9892 the `hbreak' command. */
81b1e71c 9893 hbreak_command (&addr_string_start[0], 1);
f1310107
TJB
9894
9895 return;
9896 }
9897
9898 /* Now set up the breakpoint. */
9899 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 9900 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
9901 set_breakpoint_count (breakpoint_count + 1);
9902 b->number = breakpoint_count;
9903 b->disposition = disp_donttouch;
d28cd78a
TT
9904 b->location = std::move (start_location);
9905 b->location_range_end = std::move (end_location);
f1310107
TJB
9906 b->loc->length = length;
9907
f1310107 9908 mention (b);
76727919 9909 gdb::observers::breakpoint_created.notify (b);
44702360 9910 update_global_location_list (UGLL_MAY_INSERT);
f1310107
TJB
9911}
9912
4a64f543
MS
9913/* Return non-zero if EXP is verified as constant. Returned zero
9914 means EXP is variable. Also the constant detection may fail for
9915 some constant expressions and in such case still falsely return
9916 zero. */
2e6e3d9c 9917
65d79d4b
SDJ
9918static int
9919watchpoint_exp_is_const (const struct expression *exp)
9920{
9921 int i = exp->nelts;
9922
9923 while (i > 0)
9924 {
9925 int oplenp, argsp;
9926
9927 /* We are only interested in the descriptor of each element. */
9928 operator_length (exp, i, &oplenp, &argsp);
9929 i -= oplenp;
9930
9931 switch (exp->elts[i].opcode)
9932 {
9933 case BINOP_ADD:
9934 case BINOP_SUB:
9935 case BINOP_MUL:
9936 case BINOP_DIV:
9937 case BINOP_REM:
9938 case BINOP_MOD:
9939 case BINOP_LSH:
9940 case BINOP_RSH:
9941 case BINOP_LOGICAL_AND:
9942 case BINOP_LOGICAL_OR:
9943 case BINOP_BITWISE_AND:
9944 case BINOP_BITWISE_IOR:
9945 case BINOP_BITWISE_XOR:
9946 case BINOP_EQUAL:
9947 case BINOP_NOTEQUAL:
9948 case BINOP_LESS:
9949 case BINOP_GTR:
9950 case BINOP_LEQ:
9951 case BINOP_GEQ:
9952 case BINOP_REPEAT:
9953 case BINOP_COMMA:
9954 case BINOP_EXP:
9955 case BINOP_MIN:
9956 case BINOP_MAX:
9957 case BINOP_INTDIV:
9958 case BINOP_CONCAT:
65d79d4b
SDJ
9959 case TERNOP_COND:
9960 case TERNOP_SLICE:
65d79d4b
SDJ
9961
9962 case OP_LONG:
edd079d9 9963 case OP_FLOAT:
65d79d4b
SDJ
9964 case OP_LAST:
9965 case OP_COMPLEX:
9966 case OP_STRING:
65d79d4b
SDJ
9967 case OP_ARRAY:
9968 case OP_TYPE:
608b4967
TT
9969 case OP_TYPEOF:
9970 case OP_DECLTYPE:
6e72ca20 9971 case OP_TYPEID:
65d79d4b
SDJ
9972 case OP_NAME:
9973 case OP_OBJC_NSSTRING:
9974
9975 case UNOP_NEG:
9976 case UNOP_LOGICAL_NOT:
9977 case UNOP_COMPLEMENT:
9978 case UNOP_ADDR:
9979 case UNOP_HIGH:
aeaa2474 9980 case UNOP_CAST:
9eaf6705
TT
9981
9982 case UNOP_CAST_TYPE:
9983 case UNOP_REINTERPRET_CAST:
9984 case UNOP_DYNAMIC_CAST:
4a64f543
MS
9985 /* Unary, binary and ternary operators: We have to check
9986 their operands. If they are constant, then so is the
9987 result of that operation. For instance, if A and B are
9988 determined to be constants, then so is "A + B".
9989
9990 UNOP_IND is one exception to the rule above, because the
9991 value of *ADDR is not necessarily a constant, even when
9992 ADDR is. */
65d79d4b
SDJ
9993 break;
9994
9995 case OP_VAR_VALUE:
9996 /* Check whether the associated symbol is a constant.
4a64f543 9997
65d79d4b 9998 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
9999 possible that a buggy compiler could mark a variable as
10000 constant even when it is not, and TYPE_CONST would return
10001 true in this case, while SYMBOL_CLASS wouldn't.
10002
10003 We also have to check for function symbols because they
10004 are always constant. */
65d79d4b
SDJ
10005 {
10006 struct symbol *s = exp->elts[i + 2].symbol;
10007
10008 if (SYMBOL_CLASS (s) != LOC_BLOCK
10009 && SYMBOL_CLASS (s) != LOC_CONST
10010 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10011 return 0;
10012 break;
10013 }
10014
10015 /* The default action is to return 0 because we are using
10016 the optimistic approach here: If we don't know something,
10017 then it is not a constant. */
10018 default:
10019 return 0;
10020 }
10021 }
10022
10023 return 1;
10024}
10025
c1fc2657 10026/* Watchpoint destructor. */
3a5c3e22 10027
c1fc2657 10028watchpoint::~watchpoint ()
3a5c3e22 10029{
c1fc2657
SM
10030 xfree (this->exp_string);
10031 xfree (this->exp_string_reparse);
3a5c3e22
PA
10032}
10033
348d480f
PA
10034/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10035
10036static void
10037re_set_watchpoint (struct breakpoint *b)
10038{
3a5c3e22
PA
10039 struct watchpoint *w = (struct watchpoint *) b;
10040
348d480f
PA
10041 /* Watchpoint can be either on expression using entirely global
10042 variables, or it can be on local variables.
10043
10044 Watchpoints of the first kind are never auto-deleted, and even
10045 persist across program restarts. Since they can use variables
10046 from shared libraries, we need to reparse expression as libraries
10047 are loaded and unloaded.
10048
10049 Watchpoints on local variables can also change meaning as result
10050 of solib event. For example, if a watchpoint uses both a local
10051 and a global variables in expression, it's a local watchpoint,
10052 but unloading of a shared library will make the expression
10053 invalid. This is not a very common use case, but we still
10054 re-evaluate expression, to avoid surprises to the user.
10055
10056 Note that for local watchpoints, we re-evaluate it only if
10057 watchpoints frame id is still valid. If it's not, it means the
10058 watchpoint is out of scope and will be deleted soon. In fact,
10059 I'm not sure we'll ever be called in this case.
10060
10061 If a local watchpoint's frame id is still valid, then
3a5c3e22 10062 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 10063
3a5c3e22
PA
10064 Don't do anything about disabled watchpoints, since they will be
10065 reevaluated again when enabled. */
10066 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
10067}
10068
77b06cd7
TJB
10069/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10070
10071static int
10072insert_watchpoint (struct bp_location *bl)
10073{
3a5c3e22
PA
10074 struct watchpoint *w = (struct watchpoint *) bl->owner;
10075 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10076
10077 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10078 w->cond_exp.get ());
77b06cd7
TJB
10079}
10080
10081/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10082
10083static int
73971819 10084remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
77b06cd7 10085{
3a5c3e22
PA
10086 struct watchpoint *w = (struct watchpoint *) bl->owner;
10087 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10088
10089 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10090 w->cond_exp.get ());
e09342b5
TJB
10091}
10092
e09342b5 10093static int
348d480f 10094breakpoint_hit_watchpoint (const struct bp_location *bl,
bd522513 10095 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 10096 const struct target_waitstatus *ws)
e09342b5 10097{
348d480f 10098 struct breakpoint *b = bl->owner;
3a5c3e22 10099 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10100
348d480f
PA
10101 /* Continuable hardware watchpoints are treated as non-existent if the
10102 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10103 some data address). Otherwise gdb won't stop on a break instruction
10104 in the code (not from a breakpoint) when a hardware watchpoint has
10105 been defined. Also skip watchpoints which we know did not trigger
10106 (did not match the data address). */
10107 if (is_hardware_watchpoint (b)
3a5c3e22 10108 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10109 return 0;
9c06b0b4 10110
348d480f 10111 return 1;
9c06b0b4
TJB
10112}
10113
348d480f
PA
10114static void
10115check_status_watchpoint (bpstat bs)
9c06b0b4 10116{
348d480f 10117 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10118
348d480f 10119 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10120}
10121
10122/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10123 hardware watchpoints. */
9c06b0b4
TJB
10124
10125static int
348d480f 10126resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10127{
3a5c3e22
PA
10128 struct watchpoint *w = (struct watchpoint *) bl->owner;
10129 int length = w->exact? 1 : bl->length;
348d480f
PA
10130
10131 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10132}
10133
10134/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10135 hardware watchpoints. */
9c06b0b4
TJB
10136
10137static int
348d480f 10138works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10139{
efa80663
PA
10140 /* Read and access watchpoints only work with hardware support. */
10141 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10142}
10143
9c06b0b4 10144static enum print_stop_action
348d480f 10145print_it_watchpoint (bpstat bs)
9c06b0b4 10146{
348d480f 10147 struct breakpoint *b;
348d480f 10148 enum print_stop_action result;
3a5c3e22 10149 struct watchpoint *w;
79a45e25 10150 struct ui_out *uiout = current_uiout;
348d480f
PA
10151
10152 gdb_assert (bs->bp_location_at != NULL);
10153
348d480f 10154 b = bs->breakpoint_at;
3a5c3e22 10155 w = (struct watchpoint *) b;
348d480f 10156
f303dbd6
PA
10157 annotate_watchpoint (b->number);
10158 maybe_print_thread_hit_breakpoint (uiout);
10159
d7e74731
PA
10160 string_file stb;
10161
76f9c9cf 10162 gdb::optional<ui_out_emit_tuple> tuple_emitter;
9c06b0b4
TJB
10163 switch (b->type)
10164 {
348d480f 10165 case bp_watchpoint:
9c06b0b4 10166 case bp_hardware_watchpoint:
112e8700
SM
10167 if (uiout->is_mi_like_p ())
10168 uiout->field_string
10169 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f 10170 mention (b);
76f9c9cf 10171 tuple_emitter.emplace (uiout, "value");
112e8700 10172 uiout->text ("\nOld value = ");
850645cf 10173 watchpoint_value_print (bs->old_val.get (), &stb);
112e8700
SM
10174 uiout->field_stream ("old", stb);
10175 uiout->text ("\nNew value = ");
850645cf 10176 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10177 uiout->field_stream ("new", stb);
10178 uiout->text ("\n");
348d480f
PA
10179 /* More than one watchpoint may have been triggered. */
10180 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10181 break;
10182
10183 case bp_read_watchpoint:
112e8700
SM
10184 if (uiout->is_mi_like_p ())
10185 uiout->field_string
10186 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f 10187 mention (b);
76f9c9cf 10188 tuple_emitter.emplace (uiout, "value");
112e8700 10189 uiout->text ("\nValue = ");
850645cf 10190 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10191 uiout->field_stream ("value", stb);
10192 uiout->text ("\n");
348d480f 10193 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10194 break;
10195
10196 case bp_access_watchpoint:
348d480f
PA
10197 if (bs->old_val != NULL)
10198 {
112e8700
SM
10199 if (uiout->is_mi_like_p ())
10200 uiout->field_string
10201 ("reason",
348d480f
PA
10202 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10203 mention (b);
76f9c9cf 10204 tuple_emitter.emplace (uiout, "value");
112e8700 10205 uiout->text ("\nOld value = ");
850645cf 10206 watchpoint_value_print (bs->old_val.get (), &stb);
112e8700
SM
10207 uiout->field_stream ("old", stb);
10208 uiout->text ("\nNew value = ");
348d480f
PA
10209 }
10210 else
10211 {
10212 mention (b);
112e8700
SM
10213 if (uiout->is_mi_like_p ())
10214 uiout->field_string
10215 ("reason",
348d480f 10216 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
76f9c9cf 10217 tuple_emitter.emplace (uiout, "value");
112e8700 10218 uiout->text ("\nValue = ");
348d480f 10219 }
850645cf 10220 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10221 uiout->field_stream ("new", stb);
10222 uiout->text ("\n");
348d480f 10223 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10224 break;
10225 default:
348d480f 10226 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10227 }
10228
348d480f
PA
10229 return result;
10230}
10231
10232/* Implement the "print_mention" breakpoint_ops method for hardware
10233 watchpoints. */
10234
10235static void
10236print_mention_watchpoint (struct breakpoint *b)
10237{
3a5c3e22 10238 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10239 struct ui_out *uiout = current_uiout;
46b9c129 10240 const char *tuple_name;
348d480f
PA
10241
10242 switch (b->type)
10243 {
10244 case bp_watchpoint:
112e8700 10245 uiout->text ("Watchpoint ");
46b9c129 10246 tuple_name = "wpt";
348d480f
PA
10247 break;
10248 case bp_hardware_watchpoint:
112e8700 10249 uiout->text ("Hardware watchpoint ");
46b9c129 10250 tuple_name = "wpt";
348d480f
PA
10251 break;
10252 case bp_read_watchpoint:
112e8700 10253 uiout->text ("Hardware read watchpoint ");
46b9c129 10254 tuple_name = "hw-rwpt";
348d480f
PA
10255 break;
10256 case bp_access_watchpoint:
112e8700 10257 uiout->text ("Hardware access (read/write) watchpoint ");
46b9c129 10258 tuple_name = "hw-awpt";
348d480f
PA
10259 break;
10260 default:
10261 internal_error (__FILE__, __LINE__,
10262 _("Invalid hardware watchpoint type."));
10263 }
10264
46b9c129 10265 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
112e8700
SM
10266 uiout->field_int ("number", b->number);
10267 uiout->text (": ");
10268 uiout->field_string ("exp", w->exp_string);
348d480f
PA
10269}
10270
10271/* Implement the "print_recreate" breakpoint_ops method for
10272 watchpoints. */
10273
10274static void
10275print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10276{
3a5c3e22
PA
10277 struct watchpoint *w = (struct watchpoint *) b;
10278
348d480f
PA
10279 switch (b->type)
10280 {
10281 case bp_watchpoint:
10282 case bp_hardware_watchpoint:
10283 fprintf_unfiltered (fp, "watch");
10284 break;
10285 case bp_read_watchpoint:
10286 fprintf_unfiltered (fp, "rwatch");
10287 break;
10288 case bp_access_watchpoint:
10289 fprintf_unfiltered (fp, "awatch");
10290 break;
10291 default:
10292 internal_error (__FILE__, __LINE__,
10293 _("Invalid watchpoint type."));
10294 }
10295
3a5c3e22 10296 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 10297 print_recreate_thread (b, fp);
348d480f
PA
10298}
10299
427cd150
TT
10300/* Implement the "explains_signal" breakpoint_ops method for
10301 watchpoints. */
10302
47591c29 10303static int
427cd150
TT
10304explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10305{
10306 /* A software watchpoint cannot cause a signal other than
10307 GDB_SIGNAL_TRAP. */
10308 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 10309 return 0;
427cd150 10310
47591c29 10311 return 1;
427cd150
TT
10312}
10313
348d480f
PA
10314/* The breakpoint_ops structure to be used in hardware watchpoints. */
10315
2060206e 10316static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
10317
10318/* Implement the "insert" breakpoint_ops method for
10319 masked hardware watchpoints. */
10320
10321static int
10322insert_masked_watchpoint (struct bp_location *bl)
10323{
3a5c3e22
PA
10324 struct watchpoint *w = (struct watchpoint *) bl->owner;
10325
10326 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10327 bl->watchpoint_type);
10328}
10329
10330/* Implement the "remove" breakpoint_ops method for
10331 masked hardware watchpoints. */
10332
10333static int
73971819 10334remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
348d480f 10335{
3a5c3e22
PA
10336 struct watchpoint *w = (struct watchpoint *) bl->owner;
10337
10338 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10339 bl->watchpoint_type);
10340}
10341
10342/* Implement the "resources_needed" breakpoint_ops method for
10343 masked hardware watchpoints. */
10344
10345static int
10346resources_needed_masked_watchpoint (const struct bp_location *bl)
10347{
3a5c3e22
PA
10348 struct watchpoint *w = (struct watchpoint *) bl->owner;
10349
10350 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
10351}
10352
10353/* Implement the "works_in_software_mode" breakpoint_ops method for
10354 masked hardware watchpoints. */
10355
10356static int
10357works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10358{
10359 return 0;
10360}
10361
10362/* Implement the "print_it" breakpoint_ops method for
10363 masked hardware watchpoints. */
10364
10365static enum print_stop_action
10366print_it_masked_watchpoint (bpstat bs)
10367{
10368 struct breakpoint *b = bs->breakpoint_at;
79a45e25 10369 struct ui_out *uiout = current_uiout;
348d480f
PA
10370
10371 /* Masked watchpoints have only one location. */
10372 gdb_assert (b->loc && b->loc->next == NULL);
10373
f303dbd6
PA
10374 annotate_watchpoint (b->number);
10375 maybe_print_thread_hit_breakpoint (uiout);
10376
348d480f
PA
10377 switch (b->type)
10378 {
10379 case bp_hardware_watchpoint:
112e8700
SM
10380 if (uiout->is_mi_like_p ())
10381 uiout->field_string
10382 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10383 break;
10384
10385 case bp_read_watchpoint:
112e8700
SM
10386 if (uiout->is_mi_like_p ())
10387 uiout->field_string
10388 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10389 break;
10390
10391 case bp_access_watchpoint:
112e8700
SM
10392 if (uiout->is_mi_like_p ())
10393 uiout->field_string
10394 ("reason",
348d480f
PA
10395 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10396 break;
10397 default:
10398 internal_error (__FILE__, __LINE__,
10399 _("Invalid hardware watchpoint type."));
10400 }
10401
10402 mention (b);
112e8700 10403 uiout->text (_("\n\
9c06b0b4
TJB
10404Check the underlying instruction at PC for the memory\n\
10405address and value which triggered this watchpoint.\n"));
112e8700 10406 uiout->text ("\n");
9c06b0b4
TJB
10407
10408 /* More than one watchpoint may have been triggered. */
10409 return PRINT_UNKNOWN;
10410}
10411
10412/* Implement the "print_one_detail" breakpoint_ops method for
10413 masked hardware watchpoints. */
10414
10415static void
10416print_one_detail_masked_watchpoint (const struct breakpoint *b,
10417 struct ui_out *uiout)
10418{
3a5c3e22
PA
10419 struct watchpoint *w = (struct watchpoint *) b;
10420
9c06b0b4
TJB
10421 /* Masked watchpoints have only one location. */
10422 gdb_assert (b->loc && b->loc->next == NULL);
10423
112e8700
SM
10424 uiout->text ("\tmask ");
10425 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
10426 uiout->text ("\n");
9c06b0b4
TJB
10427}
10428
10429/* Implement the "print_mention" breakpoint_ops method for
10430 masked hardware watchpoints. */
10431
10432static void
10433print_mention_masked_watchpoint (struct breakpoint *b)
10434{
3a5c3e22 10435 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10436 struct ui_out *uiout = current_uiout;
46b9c129 10437 const char *tuple_name;
9c06b0b4
TJB
10438
10439 switch (b->type)
10440 {
10441 case bp_hardware_watchpoint:
112e8700 10442 uiout->text ("Masked hardware watchpoint ");
46b9c129 10443 tuple_name = "wpt";
9c06b0b4
TJB
10444 break;
10445 case bp_read_watchpoint:
112e8700 10446 uiout->text ("Masked hardware read watchpoint ");
46b9c129 10447 tuple_name = "hw-rwpt";
9c06b0b4
TJB
10448 break;
10449 case bp_access_watchpoint:
112e8700 10450 uiout->text ("Masked hardware access (read/write) watchpoint ");
46b9c129 10451 tuple_name = "hw-awpt";
9c06b0b4
TJB
10452 break;
10453 default:
10454 internal_error (__FILE__, __LINE__,
10455 _("Invalid hardware watchpoint type."));
10456 }
10457
46b9c129 10458 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
112e8700
SM
10459 uiout->field_int ("number", b->number);
10460 uiout->text (": ");
10461 uiout->field_string ("exp", w->exp_string);
9c06b0b4
TJB
10462}
10463
10464/* Implement the "print_recreate" breakpoint_ops method for
10465 masked hardware watchpoints. */
10466
10467static void
10468print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10469{
3a5c3e22 10470 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
10471 char tmp[40];
10472
10473 switch (b->type)
10474 {
10475 case bp_hardware_watchpoint:
10476 fprintf_unfiltered (fp, "watch");
10477 break;
10478 case bp_read_watchpoint:
10479 fprintf_unfiltered (fp, "rwatch");
10480 break;
10481 case bp_access_watchpoint:
10482 fprintf_unfiltered (fp, "awatch");
10483 break;
10484 default:
10485 internal_error (__FILE__, __LINE__,
10486 _("Invalid hardware watchpoint type."));
10487 }
10488
3a5c3e22
PA
10489 sprintf_vma (tmp, w->hw_wp_mask);
10490 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
d9b3f62e 10491 print_recreate_thread (b, fp);
9c06b0b4
TJB
10492}
10493
10494/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10495
2060206e 10496static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
10497
10498/* Tell whether the given watchpoint is a masked hardware watchpoint. */
10499
10500static int
10501is_masked_watchpoint (const struct breakpoint *b)
10502{
10503 return b->ops == &masked_watchpoint_breakpoint_ops;
10504}
10505
53a5351d
JM
10506/* accessflag: hw_write: watch write,
10507 hw_read: watch read,
10508 hw_access: watch access (read or write) */
c906108c 10509static void
bbc13ae3 10510watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 10511 int just_location, int internal)
c906108c 10512{
c1fc2657 10513 struct breakpoint *scope_breakpoint = NULL;
270140bd 10514 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
850645cf 10515 struct value *mark, *result;
bb9d5f81 10516 int saved_bitpos = 0, saved_bitsize = 0;
bbc13ae3
KS
10517 const char *exp_start = NULL;
10518 const char *exp_end = NULL;
10519 const char *tok, *end_tok;
9c06b0b4 10520 int toklen = -1;
bbc13ae3
KS
10521 const char *cond_start = NULL;
10522 const char *cond_end = NULL;
c906108c 10523 enum bptype bp_type;
37e4754d 10524 int thread = -1;
0cf6dd15 10525 int pc = 0;
9c06b0b4
TJB
10526 /* Flag to indicate whether we are going to use masks for
10527 the hardware watchpoint. */
10528 int use_mask = 0;
10529 CORE_ADDR mask = 0;
c906108c 10530
37e4754d
LM
10531 /* Make sure that we actually have parameters to parse. */
10532 if (arg != NULL && arg[0] != '\0')
10533 {
bbc13ae3
KS
10534 const char *value_start;
10535
10536 exp_end = arg + strlen (arg);
37e4754d 10537
9c06b0b4
TJB
10538 /* Look for "parameter value" pairs at the end
10539 of the arguments string. */
bbc13ae3 10540 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
10541 {
10542 /* Skip whitespace at the end of the argument list. */
10543 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10544 tok--;
10545
10546 /* Find the beginning of the last token.
10547 This is the value of the parameter. */
10548 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10549 tok--;
10550 value_start = tok + 1;
10551
10552 /* Skip whitespace. */
10553 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10554 tok--;
10555
10556 end_tok = tok;
10557
10558 /* Find the beginning of the second to last token.
10559 This is the parameter itself. */
10560 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10561 tok--;
10562 tok++;
10563 toklen = end_tok - tok + 1;
10564
61012eef 10565 if (toklen == 6 && startswith (tok, "thread"))
9c06b0b4 10566 {
5d5658a1 10567 struct thread_info *thr;
9c06b0b4
TJB
10568 /* At this point we've found a "thread" token, which means
10569 the user is trying to set a watchpoint that triggers
10570 only in a specific thread. */
5d5658a1 10571 const char *endp;
37e4754d 10572
9c06b0b4
TJB
10573 if (thread != -1)
10574 error(_("You can specify only one thread."));
37e4754d 10575
9c06b0b4 10576 /* Extract the thread ID from the next token. */
5d5658a1 10577 thr = parse_thread_id (value_start, &endp);
37e4754d 10578
5d5658a1 10579 /* Check if the user provided a valid thread ID. */
9c06b0b4 10580 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
5d5658a1 10581 invalid_thread_id_error (value_start);
9c06b0b4 10582
5d5658a1 10583 thread = thr->global_num;
9c06b0b4 10584 }
61012eef 10585 else if (toklen == 4 && startswith (tok, "mask"))
9c06b0b4
TJB
10586 {
10587 /* We've found a "mask" token, which means the user wants to
10588 create a hardware watchpoint that is going to have the mask
10589 facility. */
10590 struct value *mask_value, *mark;
37e4754d 10591
9c06b0b4
TJB
10592 if (use_mask)
10593 error(_("You can specify only one mask."));
37e4754d 10594
9c06b0b4 10595 use_mask = just_location = 1;
37e4754d 10596
9c06b0b4
TJB
10597 mark = value_mark ();
10598 mask_value = parse_to_comma_and_eval (&value_start);
10599 mask = value_as_address (mask_value);
10600 value_free_to_mark (mark);
10601 }
10602 else
10603 /* We didn't recognize what we found. We should stop here. */
10604 break;
37e4754d 10605
9c06b0b4
TJB
10606 /* Truncate the string and get rid of the "parameter value" pair before
10607 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 10608 exp_end = tok;
9c06b0b4 10609 }
37e4754d 10610 }
bbc13ae3
KS
10611 else
10612 exp_end = arg;
37e4754d 10613
bbc13ae3
KS
10614 /* Parse the rest of the arguments. From here on out, everything
10615 is in terms of a newly allocated string instead of the original
10616 ARG. */
aee1fcdf 10617 innermost_block.reset ();
81b1e71c
TT
10618 std::string expression (arg, exp_end - arg);
10619 exp_start = arg = expression.c_str ();
4d01a485 10620 expression_up exp = parse_exp_1 (&arg, 0, 0, 0);
c906108c 10621 exp_end = arg;
fa8a61dc
TT
10622 /* Remove trailing whitespace from the expression before saving it.
10623 This makes the eventual display of the expression string a bit
10624 prettier. */
10625 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
10626 --exp_end;
10627
65d79d4b 10628 /* Checking if the expression is not constant. */
4d01a485 10629 if (watchpoint_exp_is_const (exp.get ()))
65d79d4b
SDJ
10630 {
10631 int len;
10632
10633 len = exp_end - exp_start;
10634 while (len > 0 && isspace (exp_start[len - 1]))
10635 len--;
10636 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
10637 }
10638
aee1fcdf 10639 exp_valid_block = innermost_block.block ();
c906108c 10640 mark = value_mark ();
850645cf
TT
10641 struct value *val_as_value = nullptr;
10642 fetch_subexp_value (exp.get (), &pc, &val_as_value, &result, NULL,
10643 just_location);
06a64a0b 10644
850645cf 10645 if (val_as_value != NULL && just_location)
bb9d5f81 10646 {
850645cf
TT
10647 saved_bitpos = value_bitpos (val_as_value);
10648 saved_bitsize = value_bitsize (val_as_value);
bb9d5f81
PP
10649 }
10650
850645cf 10651 value_ref_ptr val;
06a64a0b
TT
10652 if (just_location)
10653 {
9c06b0b4
TJB
10654 int ret;
10655
06a64a0b 10656 exp_valid_block = NULL;
850645cf 10657 val = release_value (value_addr (result));
06a64a0b 10658 value_free_to_mark (mark);
9c06b0b4
TJB
10659
10660 if (use_mask)
10661 {
850645cf 10662 ret = target_masked_watch_num_registers (value_as_address (val.get ()),
9c06b0b4
TJB
10663 mask);
10664 if (ret == -1)
10665 error (_("This target does not support masked watchpoints."));
10666 else if (ret == -2)
10667 error (_("Invalid mask or memory region."));
10668 }
06a64a0b 10669 }
850645cf
TT
10670 else if (val_as_value != NULL)
10671 val = release_value (val_as_value);
c906108c 10672
f1735a53
TT
10673 tok = skip_spaces (arg);
10674 end_tok = skip_to_space (tok);
c906108c
SS
10675
10676 toklen = end_tok - tok;
10677 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10678 {
aee1fcdf 10679 innermost_block.reset ();
c906108c 10680 tok = cond_start = end_tok + 1;
4d01a485 10681 parse_exp_1 (&tok, 0, 0, 0);
60e1c644
PA
10682
10683 /* The watchpoint expression may not be local, but the condition
10684 may still be. E.g.: `watch global if local > 0'. */
aee1fcdf 10685 cond_exp_valid_block = innermost_block.block ();
60e1c644 10686
c906108c
SS
10687 cond_end = tok;
10688 }
10689 if (*tok)
8a3fe4f8 10690 error (_("Junk at end of command."));
c906108c 10691
441d7c93
PA
10692 frame_info *wp_frame = block_innermost_frame (exp_valid_block);
10693
10694 /* Save this because create_internal_breakpoint below invalidates
10695 'wp_frame'. */
10696 frame_id watchpoint_frame = get_frame_id (wp_frame);
d983da9c
DJ
10697
10698 /* If the expression is "local", then set up a "watchpoint scope"
10699 breakpoint at the point where we've left the scope of the watchpoint
10700 expression. Create the scope breakpoint before the watchpoint, so
10701 that we will encounter it first in bpstat_stop_status. */
441d7c93 10702 if (exp_valid_block != NULL && wp_frame != NULL)
d983da9c 10703 {
441d7c93
PA
10704 frame_id caller_frame_id = frame_unwind_caller_id (wp_frame);
10705
10706 if (frame_id_p (caller_frame_id))
edb3359d 10707 {
441d7c93
PA
10708 gdbarch *caller_arch = frame_unwind_caller_arch (wp_frame);
10709 CORE_ADDR caller_pc = frame_unwind_caller_pc (wp_frame);
10710
edb3359d 10711 scope_breakpoint
441d7c93 10712 = create_internal_breakpoint (caller_arch, caller_pc,
06edf0c0
PA
10713 bp_watchpoint_scope,
10714 &momentary_breakpoint_ops);
d983da9c 10715
441d7c93
PA
10716 /* create_internal_breakpoint could invalidate WP_FRAME. */
10717 wp_frame = NULL;
10718
edb3359d 10719 scope_breakpoint->enable_state = bp_enabled;
d983da9c 10720
edb3359d
DJ
10721 /* Automatically delete the breakpoint when it hits. */
10722 scope_breakpoint->disposition = disp_del;
d983da9c 10723
edb3359d 10724 /* Only break in the proper frame (help with recursion). */
441d7c93 10725 scope_breakpoint->frame_id = caller_frame_id;
d983da9c 10726
edb3359d 10727 /* Set the address at which we will stop. */
441d7c93
PA
10728 scope_breakpoint->loc->gdbarch = caller_arch;
10729 scope_breakpoint->loc->requested_address = caller_pc;
edb3359d 10730 scope_breakpoint->loc->address
a6d9a66e
UW
10731 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
10732 scope_breakpoint->loc->requested_address,
edb3359d
DJ
10733 scope_breakpoint->type);
10734 }
d983da9c
DJ
10735 }
10736
e8369a73
AB
10737 /* Now set up the breakpoint. We create all watchpoints as hardware
10738 watchpoints here even if hardware watchpoints are turned off, a call
10739 to update_watchpoint later in this function will cause the type to
10740 drop back to bp_watchpoint (software watchpoint) if required. */
10741
10742 if (accessflag == hw_read)
10743 bp_type = bp_read_watchpoint;
10744 else if (accessflag == hw_access)
10745 bp_type = bp_access_watchpoint;
10746 else
10747 bp_type = bp_hardware_watchpoint;
3a5c3e22 10748
b270e6f9 10749 std::unique_ptr<watchpoint> w (new watchpoint ());
c1fc2657 10750
348d480f 10751 if (use_mask)
b270e6f9 10752 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10753 &masked_watchpoint_breakpoint_ops);
348d480f 10754 else
b270e6f9 10755 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10756 &watchpoint_breakpoint_ops);
c1fc2657
SM
10757 w->thread = thread;
10758 w->disposition = disp_donttouch;
10759 w->pspace = current_program_space;
b22e99fd 10760 w->exp = std::move (exp);
3a5c3e22
PA
10761 w->exp_valid_block = exp_valid_block;
10762 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
10763 if (just_location)
10764 {
850645cf
TT
10765 struct type *t = value_type (val.get ());
10766 CORE_ADDR addr = value_as_address (val.get ());
06a64a0b 10767
43cc5389
TT
10768 w->exp_string_reparse
10769 = current_language->la_watch_location_expression (t, addr).release ();
06a64a0b 10770
3a5c3e22 10771 w->exp_string = xstrprintf ("-location %.*s",
d63d0675 10772 (int) (exp_end - exp_start), exp_start);
06a64a0b
TT
10773 }
10774 else
3a5c3e22 10775 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
10776
10777 if (use_mask)
10778 {
3a5c3e22 10779 w->hw_wp_mask = mask;
9c06b0b4
TJB
10780 }
10781 else
10782 {
3a5c3e22 10783 w->val = val;
bb9d5f81
PP
10784 w->val_bitpos = saved_bitpos;
10785 w->val_bitsize = saved_bitsize;
3a5c3e22 10786 w->val_valid = 1;
9c06b0b4 10787 }
77b06cd7 10788
c906108c 10789 if (cond_start)
c1fc2657 10790 w->cond_string = savestring (cond_start, cond_end - cond_start);
c906108c 10791 else
c1fc2657 10792 w->cond_string = 0;
c5aa993b 10793
441d7c93 10794 if (frame_id_p (watchpoint_frame))
f6bc2008 10795 {
441d7c93 10796 w->watchpoint_frame = watchpoint_frame;
3a5c3e22 10797 w->watchpoint_thread = inferior_ptid;
f6bc2008 10798 }
c906108c 10799 else
f6bc2008 10800 {
3a5c3e22
PA
10801 w->watchpoint_frame = null_frame_id;
10802 w->watchpoint_thread = null_ptid;
f6bc2008 10803 }
c906108c 10804
d983da9c 10805 if (scope_breakpoint != NULL)
c906108c 10806 {
d983da9c
DJ
10807 /* The scope breakpoint is related to the watchpoint. We will
10808 need to act on them together. */
c1fc2657 10809 w->related_breakpoint = scope_breakpoint;
b270e6f9 10810 scope_breakpoint->related_breakpoint = w.get ();
c906108c 10811 }
d983da9c 10812
06a64a0b
TT
10813 if (!just_location)
10814 value_free_to_mark (mark);
2d134ed3 10815
b270e6f9
TT
10816 /* Finally update the new watchpoint. This creates the locations
10817 that should be inserted. */
10818 update_watchpoint (w.get (), 1);
a9634178 10819
b270e6f9 10820 install_breakpoint (internal, std::move (w), 1);
c906108c
SS
10821}
10822
e09342b5 10823/* Return count of debug registers needed to watch the given expression.
e09342b5 10824 If the watchpoint cannot be handled in hardware return zero. */
c906108c 10825
c906108c 10826static int
a6535de1 10827can_use_hardware_watchpoint (const std::vector<value_ref_ptr> &vals)
c906108c
SS
10828{
10829 int found_memory_cnt = 0;
10830
10831 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 10832 if (!can_use_hw_watchpoints)
c906108c 10833 return 0;
c5aa993b 10834
a6535de1
TT
10835 gdb_assert (!vals.empty ());
10836 struct value *head = vals[0].get ();
10837
5c44784c
JM
10838 /* Make sure that the value of the expression depends only upon
10839 memory contents, and values computed from them within GDB. If we
10840 find any register references or function calls, we can't use a
10841 hardware watchpoint.
10842
10843 The idea here is that evaluating an expression generates a series
10844 of values, one holding the value of every subexpression. (The
10845 expression a*b+c has five subexpressions: a, b, a*b, c, and
10846 a*b+c.) GDB's values hold almost enough information to establish
10847 the criteria given above --- they identify memory lvalues,
10848 register lvalues, computed values, etcetera. So we can evaluate
10849 the expression, and then scan the chain of values that leaves
10850 behind to decide whether we can detect any possible change to the
10851 expression's final value using only hardware watchpoints.
10852
10853 However, I don't think that the values returned by inferior
10854 function calls are special in any way. So this function may not
10855 notice that an expression involving an inferior function call
10856 can't be watched with hardware watchpoints. FIXME. */
a6535de1 10857 for (const value_ref_ptr &iter : vals)
c906108c 10858 {
a6535de1
TT
10859 struct value *v = iter.get ();
10860
5c44784c 10861 if (VALUE_LVAL (v) == lval_memory)
c906108c 10862 {
8464be76
DJ
10863 if (v != head && value_lazy (v))
10864 /* A lazy memory lvalue in the chain is one that GDB never
10865 needed to fetch; we either just used its address (e.g.,
10866 `a' in `a.b') or we never needed it at all (e.g., `a'
10867 in `a,b'). This doesn't apply to HEAD; if that is
10868 lazy then it was not readable, but watch it anyway. */
5c44784c 10869 ;
53a5351d 10870 else
5c44784c
JM
10871 {
10872 /* Ahh, memory we actually used! Check if we can cover
10873 it with hardware watchpoints. */
df407dfe 10874 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
10875
10876 /* We only watch structs and arrays if user asked for it
10877 explicitly, never if they just happen to appear in a
10878 middle of some value chain. */
10879 if (v == head
10880 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
10881 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
10882 {
42ae5230 10883 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
10884 int len;
10885 int num_regs;
10886
a9634178 10887 len = (target_exact_watchpoints
e09342b5
TJB
10888 && is_scalar_type_recursive (vtype))?
10889 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 10890
e09342b5
TJB
10891 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
10892 if (!num_regs)
2e70b7b9
MS
10893 return 0;
10894 else
e09342b5 10895 found_memory_cnt += num_regs;
2e70b7b9 10896 }
5c44784c 10897 }
c5aa993b 10898 }
5086187c
AC
10899 else if (VALUE_LVAL (v) != not_lval
10900 && deprecated_value_modifiable (v) == 0)
38b6c3b3 10901 return 0; /* These are values from the history (e.g., $1). */
5086187c 10902 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 10903 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
10904 }
10905
10906 /* The expression itself looks suitable for using a hardware
10907 watchpoint, but give the target machine a chance to reject it. */
10908 return found_memory_cnt;
10909}
10910
8b93c638 10911void
f2fc3015 10912watch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10913{
84f4c1fe 10914 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
10915}
10916
06a64a0b
TT
10917/* A helper function that looks for the "-location" argument and then
10918 calls watch_command_1. */
10919
10920static void
0b39b52e 10921watch_maybe_just_location (const char *arg, int accessflag, int from_tty)
06a64a0b
TT
10922{
10923 int just_location = 0;
10924
10925 if (arg
10926 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
10927 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
10928 {
e9cafbcc 10929 arg = skip_spaces (arg);
06a64a0b
TT
10930 just_location = 1;
10931 }
10932
84f4c1fe 10933 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 10934}
8926118c 10935
c5aa993b 10936static void
0b39b52e 10937watch_command (const char *arg, int from_tty)
c906108c 10938{
06a64a0b 10939 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
10940}
10941
8b93c638 10942void
f2fc3015 10943rwatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10944{
84f4c1fe 10945 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 10946}
8926118c 10947
c5aa993b 10948static void
0b39b52e 10949rwatch_command (const char *arg, int from_tty)
c906108c 10950{
06a64a0b 10951 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
10952}
10953
8b93c638 10954void
f2fc3015 10955awatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10956{
84f4c1fe 10957 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 10958}
8926118c 10959
c5aa993b 10960static void
0b39b52e 10961awatch_command (const char *arg, int from_tty)
c906108c 10962{
06a64a0b 10963 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 10964}
c906108c 10965\f
c5aa993b 10966
cfc31633
PA
10967/* Data for the FSM that manages the until(location)/advance commands
10968 in infcmd.c. Here because it uses the mechanisms of
10969 breakpoints. */
c906108c 10970
cfc31633 10971struct until_break_fsm
bfec99b2 10972{
cfc31633
PA
10973 /* The base class. */
10974 struct thread_fsm thread_fsm;
10975
10976 /* The thread that as current when the command was executed. */
10977 int thread;
10978
10979 /* The breakpoint set at the destination location. */
10980 struct breakpoint *location_breakpoint;
10981
10982 /* Breakpoint set at the return address in the caller frame. May be
10983 NULL. */
10984 struct breakpoint *caller_breakpoint;
bfec99b2
PA
10985};
10986
8980e177
PA
10987static void until_break_fsm_clean_up (struct thread_fsm *self,
10988 struct thread_info *thread);
10989static int until_break_fsm_should_stop (struct thread_fsm *self,
10990 struct thread_info *thread);
cfc31633
PA
10991static enum async_reply_reason
10992 until_break_fsm_async_reply_reason (struct thread_fsm *self);
10993
10994/* until_break_fsm's vtable. */
10995
10996static struct thread_fsm_ops until_break_fsm_ops =
10997{
10998 NULL, /* dtor */
10999 until_break_fsm_clean_up,
11000 until_break_fsm_should_stop,
11001 NULL, /* return_value */
11002 until_break_fsm_async_reply_reason,
11003};
11004
11005/* Allocate a new until_break_command_fsm. */
11006
11007static struct until_break_fsm *
8980e177 11008new_until_break_fsm (struct interp *cmd_interp, int thread,
454dafbd
TT
11009 breakpoint_up &&location_breakpoint,
11010 breakpoint_up &&caller_breakpoint)
cfc31633
PA
11011{
11012 struct until_break_fsm *sm;
11013
11014 sm = XCNEW (struct until_break_fsm);
8980e177 11015 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops, cmd_interp);
cfc31633
PA
11016
11017 sm->thread = thread;
454dafbd
TT
11018 sm->location_breakpoint = location_breakpoint.release ();
11019 sm->caller_breakpoint = caller_breakpoint.release ();
cfc31633
PA
11020
11021 return sm;
11022}
11023
11024/* Implementation of the 'should_stop' FSM method for the
11025 until(location)/advance commands. */
11026
11027static int
8980e177
PA
11028until_break_fsm_should_stop (struct thread_fsm *self,
11029 struct thread_info *tp)
cfc31633
PA
11030{
11031 struct until_break_fsm *sm = (struct until_break_fsm *) self;
cfc31633
PA
11032
11033 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11034 sm->location_breakpoint) != NULL
11035 || (sm->caller_breakpoint != NULL
11036 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11037 sm->caller_breakpoint) != NULL))
11038 thread_fsm_set_finished (self);
11039
11040 return 1;
11041}
11042
11043/* Implementation of the 'clean_up' FSM method for the
11044 until(location)/advance commands. */
11045
c2c6d25f 11046static void
8980e177
PA
11047until_break_fsm_clean_up (struct thread_fsm *self,
11048 struct thread_info *thread)
43ff13b4 11049{
cfc31633 11050 struct until_break_fsm *sm = (struct until_break_fsm *) self;
bfec99b2 11051
cfc31633
PA
11052 /* Clean up our temporary breakpoints. */
11053 if (sm->location_breakpoint != NULL)
11054 {
11055 delete_breakpoint (sm->location_breakpoint);
11056 sm->location_breakpoint = NULL;
11057 }
11058 if (sm->caller_breakpoint != NULL)
11059 {
11060 delete_breakpoint (sm->caller_breakpoint);
11061 sm->caller_breakpoint = NULL;
11062 }
11063 delete_longjmp_breakpoint (sm->thread);
11064}
11065
11066/* Implementation of the 'async_reply_reason' FSM method for the
11067 until(location)/advance commands. */
11068
11069static enum async_reply_reason
11070until_break_fsm_async_reply_reason (struct thread_fsm *self)
11071{
11072 return EXEC_ASYNC_LOCATION_REACHED;
43ff13b4
JM
11073}
11074
c906108c 11075void
f2fc3015 11076until_break_command (const char *arg, int from_tty, int anywhere)
c906108c 11077{
8556afb4
PA
11078 struct frame_info *frame;
11079 struct gdbarch *frame_gdbarch;
11080 struct frame_id stack_frame_id;
11081 struct frame_id caller_frame_id;
ffc2605c 11082 struct cleanup *old_chain;
186c406b
TT
11083 int thread;
11084 struct thread_info *tp;
cfc31633 11085 struct until_break_fsm *sm;
c906108c 11086
70509625 11087 clear_proceed_status (0);
c906108c
SS
11088
11089 /* Set a breakpoint where the user wants it and at return from
4a64f543 11090 this function. */
c5aa993b 11091
ffc2605c 11092 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f 11093
6c5b2ebe
PA
11094 std::vector<symtab_and_line> sals
11095 = (last_displayed_sal_is_valid ()
11096 ? decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
11097 get_last_displayed_symtab (),
11098 get_last_displayed_line ())
11099 : decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE,
11100 NULL, (struct symtab *) NULL, 0));
c5aa993b 11101
6c5b2ebe 11102 if (sals.size () != 1)
8a3fe4f8 11103 error (_("Couldn't get information on specified line."));
c5aa993b 11104
6c5b2ebe 11105 symtab_and_line &sal = sals[0];
c5aa993b 11106
c906108c 11107 if (*arg)
8a3fe4f8 11108 error (_("Junk at end of arguments."));
c5aa993b 11109
c906108c 11110 resolve_sal_pc (&sal);
c5aa993b 11111
186c406b 11112 tp = inferior_thread ();
5d5658a1 11113 thread = tp->global_num;
186c406b 11114
883bc8d1
PA
11115 old_chain = make_cleanup (null_cleanup, NULL);
11116
8556afb4
PA
11117 /* Note linespec handling above invalidates the frame chain.
11118 Installing a breakpoint also invalidates the frame chain (as it
11119 may need to switch threads), so do any frame handling before
11120 that. */
11121
11122 frame = get_selected_frame (NULL);
11123 frame_gdbarch = get_frame_arch (frame);
11124 stack_frame_id = get_stack_frame_id (frame);
11125 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11126
ae66c1fc
EZ
11127 /* Keep within the current frame, or in frames called by the current
11128 one. */
edb3359d 11129
454dafbd 11130 breakpoint_up caller_breakpoint;
883bc8d1 11131 if (frame_id_p (caller_frame_id))
c906108c 11132 {
883bc8d1 11133 struct symtab_and_line sal2;
cfc31633 11134 struct gdbarch *caller_gdbarch;
883bc8d1
PA
11135
11136 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11137 sal2.pc = frame_unwind_caller_pc (frame);
cfc31633
PA
11138 caller_gdbarch = frame_unwind_caller_arch (frame);
11139 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11140 sal2,
11141 caller_frame_id,
11142 bp_until);
186c406b 11143
883bc8d1 11144 set_longjmp_breakpoint (tp, caller_frame_id);
186c406b 11145 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 11146 }
c5aa993b 11147
c70a6932
JK
11148 /* set_momentary_breakpoint could invalidate FRAME. */
11149 frame = NULL;
11150
454dafbd 11151 breakpoint_up location_breakpoint;
883bc8d1
PA
11152 if (anywhere)
11153 /* If the user told us to continue until a specified location,
11154 we don't specify a frame at which we need to stop. */
cfc31633
PA
11155 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11156 null_frame_id, bp_until);
883bc8d1
PA
11157 else
11158 /* Otherwise, specify the selected frame, because we want to stop
11159 only at the very same frame. */
cfc31633
PA
11160 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11161 stack_frame_id, bp_until);
883bc8d1 11162
8980e177 11163 sm = new_until_break_fsm (command_interp (), tp->global_num,
454dafbd
TT
11164 std::move (location_breakpoint),
11165 std::move (caller_breakpoint));
cfc31633 11166 tp->thread_fsm = &sm->thread_fsm;
f107f563 11167
cfc31633 11168 discard_cleanups (old_chain);
f107f563 11169
cfc31633 11170 proceed (-1, GDB_SIGNAL_DEFAULT);
c906108c 11171}
ae66c1fc 11172
c906108c
SS
11173/* This function attempts to parse an optional "if <cond>" clause
11174 from the arg string. If one is not found, it returns NULL.
c5aa993b 11175
c906108c
SS
11176 Else, it returns a pointer to the condition string. (It does not
11177 attempt to evaluate the string against a particular block.) And,
11178 it updates arg to point to the first character following the parsed
4a64f543 11179 if clause in the arg string. */
53a5351d 11180
63160a43
PA
11181const char *
11182ep_parse_optional_if_clause (const char **arg)
c906108c 11183{
63160a43 11184 const char *cond_string;
c5aa993b
JM
11185
11186 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11187 return NULL;
c5aa993b 11188
4a64f543 11189 /* Skip the "if" keyword. */
c906108c 11190 (*arg) += 2;
c5aa993b 11191
c906108c 11192 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11193 condition string. */
f1735a53 11194 *arg = skip_spaces (*arg);
c906108c 11195 cond_string = *arg;
c5aa993b 11196
4a64f543
MS
11197 /* Assume that the condition occupies the remainder of the arg
11198 string. */
c906108c 11199 (*arg) += strlen (cond_string);
c5aa993b 11200
c906108c
SS
11201 return cond_string;
11202}
c5aa993b 11203
c906108c
SS
11204/* Commands to deal with catching events, such as signals, exceptions,
11205 process start/exit, etc. */
c5aa993b
JM
11206
11207typedef enum
11208{
44feb3ce
TT
11209 catch_fork_temporary, catch_vfork_temporary,
11210 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11211}
11212catch_fork_kind;
11213
c906108c 11214static void
eb4c3f4a 11215catch_fork_command_1 (const char *arg, int from_tty,
cc59ec59 11216 struct cmd_list_element *command)
c906108c 11217{
a6d9a66e 11218 struct gdbarch *gdbarch = get_current_arch ();
63160a43 11219 const char *cond_string = NULL;
44feb3ce
TT
11220 catch_fork_kind fork_kind;
11221 int tempflag;
11222
11223 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11224 tempflag = (fork_kind == catch_fork_temporary
11225 || fork_kind == catch_vfork_temporary);
c5aa993b 11226
44feb3ce
TT
11227 if (!arg)
11228 arg = "";
f1735a53 11229 arg = skip_spaces (arg);
c5aa993b 11230
c906108c 11231 /* The allowed syntax is:
c5aa993b
JM
11232 catch [v]fork
11233 catch [v]fork if <cond>
11234
4a64f543 11235 First, check if there's an if clause. */
c906108c 11236 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 11237
c906108c 11238 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11239 error (_("Junk at end of arguments."));
c5aa993b 11240
c906108c 11241 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 11242 and enable reporting of such events. */
c5aa993b
JM
11243 switch (fork_kind)
11244 {
44feb3ce
TT
11245 case catch_fork_temporary:
11246 case catch_fork_permanent:
a6d9a66e 11247 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11248 &catch_fork_breakpoint_ops);
c906108c 11249 break;
44feb3ce
TT
11250 case catch_vfork_temporary:
11251 case catch_vfork_permanent:
a6d9a66e 11252 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11253 &catch_vfork_breakpoint_ops);
c906108c 11254 break;
c5aa993b 11255 default:
8a3fe4f8 11256 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 11257 break;
c5aa993b 11258 }
c906108c
SS
11259}
11260
11261static void
eb4c3f4a 11262catch_exec_command_1 (const char *arg, int from_tty,
cc59ec59 11263 struct cmd_list_element *command)
c906108c 11264{
a6d9a66e 11265 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 11266 int tempflag;
63160a43 11267 const char *cond_string = NULL;
c906108c 11268
44feb3ce
TT
11269 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11270
11271 if (!arg)
11272 arg = "";
f1735a53 11273 arg = skip_spaces (arg);
c906108c
SS
11274
11275 /* The allowed syntax is:
c5aa993b
JM
11276 catch exec
11277 catch exec if <cond>
c906108c 11278
4a64f543 11279 First, check if there's an if clause. */
c906108c
SS
11280 cond_string = ep_parse_optional_if_clause (&arg);
11281
11282 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11283 error (_("Junk at end of arguments."));
c906108c 11284
b270e6f9
TT
11285 std::unique_ptr<exec_catchpoint> c (new exec_catchpoint ());
11286 init_catchpoint (c.get (), gdbarch, tempflag, cond_string,
b4d90040
PA
11287 &catch_exec_breakpoint_ops);
11288 c->exec_pathname = NULL;
11289
b270e6f9 11290 install_breakpoint (0, std::move (c), 1);
c906108c 11291}
c5aa993b 11292
9ac4176b 11293void
28010a5d
PA
11294init_ada_exception_breakpoint (struct breakpoint *b,
11295 struct gdbarch *gdbarch,
11296 struct symtab_and_line sal,
f2fc3015 11297 const char *addr_string,
c0a91b2b 11298 const struct breakpoint_ops *ops,
28010a5d 11299 int tempflag,
349774ef 11300 int enabled,
28010a5d 11301 int from_tty)
f7f9143b 11302{
f7f9143b
JB
11303 if (from_tty)
11304 {
5af949e3
UW
11305 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11306 if (!loc_gdbarch)
11307 loc_gdbarch = gdbarch;
11308
6c95b8df
PA
11309 describe_other_breakpoints (loc_gdbarch,
11310 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
11311 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11312 version for exception catchpoints, because two catchpoints
11313 used for different exception names will use the same address.
11314 In this case, a "breakpoint ... also set at..." warning is
4a64f543 11315 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 11316 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
11317 the user what type of catchpoint it is. The above is good
11318 enough for now, though. */
11319 }
11320
28010a5d 11321 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b 11322
349774ef 11323 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 11324 b->disposition = tempflag ? disp_del : disp_donttouch;
d28cd78a
TT
11325 b->location = string_to_event_location (&addr_string,
11326 language_def (language_ada));
f7f9143b 11327 b->language = language_ada;
f7f9143b
JB
11328}
11329
c906108c 11330static void
981a3fb3 11331catch_command (const char *arg, int from_tty)
c906108c 11332{
44feb3ce 11333 error (_("Catch requires an event name."));
c906108c
SS
11334}
11335\f
11336
11337static void
981a3fb3 11338tcatch_command (const char *arg, int from_tty)
c906108c 11339{
44feb3ce 11340 error (_("Catch requires an event name."));
c906108c
SS
11341}
11342
81b1e71c 11343/* Compare two breakpoints and return a strcmp-like result. */
8a2c437b
TT
11344
11345static int
81b1e71c 11346compare_breakpoints (const breakpoint *a, const breakpoint *b)
8a2c437b 11347{
81b1e71c
TT
11348 uintptr_t ua = (uintptr_t) a;
11349 uintptr_t ub = (uintptr_t) b;
8a2c437b 11350
81b1e71c 11351 if (a->number < b->number)
8a2c437b 11352 return -1;
81b1e71c 11353 else if (a->number > b->number)
8a2c437b
TT
11354 return 1;
11355
11356 /* Now sort by address, in case we see, e..g, two breakpoints with
11357 the number 0. */
11358 if (ua < ub)
11359 return -1;
94b0e70d 11360 return ua > ub ? 1 : 0;
8a2c437b
TT
11361}
11362
80f8a6eb 11363/* Delete breakpoints by address or line. */
c906108c
SS
11364
11365static void
0b39b52e 11366clear_command (const char *arg, int from_tty)
c906108c 11367{
81b1e71c 11368 struct breakpoint *b;
c906108c 11369 int default_match;
c906108c 11370
6c5b2ebe
PA
11371 std::vector<symtab_and_line> decoded_sals;
11372 symtab_and_line last_sal;
11373 gdb::array_view<symtab_and_line> sals;
c906108c
SS
11374 if (arg)
11375 {
6c5b2ebe
PA
11376 decoded_sals
11377 = decode_line_with_current_source (arg,
11378 (DECODE_LINE_FUNFIRSTLINE
11379 | DECODE_LINE_LIST_MODE));
c906108c 11380 default_match = 0;
6c5b2ebe 11381 sals = decoded_sals;
c906108c
SS
11382 }
11383 else
11384 {
1bfeeb0f
JL
11385 /* Set sal's line, symtab, pc, and pspace to the values
11386 corresponding to the last call to print_frame_info. If the
11387 codepoint is not valid, this will set all the fields to 0. */
51abb421 11388 last_sal = get_last_displayed_sal ();
6c5b2ebe 11389 if (last_sal.symtab == 0)
8a3fe4f8 11390 error (_("No source file specified."));
c906108c 11391
c906108c 11392 default_match = 1;
6c5b2ebe 11393 sals = last_sal;
c906108c
SS
11394 }
11395
4a64f543
MS
11396 /* We don't call resolve_sal_pc here. That's not as bad as it
11397 seems, because all existing breakpoints typically have both
11398 file/line and pc set. So, if clear is given file/line, we can
11399 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
11400
11401 We only support clearing given the address explicitly
11402 present in breakpoint table. Say, we've set breakpoint
4a64f543 11403 at file:line. There were several PC values for that file:line,
ed0616c6 11404 due to optimization, all in one block.
4a64f543
MS
11405
11406 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
11407 PC corresponding to the same file:line, the breakpoint won't
11408 be cleared. We probably can still clear the breakpoint, but
11409 since the other PC value is never presented to user, user
11410 can only find it by guessing, and it does not seem important
11411 to support that. */
11412
4a64f543
MS
11413 /* For each line spec given, delete bps which correspond to it. Do
11414 it in two passes, solely to preserve the current behavior that
11415 from_tty is forced true if we delete more than one
11416 breakpoint. */
c906108c 11417
81b1e71c 11418 std::vector<struct breakpoint *> found;
6c5b2ebe 11419 for (const auto &sal : sals)
c906108c 11420 {
05cba821
JK
11421 const char *sal_fullname;
11422
c906108c 11423 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
11424 If line given (pc == 0), clear all bpts on specified line.
11425 If defaulting, clear all bpts on default line
c906108c 11426 or at default pc.
c5aa993b
JM
11427
11428 defaulting sal.pc != 0 tests to do
11429
11430 0 1 pc
11431 1 1 pc _and_ line
11432 0 0 line
11433 1 0 <can't happen> */
c906108c 11434
05cba821
JK
11435 sal_fullname = (sal.symtab == NULL
11436 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 11437
4a64f543 11438 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 11439 ALL_BREAKPOINTS (b)
c5aa993b 11440 {
0d381245 11441 int match = 0;
4a64f543 11442 /* Are we going to delete b? */
cc60f2e3 11443 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
11444 {
11445 struct bp_location *loc = b->loc;
11446 for (; loc; loc = loc->next)
11447 {
f8eba3c6
TT
11448 /* If the user specified file:line, don't allow a PC
11449 match. This matches historical gdb behavior. */
11450 int pc_match = (!sal.explicit_line
11451 && sal.pc
11452 && (loc->pspace == sal.pspace)
11453 && (loc->address == sal.pc)
11454 && (!section_is_overlay (loc->section)
11455 || loc->section == sal.section));
4aac40c8
TT
11456 int line_match = 0;
11457
11458 if ((default_match || sal.explicit_line)
2f202fde 11459 && loc->symtab != NULL
05cba821 11460 && sal_fullname != NULL
4aac40c8 11461 && sal.pspace == loc->pspace
05cba821
JK
11462 && loc->line_number == sal.line
11463 && filename_cmp (symtab_to_fullname (loc->symtab),
11464 sal_fullname) == 0)
11465 line_match = 1;
4aac40c8 11466
0d381245
VP
11467 if (pc_match || line_match)
11468 {
11469 match = 1;
11470 break;
11471 }
11472 }
11473 }
11474
11475 if (match)
81b1e71c 11476 found.push_back (b);
c906108c 11477 }
80f8a6eb 11478 }
8a2c437b 11479
80f8a6eb 11480 /* Now go thru the 'found' chain and delete them. */
81b1e71c 11481 if (found.empty ())
80f8a6eb
MS
11482 {
11483 if (arg)
8a3fe4f8 11484 error (_("No breakpoint at %s."), arg);
80f8a6eb 11485 else
8a3fe4f8 11486 error (_("No breakpoint at this line."));
80f8a6eb 11487 }
c906108c 11488
8a2c437b 11489 /* Remove duplicates from the vec. */
81b1e71c
TT
11490 std::sort (found.begin (), found.end (),
11491 [] (const breakpoint *a, const breakpoint *b)
11492 {
11493 return compare_breakpoints (a, b) < 0;
11494 });
11495 found.erase (std::unique (found.begin (), found.end (),
11496 [] (const breakpoint *a, const breakpoint *b)
11497 {
11498 return compare_breakpoints (a, b) == 0;
11499 }),
11500 found.end ());
8a2c437b 11501
81b1e71c 11502 if (found.size () > 1)
4a64f543 11503 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 11504 if (from_tty)
a3f17187 11505 {
81b1e71c 11506 if (found.size () == 1)
a3f17187
AC
11507 printf_unfiltered (_("Deleted breakpoint "));
11508 else
11509 printf_unfiltered (_("Deleted breakpoints "));
11510 }
d6e956e5 11511
81b1e71c 11512 for (breakpoint *iter : found)
80f8a6eb 11513 {
c5aa993b 11514 if (from_tty)
81b1e71c
TT
11515 printf_unfiltered ("%d ", iter->number);
11516 delete_breakpoint (iter);
c906108c 11517 }
80f8a6eb
MS
11518 if (from_tty)
11519 putchar_unfiltered ('\n');
c906108c
SS
11520}
11521\f
11522/* Delete breakpoint in BS if they are `delete' breakpoints and
11523 all breakpoints that are marked for deletion, whether hit or not.
11524 This is called after any breakpoint is hit, or after errors. */
11525
11526void
fba45db2 11527breakpoint_auto_delete (bpstat bs)
c906108c 11528{
35df4500 11529 struct breakpoint *b, *b_tmp;
c906108c
SS
11530
11531 for (; bs; bs = bs->next)
f431efe5
PA
11532 if (bs->breakpoint_at
11533 && bs->breakpoint_at->disposition == disp_del
c906108c 11534 && bs->stop)
f431efe5 11535 delete_breakpoint (bs->breakpoint_at);
c906108c 11536
35df4500 11537 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 11538 {
b5de0fa7 11539 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
11540 delete_breakpoint (b);
11541 }
c906108c
SS
11542}
11543
4a64f543
MS
11544/* A comparison function for bp_location AP and BP being interfaced to
11545 qsort. Sort elements primarily by their ADDRESS (no matter what
11546 does breakpoint_address_is_meaningful say for its OWNER),
1a853c52 11547 secondarily by ordering first permanent elements and
4a64f543 11548 terciarily just ensuring the array is sorted stable way despite
e5dd4106 11549 qsort being an unstable algorithm. */
876fa593
JK
11550
11551static int
f5336ca5 11552bp_locations_compare (const void *ap, const void *bp)
876fa593 11553{
9a3c8263
SM
11554 const struct bp_location *a = *(const struct bp_location **) ap;
11555 const struct bp_location *b = *(const struct bp_location **) bp;
876fa593
JK
11556
11557 if (a->address != b->address)
11558 return (a->address > b->address) - (a->address < b->address);
11559
dea2aa5f
LM
11560 /* Sort locations at the same address by their pspace number, keeping
11561 locations of the same inferior (in a multi-inferior environment)
11562 grouped. */
11563
11564 if (a->pspace->num != b->pspace->num)
11565 return ((a->pspace->num > b->pspace->num)
11566 - (a->pspace->num < b->pspace->num));
11567
876fa593 11568 /* Sort permanent breakpoints first. */
1a853c52
PA
11569 if (a->permanent != b->permanent)
11570 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
876fa593 11571
c56a97f9
JK
11572 /* Make the internal GDB representation stable across GDB runs
11573 where A and B memory inside GDB can differ. Breakpoint locations of
11574 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
11575
11576 if (a->owner->number != b->owner->number)
c56a97f9
JK
11577 return ((a->owner->number > b->owner->number)
11578 - (a->owner->number < b->owner->number));
876fa593
JK
11579
11580 return (a > b) - (a < b);
11581}
11582
f5336ca5
PA
11583/* Set bp_locations_placed_address_before_address_max and
11584 bp_locations_shadow_len_after_address_max according to the current
11585 content of the bp_locations array. */
f7545552
TT
11586
11587static void
f5336ca5 11588bp_locations_target_extensions_update (void)
f7545552 11589{
876fa593
JK
11590 struct bp_location *bl, **blp_tmp;
11591
f5336ca5
PA
11592 bp_locations_placed_address_before_address_max = 0;
11593 bp_locations_shadow_len_after_address_max = 0;
876fa593
JK
11594
11595 ALL_BP_LOCATIONS (bl, blp_tmp)
11596 {
11597 CORE_ADDR start, end, addr;
11598
11599 if (!bp_location_has_shadow (bl))
11600 continue;
11601
11602 start = bl->target_info.placed_address;
11603 end = start + bl->target_info.shadow_len;
11604
11605 gdb_assert (bl->address >= start);
11606 addr = bl->address - start;
f5336ca5
PA
11607 if (addr > bp_locations_placed_address_before_address_max)
11608 bp_locations_placed_address_before_address_max = addr;
876fa593
JK
11609
11610 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
11611
11612 gdb_assert (bl->address < end);
11613 addr = end - bl->address;
f5336ca5
PA
11614 if (addr > bp_locations_shadow_len_after_address_max)
11615 bp_locations_shadow_len_after_address_max = addr;
876fa593 11616 }
f7545552
TT
11617}
11618
1e4d1764
YQ
11619/* Download tracepoint locations if they haven't been. */
11620
11621static void
11622download_tracepoint_locations (void)
11623{
7ed2c994 11624 struct breakpoint *b;
dd2e65cc 11625 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
1e4d1764 11626
5ed8105e 11627 scoped_restore_current_pspace_and_thread restore_pspace_thread;
1e4d1764 11628
7ed2c994 11629 ALL_TRACEPOINTS (b)
1e4d1764 11630 {
7ed2c994 11631 struct bp_location *bl;
1e4d1764 11632 struct tracepoint *t;
f2a8bc8a 11633 int bp_location_downloaded = 0;
1e4d1764 11634
7ed2c994 11635 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
11636 ? !may_insert_fast_tracepoints
11637 : !may_insert_tracepoints))
11638 continue;
11639
dd2e65cc
YQ
11640 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
11641 {
11642 if (target_can_download_tracepoint ())
11643 can_download_tracepoint = TRIBOOL_TRUE;
11644 else
11645 can_download_tracepoint = TRIBOOL_FALSE;
11646 }
11647
11648 if (can_download_tracepoint == TRIBOOL_FALSE)
11649 break;
11650
7ed2c994
YQ
11651 for (bl = b->loc; bl; bl = bl->next)
11652 {
11653 /* In tracepoint, locations are _never_ duplicated, so
11654 should_be_inserted is equivalent to
11655 unduplicated_should_be_inserted. */
11656 if (!should_be_inserted (bl) || bl->inserted)
11657 continue;
1e4d1764 11658
7ed2c994 11659 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 11660
7ed2c994 11661 target_download_tracepoint (bl);
1e4d1764 11662
7ed2c994 11663 bl->inserted = 1;
f2a8bc8a 11664 bp_location_downloaded = 1;
7ed2c994
YQ
11665 }
11666 t = (struct tracepoint *) b;
11667 t->number_on_target = b->number;
f2a8bc8a 11668 if (bp_location_downloaded)
76727919 11669 gdb::observers::breakpoint_modified.notify (b);
1e4d1764 11670 }
1e4d1764
YQ
11671}
11672
934709f0
PW
11673/* Swap the insertion/duplication state between two locations. */
11674
11675static void
11676swap_insertion (struct bp_location *left, struct bp_location *right)
11677{
11678 const int left_inserted = left->inserted;
11679 const int left_duplicate = left->duplicate;
b775012e 11680 const int left_needs_update = left->needs_update;
934709f0
PW
11681 const struct bp_target_info left_target_info = left->target_info;
11682
1e4d1764
YQ
11683 /* Locations of tracepoints can never be duplicated. */
11684 if (is_tracepoint (left->owner))
11685 gdb_assert (!left->duplicate);
11686 if (is_tracepoint (right->owner))
11687 gdb_assert (!right->duplicate);
11688
934709f0
PW
11689 left->inserted = right->inserted;
11690 left->duplicate = right->duplicate;
b775012e 11691 left->needs_update = right->needs_update;
934709f0
PW
11692 left->target_info = right->target_info;
11693 right->inserted = left_inserted;
11694 right->duplicate = left_duplicate;
b775012e 11695 right->needs_update = left_needs_update;
934709f0
PW
11696 right->target_info = left_target_info;
11697}
11698
b775012e
LM
11699/* Force the re-insertion of the locations at ADDRESS. This is called
11700 once a new/deleted/modified duplicate location is found and we are evaluating
11701 conditions on the target's side. Such conditions need to be updated on
11702 the target. */
11703
11704static void
11705force_breakpoint_reinsertion (struct bp_location *bl)
11706{
11707 struct bp_location **locp = NULL, **loc2p;
11708 struct bp_location *loc;
11709 CORE_ADDR address = 0;
11710 int pspace_num;
11711
11712 address = bl->address;
11713 pspace_num = bl->pspace->num;
11714
11715 /* This is only meaningful if the target is
11716 evaluating conditions and if the user has
11717 opted for condition evaluation on the target's
11718 side. */
11719 if (gdb_evaluates_breakpoint_condition_p ()
11720 || !target_supports_evaluation_of_breakpoint_conditions ())
11721 return;
11722
11723 /* Flag all breakpoint locations with this address and
11724 the same program space as the location
11725 as "its condition has changed". We need to
11726 update the conditions on the target's side. */
11727 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
11728 {
11729 loc = *loc2p;
11730
11731 if (!is_breakpoint (loc->owner)
11732 || pspace_num != loc->pspace->num)
11733 continue;
11734
11735 /* Flag the location appropriately. We use a different state to
11736 let everyone know that we already updated the set of locations
11737 with addr bl->address and program space bl->pspace. This is so
11738 we don't have to keep calling these functions just to mark locations
11739 that have already been marked. */
11740 loc->condition_changed = condition_updated;
11741
11742 /* Free the agent expression bytecode as well. We will compute
11743 it later on. */
833177a4 11744 loc->cond_bytecode.reset ();
b775012e
LM
11745 }
11746}
44702360
PA
11747/* Called whether new breakpoints are created, or existing breakpoints
11748 deleted, to update the global location list and recompute which
11749 locations are duplicate of which.
b775012e 11750
04086b45
PA
11751 The INSERT_MODE flag determines whether locations may not, may, or
11752 shall be inserted now. See 'enum ugll_insert_mode' for more
11753 info. */
b60e7edf 11754
0d381245 11755static void
44702360 11756update_global_location_list (enum ugll_insert_mode insert_mode)
0d381245 11757{
74960c60 11758 struct breakpoint *b;
876fa593 11759 struct bp_location **locp, *loc;
b775012e
LM
11760 /* Last breakpoint location address that was marked for update. */
11761 CORE_ADDR last_addr = 0;
11762 /* Last breakpoint location program space that was marked for update. */
11763 int last_pspace_num = -1;
f7545552 11764
2d134ed3
PA
11765 /* Used in the duplicates detection below. When iterating over all
11766 bp_locations, points to the first bp_location of a given address.
11767 Breakpoints and watchpoints of different types are never
11768 duplicates of each other. Keep one pointer for each type of
11769 breakpoint/watchpoint, so we only need to loop over all locations
11770 once. */
11771 struct bp_location *bp_loc_first; /* breakpoint */
11772 struct bp_location *wp_loc_first; /* hardware watchpoint */
11773 struct bp_location *awp_loc_first; /* access watchpoint */
11774 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 11775
f5336ca5
PA
11776 /* Saved former bp_locations array which we compare against the newly
11777 built bp_locations from the current state of ALL_BREAKPOINTS. */
81b1e71c 11778 struct bp_location **old_locp;
f5336ca5 11779 unsigned old_locations_count;
81b1e71c 11780 gdb::unique_xmalloc_ptr<struct bp_location *> old_locations (bp_locations);
876fa593 11781
f5336ca5
PA
11782 old_locations_count = bp_locations_count;
11783 bp_locations = NULL;
11784 bp_locations_count = 0;
0d381245 11785
74960c60 11786 ALL_BREAKPOINTS (b)
876fa593 11787 for (loc = b->loc; loc; loc = loc->next)
f5336ca5 11788 bp_locations_count++;
876fa593 11789
f5336ca5
PA
11790 bp_locations = XNEWVEC (struct bp_location *, bp_locations_count);
11791 locp = bp_locations;
876fa593
JK
11792 ALL_BREAKPOINTS (b)
11793 for (loc = b->loc; loc; loc = loc->next)
11794 *locp++ = loc;
f5336ca5
PA
11795 qsort (bp_locations, bp_locations_count, sizeof (*bp_locations),
11796 bp_locations_compare);
876fa593 11797
f5336ca5 11798 bp_locations_target_extensions_update ();
74960c60 11799
4a64f543
MS
11800 /* Identify bp_location instances that are no longer present in the
11801 new list, and therefore should be freed. Note that it's not
11802 necessary that those locations should be removed from inferior --
11803 if there's another location at the same address (previously
11804 marked as duplicate), we don't need to remove/insert the
11805 location.
876fa593 11806
4a64f543
MS
11807 LOCP is kept in sync with OLD_LOCP, each pointing to the current
11808 and former bp_location array state respectively. */
876fa593 11809
f5336ca5 11810 locp = bp_locations;
81b1e71c
TT
11811 for (old_locp = old_locations.get ();
11812 old_locp < old_locations.get () + old_locations_count;
876fa593 11813 old_locp++)
74960c60 11814 {
876fa593 11815 struct bp_location *old_loc = *old_locp;
c7d46a38 11816 struct bp_location **loc2p;
876fa593 11817
e5dd4106 11818 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 11819 not, we have to free it. */
c7d46a38 11820 int found_object = 0;
20874c92
VP
11821 /* Tells if the location should remain inserted in the target. */
11822 int keep_in_target = 0;
11823 int removed = 0;
876fa593 11824
4a64f543
MS
11825 /* Skip LOCP entries which will definitely never be needed.
11826 Stop either at or being the one matching OLD_LOC. */
f5336ca5 11827 while (locp < bp_locations + bp_locations_count
c7d46a38 11828 && (*locp)->address < old_loc->address)
876fa593 11829 locp++;
c7d46a38
PA
11830
11831 for (loc2p = locp;
f5336ca5 11832 (loc2p < bp_locations + bp_locations_count
c7d46a38
PA
11833 && (*loc2p)->address == old_loc->address);
11834 loc2p++)
11835 {
b775012e
LM
11836 /* Check if this is a new/duplicated location or a duplicated
11837 location that had its condition modified. If so, we want to send
11838 its condition to the target if evaluation of conditions is taking
11839 place there. */
11840 if ((*loc2p)->condition_changed == condition_modified
11841 && (last_addr != old_loc->address
11842 || last_pspace_num != old_loc->pspace->num))
c7d46a38 11843 {
b775012e
LM
11844 force_breakpoint_reinsertion (*loc2p);
11845 last_pspace_num = old_loc->pspace->num;
c7d46a38 11846 }
b775012e
LM
11847
11848 if (*loc2p == old_loc)
11849 found_object = 1;
c7d46a38 11850 }
74960c60 11851
b775012e
LM
11852 /* We have already handled this address, update it so that we don't
11853 have to go through updates again. */
11854 last_addr = old_loc->address;
11855
11856 /* Target-side condition evaluation: Handle deleted locations. */
11857 if (!found_object)
11858 force_breakpoint_reinsertion (old_loc);
11859
4a64f543
MS
11860 /* If this location is no longer present, and inserted, look if
11861 there's maybe a new location at the same address. If so,
11862 mark that one inserted, and don't remove this one. This is
11863 needed so that we don't have a time window where a breakpoint
11864 at certain location is not inserted. */
74960c60 11865
876fa593 11866 if (old_loc->inserted)
0d381245 11867 {
4a64f543
MS
11868 /* If the location is inserted now, we might have to remove
11869 it. */
74960c60 11870
876fa593 11871 if (found_object && should_be_inserted (old_loc))
74960c60 11872 {
4a64f543
MS
11873 /* The location is still present in the location list,
11874 and still should be inserted. Don't do anything. */
20874c92 11875 keep_in_target = 1;
74960c60
VP
11876 }
11877 else
11878 {
b775012e
LM
11879 /* This location still exists, but it won't be kept in the
11880 target since it may have been disabled. We proceed to
11881 remove its target-side condition. */
11882
4a64f543
MS
11883 /* The location is either no longer present, or got
11884 disabled. See if there's another location at the
11885 same address, in which case we don't need to remove
11886 this one from the target. */
876fa593 11887
2bdf28a0 11888 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
11889 if (breakpoint_address_is_meaningful (old_loc->owner))
11890 {
876fa593 11891 for (loc2p = locp;
f5336ca5 11892 (loc2p < bp_locations + bp_locations_count
c7d46a38 11893 && (*loc2p)->address == old_loc->address);
876fa593
JK
11894 loc2p++)
11895 {
11896 struct bp_location *loc2 = *loc2p;
11897
2d134ed3 11898 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 11899 {
85d721b8
PA
11900 /* Read watchpoint locations are switched to
11901 access watchpoints, if the former are not
11902 supported, but the latter are. */
11903 if (is_hardware_watchpoint (old_loc->owner))
11904 {
11905 gdb_assert (is_hardware_watchpoint (loc2->owner));
11906 loc2->watchpoint_type = old_loc->watchpoint_type;
11907 }
11908
934709f0
PW
11909 /* loc2 is a duplicated location. We need to check
11910 if it should be inserted in case it will be
11911 unduplicated. */
11912 if (loc2 != old_loc
11913 && unduplicated_should_be_inserted (loc2))
c7d46a38 11914 {
934709f0 11915 swap_insertion (old_loc, loc2);
c7d46a38
PA
11916 keep_in_target = 1;
11917 break;
11918 }
876fa593
JK
11919 }
11920 }
11921 }
74960c60
VP
11922 }
11923
20874c92
VP
11924 if (!keep_in_target)
11925 {
834c0d03 11926 if (remove_breakpoint (old_loc))
20874c92 11927 {
4a64f543
MS
11928 /* This is just about all we can do. We could keep
11929 this location on the global list, and try to
11930 remove it next time, but there's no particular
11931 reason why we will succeed next time.
20874c92 11932
4a64f543
MS
11933 Note that at this point, old_loc->owner is still
11934 valid, as delete_breakpoint frees the breakpoint
11935 only after calling us. */
3e43a32a
MS
11936 printf_filtered (_("warning: Error removing "
11937 "breakpoint %d\n"),
876fa593 11938 old_loc->owner->number);
20874c92
VP
11939 }
11940 removed = 1;
11941 }
0d381245 11942 }
74960c60
VP
11943
11944 if (!found_object)
1c5cfe86 11945 {
fbea99ea 11946 if (removed && target_is_non_stop_p ()
1cf4d951 11947 && need_moribund_for_location_type (old_loc))
20874c92 11948 {
db82e815
PA
11949 /* This location was removed from the target. In
11950 non-stop mode, a race condition is possible where
11951 we've removed a breakpoint, but stop events for that
11952 breakpoint are already queued and will arrive later.
11953 We apply an heuristic to be able to distinguish such
11954 SIGTRAPs from other random SIGTRAPs: we keep this
11955 breakpoint location for a bit, and will retire it
11956 after we see some number of events. The theory here
11957 is that reporting of events should, "on the average",
11958 be fair, so after a while we'll see events from all
11959 threads that have anything of interest, and no longer
11960 need to keep this breakpoint location around. We
11961 don't hold locations forever so to reduce chances of
11962 mistaking a non-breakpoint SIGTRAP for a breakpoint
11963 SIGTRAP.
11964
11965 The heuristic failing can be disastrous on
11966 decr_pc_after_break targets.
11967
11968 On decr_pc_after_break targets, like e.g., x86-linux,
11969 if we fail to recognize a late breakpoint SIGTRAP,
11970 because events_till_retirement has reached 0 too
11971 soon, we'll fail to do the PC adjustment, and report
11972 a random SIGTRAP to the user. When the user resumes
11973 the inferior, it will most likely immediately crash
2dec564e 11974 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
11975 corrupted, because of being resumed e.g., in the
11976 middle of a multi-byte instruction, or skipped a
11977 one-byte instruction. This was actually seen happen
11978 on native x86-linux, and should be less rare on
11979 targets that do not support new thread events, like
11980 remote, due to the heuristic depending on
11981 thread_count.
11982
11983 Mistaking a random SIGTRAP for a breakpoint trap
11984 causes similar symptoms (PC adjustment applied when
11985 it shouldn't), but then again, playing with SIGTRAPs
11986 behind the debugger's back is asking for trouble.
11987
11988 Since hardware watchpoint traps are always
11989 distinguishable from other traps, so we don't need to
11990 apply keep hardware watchpoint moribund locations
11991 around. We simply always ignore hardware watchpoint
11992 traps we can no longer explain. */
11993
876fa593
JK
11994 old_loc->events_till_retirement = 3 * (thread_count () + 1);
11995 old_loc->owner = NULL;
20874c92 11996
1123588c 11997 moribund_locations.push_back (old_loc);
1c5cfe86
PA
11998 }
11999 else
f431efe5
PA
12000 {
12001 old_loc->owner = NULL;
12002 decref_bp_location (&old_loc);
12003 }
20874c92 12004 }
74960c60 12005 }
1c5cfe86 12006
348d480f
PA
12007 /* Rescan breakpoints at the same address and section, marking the
12008 first one as "first" and any others as "duplicates". This is so
12009 that the bpt instruction is only inserted once. If we have a
12010 permanent breakpoint at the same place as BPT, make that one the
12011 official one, and the rest as duplicates. Permanent breakpoints
12012 are sorted first for the same address.
12013
12014 Do the same for hardware watchpoints, but also considering the
12015 watchpoint's type (regular/access/read) and length. */
12016
12017 bp_loc_first = NULL;
12018 wp_loc_first = NULL;
12019 awp_loc_first = NULL;
12020 rwp_loc_first = NULL;
12021 ALL_BP_LOCATIONS (loc, locp)
12022 {
12023 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12024 non-NULL. */
348d480f 12025 struct bp_location **loc_first_p;
d3fbdd86 12026 b = loc->owner;
348d480f 12027
6f380991 12028 if (!unduplicated_should_be_inserted (loc)
348d480f 12029 || !breakpoint_address_is_meaningful (b)
1e4d1764
YQ
12030 /* Don't detect duplicate for tracepoint locations because they are
12031 never duplicated. See the comments in field `duplicate' of
12032 `struct bp_location'. */
348d480f 12033 || is_tracepoint (b))
b775012e
LM
12034 {
12035 /* Clear the condition modification flag. */
12036 loc->condition_changed = condition_unchanged;
12037 continue;
12038 }
348d480f 12039
348d480f
PA
12040 if (b->type == bp_hardware_watchpoint)
12041 loc_first_p = &wp_loc_first;
12042 else if (b->type == bp_read_watchpoint)
12043 loc_first_p = &rwp_loc_first;
12044 else if (b->type == bp_access_watchpoint)
12045 loc_first_p = &awp_loc_first;
12046 else
12047 loc_first_p = &bp_loc_first;
12048
12049 if (*loc_first_p == NULL
12050 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12051 || !breakpoint_locations_match (loc, *loc_first_p))
12052 {
12053 *loc_first_p = loc;
12054 loc->duplicate = 0;
b775012e
LM
12055
12056 if (is_breakpoint (loc->owner) && loc->condition_changed)
12057 {
12058 loc->needs_update = 1;
12059 /* Clear the condition modification flag. */
12060 loc->condition_changed = condition_unchanged;
12061 }
348d480f
PA
12062 continue;
12063 }
12064
934709f0
PW
12065
12066 /* This and the above ensure the invariant that the first location
12067 is not duplicated, and is the inserted one.
12068 All following are marked as duplicated, and are not inserted. */
12069 if (loc->inserted)
12070 swap_insertion (loc, *loc_first_p);
348d480f
PA
12071 loc->duplicate = 1;
12072
b775012e
LM
12073 /* Clear the condition modification flag. */
12074 loc->condition_changed = condition_unchanged;
348d480f
PA
12075 }
12076
a25a5a45 12077 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
b775012e 12078 {
04086b45 12079 if (insert_mode != UGLL_DONT_INSERT)
b775012e
LM
12080 insert_breakpoint_locations ();
12081 else
12082 {
44702360
PA
12083 /* Even though the caller told us to not insert new
12084 locations, we may still need to update conditions on the
12085 target's side of breakpoints that were already inserted
12086 if the target is evaluating breakpoint conditions. We
b775012e
LM
12087 only update conditions for locations that are marked
12088 "needs_update". */
12089 update_inserted_breakpoint_locations ();
12090 }
12091 }
348d480f 12092
04086b45 12093 if (insert_mode != UGLL_DONT_INSERT)
1e4d1764 12094 download_tracepoint_locations ();
348d480f
PA
12095}
12096
12097void
12098breakpoint_retire_moribund (void)
12099{
1123588c
TT
12100 for (int ix = 0; ix < moribund_locations.size (); ++ix)
12101 {
12102 struct bp_location *loc = moribund_locations[ix];
12103 if (--(loc->events_till_retirement) == 0)
12104 {
12105 decref_bp_location (&loc);
12106 unordered_remove (moribund_locations, ix);
12107 --ix;
12108 }
12109 }
348d480f
PA
12110}
12111
12112static void
44702360 12113update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
348d480f 12114{
348d480f 12115
492d29ea
PA
12116 TRY
12117 {
12118 update_global_location_list (insert_mode);
12119 }
12120 CATCH (e, RETURN_MASK_ERROR)
12121 {
12122 }
12123 END_CATCH
348d480f
PA
12124}
12125
12126/* Clear BKP from a BPS. */
12127
12128static void
12129bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12130{
12131 bpstat bs;
12132
12133 for (bs = bps; bs; bs = bs->next)
12134 if (bs->breakpoint_at == bpt)
12135 {
12136 bs->breakpoint_at = NULL;
12137 bs->old_val = NULL;
12138 /* bs->commands will be freed later. */
12139 }
12140}
12141
12142/* Callback for iterate_over_threads. */
12143static int
12144bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12145{
9a3c8263 12146 struct breakpoint *bpt = (struct breakpoint *) data;
348d480f
PA
12147
12148 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12149 return 0;
12150}
12151
12152/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12153 callbacks. */
12154
12155static void
12156say_where (struct breakpoint *b)
12157{
12158 struct value_print_options opts;
12159
12160 get_user_print_options (&opts);
12161
12162 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12163 single string. */
12164 if (b->loc == NULL)
12165 {
f00aae0f
KS
12166 /* For pending locations, the output differs slightly based
12167 on b->extra_string. If this is non-NULL, it contains either
12168 a condition or dprintf arguments. */
12169 if (b->extra_string == NULL)
12170 {
12171 printf_filtered (_(" (%s) pending."),
d28cd78a 12172 event_location_to_string (b->location.get ()));
f00aae0f
KS
12173 }
12174 else if (b->type == bp_dprintf)
12175 {
12176 printf_filtered (_(" (%s,%s) pending."),
d28cd78a 12177 event_location_to_string (b->location.get ()),
f00aae0f
KS
12178 b->extra_string);
12179 }
12180 else
12181 {
12182 printf_filtered (_(" (%s %s) pending."),
d28cd78a 12183 event_location_to_string (b->location.get ()),
f00aae0f
KS
12184 b->extra_string);
12185 }
348d480f
PA
12186 }
12187 else
12188 {
2f202fde 12189 if (opts.addressprint || b->loc->symtab == NULL)
348d480f
PA
12190 {
12191 printf_filtered (" at ");
12192 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12193 gdb_stdout);
12194 }
2f202fde 12195 if (b->loc->symtab != NULL)
f8eba3c6
TT
12196 {
12197 /* If there is a single location, we can print the location
12198 more nicely. */
12199 if (b->loc->next == NULL)
12200 printf_filtered (": file %s, line %d.",
05cba821
JK
12201 symtab_to_filename_for_display (b->loc->symtab),
12202 b->loc->line_number);
f8eba3c6
TT
12203 else
12204 /* This is not ideal, but each location may have a
12205 different file name, and this at least reflects the
12206 real situation somewhat. */
f00aae0f 12207 printf_filtered (": %s.",
d28cd78a 12208 event_location_to_string (b->location.get ()));
f8eba3c6 12209 }
348d480f
PA
12210
12211 if (b->loc->next)
12212 {
12213 struct bp_location *loc = b->loc;
12214 int n = 0;
12215 for (; loc; loc = loc->next)
12216 ++n;
12217 printf_filtered (" (%d locations)", n);
12218 }
12219 }
12220}
12221
348d480f
PA
12222/* Default bp_location_ops methods. */
12223
12224static void
12225bp_location_dtor (struct bp_location *self)
12226{
348d480f
PA
12227 xfree (self->function_name);
12228}
12229
12230static const struct bp_location_ops bp_location_ops =
12231{
12232 bp_location_dtor
12233};
12234
c1fc2657 12235/* Destructor for the breakpoint base class. */
348d480f 12236
c1fc2657 12237breakpoint::~breakpoint ()
348d480f 12238{
c1fc2657
SM
12239 xfree (this->cond_string);
12240 xfree (this->extra_string);
12241 xfree (this->filter);
348d480f
PA
12242}
12243
2060206e
PA
12244static struct bp_location *
12245base_breakpoint_allocate_location (struct breakpoint *self)
348d480f 12246{
5625a286 12247 return new bp_location (&bp_location_ops, self);
348d480f
PA
12248}
12249
2060206e
PA
12250static void
12251base_breakpoint_re_set (struct breakpoint *b)
12252{
12253 /* Nothing to re-set. */
12254}
12255
12256#define internal_error_pure_virtual_called() \
12257 gdb_assert_not_reached ("pure virtual function called")
12258
12259static int
12260base_breakpoint_insert_location (struct bp_location *bl)
12261{
12262 internal_error_pure_virtual_called ();
12263}
12264
12265static int
73971819
PA
12266base_breakpoint_remove_location (struct bp_location *bl,
12267 enum remove_bp_reason reason)
2060206e
PA
12268{
12269 internal_error_pure_virtual_called ();
12270}
12271
12272static int
12273base_breakpoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12274 const address_space *aspace,
09ac7c10
TT
12275 CORE_ADDR bp_addr,
12276 const struct target_waitstatus *ws)
2060206e
PA
12277{
12278 internal_error_pure_virtual_called ();
12279}
12280
12281static void
12282base_breakpoint_check_status (bpstat bs)
12283{
12284 /* Always stop. */
12285}
12286
12287/* A "works_in_software_mode" breakpoint_ops method that just internal
12288 errors. */
12289
12290static int
12291base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12292{
12293 internal_error_pure_virtual_called ();
12294}
12295
12296/* A "resources_needed" breakpoint_ops method that just internal
12297 errors. */
12298
12299static int
12300base_breakpoint_resources_needed (const struct bp_location *bl)
12301{
12302 internal_error_pure_virtual_called ();
12303}
12304
12305static enum print_stop_action
12306base_breakpoint_print_it (bpstat bs)
12307{
12308 internal_error_pure_virtual_called ();
12309}
12310
12311static void
12312base_breakpoint_print_one_detail (const struct breakpoint *self,
12313 struct ui_out *uiout)
12314{
12315 /* nothing */
12316}
12317
12318static void
12319base_breakpoint_print_mention (struct breakpoint *b)
12320{
12321 internal_error_pure_virtual_called ();
12322}
12323
12324static void
12325base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12326{
12327 internal_error_pure_virtual_called ();
12328}
12329
983af33b 12330static void
f00aae0f
KS
12331base_breakpoint_create_sals_from_location
12332 (const struct event_location *location,
12333 struct linespec_result *canonical,
12334 enum bptype type_wanted)
983af33b
SDJ
12335{
12336 internal_error_pure_virtual_called ();
12337}
12338
12339static void
12340base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12341 struct linespec_result *c,
e1e01040
PA
12342 gdb::unique_xmalloc_ptr<char> cond_string,
12343 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12344 enum bptype type_wanted,
12345 enum bpdisp disposition,
12346 int thread,
12347 int task, int ignore_count,
12348 const struct breakpoint_ops *o,
12349 int from_tty, int enabled,
44f238bb 12350 int internal, unsigned flags)
983af33b
SDJ
12351{
12352 internal_error_pure_virtual_called ();
12353}
12354
6c5b2ebe 12355static std::vector<symtab_and_line>
f00aae0f
KS
12356base_breakpoint_decode_location (struct breakpoint *b,
12357 const struct event_location *location,
6c5b2ebe 12358 struct program_space *search_pspace)
983af33b
SDJ
12359{
12360 internal_error_pure_virtual_called ();
12361}
12362
ab04a2af
TT
12363/* The default 'explains_signal' method. */
12364
47591c29 12365static int
427cd150 12366base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 12367{
47591c29 12368 return 1;
ab04a2af
TT
12369}
12370
9d6e6e84
HZ
12371/* The default "after_condition_true" method. */
12372
12373static void
12374base_breakpoint_after_condition_true (struct bpstats *bs)
12375{
12376 /* Nothing to do. */
12377}
12378
ab04a2af 12379struct breakpoint_ops base_breakpoint_ops =
2060206e 12380{
2060206e
PA
12381 base_breakpoint_allocate_location,
12382 base_breakpoint_re_set,
12383 base_breakpoint_insert_location,
12384 base_breakpoint_remove_location,
12385 base_breakpoint_breakpoint_hit,
12386 base_breakpoint_check_status,
12387 base_breakpoint_resources_needed,
12388 base_breakpoint_works_in_software_mode,
12389 base_breakpoint_print_it,
12390 NULL,
12391 base_breakpoint_print_one_detail,
12392 base_breakpoint_print_mention,
983af33b 12393 base_breakpoint_print_recreate,
5f700d83 12394 base_breakpoint_create_sals_from_location,
983af33b 12395 base_breakpoint_create_breakpoints_sal,
5f700d83 12396 base_breakpoint_decode_location,
9d6e6e84
HZ
12397 base_breakpoint_explains_signal,
12398 base_breakpoint_after_condition_true,
2060206e
PA
12399};
12400
12401/* Default breakpoint_ops methods. */
12402
12403static void
348d480f
PA
12404bkpt_re_set (struct breakpoint *b)
12405{
06edf0c0 12406 /* FIXME: is this still reachable? */
9ef9e6a6 12407 if (breakpoint_event_location_empty_p (b))
06edf0c0 12408 {
f00aae0f 12409 /* Anything without a location can't be re-set. */
348d480f 12410 delete_breakpoint (b);
06edf0c0 12411 return;
348d480f 12412 }
06edf0c0
PA
12413
12414 breakpoint_re_set_default (b);
348d480f
PA
12415}
12416
2060206e 12417static int
348d480f
PA
12418bkpt_insert_location (struct bp_location *bl)
12419{
cd6c3b4f
YQ
12420 CORE_ADDR addr = bl->target_info.reqstd_address;
12421
579c6ad9 12422 bl->target_info.kind = breakpoint_kind (bl, &addr);
cd6c3b4f
YQ
12423 bl->target_info.placed_address = addr;
12424
348d480f 12425 if (bl->loc_type == bp_loc_hardware_breakpoint)
7c16b83e 12426 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
348d480f 12427 else
7c16b83e 12428 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
348d480f
PA
12429}
12430
2060206e 12431static int
73971819 12432bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
348d480f
PA
12433{
12434 if (bl->loc_type == bp_loc_hardware_breakpoint)
12435 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12436 else
73971819 12437 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
348d480f
PA
12438}
12439
2060206e 12440static int
348d480f 12441bkpt_breakpoint_hit (const struct bp_location *bl,
bd522513 12442 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12443 const struct target_waitstatus *ws)
348d480f 12444{
09ac7c10 12445 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 12446 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
12447 return 0;
12448
348d480f
PA
12449 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12450 aspace, bp_addr))
12451 return 0;
12452
12453 if (overlay_debugging /* unmapped overlay section */
12454 && section_is_overlay (bl->section)
12455 && !section_is_mapped (bl->section))
12456 return 0;
12457
12458 return 1;
12459}
12460
cd1608cc
PA
12461static int
12462dprintf_breakpoint_hit (const struct bp_location *bl,
bd522513 12463 const address_space *aspace, CORE_ADDR bp_addr,
cd1608cc
PA
12464 const struct target_waitstatus *ws)
12465{
12466 if (dprintf_style == dprintf_style_agent
12467 && target_can_run_breakpoint_commands ())
12468 {
12469 /* An agent-style dprintf never causes a stop. If we see a trap
12470 for this address it must be for a breakpoint that happens to
12471 be set at the same address. */
12472 return 0;
12473 }
12474
12475 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
12476}
12477
2060206e 12478static int
348d480f
PA
12479bkpt_resources_needed (const struct bp_location *bl)
12480{
12481 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12482
12483 return 1;
12484}
12485
2060206e 12486static enum print_stop_action
348d480f
PA
12487bkpt_print_it (bpstat bs)
12488{
348d480f
PA
12489 struct breakpoint *b;
12490 const struct bp_location *bl;
001c8c33 12491 int bp_temp;
79a45e25 12492 struct ui_out *uiout = current_uiout;
348d480f
PA
12493
12494 gdb_assert (bs->bp_location_at != NULL);
12495
12496 bl = bs->bp_location_at;
12497 b = bs->breakpoint_at;
12498
001c8c33
PA
12499 bp_temp = b->disposition == disp_del;
12500 if (bl->address != bl->requested_address)
12501 breakpoint_adjustment_warning (bl->requested_address,
12502 bl->address,
12503 b->number, 1);
12504 annotate_breakpoint (b->number);
f303dbd6
PA
12505 maybe_print_thread_hit_breakpoint (uiout);
12506
001c8c33 12507 if (bp_temp)
112e8700 12508 uiout->text ("Temporary breakpoint ");
001c8c33 12509 else
112e8700
SM
12510 uiout->text ("Breakpoint ");
12511 if (uiout->is_mi_like_p ())
348d480f 12512 {
112e8700 12513 uiout->field_string ("reason",
001c8c33 12514 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 12515 uiout->field_string ("disp", bpdisp_text (b->disposition));
06edf0c0 12516 }
112e8700
SM
12517 uiout->field_int ("bkptno", b->number);
12518 uiout->text (", ");
06edf0c0 12519
001c8c33 12520 return PRINT_SRC_AND_LOC;
06edf0c0
PA
12521}
12522
2060206e 12523static void
06edf0c0
PA
12524bkpt_print_mention (struct breakpoint *b)
12525{
112e8700 12526 if (current_uiout->is_mi_like_p ())
06edf0c0
PA
12527 return;
12528
12529 switch (b->type)
12530 {
12531 case bp_breakpoint:
12532 case bp_gnu_ifunc_resolver:
12533 if (b->disposition == disp_del)
12534 printf_filtered (_("Temporary breakpoint"));
12535 else
12536 printf_filtered (_("Breakpoint"));
12537 printf_filtered (_(" %d"), b->number);
12538 if (b->type == bp_gnu_ifunc_resolver)
12539 printf_filtered (_(" at gnu-indirect-function resolver"));
12540 break;
12541 case bp_hardware_breakpoint:
12542 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
12543 break;
e7e0cddf
SS
12544 case bp_dprintf:
12545 printf_filtered (_("Dprintf %d"), b->number);
12546 break;
06edf0c0
PA
12547 }
12548
12549 say_where (b);
12550}
12551
2060206e 12552static void
06edf0c0
PA
12553bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12554{
12555 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12556 fprintf_unfiltered (fp, "tbreak");
12557 else if (tp->type == bp_breakpoint)
12558 fprintf_unfiltered (fp, "break");
12559 else if (tp->type == bp_hardware_breakpoint
12560 && tp->disposition == disp_del)
12561 fprintf_unfiltered (fp, "thbreak");
12562 else if (tp->type == bp_hardware_breakpoint)
12563 fprintf_unfiltered (fp, "hbreak");
12564 else
12565 internal_error (__FILE__, __LINE__,
12566 _("unhandled breakpoint type %d"), (int) tp->type);
12567
f00aae0f 12568 fprintf_unfiltered (fp, " %s",
d28cd78a 12569 event_location_to_string (tp->location.get ()));
f00aae0f
KS
12570
12571 /* Print out extra_string if this breakpoint is pending. It might
12572 contain, for example, conditions that were set by the user. */
12573 if (tp->loc == NULL && tp->extra_string != NULL)
12574 fprintf_unfiltered (fp, " %s", tp->extra_string);
12575
dd11a36c 12576 print_recreate_thread (tp, fp);
06edf0c0
PA
12577}
12578
983af33b 12579static void
f00aae0f
KS
12580bkpt_create_sals_from_location (const struct event_location *location,
12581 struct linespec_result *canonical,
12582 enum bptype type_wanted)
983af33b 12583{
f00aae0f 12584 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12585}
12586
12587static void
12588bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
12589 struct linespec_result *canonical,
e1e01040
PA
12590 gdb::unique_xmalloc_ptr<char> cond_string,
12591 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12592 enum bptype type_wanted,
12593 enum bpdisp disposition,
12594 int thread,
12595 int task, int ignore_count,
12596 const struct breakpoint_ops *ops,
12597 int from_tty, int enabled,
44f238bb 12598 int internal, unsigned flags)
983af33b 12599{
023fa29b 12600 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
12601 std::move (cond_string),
12602 std::move (extra_string),
e7e0cddf 12603 type_wanted,
983af33b
SDJ
12604 disposition, thread, task,
12605 ignore_count, ops, from_tty,
44f238bb 12606 enabled, internal, flags);
983af33b
SDJ
12607}
12608
6c5b2ebe 12609static std::vector<symtab_and_line>
f00aae0f
KS
12610bkpt_decode_location (struct breakpoint *b,
12611 const struct event_location *location,
6c5b2ebe 12612 struct program_space *search_pspace)
983af33b 12613{
6c5b2ebe 12614 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
12615}
12616
06edf0c0
PA
12617/* Virtual table for internal breakpoints. */
12618
12619static void
12620internal_bkpt_re_set (struct breakpoint *b)
12621{
12622 switch (b->type)
12623 {
12624 /* Delete overlay event and longjmp master breakpoints; they
12625 will be reset later by breakpoint_re_set. */
12626 case bp_overlay_event:
12627 case bp_longjmp_master:
12628 case bp_std_terminate_master:
12629 case bp_exception_master:
12630 delete_breakpoint (b);
12631 break;
12632
12633 /* This breakpoint is special, it's set up when the inferior
12634 starts and we really don't want to touch it. */
12635 case bp_shlib_event:
12636
12637 /* Like bp_shlib_event, this breakpoint type is special. Once
12638 it is set up, we do not want to touch it. */
12639 case bp_thread_event:
12640 break;
12641 }
12642}
12643
12644static void
12645internal_bkpt_check_status (bpstat bs)
12646{
a9b3a50f
PA
12647 if (bs->breakpoint_at->type == bp_shlib_event)
12648 {
12649 /* If requested, stop when the dynamic linker notifies GDB of
12650 events. This allows the user to get control and place
12651 breakpoints in initializer routines for dynamically loaded
12652 objects (among other things). */
12653 bs->stop = stop_on_solib_events;
12654 bs->print = stop_on_solib_events;
12655 }
12656 else
12657 bs->stop = 0;
06edf0c0
PA
12658}
12659
12660static enum print_stop_action
12661internal_bkpt_print_it (bpstat bs)
12662{
06edf0c0 12663 struct breakpoint *b;
06edf0c0 12664
06edf0c0
PA
12665 b = bs->breakpoint_at;
12666
06edf0c0
PA
12667 switch (b->type)
12668 {
348d480f
PA
12669 case bp_shlib_event:
12670 /* Did we stop because the user set the stop_on_solib_events
12671 variable? (If so, we report this as a generic, "Stopped due
12672 to shlib event" message.) */
edcc5120 12673 print_solib_event (0);
348d480f
PA
12674 break;
12675
12676 case bp_thread_event:
12677 /* Not sure how we will get here.
12678 GDB should not stop for these breakpoints. */
12679 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12680 break;
12681
12682 case bp_overlay_event:
12683 /* By analogy with the thread event, GDB should not stop for these. */
12684 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12685 break;
12686
12687 case bp_longjmp_master:
12688 /* These should never be enabled. */
12689 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
12690 break;
12691
12692 case bp_std_terminate_master:
12693 /* These should never be enabled. */
12694 printf_filtered (_("std::terminate Master Breakpoint: "
12695 "gdb should not stop!\n"));
348d480f
PA
12696 break;
12697
12698 case bp_exception_master:
12699 /* These should never be enabled. */
12700 printf_filtered (_("Exception Master Breakpoint: "
12701 "gdb should not stop!\n"));
06edf0c0
PA
12702 break;
12703 }
12704
001c8c33 12705 return PRINT_NOTHING;
06edf0c0
PA
12706}
12707
12708static void
12709internal_bkpt_print_mention (struct breakpoint *b)
12710{
12711 /* Nothing to mention. These breakpoints are internal. */
12712}
12713
06edf0c0
PA
12714/* Virtual table for momentary breakpoints */
12715
12716static void
12717momentary_bkpt_re_set (struct breakpoint *b)
12718{
12719 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 12720 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
12721 Otherwise these should have been blown away via the cleanup chain
12722 or by breakpoint_init_inferior when we rerun the executable. */
12723}
12724
12725static void
12726momentary_bkpt_check_status (bpstat bs)
12727{
12728 /* Nothing. The point of these breakpoints is causing a stop. */
12729}
12730
12731static enum print_stop_action
12732momentary_bkpt_print_it (bpstat bs)
12733{
001c8c33 12734 return PRINT_UNKNOWN;
348d480f
PA
12735}
12736
06edf0c0
PA
12737static void
12738momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 12739{
06edf0c0 12740 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
12741}
12742
e2e4d78b
JK
12743/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
12744
12745 It gets cleared already on the removal of the first one of such placed
12746 breakpoints. This is OK as they get all removed altogether. */
12747
c1fc2657 12748longjmp_breakpoint::~longjmp_breakpoint ()
e2e4d78b 12749{
c1fc2657 12750 thread_info *tp = find_thread_global_id (this->thread);
e2e4d78b 12751
c1fc2657 12752 if (tp != NULL)
e2e4d78b 12753 tp->initiating_frame = null_frame_id;
e2e4d78b
JK
12754}
12755
55aa24fb
SDJ
12756/* Specific methods for probe breakpoints. */
12757
12758static int
12759bkpt_probe_insert_location (struct bp_location *bl)
12760{
12761 int v = bkpt_insert_location (bl);
12762
12763 if (v == 0)
12764 {
12765 /* The insertion was successful, now let's set the probe's semaphore
12766 if needed. */
935676c9 12767 bl->probe.prob->set_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb
SDJ
12768 }
12769
12770 return v;
12771}
12772
12773static int
73971819
PA
12774bkpt_probe_remove_location (struct bp_location *bl,
12775 enum remove_bp_reason reason)
55aa24fb
SDJ
12776{
12777 /* Let's clear the semaphore before removing the location. */
935676c9 12778 bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb 12779
73971819 12780 return bkpt_remove_location (bl, reason);
55aa24fb
SDJ
12781}
12782
12783static void
f00aae0f 12784bkpt_probe_create_sals_from_location (const struct event_location *location,
5f700d83 12785 struct linespec_result *canonical,
f00aae0f 12786 enum bptype type_wanted)
55aa24fb
SDJ
12787{
12788 struct linespec_sals lsal;
12789
c2f4122d 12790 lsal.sals = parse_probes (location, NULL, canonical);
8e9e35b1
TT
12791 lsal.canonical
12792 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 12793 canonical->lsals.push_back (std::move (lsal));
55aa24fb
SDJ
12794}
12795
6c5b2ebe 12796static std::vector<symtab_and_line>
f00aae0f
KS
12797bkpt_probe_decode_location (struct breakpoint *b,
12798 const struct event_location *location,
6c5b2ebe 12799 struct program_space *search_pspace)
55aa24fb 12800{
6c5b2ebe
PA
12801 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL);
12802 if (sals.empty ())
55aa24fb 12803 error (_("probe not found"));
6c5b2ebe 12804 return sals;
55aa24fb
SDJ
12805}
12806
348d480f 12807/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 12808
348d480f
PA
12809static void
12810tracepoint_re_set (struct breakpoint *b)
12811{
12812 breakpoint_re_set_default (b);
12813}
876fa593 12814
348d480f
PA
12815static int
12816tracepoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12817 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12818 const struct target_waitstatus *ws)
348d480f
PA
12819{
12820 /* By definition, the inferior does not report stops at
12821 tracepoints. */
12822 return 0;
74960c60
VP
12823}
12824
12825static void
348d480f
PA
12826tracepoint_print_one_detail (const struct breakpoint *self,
12827 struct ui_out *uiout)
74960c60 12828{
d9b3f62e 12829 struct tracepoint *tp = (struct tracepoint *) self;
5d9310c4 12830 if (!tp->static_trace_marker_id.empty ())
348d480f
PA
12831 {
12832 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 12833
112e8700
SM
12834 uiout->text ("\tmarker id is ");
12835 uiout->field_string ("static-tracepoint-marker-string-id",
d9b3f62e 12836 tp->static_trace_marker_id);
112e8700 12837 uiout->text ("\n");
348d480f 12838 }
0d381245
VP
12839}
12840
a474d7c2 12841static void
348d480f 12842tracepoint_print_mention (struct breakpoint *b)
a474d7c2 12843{
112e8700 12844 if (current_uiout->is_mi_like_p ())
348d480f 12845 return;
cc59ec59 12846
348d480f
PA
12847 switch (b->type)
12848 {
12849 case bp_tracepoint:
12850 printf_filtered (_("Tracepoint"));
12851 printf_filtered (_(" %d"), b->number);
12852 break;
12853 case bp_fast_tracepoint:
12854 printf_filtered (_("Fast tracepoint"));
12855 printf_filtered (_(" %d"), b->number);
12856 break;
12857 case bp_static_tracepoint:
12858 printf_filtered (_("Static tracepoint"));
12859 printf_filtered (_(" %d"), b->number);
12860 break;
12861 default:
12862 internal_error (__FILE__, __LINE__,
12863 _("unhandled tracepoint type %d"), (int) b->type);
12864 }
12865
12866 say_where (b);
a474d7c2
PA
12867}
12868
348d480f 12869static void
d9b3f62e 12870tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 12871{
d9b3f62e
PA
12872 struct tracepoint *tp = (struct tracepoint *) self;
12873
12874 if (self->type == bp_fast_tracepoint)
348d480f 12875 fprintf_unfiltered (fp, "ftrace");
c93e8391 12876 else if (self->type == bp_static_tracepoint)
348d480f 12877 fprintf_unfiltered (fp, "strace");
d9b3f62e 12878 else if (self->type == bp_tracepoint)
348d480f
PA
12879 fprintf_unfiltered (fp, "trace");
12880 else
12881 internal_error (__FILE__, __LINE__,
d9b3f62e 12882 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 12883
f00aae0f 12884 fprintf_unfiltered (fp, " %s",
d28cd78a 12885 event_location_to_string (self->location.get ()));
d9b3f62e
PA
12886 print_recreate_thread (self, fp);
12887
12888 if (tp->pass_count)
12889 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
12890}
12891
983af33b 12892static void
f00aae0f
KS
12893tracepoint_create_sals_from_location (const struct event_location *location,
12894 struct linespec_result *canonical,
12895 enum bptype type_wanted)
983af33b 12896{
f00aae0f 12897 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12898}
12899
12900static void
12901tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12902 struct linespec_result *canonical,
e1e01040
PA
12903 gdb::unique_xmalloc_ptr<char> cond_string,
12904 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12905 enum bptype type_wanted,
12906 enum bpdisp disposition,
12907 int thread,
12908 int task, int ignore_count,
12909 const struct breakpoint_ops *ops,
12910 int from_tty, int enabled,
44f238bb 12911 int internal, unsigned flags)
983af33b 12912{
023fa29b 12913 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
12914 std::move (cond_string),
12915 std::move (extra_string),
e7e0cddf 12916 type_wanted,
983af33b
SDJ
12917 disposition, thread, task,
12918 ignore_count, ops, from_tty,
44f238bb 12919 enabled, internal, flags);
983af33b
SDJ
12920}
12921
6c5b2ebe 12922static std::vector<symtab_and_line>
f00aae0f
KS
12923tracepoint_decode_location (struct breakpoint *b,
12924 const struct event_location *location,
6c5b2ebe 12925 struct program_space *search_pspace)
983af33b 12926{
6c5b2ebe 12927 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
12928}
12929
2060206e 12930struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 12931
55aa24fb
SDJ
12932/* The breakpoint_ops structure to be use on tracepoints placed in a
12933 static probe. */
12934
12935static void
f00aae0f
KS
12936tracepoint_probe_create_sals_from_location
12937 (const struct event_location *location,
12938 struct linespec_result *canonical,
12939 enum bptype type_wanted)
55aa24fb
SDJ
12940{
12941 /* We use the same method for breakpoint on probes. */
f00aae0f 12942 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
55aa24fb
SDJ
12943}
12944
6c5b2ebe 12945static std::vector<symtab_and_line>
f00aae0f
KS
12946tracepoint_probe_decode_location (struct breakpoint *b,
12947 const struct event_location *location,
6c5b2ebe 12948 struct program_space *search_pspace)
55aa24fb
SDJ
12949{
12950 /* We use the same method for breakpoint on probes. */
6c5b2ebe 12951 return bkpt_probe_decode_location (b, location, search_pspace);
55aa24fb
SDJ
12952}
12953
12954static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
12955
5c2b4418
HZ
12956/* Dprintf breakpoint_ops methods. */
12957
12958static void
12959dprintf_re_set (struct breakpoint *b)
12960{
12961 breakpoint_re_set_default (b);
12962
f00aae0f
KS
12963 /* extra_string should never be non-NULL for dprintf. */
12964 gdb_assert (b->extra_string != NULL);
5c2b4418
HZ
12965
12966 /* 1 - connect to target 1, that can run breakpoint commands.
12967 2 - create a dprintf, which resolves fine.
12968 3 - disconnect from target 1
12969 4 - connect to target 2, that can NOT run breakpoint commands.
12970
12971 After steps #3/#4, you'll want the dprintf command list to
12972 be updated, because target 1 and 2 may well return different
12973 answers for target_can_run_breakpoint_commands().
12974 Given absence of finer grained resetting, we get to do
12975 it all the time. */
12976 if (b->extra_string != NULL)
12977 update_dprintf_command_list (b);
12978}
12979
2d9442cc
HZ
12980/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
12981
12982static void
12983dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12984{
f00aae0f 12985 fprintf_unfiltered (fp, "dprintf %s,%s",
d28cd78a 12986 event_location_to_string (tp->location.get ()),
2d9442cc
HZ
12987 tp->extra_string);
12988 print_recreate_thread (tp, fp);
12989}
12990
9d6e6e84
HZ
12991/* Implement the "after_condition_true" breakpoint_ops method for
12992 dprintf.
12993
12994 dprintf's are implemented with regular commands in their command
12995 list, but we run the commands here instead of before presenting the
12996 stop to the user, as dprintf's don't actually cause a stop. This
12997 also makes it so that the commands of multiple dprintfs at the same
12998 address are all handled. */
12999
13000static void
13001dprintf_after_condition_true (struct bpstats *bs)
13002{
04afa70c 13003 struct bpstats tmp_bs;
9d6e6e84
HZ
13004 struct bpstats *tmp_bs_p = &tmp_bs;
13005
13006 /* dprintf's never cause a stop. This wasn't set in the
13007 check_status hook instead because that would make the dprintf's
13008 condition not be evaluated. */
13009 bs->stop = 0;
13010
13011 /* Run the command list here. Take ownership of it instead of
13012 copying. We never want these commands to run later in
13013 bpstat_do_actions, if a breakpoint that causes a stop happens to
13014 be set at same address as this dprintf, or even if running the
13015 commands here throws. */
13016 tmp_bs.commands = bs->commands;
13017 bs->commands = NULL;
9d6e6e84
HZ
13018
13019 bpstat_do_actions_1 (&tmp_bs_p);
13020
13021 /* 'tmp_bs.commands' will usually be NULL by now, but
13022 bpstat_do_actions_1 may return early without processing the whole
13023 list. */
9d6e6e84
HZ
13024}
13025
983af33b
SDJ
13026/* The breakpoint_ops structure to be used on static tracepoints with
13027 markers (`-m'). */
13028
13029static void
f00aae0f 13030strace_marker_create_sals_from_location (const struct event_location *location,
5f700d83 13031 struct linespec_result *canonical,
f00aae0f 13032 enum bptype type_wanted)
983af33b
SDJ
13033{
13034 struct linespec_sals lsal;
f00aae0f 13035 const char *arg_start, *arg;
983af33b 13036
a20714ff 13037 arg = arg_start = get_linespec_location (location)->spec_string;
f00aae0f 13038 lsal.sals = decode_static_tracepoint_spec (&arg);
983af33b 13039
f2fc3015
TT
13040 std::string str (arg_start, arg - arg_start);
13041 const char *ptr = str.c_str ();
a20714ff
PA
13042 canonical->location
13043 = new_linespec_location (&ptr, symbol_name_match_type::FULL);
983af33b 13044
8e9e35b1
TT
13045 lsal.canonical
13046 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 13047 canonical->lsals.push_back (std::move (lsal));
983af33b
SDJ
13048}
13049
13050static void
13051strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13052 struct linespec_result *canonical,
e1e01040
PA
13053 gdb::unique_xmalloc_ptr<char> cond_string,
13054 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
13055 enum bptype type_wanted,
13056 enum bpdisp disposition,
13057 int thread,
13058 int task, int ignore_count,
13059 const struct breakpoint_ops *ops,
13060 int from_tty, int enabled,
44f238bb 13061 int internal, unsigned flags)
983af33b 13062{
6c5b2ebe 13063 const linespec_sals &lsal = canonical->lsals[0];
983af33b
SDJ
13064
13065 /* If the user is creating a static tracepoint by marker id
13066 (strace -m MARKER_ID), then store the sals index, so that
13067 breakpoint_re_set can try to match up which of the newly
13068 found markers corresponds to this one, and, don't try to
13069 expand multiple locations for each sal, given than SALS
13070 already should contain all sals for MARKER_ID. */
13071
6c5b2ebe 13072 for (size_t i = 0; i < lsal.sals.size (); i++)
983af33b 13073 {
6c5b2ebe
PA
13074 event_location_up location
13075 = copy_event_location (canonical->location.get ());
983af33b 13076
b270e6f9 13077 std::unique_ptr<tracepoint> tp (new tracepoint ());
6c5b2ebe 13078 init_breakpoint_sal (tp.get (), gdbarch, lsal.sals[i],
ffc2605c 13079 std::move (location), NULL,
e1e01040
PA
13080 std::move (cond_string),
13081 std::move (extra_string),
e7e0cddf 13082 type_wanted, disposition,
983af33b 13083 thread, task, ignore_count, ops,
44f238bb 13084 from_tty, enabled, internal, flags,
983af33b
SDJ
13085 canonical->special_display);
13086 /* Given that its possible to have multiple markers with
13087 the same string id, if the user is creating a static
13088 tracepoint by marker id ("strace -m MARKER_ID"), then
13089 store the sals index, so that breakpoint_re_set can
13090 try to match up which of the newly found markers
13091 corresponds to this one */
13092 tp->static_trace_marker_id_idx = i;
13093
b270e6f9 13094 install_breakpoint (internal, std::move (tp), 0);
983af33b
SDJ
13095 }
13096}
13097
6c5b2ebe 13098static std::vector<symtab_and_line>
f00aae0f
KS
13099strace_marker_decode_location (struct breakpoint *b,
13100 const struct event_location *location,
6c5b2ebe 13101 struct program_space *search_pspace)
983af33b
SDJ
13102{
13103 struct tracepoint *tp = (struct tracepoint *) b;
a20714ff 13104 const char *s = get_linespec_location (location)->spec_string;
983af33b 13105
6c5b2ebe
PA
13106 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s);
13107 if (sals.size () > tp->static_trace_marker_id_idx)
983af33b 13108 {
6c5b2ebe
PA
13109 sals[0] = sals[tp->static_trace_marker_id_idx];
13110 sals.resize (1);
13111 return sals;
983af33b
SDJ
13112 }
13113 else
5d9310c4 13114 error (_("marker %s not found"), tp->static_trace_marker_id.c_str ());
983af33b
SDJ
13115}
13116
13117static struct breakpoint_ops strace_marker_breakpoint_ops;
13118
13119static int
13120strace_marker_p (struct breakpoint *b)
13121{
13122 return b->ops == &strace_marker_breakpoint_ops;
13123}
13124
53a5351d 13125/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 13126 structures. */
c906108c
SS
13127
13128void
fba45db2 13129delete_breakpoint (struct breakpoint *bpt)
c906108c 13130{
52f0bd74 13131 struct breakpoint *b;
c906108c 13132
8a3fe4f8 13133 gdb_assert (bpt != NULL);
c906108c 13134
4a64f543
MS
13135 /* Has this bp already been deleted? This can happen because
13136 multiple lists can hold pointers to bp's. bpstat lists are
13137 especial culprits.
13138
13139 One example of this happening is a watchpoint's scope bp. When
13140 the scope bp triggers, we notice that the watchpoint is out of
13141 scope, and delete it. We also delete its scope bp. But the
13142 scope bp is marked "auto-deleting", and is already on a bpstat.
13143 That bpstat is then checked for auto-deleting bp's, which are
13144 deleted.
13145
13146 A real solution to this problem might involve reference counts in
13147 bp's, and/or giving them pointers back to their referencing
13148 bpstat's, and teaching delete_breakpoint to only free a bp's
13149 storage when no more references were extent. A cheaper bandaid
13150 was chosen. */
c906108c
SS
13151 if (bpt->type == bp_none)
13152 return;
13153
4a64f543
MS
13154 /* At least avoid this stale reference until the reference counting
13155 of breakpoints gets resolved. */
d0fb5eae 13156 if (bpt->related_breakpoint != bpt)
e5a0a904 13157 {
d0fb5eae 13158 struct breakpoint *related;
3a5c3e22 13159 struct watchpoint *w;
d0fb5eae
JK
13160
13161 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 13162 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 13163 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
13164 w = (struct watchpoint *) bpt;
13165 else
13166 w = NULL;
13167 if (w != NULL)
13168 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
13169
13170 /* Unlink bpt from the bpt->related_breakpoint ring. */
13171 for (related = bpt; related->related_breakpoint != bpt;
13172 related = related->related_breakpoint);
13173 related->related_breakpoint = bpt->related_breakpoint;
13174 bpt->related_breakpoint = bpt;
e5a0a904
JK
13175 }
13176
a9634178
TJB
13177 /* watch_command_1 creates a watchpoint but only sets its number if
13178 update_watchpoint succeeds in creating its bp_locations. If there's
13179 a problem in that process, we'll be asked to delete the half-created
13180 watchpoint. In that case, don't announce the deletion. */
13181 if (bpt->number)
76727919 13182 gdb::observers::breakpoint_deleted.notify (bpt);
c906108c 13183
c906108c
SS
13184 if (breakpoint_chain == bpt)
13185 breakpoint_chain = bpt->next;
13186
c906108c
SS
13187 ALL_BREAKPOINTS (b)
13188 if (b->next == bpt)
c5aa993b
JM
13189 {
13190 b->next = bpt->next;
13191 break;
13192 }
c906108c 13193
f431efe5
PA
13194 /* Be sure no bpstat's are pointing at the breakpoint after it's
13195 been freed. */
13196 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 13197 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
13198 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13199 commands are associated with the bpstat; if we remove it here,
13200 then the later call to bpstat_do_actions (&stop_bpstat); in
13201 event-top.c won't do anything, and temporary breakpoints with
13202 commands won't work. */
13203
13204 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13205
4a64f543
MS
13206 /* Now that breakpoint is removed from breakpoint list, update the
13207 global location list. This will remove locations that used to
13208 belong to this breakpoint. Do this before freeing the breakpoint
13209 itself, since remove_breakpoint looks at location's owner. It
13210 might be better design to have location completely
13211 self-contained, but it's not the case now. */
44702360 13212 update_global_location_list (UGLL_DONT_INSERT);
74960c60 13213
4a64f543
MS
13214 /* On the chance that someone will soon try again to delete this
13215 same bp, we mark it as deleted before freeing its storage. */
c906108c 13216 bpt->type = bp_none;
4d01a485 13217 delete bpt;
c906108c
SS
13218}
13219
51be5b68
PA
13220/* Iterator function to call a user-provided callback function once
13221 for each of B and its related breakpoints. */
13222
13223static void
13224iterate_over_related_breakpoints (struct breakpoint *b,
48649e1b 13225 gdb::function_view<void (breakpoint *)> function)
51be5b68
PA
13226{
13227 struct breakpoint *related;
13228
13229 related = b;
13230 do
13231 {
13232 struct breakpoint *next;
13233
13234 /* FUNCTION may delete RELATED. */
13235 next = related->related_breakpoint;
13236
13237 if (next == related)
13238 {
13239 /* RELATED is the last ring entry. */
48649e1b 13240 function (related);
51be5b68
PA
13241
13242 /* FUNCTION may have deleted it, so we'd never reach back to
13243 B. There's nothing left to do anyway, so just break
13244 out. */
13245 break;
13246 }
13247 else
48649e1b 13248 function (related);
51be5b68
PA
13249
13250 related = next;
13251 }
13252 while (related != b);
13253}
95a42b64 13254
4495129a 13255static void
981a3fb3 13256delete_command (const char *arg, int from_tty)
c906108c 13257{
35df4500 13258 struct breakpoint *b, *b_tmp;
c906108c 13259
ea9365bb
TT
13260 dont_repeat ();
13261
c906108c
SS
13262 if (arg == 0)
13263 {
13264 int breaks_to_delete = 0;
13265
46c6471b
PA
13266 /* Delete all breakpoints if no argument. Do not delete
13267 internal breakpoints, these have to be deleted with an
13268 explicit breakpoint number argument. */
c5aa993b 13269 ALL_BREAKPOINTS (b)
46c6471b 13270 if (user_breakpoint_p (b))
973d738b
DJ
13271 {
13272 breaks_to_delete = 1;
13273 break;
13274 }
c906108c
SS
13275
13276 /* Ask user only if there are some breakpoints to delete. */
13277 if (!from_tty
e2e0b3e5 13278 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 13279 {
35df4500 13280 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 13281 if (user_breakpoint_p (b))
c5aa993b 13282 delete_breakpoint (b);
c906108c
SS
13283 }
13284 }
13285 else
48649e1b
TT
13286 map_breakpoint_numbers
13287 (arg, [&] (breakpoint *b)
13288 {
13289 iterate_over_related_breakpoints (b, delete_breakpoint);
13290 });
c906108c
SS
13291}
13292
c2f4122d
PA
13293/* Return true if all locations of B bound to PSPACE are pending. If
13294 PSPACE is NULL, all locations of all program spaces are
13295 considered. */
13296
0d381245 13297static int
c2f4122d 13298all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
fe3f5fa8 13299{
c2f4122d
PA
13300 struct bp_location *loc;
13301
13302 for (loc = b->loc; loc != NULL; loc = loc->next)
13303 if ((pspace == NULL
13304 || loc->pspace == pspace)
13305 && !loc->shlib_disabled
8645ff69 13306 && !loc->pspace->executing_startup)
0d381245
VP
13307 return 0;
13308 return 1;
fe3f5fa8
VP
13309}
13310
776592bf
DE
13311/* Subroutine of update_breakpoint_locations to simplify it.
13312 Return non-zero if multiple fns in list LOC have the same name.
13313 Null names are ignored. */
13314
13315static int
13316ambiguous_names_p (struct bp_location *loc)
13317{
13318 struct bp_location *l;
459a2e4c
TT
13319 htab_t htab = htab_create_alloc (13, htab_hash_string, streq_hash, NULL,
13320 xcalloc, xfree);
776592bf
DE
13321
13322 for (l = loc; l != NULL; l = l->next)
13323 {
13324 const char **slot;
13325 const char *name = l->function_name;
13326
13327 /* Allow for some names to be NULL, ignore them. */
13328 if (name == NULL)
13329 continue;
13330
13331 slot = (const char **) htab_find_slot (htab, (const void *) name,
13332 INSERT);
4a64f543
MS
13333 /* NOTE: We can assume slot != NULL here because xcalloc never
13334 returns NULL. */
776592bf
DE
13335 if (*slot != NULL)
13336 {
13337 htab_delete (htab);
13338 return 1;
13339 }
13340 *slot = name;
13341 }
13342
13343 htab_delete (htab);
13344 return 0;
13345}
13346
0fb4aa4b
PA
13347/* When symbols change, it probably means the sources changed as well,
13348 and it might mean the static tracepoint markers are no longer at
13349 the same address or line numbers they used to be at last we
13350 checked. Losing your static tracepoints whenever you rebuild is
13351 undesirable. This function tries to resync/rematch gdb static
13352 tracepoints with the markers on the target, for static tracepoints
13353 that have not been set by marker id. Static tracepoint that have
13354 been set by marker id are reset by marker id in breakpoint_re_set.
13355 The heuristic is:
13356
13357 1) For a tracepoint set at a specific address, look for a marker at
13358 the old PC. If one is found there, assume to be the same marker.
13359 If the name / string id of the marker found is different from the
13360 previous known name, assume that means the user renamed the marker
13361 in the sources, and output a warning.
13362
13363 2) For a tracepoint set at a given line number, look for a marker
13364 at the new address of the old line number. If one is found there,
13365 assume to be the same marker. If the name / string id of the
13366 marker found is different from the previous known name, assume that
13367 means the user renamed the marker in the sources, and output a
13368 warning.
13369
13370 3) If a marker is no longer found at the same address or line, it
13371 may mean the marker no longer exists. But it may also just mean
13372 the code changed a bit. Maybe the user added a few lines of code
13373 that made the marker move up or down (in line number terms). Ask
13374 the target for info about the marker with the string id as we knew
13375 it. If found, update line number and address in the matching
13376 static tracepoint. This will get confused if there's more than one
13377 marker with the same ID (possible in UST, although unadvised
13378 precisely because it confuses tools). */
13379
13380static struct symtab_and_line
13381update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13382{
d9b3f62e 13383 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
13384 struct static_tracepoint_marker marker;
13385 CORE_ADDR pc;
0fb4aa4b
PA
13386
13387 pc = sal.pc;
13388 if (sal.line)
13389 find_line_pc (sal.symtab, sal.line, &pc);
13390
13391 if (target_static_tracepoint_marker_at (pc, &marker))
13392 {
5d9310c4 13393 if (tp->static_trace_marker_id != marker.str_id)
0fb4aa4b 13394 warning (_("static tracepoint %d changed probed marker from %s to %s"),
5d9310c4
SM
13395 b->number, tp->static_trace_marker_id.c_str (),
13396 marker.str_id.c_str ());
0fb4aa4b 13397
5d9310c4 13398 tp->static_trace_marker_id = std::move (marker.str_id);
0fb4aa4b
PA
13399
13400 return sal;
13401 }
13402
13403 /* Old marker wasn't found on target at lineno. Try looking it up
13404 by string ID. */
13405 if (!sal.explicit_pc
13406 && sal.line != 0
13407 && sal.symtab != NULL
5d9310c4 13408 && !tp->static_trace_marker_id.empty ())
0fb4aa4b 13409 {
5d9310c4
SM
13410 std::vector<static_tracepoint_marker> markers
13411 = target_static_tracepoint_markers_by_strid
13412 (tp->static_trace_marker_id.c_str ());
0fb4aa4b 13413
5d9310c4 13414 if (!markers.empty ())
0fb4aa4b 13415 {
0fb4aa4b 13416 struct symbol *sym;
80e1d417 13417 struct static_tracepoint_marker *tpmarker;
79a45e25 13418 struct ui_out *uiout = current_uiout;
67994074 13419 struct explicit_location explicit_loc;
0fb4aa4b 13420
5d9310c4 13421 tpmarker = &markers[0];
0fb4aa4b 13422
5d9310c4 13423 tp->static_trace_marker_id = std::move (tpmarker->str_id);
0fb4aa4b
PA
13424
13425 warning (_("marker for static tracepoint %d (%s) not "
13426 "found at previous line number"),
5d9310c4 13427 b->number, tp->static_trace_marker_id.c_str ());
0fb4aa4b 13428
51abb421 13429 symtab_and_line sal2 = find_pc_line (tpmarker->address, 0);
80e1d417 13430 sym = find_pc_sect_function (tpmarker->address, NULL);
112e8700 13431 uiout->text ("Now in ");
0fb4aa4b
PA
13432 if (sym)
13433 {
112e8700
SM
13434 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
13435 uiout->text (" at ");
0fb4aa4b 13436 }
112e8700 13437 uiout->field_string ("file",
05cba821 13438 symtab_to_filename_for_display (sal2.symtab));
112e8700 13439 uiout->text (":");
0fb4aa4b 13440
112e8700 13441 if (uiout->is_mi_like_p ())
0fb4aa4b 13442 {
0b0865da 13443 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 13444
112e8700 13445 uiout->field_string ("fullname", fullname);
0fb4aa4b
PA
13446 }
13447
112e8700
SM
13448 uiout->field_int ("line", sal2.line);
13449 uiout->text ("\n");
0fb4aa4b 13450
80e1d417 13451 b->loc->line_number = sal2.line;
2f202fde 13452 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b 13453
d28cd78a 13454 b->location.reset (NULL);
67994074
KS
13455 initialize_explicit_location (&explicit_loc);
13456 explicit_loc.source_filename
00e52e53 13457 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
67994074
KS
13458 explicit_loc.line_offset.offset = b->loc->line_number;
13459 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
d28cd78a 13460 b->location = new_explicit_location (&explicit_loc);
0fb4aa4b
PA
13461
13462 /* Might be nice to check if function changed, and warn if
13463 so. */
0fb4aa4b
PA
13464 }
13465 }
13466 return sal;
13467}
13468
8d3788bd
VP
13469/* Returns 1 iff locations A and B are sufficiently same that
13470 we don't need to report breakpoint as changed. */
13471
13472static int
13473locations_are_equal (struct bp_location *a, struct bp_location *b)
13474{
13475 while (a && b)
13476 {
13477 if (a->address != b->address)
13478 return 0;
13479
13480 if (a->shlib_disabled != b->shlib_disabled)
13481 return 0;
13482
13483 if (a->enabled != b->enabled)
13484 return 0;
13485
13486 a = a->next;
13487 b = b->next;
13488 }
13489
13490 if ((a == NULL) != (b == NULL))
13491 return 0;
13492
13493 return 1;
13494}
13495
c2f4122d
PA
13496/* Split all locations of B that are bound to PSPACE out of B's
13497 location list to a separate list and return that list's head. If
13498 PSPACE is NULL, hoist out all locations of B. */
13499
13500static struct bp_location *
13501hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
13502{
13503 struct bp_location head;
13504 struct bp_location *i = b->loc;
13505 struct bp_location **i_link = &b->loc;
13506 struct bp_location *hoisted = &head;
13507
13508 if (pspace == NULL)
13509 {
13510 i = b->loc;
13511 b->loc = NULL;
13512 return i;
13513 }
13514
13515 head.next = NULL;
13516
13517 while (i != NULL)
13518 {
13519 if (i->pspace == pspace)
13520 {
13521 *i_link = i->next;
13522 i->next = NULL;
13523 hoisted->next = i;
13524 hoisted = i;
13525 }
13526 else
13527 i_link = &i->next;
13528 i = *i_link;
13529 }
13530
13531 return head.next;
13532}
13533
13534/* Create new breakpoint locations for B (a hardware or software
13535 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
13536 zero, then B is a ranged breakpoint. Only recreates locations for
13537 FILTER_PSPACE. Locations of other program spaces are left
13538 untouched. */
f1310107 13539
0e30163f 13540void
0d381245 13541update_breakpoint_locations (struct breakpoint *b,
c2f4122d 13542 struct program_space *filter_pspace,
6c5b2ebe
PA
13543 gdb::array_view<const symtab_and_line> sals,
13544 gdb::array_view<const symtab_and_line> sals_end)
fe3f5fa8 13545{
c2f4122d 13546 struct bp_location *existing_locations;
0d381245 13547
6c5b2ebe 13548 if (!sals_end.empty () && (sals.size () != 1 || sals_end.size () != 1))
f8eba3c6
TT
13549 {
13550 /* Ranged breakpoints have only one start location and one end
13551 location. */
13552 b->enable_state = bp_disabled;
f8eba3c6
TT
13553 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
13554 "multiple locations found\n"),
13555 b->number);
13556 return;
13557 }
f1310107 13558
4a64f543
MS
13559 /* If there's no new locations, and all existing locations are
13560 pending, don't do anything. This optimizes the common case where
13561 all locations are in the same shared library, that was unloaded.
13562 We'd like to retain the location, so that when the library is
13563 loaded again, we don't loose the enabled/disabled status of the
13564 individual locations. */
6c5b2ebe 13565 if (all_locations_are_pending (b, filter_pspace) && sals.empty ())
fe3f5fa8
VP
13566 return;
13567
c2f4122d 13568 existing_locations = hoist_existing_locations (b, filter_pspace);
fe3f5fa8 13569
6c5b2ebe 13570 for (const auto &sal : sals)
fe3f5fa8 13571 {
f8eba3c6
TT
13572 struct bp_location *new_loc;
13573
6c5b2ebe 13574 switch_to_program_space_and_thread (sal.pspace);
f8eba3c6 13575
6c5b2ebe 13576 new_loc = add_location_to_breakpoint (b, &sal);
fe3f5fa8 13577
0d381245
VP
13578 /* Reparse conditions, they might contain references to the
13579 old symtab. */
13580 if (b->cond_string != NULL)
13581 {
bbc13ae3 13582 const char *s;
fe3f5fa8 13583
0d381245 13584 s = b->cond_string;
492d29ea 13585 TRY
0d381245 13586 {
6c5b2ebe
PA
13587 new_loc->cond = parse_exp_1 (&s, sal.pc,
13588 block_for_pc (sal.pc),
0d381245
VP
13589 0);
13590 }
492d29ea 13591 CATCH (e, RETURN_MASK_ERROR)
0d381245 13592 {
3e43a32a
MS
13593 warning (_("failed to reevaluate condition "
13594 "for breakpoint %d: %s"),
0d381245
VP
13595 b->number, e.message);
13596 new_loc->enabled = 0;
13597 }
492d29ea 13598 END_CATCH
0d381245 13599 }
fe3f5fa8 13600
6c5b2ebe 13601 if (!sals_end.empty ())
f1310107 13602 {
6c5b2ebe 13603 CORE_ADDR end = find_breakpoint_range_end (sals_end[0]);
f1310107 13604
6c5b2ebe 13605 new_loc->length = end - sals[0].pc + 1;
f1310107 13606 }
0d381245 13607 }
fe3f5fa8 13608
4a64f543
MS
13609 /* If possible, carry over 'disable' status from existing
13610 breakpoints. */
0d381245
VP
13611 {
13612 struct bp_location *e = existing_locations;
776592bf
DE
13613 /* If there are multiple breakpoints with the same function name,
13614 e.g. for inline functions, comparing function names won't work.
13615 Instead compare pc addresses; this is just a heuristic as things
13616 may have moved, but in practice it gives the correct answer
13617 often enough until a better solution is found. */
13618 int have_ambiguous_names = ambiguous_names_p (b->loc);
13619
0d381245
VP
13620 for (; e; e = e->next)
13621 {
13622 if (!e->enabled && e->function_name)
13623 {
13624 struct bp_location *l = b->loc;
776592bf
DE
13625 if (have_ambiguous_names)
13626 {
13627 for (; l; l = l->next)
f1310107 13628 if (breakpoint_locations_match (e, l))
776592bf
DE
13629 {
13630 l->enabled = 0;
13631 break;
13632 }
13633 }
13634 else
13635 {
13636 for (; l; l = l->next)
13637 if (l->function_name
13638 && strcmp (e->function_name, l->function_name) == 0)
13639 {
13640 l->enabled = 0;
13641 break;
13642 }
13643 }
0d381245
VP
13644 }
13645 }
13646 }
fe3f5fa8 13647
8d3788bd 13648 if (!locations_are_equal (existing_locations, b->loc))
76727919 13649 gdb::observers::breakpoint_modified.notify (b);
fe3f5fa8
VP
13650}
13651
f00aae0f 13652/* Find the SaL locations corresponding to the given LOCATION.
ef23e705
TJB
13653 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
13654
6c5b2ebe 13655static std::vector<symtab_and_line>
f00aae0f 13656location_to_sals (struct breakpoint *b, struct event_location *location,
c2f4122d 13657 struct program_space *search_pspace, int *found)
ef23e705 13658{
492d29ea 13659 struct gdb_exception exception = exception_none;
ef23e705 13660
983af33b 13661 gdb_assert (b->ops != NULL);
ef23e705 13662
6c5b2ebe
PA
13663 std::vector<symtab_and_line> sals;
13664
492d29ea 13665 TRY
ef23e705 13666 {
6c5b2ebe 13667 sals = b->ops->decode_location (b, location, search_pspace);
ef23e705 13668 }
492d29ea 13669 CATCH (e, RETURN_MASK_ERROR)
ef23e705
TJB
13670 {
13671 int not_found_and_ok = 0;
492d29ea
PA
13672
13673 exception = e;
13674
ef23e705
TJB
13675 /* For pending breakpoints, it's expected that parsing will
13676 fail until the right shared library is loaded. User has
13677 already told to create pending breakpoints and don't need
13678 extra messages. If breakpoint is in bp_shlib_disabled
13679 state, then user already saw the message about that
13680 breakpoint being disabled, and don't want to see more
13681 errors. */
58438ac1 13682 if (e.error == NOT_FOUND_ERROR
c2f4122d
PA
13683 && (b->condition_not_parsed
13684 || (b->loc != NULL
13685 && search_pspace != NULL
13686 && b->loc->pspace != search_pspace)
ef23e705 13687 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 13688 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
13689 || b->enable_state == bp_disabled))
13690 not_found_and_ok = 1;
13691
13692 if (!not_found_and_ok)
13693 {
13694 /* We surely don't want to warn about the same breakpoint
13695 10 times. One solution, implemented here, is disable
13696 the breakpoint on error. Another solution would be to
13697 have separate 'warning emitted' flag. Since this
13698 happens only when a binary has changed, I don't know
13699 which approach is better. */
13700 b->enable_state = bp_disabled;
13701 throw_exception (e);
13702 }
13703 }
492d29ea 13704 END_CATCH
ef23e705 13705
492d29ea 13706 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
ef23e705 13707 {
6c5b2ebe
PA
13708 for (auto &sal : sals)
13709 resolve_sal_pc (&sal);
f00aae0f 13710 if (b->condition_not_parsed && b->extra_string != NULL)
ef23e705 13711 {
ed1d1739
KS
13712 char *cond_string, *extra_string;
13713 int thread, task;
ef23e705 13714
6c5b2ebe 13715 find_condition_and_thread (b->extra_string, sals[0].pc,
e7e0cddf
SS
13716 &cond_string, &thread, &task,
13717 &extra_string);
f00aae0f 13718 gdb_assert (b->cond_string == NULL);
ef23e705
TJB
13719 if (cond_string)
13720 b->cond_string = cond_string;
13721 b->thread = thread;
13722 b->task = task;
e7e0cddf 13723 if (extra_string)
f00aae0f
KS
13724 {
13725 xfree (b->extra_string);
13726 b->extra_string = extra_string;
13727 }
ef23e705
TJB
13728 b->condition_not_parsed = 0;
13729 }
13730
983af33b 13731 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
6c5b2ebe 13732 sals[0] = update_static_tracepoint (b, sals[0]);
ef23e705 13733
58438ac1
TT
13734 *found = 1;
13735 }
13736 else
13737 *found = 0;
ef23e705
TJB
13738
13739 return sals;
13740}
13741
348d480f
PA
13742/* The default re_set method, for typical hardware or software
13743 breakpoints. Reevaluate the breakpoint and recreate its
13744 locations. */
13745
13746static void
28010a5d 13747breakpoint_re_set_default (struct breakpoint *b)
ef23e705 13748{
c2f4122d 13749 struct program_space *filter_pspace = current_program_space;
6c5b2ebe 13750 std::vector<symtab_and_line> expanded, expanded_end;
ef23e705 13751
6c5b2ebe
PA
13752 int found;
13753 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (),
13754 filter_pspace, &found);
ef23e705 13755 if (found)
6c5b2ebe 13756 expanded = std::move (sals);
ef23e705 13757
f00aae0f 13758 if (b->location_range_end != NULL)
f1310107 13759 {
6c5b2ebe
PA
13760 std::vector<symtab_and_line> sals_end
13761 = location_to_sals (b, b->location_range_end.get (),
13762 filter_pspace, &found);
f1310107 13763 if (found)
6c5b2ebe 13764 expanded_end = std::move (sals_end);
f1310107
TJB
13765 }
13766
c2f4122d 13767 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
28010a5d
PA
13768}
13769
983af33b
SDJ
13770/* Default method for creating SALs from an address string. It basically
13771 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
13772
13773static void
f00aae0f
KS
13774create_sals_from_location_default (const struct event_location *location,
13775 struct linespec_result *canonical,
13776 enum bptype type_wanted)
983af33b 13777{
f00aae0f 13778 parse_breakpoint_sals (location, canonical);
983af33b
SDJ
13779}
13780
13781/* Call create_breakpoints_sal for the given arguments. This is the default
13782 function for the `create_breakpoints_sal' method of
13783 breakpoint_ops. */
13784
13785static void
13786create_breakpoints_sal_default (struct gdbarch *gdbarch,
13787 struct linespec_result *canonical,
e1e01040
PA
13788 gdb::unique_xmalloc_ptr<char> cond_string,
13789 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
13790 enum bptype type_wanted,
13791 enum bpdisp disposition,
13792 int thread,
13793 int task, int ignore_count,
13794 const struct breakpoint_ops *ops,
13795 int from_tty, int enabled,
44f238bb 13796 int internal, unsigned flags)
983af33b 13797{
e1e01040
PA
13798 create_breakpoints_sal (gdbarch, canonical,
13799 std::move (cond_string),
13800 std::move (extra_string),
983af33b
SDJ
13801 type_wanted, disposition,
13802 thread, task, ignore_count, ops, from_tty,
44f238bb 13803 enabled, internal, flags);
983af33b
SDJ
13804}
13805
13806/* Decode the line represented by S by calling decode_line_full. This is the
5f700d83 13807 default function for the `decode_location' method of breakpoint_ops. */
983af33b 13808
6c5b2ebe 13809static std::vector<symtab_and_line>
f00aae0f
KS
13810decode_location_default (struct breakpoint *b,
13811 const struct event_location *location,
6c5b2ebe 13812 struct program_space *search_pspace)
983af33b
SDJ
13813{
13814 struct linespec_result canonical;
13815
c2f4122d 13816 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
983af33b
SDJ
13817 (struct symtab *) NULL, 0,
13818 &canonical, multiple_symbols_all,
13819 b->filter);
13820
13821 /* We should get 0 or 1 resulting SALs. */
6c5b2ebe 13822 gdb_assert (canonical.lsals.size () < 2);
983af33b 13823
6c5b2ebe 13824 if (!canonical.lsals.empty ())
983af33b 13825 {
6c5b2ebe
PA
13826 const linespec_sals &lsal = canonical.lsals[0];
13827 return std::move (lsal.sals);
983af33b 13828 }
6c5b2ebe 13829 return {};
983af33b
SDJ
13830}
13831
bf469271 13832/* Reset a breakpoint. */
c906108c 13833
bf469271
PA
13834static void
13835breakpoint_re_set_one (breakpoint *b)
c906108c 13836{
fdf44873
TT
13837 input_radix = b->input_radix;
13838 set_language (b->language);
c906108c 13839
348d480f 13840 b->ops->re_set (b);
c906108c
SS
13841}
13842
c2f4122d
PA
13843/* Re-set breakpoint locations for the current program space.
13844 Locations bound to other program spaces are left untouched. */
13845
c906108c 13846void
69de3c6a 13847breakpoint_re_set (void)
c906108c 13848{
35df4500 13849 struct breakpoint *b, *b_tmp;
2a7f3dff 13850
c5aa993b 13851 {
fdf44873
TT
13852 scoped_restore_current_language save_language;
13853 scoped_restore save_input_radix = make_scoped_restore (&input_radix);
5ed8105e 13854 scoped_restore_current_pspace_and_thread restore_pspace_thread;
e62c965a 13855
8e817061
JB
13856 /* breakpoint_re_set_one sets the current_language to the language
13857 of the breakpoint it is resetting (see prepare_re_set_context)
13858 before re-evaluating the breakpoint's location. This change can
13859 unfortunately get undone by accident if the language_mode is set
13860 to auto, and we either switch frames, or more likely in this context,
13861 we select the current frame.
13862
13863 We prevent this by temporarily turning the language_mode to
13864 language_mode_manual. We restore it once all breakpoints
13865 have been reset. */
13866 scoped_restore save_language_mode = make_scoped_restore (&language_mode);
13867 language_mode = language_mode_manual;
13868
5ed8105e
PA
13869 /* Note: we must not try to insert locations until after all
13870 breakpoints have been re-set. Otherwise, e.g., when re-setting
13871 breakpoint 1, we'd insert the locations of breakpoint 2, which
13872 hadn't been re-set yet, and thus may have stale locations. */
4efc6507 13873
5ed8105e
PA
13874 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13875 {
bf469271
PA
13876 TRY
13877 {
13878 breakpoint_re_set_one (b);
13879 }
13880 CATCH (ex, RETURN_MASK_ALL)
13881 {
13882 exception_fprintf (gdb_stderr, ex,
13883 "Error in re-setting breakpoint %d: ",
13884 b->number);
13885 }
13886 END_CATCH
5ed8105e 13887 }
5ed8105e
PA
13888
13889 jit_breakpoint_re_set ();
13890 }
6c95b8df 13891
af02033e
PP
13892 create_overlay_event_breakpoint ();
13893 create_longjmp_master_breakpoint ();
13894 create_std_terminate_master_breakpoint ();
186c406b 13895 create_exception_master_breakpoint ();
2a7f3dff
PA
13896
13897 /* Now we can insert. */
13898 update_global_location_list (UGLL_MAY_INSERT);
c906108c
SS
13899}
13900\f
c906108c
SS
13901/* Reset the thread number of this breakpoint:
13902
13903 - If the breakpoint is for all threads, leave it as-is.
4a64f543 13904 - Else, reset it to the current thread for inferior_ptid. */
c906108c 13905void
fba45db2 13906breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
13907{
13908 if (b->thread != -1)
13909 {
00431a78 13910 b->thread = inferior_thread ()->global_num;
6c95b8df
PA
13911
13912 /* We're being called after following a fork. The new fork is
13913 selected as current, and unless this was a vfork will have a
13914 different program space from the original thread. Reset that
13915 as well. */
13916 b->loc->pspace = current_program_space;
c906108c
SS
13917 }
13918}
13919
03ac34d5
MS
13920/* Set ignore-count of breakpoint number BPTNUM to COUNT.
13921 If from_tty is nonzero, it prints a message to that effect,
13922 which ends with a period (no newline). */
13923
c906108c 13924void
fba45db2 13925set_ignore_count (int bptnum, int count, int from_tty)
c906108c 13926{
52f0bd74 13927 struct breakpoint *b;
c906108c
SS
13928
13929 if (count < 0)
13930 count = 0;
13931
13932 ALL_BREAKPOINTS (b)
13933 if (b->number == bptnum)
c5aa993b 13934 {
d77f58be
SS
13935 if (is_tracepoint (b))
13936 {
13937 if (from_tty && count != 0)
13938 printf_filtered (_("Ignore count ignored for tracepoint %d."),
13939 bptnum);
13940 return;
13941 }
13942
c5aa993b 13943 b->ignore_count = count;
221ea385
KS
13944 if (from_tty)
13945 {
13946 if (count == 0)
3e43a32a
MS
13947 printf_filtered (_("Will stop next time "
13948 "breakpoint %d is reached."),
221ea385
KS
13949 bptnum);
13950 else if (count == 1)
a3f17187 13951 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
13952 bptnum);
13953 else
3e43a32a
MS
13954 printf_filtered (_("Will ignore next %d "
13955 "crossings of breakpoint %d."),
221ea385
KS
13956 count, bptnum);
13957 }
76727919 13958 gdb::observers::breakpoint_modified.notify (b);
c5aa993b
JM
13959 return;
13960 }
c906108c 13961
8a3fe4f8 13962 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
13963}
13964
c906108c
SS
13965/* Command to set ignore-count of breakpoint N to COUNT. */
13966
13967static void
0b39b52e 13968ignore_command (const char *args, int from_tty)
c906108c 13969{
0b39b52e 13970 const char *p = args;
52f0bd74 13971 int num;
c906108c
SS
13972
13973 if (p == 0)
e2e0b3e5 13974 error_no_arg (_("a breakpoint number"));
c5aa993b 13975
c906108c 13976 num = get_number (&p);
5c44784c 13977 if (num == 0)
8a3fe4f8 13978 error (_("bad breakpoint number: '%s'"), args);
c906108c 13979 if (*p == 0)
8a3fe4f8 13980 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
13981
13982 set_ignore_count (num,
13983 longest_to_int (value_as_long (parse_and_eval (p))),
13984 from_tty);
221ea385
KS
13985 if (from_tty)
13986 printf_filtered ("\n");
c906108c
SS
13987}
13988\f
d0fe4701
XR
13989
13990/* Call FUNCTION on each of the breakpoints with numbers in the range
13991 defined by BP_NUM_RANGE (an inclusive range). */
c906108c
SS
13992
13993static void
d0fe4701
XR
13994map_breakpoint_number_range (std::pair<int, int> bp_num_range,
13995 gdb::function_view<void (breakpoint *)> function)
c906108c 13996{
d0fe4701
XR
13997 if (bp_num_range.first == 0)
13998 {
13999 warning (_("bad breakpoint number at or near '%d'"),
14000 bp_num_range.first);
14001 }
14002 else
c906108c 14003 {
d0fe4701 14004 struct breakpoint *b, *tmp;
197f0a60 14005
d0fe4701 14006 for (int i = bp_num_range.first; i <= bp_num_range.second; i++)
5c44784c 14007 {
d0fe4701
XR
14008 bool match = false;
14009
5c44784c 14010 ALL_BREAKPOINTS_SAFE (b, tmp)
d0fe4701 14011 if (b->number == i)
5c44784c 14012 {
bfd28288 14013 match = true;
48649e1b 14014 function (b);
11cf8741 14015 break;
5c44784c 14016 }
bfd28288 14017 if (!match)
d0fe4701 14018 printf_unfiltered (_("No breakpoint number %d.\n"), i);
c5aa993b 14019 }
c906108c
SS
14020 }
14021}
14022
d0fe4701
XR
14023/* Call FUNCTION on each of the breakpoints whose numbers are given in
14024 ARGS. */
14025
14026static void
14027map_breakpoint_numbers (const char *args,
14028 gdb::function_view<void (breakpoint *)> function)
14029{
14030 if (args == NULL || *args == '\0')
14031 error_no_arg (_("one or more breakpoint numbers"));
14032
14033 number_or_range_parser parser (args);
14034
14035 while (!parser.finished ())
14036 {
14037 int num = parser.get_number ();
14038 map_breakpoint_number_range (std::make_pair (num, num), function);
14039 }
14040}
14041
14042/* Return the breakpoint location structure corresponding to the
14043 BP_NUM and LOC_NUM values. */
14044
0d381245 14045static struct bp_location *
d0fe4701 14046find_location_by_number (int bp_num, int loc_num)
0d381245 14047{
0d381245 14048 struct breakpoint *b;
0d381245
VP
14049
14050 ALL_BREAKPOINTS (b)
14051 if (b->number == bp_num)
14052 {
14053 break;
14054 }
14055
14056 if (!b || b->number != bp_num)
d0fe4701 14057 error (_("Bad breakpoint number '%d'"), bp_num);
0d381245 14058
0d381245 14059 if (loc_num == 0)
d0fe4701 14060 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245 14061
d0fe4701
XR
14062 int n = 0;
14063 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next)
14064 if (++n == loc_num)
14065 return loc;
14066
14067 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245
VP
14068}
14069
95e95a6d
PA
14070/* Modes of operation for extract_bp_num. */
14071enum class extract_bp_kind
14072{
14073 /* Extracting a breakpoint number. */
14074 bp,
14075
14076 /* Extracting a location number. */
14077 loc,
14078};
14079
14080/* Extract a breakpoint or location number (as determined by KIND)
14081 from the string starting at START. TRAILER is a character which
14082 can be found after the number. If you don't want a trailer, use
14083 '\0'. If END_OUT is not NULL, it is set to point after the parsed
14084 string. This always returns a positive integer. */
14085
14086static int
14087extract_bp_num (extract_bp_kind kind, const char *start,
14088 int trailer, const char **end_out = NULL)
14089{
14090 const char *end = start;
14091 int num = get_number_trailer (&end, trailer);
14092 if (num < 0)
14093 error (kind == extract_bp_kind::bp
14094 ? _("Negative breakpoint number '%.*s'")
14095 : _("Negative breakpoint location number '%.*s'"),
14096 int (end - start), start);
14097 if (num == 0)
14098 error (kind == extract_bp_kind::bp
14099 ? _("Bad breakpoint number '%.*s'")
14100 : _("Bad breakpoint location number '%.*s'"),
14101 int (end - start), start);
14102
14103 if (end_out != NULL)
14104 *end_out = end;
14105 return num;
14106}
14107
14108/* Extract a breakpoint or location range (as determined by KIND) in
14109 the form NUM1-NUM2 stored at &ARG[arg_offset]. Returns a std::pair
14110 representing the (inclusive) range. The returned pair's elements
14111 are always positive integers. */
14112
14113static std::pair<int, int>
14114extract_bp_or_bp_range (extract_bp_kind kind,
14115 const std::string &arg,
14116 std::string::size_type arg_offset)
14117{
14118 std::pair<int, int> range;
14119 const char *bp_loc = &arg[arg_offset];
14120 std::string::size_type dash = arg.find ('-', arg_offset);
14121 if (dash != std::string::npos)
14122 {
14123 /* bp_loc is a range (x-z). */
14124 if (arg.length () == dash + 1)
14125 error (kind == extract_bp_kind::bp
14126 ? _("Bad breakpoint number at or near: '%s'")
14127 : _("Bad breakpoint location number at or near: '%s'"),
14128 bp_loc);
14129
14130 const char *end;
14131 const char *start_first = bp_loc;
14132 const char *start_second = &arg[dash + 1];
14133 range.first = extract_bp_num (kind, start_first, '-');
14134 range.second = extract_bp_num (kind, start_second, '\0', &end);
14135
14136 if (range.first > range.second)
14137 error (kind == extract_bp_kind::bp
14138 ? _("Inverted breakpoint range at '%.*s'")
14139 : _("Inverted breakpoint location range at '%.*s'"),
14140 int (end - start_first), start_first);
14141 }
14142 else
14143 {
14144 /* bp_loc is a single value. */
14145 range.first = extract_bp_num (kind, bp_loc, '\0');
14146 range.second = range.first;
14147 }
14148 return range;
14149}
14150
d0fe4701
XR
14151/* Extract the breakpoint/location range specified by ARG. Returns
14152 the breakpoint range in BP_NUM_RANGE, and the location range in
14153 BP_LOC_RANGE.
14154
14155 ARG may be in any of the following forms:
14156
14157 x where 'x' is a breakpoint number.
14158 x-y where 'x' and 'y' specify a breakpoint numbers range.
14159 x.y where 'x' is a breakpoint number and 'y' a location number.
14160 x.y-z where 'x' is a breakpoint number and 'y' and 'z' specify a
14161 location number range.
14162*/
14163
cc638e86 14164static void
d0fe4701
XR
14165extract_bp_number_and_location (const std::string &arg,
14166 std::pair<int, int> &bp_num_range,
14167 std::pair<int, int> &bp_loc_range)
14168{
14169 std::string::size_type dot = arg.find ('.');
14170
14171 if (dot != std::string::npos)
14172 {
14173 /* Handle 'x.y' and 'x.y-z' cases. */
14174
14175 if (arg.length () == dot + 1 || dot == 0)
95e95a6d 14176 error (_("Bad breakpoint number at or near: '%s'"), arg.c_str ());
d0fe4701 14177
95e95a6d
PA
14178 bp_num_range.first
14179 = extract_bp_num (extract_bp_kind::bp, arg.c_str (), '.');
14180 bp_num_range.second = bp_num_range.first;
d0fe4701 14181
95e95a6d
PA
14182 bp_loc_range = extract_bp_or_bp_range (extract_bp_kind::loc,
14183 arg, dot + 1);
d0fe4701
XR
14184 }
14185 else
14186 {
14187 /* Handle x and x-y cases. */
d0fe4701 14188
95e95a6d 14189 bp_num_range = extract_bp_or_bp_range (extract_bp_kind::bp, arg, 0);
d0fe4701
XR
14190 bp_loc_range.first = 0;
14191 bp_loc_range.second = 0;
14192 }
d0fe4701
XR
14193}
14194
14195/* Enable or disable a breakpoint location BP_NUM.LOC_NUM. ENABLE
14196 specifies whether to enable or disable. */
14197
14198static void
14199enable_disable_bp_num_loc (int bp_num, int loc_num, bool enable)
14200{
14201 struct bp_location *loc = find_location_by_number (bp_num, loc_num);
14202 if (loc != NULL)
14203 {
14204 if (loc->enabled != enable)
14205 {
14206 loc->enabled = enable;
14207 mark_breakpoint_location_modified (loc);
14208 }
14209 if (target_supports_enable_disable_tracepoint ()
14210 && current_trace_status ()->running && loc->owner
14211 && is_tracepoint (loc->owner))
14212 target_disable_tracepoint (loc);
14213 }
14214 update_global_location_list (UGLL_DONT_INSERT);
d7154a8d
JV
14215
14216 gdb::observers::breakpoint_modified.notify (loc->owner);
d0fe4701
XR
14217}
14218
14219/* Enable or disable a range of breakpoint locations. BP_NUM is the
14220 number of the breakpoint, and BP_LOC_RANGE specifies the
14221 (inclusive) range of location numbers of that breakpoint to
14222 enable/disable. ENABLE specifies whether to enable or disable the
14223 location. */
14224
14225static void
14226enable_disable_breakpoint_location_range (int bp_num,
14227 std::pair<int, int> &bp_loc_range,
14228 bool enable)
14229{
14230 for (int i = bp_loc_range.first; i <= bp_loc_range.second; i++)
14231 enable_disable_bp_num_loc (bp_num, i, enable);
14232}
0d381245 14233
1900040c
MS
14234/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14235 If from_tty is nonzero, it prints a message to that effect,
14236 which ends with a period (no newline). */
14237
c906108c 14238void
fba45db2 14239disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
14240{
14241 /* Never disable a watchpoint scope breakpoint; we want to
14242 hit them when we leave scope so we can delete both the
14243 watchpoint and its scope breakpoint at that time. */
14244 if (bpt->type == bp_watchpoint_scope)
14245 return;
14246
b5de0fa7 14247 bpt->enable_state = bp_disabled;
c906108c 14248
b775012e
LM
14249 /* Mark breakpoint locations modified. */
14250 mark_breakpoint_modified (bpt);
14251
d248b706
KY
14252 if (target_supports_enable_disable_tracepoint ()
14253 && current_trace_status ()->running && is_tracepoint (bpt))
14254 {
14255 struct bp_location *location;
14256
14257 for (location = bpt->loc; location; location = location->next)
14258 target_disable_tracepoint (location);
14259 }
14260
44702360 14261 update_global_location_list (UGLL_DONT_INSERT);
c906108c 14262
76727919 14263 gdb::observers::breakpoint_modified.notify (bpt);
c906108c
SS
14264}
14265
d0fe4701
XR
14266/* Enable or disable the breakpoint(s) or breakpoint location(s)
14267 specified in ARGS. ARGS may be in any of the formats handled by
14268 extract_bp_number_and_location. ENABLE specifies whether to enable
14269 or disable the breakpoints/locations. */
14270
c906108c 14271static void
d0fe4701 14272enable_disable_command (const char *args, int from_tty, bool enable)
c906108c 14273{
c906108c 14274 if (args == 0)
46c6471b
PA
14275 {
14276 struct breakpoint *bpt;
14277
14278 ALL_BREAKPOINTS (bpt)
14279 if (user_breakpoint_p (bpt))
d0fe4701
XR
14280 {
14281 if (enable)
14282 enable_breakpoint (bpt);
14283 else
14284 disable_breakpoint (bpt);
14285 }
46c6471b 14286 }
9eaabc75 14287 else
0d381245 14288 {
cb791d59 14289 std::string num = extract_arg (&args);
9eaabc75 14290
cb791d59 14291 while (!num.empty ())
d248b706 14292 {
d0fe4701 14293 std::pair<int, int> bp_num_range, bp_loc_range;
9eaabc75 14294
cc638e86
PA
14295 extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
14296
14297 if (bp_loc_range.first == bp_loc_range.second
14298 && bp_loc_range.first == 0)
d0fe4701 14299 {
cc638e86
PA
14300 /* Handle breakpoint ids with formats 'x' or 'x-z'. */
14301 map_breakpoint_number_range (bp_num_range,
14302 enable
14303 ? enable_breakpoint
14304 : disable_breakpoint);
14305 }
14306 else
14307 {
14308 /* Handle breakpoint ids with formats 'x.y' or
14309 'x.y-z'. */
14310 enable_disable_breakpoint_location_range
14311 (bp_num_range.first, bp_loc_range, enable);
b775012e 14312 }
9eaabc75 14313 num = extract_arg (&args);
d248b706 14314 }
0d381245 14315 }
c906108c
SS
14316}
14317
d0fe4701
XR
14318/* The disable command disables the specified breakpoints/locations
14319 (or all defined breakpoints) so they're no longer effective in
14320 stopping the inferior. ARGS may be in any of the forms defined in
14321 extract_bp_number_and_location. */
14322
14323static void
14324disable_command (const char *args, int from_tty)
14325{
14326 enable_disable_command (args, from_tty, false);
14327}
14328
c906108c 14329static void
816338b5
SS
14330enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14331 int count)
c906108c 14332{
afe38095 14333 int target_resources_ok;
c906108c
SS
14334
14335 if (bpt->type == bp_hardware_breakpoint)
14336 {
14337 int i;
c5aa993b 14338 i = hw_breakpoint_used_count ();
53a5351d 14339 target_resources_ok =
d92524f1 14340 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 14341 i + 1, 0);
c906108c 14342 if (target_resources_ok == 0)
8a3fe4f8 14343 error (_("No hardware breakpoint support in the target."));
c906108c 14344 else if (target_resources_ok < 0)
8a3fe4f8 14345 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
14346 }
14347
cc60f2e3 14348 if (is_watchpoint (bpt))
c906108c 14349 {
d07205c2 14350 /* Initialize it just to avoid a GCC false warning. */
f486487f 14351 enum enable_state orig_enable_state = bp_disabled;
dde02812 14352
492d29ea 14353 TRY
c906108c 14354 {
3a5c3e22
PA
14355 struct watchpoint *w = (struct watchpoint *) bpt;
14356
1e718ff1
TJB
14357 orig_enable_state = bpt->enable_state;
14358 bpt->enable_state = bp_enabled;
3a5c3e22 14359 update_watchpoint (w, 1 /* reparse */);
c906108c 14360 }
492d29ea 14361 CATCH (e, RETURN_MASK_ALL)
c5aa993b 14362 {
1e718ff1 14363 bpt->enable_state = orig_enable_state;
dde02812
ES
14364 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14365 bpt->number);
14366 return;
c5aa993b 14367 }
492d29ea 14368 END_CATCH
c906108c 14369 }
0101ce28 14370
b775012e
LM
14371 bpt->enable_state = bp_enabled;
14372
14373 /* Mark breakpoint locations modified. */
14374 mark_breakpoint_modified (bpt);
14375
d248b706
KY
14376 if (target_supports_enable_disable_tracepoint ()
14377 && current_trace_status ()->running && is_tracepoint (bpt))
14378 {
14379 struct bp_location *location;
14380
14381 for (location = bpt->loc; location; location = location->next)
14382 target_enable_tracepoint (location);
14383 }
14384
b4c291bb 14385 bpt->disposition = disposition;
816338b5 14386 bpt->enable_count = count;
44702360 14387 update_global_location_list (UGLL_MAY_INSERT);
9c97429f 14388
76727919 14389 gdb::observers::breakpoint_modified.notify (bpt);
c906108c
SS
14390}
14391
fe3f5fa8 14392
c906108c 14393void
fba45db2 14394enable_breakpoint (struct breakpoint *bpt)
c906108c 14395{
816338b5 14396 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
14397}
14398
d0fe4701
XR
14399/* The enable command enables the specified breakpoints/locations (or
14400 all defined breakpoints) so they once again become (or continue to
14401 be) effective in stopping the inferior. ARGS may be in any of the
14402 forms defined in extract_bp_number_and_location. */
c906108c 14403
c906108c 14404static void
981a3fb3 14405enable_command (const char *args, int from_tty)
c906108c 14406{
d0fe4701 14407 enable_disable_command (args, from_tty, true);
c906108c
SS
14408}
14409
c906108c 14410static void
4495129a 14411enable_once_command (const char *args, int from_tty)
c906108c 14412{
48649e1b
TT
14413 map_breakpoint_numbers
14414 (args, [&] (breakpoint *b)
14415 {
14416 iterate_over_related_breakpoints
14417 (b, [&] (breakpoint *bpt)
14418 {
14419 enable_breakpoint_disp (bpt, disp_disable, 1);
14420 });
14421 });
816338b5
SS
14422}
14423
14424static void
4495129a 14425enable_count_command (const char *args, int from_tty)
816338b5 14426{
b9d61307
SM
14427 int count;
14428
14429 if (args == NULL)
14430 error_no_arg (_("hit count"));
14431
14432 count = get_number (&args);
816338b5 14433
48649e1b
TT
14434 map_breakpoint_numbers
14435 (args, [&] (breakpoint *b)
14436 {
14437 iterate_over_related_breakpoints
14438 (b, [&] (breakpoint *bpt)
14439 {
14440 enable_breakpoint_disp (bpt, disp_disable, count);
14441 });
14442 });
c906108c
SS
14443}
14444
c906108c 14445static void
4495129a 14446enable_delete_command (const char *args, int from_tty)
c906108c 14447{
48649e1b
TT
14448 map_breakpoint_numbers
14449 (args, [&] (breakpoint *b)
14450 {
14451 iterate_over_related_breakpoints
14452 (b, [&] (breakpoint *bpt)
14453 {
14454 enable_breakpoint_disp (bpt, disp_del, 1);
14455 });
14456 });
c906108c
SS
14457}
14458\f
fa8d40ab 14459static void
981a3fb3 14460set_breakpoint_cmd (const char *args, int from_tty)
fa8d40ab
JJ
14461{
14462}
14463
14464static void
981a3fb3 14465show_breakpoint_cmd (const char *args, int from_tty)
fa8d40ab
JJ
14466{
14467}
14468
1f3b5d1b
PP
14469/* Invalidate last known value of any hardware watchpoint if
14470 the memory which that value represents has been written to by
14471 GDB itself. */
14472
14473static void
8de0566d
YQ
14474invalidate_bp_value_on_memory_change (struct inferior *inferior,
14475 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
14476 const bfd_byte *data)
14477{
14478 struct breakpoint *bp;
14479
14480 ALL_BREAKPOINTS (bp)
14481 if (bp->enable_state == bp_enabled
3a5c3e22 14482 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 14483 {
3a5c3e22 14484 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 14485
850645cf 14486 if (wp->val_valid && wp->val != nullptr)
3a5c3e22
PA
14487 {
14488 struct bp_location *loc;
14489
14490 for (loc = bp->loc; loc != NULL; loc = loc->next)
14491 if (loc->loc_type == bp_loc_hardware_watchpoint
14492 && loc->address + loc->length > addr
14493 && addr + len > loc->address)
14494 {
3a5c3e22
PA
14495 wp->val = NULL;
14496 wp->val_valid = 0;
14497 }
14498 }
1f3b5d1b
PP
14499 }
14500}
14501
8181d85f
DJ
14502/* Create and insert a breakpoint for software single step. */
14503
14504void
6c95b8df 14505insert_single_step_breakpoint (struct gdbarch *gdbarch,
accd0bcd 14506 const address_space *aspace,
4a64f543 14507 CORE_ADDR next_pc)
8181d85f 14508{
7c16b83e
PA
14509 struct thread_info *tp = inferior_thread ();
14510 struct symtab_and_line sal;
14511 CORE_ADDR pc = next_pc;
8181d85f 14512
34b7e8a6
PA
14513 if (tp->control.single_step_breakpoints == NULL)
14514 {
14515 tp->control.single_step_breakpoints
5d5658a1 14516 = new_single_step_breakpoint (tp->global_num, gdbarch);
34b7e8a6 14517 }
8181d85f 14518
7c16b83e
PA
14519 sal = find_pc_line (pc, 0);
14520 sal.pc = pc;
14521 sal.section = find_pc_overlay (pc);
14522 sal.explicit_pc = 1;
34b7e8a6 14523 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
8181d85f 14524
7c16b83e 14525 update_global_location_list (UGLL_INSERT);
8181d85f
DJ
14526}
14527
93f9a11f
YQ
14528/* Insert single step breakpoints according to the current state. */
14529
14530int
14531insert_single_step_breakpoints (struct gdbarch *gdbarch)
14532{
f5ea389a 14533 struct regcache *regcache = get_current_regcache ();
a0ff9e1a 14534 std::vector<CORE_ADDR> next_pcs;
93f9a11f 14535
f5ea389a 14536 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
93f9a11f 14537
a0ff9e1a 14538 if (!next_pcs.empty ())
93f9a11f 14539 {
f5ea389a 14540 struct frame_info *frame = get_current_frame ();
8b86c959 14541 const address_space *aspace = get_frame_address_space (frame);
93f9a11f 14542
a0ff9e1a 14543 for (CORE_ADDR pc : next_pcs)
93f9a11f
YQ
14544 insert_single_step_breakpoint (gdbarch, aspace, pc);
14545
93f9a11f
YQ
14546 return 1;
14547 }
14548 else
14549 return 0;
14550}
14551
34b7e8a6 14552/* See breakpoint.h. */
f02253f1
HZ
14553
14554int
7c16b83e 14555breakpoint_has_location_inserted_here (struct breakpoint *bp,
accd0bcd 14556 const address_space *aspace,
7c16b83e 14557 CORE_ADDR pc)
1aafd4da 14558{
7c16b83e 14559 struct bp_location *loc;
1aafd4da 14560
7c16b83e
PA
14561 for (loc = bp->loc; loc != NULL; loc = loc->next)
14562 if (loc->inserted
14563 && breakpoint_location_address_match (loc, aspace, pc))
14564 return 1;
1aafd4da 14565
7c16b83e 14566 return 0;
ef370185
JB
14567}
14568
14569/* Check whether a software single-step breakpoint is inserted at
14570 PC. */
14571
14572int
accd0bcd 14573single_step_breakpoint_inserted_here_p (const address_space *aspace,
ef370185
JB
14574 CORE_ADDR pc)
14575{
34b7e8a6
PA
14576 struct breakpoint *bpt;
14577
14578 ALL_BREAKPOINTS (bpt)
14579 {
14580 if (bpt->type == bp_single_step
14581 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
14582 return 1;
14583 }
14584 return 0;
1aafd4da
UW
14585}
14586
1042e4c0
SS
14587/* Tracepoint-specific operations. */
14588
14589/* Set tracepoint count to NUM. */
14590static void
14591set_tracepoint_count (int num)
14592{
14593 tracepoint_count = num;
4fa62494 14594 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
14595}
14596
70221824 14597static void
0b39b52e 14598trace_command (const char *arg, int from_tty)
1042e4c0 14599{
55aa24fb 14600 struct breakpoint_ops *ops;
55aa24fb 14601
ffc2605c
TT
14602 event_location_up location = string_to_event_location (&arg,
14603 current_language);
5b56227b 14604 if (location != NULL
ffc2605c 14605 && event_location_type (location.get ()) == PROBE_LOCATION)
55aa24fb
SDJ
14606 ops = &tracepoint_probe_breakpoint_ops;
14607 else
14608 ops = &tracepoint_breakpoint_ops;
14609
558a9d82 14610 create_breakpoint (get_current_arch (),
ffc2605c 14611 location.get (),
f00aae0f 14612 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14613 0 /* tempflag */,
14614 bp_tracepoint /* type_wanted */,
14615 0 /* Ignore count */,
14616 pending_break_support,
14617 ops,
14618 from_tty,
14619 1 /* enabled */,
14620 0 /* internal */, 0);
1042e4c0
SS
14621}
14622
70221824 14623static void
0b39b52e 14624ftrace_command (const char *arg, int from_tty)
7a697b8d 14625{
ffc2605c
TT
14626 event_location_up location = string_to_event_location (&arg,
14627 current_language);
558a9d82 14628 create_breakpoint (get_current_arch (),
ffc2605c 14629 location.get (),
f00aae0f 14630 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14631 0 /* tempflag */,
14632 bp_fast_tracepoint /* type_wanted */,
14633 0 /* Ignore count */,
14634 pending_break_support,
14635 &tracepoint_breakpoint_ops,
14636 from_tty,
14637 1 /* enabled */,
14638 0 /* internal */, 0);
0fb4aa4b
PA
14639}
14640
14641/* strace command implementation. Creates a static tracepoint. */
14642
70221824 14643static void
0b39b52e 14644strace_command (const char *arg, int from_tty)
0fb4aa4b 14645{
983af33b 14646 struct breakpoint_ops *ops;
ffc2605c 14647 event_location_up location;
983af33b
SDJ
14648
14649 /* Decide if we are dealing with a static tracepoint marker (`-m'),
14650 or with a normal static tracepoint. */
61012eef 14651 if (arg && startswith (arg, "-m") && isspace (arg[2]))
f00aae0f
KS
14652 {
14653 ops = &strace_marker_breakpoint_ops;
a20714ff 14654 location = new_linespec_location (&arg, symbol_name_match_type::FULL);
f00aae0f 14655 }
983af33b 14656 else
f00aae0f
KS
14657 {
14658 ops = &tracepoint_breakpoint_ops;
14659 location = string_to_event_location (&arg, current_language);
14660 }
983af33b 14661
558a9d82 14662 create_breakpoint (get_current_arch (),
ffc2605c 14663 location.get (),
f00aae0f 14664 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14665 0 /* tempflag */,
14666 bp_static_tracepoint /* type_wanted */,
14667 0 /* Ignore count */,
14668 pending_break_support,
14669 ops,
14670 from_tty,
14671 1 /* enabled */,
14672 0 /* internal */, 0);
7a697b8d
SS
14673}
14674
409873ef
SS
14675/* Set up a fake reader function that gets command lines from a linked
14676 list that was acquired during tracepoint uploading. */
14677
14678static struct uploaded_tp *this_utp;
3149d8c1 14679static int next_cmd;
409873ef
SS
14680
14681static char *
14682read_uploaded_action (void)
14683{
a18ba4e4 14684 char *rslt = nullptr;
409873ef 14685
a18ba4e4
SM
14686 if (next_cmd < this_utp->cmd_strings.size ())
14687 {
14688 rslt = this_utp->cmd_strings[next_cmd];
14689 next_cmd++;
14690 }
409873ef
SS
14691
14692 return rslt;
14693}
14694
00bf0b85
SS
14695/* Given information about a tracepoint as recorded on a target (which
14696 can be either a live system or a trace file), attempt to create an
14697 equivalent GDB tracepoint. This is not a reliable process, since
14698 the target does not necessarily have all the information used when
14699 the tracepoint was originally defined. */
14700
d9b3f62e 14701struct tracepoint *
00bf0b85 14702create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 14703{
f2fc3015
TT
14704 const char *addr_str;
14705 char small_buf[100];
d9b3f62e 14706 struct tracepoint *tp;
fd9b8c24 14707
409873ef
SS
14708 if (utp->at_string)
14709 addr_str = utp->at_string;
14710 else
14711 {
14712 /* In the absence of a source location, fall back to raw
14713 address. Since there is no way to confirm that the address
14714 means the same thing as when the trace was started, warn the
14715 user. */
3e43a32a
MS
14716 warning (_("Uploaded tracepoint %d has no "
14717 "source location, using raw address"),
409873ef 14718 utp->number);
8c042590 14719 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
14720 addr_str = small_buf;
14721 }
14722
14723 /* There's not much we can do with a sequence of bytecodes. */
14724 if (utp->cond && !utp->cond_string)
3e43a32a
MS
14725 warning (_("Uploaded tracepoint %d condition "
14726 "has no source form, ignoring it"),
409873ef 14727 utp->number);
d5551862 14728
ffc2605c
TT
14729 event_location_up location = string_to_event_location (&addr_str,
14730 current_language);
8cdf0e15 14731 if (!create_breakpoint (get_current_arch (),
ffc2605c 14732 location.get (),
f00aae0f 14733 utp->cond_string, -1, addr_str,
e7e0cddf 14734 0 /* parse cond/thread */,
8cdf0e15 14735 0 /* tempflag */,
0fb4aa4b 14736 utp->type /* type_wanted */,
8cdf0e15
VP
14737 0 /* Ignore count */,
14738 pending_break_support,
348d480f 14739 &tracepoint_breakpoint_ops,
8cdf0e15 14740 0 /* from_tty */,
84f4c1fe 14741 utp->enabled /* enabled */,
44f238bb
PA
14742 0 /* internal */,
14743 CREATE_BREAKPOINT_FLAGS_INSERTED))
ffc2605c 14744 return NULL;
fd9b8c24 14745
409873ef 14746 /* Get the tracepoint we just created. */
fd9b8c24
PA
14747 tp = get_tracepoint (tracepoint_count);
14748 gdb_assert (tp != NULL);
d5551862 14749
00bf0b85
SS
14750 if (utp->pass > 0)
14751 {
8c042590 14752 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
c1fc2657 14753 tp->number);
00bf0b85 14754
409873ef 14755 trace_pass_command (small_buf, 0);
00bf0b85
SS
14756 }
14757
409873ef
SS
14758 /* If we have uploaded versions of the original commands, set up a
14759 special-purpose "reader" function and call the usual command line
14760 reader, then pass the result to the breakpoint command-setting
14761 function. */
a18ba4e4 14762 if (!utp->cmd_strings.empty ())
00bf0b85 14763 {
12973681 14764 counted_command_line cmd_list;
00bf0b85 14765
409873ef 14766 this_utp = utp;
3149d8c1 14767 next_cmd = 0;
d5551862 14768
60b3cef2 14769 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL);
409873ef 14770
c1fc2657 14771 breakpoint_set_commands (tp, std::move (cmd_list));
00bf0b85 14772 }
a18ba4e4
SM
14773 else if (!utp->actions.empty ()
14774 || !utp->step_actions.empty ())
3e43a32a
MS
14775 warning (_("Uploaded tracepoint %d actions "
14776 "have no source form, ignoring them"),
409873ef 14777 utp->number);
00bf0b85 14778
f196051f 14779 /* Copy any status information that might be available. */
c1fc2657 14780 tp->hit_count = utp->hit_count;
f196051f
SS
14781 tp->traceframe_usage = utp->traceframe_usage;
14782
00bf0b85 14783 return tp;
d9b3f62e 14784}
00bf0b85 14785
1042e4c0
SS
14786/* Print information on tracepoint number TPNUM_EXP, or all if
14787 omitted. */
14788
14789static void
1d12d88f 14790info_tracepoints_command (const char *args, int from_tty)
1042e4c0 14791{
79a45e25 14792 struct ui_out *uiout = current_uiout;
e5a67952 14793 int num_printed;
1042e4c0 14794
e5a67952 14795 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
14796
14797 if (num_printed == 0)
1042e4c0 14798 {
e5a67952 14799 if (args == NULL || *args == '\0')
112e8700 14800 uiout->message ("No tracepoints.\n");
d77f58be 14801 else
112e8700 14802 uiout->message ("No tracepoint matching '%s'.\n", args);
1042e4c0 14803 }
ad443146
SS
14804
14805 default_collect_info ();
1042e4c0
SS
14806}
14807
4a64f543 14808/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
14809 Not supported by all targets. */
14810static void
5fed81ff 14811enable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14812{
14813 enable_command (args, from_tty);
14814}
14815
4a64f543 14816/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
14817 Not supported by all targets. */
14818static void
5fed81ff 14819disable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14820{
14821 disable_command (args, from_tty);
14822}
14823
4a64f543 14824/* Remove a tracepoint (or all if no argument). */
1042e4c0 14825static void
4495129a 14826delete_trace_command (const char *arg, int from_tty)
1042e4c0 14827{
35df4500 14828 struct breakpoint *b, *b_tmp;
1042e4c0
SS
14829
14830 dont_repeat ();
14831
14832 if (arg == 0)
14833 {
14834 int breaks_to_delete = 0;
14835
14836 /* Delete all breakpoints if no argument.
14837 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
14838 have to be deleted with an explicit breakpoint number
14839 argument. */
1042e4c0 14840 ALL_TRACEPOINTS (b)
46c6471b 14841 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
14842 {
14843 breaks_to_delete = 1;
14844 break;
14845 }
1042e4c0
SS
14846
14847 /* Ask user only if there are some breakpoints to delete. */
14848 if (!from_tty
14849 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
14850 {
35df4500 14851 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 14852 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 14853 delete_breakpoint (b);
1042e4c0
SS
14854 }
14855 }
14856 else
48649e1b
TT
14857 map_breakpoint_numbers
14858 (arg, [&] (breakpoint *b)
14859 {
14860 iterate_over_related_breakpoints (b, delete_breakpoint);
14861 });
1042e4c0
SS
14862}
14863
197f0a60
TT
14864/* Helper function for trace_pass_command. */
14865
14866static void
d9b3f62e 14867trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 14868{
d9b3f62e 14869 tp->pass_count = count;
76727919 14870 gdb::observers::breakpoint_modified.notify (tp);
197f0a60
TT
14871 if (from_tty)
14872 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
c1fc2657 14873 tp->number, count);
197f0a60
TT
14874}
14875
1042e4c0
SS
14876/* Set passcount for tracepoint.
14877
14878 First command argument is passcount, second is tracepoint number.
14879 If tracepoint number omitted, apply to most recently defined.
14880 Also accepts special argument "all". */
14881
14882static void
0b39b52e 14883trace_pass_command (const char *args, int from_tty)
1042e4c0 14884{
d9b3f62e 14885 struct tracepoint *t1;
0b39b52e 14886 ULONGEST count;
1042e4c0
SS
14887
14888 if (args == 0 || *args == 0)
3e43a32a
MS
14889 error (_("passcount command requires an "
14890 "argument (count + optional TP num)"));
1042e4c0 14891
0b39b52e 14892 count = strtoulst (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 14893
529480d0 14894 args = skip_spaces (args);
1042e4c0
SS
14895 if (*args && strncasecmp (args, "all", 3) == 0)
14896 {
d9b3f62e
PA
14897 struct breakpoint *b;
14898
1042e4c0 14899 args += 3; /* Skip special argument "all". */
1042e4c0
SS
14900 if (*args)
14901 error (_("Junk at end of arguments."));
1042e4c0 14902
d9b3f62e 14903 ALL_TRACEPOINTS (b)
197f0a60 14904 {
d9b3f62e 14905 t1 = (struct tracepoint *) b;
197f0a60
TT
14906 trace_pass_set_count (t1, count, from_tty);
14907 }
14908 }
14909 else if (*args == '\0')
1042e4c0 14910 {
5fa1d40e 14911 t1 = get_tracepoint_by_number (&args, NULL);
1042e4c0 14912 if (t1)
197f0a60
TT
14913 trace_pass_set_count (t1, count, from_tty);
14914 }
14915 else
14916 {
bfd28288
PA
14917 number_or_range_parser parser (args);
14918 while (!parser.finished ())
1042e4c0 14919 {
bfd28288 14920 t1 = get_tracepoint_by_number (&args, &parser);
197f0a60
TT
14921 if (t1)
14922 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
14923 }
14924 }
1042e4c0
SS
14925}
14926
d9b3f62e 14927struct tracepoint *
1042e4c0
SS
14928get_tracepoint (int num)
14929{
14930 struct breakpoint *t;
14931
14932 ALL_TRACEPOINTS (t)
14933 if (t->number == num)
d9b3f62e 14934 return (struct tracepoint *) t;
1042e4c0
SS
14935
14936 return NULL;
14937}
14938
d5551862
SS
14939/* Find the tracepoint with the given target-side number (which may be
14940 different from the tracepoint number after disconnecting and
14941 reconnecting). */
14942
d9b3f62e 14943struct tracepoint *
d5551862
SS
14944get_tracepoint_by_number_on_target (int num)
14945{
d9b3f62e 14946 struct breakpoint *b;
d5551862 14947
d9b3f62e
PA
14948 ALL_TRACEPOINTS (b)
14949 {
14950 struct tracepoint *t = (struct tracepoint *) b;
14951
14952 if (t->number_on_target == num)
14953 return t;
14954 }
d5551862
SS
14955
14956 return NULL;
14957}
14958
1042e4c0 14959/* Utility: parse a tracepoint number and look it up in the list.
197f0a60 14960 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
5fa1d40e
YQ
14961 If the argument is missing, the most recent tracepoint
14962 (tracepoint_count) is returned. */
14963
d9b3f62e 14964struct tracepoint *
0b39b52e 14965get_tracepoint_by_number (const char **arg,
bfd28288 14966 number_or_range_parser *parser)
1042e4c0 14967{
1042e4c0
SS
14968 struct breakpoint *t;
14969 int tpnum;
0b39b52e 14970 const char *instring = arg == NULL ? NULL : *arg;
1042e4c0 14971
bfd28288 14972 if (parser != NULL)
197f0a60 14973 {
bfd28288
PA
14974 gdb_assert (!parser->finished ());
14975 tpnum = parser->get_number ();
197f0a60
TT
14976 }
14977 else if (arg == NULL || *arg == NULL || ! **arg)
5fa1d40e 14978 tpnum = tracepoint_count;
1042e4c0 14979 else
197f0a60 14980 tpnum = get_number (arg);
1042e4c0
SS
14981
14982 if (tpnum <= 0)
14983 {
14984 if (instring && *instring)
14985 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
14986 instring);
14987 else
5fa1d40e 14988 printf_filtered (_("No previous tracepoint\n"));
1042e4c0
SS
14989 return NULL;
14990 }
14991
14992 ALL_TRACEPOINTS (t)
14993 if (t->number == tpnum)
14994 {
d9b3f62e 14995 return (struct tracepoint *) t;
1042e4c0
SS
14996 }
14997
1042e4c0
SS
14998 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
14999 return NULL;
15000}
15001
d9b3f62e
PA
15002void
15003print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15004{
15005 if (b->thread != -1)
15006 fprintf_unfiltered (fp, " thread %d", b->thread);
15007
15008 if (b->task != 0)
15009 fprintf_unfiltered (fp, " task %d", b->task);
15010
15011 fprintf_unfiltered (fp, "\n");
15012}
15013
6149aea9
PA
15014/* Save information on user settable breakpoints (watchpoints, etc) to
15015 a new script file named FILENAME. If FILTER is non-NULL, call it
15016 on each breakpoint and only include the ones for which it returns
15017 non-zero. */
15018
1042e4c0 15019static void
4495129a 15020save_breakpoints (const char *filename, int from_tty,
6149aea9 15021 int (*filter) (const struct breakpoint *))
1042e4c0
SS
15022{
15023 struct breakpoint *tp;
6149aea9 15024 int any = 0;
6149aea9 15025 int extra_trace_bits = 0;
1042e4c0 15026
6149aea9
PA
15027 if (filename == 0 || *filename == 0)
15028 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
15029
15030 /* See if we have anything to save. */
6149aea9 15031 ALL_BREAKPOINTS (tp)
1042e4c0 15032 {
6149aea9 15033 /* Skip internal and momentary breakpoints. */
09d682a4 15034 if (!user_breakpoint_p (tp))
6149aea9
PA
15035 continue;
15036
15037 /* If we have a filter, only save the breakpoints it accepts. */
15038 if (filter && !filter (tp))
15039 continue;
15040
15041 any = 1;
15042
15043 if (is_tracepoint (tp))
15044 {
15045 extra_trace_bits = 1;
15046
15047 /* We can stop searching. */
15048 break;
15049 }
1042e4c0 15050 }
6149aea9
PA
15051
15052 if (!any)
1042e4c0 15053 {
6149aea9 15054 warning (_("Nothing to save."));
1042e4c0
SS
15055 return;
15056 }
15057
ee0c3293 15058 gdb::unique_xmalloc_ptr<char> expanded_filename (tilde_expand (filename));
d7e74731
PA
15059
15060 stdio_file fp;
15061
ee0c3293 15062 if (!fp.open (expanded_filename.get (), "w"))
6149aea9 15063 error (_("Unable to open file '%s' for saving (%s)"),
ee0c3293 15064 expanded_filename.get (), safe_strerror (errno));
8bf6485c 15065
6149aea9 15066 if (extra_trace_bits)
d7e74731 15067 save_trace_state_variables (&fp);
8bf6485c 15068
6149aea9 15069 ALL_BREAKPOINTS (tp)
1042e4c0 15070 {
6149aea9 15071 /* Skip internal and momentary breakpoints. */
09d682a4 15072 if (!user_breakpoint_p (tp))
6149aea9 15073 continue;
8bf6485c 15074
6149aea9
PA
15075 /* If we have a filter, only save the breakpoints it accepts. */
15076 if (filter && !filter (tp))
15077 continue;
15078
d7e74731 15079 tp->ops->print_recreate (tp, &fp);
1042e4c0 15080
6149aea9
PA
15081 /* Note, we can't rely on tp->number for anything, as we can't
15082 assume the recreated breakpoint numbers will match. Use $bpnum
15083 instead. */
15084
15085 if (tp->cond_string)
d7e74731 15086 fp.printf (" condition $bpnum %s\n", tp->cond_string);
6149aea9
PA
15087
15088 if (tp->ignore_count)
d7e74731 15089 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
6149aea9 15090
2d9442cc 15091 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 15092 {
d7e74731 15093 fp.puts (" commands\n");
a7bdde9e 15094
d7e74731 15095 current_uiout->redirect (&fp);
492d29ea 15096 TRY
1042e4c0 15097 {
d1b0a7bf 15098 print_command_lines (current_uiout, tp->commands.get (), 2);
a7bdde9e 15099 }
492d29ea
PA
15100 CATCH (ex, RETURN_MASK_ALL)
15101 {
112e8700 15102 current_uiout->redirect (NULL);
492d29ea
PA
15103 throw_exception (ex);
15104 }
15105 END_CATCH
1042e4c0 15106
112e8700 15107 current_uiout->redirect (NULL);
d7e74731 15108 fp.puts (" end\n");
1042e4c0 15109 }
6149aea9
PA
15110
15111 if (tp->enable_state == bp_disabled)
d7e74731 15112 fp.puts ("disable $bpnum\n");
6149aea9
PA
15113
15114 /* If this is a multi-location breakpoint, check if the locations
15115 should be individually disabled. Watchpoint locations are
15116 special, and not user visible. */
15117 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15118 {
15119 struct bp_location *loc;
15120 int n = 1;
15121
15122 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15123 if (!loc->enabled)
d7e74731 15124 fp.printf ("disable $bpnum.%d\n", n);
6149aea9 15125 }
1042e4c0 15126 }
8bf6485c 15127
6149aea9 15128 if (extra_trace_bits && *default_collect)
d7e74731 15129 fp.printf ("set default-collect %s\n", default_collect);
8bf6485c 15130
1042e4c0 15131 if (from_tty)
ee0c3293 15132 printf_filtered (_("Saved to file '%s'.\n"), expanded_filename.get ());
6149aea9
PA
15133}
15134
15135/* The `save breakpoints' command. */
15136
15137static void
4495129a 15138save_breakpoints_command (const char *args, int from_tty)
6149aea9
PA
15139{
15140 save_breakpoints (args, from_tty, NULL);
15141}
15142
15143/* The `save tracepoints' command. */
15144
15145static void
4495129a 15146save_tracepoints_command (const char *args, int from_tty)
6149aea9
PA
15147{
15148 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
15149}
15150
15151/* Create a vector of all tracepoints. */
15152
f51e0e20 15153std::vector<breakpoint *>
eeae04df 15154all_tracepoints (void)
1042e4c0 15155{
f51e0e20 15156 std::vector<breakpoint *> tp_vec;
1042e4c0
SS
15157 struct breakpoint *tp;
15158
15159 ALL_TRACEPOINTS (tp)
15160 {
f51e0e20 15161 tp_vec.push_back (tp);
1042e4c0
SS
15162 }
15163
15164 return tp_vec;
15165}
15166
c906108c 15167\f
629500fa
KS
15168/* This help string is used to consolidate all the help string for specifying
15169 locations used by several commands. */
15170
15171#define LOCATION_HELP_STRING \
15172"Linespecs are colon-separated lists of location parameters, such as\n\
15173source filename, function name, label name, and line number.\n\
15174Example: To specify the start of a label named \"the_top\" in the\n\
15175function \"fact\" in the file \"factorial.c\", use\n\
15176\"factorial.c:fact:the_top\".\n\
15177\n\
15178Address locations begin with \"*\" and specify an exact address in the\n\
15179program. Example: To specify the fourth byte past the start function\n\
15180\"main\", use \"*main + 4\".\n\
15181\n\
15182Explicit locations are similar to linespecs but use an option/argument\n\
15183syntax to specify location parameters.\n\
15184Example: To specify the start of the label named \"the_top\" in the\n\
15185function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
a20714ff
PA
15186-function fact -label the_top\".\n\
15187\n\
15188By default, a specified function is matched against the program's\n\
15189functions in all scopes. For C++, this means in all namespaces and\n\
15190classes. For Ada, this means in all packages. E.g., in C++,\n\
15191\"func()\" matches \"A::func()\", \"A::B::func()\", etc. The\n\
15192\"-qualified\" flag overrides this behavior, making GDB interpret the\n\
15193specified name as a complete fully-qualified name instead.\n"
629500fa 15194
4a64f543
MS
15195/* This help string is used for the break, hbreak, tbreak and thbreak
15196 commands. It is defined as a macro to prevent duplication.
15197 COMMAND should be a string constant containing the name of the
15198 command. */
629500fa 15199
31e2b00f 15200#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
15201command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15202PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15203probe point. Accepted values are `-probe' (for a generic, automatically\n\
d4777acb
JM
15204guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15205`-probe-dtrace' (for a DTrace probe).\n\
629500fa
KS
15206LOCATION may be a linespec, address, or explicit location as described\n\
15207below.\n\
15208\n\
dc10affe
PA
15209With no LOCATION, uses current execution address of the selected\n\
15210stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
15211\n\
15212THREADNUM is the number from \"info threads\".\n\
15213CONDITION is a boolean expression.\n\
629500fa 15214\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
15215Multiple breakpoints at one place are permitted, and useful if their\n\
15216conditions are different.\n\
31e2b00f
AS
15217\n\
15218Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15219
44feb3ce
TT
15220/* List of subcommands for "catch". */
15221static struct cmd_list_element *catch_cmdlist;
15222
15223/* List of subcommands for "tcatch". */
15224static struct cmd_list_element *tcatch_cmdlist;
15225
9ac4176b 15226void
a121b7c1 15227add_catch_command (const char *name, const char *docstring,
eb4c3f4a 15228 cmd_const_sfunc_ftype *sfunc,
625e8578 15229 completer_ftype *completer,
44feb3ce
TT
15230 void *user_data_catch,
15231 void *user_data_tcatch)
15232{
15233 struct cmd_list_element *command;
15234
0450cc4c 15235 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15236 &catch_cmdlist);
15237 set_cmd_sfunc (command, sfunc);
15238 set_cmd_context (command, user_data_catch);
a96d9b2e 15239 set_cmd_completer (command, completer);
44feb3ce 15240
0450cc4c 15241 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15242 &tcatch_cmdlist);
15243 set_cmd_sfunc (command, sfunc);
15244 set_cmd_context (command, user_data_tcatch);
a96d9b2e 15245 set_cmd_completer (command, completer);
44feb3ce
TT
15246}
15247
6149aea9 15248static void
981a3fb3 15249save_command (const char *arg, int from_tty)
6149aea9 15250{
3e43a32a
MS
15251 printf_unfiltered (_("\"save\" must be followed by "
15252 "the name of a save subcommand.\n"));
635c7e8a 15253 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
6149aea9
PA
15254}
15255
84f4c1fe
PM
15256struct breakpoint *
15257iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15258 void *data)
15259{
35df4500 15260 struct breakpoint *b, *b_tmp;
84f4c1fe 15261
35df4500 15262 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
15263 {
15264 if ((*callback) (b, data))
15265 return b;
15266 }
15267
15268 return NULL;
15269}
15270
0574c78f
GB
15271/* Zero if any of the breakpoint's locations could be a location where
15272 functions have been inlined, nonzero otherwise. */
15273
15274static int
15275is_non_inline_function (struct breakpoint *b)
15276{
15277 /* The shared library event breakpoint is set on the address of a
15278 non-inline function. */
15279 if (b->type == bp_shlib_event)
15280 return 1;
15281
15282 return 0;
15283}
15284
15285/* Nonzero if the specified PC cannot be a location where functions
15286 have been inlined. */
15287
15288int
accd0bcd 15289pc_at_non_inline_function (const address_space *aspace, CORE_ADDR pc,
09ac7c10 15290 const struct target_waitstatus *ws)
0574c78f
GB
15291{
15292 struct breakpoint *b;
15293 struct bp_location *bl;
15294
15295 ALL_BREAKPOINTS (b)
15296 {
15297 if (!is_non_inline_function (b))
15298 continue;
15299
15300 for (bl = b->loc; bl != NULL; bl = bl->next)
15301 {
15302 if (!bl->shlib_disabled
09ac7c10 15303 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
15304 return 1;
15305 }
15306 }
15307
15308 return 0;
15309}
15310
2f202fde
JK
15311/* Remove any references to OBJFILE which is going to be freed. */
15312
15313void
15314breakpoint_free_objfile (struct objfile *objfile)
15315{
15316 struct bp_location **locp, *loc;
15317
15318 ALL_BP_LOCATIONS (loc, locp)
eb822aa6 15319 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
2f202fde
JK
15320 loc->symtab = NULL;
15321}
15322
2060206e
PA
15323void
15324initialize_breakpoint_ops (void)
15325{
15326 static int initialized = 0;
15327
15328 struct breakpoint_ops *ops;
15329
15330 if (initialized)
15331 return;
15332 initialized = 1;
15333
15334 /* The breakpoint_ops structure to be inherit by all kinds of
15335 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15336 internal and momentary breakpoints, etc.). */
15337 ops = &bkpt_base_breakpoint_ops;
15338 *ops = base_breakpoint_ops;
15339 ops->re_set = bkpt_re_set;
15340 ops->insert_location = bkpt_insert_location;
15341 ops->remove_location = bkpt_remove_location;
15342 ops->breakpoint_hit = bkpt_breakpoint_hit;
5f700d83 15343 ops->create_sals_from_location = bkpt_create_sals_from_location;
983af33b 15344 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
5f700d83 15345 ops->decode_location = bkpt_decode_location;
2060206e
PA
15346
15347 /* The breakpoint_ops structure to be used in regular breakpoints. */
15348 ops = &bkpt_breakpoint_ops;
15349 *ops = bkpt_base_breakpoint_ops;
15350 ops->re_set = bkpt_re_set;
15351 ops->resources_needed = bkpt_resources_needed;
15352 ops->print_it = bkpt_print_it;
15353 ops->print_mention = bkpt_print_mention;
15354 ops->print_recreate = bkpt_print_recreate;
15355
15356 /* Ranged breakpoints. */
15357 ops = &ranged_breakpoint_ops;
15358 *ops = bkpt_breakpoint_ops;
15359 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15360 ops->resources_needed = resources_needed_ranged_breakpoint;
15361 ops->print_it = print_it_ranged_breakpoint;
15362 ops->print_one = print_one_ranged_breakpoint;
15363 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15364 ops->print_mention = print_mention_ranged_breakpoint;
15365 ops->print_recreate = print_recreate_ranged_breakpoint;
15366
15367 /* Internal breakpoints. */
15368 ops = &internal_breakpoint_ops;
15369 *ops = bkpt_base_breakpoint_ops;
15370 ops->re_set = internal_bkpt_re_set;
15371 ops->check_status = internal_bkpt_check_status;
15372 ops->print_it = internal_bkpt_print_it;
15373 ops->print_mention = internal_bkpt_print_mention;
15374
15375 /* Momentary breakpoints. */
15376 ops = &momentary_breakpoint_ops;
15377 *ops = bkpt_base_breakpoint_ops;
15378 ops->re_set = momentary_bkpt_re_set;
15379 ops->check_status = momentary_bkpt_check_status;
15380 ops->print_it = momentary_bkpt_print_it;
15381 ops->print_mention = momentary_bkpt_print_mention;
15382
55aa24fb
SDJ
15383 /* Probe breakpoints. */
15384 ops = &bkpt_probe_breakpoint_ops;
15385 *ops = bkpt_breakpoint_ops;
15386 ops->insert_location = bkpt_probe_insert_location;
15387 ops->remove_location = bkpt_probe_remove_location;
5f700d83
KS
15388 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
15389 ops->decode_location = bkpt_probe_decode_location;
55aa24fb 15390
2060206e
PA
15391 /* Watchpoints. */
15392 ops = &watchpoint_breakpoint_ops;
15393 *ops = base_breakpoint_ops;
15394 ops->re_set = re_set_watchpoint;
15395 ops->insert_location = insert_watchpoint;
15396 ops->remove_location = remove_watchpoint;
15397 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15398 ops->check_status = check_status_watchpoint;
15399 ops->resources_needed = resources_needed_watchpoint;
15400 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15401 ops->print_it = print_it_watchpoint;
15402 ops->print_mention = print_mention_watchpoint;
15403 ops->print_recreate = print_recreate_watchpoint;
427cd150 15404 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
15405
15406 /* Masked watchpoints. */
15407 ops = &masked_watchpoint_breakpoint_ops;
15408 *ops = watchpoint_breakpoint_ops;
15409 ops->insert_location = insert_masked_watchpoint;
15410 ops->remove_location = remove_masked_watchpoint;
15411 ops->resources_needed = resources_needed_masked_watchpoint;
15412 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15413 ops->print_it = print_it_masked_watchpoint;
15414 ops->print_one_detail = print_one_detail_masked_watchpoint;
15415 ops->print_mention = print_mention_masked_watchpoint;
15416 ops->print_recreate = print_recreate_masked_watchpoint;
15417
15418 /* Tracepoints. */
15419 ops = &tracepoint_breakpoint_ops;
15420 *ops = base_breakpoint_ops;
15421 ops->re_set = tracepoint_re_set;
15422 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15423 ops->print_one_detail = tracepoint_print_one_detail;
15424 ops->print_mention = tracepoint_print_mention;
15425 ops->print_recreate = tracepoint_print_recreate;
5f700d83 15426 ops->create_sals_from_location = tracepoint_create_sals_from_location;
983af33b 15427 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
5f700d83 15428 ops->decode_location = tracepoint_decode_location;
983af33b 15429
55aa24fb
SDJ
15430 /* Probe tracepoints. */
15431 ops = &tracepoint_probe_breakpoint_ops;
15432 *ops = tracepoint_breakpoint_ops;
5f700d83
KS
15433 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
15434 ops->decode_location = tracepoint_probe_decode_location;
55aa24fb 15435
983af33b
SDJ
15436 /* Static tracepoints with marker (`-m'). */
15437 ops = &strace_marker_breakpoint_ops;
15438 *ops = tracepoint_breakpoint_ops;
5f700d83 15439 ops->create_sals_from_location = strace_marker_create_sals_from_location;
983af33b 15440 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
5f700d83 15441 ops->decode_location = strace_marker_decode_location;
2060206e
PA
15442
15443 /* Fork catchpoints. */
15444 ops = &catch_fork_breakpoint_ops;
15445 *ops = base_breakpoint_ops;
15446 ops->insert_location = insert_catch_fork;
15447 ops->remove_location = remove_catch_fork;
15448 ops->breakpoint_hit = breakpoint_hit_catch_fork;
15449 ops->print_it = print_it_catch_fork;
15450 ops->print_one = print_one_catch_fork;
15451 ops->print_mention = print_mention_catch_fork;
15452 ops->print_recreate = print_recreate_catch_fork;
15453
15454 /* Vfork catchpoints. */
15455 ops = &catch_vfork_breakpoint_ops;
15456 *ops = base_breakpoint_ops;
15457 ops->insert_location = insert_catch_vfork;
15458 ops->remove_location = remove_catch_vfork;
15459 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
15460 ops->print_it = print_it_catch_vfork;
15461 ops->print_one = print_one_catch_vfork;
15462 ops->print_mention = print_mention_catch_vfork;
15463 ops->print_recreate = print_recreate_catch_vfork;
15464
15465 /* Exec catchpoints. */
15466 ops = &catch_exec_breakpoint_ops;
15467 *ops = base_breakpoint_ops;
2060206e
PA
15468 ops->insert_location = insert_catch_exec;
15469 ops->remove_location = remove_catch_exec;
15470 ops->breakpoint_hit = breakpoint_hit_catch_exec;
15471 ops->print_it = print_it_catch_exec;
15472 ops->print_one = print_one_catch_exec;
15473 ops->print_mention = print_mention_catch_exec;
15474 ops->print_recreate = print_recreate_catch_exec;
15475
edcc5120
TT
15476 /* Solib-related catchpoints. */
15477 ops = &catch_solib_breakpoint_ops;
15478 *ops = base_breakpoint_ops;
edcc5120
TT
15479 ops->insert_location = insert_catch_solib;
15480 ops->remove_location = remove_catch_solib;
15481 ops->breakpoint_hit = breakpoint_hit_catch_solib;
15482 ops->check_status = check_status_catch_solib;
15483 ops->print_it = print_it_catch_solib;
15484 ops->print_one = print_one_catch_solib;
15485 ops->print_mention = print_mention_catch_solib;
15486 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
15487
15488 ops = &dprintf_breakpoint_ops;
15489 *ops = bkpt_base_breakpoint_ops;
5c2b4418 15490 ops->re_set = dprintf_re_set;
e7e0cddf
SS
15491 ops->resources_needed = bkpt_resources_needed;
15492 ops->print_it = bkpt_print_it;
15493 ops->print_mention = bkpt_print_mention;
2d9442cc 15494 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 15495 ops->after_condition_true = dprintf_after_condition_true;
cd1608cc 15496 ops->breakpoint_hit = dprintf_breakpoint_hit;
2060206e
PA
15497}
15498
8bfd80db
YQ
15499/* Chain containing all defined "enable breakpoint" subcommands. */
15500
15501static struct cmd_list_element *enablebreaklist = NULL;
15502
c906108c 15503void
fba45db2 15504_initialize_breakpoint (void)
c906108c
SS
15505{
15506 struct cmd_list_element *c;
15507
2060206e
PA
15508 initialize_breakpoint_ops ();
15509
76727919
TT
15510 gdb::observers::solib_unloaded.attach (disable_breakpoints_in_unloaded_shlib);
15511 gdb::observers::free_objfile.attach (disable_breakpoints_in_freed_objfile);
15512 gdb::observers::memory_changed.attach (invalidate_bp_value_on_memory_change);
84acb35a 15513
55aa24fb 15514 breakpoint_objfile_key
43dce439 15515 = register_objfile_data_with_cleanup (NULL, free_breakpoint_objfile_data);
17450429 15516
c906108c
SS
15517 breakpoint_chain = 0;
15518 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
15519 before a breakpoint is set. */
15520 breakpoint_count = 0;
15521
1042e4c0
SS
15522 tracepoint_count = 0;
15523
1bedd215
AC
15524 add_com ("ignore", class_breakpoint, ignore_command, _("\
15525Set ignore-count of breakpoint number N to COUNT.\n\
15526Usage is `ignore N COUNT'."));
c906108c 15527
1bedd215 15528 add_com ("commands", class_breakpoint, commands_command, _("\
18da0c51
MG
15529Set commands to be executed when the given breakpoints are hit.\n\
15530Give a space-separated breakpoint list as argument after \"commands\".\n\
15531A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
15532(e.g. `5-7').\n\
c906108c
SS
15533With no argument, the targeted breakpoint is the last one set.\n\
15534The commands themselves follow starting on the next line.\n\
15535Type a line containing \"end\" to indicate the end of them.\n\
15536Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 15537then no output is printed when it is hit, except what the commands print."));
c906108c 15538
d55637df 15539 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 15540Specify breakpoint number N to break only if COND is true.\n\
c906108c 15541Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 15542expression to be evaluated whenever breakpoint N is reached."));
d55637df 15543 set_cmd_completer (c, condition_completer);
c906108c 15544
1bedd215 15545 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 15546Set a temporary breakpoint.\n\
c906108c
SS
15547Like \"break\" except the breakpoint is only temporary,\n\
15548so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
15549by using \"enable delete\" on the breakpoint number.\n\
15550\n"
15551BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 15552 set_cmd_completer (c, location_completer);
c94fdfd0 15553
1bedd215 15554 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 15555Set a hardware assisted breakpoint.\n\
c906108c 15556Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
15557some target hardware may not have this support.\n\
15558\n"
15559BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 15560 set_cmd_completer (c, location_completer);
c906108c 15561
1bedd215 15562 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 15563Set a temporary hardware assisted breakpoint.\n\
c906108c 15564Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
15565so it will be deleted when hit.\n\
15566\n"
15567BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 15568 set_cmd_completer (c, location_completer);
c906108c 15569
1bedd215
AC
15570 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
15571Enable some breakpoints.\n\
c906108c
SS
15572Give breakpoint numbers (separated by spaces) as arguments.\n\
15573With no subcommand, breakpoints are enabled until you command otherwise.\n\
15574This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 15575With a subcommand you can enable temporarily."),
c906108c 15576 &enablelist, "enable ", 1, &cmdlist);
c906108c
SS
15577
15578 add_com_alias ("en", "enable", class_breakpoint, 1);
15579
84951ab5 15580 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 15581Enable some breakpoints.\n\
c906108c
SS
15582Give breakpoint numbers (separated by spaces) as arguments.\n\
15583This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 15584May be abbreviated to simply \"enable\".\n"),
c5aa993b 15585 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 15586
1a966eab
AC
15587 add_cmd ("once", no_class, enable_once_command, _("\
15588Enable breakpoints for one hit. Give breakpoint numbers.\n\
15589If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
15590 &enablebreaklist);
15591
1a966eab
AC
15592 add_cmd ("delete", no_class, enable_delete_command, _("\
15593Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15594If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15595 &enablebreaklist);
15596
816338b5
SS
15597 add_cmd ("count", no_class, enable_count_command, _("\
15598Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15599If a breakpoint is hit while enabled in this fashion,\n\
15600the count is decremented; when it reaches zero, the breakpoint is disabled."),
15601 &enablebreaklist);
15602
1a966eab
AC
15603 add_cmd ("delete", no_class, enable_delete_command, _("\
15604Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15605If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15606 &enablelist);
15607
1a966eab
AC
15608 add_cmd ("once", no_class, enable_once_command, _("\
15609Enable breakpoints for one hit. Give breakpoint numbers.\n\
15610If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
15611 &enablelist);
15612
15613 add_cmd ("count", no_class, enable_count_command, _("\
15614Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15615If a breakpoint is hit while enabled in this fashion,\n\
15616the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
15617 &enablelist);
15618
1bedd215
AC
15619 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
15620Disable some breakpoints.\n\
c906108c
SS
15621Arguments are breakpoint numbers with spaces in between.\n\
15622To disable all breakpoints, give no argument.\n\
64b9b334 15623A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
15624 &disablelist, "disable ", 1, &cmdlist);
15625 add_com_alias ("dis", "disable", class_breakpoint, 1);
15626 add_com_alias ("disa", "disable", class_breakpoint, 1);
c906108c 15627
1a966eab
AC
15628 add_cmd ("breakpoints", class_alias, disable_command, _("\
15629Disable some breakpoints.\n\
c906108c
SS
15630Arguments are breakpoint numbers with spaces in between.\n\
15631To disable all breakpoints, give no argument.\n\
64b9b334 15632A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 15633This command may be abbreviated \"disable\"."),
c906108c
SS
15634 &disablelist);
15635
1bedd215
AC
15636 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
15637Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
15638Arguments are breakpoint numbers with spaces in between.\n\
15639To delete all breakpoints, give no argument.\n\
15640\n\
15641Also a prefix command for deletion of other GDB objects.\n\
1bedd215 15642The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
15643 &deletelist, "delete ", 1, &cmdlist);
15644 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 15645 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 15646
1a966eab
AC
15647 add_cmd ("breakpoints", class_alias, delete_command, _("\
15648Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
15649Arguments are breakpoint numbers with spaces in between.\n\
15650To delete all breakpoints, give no argument.\n\
1a966eab 15651This command may be abbreviated \"delete\"."),
c906108c
SS
15652 &deletelist);
15653
1bedd215 15654 add_com ("clear", class_breakpoint, clear_command, _("\
629500fa
KS
15655Clear breakpoint at specified location.\n\
15656Argument may be a linespec, explicit, or address location as described below.\n\
1bedd215
AC
15657\n\
15658With no argument, clears all breakpoints in the line that the selected frame\n\
629500fa
KS
15659is executing in.\n"
15660"\n" LOCATION_HELP_STRING "\n\
1bedd215 15661See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 15662 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 15663
1bedd215 15664 c = add_com ("break", class_breakpoint, break_command, _("\
629500fa 15665Set breakpoint at specified location.\n"
31e2b00f 15666BREAK_ARGS_HELP ("break")));
5ba2abeb 15667 set_cmd_completer (c, location_completer);
c94fdfd0 15668
c906108c
SS
15669 add_com_alias ("b", "break", class_run, 1);
15670 add_com_alias ("br", "break", class_run, 1);
15671 add_com_alias ("bre", "break", class_run, 1);
15672 add_com_alias ("brea", "break", class_run, 1);
15673
c906108c
SS
15674 if (dbx_commands)
15675 {
1bedd215
AC
15676 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
15677Break in function/address or break at a line in the current file."),
c5aa993b
JM
15678 &stoplist, "stop ", 1, &cmdlist);
15679 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 15680 _("Break in function or address."), &stoplist);
c5aa993b 15681 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 15682 _("Break at a line in the current file."), &stoplist);
11db9430 15683 add_com ("status", class_info, info_breakpoints_command, _("\
1bedd215 15684Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15685The \"Type\" column indicates one of:\n\
15686\tbreakpoint - normal breakpoint\n\
15687\twatchpoint - watchpoint\n\
15688The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15689the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15690breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15691address and file/line number respectively.\n\
15692\n\
15693Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15694are set to the address of the last breakpoint listed unless the command\n\
15695is prefixed with \"server \".\n\n\
c906108c 15696Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15697breakpoint set."));
c906108c
SS
15698 }
15699
11db9430 15700 add_info ("breakpoints", info_breakpoints_command, _("\
e5a67952 15701Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
15702The \"Type\" column indicates one of:\n\
15703\tbreakpoint - normal breakpoint\n\
15704\twatchpoint - watchpoint\n\
15705The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15706the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15707breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15708address and file/line number respectively.\n\
15709\n\
15710Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15711are set to the address of the last breakpoint listed unless the command\n\
15712is prefixed with \"server \".\n\n\
c906108c 15713Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15714breakpoint set."));
c906108c 15715
6b04bdb7
MS
15716 add_info_alias ("b", "breakpoints", 1);
15717
1a966eab
AC
15718 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
15719Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15720The \"Type\" column indicates one of:\n\
15721\tbreakpoint - normal breakpoint\n\
15722\twatchpoint - watchpoint\n\
15723\tlongjmp - internal breakpoint used to step through longjmp()\n\
15724\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
15725\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
15726\tfinish - internal breakpoint used by the \"finish\" command\n\
15727The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
15728the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15729breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
15730address and file/line number respectively.\n\
15731\n\
15732Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15733are set to the address of the last breakpoint listed unless the command\n\
15734is prefixed with \"server \".\n\n\
c906108c 15735Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 15736breakpoint set."),
c906108c
SS
15737 &maintenanceinfolist);
15738
44feb3ce
TT
15739 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
15740Set catchpoints to catch events."),
15741 &catch_cmdlist, "catch ",
15742 0/*allow-unknown*/, &cmdlist);
15743
15744 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
15745Set temporary catchpoints to catch events."),
15746 &tcatch_cmdlist, "tcatch ",
15747 0/*allow-unknown*/, &cmdlist);
15748
44feb3ce
TT
15749 add_catch_command ("fork", _("Catch calls to fork."),
15750 catch_fork_command_1,
a96d9b2e 15751 NULL,
44feb3ce
TT
15752 (void *) (uintptr_t) catch_fork_permanent,
15753 (void *) (uintptr_t) catch_fork_temporary);
15754 add_catch_command ("vfork", _("Catch calls to vfork."),
15755 catch_fork_command_1,
a96d9b2e 15756 NULL,
44feb3ce
TT
15757 (void *) (uintptr_t) catch_vfork_permanent,
15758 (void *) (uintptr_t) catch_vfork_temporary);
15759 add_catch_command ("exec", _("Catch calls to exec."),
15760 catch_exec_command_1,
a96d9b2e
SDJ
15761 NULL,
15762 CATCH_PERMANENT,
15763 CATCH_TEMPORARY);
edcc5120
TT
15764 add_catch_command ("load", _("Catch loads of shared libraries.\n\
15765Usage: catch load [REGEX]\n\
15766If REGEX is given, only stop for libraries matching the regular expression."),
15767 catch_load_command_1,
15768 NULL,
15769 CATCH_PERMANENT,
15770 CATCH_TEMPORARY);
15771 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
15772Usage: catch unload [REGEX]\n\
15773If REGEX is given, only stop for libraries matching the regular expression."),
15774 catch_unload_command_1,
15775 NULL,
15776 CATCH_PERMANENT,
15777 CATCH_TEMPORARY);
c5aa993b 15778
1bedd215
AC
15779 c = add_com ("watch", class_breakpoint, watch_command, _("\
15780Set a watchpoint for an expression.\n\
06a64a0b 15781Usage: watch [-l|-location] EXPRESSION\n\
c906108c 15782A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15783an expression changes.\n\
15784If -l or -location is given, this evaluates EXPRESSION and watches\n\
15785the memory to which it refers."));
65d12d83 15786 set_cmd_completer (c, expression_completer);
c906108c 15787
1bedd215
AC
15788 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
15789Set a read watchpoint for an expression.\n\
06a64a0b 15790Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 15791A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15792an expression is read.\n\
15793If -l or -location is given, this evaluates EXPRESSION and watches\n\
15794the memory to which it refers."));
65d12d83 15795 set_cmd_completer (c, expression_completer);
c906108c 15796
1bedd215
AC
15797 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
15798Set a watchpoint for an expression.\n\
06a64a0b 15799Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 15800A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15801an expression is either read or written.\n\
15802If -l or -location is given, this evaluates EXPRESSION and watches\n\
15803the memory to which it refers."));
65d12d83 15804 set_cmd_completer (c, expression_completer);
c906108c 15805
11db9430 15806 add_info ("watchpoints", info_watchpoints_command, _("\
e5a67952 15807Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 15808
920d2a44
AC
15809 /* XXX: cagney/2005-02-23: This should be a boolean, and should
15810 respond to changes - contrary to the description. */
85c07804
AC
15811 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
15812 &can_use_hw_watchpoints, _("\
15813Set debugger's willingness to use watchpoint hardware."), _("\
15814Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
15815If zero, gdb will not use hardware for new watchpoints, even if\n\
15816such is available. (However, any hardware watchpoints that were\n\
15817created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
15818hardware.)"),
15819 NULL,
920d2a44 15820 show_can_use_hw_watchpoints,
85c07804 15821 &setlist, &showlist);
c906108c
SS
15822
15823 can_use_hw_watchpoints = 1;
fa8d40ab 15824
1042e4c0
SS
15825 /* Tracepoint manipulation commands. */
15826
15827 c = add_com ("trace", class_breakpoint, trace_command, _("\
629500fa 15828Set a tracepoint at specified location.\n\
1042e4c0
SS
15829\n"
15830BREAK_ARGS_HELP ("trace") "\n\
15831Do \"help tracepoints\" for info on other tracepoint commands."));
15832 set_cmd_completer (c, location_completer);
15833
15834 add_com_alias ("tp", "trace", class_alias, 0);
15835 add_com_alias ("tr", "trace", class_alias, 1);
15836 add_com_alias ("tra", "trace", class_alias, 1);
15837 add_com_alias ("trac", "trace", class_alias, 1);
15838
7a697b8d 15839 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
629500fa 15840Set a fast tracepoint at specified location.\n\
7a697b8d
SS
15841\n"
15842BREAK_ARGS_HELP ("ftrace") "\n\
15843Do \"help tracepoints\" for info on other tracepoint commands."));
15844 set_cmd_completer (c, location_completer);
15845
0fb4aa4b 15846 c = add_com ("strace", class_breakpoint, strace_command, _("\
629500fa 15847Set a static tracepoint at location or marker.\n\
0fb4aa4b
PA
15848\n\
15849strace [LOCATION] [if CONDITION]\n\
629500fa
KS
15850LOCATION may be a linespec, explicit, or address location (described below) \n\
15851or -m MARKER_ID.\n\n\
15852If a marker id is specified, probe the marker with that name. With\n\
15853no LOCATION, uses current execution address of the selected stack frame.\n\
0fb4aa4b
PA
15854Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
15855This collects arbitrary user data passed in the probe point call to the\n\
15856tracing library. You can inspect it when analyzing the trace buffer,\n\
15857by printing the $_sdata variable like any other convenience variable.\n\
15858\n\
15859CONDITION is a boolean expression.\n\
629500fa 15860\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
15861Multiple tracepoints at one place are permitted, and useful if their\n\
15862conditions are different.\n\
0fb4aa4b
PA
15863\n\
15864Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
15865Do \"help tracepoints\" for info on other tracepoint commands."));
15866 set_cmd_completer (c, location_completer);
15867
11db9430 15868 add_info ("tracepoints", info_tracepoints_command, _("\
e5a67952 15869Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
15870Convenience variable \"$tpnum\" contains the number of the\n\
15871last tracepoint set."));
15872
15873 add_info_alias ("tp", "tracepoints", 1);
15874
15875 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
15876Delete specified tracepoints.\n\
15877Arguments are tracepoint numbers, separated by spaces.\n\
15878No argument means delete all tracepoints."),
15879 &deletelist);
7e20dfcd 15880 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
15881
15882 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
15883Disable specified tracepoints.\n\
15884Arguments are tracepoint numbers, separated by spaces.\n\
15885No argument means disable all tracepoints."),
15886 &disablelist);
15887 deprecate_cmd (c, "disable");
15888
15889 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
15890Enable specified tracepoints.\n\
15891Arguments are tracepoint numbers, separated by spaces.\n\
15892No argument means enable all tracepoints."),
15893 &enablelist);
15894 deprecate_cmd (c, "enable");
15895
15896 add_com ("passcount", class_trace, trace_pass_command, _("\
15897Set the passcount for a tracepoint.\n\
15898The trace will end when the tracepoint has been passed 'count' times.\n\
15899Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
15900if TPNUM is omitted, passcount refers to the last tracepoint defined."));
15901
6149aea9
PA
15902 add_prefix_cmd ("save", class_breakpoint, save_command,
15903 _("Save breakpoint definitions as a script."),
15904 &save_cmdlist, "save ",
15905 0/*allow-unknown*/, &cmdlist);
15906
15907 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
15908Save current breakpoint definitions as a script.\n\
cce7e648 15909This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
15910catchpoints, tracepoints). Use the 'source' command in another debug\n\
15911session to restore them."),
15912 &save_cmdlist);
15913 set_cmd_completer (c, filename_completer);
15914
15915 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 15916Save current tracepoint definitions as a script.\n\
6149aea9
PA
15917Use the 'source' command in another debug session to restore them."),
15918 &save_cmdlist);
1042e4c0
SS
15919 set_cmd_completer (c, filename_completer);
15920
6149aea9
PA
15921 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
15922 deprecate_cmd (c, "save tracepoints");
15923
1bedd215 15924 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
15925Breakpoint specific settings\n\
15926Configure various breakpoint-specific variables such as\n\
1bedd215 15927pending breakpoint behavior"),
fa8d40ab
JJ
15928 &breakpoint_set_cmdlist, "set breakpoint ",
15929 0/*allow-unknown*/, &setlist);
1bedd215 15930 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
15931Breakpoint specific settings\n\
15932Configure various breakpoint-specific variables such as\n\
1bedd215 15933pending breakpoint behavior"),
fa8d40ab
JJ
15934 &breakpoint_show_cmdlist, "show breakpoint ",
15935 0/*allow-unknown*/, &showlist);
15936
7915a72c
AC
15937 add_setshow_auto_boolean_cmd ("pending", no_class,
15938 &pending_break_support, _("\
15939Set debugger's behavior regarding pending breakpoints."), _("\
15940Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
15941If on, an unrecognized breakpoint location will cause gdb to create a\n\
15942pending breakpoint. If off, an unrecognized breakpoint location results in\n\
15943an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 15944user-query to see if a pending breakpoint should be created."),
2c5b56ce 15945 NULL,
920d2a44 15946 show_pending_break_support,
6e1d7d6c
AC
15947 &breakpoint_set_cmdlist,
15948 &breakpoint_show_cmdlist);
fa8d40ab
JJ
15949
15950 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
15951
15952 add_setshow_boolean_cmd ("auto-hw", no_class,
15953 &automatic_hardware_breakpoints, _("\
15954Set automatic usage of hardware breakpoints."), _("\
15955Show automatic usage of hardware breakpoints."), _("\
15956If set, the debugger will automatically use hardware breakpoints for\n\
15957breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
15958a warning will be emitted for such breakpoints."),
15959 NULL,
15960 show_automatic_hardware_breakpoints,
15961 &breakpoint_set_cmdlist,
15962 &breakpoint_show_cmdlist);
74960c60 15963
a25a5a45
PA
15964 add_setshow_boolean_cmd ("always-inserted", class_support,
15965 &always_inserted_mode, _("\
74960c60
VP
15966Set mode for inserting breakpoints."), _("\
15967Show mode for inserting breakpoints."), _("\
a25a5a45
PA
15968When this mode is on, breakpoints are inserted immediately as soon as\n\
15969they're created, kept inserted even when execution stops, and removed\n\
15970only when the user deletes them. When this mode is off (the default),\n\
15971breakpoints are inserted only when execution continues, and removed\n\
15972when execution stops."),
72d0e2c5
YQ
15973 NULL,
15974 &show_always_inserted_mode,
15975 &breakpoint_set_cmdlist,
15976 &breakpoint_show_cmdlist);
f1310107 15977
b775012e
LM
15978 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
15979 condition_evaluation_enums,
15980 &condition_evaluation_mode_1, _("\
15981Set mode of breakpoint condition evaluation."), _("\
15982Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 15983When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
15984evaluated on the host's side by GDB. When it is set to \"target\",\n\
15985breakpoint conditions will be downloaded to the target (if the target\n\
15986supports such feature) and conditions will be evaluated on the target's side.\n\
15987If this is set to \"auto\" (default), this will be automatically set to\n\
15988\"target\" if it supports condition evaluation, otherwise it will\n\
15989be set to \"gdb\""),
15990 &set_condition_evaluation_mode,
15991 &show_condition_evaluation_mode,
15992 &breakpoint_set_cmdlist,
15993 &breakpoint_show_cmdlist);
15994
f1310107
TJB
15995 add_com ("break-range", class_breakpoint, break_range_command, _("\
15996Set a breakpoint for an address range.\n\
15997break-range START-LOCATION, END-LOCATION\n\
15998where START-LOCATION and END-LOCATION can be one of the following:\n\
15999 LINENUM, for that line in the current file,\n\
16000 FILE:LINENUM, for that line in that file,\n\
16001 +OFFSET, for that number of lines after the current line\n\
16002 or the start of the range\n\
16003 FUNCTION, for the first line in that function,\n\
16004 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16005 *ADDRESS, for the instruction at that address.\n\
16006\n\
16007The breakpoint will stop execution of the inferior whenever it executes\n\
16008an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16009range (including START-LOCATION and END-LOCATION)."));
16010
e7e0cddf 16011 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
629500fa 16012Set a dynamic printf at specified location.\n\
e7e0cddf 16013dprintf location,format string,arg1,arg2,...\n\
629500fa
KS
16014location may be a linespec, explicit, or address location.\n"
16015"\n" LOCATION_HELP_STRING));
e7e0cddf
SS
16016 set_cmd_completer (c, location_completer);
16017
16018 add_setshow_enum_cmd ("dprintf-style", class_support,
16019 dprintf_style_enums, &dprintf_style, _("\
16020Set the style of usage for dynamic printf."), _("\
16021Show the style of usage for dynamic printf."), _("\
16022This setting chooses how GDB will do a dynamic printf.\n\
16023If the value is \"gdb\", then the printing is done by GDB to its own\n\
16024console, as with the \"printf\" command.\n\
16025If the value is \"call\", the print is done by calling a function in your\n\
16026program; by default printf(), but you can choose a different function or\n\
16027output stream by setting dprintf-function and dprintf-channel."),
16028 update_dprintf_commands, NULL,
16029 &setlist, &showlist);
16030
16031 dprintf_function = xstrdup ("printf");
16032 add_setshow_string_cmd ("dprintf-function", class_support,
16033 &dprintf_function, _("\
16034Set the function to use for dynamic printf"), _("\
16035Show the function to use for dynamic printf"), NULL,
16036 update_dprintf_commands, NULL,
16037 &setlist, &showlist);
16038
16039 dprintf_channel = xstrdup ("");
16040 add_setshow_string_cmd ("dprintf-channel", class_support,
16041 &dprintf_channel, _("\
16042Set the channel to use for dynamic printf"), _("\
16043Show the channel to use for dynamic printf"), NULL,
16044 update_dprintf_commands, NULL,
16045 &setlist, &showlist);
16046
d3ce09f5
SS
16047 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16048 &disconnected_dprintf, _("\
16049Set whether dprintf continues after GDB disconnects."), _("\
16050Show whether dprintf continues after GDB disconnects."), _("\
16051Use this to let dprintf commands continue to hit and produce output\n\
16052even if GDB disconnects or detaches from the target."),
16053 NULL,
16054 NULL,
16055 &setlist, &showlist);
16056
16057 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16058agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16059(target agent only) This is useful for formatted output in user-defined commands."));
16060
765dc015 16061 automatic_hardware_breakpoints = 1;
f3b1572e 16062
76727919
TT
16063 gdb::observers::about_to_proceed.attach (breakpoint_about_to_proceed);
16064 gdb::observers::thread_exit.attach (remove_threaded_breakpoints);
c906108c 16065}
This page took 5.307811 seconds and 4 git commands to generate.