Remove ALL_SO_LIBS and so_list_head
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
b811d2c2 3 Copyright (C) 1986-2020 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"
d55e5aa6 21#include "arch-utils.h"
4de283e4
TT
22#include <ctype.h>
23#include "hashtab.h"
24#include "symtab.h"
25#include "frame.h"
c906108c 26#include "breakpoint.h"
4de283e4
TT
27#include "tracepoint.h"
28#include "gdbtypes.h"
c906108c 29#include "expression.h"
d55e5aa6 30#include "gdbcore.h"
4de283e4
TT
31#include "gdbcmd.h"
32#include "value.h"
33#include "command.h"
c906108c 34#include "inferior.h"
45741a9c 35#include "infrun.h"
4de283e4
TT
36#include "gdbthread.h"
37#include "target.h"
c906108c 38#include "language.h"
4de283e4
TT
39#include "gdb-demangle.h"
40#include "filenames.h"
41#include "annotate.h"
42#include "symfile.h"
d55e5aa6 43#include "objfiles.h"
4de283e4
TT
44#include "source.h"
45#include "linespec.h"
46#include "completer.h"
47#include "ui-out.h"
48#include "cli/cli-script.h"
49#include "block.h"
50#include "solib.h"
51#include "solist.h"
d55e5aa6 52#include "observable.h"
4de283e4
TT
53#include "memattr.h"
54#include "ada-lang.h"
55#include "top.h"
56#include "valprint.h"
57#include "jit.h"
65d79d4b 58#include "parser-defs.h"
4de283e4 59#include "gdb_regex.h"
55aa24fb 60#include "probe.h"
4de283e4 61#include "cli/cli-utils.h"
d55e5aa6 62#include "stack.h"
4de283e4
TT
63#include "ax-gdb.h"
64#include "dummy-frame.h"
65#include "interps.h"
268a13a5 66#include "gdbsupport/format.h"
cfc31633 67#include "thread-fsm.h"
5d5658a1 68#include "tid-parse.h"
4de283e4 69#include "cli/cli-style.h"
d3ce09f5 70
1042e4c0 71/* readline include files */
073bbbb0 72#include "readline/tilde.h"
1042e4c0
SS
73
74/* readline defines this. */
75#undef savestring
76
034dad6f 77#include "mi/mi-common.h"
6dddc817 78#include "extension.h"
325fac50 79#include <algorithm>
5ed8105e 80#include "progspace-and-thread.h"
268a13a5
TT
81#include "gdbsupport/array-view.h"
82#include "gdbsupport/gdb_optional.h"
104c1213 83
4a64f543 84/* Prototypes for local functions. */
c906108c 85
896b6bda 86static void map_breakpoint_numbers (const char *,
48649e1b 87 gdb::function_view<void (breakpoint *)>);
c906108c 88
348d480f
PA
89static void breakpoint_re_set_default (struct breakpoint *);
90
f00aae0f
KS
91static void
92 create_sals_from_location_default (const struct event_location *location,
93 struct linespec_result *canonical,
94 enum bptype type_wanted);
983af33b
SDJ
95
96static void create_breakpoints_sal_default (struct gdbarch *,
97 struct linespec_result *,
e1e01040
PA
98 gdb::unique_xmalloc_ptr<char>,
99 gdb::unique_xmalloc_ptr<char>,
100 enum bptype,
983af33b
SDJ
101 enum bpdisp, int, int,
102 int,
103 const struct breakpoint_ops *,
44f238bb 104 int, int, int, unsigned);
983af33b 105
6c5b2ebe
PA
106static std::vector<symtab_and_line> decode_location_default
107 (struct breakpoint *b, const struct event_location *location,
108 struct program_space *search_pspace);
983af33b 109
a6535de1
TT
110static int can_use_hardware_watchpoint
111 (const std::vector<value_ref_ptr> &vals);
c906108c 112
a14ed312 113static void mention (struct breakpoint *);
c906108c 114
348d480f
PA
115static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
116 enum bptype,
c0a91b2b 117 const struct breakpoint_ops *);
3742cc8b
YQ
118static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
119 const struct symtab_and_line *);
120
4a64f543
MS
121/* This function is used in gdbtk sources and thus can not be made
122 static. */
63c252f8 123struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 124 struct symtab_and_line,
c0a91b2b
TT
125 enum bptype,
126 const struct breakpoint_ops *);
c906108c 127
06edf0c0
PA
128static struct breakpoint *
129 momentary_breakpoint_from_master (struct breakpoint *orig,
130 enum bptype type,
a1aa2221
LM
131 const struct breakpoint_ops *ops,
132 int loc_enabled);
06edf0c0 133
76897487
KB
134static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
135
a6d9a66e
UW
136static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
137 CORE_ADDR bpaddr,
88f7da05 138 enum bptype bptype);
76897487 139
6c95b8df
PA
140static void describe_other_breakpoints (struct gdbarch *,
141 struct program_space *, CORE_ADDR,
5af949e3 142 struct obj_section *, int);
c906108c 143
85d721b8
PA
144static int watchpoint_locations_match (struct bp_location *loc1,
145 struct bp_location *loc2);
146
f1310107 147static int breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 148 const struct address_space *aspace,
f1310107
TJB
149 CORE_ADDR addr);
150
d35ae833 151static int breakpoint_location_address_range_overlap (struct bp_location *,
accd0bcd 152 const address_space *,
d35ae833
PA
153 CORE_ADDR, int);
154
834c0d03 155static int remove_breakpoint (struct bp_location *);
b2b6a7da 156static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
c906108c 157
e514a9d6 158static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 159
a14ed312 160static int hw_breakpoint_used_count (void);
c906108c 161
a1398e0c
PA
162static int hw_watchpoint_use_count (struct breakpoint *);
163
164static int hw_watchpoint_used_count_others (struct breakpoint *except,
165 enum bptype type,
166 int *other_type_used);
c906108c 167
816338b5
SS
168static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
169 int count);
c906108c 170
fe3f5fa8 171static void free_bp_location (struct bp_location *loc);
f431efe5
PA
172static void incref_bp_location (struct bp_location *loc);
173static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 174
39d61571 175static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 176
44702360
PA
177/* update_global_location_list's modes of operation wrt to whether to
178 insert locations now. */
179enum ugll_insert_mode
180{
181 /* Don't insert any breakpoint locations into the inferior, only
182 remove already-inserted locations that no longer should be
183 inserted. Functions that delete a breakpoint or breakpoints
184 should specify this mode, so that deleting a breakpoint doesn't
185 have the side effect of inserting the locations of other
186 breakpoints that are marked not-inserted, but should_be_inserted
187 returns true on them.
188
189 This behavior is useful is situations close to tear-down -- e.g.,
190 after an exec, while the target still has execution, but
191 breakpoint shadows of the previous executable image should *NOT*
192 be restored to the new image; or before detaching, where the
193 target still has execution and wants to delete breakpoints from
194 GDB's lists, and all breakpoints had already been removed from
195 the inferior. */
196 UGLL_DONT_INSERT,
197
a25a5a45
PA
198 /* May insert breakpoints iff breakpoints_should_be_inserted_now
199 claims breakpoints should be inserted now. */
04086b45
PA
200 UGLL_MAY_INSERT,
201
a25a5a45
PA
202 /* Insert locations now, irrespective of
203 breakpoints_should_be_inserted_now. E.g., say all threads are
204 stopped right now, and the user did "continue". We need to
205 insert breakpoints _before_ resuming the target, but
206 UGLL_MAY_INSERT wouldn't insert them, because
207 breakpoints_should_be_inserted_now returns false at that point,
208 as no thread is running yet. */
04086b45 209 UGLL_INSERT
44702360
PA
210};
211
212static void update_global_location_list (enum ugll_insert_mode);
a5606eee 213
44702360 214static void update_global_location_list_nothrow (enum ugll_insert_mode);
74960c60 215
74960c60 216static void insert_breakpoint_locations (void);
a5606eee 217
0b39b52e 218static void trace_pass_command (const char *, int);
1042e4c0 219
558a9d82
YQ
220static void set_tracepoint_count (int num);
221
f2478a7e 222static bool is_masked_watchpoint (const struct breakpoint *b);
9c06b0b4 223
b775012e
LM
224static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
225
983af33b
SDJ
226/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
227 otherwise. */
228
229static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 230
2060206e
PA
231/* The breakpoint_ops structure to be inherited by all breakpoint_ops
232 that are implemented on top of software or hardware breakpoints
233 (user breakpoints, internal and momentary breakpoints, etc.). */
234static struct breakpoint_ops bkpt_base_breakpoint_ops;
235
236/* Internal breakpoints class type. */
06edf0c0 237static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
238
239/* Momentary breakpoints class type. */
06edf0c0
PA
240static struct breakpoint_ops momentary_breakpoint_ops;
241
2060206e
PA
242/* The breakpoint_ops structure to be used in regular user created
243 breakpoints. */
244struct breakpoint_ops bkpt_breakpoint_ops;
245
55aa24fb
SDJ
246/* Breakpoints set on probes. */
247static struct breakpoint_ops bkpt_probe_breakpoint_ops;
248
bac7c5cf
GB
249/* Tracepoints set on probes. */
250static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
251
e7e0cddf 252/* Dynamic printf class type. */
c5867ab6 253struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 254
d3ce09f5
SS
255/* The style in which to perform a dynamic printf. This is a user
256 option because different output options have different tradeoffs;
257 if GDB does the printing, there is better error handling if there
258 is a problem with any of the arguments, but using an inferior
259 function lets you have special-purpose printers and sending of
260 output to the same place as compiled-in print functions. */
261
262static const char dprintf_style_gdb[] = "gdb";
263static const char dprintf_style_call[] = "call";
264static const char dprintf_style_agent[] = "agent";
265static const char *const dprintf_style_enums[] = {
266 dprintf_style_gdb,
267 dprintf_style_call,
268 dprintf_style_agent,
269 NULL
270};
271static const char *dprintf_style = dprintf_style_gdb;
272
273/* The function to use for dynamic printf if the preferred style is to
274 call into the inferior. The value is simply a string that is
275 copied into the command, so it can be anything that GDB can
276 evaluate to a callable address, not necessarily a function name. */
277
bde6261a 278static char *dprintf_function;
d3ce09f5
SS
279
280/* The channel to use for dynamic printf if the preferred style is to
281 call into the inferior; if a nonempty string, it will be passed to
282 the call as the first argument, with the format string as the
283 second. As with the dprintf function, this can be anything that
284 GDB knows how to evaluate, so in addition to common choices like
285 "stderr", this could be an app-specific expression like
286 "mystreams[curlogger]". */
287
bde6261a 288static char *dprintf_channel;
d3ce09f5
SS
289
290/* True if dprintf commands should continue to operate even if GDB
291 has disconnected. */
491144b5 292static bool disconnected_dprintf = true;
d3ce09f5 293
5cea2a26
PA
294struct command_line *
295breakpoint_commands (struct breakpoint *b)
296{
d1b0a7bf 297 return b->commands ? b->commands.get () : NULL;
5cea2a26 298}
3daf8fe5 299
f3b1572e
PA
300/* Flag indicating that a command has proceeded the inferior past the
301 current breakpoint. */
302
491144b5 303static bool breakpoint_proceeded;
f3b1572e 304
956a9fb9 305const char *
2cec12e5
AR
306bpdisp_text (enum bpdisp disp)
307{
4a64f543
MS
308 /* NOTE: the following values are a part of MI protocol and
309 represent values of 'disp' field returned when inferior stops at
310 a breakpoint. */
bc043ef3 311 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 312
2cec12e5
AR
313 return bpdisps[(int) disp];
314}
c906108c 315
4a64f543 316/* Prototypes for exported functions. */
c906108c 317/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 318 if such is available. */
c906108c
SS
319static int can_use_hw_watchpoints;
320
920d2a44
AC
321static void
322show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
323 struct cmd_list_element *c,
324 const char *value)
325{
3e43a32a
MS
326 fprintf_filtered (file,
327 _("Debugger's willingness to use "
328 "watchpoint hardware is %s.\n"),
920d2a44
AC
329 value);
330}
331
fa8d40ab
JJ
332/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
333 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 334 for unrecognized breakpoint locations.
fa8d40ab
JJ
335 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
336static enum auto_boolean pending_break_support;
920d2a44
AC
337static void
338show_pending_break_support (struct ui_file *file, int from_tty,
339 struct cmd_list_element *c,
340 const char *value)
341{
3e43a32a
MS
342 fprintf_filtered (file,
343 _("Debugger's behavior regarding "
344 "pending breakpoints is %s.\n"),
920d2a44
AC
345 value);
346}
fa8d40ab 347
491144b5 348/* If true, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 349 set with "break" but falling in read-only memory.
491144b5 350 If false, gdb will warn about such breakpoints, but won't automatically
765dc015 351 use hardware breakpoints. */
491144b5 352static bool automatic_hardware_breakpoints;
765dc015
VP
353static void
354show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
355 struct cmd_list_element *c,
356 const char *value)
357{
3e43a32a
MS
358 fprintf_filtered (file,
359 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
360 value);
361}
362
a25a5a45
PA
363/* If on, GDB keeps breakpoints inserted even if the inferior is
364 stopped, and immediately inserts any new breakpoints as soon as
365 they're created. If off (default), GDB keeps breakpoints off of
366 the target as long as possible. That is, it delays inserting
367 breakpoints until the next resume, and removes them again when the
368 target fully stops. This is a bit safer in case GDB crashes while
369 processing user input. */
491144b5 370static bool always_inserted_mode = false;
72d0e2c5 371
33e5cbd6 372static void
74960c60 373show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 374 struct cmd_list_element *c, const char *value)
74960c60 375{
a25a5a45
PA
376 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
377 value);
74960c60
VP
378}
379
b57bacec
PA
380/* See breakpoint.h. */
381
33e5cbd6 382int
a25a5a45 383breakpoints_should_be_inserted_now (void)
33e5cbd6 384{
a25a5a45
PA
385 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
386 {
387 /* If breakpoints are global, they should be inserted even if no
388 thread under gdb's control is running, or even if there are
389 no threads under GDB's control yet. */
390 return 1;
391 }
5b6d1e4f 392 else
a25a5a45 393 {
a25a5a45
PA
394 if (always_inserted_mode)
395 {
396 /* The user wants breakpoints inserted even if all threads
397 are stopped. */
398 return 1;
399 }
400
5b6d1e4f
PA
401 for (inferior *inf : all_inferiors ())
402 if (inf->has_execution ()
403 && threads_are_executing (inf->process_target ()))
404 return 1;
372316f1
PA
405
406 /* Don't remove breakpoints yet if, even though all threads are
407 stopped, we still have events to process. */
08036331 408 for (thread_info *tp : all_non_exited_threads ())
372316f1
PA
409 if (tp->resumed
410 && tp->suspend.waitstatus_pending_p)
411 return 1;
a25a5a45
PA
412 }
413 return 0;
33e5cbd6 414}
765dc015 415
b775012e
LM
416static const char condition_evaluation_both[] = "host or target";
417
418/* Modes for breakpoint condition evaluation. */
419static const char condition_evaluation_auto[] = "auto";
420static const char condition_evaluation_host[] = "host";
421static const char condition_evaluation_target[] = "target";
422static const char *const condition_evaluation_enums[] = {
423 condition_evaluation_auto,
424 condition_evaluation_host,
425 condition_evaluation_target,
426 NULL
427};
428
429/* Global that holds the current mode for breakpoint condition evaluation. */
430static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
431
432/* Global that we use to display information to the user (gets its value from
433 condition_evaluation_mode_1. */
434static const char *condition_evaluation_mode = condition_evaluation_auto;
435
436/* Translate a condition evaluation mode MODE into either "host"
437 or "target". This is used mostly to translate from "auto" to the
438 real setting that is being used. It returns the translated
439 evaluation mode. */
440
441static const char *
442translate_condition_evaluation_mode (const char *mode)
443{
444 if (mode == condition_evaluation_auto)
445 {
446 if (target_supports_evaluation_of_breakpoint_conditions ())
447 return condition_evaluation_target;
448 else
449 return condition_evaluation_host;
450 }
451 else
452 return mode;
453}
454
455/* Discovers what condition_evaluation_auto translates to. */
456
457static const char *
458breakpoint_condition_evaluation_mode (void)
459{
460 return translate_condition_evaluation_mode (condition_evaluation_mode);
461}
462
463/* Return true if GDB should evaluate breakpoint conditions or false
464 otherwise. */
465
466static int
467gdb_evaluates_breakpoint_condition_p (void)
468{
469 const char *mode = breakpoint_condition_evaluation_mode ();
470
471 return (mode == condition_evaluation_host);
472}
473
c906108c
SS
474/* Are we executing breakpoint commands? */
475static int executing_breakpoint_commands;
476
c02f5703
MS
477/* Are overlay event breakpoints enabled? */
478static int overlay_events_enabled;
479
e09342b5 480/* See description in breakpoint.h. */
491144b5 481bool target_exact_watchpoints = false;
e09342b5 482
c906108c 483/* Walk the following statement or block through all breakpoints.
e5dd4106 484 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 485 current breakpoint. */
c906108c 486
5c44784c 487#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 488
5c44784c
JM
489#define ALL_BREAKPOINTS_SAFE(B,TMP) \
490 for (B = breakpoint_chain; \
491 B ? (TMP=B->next, 1): 0; \
492 B = TMP)
c906108c 493
4a64f543
MS
494/* Similar iterator for the low-level breakpoints. SAFE variant is
495 not provided so update_global_location_list must not be called
496 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 497
876fa593 498#define ALL_BP_LOCATIONS(B,BP_TMP) \
f5336ca5
PA
499 for (BP_TMP = bp_locations; \
500 BP_TMP < bp_locations + bp_locations_count && (B = *BP_TMP);\
876fa593 501 BP_TMP++)
7cc221ef 502
b775012e
LM
503/* Iterates through locations with address ADDRESS for the currently selected
504 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
505 to where the loop should start from.
506 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
507 appropriate location to start with. */
508
509#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
510 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
511 BP_LOCP_TMP = BP_LOCP_START; \
512 BP_LOCP_START \
f5336ca5 513 && (BP_LOCP_TMP < bp_locations + bp_locations_count \
b775012e
LM
514 && (*BP_LOCP_TMP)->address == ADDRESS); \
515 BP_LOCP_TMP++)
516
1042e4c0
SS
517/* Iterator for tracepoints only. */
518
519#define ALL_TRACEPOINTS(B) \
520 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 521 if (is_tracepoint (B))
1042e4c0 522
7cc221ef 523/* Chains of all breakpoints defined. */
c906108c 524
81e6b8eb 525static struct breakpoint *breakpoint_chain;
c906108c 526
39ef2f62 527/* Array is sorted by bp_location_is_less_than - primarily by the ADDRESS. */
876fa593 528
f5336ca5 529static struct bp_location **bp_locations;
876fa593 530
f5336ca5 531/* Number of elements of BP_LOCATIONS. */
876fa593 532
f5336ca5 533static unsigned bp_locations_count;
876fa593 534
4a64f543 535/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
f5336ca5 536 ADDRESS for the current elements of BP_LOCATIONS which get a valid
4a64f543 537 result from bp_location_has_shadow. You can use it for roughly
f5336ca5 538 limiting the subrange of BP_LOCATIONS to scan for shadow bytes for
4a64f543 539 an address you need to read. */
876fa593 540
f5336ca5 541static CORE_ADDR bp_locations_placed_address_before_address_max;
876fa593 542
4a64f543
MS
543/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
544 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
f5336ca5
PA
545 BP_LOCATIONS which get a valid result from bp_location_has_shadow.
546 You can use it for roughly limiting the subrange of BP_LOCATIONS to
4a64f543 547 scan for shadow bytes for an address you need to read. */
876fa593 548
f5336ca5 549static CORE_ADDR bp_locations_shadow_len_after_address_max;
7cc221ef 550
4a64f543 551/* The locations that no longer correspond to any breakpoint, unlinked
f5336ca5
PA
552 from the bp_locations array, but for which a hit may still be
553 reported by a target. */
1123588c 554static std::vector<bp_location *> moribund_locations;
20874c92 555
c906108c
SS
556/* Number of last breakpoint made. */
557
95a42b64
TT
558static int breakpoint_count;
559
86b17b60
PA
560/* The value of `breakpoint_count' before the last command that
561 created breakpoints. If the last (break-like) command created more
562 than one breakpoint, then the difference between BREAKPOINT_COUNT
563 and PREV_BREAKPOINT_COUNT is more than one. */
564static int prev_breakpoint_count;
c906108c 565
1042e4c0
SS
566/* Number of last tracepoint made. */
567
95a42b64 568static int tracepoint_count;
1042e4c0 569
6149aea9
PA
570static struct cmd_list_element *breakpoint_set_cmdlist;
571static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 572struct cmd_list_element *save_cmdlist;
6149aea9 573
badd37ce
SDJ
574/* See declaration at breakpoint.h. */
575
576struct breakpoint *
577breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
578 void *user_data)
579{
580 struct breakpoint *b = NULL;
581
582 ALL_BREAKPOINTS (b)
583 {
584 if (func (b, user_data) != 0)
585 break;
586 }
587
588 return b;
589}
590
468d015d
JJ
591/* Return whether a breakpoint is an active enabled breakpoint. */
592static int
593breakpoint_enabled (struct breakpoint *b)
594{
0d381245 595 return (b->enable_state == bp_enabled);
468d015d
JJ
596}
597
c906108c
SS
598/* Set breakpoint count to NUM. */
599
95a42b64 600static void
fba45db2 601set_breakpoint_count (int num)
c906108c 602{
86b17b60 603 prev_breakpoint_count = breakpoint_count;
c906108c 604 breakpoint_count = num;
4fa62494 605 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
606}
607
86b17b60
PA
608/* Used by `start_rbreak_breakpoints' below, to record the current
609 breakpoint count before "rbreak" creates any breakpoint. */
610static int rbreak_start_breakpoint_count;
611
95a42b64
TT
612/* Called at the start an "rbreak" command to record the first
613 breakpoint made. */
86b17b60 614
c80049d3 615scoped_rbreak_breakpoints::scoped_rbreak_breakpoints ()
95a42b64 616{
86b17b60 617 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
618}
619
620/* Called at the end of an "rbreak" command to record the last
621 breakpoint made. */
86b17b60 622
c80049d3 623scoped_rbreak_breakpoints::~scoped_rbreak_breakpoints ()
95a42b64 624{
86b17b60 625 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
626}
627
4a64f543 628/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
629
630void
fba45db2 631clear_breakpoint_hit_counts (void)
c906108c
SS
632{
633 struct breakpoint *b;
634
635 ALL_BREAKPOINTS (b)
636 b->hit_count = 0;
637}
638
c906108c 639\f
48cb2d85
VP
640/* Return the breakpoint with the specified number, or NULL
641 if the number does not refer to an existing breakpoint. */
642
643struct breakpoint *
644get_breakpoint (int num)
645{
646 struct breakpoint *b;
647
648 ALL_BREAKPOINTS (b)
649 if (b->number == num)
650 return b;
651
652 return NULL;
653}
5c44784c 654
c906108c 655\f
adc36818 656
b775012e
LM
657/* Mark locations as "conditions have changed" in case the target supports
658 evaluating conditions on its side. */
659
660static void
661mark_breakpoint_modified (struct breakpoint *b)
662{
663 struct bp_location *loc;
664
665 /* This is only meaningful if the target is
666 evaluating conditions and if the user has
667 opted for condition evaluation on the target's
668 side. */
669 if (gdb_evaluates_breakpoint_condition_p ()
670 || !target_supports_evaluation_of_breakpoint_conditions ())
671 return;
672
673 if (!is_breakpoint (b))
674 return;
675
676 for (loc = b->loc; loc; loc = loc->next)
677 loc->condition_changed = condition_modified;
678}
679
680/* Mark location as "conditions have changed" in case the target supports
681 evaluating conditions on its side. */
682
683static void
684mark_breakpoint_location_modified (struct bp_location *loc)
685{
686 /* This is only meaningful if the target is
687 evaluating conditions and if the user has
688 opted for condition evaluation on the target's
689 side. */
690 if (gdb_evaluates_breakpoint_condition_p ()
691 || !target_supports_evaluation_of_breakpoint_conditions ())
692
693 return;
694
695 if (!is_breakpoint (loc->owner))
696 return;
697
698 loc->condition_changed = condition_modified;
699}
700
701/* Sets the condition-evaluation mode using the static global
702 condition_evaluation_mode. */
703
704static void
eb4c3f4a 705set_condition_evaluation_mode (const char *args, int from_tty,
b775012e
LM
706 struct cmd_list_element *c)
707{
b775012e
LM
708 const char *old_mode, *new_mode;
709
710 if ((condition_evaluation_mode_1 == condition_evaluation_target)
711 && !target_supports_evaluation_of_breakpoint_conditions ())
712 {
713 condition_evaluation_mode_1 = condition_evaluation_mode;
714 warning (_("Target does not support breakpoint condition evaluation.\n"
715 "Using host evaluation mode instead."));
716 return;
717 }
718
719 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
720 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
721
abf1152a
JK
722 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
723 settings was "auto". */
724 condition_evaluation_mode = condition_evaluation_mode_1;
725
b775012e
LM
726 /* Only update the mode if the user picked a different one. */
727 if (new_mode != old_mode)
728 {
729 struct bp_location *loc, **loc_tmp;
730 /* If the user switched to a different evaluation mode, we
731 need to synch the changes with the target as follows:
732
733 "host" -> "target": Send all (valid) conditions to the target.
734 "target" -> "host": Remove all the conditions from the target.
735 */
736
b775012e
LM
737 if (new_mode == condition_evaluation_target)
738 {
739 /* Mark everything modified and synch conditions with the
740 target. */
741 ALL_BP_LOCATIONS (loc, loc_tmp)
742 mark_breakpoint_location_modified (loc);
743 }
744 else
745 {
746 /* Manually mark non-duplicate locations to synch conditions
747 with the target. We do this to remove all the conditions the
748 target knows about. */
749 ALL_BP_LOCATIONS (loc, loc_tmp)
750 if (is_breakpoint (loc->owner) && loc->inserted)
751 loc->needs_update = 1;
752 }
753
754 /* Do the update. */
44702360 755 update_global_location_list (UGLL_MAY_INSERT);
b775012e
LM
756 }
757
758 return;
759}
760
761/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
762 what "auto" is translating to. */
763
764static void
765show_condition_evaluation_mode (struct ui_file *file, int from_tty,
766 struct cmd_list_element *c, const char *value)
767{
768 if (condition_evaluation_mode == condition_evaluation_auto)
769 fprintf_filtered (file,
770 _("Breakpoint condition evaluation "
771 "mode is %s (currently %s).\n"),
772 value,
773 breakpoint_condition_evaluation_mode ());
774 else
775 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
776 value);
777}
778
779/* A comparison function for bp_location AP and BP that is used by
780 bsearch. This comparison function only cares about addresses, unlike
39ef2f62 781 the more general bp_location_is_less_than function. */
b775012e
LM
782
783static int
f5336ca5 784bp_locations_compare_addrs (const void *ap, const void *bp)
b775012e 785{
9a3c8263
SM
786 const struct bp_location *a = *(const struct bp_location **) ap;
787 const struct bp_location *b = *(const struct bp_location **) bp;
b775012e
LM
788
789 if (a->address == b->address)
790 return 0;
791 else
792 return ((a->address > b->address) - (a->address < b->address));
793}
794
795/* Helper function to skip all bp_locations with addresses
796 less than ADDRESS. It returns the first bp_location that
797 is greater than or equal to ADDRESS. If none is found, just
798 return NULL. */
799
800static struct bp_location **
801get_first_locp_gte_addr (CORE_ADDR address)
802{
803 struct bp_location dummy_loc;
804 struct bp_location *dummy_locp = &dummy_loc;
805 struct bp_location **locp_found = NULL;
806
807 /* Initialize the dummy location's address field. */
b775012e
LM
808 dummy_loc.address = address;
809
810 /* Find a close match to the first location at ADDRESS. */
9a3c8263 811 locp_found = ((struct bp_location **)
f5336ca5 812 bsearch (&dummy_locp, bp_locations, bp_locations_count,
9a3c8263 813 sizeof (struct bp_location **),
f5336ca5 814 bp_locations_compare_addrs));
b775012e
LM
815
816 /* Nothing was found, nothing left to do. */
817 if (locp_found == NULL)
818 return NULL;
819
820 /* We may have found a location that is at ADDRESS but is not the first in the
821 location's list. Go backwards (if possible) and locate the first one. */
f5336ca5 822 while ((locp_found - 1) >= bp_locations
b775012e
LM
823 && (*(locp_found - 1))->address == address)
824 locp_found--;
825
826 return locp_found;
827}
828
adc36818 829void
7a26bd4d 830set_breakpoint_condition (struct breakpoint *b, const char *exp,
adc36818
PM
831 int from_tty)
832{
3a5c3e22
PA
833 xfree (b->cond_string);
834 b->cond_string = NULL;
adc36818 835
3a5c3e22 836 if (is_watchpoint (b))
adc36818 837 {
3a5c3e22
PA
838 struct watchpoint *w = (struct watchpoint *) b;
839
4d01a485 840 w->cond_exp.reset ();
3a5c3e22
PA
841 }
842 else
843 {
844 struct bp_location *loc;
845
846 for (loc = b->loc; loc; loc = loc->next)
847 {
4d01a485 848 loc->cond.reset ();
b775012e
LM
849
850 /* No need to free the condition agent expression
851 bytecode (if we have one). We will handle this
852 when we go through update_global_location_list. */
3a5c3e22 853 }
adc36818 854 }
adc36818
PM
855
856 if (*exp == 0)
857 {
858 if (from_tty)
859 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
860 }
861 else
862 {
bbc13ae3 863 const char *arg = exp;
cc59ec59 864
adc36818
PM
865 /* I don't know if it matters whether this is the string the user
866 typed in or the decompiled expression. */
867 b->cond_string = xstrdup (arg);
868 b->condition_not_parsed = 0;
869
870 if (is_watchpoint (b))
871 {
3a5c3e22
PA
872 struct watchpoint *w = (struct watchpoint *) b;
873
699bd4cf 874 innermost_block_tracker tracker;
adc36818 875 arg = exp;
699bd4cf 876 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0, &tracker);
adc36818
PM
877 if (*arg)
878 error (_("Junk at end of expression"));
699bd4cf 879 w->cond_exp_valid_block = tracker.block ();
adc36818
PM
880 }
881 else
882 {
3a5c3e22
PA
883 struct bp_location *loc;
884
adc36818
PM
885 for (loc = b->loc; loc; loc = loc->next)
886 {
887 arg = exp;
888 loc->cond =
1bb9788d
TT
889 parse_exp_1 (&arg, loc->address,
890 block_for_pc (loc->address), 0);
adc36818
PM
891 if (*arg)
892 error (_("Junk at end of expression"));
893 }
894 }
895 }
b775012e
LM
896 mark_breakpoint_modified (b);
897
76727919 898 gdb::observers::breakpoint_modified.notify (b);
adc36818
PM
899}
900
d55637df
TT
901/* Completion for the "condition" command. */
902
eb3ff9a5 903static void
6f937416 904condition_completer (struct cmd_list_element *cmd,
eb3ff9a5 905 completion_tracker &tracker,
6f937416 906 const char *text, const char *word)
d55637df 907{
6f937416 908 const char *space;
d55637df 909
f1735a53
TT
910 text = skip_spaces (text);
911 space = skip_to_space (text);
d55637df
TT
912 if (*space == '\0')
913 {
914 int len;
915 struct breakpoint *b;
d55637df
TT
916
917 if (text[0] == '$')
918 {
919 /* We don't support completion of history indices. */
eb3ff9a5
PA
920 if (!isdigit (text[1]))
921 complete_internalvar (tracker, &text[1]);
922 return;
d55637df
TT
923 }
924
925 /* We're completing the breakpoint number. */
926 len = strlen (text);
927
928 ALL_BREAKPOINTS (b)
58ce7251
SDJ
929 {
930 char number[50];
931
932 xsnprintf (number, sizeof (number), "%d", b->number);
933
934 if (strncmp (number, text, len) == 0)
b02f78f9 935 tracker.add_completion (make_unique_xstrdup (number));
58ce7251 936 }
d55637df 937
eb3ff9a5 938 return;
d55637df
TT
939 }
940
941 /* We're completing the expression part. */
f1735a53 942 text = skip_spaces (space);
eb3ff9a5 943 expression_completer (cmd, tracker, text, word);
d55637df
TT
944}
945
c906108c
SS
946/* condition N EXP -- set break condition of breakpoint N to EXP. */
947
948static void
0b39b52e 949condition_command (const char *arg, int from_tty)
c906108c 950{
52f0bd74 951 struct breakpoint *b;
0b39b52e 952 const char *p;
52f0bd74 953 int bnum;
c906108c
SS
954
955 if (arg == 0)
e2e0b3e5 956 error_no_arg (_("breakpoint number"));
c906108c
SS
957
958 p = arg;
959 bnum = get_number (&p);
5c44784c 960 if (bnum == 0)
8a3fe4f8 961 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
962
963 ALL_BREAKPOINTS (b)
964 if (b->number == bnum)
2f069f6f 965 {
6dddc817
DE
966 /* Check if this breakpoint has a "stop" method implemented in an
967 extension language. This method and conditions entered into GDB
968 from the CLI are mutually exclusive. */
969 const struct extension_language_defn *extlang
970 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
971
972 if (extlang != NULL)
973 {
974 error (_("Only one stop condition allowed. There is currently"
975 " a %s stop condition defined for this breakpoint."),
976 ext_lang_capitalized_name (extlang));
977 }
2566ad2d 978 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
979
980 if (is_breakpoint (b))
44702360 981 update_global_location_list (UGLL_MAY_INSERT);
b775012e 982
2f069f6f
JB
983 return;
984 }
c906108c 985
8a3fe4f8 986 error (_("No breakpoint number %d."), bnum);
c906108c
SS
987}
988
a7bdde9e
VP
989/* Check that COMMAND do not contain commands that are suitable
990 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
991 Throw if any such commands is found. */
992
a7bdde9e
VP
993static void
994check_no_tracepoint_commands (struct command_line *commands)
995{
996 struct command_line *c;
cc59ec59 997
a7bdde9e
VP
998 for (c = commands; c; c = c->next)
999 {
a7bdde9e 1000 if (c->control_type == while_stepping_control)
3e43a32a
MS
1001 error (_("The 'while-stepping' command can "
1002 "only be used for tracepoints"));
a7bdde9e 1003
12973681
TT
1004 check_no_tracepoint_commands (c->body_list_0.get ());
1005 check_no_tracepoint_commands (c->body_list_1.get ());
a7bdde9e
VP
1006
1007 /* Not that command parsing removes leading whitespace and comment
4a64f543 1008 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1009 command directly. */
1010 if (strstr (c->line, "collect ") == c->line)
1011 error (_("The 'collect' command can only be used for tracepoints"));
1012
51661e93
VP
1013 if (strstr (c->line, "teval ") == c->line)
1014 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1015 }
1016}
1017
c1fc2657 1018struct longjmp_breakpoint : public breakpoint
3b0871f4 1019{
c1fc2657 1020 ~longjmp_breakpoint () override;
3b0871f4
SM
1021};
1022
d77f58be
SS
1023/* Encapsulate tests for different types of tracepoints. */
1024
3b0871f4
SM
1025static bool
1026is_tracepoint_type (bptype type)
d9b3f62e
PA
1027{
1028 return (type == bp_tracepoint
1029 || type == bp_fast_tracepoint
1030 || type == bp_static_tracepoint);
1031}
1032
3b0871f4
SM
1033static bool
1034is_longjmp_type (bptype type)
1035{
1036 return type == bp_longjmp || type == bp_exception;
1037}
1038
f2478a7e
SM
1039/* See breakpoint.h. */
1040
1041bool
d77f58be 1042is_tracepoint (const struct breakpoint *b)
a7bdde9e 1043{
d9b3f62e 1044 return is_tracepoint_type (b->type);
a7bdde9e 1045}
d9b3f62e 1046
a5e364af
SM
1047/* Factory function to create an appropriate instance of breakpoint given
1048 TYPE. */
1049
1050static std::unique_ptr<breakpoint>
1051new_breakpoint_from_type (bptype type)
1052{
1053 breakpoint *b;
1054
1055 if (is_tracepoint_type (type))
c1fc2657 1056 b = new tracepoint ();
3b0871f4 1057 else if (is_longjmp_type (type))
c1fc2657 1058 b = new longjmp_breakpoint ();
a5e364af
SM
1059 else
1060 b = new breakpoint ();
1061
1062 return std::unique_ptr<breakpoint> (b);
1063}
1064
e5dd4106 1065/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1066 breakpoint. This function will throw an exception if a problem is
1067 found. */
48cb2d85 1068
95a42b64
TT
1069static void
1070validate_commands_for_breakpoint (struct breakpoint *b,
1071 struct command_line *commands)
48cb2d85 1072{
d77f58be 1073 if (is_tracepoint (b))
a7bdde9e 1074 {
c9a6ce02 1075 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1076 struct command_line *c;
1077 struct command_line *while_stepping = 0;
c9a6ce02
PA
1078
1079 /* Reset the while-stepping step count. The previous commands
1080 might have included a while-stepping action, while the new
1081 ones might not. */
1082 t->step_count = 0;
1083
1084 /* We need to verify that each top-level element of commands is
1085 valid for tracepoints, that there's at most one
1086 while-stepping element, and that the while-stepping's body
1087 has valid tracing commands excluding nested while-stepping.
1088 We also need to validate the tracepoint action line in the
1089 context of the tracepoint --- validate_actionline actually
1090 has side effects, like setting the tracepoint's
1091 while-stepping STEP_COUNT, in addition to checking if the
1092 collect/teval actions parse and make sense in the
1093 tracepoint's context. */
a7bdde9e
VP
1094 for (c = commands; c; c = c->next)
1095 {
a7bdde9e
VP
1096 if (c->control_type == while_stepping_control)
1097 {
1098 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1099 error (_("The 'while-stepping' command "
1100 "cannot be used for fast tracepoint"));
0fb4aa4b 1101 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1102 error (_("The 'while-stepping' command "
1103 "cannot be used for static tracepoint"));
a7bdde9e
VP
1104
1105 if (while_stepping)
3e43a32a
MS
1106 error (_("The 'while-stepping' command "
1107 "can be used only once"));
a7bdde9e
VP
1108 else
1109 while_stepping = c;
1110 }
c9a6ce02
PA
1111
1112 validate_actionline (c->line, b);
a7bdde9e
VP
1113 }
1114 if (while_stepping)
1115 {
1116 struct command_line *c2;
1117
12973681
TT
1118 gdb_assert (while_stepping->body_list_1 == nullptr);
1119 c2 = while_stepping->body_list_0.get ();
a7bdde9e
VP
1120 for (; c2; c2 = c2->next)
1121 {
a7bdde9e
VP
1122 if (c2->control_type == while_stepping_control)
1123 error (_("The 'while-stepping' command cannot be nested"));
1124 }
1125 }
1126 }
1127 else
1128 {
1129 check_no_tracepoint_commands (commands);
1130 }
95a42b64
TT
1131}
1132
0fb4aa4b
PA
1133/* Return a vector of all the static tracepoints set at ADDR. The
1134 caller is responsible for releasing the vector. */
1135
f51e0e20 1136std::vector<breakpoint *>
0fb4aa4b
PA
1137static_tracepoints_here (CORE_ADDR addr)
1138{
1139 struct breakpoint *b;
f51e0e20 1140 std::vector<breakpoint *> found;
0fb4aa4b
PA
1141 struct bp_location *loc;
1142
1143 ALL_BREAKPOINTS (b)
1144 if (b->type == bp_static_tracepoint)
1145 {
1146 for (loc = b->loc; loc; loc = loc->next)
1147 if (loc->address == addr)
f51e0e20 1148 found.push_back (b);
0fb4aa4b
PA
1149 }
1150
1151 return found;
1152}
1153
95a42b64 1154/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1155 validate that only allowed commands are included. */
95a42b64
TT
1156
1157void
4a64f543 1158breakpoint_set_commands (struct breakpoint *b,
12973681 1159 counted_command_line &&commands)
95a42b64 1160{
93921405 1161 validate_commands_for_breakpoint (b, commands.get ());
a7bdde9e 1162
d1b0a7bf 1163 b->commands = std::move (commands);
76727919 1164 gdb::observers::breakpoint_modified.notify (b);
48cb2d85
VP
1165}
1166
45a43567
TT
1167/* Set the internal `silent' flag on the breakpoint. Note that this
1168 is not the same as the "silent" that may appear in the breakpoint's
1169 commands. */
1170
1171void
1172breakpoint_set_silent (struct breakpoint *b, int silent)
1173{
1174 int old_silent = b->silent;
1175
1176 b->silent = silent;
1177 if (old_silent != silent)
76727919 1178 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1179}
1180
1181/* Set the thread for this breakpoint. If THREAD is -1, make the
1182 breakpoint work for any thread. */
1183
1184void
1185breakpoint_set_thread (struct breakpoint *b, int thread)
1186{
1187 int old_thread = b->thread;
1188
1189 b->thread = thread;
1190 if (old_thread != thread)
76727919 1191 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1192}
1193
1194/* Set the task for this breakpoint. If TASK is 0, make the
1195 breakpoint work for any task. */
1196
1197void
1198breakpoint_set_task (struct breakpoint *b, int task)
1199{
1200 int old_task = b->task;
1201
1202 b->task = task;
1203 if (old_task != task)
76727919 1204 gdb::observers::breakpoint_modified.notify (b);
45a43567
TT
1205}
1206
95a42b64 1207static void
896b6bda 1208commands_command_1 (const char *arg, int from_tty,
4a64f543 1209 struct command_line *control)
95a42b64 1210{
d1b0a7bf 1211 counted_command_line cmd;
999700cd
PW
1212 /* cmd_read will be true once we have read cmd. Note that cmd might still be
1213 NULL after the call to read_command_lines if the user provides an empty
1214 list of command by just typing "end". */
1215 bool cmd_read = false;
95a42b64 1216
896b6bda
PA
1217 std::string new_arg;
1218
95a42b64
TT
1219 if (arg == NULL || !*arg)
1220 {
86b17b60 1221 if (breakpoint_count - prev_breakpoint_count > 1)
896b6bda
PA
1222 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1223 breakpoint_count);
95a42b64 1224 else if (breakpoint_count > 0)
896b6bda 1225 new_arg = string_printf ("%d", breakpoint_count);
48649e1b
TT
1226 arg = new_arg.c_str ();
1227 }
1228
1229 map_breakpoint_numbers
1230 (arg, [&] (breakpoint *b)
1231 {
999700cd 1232 if (!cmd_read)
48649e1b 1233 {
999700cd 1234 gdb_assert (cmd == NULL);
48649e1b 1235 if (control != NULL)
12973681 1236 cmd = control->body_list_0;
48649e1b
TT
1237 else
1238 {
81b1e71c
TT
1239 std::string str
1240 = string_printf (_("Type commands for breakpoint(s) "
1241 "%s, one per line."),
1242 arg);
48649e1b 1243
60b3cef2
TT
1244 auto do_validate = [=] (const char *line)
1245 {
1246 validate_actionline (line, b);
1247 };
1248 gdb::function_view<void (const char *)> validator;
1249 if (is_tracepoint (b))
1250 validator = do_validate;
1251
1252 cmd = read_command_lines (str.c_str (), from_tty, 1, validator);
48649e1b 1253 }
999700cd 1254 cmd_read = true;
48649e1b
TT
1255 }
1256
1257 /* If a breakpoint was on the list more than once, we don't need to
1258 do anything. */
1259 if (b->commands != cmd)
1260 {
d1b0a7bf 1261 validate_commands_for_breakpoint (b, cmd.get ());
48649e1b 1262 b->commands = cmd;
76727919 1263 gdb::observers::breakpoint_modified.notify (b);
48649e1b
TT
1264 }
1265 });
95a42b64
TT
1266}
1267
1268static void
0b39b52e 1269commands_command (const char *arg, int from_tty)
95a42b64
TT
1270{
1271 commands_command_1 (arg, from_tty, NULL);
c906108c 1272}
40c03ae8
EZ
1273
1274/* Like commands_command, but instead of reading the commands from
1275 input stream, takes them from an already parsed command structure.
1276
1277 This is used by cli-script.c to DTRT with breakpoint commands
1278 that are part of if and while bodies. */
1279enum command_control_type
896b6bda 1280commands_from_control_command (const char *arg, struct command_line *cmd)
40c03ae8 1281{
95a42b64
TT
1282 commands_command_1 (arg, 0, cmd);
1283 return simple_control;
40c03ae8 1284}
876fa593
JK
1285
1286/* Return non-zero if BL->TARGET_INFO contains valid information. */
1287
1288static int
1289bp_location_has_shadow (struct bp_location *bl)
1290{
1291 if (bl->loc_type != bp_loc_software_breakpoint)
1292 return 0;
1293 if (!bl->inserted)
1294 return 0;
1295 if (bl->target_info.shadow_len == 0)
e5dd4106 1296 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1297 return 0;
1298 return 1;
1299}
1300
9d497a19
PA
1301/* Update BUF, which is LEN bytes read from the target address
1302 MEMADDR, by replacing a memory breakpoint with its shadowed
1303 contents.
1304
1305 If READBUF is not NULL, this buffer must not overlap with the of
1306 the breakpoint location's shadow_contents buffer. Otherwise, a
1307 failed assertion internal error will be raised. */
1308
1309static void
1310one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1311 const gdb_byte *writebuf_org,
1312 ULONGEST memaddr, LONGEST len,
1313 struct bp_target_info *target_info,
1314 struct gdbarch *gdbarch)
1315{
1316 /* Now do full processing of the found relevant range of elements. */
1317 CORE_ADDR bp_addr = 0;
1318 int bp_size = 0;
1319 int bptoffset = 0;
1320
1321 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1322 current_program_space->aspace, 0))
1323 {
1324 /* The breakpoint is inserted in a different address space. */
1325 return;
1326 }
1327
1328 /* Addresses and length of the part of the breakpoint that
1329 we need to copy. */
1330 bp_addr = target_info->placed_address;
1331 bp_size = target_info->shadow_len;
1332
1333 if (bp_addr + bp_size <= memaddr)
1334 {
1335 /* The breakpoint is entirely before the chunk of memory we are
1336 reading. */
1337 return;
1338 }
1339
1340 if (bp_addr >= memaddr + len)
1341 {
1342 /* The breakpoint is entirely after the chunk of memory we are
1343 reading. */
1344 return;
1345 }
1346
1347 /* Offset within shadow_contents. */
1348 if (bp_addr < memaddr)
1349 {
1350 /* Only copy the second part of the breakpoint. */
1351 bp_size -= memaddr - bp_addr;
1352 bptoffset = memaddr - bp_addr;
1353 bp_addr = memaddr;
1354 }
1355
1356 if (bp_addr + bp_size > memaddr + len)
1357 {
1358 /* Only copy the first part of the breakpoint. */
1359 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1360 }
1361
1362 if (readbuf != NULL)
1363 {
1364 /* Verify that the readbuf buffer does not overlap with the
1365 shadow_contents buffer. */
1366 gdb_assert (target_info->shadow_contents >= readbuf + len
1367 || readbuf >= (target_info->shadow_contents
1368 + target_info->shadow_len));
1369
1370 /* Update the read buffer with this inserted breakpoint's
1371 shadow. */
1372 memcpy (readbuf + bp_addr - memaddr,
1373 target_info->shadow_contents + bptoffset, bp_size);
1374 }
1375 else
1376 {
1377 const unsigned char *bp;
0d5ed153
MR
1378 CORE_ADDR addr = target_info->reqstd_address;
1379 int placed_size;
9d497a19
PA
1380
1381 /* Update the shadow with what we want to write to memory. */
1382 memcpy (target_info->shadow_contents + bptoffset,
1383 writebuf_org + bp_addr - memaddr, bp_size);
1384
1385 /* Determine appropriate breakpoint contents and size for this
1386 address. */
0d5ed153 1387 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
9d497a19
PA
1388
1389 /* Update the final write buffer with this inserted
1390 breakpoint's INSN. */
1391 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1392 }
1393}
1394
8defab1a 1395/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1396 by replacing any memory breakpoints with their shadowed contents.
1397
35c63cd8
JB
1398 If READBUF is not NULL, this buffer must not overlap with any of
1399 the breakpoint location's shadow_contents buffers. Otherwise,
1400 a failed assertion internal error will be raised.
1401
876fa593 1402 The range of shadowed area by each bp_location is:
f5336ca5
PA
1403 bl->address - bp_locations_placed_address_before_address_max
1404 up to bl->address + bp_locations_shadow_len_after_address_max
876fa593
JK
1405 The range we were requested to resolve shadows for is:
1406 memaddr ... memaddr + len
1407 Thus the safe cutoff boundaries for performance optimization are
35df4500 1408 memaddr + len <= (bl->address
f5336ca5 1409 - bp_locations_placed_address_before_address_max)
876fa593 1410 and:
f5336ca5 1411 bl->address + bp_locations_shadow_len_after_address_max <= memaddr */
c906108c 1412
8defab1a 1413void
f0ba3972
PA
1414breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1415 const gdb_byte *writebuf_org,
1416 ULONGEST memaddr, LONGEST len)
c906108c 1417{
4a64f543
MS
1418 /* Left boundary, right boundary and median element of our binary
1419 search. */
876fa593
JK
1420 unsigned bc_l, bc_r, bc;
1421
4a64f543
MS
1422 /* Find BC_L which is a leftmost element which may affect BUF
1423 content. It is safe to report lower value but a failure to
1424 report higher one. */
876fa593
JK
1425
1426 bc_l = 0;
f5336ca5 1427 bc_r = bp_locations_count;
876fa593
JK
1428 while (bc_l + 1 < bc_r)
1429 {
35df4500 1430 struct bp_location *bl;
876fa593
JK
1431
1432 bc = (bc_l + bc_r) / 2;
f5336ca5 1433 bl = bp_locations[bc];
876fa593 1434
4a64f543
MS
1435 /* Check first BL->ADDRESS will not overflow due to the added
1436 constant. Then advance the left boundary only if we are sure
1437 the BC element can in no way affect the BUF content (MEMADDR
1438 to MEMADDR + LEN range).
876fa593 1439
f5336ca5 1440 Use the BP_LOCATIONS_SHADOW_LEN_AFTER_ADDRESS_MAX safety
4a64f543
MS
1441 offset so that we cannot miss a breakpoint with its shadow
1442 range tail still reaching MEMADDR. */
c5aa993b 1443
f5336ca5 1444 if ((bl->address + bp_locations_shadow_len_after_address_max
35df4500 1445 >= bl->address)
f5336ca5 1446 && (bl->address + bp_locations_shadow_len_after_address_max
35df4500 1447 <= memaddr))
876fa593
JK
1448 bc_l = bc;
1449 else
1450 bc_r = bc;
1451 }
1452
128070bb
PA
1453 /* Due to the binary search above, we need to make sure we pick the
1454 first location that's at BC_L's address. E.g., if there are
1455 multiple locations at the same address, BC_L may end up pointing
1456 at a duplicate location, and miss the "master"/"inserted"
1457 location. Say, given locations L1, L2 and L3 at addresses A and
1458 B:
1459
1460 L1@A, L2@A, L3@B, ...
1461
1462 BC_L could end up pointing at location L2, while the "master"
1463 location could be L1. Since the `loc->inserted' flag is only set
1464 on "master" locations, we'd forget to restore the shadow of L1
1465 and L2. */
1466 while (bc_l > 0
f5336ca5 1467 && bp_locations[bc_l]->address == bp_locations[bc_l - 1]->address)
128070bb
PA
1468 bc_l--;
1469
876fa593
JK
1470 /* Now do full processing of the found relevant range of elements. */
1471
f5336ca5 1472 for (bc = bc_l; bc < bp_locations_count; bc++)
c5aa993b 1473 {
f5336ca5 1474 struct bp_location *bl = bp_locations[bc];
876fa593 1475
35df4500
TJB
1476 /* bp_location array has BL->OWNER always non-NULL. */
1477 if (bl->owner->type == bp_none)
8a3fe4f8 1478 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1479 bl->owner->number);
ffce0d52 1480
e5dd4106 1481 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1482 content. */
1483
f5336ca5
PA
1484 if (bl->address >= bp_locations_placed_address_before_address_max
1485 && memaddr + len <= (bl->address
1486 - bp_locations_placed_address_before_address_max))
876fa593
JK
1487 break;
1488
35df4500 1489 if (!bp_location_has_shadow (bl))
c5aa993b 1490 continue;
6c95b8df 1491
9d497a19
PA
1492 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1493 memaddr, len, &bl->target_info, bl->gdbarch);
1494 }
c906108c 1495}
9d497a19 1496
f2478a7e 1497/* See breakpoint.h. */
b775012e 1498
f2478a7e 1499bool
b775012e
LM
1500is_breakpoint (const struct breakpoint *bpt)
1501{
1502 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1503 || bpt->type == bp_hardware_breakpoint
1504 || bpt->type == bp_dprintf);
b775012e
LM
1505}
1506
60e1c644
PA
1507/* Return true if BPT is of any hardware watchpoint kind. */
1508
f2478a7e 1509static bool
d77f58be 1510is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1511{
1512 return (bpt->type == bp_hardware_watchpoint
1513 || bpt->type == bp_read_watchpoint
1514 || bpt->type == bp_access_watchpoint);
1515}
7270d8f2 1516
f2478a7e 1517/* See breakpoint.h. */
60e1c644 1518
f2478a7e 1519bool
d77f58be 1520is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1521{
1522 return (is_hardware_watchpoint (bpt)
1523 || bpt->type == bp_watchpoint);
1524}
1525
3a5c3e22
PA
1526/* Returns true if the current thread and its running state are safe
1527 to evaluate or update watchpoint B. Watchpoints on local
1528 expressions need to be evaluated in the context of the thread that
1529 was current when the watchpoint was created, and, that thread needs
1530 to be stopped to be able to select the correct frame context.
1531 Watchpoints on global expressions can be evaluated on any thread,
1532 and in any state. It is presently left to the target allowing
1533 memory accesses when threads are running. */
f6bc2008
PA
1534
1535static int
3a5c3e22 1536watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1537{
c1fc2657 1538 return (b->pspace == current_program_space
d7e15655
TT
1539 && (b->watchpoint_thread == null_ptid
1540 || (inferior_ptid == b->watchpoint_thread
00431a78 1541 && !inferior_thread ()->executing)));
f6bc2008
PA
1542}
1543
d0fb5eae
JK
1544/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1545 associated bp_watchpoint_scope breakpoint. */
1546
1547static void
3a5c3e22 1548watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1549{
c1fc2657 1550 if (w->related_breakpoint != w)
d0fb5eae 1551 {
c1fc2657
SM
1552 gdb_assert (w->related_breakpoint->type == bp_watchpoint_scope);
1553 gdb_assert (w->related_breakpoint->related_breakpoint == w);
1554 w->related_breakpoint->disposition = disp_del_at_next_stop;
1555 w->related_breakpoint->related_breakpoint = w->related_breakpoint;
1556 w->related_breakpoint = w;
d0fb5eae 1557 }
c1fc2657 1558 w->disposition = disp_del_at_next_stop;
d0fb5eae
JK
1559}
1560
bb9d5f81
PP
1561/* Extract a bitfield value from value VAL using the bit parameters contained in
1562 watchpoint W. */
1563
1564static struct value *
1565extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1566{
1567 struct value *bit_val;
1568
1569 if (val == NULL)
1570 return NULL;
1571
1572 bit_val = allocate_value (value_type (val));
1573
1574 unpack_value_bitfield (bit_val,
1575 w->val_bitpos,
1576 w->val_bitsize,
1577 value_contents_for_printing (val),
1578 value_offset (val),
1579 val);
1580
1581 return bit_val;
1582}
1583
c6d81124
PA
1584/* Allocate a dummy location and add it to B, which must be a software
1585 watchpoint. This is required because even if a software watchpoint
1586 is not watching any memory, bpstat_stop_status requires a location
1587 to be able to report stops. */
1588
1589static void
1590software_watchpoint_add_no_memory_location (struct breakpoint *b,
1591 struct program_space *pspace)
1592{
1593 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1594
1595 b->loc = allocate_bp_location (b);
1596 b->loc->pspace = pspace;
1597 b->loc->address = -1;
1598 b->loc->length = -1;
1599}
1600
1601/* Returns true if B is a software watchpoint that is not watching any
1602 memory (e.g., "watch $pc"). */
1603
f2478a7e 1604static bool
c6d81124
PA
1605is_no_memory_software_watchpoint (struct breakpoint *b)
1606{
1607 return (b->type == bp_watchpoint
1608 && b->loc != NULL
1609 && b->loc->next == NULL
1610 && b->loc->address == -1
1611 && b->loc->length == -1);
1612}
1613
567e1b4e
JB
1614/* Assuming that B is a watchpoint:
1615 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1616 - Evaluate expression and store the result in B->val
567e1b4e
JB
1617 - Evaluate the condition if there is one, and store the result
1618 in b->loc->cond.
a5606eee
VP
1619 - Update the list of values that must be watched in B->loc.
1620
4a64f543
MS
1621 If the watchpoint disposition is disp_del_at_next_stop, then do
1622 nothing. If this is local watchpoint that is out of scope, delete
1623 it.
1624
1625 Even with `set breakpoint always-inserted on' the watchpoints are
1626 removed + inserted on each stop here. Normal breakpoints must
1627 never be removed because they might be missed by a running thread
1628 when debugging in non-stop mode. On the other hand, hardware
1629 watchpoints (is_hardware_watchpoint; processed here) are specific
1630 to each LWP since they are stored in each LWP's hardware debug
1631 registers. Therefore, such LWP must be stopped first in order to
1632 be able to modify its hardware watchpoints.
1633
1634 Hardware watchpoints must be reset exactly once after being
1635 presented to the user. It cannot be done sooner, because it would
1636 reset the data used to present the watchpoint hit to the user. And
1637 it must not be done later because it could display the same single
1638 watchpoint hit during multiple GDB stops. Note that the latter is
1639 relevant only to the hardware watchpoint types bp_read_watchpoint
1640 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1641 not user-visible - its hit is suppressed if the memory content has
1642 not changed.
1643
1644 The following constraints influence the location where we can reset
1645 hardware watchpoints:
1646
1647 * target_stopped_by_watchpoint and target_stopped_data_address are
1648 called several times when GDB stops.
1649
1650 [linux]
1651 * Multiple hardware watchpoints can be hit at the same time,
1652 causing GDB to stop. GDB only presents one hardware watchpoint
1653 hit at a time as the reason for stopping, and all the other hits
1654 are presented later, one after the other, each time the user
1655 requests the execution to be resumed. Execution is not resumed
1656 for the threads still having pending hit event stored in
1657 LWP_INFO->STATUS. While the watchpoint is already removed from
1658 the inferior on the first stop the thread hit event is kept being
1659 reported from its cached value by linux_nat_stopped_data_address
1660 until the real thread resume happens after the watchpoint gets
1661 presented and thus its LWP_INFO->STATUS gets reset.
1662
1663 Therefore the hardware watchpoint hit can get safely reset on the
1664 watchpoint removal from inferior. */
a79d3c27 1665
b40ce68a 1666static void
3a5c3e22 1667update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1668{
a5606eee 1669 int within_current_scope;
a5606eee 1670 struct frame_id saved_frame_id;
66076460 1671 int frame_saved;
a5606eee 1672
f6bc2008
PA
1673 /* If this is a local watchpoint, we only want to check if the
1674 watchpoint frame is in scope if the current thread is the thread
1675 that was used to create the watchpoint. */
1676 if (!watchpoint_in_thread_scope (b))
1677 return;
1678
c1fc2657 1679 if (b->disposition == disp_del_at_next_stop)
a5606eee
VP
1680 return;
1681
66076460 1682 frame_saved = 0;
a5606eee
VP
1683
1684 /* Determine if the watchpoint is within scope. */
1685 if (b->exp_valid_block == NULL)
1686 within_current_scope = 1;
1687 else
1688 {
b5db5dfc
UW
1689 struct frame_info *fi = get_current_frame ();
1690 struct gdbarch *frame_arch = get_frame_arch (fi);
1691 CORE_ADDR frame_pc = get_frame_pc (fi);
1692
c9cf6e20
MG
1693 /* If we're at a point where the stack has been destroyed
1694 (e.g. in a function epilogue), unwinding may not work
1695 properly. Do not attempt to recreate locations at this
b5db5dfc 1696 point. See similar comments in watchpoint_check. */
c9cf6e20 1697 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
b5db5dfc 1698 return;
66076460
DJ
1699
1700 /* Save the current frame's ID so we can restore it after
1701 evaluating the watchpoint expression on its own frame. */
1702 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1703 took a frame parameter, so that we didn't have to change the
1704 selected frame. */
1705 frame_saved = 1;
1706 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1707
a5606eee
VP
1708 fi = frame_find_by_id (b->watchpoint_frame);
1709 within_current_scope = (fi != NULL);
1710 if (within_current_scope)
1711 select_frame (fi);
1712 }
1713
b5db5dfc
UW
1714 /* We don't free locations. They are stored in the bp_location array
1715 and update_global_location_list will eventually delete them and
1716 remove breakpoints if needed. */
c1fc2657 1717 b->loc = NULL;
b5db5dfc 1718
a5606eee
VP
1719 if (within_current_scope && reparse)
1720 {
bbc13ae3 1721 const char *s;
d63d0675 1722
4d01a485 1723 b->exp.reset ();
d63d0675 1724 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1725 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1726 /* If the meaning of expression itself changed, the old value is
1727 no longer relevant. We don't want to report a watchpoint hit
1728 to the user when the old value and the new value may actually
1729 be completely different objects. */
fa4727a6 1730 b->val = NULL;
4c1d86d9 1731 b->val_valid = false;
60e1c644
PA
1732
1733 /* Note that unlike with breakpoints, the watchpoint's condition
1734 expression is stored in the breakpoint object, not in the
1735 locations (re)created below. */
c1fc2657 1736 if (b->cond_string != NULL)
60e1c644 1737 {
4d01a485 1738 b->cond_exp.reset ();
60e1c644 1739
c1fc2657 1740 s = b->cond_string;
1bb9788d 1741 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1742 }
a5606eee 1743 }
a5606eee
VP
1744
1745 /* If we failed to parse the expression, for example because
1746 it refers to a global variable in a not-yet-loaded shared library,
1747 don't try to insert watchpoint. We don't automatically delete
1748 such watchpoint, though, since failure to parse expression
1749 is different from out-of-scope watchpoint. */
e8369a73 1750 if (!target_has_execution)
2d134ed3
PA
1751 {
1752 /* Without execution, memory can't change. No use to try and
1753 set watchpoint locations. The watchpoint will be reset when
1754 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1755 if (!can_use_hw_watchpoints)
1756 {
c1fc2657
SM
1757 if (b->ops->works_in_software_mode (b))
1758 b->type = bp_watchpoint;
e8369a73 1759 else
638aa5a1
AB
1760 error (_("Can't set read/access watchpoint when "
1761 "hardware watchpoints are disabled."));
e8369a73 1762 }
2d134ed3
PA
1763 }
1764 else if (within_current_scope && b->exp)
a5606eee 1765 {
0cf6dd15 1766 int pc = 0;
a6535de1 1767 std::vector<value_ref_ptr> val_chain;
8d49165d 1768 struct value *v, *result;
2d134ed3 1769 struct program_space *frame_pspace;
a5606eee 1770
4d01a485 1771 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
a5606eee 1772
a5606eee
VP
1773 /* Avoid setting b->val if it's already set. The meaning of
1774 b->val is 'the last value' user saw, and we should update
1775 it only if we reported that last value to user. As it
9c06b0b4
TJB
1776 happens, the code that reports it updates b->val directly.
1777 We don't keep track of the memory value for masked
1778 watchpoints. */
c1fc2657 1779 if (!b->val_valid && !is_masked_watchpoint (b))
fa4727a6 1780 {
bb9d5f81 1781 if (b->val_bitsize != 0)
850645cf
TT
1782 v = extract_bitfield_from_watchpoint_value (b, v);
1783 b->val = release_value (v);
4c1d86d9 1784 b->val_valid = true;
fa4727a6 1785 }
a5606eee 1786
2d134ed3
PA
1787 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1788
a5606eee 1789 /* Look at each value on the value chain. */
a6535de1
TT
1790 gdb_assert (!val_chain.empty ());
1791 for (const value_ref_ptr &iter : val_chain)
a5606eee 1792 {
a6535de1
TT
1793 v = iter.get ();
1794
a5606eee
VP
1795 /* If it's a memory location, and GDB actually needed
1796 its contents to evaluate the expression, then we
fa4727a6
DJ
1797 must watch it. If the first value returned is
1798 still lazy, that means an error occurred reading it;
1799 watch it anyway in case it becomes readable. */
a5606eee 1800 if (VALUE_LVAL (v) == lval_memory
a6535de1 1801 && (v == val_chain[0] || ! value_lazy (v)))
a5606eee
VP
1802 {
1803 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1804
a5606eee
VP
1805 /* We only watch structs and arrays if user asked
1806 for it explicitly, never if they just happen to
1807 appear in the middle of some value chain. */
fa4727a6 1808 if (v == result
a5606eee
VP
1809 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1810 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1811 {
1812 CORE_ADDR addr;
f486487f 1813 enum target_hw_bp_type type;
a5606eee 1814 struct bp_location *loc, **tmp;
bb9d5f81
PP
1815 int bitpos = 0, bitsize = 0;
1816
1817 if (value_bitsize (v) != 0)
1818 {
1819 /* Extract the bit parameters out from the bitfield
1820 sub-expression. */
1821 bitpos = value_bitpos (v);
1822 bitsize = value_bitsize (v);
1823 }
1824 else if (v == result && b->val_bitsize != 0)
1825 {
1826 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
1827 lvalue whose bit parameters are saved in the fields
1828 VAL_BITPOS and VAL_BITSIZE. */
1829 bitpos = b->val_bitpos;
1830 bitsize = b->val_bitsize;
1831 }
a5606eee 1832
42ae5230 1833 addr = value_address (v);
bb9d5f81
PP
1834 if (bitsize != 0)
1835 {
1836 /* Skip the bytes that don't contain the bitfield. */
1837 addr += bitpos / 8;
1838 }
1839
a5606eee 1840 type = hw_write;
c1fc2657 1841 if (b->type == bp_read_watchpoint)
a5606eee 1842 type = hw_read;
c1fc2657 1843 else if (b->type == bp_access_watchpoint)
a5606eee 1844 type = hw_access;
3a5c3e22 1845
c1fc2657
SM
1846 loc = allocate_bp_location (b);
1847 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
1848 ;
1849 *tmp = loc;
a6d9a66e 1850 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1851
1852 loc->pspace = frame_pspace;
f17d9474 1853 loc->address = address_significant (loc->gdbarch, addr);
bb9d5f81
PP
1854
1855 if (bitsize != 0)
1856 {
1857 /* Just cover the bytes that make up the bitfield. */
1858 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
1859 }
1860 else
1861 loc->length = TYPE_LENGTH (value_type (v));
1862
a5606eee
VP
1863 loc->watchpoint_type = type;
1864 }
1865 }
9fa40276
TJB
1866 }
1867
1868 /* Change the type of breakpoint between hardware assisted or
1869 an ordinary watchpoint depending on the hardware support
1870 and free hardware slots. REPARSE is set when the inferior
1871 is started. */
a9634178 1872 if (reparse)
9fa40276 1873 {
e09342b5 1874 int reg_cnt;
9fa40276
TJB
1875 enum bp_loc_type loc_type;
1876 struct bp_location *bl;
a5606eee 1877
a9634178 1878 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
1879
1880 if (reg_cnt)
9fa40276
TJB
1881 {
1882 int i, target_resources_ok, other_type_used;
a1398e0c 1883 enum bptype type;
9fa40276 1884
a9634178
TJB
1885 /* Use an exact watchpoint when there's only one memory region to be
1886 watched, and only one debug register is needed to watch it. */
1887 b->exact = target_exact_watchpoints && reg_cnt == 1;
1888
9fa40276 1889 /* We need to determine how many resources are already
e09342b5
TJB
1890 used for all other hardware watchpoints plus this one
1891 to see if we still have enough resources to also fit
a1398e0c
PA
1892 this watchpoint in as well. */
1893
1894 /* If this is a software watchpoint, we try to turn it
1895 to a hardware one -- count resources as if B was of
1896 hardware watchpoint type. */
c1fc2657 1897 type = b->type;
a1398e0c
PA
1898 if (type == bp_watchpoint)
1899 type = bp_hardware_watchpoint;
1900
1901 /* This watchpoint may or may not have been placed on
1902 the list yet at this point (it won't be in the list
1903 if we're trying to create it for the first time,
1904 through watch_command), so always account for it
1905 manually. */
1906
1907 /* Count resources used by all watchpoints except B. */
c1fc2657 1908 i = hw_watchpoint_used_count_others (b, type, &other_type_used);
a1398e0c
PA
1909
1910 /* Add in the resources needed for B. */
c1fc2657 1911 i += hw_watchpoint_use_count (b);
a1398e0c
PA
1912
1913 target_resources_ok
1914 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 1915 if (target_resources_ok <= 0)
a9634178 1916 {
c1fc2657 1917 int sw_mode = b->ops->works_in_software_mode (b);
9c06b0b4
TJB
1918
1919 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
1920 error (_("Target does not support this type of "
1921 "hardware watchpoint."));
9c06b0b4
TJB
1922 else if (target_resources_ok < 0 && !sw_mode)
1923 error (_("There are not enough available hardware "
1924 "resources for this watchpoint."));
a1398e0c
PA
1925
1926 /* Downgrade to software watchpoint. */
c1fc2657 1927 b->type = bp_watchpoint;
a1398e0c
PA
1928 }
1929 else
1930 {
1931 /* If this was a software watchpoint, we've just
1932 found we have enough resources to turn it to a
1933 hardware watchpoint. Otherwise, this is a
1934 nop. */
c1fc2657 1935 b->type = type;
a9634178 1936 }
9fa40276 1937 }
c1fc2657 1938 else if (!b->ops->works_in_software_mode (b))
638aa5a1
AB
1939 {
1940 if (!can_use_hw_watchpoints)
1941 error (_("Can't set read/access watchpoint when "
1942 "hardware watchpoints are disabled."));
1943 else
1944 error (_("Expression cannot be implemented with "
1945 "read/access watchpoint."));
1946 }
9fa40276 1947 else
c1fc2657 1948 b->type = bp_watchpoint;
9fa40276 1949
c1fc2657 1950 loc_type = (b->type == bp_watchpoint? bp_loc_other
9fa40276 1951 : bp_loc_hardware_watchpoint);
c1fc2657 1952 for (bl = b->loc; bl; bl = bl->next)
9fa40276
TJB
1953 bl->loc_type = loc_type;
1954 }
1955
c7437ca6
PA
1956 /* If a software watchpoint is not watching any memory, then the
1957 above left it without any location set up. But,
1958 bpstat_stop_status requires a location to be able to report
1959 stops, so make sure there's at least a dummy one. */
c1fc2657
SM
1960 if (b->type == bp_watchpoint && b->loc == NULL)
1961 software_watchpoint_add_no_memory_location (b, frame_pspace);
a5606eee
VP
1962 }
1963 else if (!within_current_scope)
7270d8f2 1964 {
ac74f770
MS
1965 printf_filtered (_("\
1966Watchpoint %d deleted because the program has left the block\n\
1967in which its expression is valid.\n"),
c1fc2657 1968 b->number);
d0fb5eae 1969 watchpoint_del_at_next_stop (b);
7270d8f2 1970 }
a5606eee
VP
1971
1972 /* Restore the selected frame. */
66076460
DJ
1973 if (frame_saved)
1974 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1975}
1976
a5606eee 1977
74960c60 1978/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
1979 inserted in the inferior. We don't differentiate the type of BL's owner
1980 (breakpoint vs. tracepoint), although insert_location in tracepoint's
1981 breakpoint_ops is not defined, because in insert_bp_location,
1982 tracepoint's insert_location will not be called. */
74960c60 1983static int
35df4500 1984should_be_inserted (struct bp_location *bl)
74960c60 1985{
35df4500 1986 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
1987 return 0;
1988
35df4500 1989 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
1990 return 0;
1991
35df4500 1992 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
1993 return 0;
1994
f8eba3c6
TT
1995 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
1996 return 0;
1997
56710373
PA
1998 /* This is set for example, when we're attached to the parent of a
1999 vfork, and have detached from the child. The child is running
2000 free, and we expect it to do an exec or exit, at which point the
2001 OS makes the parent schedulable again (and the target reports
2002 that the vfork is done). Until the child is done with the shared
2003 memory region, do not insert breakpoints in the parent, otherwise
2004 the child could still trip on the parent's breakpoints. Since
2005 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2006 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2007 return 0;
2008
31e77af2 2009 /* Don't insert a breakpoint if we're trying to step past its
21edc42f
YQ
2010 location, except if the breakpoint is a single-step breakpoint,
2011 and the breakpoint's thread is the thread which is stepping past
2012 a breakpoint. */
31e77af2
PA
2013 if ((bl->loc_type == bp_loc_software_breakpoint
2014 || bl->loc_type == bp_loc_hardware_breakpoint)
2015 && stepping_past_instruction_at (bl->pspace->aspace,
21edc42f
YQ
2016 bl->address)
2017 /* The single-step breakpoint may be inserted at the location
2018 we're trying to step if the instruction branches to itself.
2019 However, the instruction won't be executed at all and it may
2020 break the semantics of the instruction, for example, the
2021 instruction is a conditional branch or updates some flags.
2022 We can't fix it unless GDB is able to emulate the instruction
2023 or switch to displaced stepping. */
2024 && !(bl->owner->type == bp_single_step
2025 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
e558d7c1
PA
2026 {
2027 if (debug_infrun)
2028 {
2029 fprintf_unfiltered (gdb_stdlog,
2030 "infrun: skipping breakpoint: "
2031 "stepping past insn at: %s\n",
2032 paddress (bl->gdbarch, bl->address));
2033 }
2034 return 0;
2035 }
31e77af2 2036
963f9c80
PA
2037 /* Don't insert watchpoints if we're trying to step past the
2038 instruction that triggered one. */
2039 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2040 && stepping_past_nonsteppable_watchpoint ())
2041 {
2042 if (debug_infrun)
2043 {
2044 fprintf_unfiltered (gdb_stdlog,
2045 "infrun: stepping past non-steppable watchpoint. "
2046 "skipping watchpoint at %s:%d\n",
2047 paddress (bl->gdbarch, bl->address),
2048 bl->length);
2049 }
2050 return 0;
2051 }
2052
74960c60
VP
2053 return 1;
2054}
2055
934709f0
PW
2056/* Same as should_be_inserted but does the check assuming
2057 that the location is not duplicated. */
2058
2059static int
2060unduplicated_should_be_inserted (struct bp_location *bl)
2061{
2062 int result;
2063 const int save_duplicate = bl->duplicate;
2064
2065 bl->duplicate = 0;
2066 result = should_be_inserted (bl);
2067 bl->duplicate = save_duplicate;
2068 return result;
2069}
2070
b775012e
LM
2071/* Parses a conditional described by an expression COND into an
2072 agent expression bytecode suitable for evaluation
2073 by the bytecode interpreter. Return NULL if there was
2074 any error during parsing. */
2075
833177a4 2076static agent_expr_up
b775012e
LM
2077parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2078{
833177a4 2079 if (cond == NULL)
b775012e
LM
2080 return NULL;
2081
833177a4
PA
2082 agent_expr_up aexpr;
2083
b775012e
LM
2084 /* We don't want to stop processing, so catch any errors
2085 that may show up. */
a70b8144 2086 try
b775012e 2087 {
036e657b 2088 aexpr = gen_eval_for_expr (scope, cond);
b775012e
LM
2089 }
2090
230d2906 2091 catch (const gdb_exception_error &ex)
b775012e
LM
2092 {
2093 /* If we got here, it means the condition could not be parsed to a valid
2094 bytecode expression and thus can't be evaluated on the target's side.
2095 It's no use iterating through the conditions. */
b775012e
LM
2096 }
2097
2098 /* We have a valid agent expression. */
2099 return aexpr;
2100}
2101
2102/* Based on location BL, create a list of breakpoint conditions to be
2103 passed on to the target. If we have duplicated locations with different
2104 conditions, we will add such conditions to the list. The idea is that the
2105 target will evaluate the list of conditions and will only notify GDB when
2106 one of them is true. */
2107
2108static void
2109build_target_condition_list (struct bp_location *bl)
2110{
2111 struct bp_location **locp = NULL, **loc2p;
2112 int null_condition_or_parse_error = 0;
2113 int modified = bl->needs_update;
2114 struct bp_location *loc;
2115
8b4f3082 2116 /* Release conditions left over from a previous insert. */
3cde5c42 2117 bl->target_info.conditions.clear ();
8b4f3082 2118
b775012e
LM
2119 /* This is only meaningful if the target is
2120 evaluating conditions and if the user has
2121 opted for condition evaluation on the target's
2122 side. */
2123 if (gdb_evaluates_breakpoint_condition_p ()
2124 || !target_supports_evaluation_of_breakpoint_conditions ())
2125 return;
2126
2127 /* Do a first pass to check for locations with no assigned
2128 conditions or conditions that fail to parse to a valid agent expression
2129 bytecode. If any of these happen, then it's no use to send conditions
2130 to the target since this location will always trigger and generate a
2131 response back to GDB. */
2132 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2133 {
2134 loc = (*loc2p);
2135 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2136 {
2137 if (modified)
2138 {
b775012e
LM
2139 /* Re-parse the conditions since something changed. In that
2140 case we already freed the condition bytecodes (see
2141 force_breakpoint_reinsertion). We just
2142 need to parse the condition to bytecodes again. */
833177a4
PA
2143 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2144 loc->cond.get ());
b775012e
LM
2145 }
2146
2147 /* If we have a NULL bytecode expression, it means something
2148 went wrong or we have a null condition expression. */
2149 if (!loc->cond_bytecode)
2150 {
2151 null_condition_or_parse_error = 1;
2152 break;
2153 }
2154 }
2155 }
2156
2157 /* If any of these happened, it means we will have to evaluate the conditions
2158 for the location's address on gdb's side. It is no use keeping bytecodes
2159 for all the other duplicate locations, thus we free all of them here.
2160
2161 This is so we have a finer control over which locations' conditions are
2162 being evaluated by GDB or the remote stub. */
2163 if (null_condition_or_parse_error)
2164 {
2165 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2166 {
2167 loc = (*loc2p);
2168 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2169 {
2170 /* Only go as far as the first NULL bytecode is
2171 located. */
2172 if (!loc->cond_bytecode)
2173 return;
2174
833177a4 2175 loc->cond_bytecode.reset ();
b775012e
LM
2176 }
2177 }
2178 }
2179
2180 /* No NULL conditions or failed bytecode generation. Build a condition list
2181 for this location's address. */
2182 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2183 {
2184 loc = (*loc2p);
2185 if (loc->cond
2186 && is_breakpoint (loc->owner)
2187 && loc->pspace->num == bl->pspace->num
2188 && loc->owner->enable_state == bp_enabled
2189 && loc->enabled)
3cde5c42
PA
2190 {
2191 /* Add the condition to the vector. This will be used later
2192 to send the conditions to the target. */
2193 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2194 }
b775012e
LM
2195 }
2196
2197 return;
2198}
2199
d3ce09f5
SS
2200/* Parses a command described by string CMD into an agent expression
2201 bytecode suitable for evaluation by the bytecode interpreter.
2202 Return NULL if there was any error during parsing. */
2203
833177a4 2204static agent_expr_up
d3ce09f5
SS
2205parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2206{
bbc13ae3
KS
2207 const char *cmdrest;
2208 const char *format_start, *format_end;
d3ce09f5
SS
2209 struct gdbarch *gdbarch = get_current_arch ();
2210
833177a4 2211 if (cmd == NULL)
d3ce09f5
SS
2212 return NULL;
2213
2214 cmdrest = cmd;
2215
2216 if (*cmdrest == ',')
2217 ++cmdrest;
f1735a53 2218 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2219
2220 if (*cmdrest++ != '"')
2221 error (_("No format string following the location"));
2222
2223 format_start = cmdrest;
2224
8e481c3b 2225 format_pieces fpieces (&cmdrest);
d3ce09f5
SS
2226
2227 format_end = cmdrest;
2228
2229 if (*cmdrest++ != '"')
2230 error (_("Bad format string, non-terminated '\"'."));
2231
f1735a53 2232 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2233
2234 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2235 error (_("Invalid argument syntax"));
2236
2237 if (*cmdrest == ',')
2238 cmdrest++;
f1735a53 2239 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2240
2241 /* For each argument, make an expression. */
2242
8e481c3b 2243 std::vector<struct expression *> argvec;
d3ce09f5
SS
2244 while (*cmdrest != '\0')
2245 {
bbc13ae3 2246 const char *cmd1;
d3ce09f5
SS
2247
2248 cmd1 = cmdrest;
4d01a485 2249 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
8e481c3b 2250 argvec.push_back (expr.release ());
d3ce09f5
SS
2251 cmdrest = cmd1;
2252 if (*cmdrest == ',')
2253 ++cmdrest;
2254 }
2255
833177a4
PA
2256 agent_expr_up aexpr;
2257
d3ce09f5
SS
2258 /* We don't want to stop processing, so catch any errors
2259 that may show up. */
a70b8144 2260 try
d3ce09f5 2261 {
036e657b
JB
2262 aexpr = gen_printf (scope, gdbarch, 0, 0,
2263 format_start, format_end - format_start,
8e481c3b 2264 argvec.size (), argvec.data ());
d3ce09f5 2265 }
230d2906 2266 catch (const gdb_exception_error &ex)
d3ce09f5
SS
2267 {
2268 /* If we got here, it means the command could not be parsed to a valid
2269 bytecode expression and thus can't be evaluated on the target's side.
2270 It's no use iterating through the other commands. */
d3ce09f5 2271 }
492d29ea 2272
d3ce09f5
SS
2273 /* We have a valid agent expression, return it. */
2274 return aexpr;
2275}
2276
2277/* Based on location BL, create a list of breakpoint commands to be
2278 passed on to the target. If we have duplicated locations with
2279 different commands, we will add any such to the list. */
2280
2281static void
2282build_target_command_list (struct bp_location *bl)
2283{
2284 struct bp_location **locp = NULL, **loc2p;
2285 int null_command_or_parse_error = 0;
2286 int modified = bl->needs_update;
2287 struct bp_location *loc;
2288
3cde5c42
PA
2289 /* Clear commands left over from a previous insert. */
2290 bl->target_info.tcommands.clear ();
8b4f3082 2291
41fac0cf 2292 if (!target_can_run_breakpoint_commands ())
d3ce09f5
SS
2293 return;
2294
41fac0cf
PA
2295 /* For now, limit to agent-style dprintf breakpoints. */
2296 if (dprintf_style != dprintf_style_agent)
d3ce09f5
SS
2297 return;
2298
41fac0cf
PA
2299 /* For now, if we have any duplicate location that isn't a dprintf,
2300 don't install the target-side commands, as that would make the
2301 breakpoint not be reported to the core, and we'd lose
2302 control. */
2303 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2304 {
2305 loc = (*loc2p);
2306 if (is_breakpoint (loc->owner)
2307 && loc->pspace->num == bl->pspace->num
2308 && loc->owner->type != bp_dprintf)
2309 return;
2310 }
2311
d3ce09f5
SS
2312 /* Do a first pass to check for locations with no assigned
2313 conditions or conditions that fail to parse to a valid agent expression
2314 bytecode. If any of these happen, then it's no use to send conditions
2315 to the target since this location will always trigger and generate a
2316 response back to GDB. */
2317 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2318 {
2319 loc = (*loc2p);
2320 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2321 {
2322 if (modified)
2323 {
d3ce09f5
SS
2324 /* Re-parse the commands since something changed. In that
2325 case we already freed the command bytecodes (see
2326 force_breakpoint_reinsertion). We just
2327 need to parse the command to bytecodes again. */
833177a4
PA
2328 loc->cmd_bytecode
2329 = parse_cmd_to_aexpr (bl->address,
2330 loc->owner->extra_string);
d3ce09f5
SS
2331 }
2332
2333 /* If we have a NULL bytecode expression, it means something
2334 went wrong or we have a null command expression. */
2335 if (!loc->cmd_bytecode)
2336 {
2337 null_command_or_parse_error = 1;
2338 break;
2339 }
2340 }
2341 }
2342
2343 /* If anything failed, then we're not doing target-side commands,
2344 and so clean up. */
2345 if (null_command_or_parse_error)
2346 {
2347 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2348 {
2349 loc = (*loc2p);
2350 if (is_breakpoint (loc->owner)
2351 && loc->pspace->num == bl->pspace->num)
2352 {
2353 /* Only go as far as the first NULL bytecode is
2354 located. */
40fb6c5e 2355 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2356 return;
2357
833177a4 2358 loc->cmd_bytecode.reset ();
d3ce09f5
SS
2359 }
2360 }
2361 }
2362
2363 /* No NULL commands or failed bytecode generation. Build a command list
2364 for this location's address. */
2365 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2366 {
2367 loc = (*loc2p);
2368 if (loc->owner->extra_string
2369 && is_breakpoint (loc->owner)
2370 && loc->pspace->num == bl->pspace->num
2371 && loc->owner->enable_state == bp_enabled
2372 && loc->enabled)
3cde5c42
PA
2373 {
2374 /* Add the command to the vector. This will be used later
2375 to send the commands to the target. */
2376 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2377 }
d3ce09f5
SS
2378 }
2379
2380 bl->target_info.persist = 0;
2381 /* Maybe flag this location as persistent. */
2382 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2383 bl->target_info.persist = 1;
2384}
2385
833b7ab5
YQ
2386/* Return the kind of breakpoint on address *ADDR. Get the kind
2387 of breakpoint according to ADDR except single-step breakpoint.
2388 Get the kind of single-step breakpoint according to the current
2389 registers state. */
cd6c3b4f
YQ
2390
2391static int
2392breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2393{
833b7ab5
YQ
2394 if (bl->owner->type == bp_single_step)
2395 {
2396 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2397 struct regcache *regcache;
2398
00431a78 2399 regcache = get_thread_regcache (thr);
833b7ab5
YQ
2400
2401 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2402 regcache, addr);
2403 }
2404 else
2405 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
cd6c3b4f
YQ
2406}
2407
35df4500
TJB
2408/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2409 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2410 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2411 Returns 0 for success, 1 if the bp_location type is not supported or
2412 -1 for failure.
879bfdc2 2413
4a64f543
MS
2414 NOTE drow/2003-09-09: This routine could be broken down to an
2415 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2416static int
35df4500 2417insert_bp_location (struct bp_location *bl,
26bb91f3 2418 struct ui_file *tmp_error_stream,
3fbb6ffa 2419 int *disabled_breaks,
dd61ec5c
MW
2420 int *hw_breakpoint_error,
2421 int *hw_bp_error_explained_already)
879bfdc2 2422{
cc06b668 2423 gdb_exception bp_excpt;
879bfdc2 2424
b775012e 2425 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2426 return 0;
2427
35c63cd8
JB
2428 /* Note we don't initialize bl->target_info, as that wipes out
2429 the breakpoint location's shadow_contents if the breakpoint
2430 is still inserted at that location. This in turn breaks
2431 target_read_memory which depends on these buffers when
2432 a memory read is requested at the breakpoint location:
2433 Once the target_info has been wiped, we fail to see that
2434 we have a breakpoint inserted at that address and thus
2435 read the breakpoint instead of returning the data saved in
2436 the breakpoint location's shadow contents. */
0d5ed153 2437 bl->target_info.reqstd_address = bl->address;
35df4500 2438 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2439 bl->target_info.length = bl->length;
8181d85f 2440
b775012e
LM
2441 /* When working with target-side conditions, we must pass all the conditions
2442 for the same breakpoint address down to the target since GDB will not
2443 insert those locations. With a list of breakpoint conditions, the target
2444 can decide when to stop and notify GDB. */
2445
2446 if (is_breakpoint (bl->owner))
2447 {
2448 build_target_condition_list (bl);
d3ce09f5
SS
2449 build_target_command_list (bl);
2450 /* Reset the modification marker. */
b775012e
LM
2451 bl->needs_update = 0;
2452 }
2453
35df4500
TJB
2454 if (bl->loc_type == bp_loc_software_breakpoint
2455 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2456 {
35df4500 2457 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2458 {
2459 /* If the explicitly specified breakpoint type
2460 is not hardware breakpoint, check the memory map to see
2461 if the breakpoint address is in read only memory or not.
4a64f543 2462
765dc015
VP
2463 Two important cases are:
2464 - location type is not hardware breakpoint, memory
2465 is readonly. We change the type of the location to
2466 hardware breakpoint.
4a64f543
MS
2467 - location type is hardware breakpoint, memory is
2468 read-write. This means we've previously made the
2469 location hardware one, but then the memory map changed,
2470 so we undo.
765dc015 2471
4a64f543
MS
2472 When breakpoints are removed, remove_breakpoints will use
2473 location types we've just set here, the only possible
2474 problem is that memory map has changed during running
2475 program, but it's not going to work anyway with current
2476 gdb. */
765dc015 2477 struct mem_region *mr
0d5ed153 2478 = lookup_mem_region (bl->target_info.reqstd_address);
765dc015
VP
2479
2480 if (mr)
2481 {
2482 if (automatic_hardware_breakpoints)
2483 {
765dc015
VP
2484 enum bp_loc_type new_type;
2485
2486 if (mr->attrib.mode != MEM_RW)
2487 new_type = bp_loc_hardware_breakpoint;
2488 else
2489 new_type = bp_loc_software_breakpoint;
2490
35df4500 2491 if (new_type != bl->loc_type)
765dc015
VP
2492 {
2493 static int said = 0;
cc59ec59 2494
35df4500 2495 bl->loc_type = new_type;
765dc015
VP
2496 if (!said)
2497 {
3e43a32a
MS
2498 fprintf_filtered (gdb_stdout,
2499 _("Note: automatically using "
2500 "hardware breakpoints for "
2501 "read-only addresses.\n"));
765dc015
VP
2502 said = 1;
2503 }
2504 }
2505 }
35df4500 2506 else if (bl->loc_type == bp_loc_software_breakpoint
0fec99e8
PA
2507 && mr->attrib.mode != MEM_RW)
2508 {
2509 fprintf_unfiltered (tmp_error_stream,
2510 _("Cannot insert breakpoint %d.\n"
2511 "Cannot set software breakpoint "
2512 "at read-only address %s\n"),
2513 bl->owner->number,
2514 paddress (bl->gdbarch, bl->address));
2515 return 1;
2516 }
765dc015
VP
2517 }
2518 }
2519
879bfdc2
DJ
2520 /* First check to see if we have to handle an overlay. */
2521 if (overlay_debugging == ovly_off
35df4500
TJB
2522 || bl->section == NULL
2523 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2524 {
2525 /* No overlay handling: just set the breakpoint. */
a70b8144 2526 try
dd61ec5c 2527 {
0000e5cc
PA
2528 int val;
2529
dd61ec5c 2530 val = bl->owner->ops->insert_location (bl);
0000e5cc 2531 if (val)
688fca4f 2532 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2533 }
94aeb44b 2534 catch (gdb_exception &e)
dd61ec5c 2535 {
94aeb44b 2536 bp_excpt = std::move (e);
dd61ec5c 2537 }
879bfdc2
DJ
2538 }
2539 else
2540 {
4a64f543 2541 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2542 Shall we set a breakpoint at the LMA? */
2543 if (!overlay_events_enabled)
2544 {
2545 /* Yes -- overlay event support is not active,
2546 so we must try to set a breakpoint at the LMA.
2547 This will not work for a hardware breakpoint. */
35df4500 2548 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2549 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2550 bl->owner->number);
879bfdc2
DJ
2551 else
2552 {
35df4500
TJB
2553 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2554 bl->section);
879bfdc2 2555 /* Set a software (trap) breakpoint at the LMA. */
35df4500 2556 bl->overlay_target_info = bl->target_info;
0d5ed153 2557 bl->overlay_target_info.reqstd_address = addr;
0000e5cc
PA
2558
2559 /* No overlay handling: just set the breakpoint. */
a70b8144 2560 try
0000e5cc
PA
2561 {
2562 int val;
2563
579c6ad9 2564 bl->overlay_target_info.kind
cd6c3b4f
YQ
2565 = breakpoint_kind (bl, &addr);
2566 bl->overlay_target_info.placed_address = addr;
0000e5cc
PA
2567 val = target_insert_breakpoint (bl->gdbarch,
2568 &bl->overlay_target_info);
2569 if (val)
688fca4f
PA
2570 bp_excpt
2571 = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
0000e5cc 2572 }
94aeb44b 2573 catch (gdb_exception &e)
0000e5cc 2574 {
94aeb44b 2575 bp_excpt = std::move (e);
0000e5cc
PA
2576 }
2577
688fca4f 2578 if (bp_excpt.reason != 0)
99361f52 2579 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2580 "Overlay breakpoint %d "
2581 "failed: in ROM?\n",
35df4500 2582 bl->owner->number);
879bfdc2
DJ
2583 }
2584 }
2585 /* Shall we set a breakpoint at the VMA? */
35df4500 2586 if (section_is_mapped (bl->section))
879bfdc2
DJ
2587 {
2588 /* Yes. This overlay section is mapped into memory. */
a70b8144 2589 try
dd61ec5c 2590 {
0000e5cc
PA
2591 int val;
2592
dd61ec5c 2593 val = bl->owner->ops->insert_location (bl);
0000e5cc 2594 if (val)
688fca4f 2595 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2596 }
94aeb44b 2597 catch (gdb_exception &e)
dd61ec5c 2598 {
94aeb44b 2599 bp_excpt = std::move (e);
dd61ec5c 2600 }
879bfdc2
DJ
2601 }
2602 else
2603 {
2604 /* No. This breakpoint will not be inserted.
2605 No error, but do not mark the bp as 'inserted'. */
2606 return 0;
2607 }
2608 }
2609
688fca4f 2610 if (bp_excpt.reason != 0)
879bfdc2
DJ
2611 {
2612 /* Can't set the breakpoint. */
0000e5cc
PA
2613
2614 /* In some cases, we might not be able to insert a
2615 breakpoint in a shared library that has already been
2616 removed, but we have not yet processed the shlib unload
2617 event. Unfortunately, some targets that implement
076855f9
PA
2618 breakpoint insertion themselves can't tell why the
2619 breakpoint insertion failed (e.g., the remote target
2620 doesn't define error codes), so we must treat generic
2621 errors as memory errors. */
688fca4f
PA
2622 if (bp_excpt.reason == RETURN_ERROR
2623 && (bp_excpt.error == GENERIC_ERROR
2624 || bp_excpt.error == MEMORY_ERROR)
076855f9 2625 && bl->loc_type == bp_loc_software_breakpoint
08351840 2626 && (solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
2627 || shared_objfile_contains_address_p (bl->pspace,
2628 bl->address)))
879bfdc2 2629 {
4a64f543 2630 /* See also: disable_breakpoints_in_shlibs. */
35df4500 2631 bl->shlib_disabled = 1;
76727919 2632 gdb::observers::breakpoint_modified.notify (bl->owner);
3fbb6ffa
TJB
2633 if (!*disabled_breaks)
2634 {
2635 fprintf_unfiltered (tmp_error_stream,
2636 "Cannot insert breakpoint %d.\n",
2637 bl->owner->number);
2638 fprintf_unfiltered (tmp_error_stream,
2639 "Temporarily disabling shared "
2640 "library breakpoints:\n");
2641 }
2642 *disabled_breaks = 1;
879bfdc2 2643 fprintf_unfiltered (tmp_error_stream,
35df4500 2644 "breakpoint #%d\n", bl->owner->number);
0000e5cc 2645 return 0;
879bfdc2
DJ
2646 }
2647 else
879bfdc2 2648 {
35df4500 2649 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2650 {
0000e5cc 2651 *hw_breakpoint_error = 1;
688fca4f 2652 *hw_bp_error_explained_already = bp_excpt.message != NULL;
dd61ec5c
MW
2653 fprintf_unfiltered (tmp_error_stream,
2654 "Cannot insert hardware breakpoint %d%s",
688fca4f
PA
2655 bl->owner->number,
2656 bp_excpt.message ? ":" : ".\n");
2657 if (bp_excpt.message != NULL)
2658 fprintf_unfiltered (tmp_error_stream, "%s.\n",
3d6e9d23 2659 bp_excpt.what ());
879bfdc2
DJ
2660 }
2661 else
2662 {
688fca4f 2663 if (bp_excpt.message == NULL)
0000e5cc 2664 {
1ccbe998 2665 std::string message
0000e5cc
PA
2666 = memory_error_message (TARGET_XFER_E_IO,
2667 bl->gdbarch, bl->address);
0000e5cc
PA
2668
2669 fprintf_unfiltered (tmp_error_stream,
2670 "Cannot insert breakpoint %d.\n"
2671 "%s\n",
1ccbe998 2672 bl->owner->number, message.c_str ());
0000e5cc
PA
2673 }
2674 else
2675 {
2676 fprintf_unfiltered (tmp_error_stream,
2677 "Cannot insert breakpoint %d: %s\n",
2678 bl->owner->number,
3d6e9d23 2679 bp_excpt.what ());
0000e5cc 2680 }
879bfdc2 2681 }
0000e5cc 2682 return 1;
879bfdc2
DJ
2683
2684 }
2685 }
2686 else
35df4500 2687 bl->inserted = 1;
879bfdc2 2688
0000e5cc 2689 return 0;
879bfdc2
DJ
2690 }
2691
35df4500 2692 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2693 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2694 watchpoints. It's not clear that it's necessary... */
35df4500 2695 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2696 {
0000e5cc
PA
2697 int val;
2698
77b06cd7
TJB
2699 gdb_assert (bl->owner->ops != NULL
2700 && bl->owner->ops->insert_location != NULL);
2701
2702 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2703
2704 /* If trying to set a read-watchpoint, and it turns out it's not
2705 supported, try emulating one with an access watchpoint. */
35df4500 2706 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2707 {
2708 struct bp_location *loc, **loc_temp;
2709
2710 /* But don't try to insert it, if there's already another
2711 hw_access location that would be considered a duplicate
2712 of this one. */
2713 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2714 if (loc != bl
85d721b8 2715 && loc->watchpoint_type == hw_access
35df4500 2716 && watchpoint_locations_match (bl, loc))
85d721b8 2717 {
35df4500
TJB
2718 bl->duplicate = 1;
2719 bl->inserted = 1;
2720 bl->target_info = loc->target_info;
2721 bl->watchpoint_type = hw_access;
85d721b8
PA
2722 val = 0;
2723 break;
2724 }
2725
2726 if (val == 1)
2727 {
77b06cd7
TJB
2728 bl->watchpoint_type = hw_access;
2729 val = bl->owner->ops->insert_location (bl);
2730
2731 if (val)
2732 /* Back to the original value. */
2733 bl->watchpoint_type = hw_read;
85d721b8
PA
2734 }
2735 }
2736
35df4500 2737 bl->inserted = (val == 0);
879bfdc2
DJ
2738 }
2739
35df4500 2740 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2741 {
0000e5cc
PA
2742 int val;
2743
77b06cd7
TJB
2744 gdb_assert (bl->owner->ops != NULL
2745 && bl->owner->ops->insert_location != NULL);
2746
2747 val = bl->owner->ops->insert_location (bl);
2748 if (val)
2749 {
2750 bl->owner->enable_state = bp_disabled;
2751
2752 if (val == 1)
2753 warning (_("\
2754Error inserting catchpoint %d: Your system does not support this type\n\
2755of catchpoint."), bl->owner->number);
2756 else
2757 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2758 }
2759
2760 bl->inserted = (val == 0);
1640b821
DJ
2761
2762 /* We've already printed an error message if there was a problem
2763 inserting this catchpoint, and we've disabled the catchpoint,
2764 so just return success. */
2765 return 0;
879bfdc2
DJ
2766 }
2767
2768 return 0;
2769}
2770
6c95b8df
PA
2771/* This function is called when program space PSPACE is about to be
2772 deleted. It takes care of updating breakpoints to not reference
2773 PSPACE anymore. */
2774
2775void
2776breakpoint_program_space_exit (struct program_space *pspace)
2777{
2778 struct breakpoint *b, *b_temp;
876fa593 2779 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2780
2781 /* Remove any breakpoint that was set through this program space. */
2782 ALL_BREAKPOINTS_SAFE (b, b_temp)
2783 {
2784 if (b->pspace == pspace)
2785 delete_breakpoint (b);
2786 }
2787
2788 /* Breakpoints set through other program spaces could have locations
2789 bound to PSPACE as well. Remove those. */
876fa593 2790 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2791 {
2792 struct bp_location *tmp;
2793
2794 if (loc->pspace == pspace)
2795 {
2bdf28a0 2796 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2797 if (loc->owner->loc == loc)
2798 loc->owner->loc = loc->next;
2799 else
2800 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2801 if (tmp->next == loc)
2802 {
2803 tmp->next = loc->next;
2804 break;
2805 }
2806 }
2807 }
2808
2809 /* Now update the global location list to permanently delete the
2810 removed locations above. */
44702360 2811 update_global_location_list (UGLL_DONT_INSERT);
6c95b8df
PA
2812}
2813
74960c60
VP
2814/* Make sure all breakpoints are inserted in inferior.
2815 Throws exception on any error.
2816 A breakpoint that is already inserted won't be inserted
2817 again, so calling this function twice is safe. */
2818void
2819insert_breakpoints (void)
2820{
2821 struct breakpoint *bpt;
2822
2823 ALL_BREAKPOINTS (bpt)
2824 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
2825 {
2826 struct watchpoint *w = (struct watchpoint *) bpt;
2827
2828 update_watchpoint (w, 0 /* don't reparse. */);
2829 }
74960c60 2830
04086b45
PA
2831 /* Updating watchpoints creates new locations, so update the global
2832 location list. Explicitly tell ugll to insert locations and
2833 ignore breakpoints_always_inserted_mode. */
2834 update_global_location_list (UGLL_INSERT);
74960c60
VP
2835}
2836
20388dd6
YQ
2837/* Invoke CALLBACK for each of bp_location. */
2838
2839void
2840iterate_over_bp_locations (walk_bp_location_callback callback)
2841{
2842 struct bp_location *loc, **loc_tmp;
2843
2844 ALL_BP_LOCATIONS (loc, loc_tmp)
2845 {
2846 callback (loc, NULL);
2847 }
2848}
2849
b775012e
LM
2850/* This is used when we need to synch breakpoint conditions between GDB and the
2851 target. It is the case with deleting and disabling of breakpoints when using
2852 always-inserted mode. */
2853
2854static void
2855update_inserted_breakpoint_locations (void)
2856{
2857 struct bp_location *bl, **blp_tmp;
2858 int error_flag = 0;
2859 int val = 0;
2860 int disabled_breaks = 0;
2861 int hw_breakpoint_error = 0;
dd61ec5c 2862 int hw_bp_details_reported = 0;
b775012e 2863
d7e74731 2864 string_file tmp_error_stream;
b775012e
LM
2865
2866 /* Explicitly mark the warning -- this will only be printed if
2867 there was an error. */
d7e74731 2868 tmp_error_stream.puts ("Warning:\n");
b775012e 2869
5ed8105e 2870 scoped_restore_current_pspace_and_thread restore_pspace_thread;
b775012e
LM
2871
2872 ALL_BP_LOCATIONS (bl, blp_tmp)
2873 {
2874 /* We only want to update software breakpoints and hardware
2875 breakpoints. */
2876 if (!is_breakpoint (bl->owner))
2877 continue;
2878
2879 /* We only want to update locations that are already inserted
2880 and need updating. This is to avoid unwanted insertion during
2881 deletion of breakpoints. */
4daf1902 2882 if (!bl->inserted || !bl->needs_update)
b775012e
LM
2883 continue;
2884
2885 switch_to_program_space_and_thread (bl->pspace);
2886
2887 /* For targets that support global breakpoints, there's no need
2888 to select an inferior to insert breakpoint to. In fact, even
2889 if we aren't attached to any process yet, we should still
2890 insert breakpoints. */
f5656ead 2891 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
5b6d1e4f 2892 && (inferior_ptid == null_ptid || !target_has_execution))
b775012e
LM
2893 continue;
2894
d7e74731 2895 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2896 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
2897 if (val)
2898 error_flag = val;
2899 }
2900
2901 if (error_flag)
2902 {
223ffa71 2903 target_terminal::ours_for_output ();
b775012e
LM
2904 error_stream (tmp_error_stream);
2905 }
b775012e
LM
2906}
2907
c30eee59 2908/* Used when starting or continuing the program. */
c906108c 2909
74960c60
VP
2910static void
2911insert_breakpoint_locations (void)
c906108c 2912{
a5606eee 2913 struct breakpoint *bpt;
35df4500 2914 struct bp_location *bl, **blp_tmp;
eacd795a 2915 int error_flag = 0;
c906108c 2916 int val = 0;
3fbb6ffa 2917 int disabled_breaks = 0;
81d0cc19 2918 int hw_breakpoint_error = 0;
dd61ec5c 2919 int hw_bp_error_explained_already = 0;
c906108c 2920
d7e74731
PA
2921 string_file tmp_error_stream;
2922
81d0cc19
GS
2923 /* Explicitly mark the warning -- this will only be printed if
2924 there was an error. */
d7e74731 2925 tmp_error_stream.puts ("Warning:\n");
6c95b8df 2926
5ed8105e 2927 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 2928
35df4500 2929 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 2930 {
b775012e 2931 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2932 continue;
2933
4a64f543
MS
2934 /* There is no point inserting thread-specific breakpoints if
2935 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2936 has BL->OWNER always non-NULL. */
35df4500 2937 if (bl->owner->thread != -1
5d5658a1 2938 && !valid_global_thread_id (bl->owner->thread))
f365de73
AS
2939 continue;
2940
35df4500 2941 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
2942
2943 /* For targets that support global breakpoints, there's no need
2944 to select an inferior to insert breakpoint to. In fact, even
2945 if we aren't attached to any process yet, we should still
2946 insert breakpoints. */
f5656ead 2947 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
5b6d1e4f 2948 && (inferior_ptid == null_ptid || !target_has_execution))
6c95b8df
PA
2949 continue;
2950
d7e74731 2951 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2952 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 2953 if (val)
eacd795a 2954 error_flag = val;
879bfdc2 2955 }
c906108c 2956
4a64f543
MS
2957 /* If we failed to insert all locations of a watchpoint, remove
2958 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
2959 ALL_BREAKPOINTS (bpt)
2960 {
2961 int some_failed = 0;
2962 struct bp_location *loc;
2963
2964 if (!is_hardware_watchpoint (bpt))
2965 continue;
2966
d6b74ac4 2967 if (!breakpoint_enabled (bpt))
a5606eee 2968 continue;
74960c60
VP
2969
2970 if (bpt->disposition == disp_del_at_next_stop)
2971 continue;
a5606eee
VP
2972
2973 for (loc = bpt->loc; loc; loc = loc->next)
56710373 2974 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
2975 {
2976 some_failed = 1;
2977 break;
2978 }
2979 if (some_failed)
2980 {
2981 for (loc = bpt->loc; loc; loc = loc->next)
2982 if (loc->inserted)
834c0d03 2983 remove_breakpoint (loc);
a5606eee
VP
2984
2985 hw_breakpoint_error = 1;
d7e74731
PA
2986 tmp_error_stream.printf ("Could not insert "
2987 "hardware watchpoint %d.\n",
2988 bpt->number);
eacd795a 2989 error_flag = -1;
a5606eee
VP
2990 }
2991 }
2992
eacd795a 2993 if (error_flag)
81d0cc19
GS
2994 {
2995 /* If a hardware breakpoint or watchpoint was inserted, add a
2996 message about possibly exhausted resources. */
dd61ec5c 2997 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 2998 {
d7e74731 2999 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
c6510018 3000You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 3001 }
223ffa71 3002 target_terminal::ours_for_output ();
81d0cc19
GS
3003 error_stream (tmp_error_stream);
3004 }
c906108c
SS
3005}
3006
c30eee59
TJB
3007/* Used when the program stops.
3008 Returns zero if successful, or non-zero if there was a problem
3009 removing a breakpoint location. */
3010
c906108c 3011int
fba45db2 3012remove_breakpoints (void)
c906108c 3013{
35df4500 3014 struct bp_location *bl, **blp_tmp;
3a1bae8e 3015 int val = 0;
c906108c 3016
35df4500 3017 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3018 {
1e4d1764 3019 if (bl->inserted && !is_tracepoint (bl->owner))
834c0d03 3020 val |= remove_breakpoint (bl);
c5aa993b 3021 }
3a1bae8e 3022 return val;
c906108c
SS
3023}
3024
49fa26b0
PA
3025/* When a thread exits, remove breakpoints that are related to
3026 that thread. */
3027
3028static void
3029remove_threaded_breakpoints (struct thread_info *tp, int silent)
3030{
3031 struct breakpoint *b, *b_tmp;
3032
3033 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3034 {
5d5658a1 3035 if (b->thread == tp->global_num && user_breakpoint_p (b))
49fa26b0
PA
3036 {
3037 b->disposition = disp_del_at_next_stop;
3038
3039 printf_filtered (_("\
43792cf0
PA
3040Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3041 b->number, print_thread_id (tp));
49fa26b0
PA
3042
3043 /* Hide it from the user. */
3044 b->number = 0;
3045 }
3046 }
3047}
3048
f3869b1a 3049/* See breakpoint.h. */
6c95b8df 3050
f3869b1a 3051void
00431a78 3052remove_breakpoints_inf (inferior *inf)
6c95b8df 3053{
35df4500 3054 struct bp_location *bl, **blp_tmp;
6c95b8df 3055 int val;
6c95b8df 3056
35df4500 3057 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3058 {
35df4500 3059 if (bl->pspace != inf->pspace)
6c95b8df
PA
3060 continue;
3061
fc126975 3062 if (bl->inserted && !bl->target_info.persist)
6c95b8df 3063 {
834c0d03 3064 val = remove_breakpoint (bl);
6c95b8df 3065 if (val != 0)
f3869b1a 3066 return;
6c95b8df
PA
3067 }
3068 }
6c95b8df
PA
3069}
3070
e58b0e63
PA
3071static int internal_breakpoint_number = -1;
3072
84f4c1fe
PM
3073/* Set the breakpoint number of B, depending on the value of INTERNAL.
3074 If INTERNAL is non-zero, the breakpoint number will be populated
3075 from internal_breakpoint_number and that variable decremented.
e5dd4106 3076 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3077 breakpoint_count and that value incremented. Internal breakpoints
3078 do not set the internal var bpnum. */
3079static void
3080set_breakpoint_number (int internal, struct breakpoint *b)
3081{
3082 if (internal)
3083 b->number = internal_breakpoint_number--;
3084 else
3085 {
3086 set_breakpoint_count (breakpoint_count + 1);
3087 b->number = breakpoint_count;
3088 }
3089}
3090
e62c965a 3091static struct breakpoint *
a6d9a66e 3092create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3093 CORE_ADDR address, enum bptype type,
c0a91b2b 3094 const struct breakpoint_ops *ops)
e62c965a 3095{
51abb421 3096 symtab_and_line sal;
e62c965a
PP
3097 sal.pc = address;
3098 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3099 sal.pspace = current_program_space;
e62c965a 3100
51abb421 3101 breakpoint *b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3102 b->number = internal_breakpoint_number--;
3103 b->disposition = disp_donttouch;
3104
3105 return b;
3106}
3107
17450429
PP
3108static const char *const longjmp_names[] =
3109 {
3110 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3111 };
3112#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3113
3114/* Per-objfile data private to breakpoint.c. */
3115struct breakpoint_objfile_data
3116{
3117 /* Minimal symbol for "_ovly_debug_event" (if any). */
43dce439 3118 struct bound_minimal_symbol overlay_msym {};
17450429
PP
3119
3120 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
43dce439 3121 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
17450429 3122
28106bc2 3123 /* True if we have looked for longjmp probes. */
43dce439 3124 int longjmp_searched = 0;
28106bc2 3125
45461e0d
SM
3126 /* SystemTap probe points for longjmp (if any). These are non-owning
3127 references. */
3128 std::vector<probe *> longjmp_probes;
28106bc2 3129
17450429 3130 /* Minimal symbol for "std::terminate()" (if any). */
43dce439 3131 struct bound_minimal_symbol terminate_msym {};
17450429
PP
3132
3133 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
43dce439 3134 struct bound_minimal_symbol exception_msym {};
28106bc2
SDJ
3135
3136 /* True if we have looked for exception probes. */
43dce439 3137 int exception_searched = 0;
28106bc2 3138
45461e0d
SM
3139 /* SystemTap probe points for unwinding (if any). These are non-owning
3140 references. */
3141 std::vector<probe *> exception_probes;
17450429
PP
3142};
3143
51d3063a
TT
3144static const struct objfile_key<breakpoint_objfile_data>
3145 breakpoint_objfile_key;
17450429
PP
3146
3147/* Minimal symbol not found sentinel. */
3148static struct minimal_symbol msym_not_found;
3149
3150/* Returns TRUE if MSYM point to the "not found" sentinel. */
3151
3152static int
3153msym_not_found_p (const struct minimal_symbol *msym)
3154{
3155 return msym == &msym_not_found;
3156}
3157
3158/* Return per-objfile data needed by breakpoint.c.
3159 Allocate the data if necessary. */
3160
3161static struct breakpoint_objfile_data *
3162get_breakpoint_objfile_data (struct objfile *objfile)
3163{
3164 struct breakpoint_objfile_data *bp_objfile_data;
3165
51d3063a 3166 bp_objfile_data = breakpoint_objfile_key.get (objfile);
17450429 3167 if (bp_objfile_data == NULL)
51d3063a 3168 bp_objfile_data = breakpoint_objfile_key.emplace (objfile);
17450429
PP
3169 return bp_objfile_data;
3170}
3171
e62c965a 3172static void
af02033e 3173create_overlay_event_breakpoint (void)
e62c965a 3174{
af02033e 3175 const char *const func_name = "_ovly_debug_event";
e62c965a 3176
2030c079 3177 for (objfile *objfile : current_program_space->objfiles ())
69de3c6a
PP
3178 {
3179 struct breakpoint *b;
17450429
PP
3180 struct breakpoint_objfile_data *bp_objfile_data;
3181 CORE_ADDR addr;
67994074 3182 struct explicit_location explicit_loc;
69de3c6a 3183
17450429
PP
3184 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3185
3b7344d5 3186 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
17450429
PP
3187 continue;
3188
3b7344d5 3189 if (bp_objfile_data->overlay_msym.minsym == NULL)
17450429 3190 {
3b7344d5 3191 struct bound_minimal_symbol m;
17450429
PP
3192
3193 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3194 if (m.minsym == NULL)
17450429
PP
3195 {
3196 /* Avoid future lookups in this objfile. */
3b7344d5 3197 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
17450429
PP
3198 continue;
3199 }
3200 bp_objfile_data->overlay_msym = m;
3201 }
e62c965a 3202
77e371c0 3203 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
08feed99 3204 b = create_internal_breakpoint (objfile->arch (), addr,
06edf0c0
PA
3205 bp_overlay_event,
3206 &internal_breakpoint_ops);
67994074
KS
3207 initialize_explicit_location (&explicit_loc);
3208 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3209 b->location = new_explicit_location (&explicit_loc);
e62c965a 3210
69de3c6a
PP
3211 if (overlay_debugging == ovly_auto)
3212 {
3213 b->enable_state = bp_enabled;
3214 overlay_events_enabled = 1;
3215 }
3216 else
3217 {
3218 b->enable_state = bp_disabled;
3219 overlay_events_enabled = 0;
3220 }
e62c965a 3221 }
e62c965a
PP
3222}
3223
0fd8e87f 3224static void
af02033e 3225create_longjmp_master_breakpoint (void)
0fd8e87f 3226{
6c95b8df 3227 struct program_space *pspace;
6c95b8df 3228
5ed8105e 3229 scoped_restore_current_program_space restore_pspace;
0fd8e87f 3230
6c95b8df 3231 ALL_PSPACES (pspace)
af02033e 3232 {
af02033e
PP
3233 set_current_program_space (pspace);
3234
2030c079 3235 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
3236 {
3237 int i;
3238 struct gdbarch *gdbarch;
3239 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3240
08feed99 3241 gdbarch = objfile->arch ();
0fd8e87f 3242
aed57c53 3243 bp_objfile_data = get_breakpoint_objfile_data (objfile);
17450429 3244
aed57c53
TT
3245 if (!bp_objfile_data->longjmp_searched)
3246 {
3247 std::vector<probe *> ret
3248 = find_probes_in_objfile (objfile, "libc", "longjmp");
25f9533e 3249
aed57c53
TT
3250 if (!ret.empty ())
3251 {
3252 /* We are only interested in checking one element. */
3253 probe *p = ret[0];
3254
3255 if (!p->can_evaluate_arguments ())
3256 {
3257 /* We cannot use the probe interface here, because it does
3258 not know how to evaluate arguments. */
3259 ret.clear ();
3260 }
3261 }
3262 bp_objfile_data->longjmp_probes = ret;
3263 bp_objfile_data->longjmp_searched = 1;
3264 }
25f9533e 3265
aed57c53
TT
3266 if (!bp_objfile_data->longjmp_probes.empty ())
3267 {
3268 for (probe *p : bp_objfile_data->longjmp_probes)
3269 {
3270 struct breakpoint *b;
3271
3272 b = create_internal_breakpoint (gdbarch,
3273 p->get_relocated_address (objfile),
3274 bp_longjmp_master,
3275 &internal_breakpoint_ops);
3276 b->location = new_probe_location ("-probe-stap libc:longjmp");
3277 b->enable_state = bp_disabled;
3278 }
28106bc2 3279
aed57c53
TT
3280 continue;
3281 }
28106bc2 3282
aed57c53 3283 if (!gdbarch_get_longjmp_target_p (gdbarch))
28106bc2 3284 continue;
28106bc2 3285
aed57c53
TT
3286 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
3287 {
3288 struct breakpoint *b;
3289 const char *func_name;
3290 CORE_ADDR addr;
3291 struct explicit_location explicit_loc;
0fd8e87f 3292
aed57c53
TT
3293 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
3294 continue;
17450429 3295
aed57c53
TT
3296 func_name = longjmp_names[i];
3297 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
3298 {
3299 struct bound_minimal_symbol m;
3300
3301 m = lookup_minimal_symbol_text (func_name, objfile);
3302 if (m.minsym == NULL)
3303 {
3304 /* Prevent future lookups in this objfile. */
3305 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
3306 continue;
3307 }
3308 bp_objfile_data->longjmp_msym[i] = m;
3309 }
17450429 3310
aed57c53
TT
3311 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
3312 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3313 &internal_breakpoint_ops);
3314 initialize_explicit_location (&explicit_loc);
3315 explicit_loc.function_name = ASTRDUP (func_name);
3316 b->location = new_explicit_location (&explicit_loc);
3317 b->enable_state = bp_disabled;
3318 }
3319 }
af02033e 3320 }
0fd8e87f
UW
3321}
3322
af02033e 3323/* Create a master std::terminate breakpoint. */
aa7d318d 3324static void
af02033e 3325create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3326{
3327 struct program_space *pspace;
af02033e 3328 const char *const func_name = "std::terminate()";
aa7d318d 3329
5ed8105e 3330 scoped_restore_current_program_space restore_pspace;
aa7d318d
TT
3331
3332 ALL_PSPACES (pspace)
17450429 3333 {
17450429
PP
3334 CORE_ADDR addr;
3335
3336 set_current_program_space (pspace);
3337
2030c079 3338 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
3339 {
3340 struct breakpoint *b;
3341 struct breakpoint_objfile_data *bp_objfile_data;
3342 struct explicit_location explicit_loc;
aa7d318d 3343
aed57c53 3344 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3345
aed57c53
TT
3346 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
3347 continue;
17450429 3348
aed57c53
TT
3349 if (bp_objfile_data->terminate_msym.minsym == NULL)
3350 {
3351 struct bound_minimal_symbol m;
17450429 3352
aed57c53
TT
3353 m = lookup_minimal_symbol (func_name, NULL, objfile);
3354 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3355 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
3356 {
3357 /* Prevent future lookups in this objfile. */
3358 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
3359 continue;
3360 }
3361 bp_objfile_data->terminate_msym = m;
3362 }
aa7d318d 3363
aed57c53 3364 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
08feed99 3365 b = create_internal_breakpoint (objfile->arch (), addr,
aed57c53
TT
3366 bp_std_terminate_master,
3367 &internal_breakpoint_ops);
3368 initialize_explicit_location (&explicit_loc);
3369 explicit_loc.function_name = ASTRDUP (func_name);
3370 b->location = new_explicit_location (&explicit_loc);
3371 b->enable_state = bp_disabled;
3372 }
17450429 3373 }
aa7d318d
TT
3374}
3375
186c406b
TT
3376/* Install a master breakpoint on the unwinder's debug hook. */
3377
70221824 3378static void
186c406b
TT
3379create_exception_master_breakpoint (void)
3380{
17450429 3381 const char *const func_name = "_Unwind_DebugHook";
186c406b 3382
2030c079 3383 for (objfile *objfile : current_program_space->objfiles ())
186c406b 3384 {
17450429
PP
3385 struct breakpoint *b;
3386 struct gdbarch *gdbarch;
3387 struct breakpoint_objfile_data *bp_objfile_data;
3388 CORE_ADDR addr;
67994074 3389 struct explicit_location explicit_loc;
17450429
PP
3390
3391 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3392
28106bc2
SDJ
3393 /* We prefer the SystemTap probe point if it exists. */
3394 if (!bp_objfile_data->exception_searched)
3395 {
45461e0d
SM
3396 std::vector<probe *> ret
3397 = find_probes_in_objfile (objfile, "libgcc", "unwind");
25f9533e 3398
45461e0d 3399 if (!ret.empty ())
25f9533e
SDJ
3400 {
3401 /* We are only interested in checking one element. */
45461e0d 3402 probe *p = ret[0];
25f9533e 3403
935676c9 3404 if (!p->can_evaluate_arguments ())
25f9533e
SDJ
3405 {
3406 /* We cannot use the probe interface here, because it does
3407 not know how to evaluate arguments. */
45461e0d 3408 ret.clear ();
25f9533e
SDJ
3409 }
3410 }
3411 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3412 bp_objfile_data->exception_searched = 1;
3413 }
3414
45461e0d 3415 if (!bp_objfile_data->exception_probes.empty ())
28106bc2 3416 {
08feed99 3417 gdbarch = objfile->arch ();
45461e0d
SM
3418
3419 for (probe *p : bp_objfile_data->exception_probes)
28106bc2 3420 {
729662a5 3421 b = create_internal_breakpoint (gdbarch,
935676c9 3422 p->get_relocated_address (objfile),
28106bc2
SDJ
3423 bp_exception_master,
3424 &internal_breakpoint_ops);
d28cd78a 3425 b->location = new_probe_location ("-probe-stap libgcc:unwind");
28106bc2
SDJ
3426 b->enable_state = bp_disabled;
3427 }
3428
3429 continue;
3430 }
3431
3432 /* Otherwise, try the hook function. */
3433
3b7344d5 3434 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
17450429
PP
3435 continue;
3436
08feed99 3437 gdbarch = objfile->arch ();
186c406b 3438
3b7344d5 3439 if (bp_objfile_data->exception_msym.minsym == NULL)
186c406b 3440 {
3b7344d5 3441 struct bound_minimal_symbol debug_hook;
186c406b 3442
17450429 3443 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5 3444 if (debug_hook.minsym == NULL)
17450429 3445 {
3b7344d5 3446 bp_objfile_data->exception_msym.minsym = &msym_not_found;
17450429
PP
3447 continue;
3448 }
3449
3450 bp_objfile_data->exception_msym = debug_hook;
186c406b 3451 }
17450429 3452
77e371c0 3453 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
8b88a78e
PA
3454 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3455 current_top_target ());
06edf0c0
PA
3456 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3457 &internal_breakpoint_ops);
67994074
KS
3458 initialize_explicit_location (&explicit_loc);
3459 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3460 b->location = new_explicit_location (&explicit_loc);
17450429 3461 b->enable_state = bp_disabled;
186c406b 3462 }
186c406b
TT
3463}
3464
9ef9e6a6
KS
3465/* Does B have a location spec? */
3466
3467static int
3468breakpoint_event_location_empty_p (const struct breakpoint *b)
3469{
d28cd78a 3470 return b->location != NULL && event_location_empty_p (b->location.get ());
9ef9e6a6
KS
3471}
3472
c906108c 3473void
fba45db2 3474update_breakpoints_after_exec (void)
c906108c 3475{
35df4500 3476 struct breakpoint *b, *b_tmp;
876fa593 3477 struct bp_location *bploc, **bplocp_tmp;
c906108c 3478
25b22b0a
PA
3479 /* We're about to delete breakpoints from GDB's lists. If the
3480 INSERTED flag is true, GDB will try to lift the breakpoints by
3481 writing the breakpoints' "shadow contents" back into memory. The
3482 "shadow contents" are NOT valid after an exec, so GDB should not
3483 do that. Instead, the target is responsible from marking
3484 breakpoints out as soon as it detects an exec. We don't do that
3485 here instead, because there may be other attempts to delete
3486 breakpoints after detecting an exec and before reaching here. */
876fa593 3487 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3488 if (bploc->pspace == current_program_space)
3489 gdb_assert (!bploc->inserted);
c906108c 3490
35df4500 3491 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3492 {
6c95b8df
PA
3493 if (b->pspace != current_program_space)
3494 continue;
3495
4a64f543 3496 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3497 if (b->type == bp_shlib_event)
3498 {
3499 delete_breakpoint (b);
3500 continue;
3501 }
c906108c 3502
4a64f543 3503 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3504 if (b->type == bp_jit_event)
3505 {
3506 delete_breakpoint (b);
3507 continue;
3508 }
3509
1900040c 3510 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3511 as must overlay event and longjmp master breakpoints. */
3512 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3513 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3514 || b->type == bp_exception_master)
c4093a6a
JM
3515 {
3516 delete_breakpoint (b);
3517 continue;
3518 }
3519
4a64f543 3520 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3521 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3522 {
3523 delete_breakpoint (b);
3524 continue;
3525 }
3526
7c16b83e
PA
3527 /* Just like single-step breakpoints. */
3528 if (b->type == bp_single_step)
3529 {
3530 delete_breakpoint (b);
3531 continue;
3532 }
3533
611c83ae
PA
3534 /* Longjmp and longjmp-resume breakpoints are also meaningless
3535 after an exec. */
186c406b 3536 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3537 || b->type == bp_longjmp_call_dummy
186c406b 3538 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3539 {
3540 delete_breakpoint (b);
3541 continue;
3542 }
3543
ce78b96d
JB
3544 if (b->type == bp_catchpoint)
3545 {
3546 /* For now, none of the bp_catchpoint breakpoints need to
3547 do anything at this point. In the future, if some of
3548 the catchpoints need to something, we will need to add
3549 a new method, and call this method from here. */
3550 continue;
3551 }
3552
c5aa993b
JM
3553 /* bp_finish is a special case. The only way we ought to be able
3554 to see one of these when an exec() has happened, is if the user
3555 caught a vfork, and then said "finish". Ordinarily a finish just
3556 carries them to the call-site of the current callee, by setting
3557 a temporary bp there and resuming. But in this case, the finish
3558 will carry them entirely through the vfork & exec.
3559
3560 We don't want to allow a bp_finish to remain inserted now. But
3561 we can't safely delete it, 'cause finish_command has a handle to
3562 the bp on a bpstat, and will later want to delete it. There's a
3563 chance (and I've seen it happen) that if we delete the bp_finish
3564 here, that its storage will get reused by the time finish_command
3565 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3566 We really must allow finish_command to delete a bp_finish.
3567
e5dd4106 3568 In the absence of a general solution for the "how do we know
53a5351d
JM
3569 it's safe to delete something others may have handles to?"
3570 problem, what we'll do here is just uninsert the bp_finish, and
3571 let finish_command delete it.
3572
3573 (We know the bp_finish is "doomed" in the sense that it's
3574 momentary, and will be deleted as soon as finish_command sees
3575 the inferior stopped. So it doesn't matter that the bp's
3576 address is probably bogus in the new a.out, unlike e.g., the
3577 solib breakpoints.) */
c5aa993b 3578
c5aa993b
JM
3579 if (b->type == bp_finish)
3580 {
3581 continue;
3582 }
3583
3584 /* Without a symbolic address, we have little hope of the
3585 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3586 a.out. */
9ef9e6a6 3587 if (breakpoint_event_location_empty_p (b))
c5aa993b
JM
3588 {
3589 delete_breakpoint (b);
3590 continue;
3591 }
c5aa993b 3592 }
c906108c
SS
3593}
3594
3595int
d80ee84f 3596detach_breakpoints (ptid_t ptid)
c906108c 3597{
35df4500 3598 struct bp_location *bl, **blp_tmp;
3a1bae8e 3599 int val = 0;
2989a365 3600 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
6c95b8df 3601 struct inferior *inf = current_inferior ();
c5aa993b 3602
e99b03dc 3603 if (ptid.pid () == inferior_ptid.pid ())
8a3fe4f8 3604 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3605
6c95b8df 3606 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3607 inferior_ptid = ptid;
35df4500 3608 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3609 {
35df4500 3610 if (bl->pspace != inf->pspace)
6c95b8df
PA
3611 continue;
3612
bd9673a4
PW
3613 /* This function must physically remove breakpoints locations
3614 from the specified ptid, without modifying the breakpoint
3615 package's state. Locations of type bp_loc_other are only
3616 maintained at GDB side. So, there is no need to remove
3617 these bp_loc_other locations. Moreover, removing these
3618 would modify the breakpoint package's state. */
3619 if (bl->loc_type == bp_loc_other)
3620 continue;
3621
35df4500 3622 if (bl->inserted)
b2b6a7da 3623 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
c5aa993b 3624 }
d03285ec 3625
3a1bae8e 3626 return val;
c906108c
SS
3627}
3628
35df4500 3629/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3630 Note that this is used to detach breakpoints from a child fork.
3631 When we get here, the child isn't in the inferior list, and neither
3632 do we have objects to represent its address space --- we should
35df4500 3633 *not* look at bl->pspace->aspace here. */
6c95b8df 3634
c906108c 3635static int
b2b6a7da 3636remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
c906108c
SS
3637{
3638 int val;
c5aa993b 3639
35df4500
TJB
3640 /* BL is never in moribund_locations by our callers. */
3641 gdb_assert (bl->owner != NULL);
2bdf28a0 3642
74960c60
VP
3643 /* The type of none suggests that owner is actually deleted.
3644 This should not ever happen. */
35df4500 3645 gdb_assert (bl->owner->type != bp_none);
0bde7532 3646
35df4500
TJB
3647 if (bl->loc_type == bp_loc_software_breakpoint
3648 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3649 {
c02f5703
MS
3650 /* "Normal" instruction breakpoint: either the standard
3651 trap-instruction bp (bp_breakpoint), or a
3652 bp_hardware_breakpoint. */
3653
3654 /* First check to see if we have to handle an overlay. */
3655 if (overlay_debugging == ovly_off
35df4500
TJB
3656 || bl->section == NULL
3657 || !(section_is_overlay (bl->section)))
c02f5703
MS
3658 {
3659 /* No overlay handling: just remove the breakpoint. */
08351840
PA
3660
3661 /* If we're trying to uninsert a memory breakpoint that we
3662 know is set in a dynamic object that is marked
3663 shlib_disabled, then either the dynamic object was
3664 removed with "remove-symbol-file" or with
3665 "nosharedlibrary". In the former case, we don't know
3666 whether another dynamic object might have loaded over the
3667 breakpoint's address -- the user might well let us know
3668 about it next with add-symbol-file (the whole point of
d03de421 3669 add-symbol-file is letting the user manually maintain a
08351840
PA
3670 list of dynamically loaded objects). If we have the
3671 breakpoint's shadow memory, that is, this is a software
3672 breakpoint managed by GDB, check whether the breakpoint
3673 is still inserted in memory, to avoid overwriting wrong
3674 code with stale saved shadow contents. Note that HW
3675 breakpoints don't have shadow memory, as they're
3676 implemented using a mechanism that is not dependent on
3677 being able to modify the target's memory, and as such
3678 they should always be removed. */
3679 if (bl->shlib_disabled
3680 && bl->target_info.shadow_len != 0
3681 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3682 val = 0;
3683 else
73971819 3684 val = bl->owner->ops->remove_location (bl, reason);
c02f5703 3685 }
c906108c
SS
3686 else
3687 {
4a64f543 3688 /* This breakpoint is in an overlay section.
c02f5703
MS
3689 Did we set a breakpoint at the LMA? */
3690 if (!overlay_events_enabled)
3691 {
3692 /* Yes -- overlay event support is not active, so we
3693 should have set a breakpoint at the LMA. Remove it.
3694 */
c02f5703
MS
3695 /* Ignore any failures: if the LMA is in ROM, we will
3696 have already warned when we failed to insert it. */
35df4500
TJB
3697 if (bl->loc_type == bp_loc_hardware_breakpoint)
3698 target_remove_hw_breakpoint (bl->gdbarch,
3699 &bl->overlay_target_info);
c02f5703 3700 else
35df4500 3701 target_remove_breakpoint (bl->gdbarch,
73971819
PA
3702 &bl->overlay_target_info,
3703 reason);
c02f5703
MS
3704 }
3705 /* Did we set a breakpoint at the VMA?
3706 If so, we will have marked the breakpoint 'inserted'. */
35df4500 3707 if (bl->inserted)
c906108c 3708 {
c02f5703
MS
3709 /* Yes -- remove it. Previously we did not bother to
3710 remove the breakpoint if the section had been
3711 unmapped, but let's not rely on that being safe. We
3712 don't know what the overlay manager might do. */
aa67235e
UW
3713
3714 /* However, we should remove *software* breakpoints only
3715 if the section is still mapped, or else we overwrite
3716 wrong code with the saved shadow contents. */
348d480f
PA
3717 if (bl->loc_type == bp_loc_hardware_breakpoint
3718 || section_is_mapped (bl->section))
73971819 3719 val = bl->owner->ops->remove_location (bl, reason);
aa67235e
UW
3720 else
3721 val = 0;
c906108c 3722 }
c02f5703
MS
3723 else
3724 {
3725 /* No -- not inserted, so no need to remove. No error. */
3726 val = 0;
3727 }
c906108c 3728 }
879d1e6b 3729
08351840
PA
3730 /* In some cases, we might not be able to remove a breakpoint in
3731 a shared library that has already been removed, but we have
3732 not yet processed the shlib unload event. Similarly for an
3733 unloaded add-symbol-file object - the user might not yet have
3734 had the chance to remove-symbol-file it. shlib_disabled will
3735 be set if the library/object has already been removed, but
3736 the breakpoint hasn't been uninserted yet, e.g., after
3737 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3738 always-inserted mode. */
076855f9 3739 if (val
08351840
PA
3740 && (bl->loc_type == bp_loc_software_breakpoint
3741 && (bl->shlib_disabled
3742 || solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
3743 || shared_objfile_contains_address_p (bl->pspace,
3744 bl->address))))
879d1e6b
UW
3745 val = 0;
3746
c906108c
SS
3747 if (val)
3748 return val;
b2b6a7da 3749 bl->inserted = (reason == DETACH_BREAKPOINT);
c906108c 3750 }
35df4500 3751 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 3752 {
77b06cd7
TJB
3753 gdb_assert (bl->owner->ops != NULL
3754 && bl->owner->ops->remove_location != NULL);
3755
b2b6a7da 3756 bl->inserted = (reason == DETACH_BREAKPOINT);
73971819 3757 bl->owner->ops->remove_location (bl, reason);
2e70b7b9 3758
c906108c 3759 /* Failure to remove any of the hardware watchpoints comes here. */
b2b6a7da 3760 if (reason == REMOVE_BREAKPOINT && bl->inserted)
8a3fe4f8 3761 warning (_("Could not remove hardware watchpoint %d."),
35df4500 3762 bl->owner->number);
c906108c 3763 }
35df4500
TJB
3764 else if (bl->owner->type == bp_catchpoint
3765 && breakpoint_enabled (bl->owner)
3766 && !bl->duplicate)
ce78b96d 3767 {
77b06cd7
TJB
3768 gdb_assert (bl->owner->ops != NULL
3769 && bl->owner->ops->remove_location != NULL);
ce78b96d 3770
73971819 3771 val = bl->owner->ops->remove_location (bl, reason);
ce78b96d
JB
3772 if (val)
3773 return val;
77b06cd7 3774
b2b6a7da 3775 bl->inserted = (reason == DETACH_BREAKPOINT);
ce78b96d 3776 }
c906108c
SS
3777
3778 return 0;
3779}
3780
6c95b8df 3781static int
834c0d03 3782remove_breakpoint (struct bp_location *bl)
6c95b8df 3783{
35df4500
TJB
3784 /* BL is never in moribund_locations by our callers. */
3785 gdb_assert (bl->owner != NULL);
2bdf28a0 3786
6c95b8df
PA
3787 /* The type of none suggests that owner is actually deleted.
3788 This should not ever happen. */
35df4500 3789 gdb_assert (bl->owner->type != bp_none);
6c95b8df 3790
5ed8105e 3791 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 3792
35df4500 3793 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 3794
5ed8105e 3795 return remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
6c95b8df
PA
3796}
3797
c906108c
SS
3798/* Clear the "inserted" flag in all breakpoints. */
3799
25b22b0a 3800void
fba45db2 3801mark_breakpoints_out (void)
c906108c 3802{
35df4500 3803 struct bp_location *bl, **blp_tmp;
c906108c 3804
35df4500 3805 ALL_BP_LOCATIONS (bl, blp_tmp)
66c4b3e8 3806 if (bl->pspace == current_program_space)
35df4500 3807 bl->inserted = 0;
c906108c
SS
3808}
3809
53a5351d
JM
3810/* Clear the "inserted" flag in all breakpoints and delete any
3811 breakpoints which should go away between runs of the program.
c906108c
SS
3812
3813 Plus other such housekeeping that has to be done for breakpoints
3814 between runs.
3815
53a5351d
JM
3816 Note: this function gets called at the end of a run (by
3817 generic_mourn_inferior) and when a run begins (by
4a64f543 3818 init_wait_for_inferior). */
c906108c
SS
3819
3820
3821
3822void
fba45db2 3823breakpoint_init_inferior (enum inf_context context)
c906108c 3824{
35df4500 3825 struct breakpoint *b, *b_tmp;
6c95b8df 3826 struct program_space *pspace = current_program_space;
c906108c 3827
50c71eaf
PA
3828 /* If breakpoint locations are shared across processes, then there's
3829 nothing to do. */
f5656ead 3830 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
3831 return;
3832
1a853c52 3833 mark_breakpoints_out ();
075f6582 3834
35df4500 3835 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3836 {
6c95b8df
PA
3837 if (b->loc && b->loc->pspace != pspace)
3838 continue;
3839
c5aa993b
JM
3840 switch (b->type)
3841 {
3842 case bp_call_dummy:
e2e4d78b 3843 case bp_longjmp_call_dummy:
c906108c 3844
c5aa993b 3845 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
3846 cause problems when the inferior is rerun, so we better get
3847 rid of it. */
3848
3849 case bp_watchpoint_scope:
3850
3851 /* Also get rid of scope breakpoints. */
3852
3853 case bp_shlib_event:
3854
3855 /* Also remove solib event breakpoints. Their addresses may
3856 have changed since the last time we ran the program.
3857 Actually we may now be debugging against different target;
3858 and so the solib backend that installed this breakpoint may
3859 not be used in by the target. E.g.,
3860
3861 (gdb) file prog-linux
3862 (gdb) run # native linux target
3863 ...
3864 (gdb) kill
3865 (gdb) file prog-win.exe
3866 (gdb) tar rem :9999 # remote Windows gdbserver.
3867 */
c906108c 3868
f59f708a
PA
3869 case bp_step_resume:
3870
3871 /* Also remove step-resume breakpoints. */
3872
7c16b83e
PA
3873 case bp_single_step:
3874
3875 /* Also remove single-step breakpoints. */
3876
c5aa993b
JM
3877 delete_breakpoint (b);
3878 break;
c906108c 3879
c5aa993b
JM
3880 case bp_watchpoint:
3881 case bp_hardware_watchpoint:
3882 case bp_read_watchpoint:
3883 case bp_access_watchpoint:
3a5c3e22
PA
3884 {
3885 struct watchpoint *w = (struct watchpoint *) b;
c906108c 3886
3a5c3e22
PA
3887 /* Likewise for watchpoints on local expressions. */
3888 if (w->exp_valid_block != NULL)
3889 delete_breakpoint (b);
63000888 3890 else
3a5c3e22 3891 {
63000888
PA
3892 /* Get rid of existing locations, which are no longer
3893 valid. New ones will be created in
3894 update_watchpoint, when the inferior is restarted.
3895 The next update_global_location_list call will
3896 garbage collect them. */
3897 b->loc = NULL;
3898
3899 if (context == inf_starting)
3900 {
3901 /* Reset val field to force reread of starting value in
3902 insert_breakpoints. */
850645cf 3903 w->val.reset (nullptr);
4c1d86d9 3904 w->val_valid = false;
63000888
PA
3905 }
3906 }
3a5c3e22 3907 }
c5aa993b
JM
3908 break;
3909 default:
c5aa993b
JM
3910 break;
3911 }
3912 }
1c5cfe86
PA
3913
3914 /* Get rid of the moribund locations. */
1123588c 3915 for (bp_location *bl : moribund_locations)
35df4500 3916 decref_bp_location (&bl);
1123588c 3917 moribund_locations.clear ();
c906108c
SS
3918}
3919
6c95b8df
PA
3920/* These functions concern about actual breakpoints inserted in the
3921 target --- to e.g. check if we need to do decr_pc adjustment or if
3922 we need to hop over the bkpt --- so we check for address space
3923 match, not program space. */
3924
c2c6d25f
JM
3925/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3926 exists at PC. It returns ordinary_breakpoint_here if it's an
3927 ordinary breakpoint, or permanent_breakpoint_here if it's a
3928 permanent breakpoint.
3929 - When continuing from a location with an ordinary breakpoint, we
3930 actually single step once before calling insert_breakpoints.
e5dd4106 3931 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
3932 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3933 the target, to advance the PC past the breakpoint. */
c906108c 3934
c2c6d25f 3935enum breakpoint_here
accd0bcd 3936breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 3937{
35df4500 3938 struct bp_location *bl, **blp_tmp;
c2c6d25f 3939 int any_breakpoint_here = 0;
c906108c 3940
35df4500 3941 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 3942 {
35df4500
TJB
3943 if (bl->loc_type != bp_loc_software_breakpoint
3944 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
3945 continue;
3946
f1310107 3947 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500 3948 if ((breakpoint_enabled (bl->owner)
1a853c52 3949 || bl->permanent)
f1310107 3950 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
3951 {
3952 if (overlay_debugging
35df4500
TJB
3953 && section_is_overlay (bl->section)
3954 && !section_is_mapped (bl->section))
075f6582 3955 continue; /* unmapped overlay -- can't be a match */
1a853c52 3956 else if (bl->permanent)
075f6582
DJ
3957 return permanent_breakpoint_here;
3958 else
3959 any_breakpoint_here = 1;
3960 }
3961 }
c906108c 3962
f486487f 3963 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
c906108c
SS
3964}
3965
d35ae833
PA
3966/* See breakpoint.h. */
3967
3968int
accd0bcd 3969breakpoint_in_range_p (const address_space *aspace,
d35ae833
PA
3970 CORE_ADDR addr, ULONGEST len)
3971{
3972 struct bp_location *bl, **blp_tmp;
3973
3974 ALL_BP_LOCATIONS (bl, blp_tmp)
3975 {
3976 if (bl->loc_type != bp_loc_software_breakpoint
3977 && bl->loc_type != bp_loc_hardware_breakpoint)
3978 continue;
3979
3980 if ((breakpoint_enabled (bl->owner)
3981 || bl->permanent)
3982 && breakpoint_location_address_range_overlap (bl, aspace,
3983 addr, len))
3984 {
3985 if (overlay_debugging
3986 && section_is_overlay (bl->section)
3987 && !section_is_mapped (bl->section))
3988 {
3989 /* Unmapped overlay -- can't be a match. */
3990 continue;
3991 }
3992
3993 return 1;
3994 }
3995 }
3996
3997 return 0;
3998}
3999
1c5cfe86
PA
4000/* Return true if there's a moribund breakpoint at PC. */
4001
4002int
accd0bcd 4003moribund_breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
1c5cfe86 4004{
1123588c 4005 for (bp_location *loc : moribund_locations)
f1310107 4006 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
4007 return 1;
4008
4009 return 0;
4010}
c2c6d25f 4011
f7ce857f
PA
4012/* Returns non-zero iff BL is inserted at PC, in address space
4013 ASPACE. */
4014
4015static int
4016bp_location_inserted_here_p (struct bp_location *bl,
accd0bcd 4017 const address_space *aspace, CORE_ADDR pc)
f7ce857f
PA
4018{
4019 if (bl->inserted
4020 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4021 aspace, pc))
4022 {
4023 if (overlay_debugging
4024 && section_is_overlay (bl->section)
4025 && !section_is_mapped (bl->section))
4026 return 0; /* unmapped overlay -- can't be a match */
4027 else
4028 return 1;
4029 }
4030 return 0;
4031}
4032
a1fd2fa5 4033/* Returns non-zero iff there's a breakpoint inserted at PC. */
c906108c
SS
4034
4035int
accd0bcd 4036breakpoint_inserted_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 4037{
f7ce857f 4038 struct bp_location **blp, **blp_tmp = NULL;
c906108c 4039
f7ce857f 4040 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
c5aa993b 4041 {
f7ce857f
PA
4042 struct bp_location *bl = *blp;
4043
35df4500
TJB
4044 if (bl->loc_type != bp_loc_software_breakpoint
4045 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4046 continue;
4047
f7ce857f
PA
4048 if (bp_location_inserted_here_p (bl, aspace, pc))
4049 return 1;
c5aa993b 4050 }
c36b740a
VP
4051 return 0;
4052}
4053
a1fd2fa5
PA
4054/* This function returns non-zero iff there is a software breakpoint
4055 inserted at PC. */
c36b740a
VP
4056
4057int
accd0bcd 4058software_breakpoint_inserted_here_p (const address_space *aspace,
a1fd2fa5 4059 CORE_ADDR pc)
4fa8626c 4060{
f7ce857f 4061 struct bp_location **blp, **blp_tmp = NULL;
4fa8626c 4062
f7ce857f 4063 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4fa8626c 4064 {
f7ce857f
PA
4065 struct bp_location *bl = *blp;
4066
35df4500 4067 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4068 continue;
4069
f7ce857f
PA
4070 if (bp_location_inserted_here_p (bl, aspace, pc))
4071 return 1;
4fa8626c
DJ
4072 }
4073
4074 return 0;
9c02b525
PA
4075}
4076
4077/* See breakpoint.h. */
4078
4079int
accd0bcd 4080hardware_breakpoint_inserted_here_p (const address_space *aspace,
9c02b525
PA
4081 CORE_ADDR pc)
4082{
4083 struct bp_location **blp, **blp_tmp = NULL;
9c02b525
PA
4084
4085 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4086 {
4087 struct bp_location *bl = *blp;
4088
4089 if (bl->loc_type != bp_loc_hardware_breakpoint)
4090 continue;
4091
4092 if (bp_location_inserted_here_p (bl, aspace, pc))
4093 return 1;
4094 }
4095
4096 return 0;
4fa8626c
DJ
4097}
4098
9093389c 4099int
accd0bcd 4100hardware_watchpoint_inserted_in_range (const address_space *aspace,
9093389c
PA
4101 CORE_ADDR addr, ULONGEST len)
4102{
4103 struct breakpoint *bpt;
4104
4105 ALL_BREAKPOINTS (bpt)
4106 {
4107 struct bp_location *loc;
4108
4109 if (bpt->type != bp_hardware_watchpoint
4110 && bpt->type != bp_access_watchpoint)
4111 continue;
4112
4113 if (!breakpoint_enabled (bpt))
4114 continue;
4115
4116 for (loc = bpt->loc; loc; loc = loc->next)
4117 if (loc->pspace->aspace == aspace && loc->inserted)
4118 {
4119 CORE_ADDR l, h;
4120
4121 /* Check for intersection. */
768adc05
PA
4122 l = std::max<CORE_ADDR> (loc->address, addr);
4123 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
9093389c
PA
4124 if (l < h)
4125 return 1;
4126 }
4127 }
4128 return 0;
4129}
c5aa993b 4130
f2478a7e 4131/* See breakpoint.h. */
c906108c 4132
f2478a7e
SM
4133bool
4134is_catchpoint (struct breakpoint *b)
c906108c 4135{
f2478a7e 4136 return (b->type == bp_catchpoint);
c906108c
SS
4137}
4138
f431efe5
PA
4139/* Frees any storage that is part of a bpstat. Does not walk the
4140 'next' chain. */
4141
04afa70c 4142bpstats::~bpstats ()
198757a8 4143{
04afa70c
TT
4144 if (bp_location_at != NULL)
4145 decref_bp_location (&bp_location_at);
198757a8
VP
4146}
4147
c906108c
SS
4148/* Clear a bpstat so that it says we are not at any breakpoint.
4149 Also free any storage that is part of a bpstat. */
4150
4151void
fba45db2 4152bpstat_clear (bpstat *bsp)
c906108c
SS
4153{
4154 bpstat p;
4155 bpstat q;
4156
4157 if (bsp == 0)
4158 return;
4159 p = *bsp;
4160 while (p != NULL)
4161 {
4162 q = p->next;
04afa70c 4163 delete p;
c906108c
SS
4164 p = q;
4165 }
4166 *bsp = NULL;
4167}
4168
04afa70c
TT
4169bpstats::bpstats (const bpstats &other)
4170 : next (NULL),
4171 bp_location_at (other.bp_location_at),
4172 breakpoint_at (other.breakpoint_at),
4173 commands (other.commands),
04afa70c
TT
4174 print (other.print),
4175 stop (other.stop),
4176 print_it (other.print_it)
4177{
850645cf
TT
4178 if (other.old_val != NULL)
4179 old_val = release_value (value_copy (other.old_val.get ()));
04afa70c 4180 incref_bp_location (bp_location_at);
04afa70c
TT
4181}
4182
c906108c
SS
4183/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4184 is part of the bpstat is copied as well. */
4185
4186bpstat
fba45db2 4187bpstat_copy (bpstat bs)
c906108c
SS
4188{
4189 bpstat p = NULL;
4190 bpstat tmp;
4191 bpstat retval = NULL;
4192
4193 if (bs == NULL)
4194 return bs;
4195
4196 for (; bs != NULL; bs = bs->next)
4197 {
04afa70c 4198 tmp = new bpstats (*bs);
31cc81e9 4199
c906108c
SS
4200 if (p == NULL)
4201 /* This is the first thing in the chain. */
4202 retval = tmp;
4203 else
4204 p->next = tmp;
4205 p = tmp;
4206 }
4207 p->next = NULL;
4208 return retval;
4209}
4210
4a64f543 4211/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4212
4213bpstat
fba45db2 4214bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4215{
c5aa993b
JM
4216 if (bsp == NULL)
4217 return NULL;
c906108c 4218
c5aa993b
JM
4219 for (; bsp != NULL; bsp = bsp->next)
4220 {
f431efe5 4221 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4222 return bsp;
4223 }
c906108c
SS
4224 return NULL;
4225}
4226
ab04a2af
TT
4227/* See breakpoint.h. */
4228
4c462cb0 4229bool
427cd150 4230bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4231{
ab04a2af
TT
4232 for (; bsp != NULL; bsp = bsp->next)
4233 {
427cd150
TT
4234 if (bsp->breakpoint_at == NULL)
4235 {
4236 /* A moribund location can never explain a signal other than
4237 GDB_SIGNAL_TRAP. */
4238 if (sig == GDB_SIGNAL_TRAP)
4c462cb0 4239 return true;
427cd150
TT
4240 }
4241 else
47591c29
PA
4242 {
4243 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4244 sig))
4c462cb0 4245 return true;
47591c29 4246 }
ab04a2af
TT
4247 }
4248
4c462cb0 4249 return false;
ab04a2af
TT
4250}
4251
4a64f543
MS
4252/* Put in *NUM the breakpoint number of the first breakpoint we are
4253 stopped at. *BSP upon return is a bpstat which points to the
4254 remaining breakpoints stopped at (but which is not guaranteed to be
4255 good for anything but further calls to bpstat_num).
4256
8671a17b
PA
4257 Return 0 if passed a bpstat which does not indicate any breakpoints.
4258 Return -1 if stopped at a breakpoint that has been deleted since
4259 we set it.
4260 Return 1 otherwise. */
c906108c
SS
4261
4262int
8671a17b 4263bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4264{
4265 struct breakpoint *b;
4266
4267 if ((*bsp) == NULL)
4268 return 0; /* No more breakpoint values */
8671a17b 4269
4a64f543
MS
4270 /* We assume we'll never have several bpstats that correspond to a
4271 single breakpoint -- otherwise, this function might return the
4272 same number more than once and this will look ugly. */
f431efe5 4273 b = (*bsp)->breakpoint_at;
8671a17b
PA
4274 *bsp = (*bsp)->next;
4275 if (b == NULL)
4276 return -1; /* breakpoint that's been deleted since */
4277
4278 *num = b->number; /* We have its number */
4279 return 1;
c906108c
SS
4280}
4281
e93ca019 4282/* See breakpoint.h. */
c906108c
SS
4283
4284void
e93ca019 4285bpstat_clear_actions (void)
c906108c 4286{
e93ca019
JK
4287 bpstat bs;
4288
00431a78 4289 if (inferior_ptid == null_ptid)
e93ca019
JK
4290 return;
4291
00431a78 4292 thread_info *tp = inferior_thread ();
e93ca019 4293 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4294 {
d1b0a7bf 4295 bs->commands = NULL;
850645cf 4296 bs->old_val.reset (nullptr);
c906108c
SS
4297 }
4298}
4299
f3b1572e
PA
4300/* Called when a command is about to proceed the inferior. */
4301
4302static void
4303breakpoint_about_to_proceed (void)
4304{
d7e15655 4305 if (inferior_ptid != null_ptid)
f3b1572e
PA
4306 {
4307 struct thread_info *tp = inferior_thread ();
4308
4309 /* Allow inferior function calls in breakpoint commands to not
4310 interrupt the command list. When the call finishes
4311 successfully, the inferior will be standing at the same
4312 breakpoint as if nothing happened. */
16c381f0 4313 if (tp->control.in_infcall)
f3b1572e
PA
4314 return;
4315 }
4316
4317 breakpoint_proceeded = 1;
4318}
4319
abf85f46
JK
4320/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4321 or its equivalent. */
4322
4323static int
4324command_line_is_silent (struct command_line *cmd)
4325{
4f45d445 4326 return cmd && (strcmp ("silent", cmd->line) == 0);
abf85f46
JK
4327}
4328
4a64f543
MS
4329/* Execute all the commands associated with all the breakpoints at
4330 this location. Any of these commands could cause the process to
4331 proceed beyond this point, etc. We look out for such changes by
4332 checking the global "breakpoint_proceeded" after each command.
c906108c 4333
347bddb7
PA
4334 Returns true if a breakpoint command resumed the inferior. In that
4335 case, it is the caller's responsibility to recall it again with the
4336 bpstat of the current thread. */
4337
4338static int
4339bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4340{
4341 bpstat bs;
347bddb7 4342 int again = 0;
c906108c
SS
4343
4344 /* Avoid endless recursion if a `source' command is contained
4345 in bs->commands. */
4346 if (executing_breakpoint_commands)
347bddb7 4347 return 0;
c906108c 4348
81b1e71c
TT
4349 scoped_restore save_executing
4350 = make_scoped_restore (&executing_breakpoint_commands, 1);
c906108c 4351
1ac32117 4352 scoped_restore preventer = prevent_dont_repeat ();
cf6c5ffb 4353
4a64f543 4354 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4355 bs = *bsp;
4356
4357 breakpoint_proceeded = 0;
4358 for (; bs != NULL; bs = bs->next)
4359 {
d1b0a7bf 4360 struct command_line *cmd = NULL;
6c50ab1c
JB
4361
4362 /* Take ownership of the BSP's command tree, if it has one.
4363
4364 The command tree could legitimately contain commands like
4365 'step' and 'next', which call clear_proceed_status, which
4366 frees stop_bpstat's command tree. To make sure this doesn't
4367 free the tree we're executing out from under us, we need to
4368 take ownership of the tree ourselves. Since a given bpstat's
4369 commands are only executed once, we don't need to copy it; we
4370 can clear the pointer in the bpstat, and make sure we free
4371 the tree when we're done. */
d1b0a7bf 4372 counted_command_line ccmd = bs->commands;
9add0f1b 4373 bs->commands = NULL;
d1b0a7bf
TT
4374 if (ccmd != NULL)
4375 cmd = ccmd.get ();
abf85f46
JK
4376 if (command_line_is_silent (cmd))
4377 {
4378 /* The action has been already done by bpstat_stop_status. */
4379 cmd = cmd->next;
4380 }
6c50ab1c 4381
c906108c
SS
4382 while (cmd != NULL)
4383 {
4384 execute_control_command (cmd);
4385
4386 if (breakpoint_proceeded)
4387 break;
4388 else
4389 cmd = cmd->next;
4390 }
6c50ab1c 4391
c906108c 4392 if (breakpoint_proceeded)
32c1e744 4393 {
cb814510 4394 if (current_ui->async)
347bddb7
PA
4395 /* If we are in async mode, then the target might be still
4396 running, not stopped at any breakpoint, so nothing for
4397 us to do here -- just return to the event loop. */
4398 ;
32c1e744
VP
4399 else
4400 /* In sync mode, when execute_control_command returns
4401 we're already standing on the next breakpoint.
347bddb7
PA
4402 Breakpoint commands for that stop were not run, since
4403 execute_command does not run breakpoint commands --
4404 only command_line_handler does, but that one is not
4405 involved in execution of breakpoint commands. So, we
4406 can now execute breakpoint commands. It should be
4407 noted that making execute_command do bpstat actions is
4408 not an option -- in this case we'll have recursive
4409 invocation of bpstat for each breakpoint with a
4410 command, and can easily blow up GDB stack. Instead, we
4411 return true, which will trigger the caller to recall us
4412 with the new stop_bpstat. */
4413 again = 1;
4414 break;
32c1e744 4415 }
c906108c 4416 }
347bddb7
PA
4417 return again;
4418}
4419
00431a78
PA
4420/* Helper for bpstat_do_actions. Get the current thread, if there's
4421 one, is alive and has execution. Return NULL otherwise. */
4422
4423static thread_info *
4424get_bpstat_thread ()
4425{
4426 if (inferior_ptid == null_ptid || !target_has_execution)
4427 return NULL;
4428
4429 thread_info *tp = inferior_thread ();
4430 if (tp->state == THREAD_EXITED || tp->executing)
4431 return NULL;
4432 return tp;
4433}
4434
347bddb7
PA
4435void
4436bpstat_do_actions (void)
4437{
694c6bf5 4438 auto cleanup_if_error = make_scope_exit (bpstat_clear_actions);
00431a78 4439 thread_info *tp;
353d1d73 4440
347bddb7 4441 /* Do any commands attached to breakpoint we are stopped at. */
00431a78
PA
4442 while ((tp = get_bpstat_thread ()) != NULL)
4443 {
4444 /* Since in sync mode, bpstat_do_actions may resume the
4445 inferior, and only return when it is stopped at the next
4446 breakpoint, we keep doing breakpoint actions until it returns
4447 false to indicate the inferior was not resumed. */
4448 if (!bpstat_do_actions_1 (&tp->control.stop_bpstat))
4449 break;
4450 }
353d1d73 4451
694c6bf5 4452 cleanup_if_error.release ();
c906108c
SS
4453}
4454
fa4727a6
DJ
4455/* Print out the (old or new) value associated with a watchpoint. */
4456
4457static void
4458watchpoint_value_print (struct value *val, struct ui_file *stream)
4459{
4460 if (val == NULL)
7f6aba03 4461 fprintf_styled (stream, metadata_style.style (), _("<unreadable>"));
fa4727a6 4462 else
79a45b7d
TT
4463 {
4464 struct value_print_options opts;
4465 get_user_print_options (&opts);
4466 value_print (val, stream, &opts);
4467 }
fa4727a6
DJ
4468}
4469
f303dbd6
PA
4470/* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4471 debugging multiple threads. */
4472
4473void
4474maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4475{
112e8700 4476 if (uiout->is_mi_like_p ())
f303dbd6
PA
4477 return;
4478
112e8700 4479 uiout->text ("\n");
f303dbd6
PA
4480
4481 if (show_thread_that_caused_stop ())
4482 {
4483 const char *name;
4484 struct thread_info *thr = inferior_thread ();
4485
112e8700 4486 uiout->text ("Thread ");
33eca680 4487 uiout->field_string ("thread-id", print_thread_id (thr));
f303dbd6
PA
4488
4489 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4490 if (name != NULL)
4491 {
112e8700 4492 uiout->text (" \"");
33eca680 4493 uiout->field_string ("name", name);
112e8700 4494 uiout->text ("\"");
f303dbd6
PA
4495 }
4496
112e8700 4497 uiout->text (" hit ");
f303dbd6
PA
4498 }
4499}
4500
e514a9d6 4501/* Generic routine for printing messages indicating why we
4a64f543 4502 stopped. The behavior of this function depends on the value
e514a9d6
JM
4503 'print_it' in the bpstat structure. Under some circumstances we
4504 may decide not to print anything here and delegate the task to
4a64f543 4505 normal_stop(). */
e514a9d6
JM
4506
4507static enum print_stop_action
4508print_bp_stop_message (bpstat bs)
4509{
4510 switch (bs->print_it)
4511 {
4512 case print_it_noop:
4a64f543 4513 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4514 return PRINT_UNKNOWN;
4515 break;
4516
4517 case print_it_done:
4518 /* We still want to print the frame, but we already printed the
4a64f543 4519 relevant messages. */
e514a9d6
JM
4520 return PRINT_SRC_AND_LOC;
4521 break;
4522
4523 case print_it_normal:
4f8d1dc6 4524 {
f431efe5
PA
4525 struct breakpoint *b = bs->breakpoint_at;
4526
1a6a67de
TJB
4527 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4528 which has since been deleted. */
4529 if (b == NULL)
4530 return PRINT_UNKNOWN;
4531
348d480f
PA
4532 /* Normal case. Call the breakpoint's print_it method. */
4533 return b->ops->print_it (bs);
4f8d1dc6 4534 }
348d480f 4535 break;
3086aeae 4536
e514a9d6 4537 default:
8e65ff28 4538 internal_error (__FILE__, __LINE__,
e2e0b3e5 4539 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4540 break;
c906108c 4541 }
c906108c
SS
4542}
4543
edcc5120
TT
4544/* A helper function that prints a shared library stopped event. */
4545
4546static void
4547print_solib_event (int is_catchpoint)
4548{
6fb16ce6 4549 bool any_deleted = !current_program_space->deleted_solibs.empty ();
bcb430e4 4550 bool any_added = !current_program_space->added_solibs.empty ();
edcc5120
TT
4551
4552 if (!is_catchpoint)
4553 {
4554 if (any_added || any_deleted)
112e8700 4555 current_uiout->text (_("Stopped due to shared library event:\n"));
edcc5120 4556 else
112e8700
SM
4557 current_uiout->text (_("Stopped due to shared library event (no "
4558 "libraries added or removed)\n"));
edcc5120
TT
4559 }
4560
112e8700
SM
4561 if (current_uiout->is_mi_like_p ())
4562 current_uiout->field_string ("reason",
4563 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
edcc5120
TT
4564
4565 if (any_deleted)
4566 {
112e8700 4567 current_uiout->text (_(" Inferior unloaded "));
10f489e5 4568 ui_out_emit_list list_emitter (current_uiout, "removed");
6fb16ce6 4569 for (int ix = 0; ix < current_program_space->deleted_solibs.size (); ix++)
edcc5120 4570 {
6fb16ce6
SM
4571 const std::string &name = current_program_space->deleted_solibs[ix];
4572
edcc5120 4573 if (ix > 0)
112e8700
SM
4574 current_uiout->text (" ");
4575 current_uiout->field_string ("library", name);
4576 current_uiout->text ("\n");
edcc5120 4577 }
edcc5120
TT
4578 }
4579
4580 if (any_added)
4581 {
112e8700 4582 current_uiout->text (_(" Inferior loaded "));
10f489e5 4583 ui_out_emit_list list_emitter (current_uiout, "added");
bcb430e4 4584 bool first = true;
52941706 4585 for (so_list *iter : current_program_space->added_solibs)
edcc5120 4586 {
bcb430e4 4587 if (!first)
112e8700 4588 current_uiout->text (" ");
bcb430e4 4589 first = false;
112e8700
SM
4590 current_uiout->field_string ("library", iter->so_name);
4591 current_uiout->text ("\n");
edcc5120 4592 }
edcc5120
TT
4593 }
4594}
4595
e514a9d6
JM
4596/* Print a message indicating what happened. This is called from
4597 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4598 list - a list of the eventpoints that caused this stop. KIND is
4599 the target_waitkind for the stopping event. This
e514a9d6
JM
4600 routine calls the generic print routine for printing a message
4601 about reasons for stopping. This will print (for example) the
4602 "Breakpoint n," part of the output. The return value of this
4603 routine is one of:
c906108c 4604
4a64f543 4605 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4606 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4607 code to print the location. An example is
c5aa993b
JM
4608 "Breakpoint 1, " which should be followed by
4609 the location.
917317f4 4610 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4611 to also print the location part of the message.
4612 An example is the catch/throw messages, which
4a64f543 4613 don't require a location appended to the end.
917317f4 4614 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4615 further info to be printed. */
c906108c 4616
917317f4 4617enum print_stop_action
36dfb11c 4618bpstat_print (bpstat bs, int kind)
c906108c 4619{
f486487f 4620 enum print_stop_action val;
c5aa993b 4621
c906108c 4622 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4623 (Currently all watchpoints go on the bpstat whether hit or not.
4624 That probably could (should) be changed, provided care is taken
c906108c 4625 with respect to bpstat_explains_signal). */
e514a9d6
JM
4626 for (; bs; bs = bs->next)
4627 {
4628 val = print_bp_stop_message (bs);
4629 if (val == PRINT_SRC_ONLY
4630 || val == PRINT_SRC_AND_LOC
4631 || val == PRINT_NOTHING)
4632 return val;
4633 }
c906108c 4634
36dfb11c
TT
4635 /* If we had hit a shared library event breakpoint,
4636 print_bp_stop_message would print out this message. If we hit an
4637 OS-level shared library event, do the same thing. */
4638 if (kind == TARGET_WAITKIND_LOADED)
4639 {
edcc5120 4640 print_solib_event (0);
36dfb11c
TT
4641 return PRINT_NOTHING;
4642 }
4643
e514a9d6 4644 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4645 with and nothing was printed. */
917317f4 4646 return PRINT_UNKNOWN;
c906108c
SS
4647}
4648
bf469271 4649/* Evaluate the boolean expression EXP and return the result. */
c906108c 4650
bf469271
PA
4651static bool
4652breakpoint_cond_eval (expression *exp)
c906108c 4653{
278cd55f 4654 struct value *mark = value_mark ();
bf469271 4655 bool res = value_true (evaluate_expression (exp));
cc59ec59 4656
c906108c 4657 value_free_to_mark (mark);
bf469271 4658 return res;
c906108c
SS
4659}
4660
5760d0ab 4661/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c 4662
04afa70c
TT
4663bpstats::bpstats (struct bp_location *bl, bpstat **bs_link_pointer)
4664 : next (NULL),
4665 bp_location_at (bl),
4666 breakpoint_at (bl->owner),
4667 commands (NULL),
04afa70c
TT
4668 print (0),
4669 stop (0),
4670 print_it (print_it_normal)
c906108c 4671{
f431efe5 4672 incref_bp_location (bl);
04afa70c
TT
4673 **bs_link_pointer = this;
4674 *bs_link_pointer = &next;
4675}
4676
4677bpstats::bpstats ()
4678 : next (NULL),
4679 bp_location_at (NULL),
4680 breakpoint_at (NULL),
4681 commands (NULL),
04afa70c
TT
4682 print (0),
4683 stop (0),
4684 print_it (print_it_normal)
4685{
c906108c
SS
4686}
4687\f
d983da9c
DJ
4688/* The target has stopped with waitstatus WS. Check if any hardware
4689 watchpoints have triggered, according to the target. */
4690
4691int
4692watchpoints_triggered (struct target_waitstatus *ws)
4693{
57810aa7 4694 bool stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
4695 CORE_ADDR addr;
4696 struct breakpoint *b;
4697
4698 if (!stopped_by_watchpoint)
4699 {
4700 /* We were not stopped by a watchpoint. Mark all watchpoints
4701 as not triggered. */
4702 ALL_BREAKPOINTS (b)
cc60f2e3 4703 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4704 {
4705 struct watchpoint *w = (struct watchpoint *) b;
4706
4707 w->watchpoint_triggered = watch_triggered_no;
4708 }
d983da9c
DJ
4709
4710 return 0;
4711 }
4712
8b88a78e 4713 if (!target_stopped_data_address (current_top_target (), &addr))
d983da9c
DJ
4714 {
4715 /* We were stopped by a watchpoint, but we don't know where.
4716 Mark all watchpoints as unknown. */
4717 ALL_BREAKPOINTS (b)
cc60f2e3 4718 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4719 {
4720 struct watchpoint *w = (struct watchpoint *) b;
4721
4722 w->watchpoint_triggered = watch_triggered_unknown;
4723 }
d983da9c 4724
3c4797ba 4725 return 1;
d983da9c
DJ
4726 }
4727
4728 /* The target could report the data address. Mark watchpoints
4729 affected by this data address as triggered, and all others as not
4730 triggered. */
4731
4732 ALL_BREAKPOINTS (b)
cc60f2e3 4733 if (is_hardware_watchpoint (b))
d983da9c 4734 {
3a5c3e22 4735 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 4736 struct bp_location *loc;
d983da9c 4737
3a5c3e22 4738 w->watchpoint_triggered = watch_triggered_no;
a5606eee 4739 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 4740 {
3a5c3e22 4741 if (is_masked_watchpoint (b))
9c06b0b4 4742 {
3a5c3e22
PA
4743 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4744 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
4745
4746 if (newaddr == start)
4747 {
3a5c3e22 4748 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4749 break;
4750 }
4751 }
4752 /* Exact match not required. Within range is sufficient. */
8b88a78e 4753 else if (target_watchpoint_addr_within_range (current_top_target (),
9c06b0b4
TJB
4754 addr, loc->address,
4755 loc->length))
4756 {
3a5c3e22 4757 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4758 break;
4759 }
4760 }
d983da9c
DJ
4761 }
4762
4763 return 1;
4764}
4765
bf469271
PA
4766/* Possible return values for watchpoint_check. */
4767enum wp_check_result
4768 {
4769 /* The watchpoint has been deleted. */
4770 WP_DELETED = 1,
4771
4772 /* The value has changed. */
4773 WP_VALUE_CHANGED = 2,
4774
4775 /* The value has not changed. */
4776 WP_VALUE_NOT_CHANGED = 3,
4777
4778 /* Ignore this watchpoint, no matter if the value changed or not. */
4779 WP_IGNORE = 4,
4780 };
c906108c
SS
4781
4782#define BP_TEMPFLAG 1
4783#define BP_HARDWAREFLAG 2
4784
4a64f543 4785/* Evaluate watchpoint condition expression and check if its value
bf469271 4786 changed. */
553e4c11 4787
bf469271
PA
4788static wp_check_result
4789watchpoint_check (bpstat bs)
c906108c 4790{
3a5c3e22 4791 struct watchpoint *b;
c906108c
SS
4792 struct frame_info *fr;
4793 int within_current_scope;
4794
f431efe5 4795 /* BS is built from an existing struct breakpoint. */
2bdf28a0 4796 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 4797 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 4798
f6bc2008
PA
4799 /* If this is a local watchpoint, we only want to check if the
4800 watchpoint frame is in scope if the current thread is the thread
4801 that was used to create the watchpoint. */
4802 if (!watchpoint_in_thread_scope (b))
60e1c644 4803 return WP_IGNORE;
f6bc2008 4804
c906108c
SS
4805 if (b->exp_valid_block == NULL)
4806 within_current_scope = 1;
4807 else
4808 {
edb3359d
DJ
4809 struct frame_info *frame = get_current_frame ();
4810 struct gdbarch *frame_arch = get_frame_arch (frame);
4811 CORE_ADDR frame_pc = get_frame_pc (frame);
4812
c9cf6e20 4813 /* stack_frame_destroyed_p() returns a non-zero value if we're
4a64f543
MS
4814 still in the function but the stack frame has already been
4815 invalidated. Since we can't rely on the values of local
4816 variables after the stack has been destroyed, we are treating
4817 the watchpoint in that state as `not changed' without further
4818 checking. Don't mark watchpoints as changed if the current
4819 frame is in an epilogue - even if they are in some other
4820 frame, our view of the stack is likely to be wrong and
4821 frame_find_by_id could error out. */
c9cf6e20 4822 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
60e1c644 4823 return WP_IGNORE;
a0f49112 4824
101dcfbe 4825 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 4826 within_current_scope = (fr != NULL);
69fbadd5
DJ
4827
4828 /* If we've gotten confused in the unwinder, we might have
4829 returned a frame that can't describe this variable. */
edb3359d
DJ
4830 if (within_current_scope)
4831 {
4832 struct symbol *function;
4833
4834 function = get_frame_function (fr);
4835 if (function == NULL
4836 || !contained_in (b->exp_valid_block,
4837 SYMBOL_BLOCK_VALUE (function)))
4838 within_current_scope = 0;
4839 }
69fbadd5 4840
edb3359d 4841 if (within_current_scope)
c906108c
SS
4842 /* If we end up stopping, the current frame will get selected
4843 in normal_stop. So this call to select_frame won't affect
4844 the user. */
0f7d239c 4845 select_frame (fr);
c906108c 4846 }
c5aa993b 4847
c906108c
SS
4848 if (within_current_scope)
4849 {
4a64f543
MS
4850 /* We use value_{,free_to_}mark because it could be a *long*
4851 time before we return to the command level and call
4852 free_all_values. We can't call free_all_values because we
4853 might be in the middle of evaluating a function call. */
c906108c 4854
0cf6dd15 4855 int pc = 0;
9c06b0b4 4856 struct value *mark;
fa4727a6
DJ
4857 struct value *new_val;
4858
c1fc2657 4859 if (is_masked_watchpoint (b))
9c06b0b4
TJB
4860 /* Since we don't know the exact trigger address (from
4861 stopped_data_address), just tell the user we've triggered
4862 a mask watchpoint. */
4863 return WP_VALUE_CHANGED;
4864
4865 mark = value_mark ();
4d01a485 4866 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
218d2fc6 4867
bb9d5f81
PP
4868 if (b->val_bitsize != 0)
4869 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
4870
4a64f543
MS
4871 /* We use value_equal_contents instead of value_equal because
4872 the latter coerces an array to a pointer, thus comparing just
4873 the address of the array instead of its contents. This is
4874 not what we want. */
fa4727a6 4875 if ((b->val != NULL) != (new_val != NULL)
850645cf
TT
4876 || (b->val != NULL && !value_equal_contents (b->val.get (),
4877 new_val)))
c906108c 4878 {
c906108c 4879 bs->old_val = b->val;
850645cf 4880 b->val = release_value (new_val);
4c1d86d9 4881 b->val_valid = true;
850645cf
TT
4882 if (new_val != NULL)
4883 value_free_to_mark (mark);
c906108c
SS
4884 return WP_VALUE_CHANGED;
4885 }
4886 else
4887 {
60e1c644 4888 /* Nothing changed. */
c906108c 4889 value_free_to_mark (mark);
c906108c
SS
4890 return WP_VALUE_NOT_CHANGED;
4891 }
4892 }
4893 else
4894 {
4895 /* This seems like the only logical thing to do because
c5aa993b
JM
4896 if we temporarily ignored the watchpoint, then when
4897 we reenter the block in which it is valid it contains
4898 garbage (in the case of a function, it may have two
4899 garbage values, one before and one after the prologue).
4900 So we can't even detect the first assignment to it and
4901 watch after that (since the garbage may or may not equal
4902 the first value assigned). */
348d480f
PA
4903 /* We print all the stop information in
4904 breakpoint_ops->print_it, but in this case, by the time we
4905 call breakpoint_ops->print_it this bp will be deleted
4906 already. So we have no choice but print the information
4907 here. */
468afe6c 4908
0e454242 4909 SWITCH_THRU_ALL_UIS ()
468afe6c
PA
4910 {
4911 struct ui_out *uiout = current_uiout;
4912
112e8700
SM
4913 if (uiout->is_mi_like_p ())
4914 uiout->field_string
4915 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
6a831f06
PA
4916 uiout->message ("\nWatchpoint %pF deleted because the program has "
4917 "left the block in\n"
4918 "which its expression is valid.\n",
4919 signed_field ("wpnum", b->number));
468afe6c 4920 }
4ce44c66 4921
cdac0397 4922 /* Make sure the watchpoint's commands aren't executed. */
d1b0a7bf 4923 b->commands = NULL;
d0fb5eae 4924 watchpoint_del_at_next_stop (b);
c906108c
SS
4925
4926 return WP_DELETED;
4927 }
4928}
4929
18a18393 4930/* Return true if it looks like target has stopped due to hitting
348d480f
PA
4931 breakpoint location BL. This function does not check if we should
4932 stop, only if BL explains the stop. */
4933
18a18393 4934static int
6c95b8df 4935bpstat_check_location (const struct bp_location *bl,
accd0bcd 4936 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 4937 const struct target_waitstatus *ws)
18a18393
VP
4938{
4939 struct breakpoint *b = bl->owner;
4940
348d480f 4941 /* BL is from an existing breakpoint. */
2bdf28a0
JK
4942 gdb_assert (b != NULL);
4943
bd522513 4944 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
4945}
4946
3a5c3e22
PA
4947/* Determine if the watched values have actually changed, and we
4948 should stop. If not, set BS->stop to 0. */
4949
18a18393
VP
4950static void
4951bpstat_check_watchpoint (bpstat bs)
4952{
2bdf28a0 4953 const struct bp_location *bl;
3a5c3e22 4954 struct watchpoint *b;
2bdf28a0
JK
4955
4956 /* BS is built for existing struct breakpoint. */
f431efe5 4957 bl = bs->bp_location_at;
2bdf28a0 4958 gdb_assert (bl != NULL);
3a5c3e22 4959 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 4960 gdb_assert (b != NULL);
18a18393 4961
18a18393 4962 {
18a18393
VP
4963 int must_check_value = 0;
4964
c1fc2657 4965 if (b->type == bp_watchpoint)
18a18393
VP
4966 /* For a software watchpoint, we must always check the
4967 watched value. */
4968 must_check_value = 1;
4969 else if (b->watchpoint_triggered == watch_triggered_yes)
4970 /* We have a hardware watchpoint (read, write, or access)
4971 and the target earlier reported an address watched by
4972 this watchpoint. */
4973 must_check_value = 1;
4974 else if (b->watchpoint_triggered == watch_triggered_unknown
c1fc2657 4975 && b->type == bp_hardware_watchpoint)
18a18393
VP
4976 /* We were stopped by a hardware watchpoint, but the target could
4977 not report the data address. We must check the watchpoint's
4978 value. Access and read watchpoints are out of luck; without
4979 a data address, we can't figure it out. */
4980 must_check_value = 1;
3a5c3e22 4981
18a18393
VP
4982 if (must_check_value)
4983 {
bf469271
PA
4984 wp_check_result e;
4985
a70b8144 4986 try
bf469271
PA
4987 {
4988 e = watchpoint_check (bs);
4989 }
230d2906 4990 catch (const gdb_exception &ex)
bf469271
PA
4991 {
4992 exception_fprintf (gdb_stderr, ex,
4993 "Error evaluating expression "
4994 "for watchpoint %d\n",
4995 b->number);
4996
4997 SWITCH_THRU_ALL_UIS ()
4998 {
4999 printf_filtered (_("Watchpoint %d deleted.\n"),
5000 b->number);
5001 }
5002 watchpoint_del_at_next_stop (b);
5003 e = WP_DELETED;
5004 }
bf469271 5005
18a18393
VP
5006 switch (e)
5007 {
5008 case WP_DELETED:
5009 /* We've already printed what needs to be printed. */
5010 bs->print_it = print_it_done;
5011 /* Stop. */
5012 break;
60e1c644
PA
5013 case WP_IGNORE:
5014 bs->print_it = print_it_noop;
5015 bs->stop = 0;
5016 break;
18a18393 5017 case WP_VALUE_CHANGED:
c1fc2657 5018 if (b->type == bp_read_watchpoint)
18a18393 5019 {
85d721b8
PA
5020 /* There are two cases to consider here:
5021
4a64f543 5022 1. We're watching the triggered memory for reads.
85d721b8
PA
5023 In that case, trust the target, and always report
5024 the watchpoint hit to the user. Even though
5025 reads don't cause value changes, the value may
5026 have changed since the last time it was read, and
5027 since we're not trapping writes, we will not see
5028 those, and as such we should ignore our notion of
5029 old value.
5030
4a64f543 5031 2. We're watching the triggered memory for both
85d721b8
PA
5032 reads and writes. There are two ways this may
5033 happen:
5034
4a64f543 5035 2.1. This is a target that can't break on data
85d721b8
PA
5036 reads only, but can break on accesses (reads or
5037 writes), such as e.g., x86. We detect this case
5038 at the time we try to insert read watchpoints.
5039
4a64f543 5040 2.2. Otherwise, the target supports read
85d721b8
PA
5041 watchpoints, but, the user set an access or write
5042 watchpoint watching the same memory as this read
5043 watchpoint.
5044
5045 If we're watching memory writes as well as reads,
5046 ignore watchpoint hits when we find that the
5047 value hasn't changed, as reads don't cause
5048 changes. This still gives false positives when
5049 the program writes the same value to memory as
5050 what there was already in memory (we will confuse
5051 it for a read), but it's much better than
5052 nothing. */
5053
5054 int other_write_watchpoint = 0;
5055
5056 if (bl->watchpoint_type == hw_read)
5057 {
5058 struct breakpoint *other_b;
5059
5060 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5061 if (other_b->type == bp_hardware_watchpoint
5062 || other_b->type == bp_access_watchpoint)
85d721b8 5063 {
3a5c3e22
PA
5064 struct watchpoint *other_w =
5065 (struct watchpoint *) other_b;
5066
5067 if (other_w->watchpoint_triggered
5068 == watch_triggered_yes)
5069 {
5070 other_write_watchpoint = 1;
5071 break;
5072 }
85d721b8
PA
5073 }
5074 }
5075
5076 if (other_write_watchpoint
5077 || bl->watchpoint_type == hw_access)
5078 {
5079 /* We're watching the same memory for writes,
5080 and the value changed since the last time we
5081 updated it, so this trap must be for a write.
5082 Ignore it. */
5083 bs->print_it = print_it_noop;
5084 bs->stop = 0;
5085 }
18a18393
VP
5086 }
5087 break;
5088 case WP_VALUE_NOT_CHANGED:
c1fc2657
SM
5089 if (b->type == bp_hardware_watchpoint
5090 || b->type == bp_watchpoint)
18a18393
VP
5091 {
5092 /* Don't stop: write watchpoints shouldn't fire if
5093 the value hasn't changed. */
5094 bs->print_it = print_it_noop;
5095 bs->stop = 0;
5096 }
5097 /* Stop. */
5098 break;
5099 default:
5100 /* Can't happen. */
18a18393
VP
5101 break;
5102 }
5103 }
5104 else /* must_check_value == 0 */
5105 {
5106 /* This is a case where some watchpoint(s) triggered, but
5107 not at the address of this watchpoint, or else no
5108 watchpoint triggered after all. So don't print
5109 anything for this watchpoint. */
5110 bs->print_it = print_it_noop;
5111 bs->stop = 0;
5112 }
5113 }
5114}
5115
7d4df6a4
DE
5116/* For breakpoints that are currently marked as telling gdb to stop,
5117 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5118 of breakpoint referred to by BS. If we should not stop for this
5119 breakpoint, set BS->stop to 0. */
f431efe5 5120
18a18393 5121static void
00431a78 5122bpstat_check_breakpoint_conditions (bpstat bs, thread_info *thread)
18a18393 5123{
2bdf28a0
JK
5124 const struct bp_location *bl;
5125 struct breakpoint *b;
bf469271
PA
5126 /* Assume stop. */
5127 bool condition_result = true;
7d4df6a4
DE
5128 struct expression *cond;
5129
5130 gdb_assert (bs->stop);
2bdf28a0
JK
5131
5132 /* BS is built for existing struct breakpoint. */
f431efe5 5133 bl = bs->bp_location_at;
2bdf28a0 5134 gdb_assert (bl != NULL);
f431efe5 5135 b = bs->breakpoint_at;
2bdf28a0 5136 gdb_assert (b != NULL);
18a18393 5137
b775012e
LM
5138 /* Even if the target evaluated the condition on its end and notified GDB, we
5139 need to do so again since GDB does not know if we stopped due to a
5140 breakpoint or a single step breakpoint. */
5141
18a18393 5142 if (frame_id_p (b->frame_id)
edb3359d 5143 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5144 {
7d4df6a4
DE
5145 bs->stop = 0;
5146 return;
5147 }
60e1c644 5148
12ab52e9
PA
5149 /* If this is a thread/task-specific breakpoint, don't waste cpu
5150 evaluating the condition if this isn't the specified
5151 thread/task. */
00431a78
PA
5152 if ((b->thread != -1 && b->thread != thread->global_num)
5153 || (b->task != 0 && b->task != ada_get_task_number (thread)))
6c1b0f7b
DE
5154 {
5155 bs->stop = 0;
5156 return;
5157 }
5158
6dddc817
DE
5159 /* Evaluate extension language breakpoints that have a "stop" method
5160 implemented. */
5161 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
7371cf6d 5162
7d4df6a4
DE
5163 if (is_watchpoint (b))
5164 {
5165 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5166
4d01a485 5167 cond = w->cond_exp.get ();
7d4df6a4
DE
5168 }
5169 else
4d01a485 5170 cond = bl->cond.get ();
60e1c644 5171
7d4df6a4
DE
5172 if (cond && b->disposition != disp_del_at_next_stop)
5173 {
5174 int within_current_scope = 1;
5175 struct watchpoint * w;
60e1c644 5176
7d4df6a4
DE
5177 /* We use value_mark and value_free_to_mark because it could
5178 be a long time before we return to the command level and
5179 call free_all_values. We can't call free_all_values
5180 because we might be in the middle of evaluating a
5181 function call. */
5182 struct value *mark = value_mark ();
5183
5184 if (is_watchpoint (b))
5185 w = (struct watchpoint *) b;
5186 else
5187 w = NULL;
5188
5189 /* Need to select the frame, with all that implies so that
5190 the conditions will have the right context. Because we
5191 use the frame, we will not see an inlined function's
5192 variables when we arrive at a breakpoint at the start
5193 of the inlined function; the current frame will be the
5194 call site. */
5195 if (w == NULL || w->cond_exp_valid_block == NULL)
5196 select_frame (get_current_frame ());
5197 else
18a18393 5198 {
7d4df6a4
DE
5199 struct frame_info *frame;
5200
5201 /* For local watchpoint expressions, which particular
5202 instance of a local is being watched matters, so we
5203 keep track of the frame to evaluate the expression
5204 in. To evaluate the condition however, it doesn't
5205 really matter which instantiation of the function
5206 where the condition makes sense triggers the
5207 watchpoint. This allows an expression like "watch
5208 global if q > 10" set in `func', catch writes to
5209 global on all threads that call `func', or catch
5210 writes on all recursive calls of `func' by a single
5211 thread. We simply always evaluate the condition in
5212 the innermost frame that's executing where it makes
5213 sense to evaluate the condition. It seems
5214 intuitive. */
5215 frame = block_innermost_frame (w->cond_exp_valid_block);
5216 if (frame != NULL)
5217 select_frame (frame);
5218 else
5219 within_current_scope = 0;
18a18393 5220 }
7d4df6a4 5221 if (within_current_scope)
bf469271 5222 {
a70b8144 5223 try
bf469271
PA
5224 {
5225 condition_result = breakpoint_cond_eval (cond);
5226 }
230d2906 5227 catch (const gdb_exception &ex)
bf469271
PA
5228 {
5229 exception_fprintf (gdb_stderr, ex,
5230 "Error in testing breakpoint condition:\n");
5231 }
bf469271 5232 }
7d4df6a4 5233 else
18a18393 5234 {
7d4df6a4
DE
5235 warning (_("Watchpoint condition cannot be tested "
5236 "in the current scope"));
5237 /* If we failed to set the right context for this
5238 watchpoint, unconditionally report it. */
18a18393 5239 }
7d4df6a4
DE
5240 /* FIXME-someday, should give breakpoint #. */
5241 value_free_to_mark (mark);
18a18393 5242 }
7d4df6a4 5243
bf469271 5244 if (cond && !condition_result)
7d4df6a4
DE
5245 {
5246 bs->stop = 0;
5247 }
7d4df6a4
DE
5248 else if (b->ignore_count > 0)
5249 {
5250 b->ignore_count--;
5251 bs->stop = 0;
5252 /* Increase the hit count even though we don't stop. */
5253 ++(b->hit_count);
76727919 5254 gdb::observers::breakpoint_modified.notify (b);
7d4df6a4 5255 }
18a18393
VP
5256}
5257
1cf4d951
PA
5258/* Returns true if we need to track moribund locations of LOC's type
5259 on the current target. */
5260
5261static int
5262need_moribund_for_location_type (struct bp_location *loc)
5263{
5264 return ((loc->loc_type == bp_loc_software_breakpoint
5265 && !target_supports_stopped_by_sw_breakpoint ())
5266 || (loc->loc_type == bp_loc_hardware_breakpoint
5267 && !target_supports_stopped_by_hw_breakpoint ()));
5268}
5269
ddfe970e 5270/* See breakpoint.h. */
c906108c
SS
5271
5272bpstat
ddfe970e 5273build_bpstat_chain (const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 5274 const struct target_waitstatus *ws)
c906108c 5275{
ddfe970e 5276 struct breakpoint *b;
5760d0ab 5277 bpstat bs_head = NULL, *bs_link = &bs_head;
c5aa993b 5278
429374b8
JK
5279 ALL_BREAKPOINTS (b)
5280 {
1a853c52 5281 if (!breakpoint_enabled (b))
429374b8 5282 continue;
a5606eee 5283
ddfe970e 5284 for (bp_location *bl = b->loc; bl != NULL; bl = bl->next)
429374b8 5285 {
4a64f543
MS
5286 /* For hardware watchpoints, we look only at the first
5287 location. The watchpoint_check function will work on the
5288 entire expression, not the individual locations. For
5289 read watchpoints, the watchpoints_triggered function has
5290 checked all locations already. */
429374b8
JK
5291 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5292 break;
18a18393 5293
f6592439 5294 if (!bl->enabled || bl->shlib_disabled)
429374b8 5295 continue;
c5aa993b 5296
09ac7c10 5297 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5298 continue;
c5aa993b 5299
4a64f543
MS
5300 /* Come here if it's a watchpoint, or if the break address
5301 matches. */
c5aa993b 5302
ddfe970e
KS
5303 bpstat bs = new bpstats (bl, &bs_link); /* Alloc a bpstat to
5304 explain stop. */
c5aa993b 5305
f431efe5
PA
5306 /* Assume we stop. Should we find a watchpoint that is not
5307 actually triggered, or if the condition of the breakpoint
5308 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5309 bs->stop = 1;
5310 bs->print = 1;
d983da9c 5311
f431efe5
PA
5312 /* If this is a scope breakpoint, mark the associated
5313 watchpoint as triggered so that we will handle the
5314 out-of-scope event. We'll get to the watchpoint next
5315 iteration. */
d0fb5eae 5316 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5317 {
5318 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5319
5320 w->watchpoint_triggered = watch_triggered_yes;
5321 }
f431efe5
PA
5322 }
5323 }
5324
7c16b83e 5325 /* Check if a moribund breakpoint explains the stop. */
1cf4d951
PA
5326 if (!target_supports_stopped_by_sw_breakpoint ()
5327 || !target_supports_stopped_by_hw_breakpoint ())
f431efe5 5328 {
1123588c 5329 for (bp_location *loc : moribund_locations)
f431efe5 5330 {
1cf4d951
PA
5331 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5332 && need_moribund_for_location_type (loc))
5333 {
ddfe970e 5334 bpstat bs = new bpstats (loc, &bs_link);
1cf4d951
PA
5335 /* For hits of moribund locations, we should just proceed. */
5336 bs->stop = 0;
5337 bs->print = 0;
5338 bs->print_it = print_it_noop;
5339 }
f431efe5
PA
5340 }
5341 }
5342
ddfe970e
KS
5343 return bs_head;
5344}
5345
5346/* See breakpoint.h. */
5347
5348bpstat
5349bpstat_stop_status (const address_space *aspace,
00431a78 5350 CORE_ADDR bp_addr, thread_info *thread,
ddfe970e
KS
5351 const struct target_waitstatus *ws,
5352 bpstat stop_chain)
5353{
5354 struct breakpoint *b = NULL;
5355 /* First item of allocated bpstat's. */
5356 bpstat bs_head = stop_chain;
5357 bpstat bs;
5358 int need_remove_insert;
5359 int removed_any;
5360
5361 /* First, build the bpstat chain with locations that explain a
5362 target stop, while being careful to not set the target running,
5363 as that may invalidate locations (in particular watchpoint
5364 locations are recreated). Resuming will happen here with
5365 breakpoint conditions or watchpoint expressions that include
5366 inferior function calls. */
5367 if (bs_head == NULL)
5368 bs_head = build_bpstat_chain (aspace, bp_addr, ws);
5369
edcc5120
TT
5370 /* A bit of special processing for shlib breakpoints. We need to
5371 process solib loading here, so that the lists of loaded and
5372 unloaded libraries are correct before we handle "catch load" and
5373 "catch unload". */
5374 for (bs = bs_head; bs != NULL; bs = bs->next)
5375 {
5d268276 5376 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5377 {
5378 handle_solib_event ();
5379 break;
5380 }
5381 }
5382
f431efe5
PA
5383 /* Now go through the locations that caused the target to stop, and
5384 check whether we're interested in reporting this stop to higher
5385 layers, or whether we should resume the target transparently. */
5386
5387 removed_any = 0;
5388
5760d0ab 5389 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5390 {
5391 if (!bs->stop)
5392 continue;
5393
f431efe5 5394 b = bs->breakpoint_at;
348d480f
PA
5395 b->ops->check_status (bs);
5396 if (bs->stop)
28010a5d 5397 {
00431a78 5398 bpstat_check_breakpoint_conditions (bs, thread);
f431efe5 5399
429374b8
JK
5400 if (bs->stop)
5401 {
5402 ++(b->hit_count);
76727919 5403 gdb::observers::breakpoint_modified.notify (b);
c906108c 5404
4a64f543 5405 /* We will stop here. */
429374b8
JK
5406 if (b->disposition == disp_disable)
5407 {
816338b5 5408 --(b->enable_count);
1a853c52 5409 if (b->enable_count <= 0)
429374b8 5410 b->enable_state = bp_disabled;
f431efe5 5411 removed_any = 1;
429374b8
JK
5412 }
5413 if (b->silent)
5414 bs->print = 0;
5415 bs->commands = b->commands;
abf85f46 5416 if (command_line_is_silent (bs->commands
d1b0a7bf 5417 ? bs->commands.get () : NULL))
abf85f46 5418 bs->print = 0;
9d6e6e84
HZ
5419
5420 b->ops->after_condition_true (bs);
429374b8
JK
5421 }
5422
348d480f 5423 }
a9b3a50f
PA
5424
5425 /* Print nothing for this entry if we don't stop or don't
5426 print. */
5427 if (!bs->stop || !bs->print)
5428 bs->print_it = print_it_noop;
429374b8 5429 }
876fa593 5430
d983da9c
DJ
5431 /* If we aren't stopping, the value of some hardware watchpoint may
5432 not have changed, but the intermediate memory locations we are
5433 watching may have. Don't bother if we're stopping; this will get
5434 done later. */
d832cb68 5435 need_remove_insert = 0;
5760d0ab
JK
5436 if (! bpstat_causes_stop (bs_head))
5437 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5438 if (!bs->stop
f431efe5
PA
5439 && bs->breakpoint_at
5440 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5441 {
3a5c3e22
PA
5442 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5443
5444 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5445 need_remove_insert = 1;
d983da9c
DJ
5446 }
5447
d832cb68 5448 if (need_remove_insert)
44702360 5449 update_global_location_list (UGLL_MAY_INSERT);
f431efe5 5450 else if (removed_any)
44702360 5451 update_global_location_list (UGLL_DONT_INSERT);
d832cb68 5452
5760d0ab 5453 return bs_head;
c906108c 5454}
628fe4e4
JK
5455
5456static void
5457handle_jit_event (void)
5458{
5459 struct frame_info *frame;
5460 struct gdbarch *gdbarch;
5461
243a9253
PA
5462 if (debug_infrun)
5463 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5464
628fe4e4
JK
5465 /* Switch terminal for any messages produced by
5466 breakpoint_re_set. */
223ffa71 5467 target_terminal::ours_for_output ();
628fe4e4
JK
5468
5469 frame = get_current_frame ();
5470 gdbarch = get_frame_arch (frame);
5471
5472 jit_event_handler (gdbarch);
5473
223ffa71 5474 target_terminal::inferior ();
628fe4e4
JK
5475}
5476
5477/* Prepare WHAT final decision for infrun. */
5478
5479/* Decide what infrun needs to do with this bpstat. */
5480
c906108c 5481struct bpstat_what
0e30163f 5482bpstat_what (bpstat bs_head)
c906108c 5483{
c906108c 5484 struct bpstat_what retval;
0e30163f 5485 bpstat bs;
c906108c 5486
628fe4e4 5487 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5488 retval.call_dummy = STOP_NONE;
e2d0f980 5489 retval.is_longjmp = false;
628fe4e4 5490
0e30163f 5491 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5492 {
628fe4e4
JK
5493 /* Extract this BS's action. After processing each BS, we check
5494 if its action overrides all we've seem so far. */
5495 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5496 enum bptype bptype;
5497
c906108c 5498 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5499 {
5500 /* I suspect this can happen if it was a momentary
5501 breakpoint which has since been deleted. */
5502 bptype = bp_none;
5503 }
20874c92 5504 else
f431efe5 5505 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5506
5507 switch (bptype)
c906108c
SS
5508 {
5509 case bp_none:
628fe4e4 5510 break;
c906108c
SS
5511 case bp_breakpoint:
5512 case bp_hardware_breakpoint:
7c16b83e 5513 case bp_single_step:
c906108c
SS
5514 case bp_until:
5515 case bp_finish:
a9b3a50f 5516 case bp_shlib_event:
c906108c
SS
5517 if (bs->stop)
5518 {
5519 if (bs->print)
628fe4e4 5520 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5521 else
628fe4e4 5522 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5523 }
5524 else
628fe4e4 5525 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5526 break;
5527 case bp_watchpoint:
5528 case bp_hardware_watchpoint:
5529 case bp_read_watchpoint:
5530 case bp_access_watchpoint:
5531 if (bs->stop)
5532 {
5533 if (bs->print)
628fe4e4 5534 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5535 else
628fe4e4 5536 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5537 }
5538 else
628fe4e4
JK
5539 {
5540 /* There was a watchpoint, but we're not stopping.
5541 This requires no further action. */
5542 }
c906108c
SS
5543 break;
5544 case bp_longjmp:
e2e4d78b 5545 case bp_longjmp_call_dummy:
186c406b 5546 case bp_exception:
0a39bb32
PA
5547 if (bs->stop)
5548 {
5549 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5550 retval.is_longjmp = bptype != bp_exception;
5551 }
5552 else
5553 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5554 break;
5555 case bp_longjmp_resume:
186c406b 5556 case bp_exception_resume:
0a39bb32
PA
5557 if (bs->stop)
5558 {
5559 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5560 retval.is_longjmp = bptype == bp_longjmp_resume;
5561 }
5562 else
5563 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5564 break;
5565 case bp_step_resume:
5566 if (bs->stop)
628fe4e4
JK
5567 this_action = BPSTAT_WHAT_STEP_RESUME;
5568 else
c906108c 5569 {
628fe4e4
JK
5570 /* It is for the wrong frame. */
5571 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5572 }
c906108c 5573 break;
2c03e5be
PA
5574 case bp_hp_step_resume:
5575 if (bs->stop)
5576 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5577 else
5578 {
5579 /* It is for the wrong frame. */
5580 this_action = BPSTAT_WHAT_SINGLE;
5581 }
5582 break;
c906108c 5583 case bp_watchpoint_scope:
c4093a6a 5584 case bp_thread_event:
1900040c 5585 case bp_overlay_event:
0fd8e87f 5586 case bp_longjmp_master:
aa7d318d 5587 case bp_std_terminate_master:
186c406b 5588 case bp_exception_master:
628fe4e4 5589 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5590 break;
ce78b96d 5591 case bp_catchpoint:
c5aa993b
JM
5592 if (bs->stop)
5593 {
5594 if (bs->print)
628fe4e4 5595 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5596 else
628fe4e4 5597 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5598 }
5599 else
628fe4e4 5600 {
cb1e4e32
PA
5601 /* Some catchpoints are implemented with breakpoints.
5602 For those, we need to step over the breakpoint. */
5603 if (bs->bp_location_at->loc_type != bp_loc_other)
5604 this_action = BPSTAT_WHAT_SINGLE;
628fe4e4
JK
5605 }
5606 break;
628fe4e4 5607 case bp_jit_event:
628fe4e4 5608 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5609 break;
c906108c 5610 case bp_call_dummy:
53a5351d
JM
5611 /* Make sure the action is stop (silent or noisy),
5612 so infrun.c pops the dummy frame. */
aa7d318d 5613 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5614 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5615 break;
5616 case bp_std_terminate:
5617 /* Make sure the action is stop (silent or noisy),
5618 so infrun.c pops the dummy frame. */
aa7d318d 5619 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5620 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5621 break;
1042e4c0 5622 case bp_tracepoint:
7a697b8d 5623 case bp_fast_tracepoint:
0fb4aa4b 5624 case bp_static_tracepoint:
1042e4c0
SS
5625 /* Tracepoint hits should not be reported back to GDB, and
5626 if one got through somehow, it should have been filtered
5627 out already. */
5628 internal_error (__FILE__, __LINE__,
7a697b8d 5629 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5630 break;
5631 case bp_gnu_ifunc_resolver:
5632 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5633 this_action = BPSTAT_WHAT_SINGLE;
5634 break;
5635 case bp_gnu_ifunc_resolver_return:
5636 /* The breakpoint will be removed, execution will restart from the
5637 PC of the former breakpoint. */
5638 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5639 break;
e7e0cddf
SS
5640
5641 case bp_dprintf:
a11cfd87
HZ
5642 if (bs->stop)
5643 this_action = BPSTAT_WHAT_STOP_SILENT;
5644 else
5645 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5646 break;
5647
628fe4e4
JK
5648 default:
5649 internal_error (__FILE__, __LINE__,
5650 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5651 }
628fe4e4 5652
325fac50 5653 retval.main_action = std::max (retval.main_action, this_action);
c906108c 5654 }
628fe4e4 5655
243a9253
PA
5656 return retval;
5657}
628fe4e4 5658
243a9253
PA
5659void
5660bpstat_run_callbacks (bpstat bs_head)
5661{
5662 bpstat bs;
628fe4e4 5663
0e30163f
JK
5664 for (bs = bs_head; bs != NULL; bs = bs->next)
5665 {
5666 struct breakpoint *b = bs->breakpoint_at;
5667
5668 if (b == NULL)
5669 continue;
5670 switch (b->type)
5671 {
243a9253
PA
5672 case bp_jit_event:
5673 handle_jit_event ();
5674 break;
0e30163f
JK
5675 case bp_gnu_ifunc_resolver:
5676 gnu_ifunc_resolver_stop (b);
5677 break;
5678 case bp_gnu_ifunc_resolver_return:
5679 gnu_ifunc_resolver_return_stop (b);
5680 break;
5681 }
5682 }
c906108c
SS
5683}
5684
4c462cb0 5685/* See breakpoint.h. */
c906108c 5686
4c462cb0
SM
5687bool
5688bpstat_should_step ()
c906108c
SS
5689{
5690 struct breakpoint *b;
cc59ec59 5691
c906108c 5692 ALL_BREAKPOINTS (b)
717a8278 5693 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
4c462cb0
SM
5694 return true;
5695 return false;
c906108c
SS
5696}
5697
4c462cb0
SM
5698/* See breakpoint.h. */
5699
5700bool
67822962
PA
5701bpstat_causes_stop (bpstat bs)
5702{
5703 for (; bs != NULL; bs = bs->next)
5704 if (bs->stop)
4c462cb0 5705 return true;
67822962 5706
4c462cb0 5707 return false;
67822962
PA
5708}
5709
c906108c 5710\f
c5aa993b 5711
170b53b2
UW
5712/* Compute a string of spaces suitable to indent the next line
5713 so it starts at the position corresponding to the table column
5714 named COL_NAME in the currently active table of UIOUT. */
5715
5716static char *
5717wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5718{
5719 static char wrap_indent[80];
5720 int i, total_width, width, align;
c5209615 5721 const char *text;
170b53b2
UW
5722
5723 total_width = 0;
112e8700 5724 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
170b53b2
UW
5725 {
5726 if (strcmp (text, col_name) == 0)
5727 {
5728 gdb_assert (total_width < sizeof wrap_indent);
5729 memset (wrap_indent, ' ', total_width);
5730 wrap_indent[total_width] = 0;
5731
5732 return wrap_indent;
5733 }
5734
5735 total_width += width + 1;
5736 }
5737
5738 return NULL;
5739}
5740
b775012e
LM
5741/* Determine if the locations of this breakpoint will have their conditions
5742 evaluated by the target, host or a mix of both. Returns the following:
5743
5744 "host": Host evals condition.
5745 "host or target": Host or Target evals condition.
5746 "target": Target evals condition.
5747*/
5748
5749static const char *
5750bp_condition_evaluator (struct breakpoint *b)
5751{
5752 struct bp_location *bl;
5753 char host_evals = 0;
5754 char target_evals = 0;
5755
5756 if (!b)
5757 return NULL;
5758
5759 if (!is_breakpoint (b))
5760 return NULL;
5761
5762 if (gdb_evaluates_breakpoint_condition_p ()
5763 || !target_supports_evaluation_of_breakpoint_conditions ())
5764 return condition_evaluation_host;
5765
5766 for (bl = b->loc; bl; bl = bl->next)
5767 {
5768 if (bl->cond_bytecode)
5769 target_evals++;
5770 else
5771 host_evals++;
5772 }
5773
5774 if (host_evals && target_evals)
5775 return condition_evaluation_both;
5776 else if (target_evals)
5777 return condition_evaluation_target;
5778 else
5779 return condition_evaluation_host;
5780}
5781
5782/* Determine the breakpoint location's condition evaluator. This is
5783 similar to bp_condition_evaluator, but for locations. */
5784
5785static const char *
5786bp_location_condition_evaluator (struct bp_location *bl)
5787{
5788 if (bl && !is_breakpoint (bl->owner))
5789 return NULL;
5790
5791 if (gdb_evaluates_breakpoint_condition_p ()
5792 || !target_supports_evaluation_of_breakpoint_conditions ())
5793 return condition_evaluation_host;
5794
5795 if (bl && bl->cond_bytecode)
5796 return condition_evaluation_target;
5797 else
5798 return condition_evaluation_host;
5799}
5800
859825b8
JK
5801/* Print the LOC location out of the list of B->LOC locations. */
5802
170b53b2
UW
5803static void
5804print_breakpoint_location (struct breakpoint *b,
5805 struct bp_location *loc)
0d381245 5806{
79a45e25 5807 struct ui_out *uiout = current_uiout;
5ed8105e
PA
5808
5809 scoped_restore_current_program_space restore_pspace;
6c95b8df 5810
859825b8
JK
5811 if (loc != NULL && loc->shlib_disabled)
5812 loc = NULL;
5813
6c95b8df
PA
5814 if (loc != NULL)
5815 set_current_program_space (loc->pspace);
5816
56435ebe 5817 if (b->display_canonical)
d28cd78a 5818 uiout->field_string ("what", event_location_to_string (b->location.get ()));
2f202fde 5819 else if (loc && loc->symtab)
0d381245 5820 {
4a27f119
KS
5821 const struct symbol *sym = loc->symbol;
5822
0d381245
VP
5823 if (sym)
5824 {
112e8700 5825 uiout->text ("in ");
987012b8 5826 uiout->field_string ("func", sym->print_name (),
e43b10e1 5827 function_name_style.style ());
112e8700
SM
5828 uiout->text (" ");
5829 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
5830 uiout->text ("at ");
0d381245 5831 }
112e8700 5832 uiout->field_string ("file",
cbe56571 5833 symtab_to_filename_for_display (loc->symtab),
e43b10e1 5834 file_name_style.style ());
112e8700 5835 uiout->text (":");
05cba821 5836
112e8700
SM
5837 if (uiout->is_mi_like_p ())
5838 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
0d381245 5839
381befee 5840 uiout->field_signed ("line", loc->line_number);
0d381245 5841 }
859825b8 5842 else if (loc)
0d381245 5843 {
d7e74731 5844 string_file stb;
170b53b2 5845
d7e74731 5846 print_address_symbolic (loc->gdbarch, loc->address, &stb,
22e722e1 5847 demangle, "");
112e8700 5848 uiout->field_stream ("at", stb);
0d381245 5849 }
859825b8 5850 else
f00aae0f 5851 {
d28cd78a
TT
5852 uiout->field_string ("pending",
5853 event_location_to_string (b->location.get ()));
f00aae0f
KS
5854 /* If extra_string is available, it could be holding a condition
5855 or dprintf arguments. In either case, make sure it is printed,
5856 too, but only for non-MI streams. */
112e8700 5857 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
f00aae0f
KS
5858 {
5859 if (b->type == bp_dprintf)
112e8700 5860 uiout->text (",");
f00aae0f 5861 else
112e8700
SM
5862 uiout->text (" ");
5863 uiout->text (b->extra_string);
f00aae0f
KS
5864 }
5865 }
6c95b8df 5866
b775012e
LM
5867 if (loc && is_breakpoint (b)
5868 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5869 && bp_condition_evaluator (b) == condition_evaluation_both)
5870 {
112e8700
SM
5871 uiout->text (" (");
5872 uiout->field_string ("evaluated-by",
b775012e 5873 bp_location_condition_evaluator (loc));
112e8700 5874 uiout->text (")");
b775012e 5875 }
0d381245
VP
5876}
5877
269b11a2
PA
5878static const char *
5879bptype_string (enum bptype type)
c906108c 5880{
c4093a6a
JM
5881 struct ep_type_description
5882 {
5883 enum bptype type;
a121b7c1 5884 const char *description;
c4093a6a
JM
5885 };
5886 static struct ep_type_description bptypes[] =
c906108c 5887 {
c5aa993b
JM
5888 {bp_none, "?deleted?"},
5889 {bp_breakpoint, "breakpoint"},
c906108c 5890 {bp_hardware_breakpoint, "hw breakpoint"},
7c16b83e 5891 {bp_single_step, "sw single-step"},
c5aa993b
JM
5892 {bp_until, "until"},
5893 {bp_finish, "finish"},
5894 {bp_watchpoint, "watchpoint"},
c906108c 5895 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
5896 {bp_read_watchpoint, "read watchpoint"},
5897 {bp_access_watchpoint, "acc watchpoint"},
5898 {bp_longjmp, "longjmp"},
5899 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 5900 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
5901 {bp_exception, "exception"},
5902 {bp_exception_resume, "exception resume"},
c5aa993b 5903 {bp_step_resume, "step resume"},
2c03e5be 5904 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
5905 {bp_watchpoint_scope, "watchpoint scope"},
5906 {bp_call_dummy, "call dummy"},
aa7d318d 5907 {bp_std_terminate, "std::terminate"},
c5aa993b 5908 {bp_shlib_event, "shlib events"},
c4093a6a 5909 {bp_thread_event, "thread events"},
1900040c 5910 {bp_overlay_event, "overlay events"},
0fd8e87f 5911 {bp_longjmp_master, "longjmp master"},
aa7d318d 5912 {bp_std_terminate_master, "std::terminate master"},
186c406b 5913 {bp_exception_master, "exception master"},
ce78b96d 5914 {bp_catchpoint, "catchpoint"},
1042e4c0 5915 {bp_tracepoint, "tracepoint"},
7a697b8d 5916 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 5917 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 5918 {bp_dprintf, "dprintf"},
4efc6507 5919 {bp_jit_event, "jit events"},
0e30163f
JK
5920 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
5921 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 5922 };
269b11a2
PA
5923
5924 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
5925 || ((int) type != bptypes[(int) type].type))
5926 internal_error (__FILE__, __LINE__,
5927 _("bptypes table does not describe type #%d."),
5928 (int) type);
5929
5930 return bptypes[(int) type].description;
5931}
5932
998580f1
MK
5933/* For MI, output a field named 'thread-groups' with a list as the value.
5934 For CLI, prefix the list with the string 'inf'. */
5935
5936static void
5937output_thread_groups (struct ui_out *uiout,
5938 const char *field_name,
5c632425 5939 const std::vector<int> &inf_nums,
998580f1
MK
5940 int mi_only)
5941{
112e8700 5942 int is_mi = uiout->is_mi_like_p ();
998580f1
MK
5943
5944 /* For backward compatibility, don't display inferiors in CLI unless
5945 there are several. Always display them for MI. */
5946 if (!is_mi && mi_only)
5947 return;
5948
10f489e5 5949 ui_out_emit_list list_emitter (uiout, field_name);
752eb8b4 5950
5c632425 5951 for (size_t i = 0; i < inf_nums.size (); i++)
998580f1
MK
5952 {
5953 if (is_mi)
5954 {
5955 char mi_group[10];
5956
5c632425 5957 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf_nums[i]);
112e8700 5958 uiout->field_string (NULL, mi_group);
998580f1
MK
5959 }
5960 else
5961 {
5962 if (i == 0)
112e8700 5963 uiout->text (" inf ");
998580f1 5964 else
112e8700 5965 uiout->text (", ");
998580f1 5966
5c632425 5967 uiout->text (plongest (inf_nums[i]));
998580f1
MK
5968 }
5969 }
998580f1
MK
5970}
5971
a38118e5
PA
5972/* Print B to gdb_stdout. If RAW_LOC, print raw breakpoint locations
5973 instead of going via breakpoint_ops::print_one. This makes "maint
5974 info breakpoints" show the software breakpoint locations of
5975 catchpoints, which are considered internal implementation
5976 detail. */
269b11a2
PA
5977
5978static void
5979print_one_breakpoint_location (struct breakpoint *b,
5980 struct bp_location *loc,
5981 int loc_number,
5982 struct bp_location **last_loc,
a38118e5 5983 int allflag, bool raw_loc)
269b11a2
PA
5984{
5985 struct command_line *l;
c2c6d25f 5986 static char bpenables[] = "nynny";
c906108c 5987
79a45e25 5988 struct ui_out *uiout = current_uiout;
0d381245
VP
5989 int header_of_multiple = 0;
5990 int part_of_multiple = (loc != NULL);
79a45b7d
TT
5991 struct value_print_options opts;
5992
5993 get_user_print_options (&opts);
0d381245
VP
5994
5995 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
5996 /* See comment in print_one_breakpoint concerning treatment of
5997 breakpoints with single disabled location. */
0d381245
VP
5998 if (loc == NULL
5999 && (b->loc != NULL
6000 && (b->loc->next != NULL || !b->loc->enabled)))
6001 header_of_multiple = 1;
6002 if (loc == NULL)
6003 loc = b->loc;
6004
c4093a6a
JM
6005 annotate_record ();
6006
6007 /* 1 */
6008 annotate_field (0);
0d381245 6009 if (part_of_multiple)
528e1572 6010 uiout->field_fmt ("number", "%d.%d", b->number, loc_number);
0d381245 6011 else
381befee 6012 uiout->field_signed ("number", b->number);
c4093a6a
JM
6013
6014 /* 2 */
6015 annotate_field (1);
0d381245 6016 if (part_of_multiple)
112e8700 6017 uiout->field_skip ("type");
269b11a2 6018 else
112e8700 6019 uiout->field_string ("type", bptype_string (b->type));
c4093a6a
JM
6020
6021 /* 3 */
6022 annotate_field (2);
0d381245 6023 if (part_of_multiple)
112e8700 6024 uiout->field_skip ("disp");
0d381245 6025 else
112e8700 6026 uiout->field_string ("disp", bpdisp_text (b->disposition));
0d381245 6027
c4093a6a
JM
6028 /* 4 */
6029 annotate_field (3);
0d381245 6030 if (part_of_multiple)
112e8700 6031 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
0d381245 6032 else
112e8700 6033 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
0d381245 6034
c4093a6a 6035 /* 5 and 6 */
a38118e5 6036 if (!raw_loc && b->ops != NULL && b->ops->print_one != NULL)
b58a68fe 6037 b->ops->print_one (b, last_loc);
3086aeae 6038 else
a38118e5
PA
6039 {
6040 if (is_watchpoint (b))
3a5c3e22
PA
6041 {
6042 struct watchpoint *w = (struct watchpoint *) b;
6043
6044 /* Field 4, the address, is omitted (which makes the columns
6045 not line up too nicely with the headers, but the effect
6046 is relatively readable). */
6047 if (opts.addressprint)
112e8700 6048 uiout->field_skip ("addr");
3a5c3e22 6049 annotate_field (5);
112e8700 6050 uiout->field_string ("what", w->exp_string);
3a5c3e22 6051 }
f06f1252
TT
6052 else if (!is_catchpoint (b) || is_exception_catchpoint (b)
6053 || is_ada_exception_catchpoint (b))
a38118e5
PA
6054 {
6055 if (opts.addressprint)
6056 {
6057 annotate_field (4);
6058 if (header_of_multiple)
7f6aba03
TT
6059 uiout->field_string ("addr", "<MULTIPLE>",
6060 metadata_style.style ());
a38118e5 6061 else if (b->loc == NULL || loc->shlib_disabled)
7f6aba03
TT
6062 uiout->field_string ("addr", "<PENDING>",
6063 metadata_style.style ());
a38118e5
PA
6064 else
6065 uiout->field_core_addr ("addr",
6066 loc->gdbarch, loc->address);
6067 }
6068 annotate_field (5);
6069 if (!header_of_multiple)
6070 print_breakpoint_location (b, loc);
6071 if (b->loc)
6072 *last_loc = b->loc;
6073 }
6074 }
6c95b8df 6075
998580f1 6076 if (loc != NULL && !header_of_multiple)
6c95b8df 6077 {
5c632425 6078 std::vector<int> inf_nums;
998580f1 6079 int mi_only = 1;
6c95b8df 6080
08036331 6081 for (inferior *inf : all_inferiors ())
6c95b8df
PA
6082 {
6083 if (inf->pspace == loc->pspace)
5c632425 6084 inf_nums.push_back (inf->num);
6c95b8df 6085 }
998580f1
MK
6086
6087 /* For backward compatibility, don't display inferiors in CLI unless
6088 there are several. Always display for MI. */
6089 if (allflag
6090 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6091 && (number_of_program_spaces () > 1
6092 || number_of_inferiors () > 1)
6093 /* LOC is for existing B, it cannot be in
6094 moribund_locations and thus having NULL OWNER. */
6095 && loc->owner->type != bp_catchpoint))
6096 mi_only = 0;
5c632425 6097 output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
6c95b8df
PA
6098 }
6099
4a306c9a 6100 if (!part_of_multiple)
c4093a6a 6101 {
4a306c9a
JB
6102 if (b->thread != -1)
6103 {
6104 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6105 "stop only in" line a little further down. */
112e8700 6106 uiout->text (" thread ");
381befee 6107 uiout->field_signed ("thread", b->thread);
4a306c9a
JB
6108 }
6109 else if (b->task != 0)
6110 {
112e8700 6111 uiout->text (" task ");
381befee 6112 uiout->field_signed ("task", b->task);
4a306c9a 6113 }
c4093a6a 6114 }
f1310107 6115
112e8700 6116 uiout->text ("\n");
f1310107 6117
348d480f 6118 if (!part_of_multiple)
f1310107
TJB
6119 b->ops->print_one_detail (b, uiout);
6120
0d381245 6121 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6122 {
6123 annotate_field (6);
112e8700 6124 uiout->text ("\tstop only in stack frame at ");
e5dd4106 6125 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6126 the frame ID. */
112e8700 6127 uiout->field_core_addr ("frame",
5af949e3 6128 b->gdbarch, b->frame_id.stack_addr);
112e8700 6129 uiout->text ("\n");
c4093a6a
JM
6130 }
6131
28010a5d 6132 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6133 {
6134 annotate_field (7);
d77f58be 6135 if (is_tracepoint (b))
112e8700 6136 uiout->text ("\ttrace only if ");
1042e4c0 6137 else
112e8700
SM
6138 uiout->text ("\tstop only if ");
6139 uiout->field_string ("cond", b->cond_string);
b775012e
LM
6140
6141 /* Print whether the target is doing the breakpoint's condition
6142 evaluation. If GDB is doing the evaluation, don't print anything. */
6143 if (is_breakpoint (b)
6144 && breakpoint_condition_evaluation_mode ()
6145 == condition_evaluation_target)
6146 {
6a831f06
PA
6147 uiout->message (" (%pF evals)",
6148 string_field ("evaluated-by",
6149 bp_condition_evaluator (b)));
b775012e 6150 }
112e8700 6151 uiout->text ("\n");
0101ce28
JJ
6152 }
6153
0d381245 6154 if (!part_of_multiple && b->thread != -1)
c4093a6a 6155 {
4a64f543 6156 /* FIXME should make an annotation for this. */
112e8700
SM
6157 uiout->text ("\tstop only in thread ");
6158 if (uiout->is_mi_like_p ())
381befee 6159 uiout->field_signed ("thread", b->thread);
5d5658a1
PA
6160 else
6161 {
6162 struct thread_info *thr = find_thread_global_id (b->thread);
6163
112e8700 6164 uiout->field_string ("thread", print_thread_id (thr));
5d5658a1 6165 }
112e8700 6166 uiout->text ("\n");
c4093a6a
JM
6167 }
6168
556ec64d
YQ
6169 if (!part_of_multiple)
6170 {
6171 if (b->hit_count)
31f56a27
YQ
6172 {
6173 /* FIXME should make an annotation for this. */
6174 if (is_catchpoint (b))
112e8700 6175 uiout->text ("\tcatchpoint");
31f56a27 6176 else if (is_tracepoint (b))
112e8700 6177 uiout->text ("\ttracepoint");
31f56a27 6178 else
112e8700
SM
6179 uiout->text ("\tbreakpoint");
6180 uiout->text (" already hit ");
381befee 6181 uiout->field_signed ("times", b->hit_count);
31f56a27 6182 if (b->hit_count == 1)
112e8700 6183 uiout->text (" time\n");
31f56a27 6184 else
112e8700 6185 uiout->text (" times\n");
31f56a27 6186 }
556ec64d
YQ
6187 else
6188 {
31f56a27 6189 /* Output the count also if it is zero, but only if this is mi. */
112e8700 6190 if (uiout->is_mi_like_p ())
381befee 6191 uiout->field_signed ("times", b->hit_count);
556ec64d
YQ
6192 }
6193 }
8b93c638 6194
0d381245 6195 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6196 {
6197 annotate_field (8);
6a831f06
PA
6198 uiout->message ("\tignore next %pF hits\n",
6199 signed_field ("ignore", b->ignore_count));
c4093a6a 6200 }
059fb39f 6201
816338b5
SS
6202 /* Note that an enable count of 1 corresponds to "enable once"
6203 behavior, which is reported by the combination of enablement and
6204 disposition, so we don't need to mention it here. */
6205 if (!part_of_multiple && b->enable_count > 1)
6206 {
6207 annotate_field (8);
112e8700 6208 uiout->text ("\tdisable after ");
816338b5
SS
6209 /* Tweak the wording to clarify that ignore and enable counts
6210 are distinct, and have additive effect. */
6211 if (b->ignore_count)
112e8700 6212 uiout->text ("additional ");
816338b5 6213 else
112e8700 6214 uiout->text ("next ");
381befee 6215 uiout->field_signed ("enable", b->enable_count);
112e8700 6216 uiout->text (" hits\n");
816338b5
SS
6217 }
6218
f196051f
SS
6219 if (!part_of_multiple && is_tracepoint (b))
6220 {
6221 struct tracepoint *tp = (struct tracepoint *) b;
6222
6223 if (tp->traceframe_usage)
6224 {
112e8700 6225 uiout->text ("\ttrace buffer usage ");
381befee 6226 uiout->field_signed ("traceframe-usage", tp->traceframe_usage);
112e8700 6227 uiout->text (" bytes\n");
f196051f
SS
6228 }
6229 }
d3ce09f5 6230
d1b0a7bf 6231 l = b->commands ? b->commands.get () : NULL;
059fb39f 6232 if (!part_of_multiple && l)
c4093a6a
JM
6233 {
6234 annotate_field (9);
2e783024 6235 ui_out_emit_tuple tuple_emitter (uiout, "script");
8b93c638 6236 print_command_lines (uiout, l, 4);
c4093a6a 6237 }
d24317b4 6238
d9b3f62e 6239 if (is_tracepoint (b))
1042e4c0 6240 {
d9b3f62e
PA
6241 struct tracepoint *t = (struct tracepoint *) b;
6242
6243 if (!part_of_multiple && t->pass_count)
6244 {
6245 annotate_field (10);
112e8700 6246 uiout->text ("\tpass count ");
381befee 6247 uiout->field_signed ("pass", t->pass_count);
112e8700 6248 uiout->text (" \n");
d9b3f62e 6249 }
f2a8bc8a
YQ
6250
6251 /* Don't display it when tracepoint or tracepoint location is
6252 pending. */
6253 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6254 {
6255 annotate_field (11);
6256
112e8700
SM
6257 if (uiout->is_mi_like_p ())
6258 uiout->field_string ("installed",
f2a8bc8a
YQ
6259 loc->inserted ? "y" : "n");
6260 else
6261 {
6262 if (loc->inserted)
112e8700 6263 uiout->text ("\t");
f2a8bc8a 6264 else
112e8700
SM
6265 uiout->text ("\tnot ");
6266 uiout->text ("installed on target\n");
f2a8bc8a
YQ
6267 }
6268 }
1042e4c0
SS
6269 }
6270
112e8700 6271 if (uiout->is_mi_like_p () && !part_of_multiple)
d24317b4 6272 {
3a5c3e22
PA
6273 if (is_watchpoint (b))
6274 {
6275 struct watchpoint *w = (struct watchpoint *) b;
6276
112e8700 6277 uiout->field_string ("original-location", w->exp_string);
3a5c3e22 6278 }
f00aae0f 6279 else if (b->location != NULL
d28cd78a 6280 && event_location_to_string (b->location.get ()) != NULL)
112e8700 6281 uiout->field_string ("original-location",
d28cd78a 6282 event_location_to_string (b->location.get ()));
d24317b4 6283 }
c4093a6a 6284}
c5aa993b 6285
13674803
SM
6286/* See breakpoint.h. */
6287
6288bool fix_multi_location_breakpoint_output_globally = false;
6289
0d381245
VP
6290static void
6291print_one_breakpoint (struct breakpoint *b,
4a64f543 6292 struct bp_location **last_loc,
6c95b8df 6293 int allflag)
0d381245 6294{
79a45e25 6295 struct ui_out *uiout = current_uiout;
13674803
SM
6296 bool use_fixed_output
6297 = (uiout->test_flags (fix_multi_location_breakpoint_output)
6298 || fix_multi_location_breakpoint_output_globally);
8d3788bd 6299
b4be1b06 6300 gdb::optional<ui_out_emit_tuple> bkpt_tuple_emitter (gdb::in_place, uiout, "bkpt");
a38118e5 6301 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag, false);
8d3788bd 6302
b4be1b06
SM
6303 /* The mi2 broken format: the main breakpoint tuple ends here, the locations
6304 are outside. */
6305 if (!use_fixed_output)
6306 bkpt_tuple_emitter.reset ();
0d381245
VP
6307
6308 /* If this breakpoint has custom print function,
6309 it's already printed. Otherwise, print individual
6310 locations, if any. */
a38118e5
PA
6311 if (b->ops == NULL
6312 || b->ops->print_one == NULL
6313 || allflag)
0d381245 6314 {
4a64f543
MS
6315 /* If breakpoint has a single location that is disabled, we
6316 print it as if it had several locations, since otherwise it's
6317 hard to represent "breakpoint enabled, location disabled"
6318 situation.
6319
6320 Note that while hardware watchpoints have several locations
a38118e5
PA
6321 internally, that's not a property exposed to users.
6322
6323 Likewise, while catchpoints may be implemented with
6324 breakpoints (e.g., catch throw), that's not a property
6325 exposed to users. We do however display the internal
6326 breakpoint locations with "maint info breakpoints". */
6327 if (!is_hardware_watchpoint (b)
f06f1252
TT
6328 && (!is_catchpoint (b) || is_exception_catchpoint (b)
6329 || is_ada_exception_catchpoint (b))
a38118e5
PA
6330 && (allflag
6331 || (b->loc && (b->loc->next || !b->loc->enabled))))
0d381245 6332 {
b4be1b06
SM
6333 gdb::optional<ui_out_emit_list> locations_list;
6334
6335 /* For MI version <= 2, keep the behavior where GDB outputs an invalid
6336 MI record. For later versions, place breakpoint locations in a
6337 list. */
6338 if (uiout->is_mi_like_p () && use_fixed_output)
6339 locations_list.emplace (uiout, "locations");
8d3788bd 6340
b4be1b06
SM
6341 int n = 1;
6342 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next, ++n)
8d3788bd 6343 {
b4be1b06 6344 ui_out_emit_tuple loc_tuple_emitter (uiout, NULL);
a38118e5
PA
6345 print_one_breakpoint_location (b, loc, n, last_loc,
6346 allflag, allflag);
8d3788bd 6347 }
0d381245
VP
6348 }
6349 }
6350}
6351
a6d9a66e
UW
6352static int
6353breakpoint_address_bits (struct breakpoint *b)
6354{
6355 int print_address_bits = 0;
6356 struct bp_location *loc;
6357
c6d81124
PA
6358 /* Software watchpoints that aren't watching memory don't have an
6359 address to print. */
6360 if (is_no_memory_software_watchpoint (b))
6361 return 0;
6362
a6d9a66e
UW
6363 for (loc = b->loc; loc; loc = loc->next)
6364 {
c7437ca6
PA
6365 int addr_bit;
6366
c7437ca6 6367 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6368 if (addr_bit > print_address_bits)
6369 print_address_bits = addr_bit;
6370 }
6371
6372 return print_address_bits;
6373}
0d381245 6374
65630365 6375/* See breakpoint.h. */
c5aa993b 6376
65630365
PA
6377void
6378print_breakpoint (breakpoint *b)
c4093a6a 6379{
a6d9a66e 6380 struct bp_location *dummy_loc = NULL;
65630365 6381 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6382}
c5aa993b 6383
09d682a4
TT
6384/* Return true if this breakpoint was set by the user, false if it is
6385 internal or momentary. */
6386
6387int
6388user_breakpoint_p (struct breakpoint *b)
6389{
46c6471b 6390 return b->number > 0;
09d682a4
TT
6391}
6392
93daf339
TT
6393/* See breakpoint.h. */
6394
6395int
6396pending_breakpoint_p (struct breakpoint *b)
6397{
6398 return b->loc == NULL;
6399}
6400
5c458ae8
SM
6401/* Print information on breakpoints (including watchpoints and tracepoints).
6402
6403 If non-NULL, BP_NUM_LIST is a list of numbers and number ranges as
6404 understood by number_or_range_parser. Only breakpoints included in this
6405 list are then printed.
6406
6407 If SHOW_INTERNAL is true, print internal breakpoints.
6408
6409 If FILTER is non-NULL, call it on each breakpoint and only include the
6410 ones for which it returns true.
6411
6412 Return the total number of breakpoints listed. */
c906108c 6413
d77f58be 6414static int
5c458ae8 6415breakpoint_1 (const char *bp_num_list, bool show_internal,
f2478a7e 6416 bool (*filter) (const struct breakpoint *))
c4093a6a 6417{
52f0bd74 6418 struct breakpoint *b;
a6d9a66e 6419 struct bp_location *last_loc = NULL;
7f3b0473 6420 int nr_printable_breakpoints;
79a45b7d 6421 struct value_print_options opts;
a6d9a66e 6422 int print_address_bits = 0;
269b11a2 6423 int print_type_col_width = 14;
79a45e25 6424 struct ui_out *uiout = current_uiout;
269b11a2 6425
79a45b7d
TT
6426 get_user_print_options (&opts);
6427
4a64f543
MS
6428 /* Compute the number of rows in the table, as well as the size
6429 required for address fields. */
7f3b0473
AC
6430 nr_printable_breakpoints = 0;
6431 ALL_BREAKPOINTS (b)
e5a67952
MS
6432 {
6433 /* If we have a filter, only list the breakpoints it accepts. */
6434 if (filter && !filter (b))
6435 continue;
6436
5c458ae8 6437 /* If we have a BP_NUM_LIST string, it is a list of breakpoints to
e5a67952 6438 accept. Skip the others. */
5c458ae8 6439 if (bp_num_list != NULL && *bp_num_list != '\0')
e5a67952 6440 {
5c458ae8 6441 if (show_internal && parse_and_eval_long (bp_num_list) != b->number)
e5a67952 6442 continue;
5c458ae8 6443 if (!show_internal && !number_is_in_list (bp_num_list, b->number))
e5a67952
MS
6444 continue;
6445 }
269b11a2 6446
5c458ae8 6447 if (show_internal || user_breakpoint_p (b))
e5a67952
MS
6448 {
6449 int addr_bit, type_len;
a6d9a66e 6450
e5a67952
MS
6451 addr_bit = breakpoint_address_bits (b);
6452 if (addr_bit > print_address_bits)
6453 print_address_bits = addr_bit;
269b11a2 6454
e5a67952
MS
6455 type_len = strlen (bptype_string (b->type));
6456 if (type_len > print_type_col_width)
6457 print_type_col_width = type_len;
6458
6459 nr_printable_breakpoints++;
6460 }
6461 }
7f3b0473 6462
4a2b031d
TT
6463 {
6464 ui_out_emit_table table_emitter (uiout,
6465 opts.addressprint ? 6 : 5,
6466 nr_printable_breakpoints,
6467 "BreakpointTable");
6468
6469 if (nr_printable_breakpoints > 0)
6470 annotate_breakpoints_headers ();
6471 if (nr_printable_breakpoints > 0)
6472 annotate_field (0);
6473 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
6474 if (nr_printable_breakpoints > 0)
6475 annotate_field (1);
6476 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
6477 if (nr_printable_breakpoints > 0)
6478 annotate_field (2);
6479 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
6480 if (nr_printable_breakpoints > 0)
6481 annotate_field (3);
6482 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
6483 if (opts.addressprint)
6484 {
6485 if (nr_printable_breakpoints > 0)
6486 annotate_field (4);
6487 if (print_address_bits <= 32)
6488 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
6489 else
6490 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
6491 }
6492 if (nr_printable_breakpoints > 0)
6493 annotate_field (5);
6494 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6495 uiout->table_body ();
6496 if (nr_printable_breakpoints > 0)
6497 annotate_breakpoints_table ();
6498
6499 ALL_BREAKPOINTS (b)
6500 {
6501 QUIT;
6502 /* If we have a filter, only list the breakpoints it accepts. */
6503 if (filter && !filter (b))
6504 continue;
e5a67952 6505
5c458ae8 6506 /* If we have a BP_NUM_LIST string, it is a list of breakpoints to
4a2b031d 6507 accept. Skip the others. */
e5a67952 6508
5c458ae8 6509 if (bp_num_list != NULL && *bp_num_list != '\0')
4a2b031d 6510 {
5c458ae8 6511 if (show_internal) /* maintenance info breakpoint */
4a2b031d 6512 {
5c458ae8 6513 if (parse_and_eval_long (bp_num_list) != b->number)
4a2b031d
TT
6514 continue;
6515 }
6516 else /* all others */
6517 {
5c458ae8 6518 if (!number_is_in_list (bp_num_list, b->number))
4a2b031d
TT
6519 continue;
6520 }
6521 }
6522 /* We only print out user settable breakpoints unless the
5c458ae8
SM
6523 show_internal is set. */
6524 if (show_internal || user_breakpoint_p (b))
6525 print_one_breakpoint (b, &last_loc, show_internal);
4a2b031d
TT
6526 }
6527 }
698384cd 6528
7f3b0473 6529 if (nr_printable_breakpoints == 0)
c906108c 6530 {
4a64f543
MS
6531 /* If there's a filter, let the caller decide how to report
6532 empty list. */
d77f58be
SS
6533 if (!filter)
6534 {
5c458ae8 6535 if (bp_num_list == NULL || *bp_num_list == '\0')
112e8700 6536 uiout->message ("No breakpoints or watchpoints.\n");
d77f58be 6537 else
112e8700 6538 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
5c458ae8 6539 bp_num_list);
d77f58be 6540 }
c906108c
SS
6541 }
6542 else
c4093a6a 6543 {
a6d9a66e
UW
6544 if (last_loc && !server_command)
6545 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6546 }
c906108c 6547
4a64f543 6548 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6549 there have been breakpoints? */
c906108c 6550 annotate_breakpoints_table_end ();
d77f58be
SS
6551
6552 return nr_printable_breakpoints;
c906108c
SS
6553}
6554
ad443146
SS
6555/* Display the value of default-collect in a way that is generally
6556 compatible with the breakpoint list. */
6557
6558static void
6559default_collect_info (void)
6560{
79a45e25
PA
6561 struct ui_out *uiout = current_uiout;
6562
ad443146
SS
6563 /* If it has no value (which is frequently the case), say nothing; a
6564 message like "No default-collect." gets in user's face when it's
6565 not wanted. */
6566 if (!*default_collect)
6567 return;
6568
6569 /* The following phrase lines up nicely with per-tracepoint collect
6570 actions. */
112e8700
SM
6571 uiout->text ("default collect ");
6572 uiout->field_string ("default-collect", default_collect);
6573 uiout->text (" \n");
ad443146
SS
6574}
6575
c906108c 6576static void
0b39b52e 6577info_breakpoints_command (const char *args, int from_tty)
c906108c 6578{
5c458ae8 6579 breakpoint_1 (args, false, NULL);
ad443146
SS
6580
6581 default_collect_info ();
d77f58be
SS
6582}
6583
6584static void
1d12d88f 6585info_watchpoints_command (const char *args, int from_tty)
d77f58be 6586{
5c458ae8 6587 int num_printed = breakpoint_1 (args, false, is_watchpoint);
79a45e25 6588 struct ui_out *uiout = current_uiout;
d77f58be
SS
6589
6590 if (num_printed == 0)
6591 {
e5a67952 6592 if (args == NULL || *args == '\0')
112e8700 6593 uiout->message ("No watchpoints.\n");
d77f58be 6594 else
112e8700 6595 uiout->message ("No watchpoint matching '%s'.\n", args);
d77f58be 6596 }
c906108c
SS
6597}
6598
7a292a7a 6599static void
4495129a 6600maintenance_info_breakpoints (const char *args, int from_tty)
c906108c 6601{
5c458ae8 6602 breakpoint_1 (args, true, NULL);
ad443146
SS
6603
6604 default_collect_info ();
c906108c
SS
6605}
6606
0d381245 6607static int
714835d5 6608breakpoint_has_pc (struct breakpoint *b,
6c95b8df 6609 struct program_space *pspace,
714835d5 6610 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
6611{
6612 struct bp_location *bl = b->loc;
cc59ec59 6613
0d381245
VP
6614 for (; bl; bl = bl->next)
6615 {
6c95b8df
PA
6616 if (bl->pspace == pspace
6617 && bl->address == pc
0d381245
VP
6618 && (!overlay_debugging || bl->section == section))
6619 return 1;
6620 }
6621 return 0;
6622}
6623
672f9b60 6624/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
6625 concerns with logical breakpoints, so we match program spaces, not
6626 address spaces. */
c906108c
SS
6627
6628static void
6c95b8df
PA
6629describe_other_breakpoints (struct gdbarch *gdbarch,
6630 struct program_space *pspace, CORE_ADDR pc,
5af949e3 6631 struct obj_section *section, int thread)
c906108c 6632{
52f0bd74
AC
6633 int others = 0;
6634 struct breakpoint *b;
c906108c
SS
6635
6636 ALL_BREAKPOINTS (b)
672f9b60
KP
6637 others += (user_breakpoint_p (b)
6638 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
6639 if (others > 0)
6640 {
a3f17187
AC
6641 if (others == 1)
6642 printf_filtered (_("Note: breakpoint "));
6643 else /* if (others == ???) */
6644 printf_filtered (_("Note: breakpoints "));
c906108c 6645 ALL_BREAKPOINTS (b)
672f9b60 6646 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
6647 {
6648 others--;
6649 printf_filtered ("%d", b->number);
6650 if (b->thread == -1 && thread != -1)
6651 printf_filtered (" (all threads)");
6652 else if (b->thread != -1)
6653 printf_filtered (" (thread %d)", b->thread);
6654 printf_filtered ("%s%s ",
059fb39f 6655 ((b->enable_state == bp_disabled
f8eba3c6 6656 || b->enable_state == bp_call_disabled)
0d381245 6657 ? " (disabled)"
0d381245
VP
6658 : ""),
6659 (others > 1) ? ","
6660 : ((others == 1) ? " and" : ""));
6661 }
6a831f06
PA
6662 current_uiout->message (_("also set at pc %ps.\n"),
6663 styled_string (address_style.style (),
6664 paddress (gdbarch, pc)));
c906108c
SS
6665 }
6666}
6667\f
c906108c 6668
cb1e4e32
PA
6669/* Return true iff it is meaningful to use the address member of LOC.
6670 For some breakpoint types, the locations' address members are
6671 irrelevant and it makes no sense to attempt to compare them to
6672 other addresses (or use them for any other purpose either).
2d134ed3 6673
cb1e4e32
PA
6674 More specifically, software watchpoints and catchpoints that are
6675 not backed by breakpoints always have a zero valued location
6676 address and we don't want to mark breakpoints of any of these types
6677 to be a duplicate of an actual breakpoint location at address
6678 zero. */
e4f237da 6679
cb1e4e32
PA
6680static bool
6681bl_address_is_meaningful (bp_location *loc)
e4f237da 6682{
cb1e4e32 6683 return loc->loc_type != bp_loc_other;
2d134ed3
PA
6684}
6685
6686/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6687 true if LOC1 and LOC2 represent the same watchpoint location. */
6688
6689static int
4a64f543
MS
6690watchpoint_locations_match (struct bp_location *loc1,
6691 struct bp_location *loc2)
2d134ed3 6692{
3a5c3e22
PA
6693 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6694 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6695
6696 /* Both of them must exist. */
6697 gdb_assert (w1 != NULL);
6698 gdb_assert (w2 != NULL);
2bdf28a0 6699
4a64f543
MS
6700 /* If the target can evaluate the condition expression in hardware,
6701 then we we need to insert both watchpoints even if they are at
6702 the same place. Otherwise the watchpoint will only trigger when
6703 the condition of whichever watchpoint was inserted evaluates to
6704 true, not giving a chance for GDB to check the condition of the
6705 other watchpoint. */
3a5c3e22 6706 if ((w1->cond_exp
4a64f543
MS
6707 && target_can_accel_watchpoint_condition (loc1->address,
6708 loc1->length,
0cf6dd15 6709 loc1->watchpoint_type,
4d01a485 6710 w1->cond_exp.get ()))
3a5c3e22 6711 || (w2->cond_exp
4a64f543
MS
6712 && target_can_accel_watchpoint_condition (loc2->address,
6713 loc2->length,
0cf6dd15 6714 loc2->watchpoint_type,
4d01a485 6715 w2->cond_exp.get ())))
0cf6dd15
TJB
6716 return 0;
6717
85d721b8
PA
6718 /* Note that this checks the owner's type, not the location's. In
6719 case the target does not support read watchpoints, but does
6720 support access watchpoints, we'll have bp_read_watchpoint
6721 watchpoints with hw_access locations. Those should be considered
6722 duplicates of hw_read locations. The hw_read locations will
6723 become hw_access locations later. */
2d134ed3
PA
6724 return (loc1->owner->type == loc2->owner->type
6725 && loc1->pspace->aspace == loc2->pspace->aspace
6726 && loc1->address == loc2->address
6727 && loc1->length == loc2->length);
e4f237da
KB
6728}
6729
31e77af2 6730/* See breakpoint.h. */
6c95b8df 6731
31e77af2 6732int
accd0bcd
YQ
6733breakpoint_address_match (const address_space *aspace1, CORE_ADDR addr1,
6734 const address_space *aspace2, CORE_ADDR addr2)
6c95b8df 6735{
f5656ead 6736 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
6737 || aspace1 == aspace2)
6738 && addr1 == addr2);
6739}
6740
f1310107
TJB
6741/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6742 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6743 matches ASPACE2. On targets that have global breakpoints, the address
6744 space doesn't really matter. */
6745
6746static int
accd0bcd
YQ
6747breakpoint_address_match_range (const address_space *aspace1,
6748 CORE_ADDR addr1,
6749 int len1, const address_space *aspace2,
f1310107
TJB
6750 CORE_ADDR addr2)
6751{
f5656ead 6752 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
6753 || aspace1 == aspace2)
6754 && addr2 >= addr1 && addr2 < addr1 + len1);
6755}
6756
6757/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6758 a ranged breakpoint. In most targets, a match happens only if ASPACE
6759 matches the breakpoint's address space. On targets that have global
6760 breakpoints, the address space doesn't really matter. */
6761
6762static int
6763breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 6764 const address_space *aspace,
f1310107
TJB
6765 CORE_ADDR addr)
6766{
6767 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6768 aspace, addr)
6769 || (bl->length
6770 && breakpoint_address_match_range (bl->pspace->aspace,
6771 bl->address, bl->length,
6772 aspace, addr)));
6773}
6774
d35ae833
PA
6775/* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
6776 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
6777 match happens only if ASPACE matches the breakpoint's address
6778 space. On targets that have global breakpoints, the address space
6779 doesn't really matter. */
6780
6781static int
6782breakpoint_location_address_range_overlap (struct bp_location *bl,
accd0bcd 6783 const address_space *aspace,
d35ae833
PA
6784 CORE_ADDR addr, int len)
6785{
6786 if (gdbarch_has_global_breakpoints (target_gdbarch ())
6787 || bl->pspace->aspace == aspace)
6788 {
6789 int bl_len = bl->length != 0 ? bl->length : 1;
6790
6791 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
6792 return 1;
6793 }
6794 return 0;
6795}
6796
1e4d1764
YQ
6797/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6798 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6799 true, otherwise returns false. */
6800
6801static int
6802tracepoint_locations_match (struct bp_location *loc1,
6803 struct bp_location *loc2)
6804{
6805 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6806 /* Since tracepoint locations are never duplicated with others', tracepoint
6807 locations at the same address of different tracepoints are regarded as
6808 different locations. */
6809 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6810 else
6811 return 0;
6812}
6813
2d134ed3 6814/* Assuming LOC1 and LOC2's types' have meaningful target addresses
cb1e4e32
PA
6815 (bl_address_is_meaningful), returns true if LOC1 and LOC2 represent
6816 the same location. */
2d134ed3
PA
6817
6818static int
4a64f543
MS
6819breakpoint_locations_match (struct bp_location *loc1,
6820 struct bp_location *loc2)
2d134ed3 6821{
2bdf28a0
JK
6822 int hw_point1, hw_point2;
6823
6824 /* Both of them must not be in moribund_locations. */
6825 gdb_assert (loc1->owner != NULL);
6826 gdb_assert (loc2->owner != NULL);
6827
6828 hw_point1 = is_hardware_watchpoint (loc1->owner);
6829 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
6830
6831 if (hw_point1 != hw_point2)
6832 return 0;
6833 else if (hw_point1)
6834 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
6835 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6836 return tracepoint_locations_match (loc1, loc2);
2d134ed3 6837 else
f1310107
TJB
6838 /* We compare bp_location.length in order to cover ranged breakpoints. */
6839 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6840 loc2->pspace->aspace, loc2->address)
6841 && loc1->length == loc2->length);
2d134ed3
PA
6842}
6843
76897487
KB
6844static void
6845breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6846 int bnum, int have_bnum)
6847{
f63fbe86
MS
6848 /* The longest string possibly returned by hex_string_custom
6849 is 50 chars. These must be at least that big for safety. */
6850 char astr1[64];
6851 char astr2[64];
76897487 6852
bb599908
PH
6853 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6854 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 6855 if (have_bnum)
8a3fe4f8 6856 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
6857 bnum, astr1, astr2);
6858 else
8a3fe4f8 6859 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
6860}
6861
4a64f543
MS
6862/* Adjust a breakpoint's address to account for architectural
6863 constraints on breakpoint placement. Return the adjusted address.
6864 Note: Very few targets require this kind of adjustment. For most
6865 targets, this function is simply the identity function. */
76897487
KB
6866
6867static CORE_ADDR
a6d9a66e
UW
6868adjust_breakpoint_address (struct gdbarch *gdbarch,
6869 CORE_ADDR bpaddr, enum bptype bptype)
76897487 6870{
a0de8c21
YQ
6871 if (bptype == bp_watchpoint
6872 || bptype == bp_hardware_watchpoint
6873 || bptype == bp_read_watchpoint
6874 || bptype == bp_access_watchpoint
6875 || bptype == bp_catchpoint)
88f7da05
KB
6876 {
6877 /* Watchpoints and the various bp_catch_* eventpoints should not
6878 have their addresses modified. */
6879 return bpaddr;
6880 }
7c16b83e
PA
6881 else if (bptype == bp_single_step)
6882 {
6883 /* Single-step breakpoints should not have their addresses
6884 modified. If there's any architectural constrain that
6885 applies to this address, then it should have already been
6886 taken into account when the breakpoint was created in the
6887 first place. If we didn't do this, stepping through e.g.,
6888 Thumb-2 IT blocks would break. */
6889 return bpaddr;
6890 }
76897487
KB
6891 else
6892 {
a0de8c21
YQ
6893 CORE_ADDR adjusted_bpaddr = bpaddr;
6894
6895 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
6896 {
6897 /* Some targets have architectural constraints on the placement
6898 of breakpoint instructions. Obtain the adjusted address. */
6899 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
6900 }
76897487 6901
a0de8c21 6902 adjusted_bpaddr = address_significant (gdbarch, adjusted_bpaddr);
76897487
KB
6903
6904 /* An adjusted breakpoint address can significantly alter
6905 a user's expectations. Print a warning if an adjustment
6906 is required. */
6907 if (adjusted_bpaddr != bpaddr)
6908 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
6909
6910 return adjusted_bpaddr;
6911 }
6912}
6913
cb1e4e32
PA
6914static bp_loc_type
6915bp_location_from_bp_type (bptype type)
7cc221ef 6916{
cb1e4e32 6917 switch (type)
e049a4b5
DJ
6918 {
6919 case bp_breakpoint:
7c16b83e 6920 case bp_single_step:
e049a4b5
DJ
6921 case bp_until:
6922 case bp_finish:
6923 case bp_longjmp:
6924 case bp_longjmp_resume:
e2e4d78b 6925 case bp_longjmp_call_dummy:
186c406b
TT
6926 case bp_exception:
6927 case bp_exception_resume:
e049a4b5 6928 case bp_step_resume:
2c03e5be 6929 case bp_hp_step_resume:
e049a4b5
DJ
6930 case bp_watchpoint_scope:
6931 case bp_call_dummy:
aa7d318d 6932 case bp_std_terminate:
e049a4b5
DJ
6933 case bp_shlib_event:
6934 case bp_thread_event:
6935 case bp_overlay_event:
4efc6507 6936 case bp_jit_event:
0fd8e87f 6937 case bp_longjmp_master:
aa7d318d 6938 case bp_std_terminate_master:
186c406b 6939 case bp_exception_master:
0e30163f
JK
6940 case bp_gnu_ifunc_resolver:
6941 case bp_gnu_ifunc_resolver_return:
e7e0cddf 6942 case bp_dprintf:
cb1e4e32 6943 return bp_loc_software_breakpoint;
e049a4b5 6944 case bp_hardware_breakpoint:
cb1e4e32 6945 return bp_loc_hardware_breakpoint;
e049a4b5
DJ
6946 case bp_hardware_watchpoint:
6947 case bp_read_watchpoint:
6948 case bp_access_watchpoint:
cb1e4e32 6949 return bp_loc_hardware_watchpoint;
e049a4b5 6950 case bp_watchpoint:
ce78b96d 6951 case bp_catchpoint:
15c3d785
PA
6952 case bp_tracepoint:
6953 case bp_fast_tracepoint:
0fb4aa4b 6954 case bp_static_tracepoint:
cb1e4e32 6955 return bp_loc_other;
e049a4b5 6956 default:
e2e0b3e5 6957 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5 6958 }
cb1e4e32
PA
6959}
6960
6961bp_location::bp_location (breakpoint *owner, bp_loc_type type)
6962{
6963 this->owner = owner;
6964 this->cond_bytecode = NULL;
6965 this->shlib_disabled = 0;
6966 this->enabled = 1;
6967
6968 this->loc_type = type;
e049a4b5 6969
cb1e4e32
PA
6970 if (this->loc_type == bp_loc_software_breakpoint
6971 || this->loc_type == bp_loc_hardware_breakpoint)
6972 mark_breakpoint_location_modified (this);
6973
6974 this->refc = 1;
6975}
6976
6977bp_location::bp_location (breakpoint *owner)
6978 : bp_location::bp_location (owner,
6979 bp_location_from_bp_type (owner->type))
6980{
28010a5d
PA
6981}
6982
6983/* Allocate a struct bp_location. */
6984
6985static struct bp_location *
6986allocate_bp_location (struct breakpoint *bpt)
6987{
348d480f
PA
6988 return bpt->ops->allocate_location (bpt);
6989}
7cc221ef 6990
f431efe5
PA
6991static void
6992free_bp_location (struct bp_location *loc)
fe3f5fa8 6993{
4d01a485 6994 delete loc;
fe3f5fa8
VP
6995}
6996
f431efe5
PA
6997/* Increment reference count. */
6998
6999static void
7000incref_bp_location (struct bp_location *bl)
7001{
7002 ++bl->refc;
7003}
7004
7005/* Decrement reference count. If the reference count reaches 0,
7006 destroy the bp_location. Sets *BLP to NULL. */
7007
7008static void
7009decref_bp_location (struct bp_location **blp)
7010{
0807b50c
PA
7011 gdb_assert ((*blp)->refc > 0);
7012
f431efe5
PA
7013 if (--(*blp)->refc == 0)
7014 free_bp_location (*blp);
7015 *blp = NULL;
7016}
7017
346774a9 7018/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 7019
b270e6f9
TT
7020static breakpoint *
7021add_to_breakpoint_chain (std::unique_ptr<breakpoint> &&b)
c906108c 7022{
346774a9 7023 struct breakpoint *b1;
b270e6f9 7024 struct breakpoint *result = b.get ();
c906108c 7025
346774a9
PA
7026 /* Add this breakpoint to the end of the chain so that a list of
7027 breakpoints will come out in order of increasing numbers. */
7028
7029 b1 = breakpoint_chain;
7030 if (b1 == 0)
b270e6f9 7031 breakpoint_chain = b.release ();
346774a9
PA
7032 else
7033 {
7034 while (b1->next)
7035 b1 = b1->next;
b270e6f9 7036 b1->next = b.release ();
346774a9 7037 }
b270e6f9
TT
7038
7039 return result;
346774a9
PA
7040}
7041
7042/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7043
7044static void
7045init_raw_breakpoint_without_location (struct breakpoint *b,
7046 struct gdbarch *gdbarch,
28010a5d 7047 enum bptype bptype,
c0a91b2b 7048 const struct breakpoint_ops *ops)
346774a9 7049{
348d480f
PA
7050 gdb_assert (ops != NULL);
7051
28010a5d 7052 b->ops = ops;
4d28f7a8 7053 b->type = bptype;
a6d9a66e 7054 b->gdbarch = gdbarch;
c906108c
SS
7055 b->language = current_language->la_language;
7056 b->input_radix = input_radix;
d0fb5eae 7057 b->related_breakpoint = b;
346774a9
PA
7058}
7059
7060/* Helper to set_raw_breakpoint below. Creates a breakpoint
7061 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7062
7063static struct breakpoint *
7064set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7065 enum bptype bptype,
c0a91b2b 7066 const struct breakpoint_ops *ops)
346774a9 7067{
3b0871f4 7068 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7069
3b0871f4 7070 init_raw_breakpoint_without_location (b.get (), gdbarch, bptype, ops);
b270e6f9 7071 return add_to_breakpoint_chain (std::move (b));
0d381245
VP
7072}
7073
0ba852ab 7074/* Initialize loc->function_name. */
0e30163f 7075
0d381245 7076static void
0ba852ab 7077set_breakpoint_location_function (struct bp_location *loc)
0d381245 7078{
2bdf28a0
JK
7079 gdb_assert (loc->owner != NULL);
7080
0d381245 7081 if (loc->owner->type == bp_breakpoint
1042e4c0 7082 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7083 || is_tracepoint (loc->owner))
0d381245 7084 {
2c02bd72 7085 const char *function_name;
0e30163f 7086
3467ec66 7087 if (loc->msymbol != NULL
f50776aa 7088 && (MSYMBOL_TYPE (loc->msymbol) == mst_text_gnu_ifunc
0ba852ab 7089 || MSYMBOL_TYPE (loc->msymbol) == mst_data_gnu_ifunc))
0e30163f
JK
7090 {
7091 struct breakpoint *b = loc->owner;
7092
c9d95fa3 7093 function_name = loc->msymbol->linkage_name ();
3467ec66
PA
7094
7095 if (b->type == bp_breakpoint && b->loc == loc
7096 && loc->next == NULL && b->related_breakpoint == b)
0e30163f
JK
7097 {
7098 /* Create only the whole new breakpoint of this type but do not
7099 mess more complicated breakpoints with multiple locations. */
7100 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7101 /* Remember the resolver's address for use by the return
7102 breakpoint. */
3467ec66 7103 loc->related_address = loc->address;
0e30163f
JK
7104 }
7105 }
3467ec66
PA
7106 else
7107 find_pc_partial_function (loc->address, &function_name, NULL, NULL);
0e30163f 7108
2c02bd72
DE
7109 if (function_name)
7110 loc->function_name = xstrdup (function_name);
0d381245
VP
7111 }
7112}
7113
a6d9a66e 7114/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7115struct gdbarch *
a6d9a66e
UW
7116get_sal_arch (struct symtab_and_line sal)
7117{
7118 if (sal.section)
08feed99 7119 return sal.section->objfile->arch ();
a6d9a66e 7120 if (sal.symtab)
08feed99 7121 return SYMTAB_OBJFILE (sal.symtab)->arch ();
a6d9a66e
UW
7122
7123 return NULL;
7124}
7125
346774a9
PA
7126/* Low level routine for partially initializing a breakpoint of type
7127 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7128 file name, and line number are provided by SAL.
0d381245
VP
7129
7130 It is expected that the caller will complete the initialization of
7131 the newly created breakpoint struct as well as output any status
c56053d2 7132 information regarding the creation of a new breakpoint. */
0d381245 7133
346774a9
PA
7134static void
7135init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7136 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7137 const struct breakpoint_ops *ops)
0d381245 7138{
28010a5d 7139 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7140
3742cc8b 7141 add_location_to_breakpoint (b, &sal);
0d381245 7142
6c95b8df
PA
7143 if (bptype != bp_catchpoint)
7144 gdb_assert (sal.pspace != NULL);
7145
f8eba3c6
TT
7146 /* Store the program space that was used to set the breakpoint,
7147 except for ordinary breakpoints, which are independent of the
7148 program space. */
7149 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7150 b->pspace = sal.pspace;
346774a9 7151}
c906108c 7152
346774a9
PA
7153/* set_raw_breakpoint is a low level routine for allocating and
7154 partially initializing a breakpoint of type BPTYPE. The newly
7155 created breakpoint's address, section, source file name, and line
7156 number are provided by SAL. The newly created and partially
7157 initialized breakpoint is added to the breakpoint chain and
7158 is also returned as the value of this function.
7159
7160 It is expected that the caller will complete the initialization of
7161 the newly created breakpoint struct as well as output any status
7162 information regarding the creation of a new breakpoint. In
7163 particular, set_raw_breakpoint does NOT set the breakpoint
7164 number! Care should be taken to not allow an error to occur
7165 prior to completing the initialization of the breakpoint. If this
7166 should happen, a bogus breakpoint will be left on the chain. */
7167
7168struct breakpoint *
7169set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7170 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7171 const struct breakpoint_ops *ops)
346774a9 7172{
3b0871f4 7173 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7174
3b0871f4 7175 init_raw_breakpoint (b.get (), gdbarch, sal, bptype, ops);
b270e6f9 7176 return add_to_breakpoint_chain (std::move (b));
c906108c
SS
7177}
7178
53a5351d 7179/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7180 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7181 initiated the operation. */
c906108c
SS
7182
7183void
186c406b 7184set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7185{
35df4500 7186 struct breakpoint *b, *b_tmp;
5d5658a1 7187 int thread = tp->global_num;
0fd8e87f
UW
7188
7189 /* To avoid having to rescan all objfile symbols at every step,
7190 we maintain a list of continually-inserted but always disabled
7191 longjmp "master" breakpoints. Here, we simply create momentary
7192 clones of those and enable them for the requested thread. */
35df4500 7193 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7194 if (b->pspace == current_program_space
186c406b
TT
7195 && (b->type == bp_longjmp_master
7196 || b->type == bp_exception_master))
0fd8e87f 7197 {
06edf0c0
PA
7198 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7199 struct breakpoint *clone;
cc59ec59 7200
e2e4d78b
JK
7201 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7202 after their removal. */
06edf0c0 7203 clone = momentary_breakpoint_from_master (b, type,
c1fc2657 7204 &momentary_breakpoint_ops, 1);
0fd8e87f
UW
7205 clone->thread = thread;
7206 }
186c406b
TT
7207
7208 tp->initiating_frame = frame;
c906108c
SS
7209}
7210
611c83ae 7211/* Delete all longjmp breakpoints from THREAD. */
c906108c 7212void
611c83ae 7213delete_longjmp_breakpoint (int thread)
c906108c 7214{
35df4500 7215 struct breakpoint *b, *b_tmp;
c906108c 7216
35df4500 7217 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7218 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7219 {
7220 if (b->thread == thread)
7221 delete_breakpoint (b);
7222 }
c906108c
SS
7223}
7224
f59f708a
PA
7225void
7226delete_longjmp_breakpoint_at_next_stop (int thread)
7227{
7228 struct breakpoint *b, *b_tmp;
7229
7230 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7231 if (b->type == bp_longjmp || b->type == bp_exception)
7232 {
7233 if (b->thread == thread)
7234 b->disposition = disp_del_at_next_stop;
7235 }
7236}
7237
e2e4d78b
JK
7238/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7239 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7240 pointer to any of them. Return NULL if this system cannot place longjmp
7241 breakpoints. */
7242
7243struct breakpoint *
7244set_longjmp_breakpoint_for_call_dummy (void)
7245{
7246 struct breakpoint *b, *retval = NULL;
7247
7248 ALL_BREAKPOINTS (b)
7249 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7250 {
7251 struct breakpoint *new_b;
7252
7253 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
a1aa2221
LM
7254 &momentary_breakpoint_ops,
7255 1);
00431a78 7256 new_b->thread = inferior_thread ()->global_num;
e2e4d78b
JK
7257
7258 /* Link NEW_B into the chain of RETVAL breakpoints. */
7259
7260 gdb_assert (new_b->related_breakpoint == new_b);
7261 if (retval == NULL)
7262 retval = new_b;
7263 new_b->related_breakpoint = retval;
7264 while (retval->related_breakpoint != new_b->related_breakpoint)
7265 retval = retval->related_breakpoint;
7266 retval->related_breakpoint = new_b;
7267 }
7268
7269 return retval;
7270}
7271
7272/* Verify all existing dummy frames and their associated breakpoints for
b67a2c6f 7273 TP. Remove those which can no longer be found in the current frame
e2e4d78b
JK
7274 stack.
7275
7276 You should call this function only at places where it is safe to currently
7277 unwind the whole stack. Failed stack unwind would discard live dummy
7278 frames. */
7279
7280void
b67a2c6f 7281check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
e2e4d78b
JK
7282{
7283 struct breakpoint *b, *b_tmp;
7284
7285 ALL_BREAKPOINTS_SAFE (b, b_tmp)
5d5658a1 7286 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
e2e4d78b
JK
7287 {
7288 struct breakpoint *dummy_b = b->related_breakpoint;
7289
7290 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7291 dummy_b = dummy_b->related_breakpoint;
7292 if (dummy_b->type != bp_call_dummy
7293 || frame_find_by_id (dummy_b->frame_id) != NULL)
7294 continue;
7295
00431a78 7296 dummy_frame_discard (dummy_b->frame_id, tp);
e2e4d78b
JK
7297
7298 while (b->related_breakpoint != b)
7299 {
7300 if (b_tmp == b->related_breakpoint)
7301 b_tmp = b->related_breakpoint->next;
7302 delete_breakpoint (b->related_breakpoint);
7303 }
7304 delete_breakpoint (b);
7305 }
7306}
7307
1900040c
MS
7308void
7309enable_overlay_breakpoints (void)
7310{
52f0bd74 7311 struct breakpoint *b;
1900040c
MS
7312
7313 ALL_BREAKPOINTS (b)
7314 if (b->type == bp_overlay_event)
7315 {
7316 b->enable_state = bp_enabled;
44702360 7317 update_global_location_list (UGLL_MAY_INSERT);
c02f5703 7318 overlay_events_enabled = 1;
1900040c
MS
7319 }
7320}
7321
7322void
7323disable_overlay_breakpoints (void)
7324{
52f0bd74 7325 struct breakpoint *b;
1900040c
MS
7326
7327 ALL_BREAKPOINTS (b)
7328 if (b->type == bp_overlay_event)
7329 {
7330 b->enable_state = bp_disabled;
44702360 7331 update_global_location_list (UGLL_DONT_INSERT);
c02f5703 7332 overlay_events_enabled = 0;
1900040c
MS
7333 }
7334}
7335
aa7d318d
TT
7336/* Set an active std::terminate breakpoint for each std::terminate
7337 master breakpoint. */
7338void
7339set_std_terminate_breakpoint (void)
7340{
35df4500 7341 struct breakpoint *b, *b_tmp;
aa7d318d 7342
35df4500 7343 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7344 if (b->pspace == current_program_space
7345 && b->type == bp_std_terminate_master)
7346 {
06edf0c0 7347 momentary_breakpoint_from_master (b, bp_std_terminate,
a1aa2221 7348 &momentary_breakpoint_ops, 1);
aa7d318d
TT
7349 }
7350}
7351
7352/* Delete all the std::terminate breakpoints. */
7353void
7354delete_std_terminate_breakpoint (void)
7355{
35df4500 7356 struct breakpoint *b, *b_tmp;
aa7d318d 7357
35df4500 7358 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7359 if (b->type == bp_std_terminate)
7360 delete_breakpoint (b);
7361}
7362
c4093a6a 7363struct breakpoint *
a6d9a66e 7364create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7365{
7366 struct breakpoint *b;
c4093a6a 7367
06edf0c0
PA
7368 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7369 &internal_breakpoint_ops);
7370
b5de0fa7 7371 b->enable_state = bp_enabled;
f00aae0f 7372 /* location has to be used or breakpoint_re_set will delete me. */
d28cd78a 7373 b->location = new_address_location (b->loc->address, NULL, 0);
c4093a6a 7374
44702360 7375 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 7376
c4093a6a
JM
7377 return b;
7378}
7379
0101ce28
JJ
7380struct lang_and_radix
7381 {
7382 enum language lang;
7383 int radix;
7384 };
7385
4efc6507
DE
7386/* Create a breakpoint for JIT code registration and unregistration. */
7387
7388struct breakpoint *
7389create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7390{
2a7f3dff
PA
7391 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7392 &internal_breakpoint_ops);
4efc6507 7393}
0101ce28 7394
03673fc7
PP
7395/* Remove JIT code registration and unregistration breakpoint(s). */
7396
7397void
7398remove_jit_event_breakpoints (void)
7399{
7400 struct breakpoint *b, *b_tmp;
7401
7402 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7403 if (b->type == bp_jit_event
7404 && b->loc->pspace == current_program_space)
7405 delete_breakpoint (b);
7406}
7407
cae688ec
JJ
7408void
7409remove_solib_event_breakpoints (void)
7410{
35df4500 7411 struct breakpoint *b, *b_tmp;
cae688ec 7412
35df4500 7413 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7414 if (b->type == bp_shlib_event
7415 && b->loc->pspace == current_program_space)
cae688ec
JJ
7416 delete_breakpoint (b);
7417}
7418
f37f681c
PA
7419/* See breakpoint.h. */
7420
7421void
7422remove_solib_event_breakpoints_at_next_stop (void)
7423{
7424 struct breakpoint *b, *b_tmp;
7425
7426 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7427 if (b->type == bp_shlib_event
7428 && b->loc->pspace == current_program_space)
7429 b->disposition = disp_del_at_next_stop;
7430}
7431
04086b45
PA
7432/* Helper for create_solib_event_breakpoint /
7433 create_and_insert_solib_event_breakpoint. Allows specifying which
7434 INSERT_MODE to pass through to update_global_location_list. */
7435
7436static struct breakpoint *
7437create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7438 enum ugll_insert_mode insert_mode)
cae688ec
JJ
7439{
7440 struct breakpoint *b;
7441
06edf0c0
PA
7442 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7443 &internal_breakpoint_ops);
04086b45 7444 update_global_location_list_nothrow (insert_mode);
cae688ec
JJ
7445 return b;
7446}
7447
04086b45
PA
7448struct breakpoint *
7449create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7450{
7451 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7452}
7453
f37f681c
PA
7454/* See breakpoint.h. */
7455
7456struct breakpoint *
7457create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7458{
7459 struct breakpoint *b;
7460
04086b45
PA
7461 /* Explicitly tell update_global_location_list to insert
7462 locations. */
7463 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
f37f681c
PA
7464 if (!b->loc->inserted)
7465 {
7466 delete_breakpoint (b);
7467 return NULL;
7468 }
7469 return b;
7470}
7471
cae688ec
JJ
7472/* Disable any breakpoints that are on code in shared libraries. Only
7473 apply to enabled breakpoints, disabled ones can just stay disabled. */
7474
7475void
cb851954 7476disable_breakpoints_in_shlibs (void)
cae688ec 7477{
876fa593 7478 struct bp_location *loc, **locp_tmp;
cae688ec 7479
876fa593 7480 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7481 {
2bdf28a0 7482 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7483 struct breakpoint *b = loc->owner;
2bdf28a0 7484
4a64f543
MS
7485 /* We apply the check to all breakpoints, including disabled for
7486 those with loc->duplicate set. This is so that when breakpoint
7487 becomes enabled, or the duplicate is removed, gdb will try to
7488 insert all breakpoints. If we don't set shlib_disabled here,
7489 we'll try to insert those breakpoints and fail. */
1042e4c0 7490 if (((b->type == bp_breakpoint)
508ccb1f 7491 || (b->type == bp_jit_event)
1042e4c0 7492 || (b->type == bp_hardware_breakpoint)
d77f58be 7493 || (is_tracepoint (b)))
6c95b8df 7494 && loc->pspace == current_program_space
0d381245 7495 && !loc->shlib_disabled
6c95b8df 7496 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7497 )
0d381245
VP
7498 {
7499 loc->shlib_disabled = 1;
7500 }
cae688ec
JJ
7501 }
7502}
7503
63644780
NB
7504/* Disable any breakpoints and tracepoints that are in SOLIB upon
7505 notification of unloaded_shlib. Only apply to enabled breakpoints,
7506 disabled ones can just stay disabled. */
84acb35a 7507
75149521 7508static void
84acb35a
JJ
7509disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7510{
876fa593 7511 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7512 int disabled_shlib_breaks = 0;
7513
876fa593 7514 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7515 {
2bdf28a0 7516 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7517 struct breakpoint *b = loc->owner;
cc59ec59 7518
1e4d1764 7519 if (solib->pspace == loc->pspace
e2dd7057 7520 && !loc->shlib_disabled
1e4d1764
YQ
7521 && (((b->type == bp_breakpoint
7522 || b->type == bp_jit_event
7523 || b->type == bp_hardware_breakpoint)
7524 && (loc->loc_type == bp_loc_hardware_breakpoint
7525 || loc->loc_type == bp_loc_software_breakpoint))
7526 || is_tracepoint (b))
e2dd7057 7527 && solib_contains_address_p (solib, loc->address))
84acb35a 7528 {
e2dd7057
PP
7529 loc->shlib_disabled = 1;
7530 /* At this point, we cannot rely on remove_breakpoint
7531 succeeding so we must mark the breakpoint as not inserted
7532 to prevent future errors occurring in remove_breakpoints. */
7533 loc->inserted = 0;
8d3788bd
VP
7534
7535 /* This may cause duplicate notifications for the same breakpoint. */
76727919 7536 gdb::observers::breakpoint_modified.notify (b);
8d3788bd 7537
e2dd7057
PP
7538 if (!disabled_shlib_breaks)
7539 {
223ffa71 7540 target_terminal::ours_for_output ();
3e43a32a
MS
7541 warning (_("Temporarily disabling breakpoints "
7542 "for unloaded shared library \"%s\""),
e2dd7057 7543 solib->so_name);
84acb35a 7544 }
e2dd7057 7545 disabled_shlib_breaks = 1;
84acb35a
JJ
7546 }
7547 }
84acb35a
JJ
7548}
7549
63644780
NB
7550/* Disable any breakpoints and tracepoints in OBJFILE upon
7551 notification of free_objfile. Only apply to enabled breakpoints,
7552 disabled ones can just stay disabled. */
7553
7554static void
7555disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7556{
7557 struct breakpoint *b;
7558
7559 if (objfile == NULL)
7560 return;
7561
d03de421
PA
7562 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7563 managed by the user with add-symbol-file/remove-symbol-file.
7564 Similarly to how breakpoints in shared libraries are handled in
7565 response to "nosharedlibrary", mark breakpoints in such modules
08351840
PA
7566 shlib_disabled so they end up uninserted on the next global
7567 location list update. Shared libraries not loaded by the user
7568 aren't handled here -- they're already handled in
7569 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7570 solib_unloaded observer. We skip objfiles that are not
d03de421
PA
7571 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7572 main objfile). */
7573 if ((objfile->flags & OBJF_SHARED) == 0
7574 || (objfile->flags & OBJF_USERLOADED) == 0)
63644780
NB
7575 return;
7576
7577 ALL_BREAKPOINTS (b)
7578 {
7579 struct bp_location *loc;
7580 int bp_modified = 0;
7581
7582 if (!is_breakpoint (b) && !is_tracepoint (b))
7583 continue;
7584
7585 for (loc = b->loc; loc != NULL; loc = loc->next)
7586 {
7587 CORE_ADDR loc_addr = loc->address;
7588
7589 if (loc->loc_type != bp_loc_hardware_breakpoint
7590 && loc->loc_type != bp_loc_software_breakpoint)
7591 continue;
7592
7593 if (loc->shlib_disabled != 0)
7594 continue;
7595
7596 if (objfile->pspace != loc->pspace)
7597 continue;
7598
7599 if (loc->loc_type != bp_loc_hardware_breakpoint
7600 && loc->loc_type != bp_loc_software_breakpoint)
7601 continue;
7602
7603 if (is_addr_in_objfile (loc_addr, objfile))
7604 {
7605 loc->shlib_disabled = 1;
08351840
PA
7606 /* At this point, we don't know whether the object was
7607 unmapped from the inferior or not, so leave the
7608 inserted flag alone. We'll handle failure to
7609 uninsert quietly, in case the object was indeed
7610 unmapped. */
63644780
NB
7611
7612 mark_breakpoint_location_modified (loc);
7613
7614 bp_modified = 1;
7615 }
7616 }
7617
7618 if (bp_modified)
76727919 7619 gdb::observers::breakpoint_modified.notify (b);
63644780
NB
7620 }
7621}
7622
ce78b96d
JB
7623/* FORK & VFORK catchpoints. */
7624
e29a4733 7625/* An instance of this type is used to represent a fork or vfork
c1fc2657
SM
7626 catchpoint. A breakpoint is really of this type iff its ops pointer points
7627 to CATCH_FORK_BREAKPOINT_OPS. */
e29a4733 7628
c1fc2657 7629struct fork_catchpoint : public breakpoint
e29a4733 7630{
e29a4733
PA
7631 /* Process id of a child process whose forking triggered this
7632 catchpoint. This field is only valid immediately after this
7633 catchpoint has triggered. */
7634 ptid_t forked_inferior_pid;
7635};
7636
4a64f543
MS
7637/* Implement the "insert" breakpoint_ops method for fork
7638 catchpoints. */
ce78b96d 7639
77b06cd7
TJB
7640static int
7641insert_catch_fork (struct bp_location *bl)
ce78b96d 7642{
e99b03dc 7643 return target_insert_fork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7644}
7645
4a64f543
MS
7646/* Implement the "remove" breakpoint_ops method for fork
7647 catchpoints. */
ce78b96d
JB
7648
7649static int
73971819 7650remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7651{
e99b03dc 7652 return target_remove_fork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7653}
7654
7655/* Implement the "breakpoint_hit" breakpoint_ops method for fork
7656 catchpoints. */
7657
7658static int
f1310107 7659breakpoint_hit_catch_fork (const struct bp_location *bl,
bd522513 7660 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7661 const struct target_waitstatus *ws)
ce78b96d 7662{
e29a4733
PA
7663 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7664
f90263c1
TT
7665 if (ws->kind != TARGET_WAITKIND_FORKED)
7666 return 0;
7667
7668 c->forked_inferior_pid = ws->value.related_pid;
7669 return 1;
ce78b96d
JB
7670}
7671
4a64f543
MS
7672/* Implement the "print_it" breakpoint_ops method for fork
7673 catchpoints. */
ce78b96d
JB
7674
7675static enum print_stop_action
348d480f 7676print_it_catch_fork (bpstat bs)
ce78b96d 7677{
36dfb11c 7678 struct ui_out *uiout = current_uiout;
348d480f
PA
7679 struct breakpoint *b = bs->breakpoint_at;
7680 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 7681
ce78b96d 7682 annotate_catchpoint (b->number);
f303dbd6 7683 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7684 if (b->disposition == disp_del)
112e8700 7685 uiout->text ("Temporary catchpoint ");
36dfb11c 7686 else
112e8700
SM
7687 uiout->text ("Catchpoint ");
7688 if (uiout->is_mi_like_p ())
36dfb11c 7689 {
112e8700
SM
7690 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
7691 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7692 }
381befee 7693 uiout->field_signed ("bkptno", b->number);
112e8700 7694 uiout->text (" (forked process ");
381befee 7695 uiout->field_signed ("newpid", c->forked_inferior_pid.pid ());
112e8700 7696 uiout->text ("), ");
ce78b96d
JB
7697 return PRINT_SRC_AND_LOC;
7698}
7699
4a64f543
MS
7700/* Implement the "print_one" breakpoint_ops method for fork
7701 catchpoints. */
ce78b96d
JB
7702
7703static void
a6d9a66e 7704print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7705{
e29a4733 7706 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7707 struct value_print_options opts;
79a45e25 7708 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7709
7710 get_user_print_options (&opts);
7711
4a64f543
MS
7712 /* Field 4, the address, is omitted (which makes the columns not
7713 line up too nicely with the headers, but the effect is relatively
7714 readable). */
79a45b7d 7715 if (opts.addressprint)
112e8700 7716 uiout->field_skip ("addr");
ce78b96d 7717 annotate_field (5);
112e8700 7718 uiout->text ("fork");
d7e15655 7719 if (c->forked_inferior_pid != null_ptid)
ce78b96d 7720 {
112e8700 7721 uiout->text (", process ");
381befee 7722 uiout->field_signed ("what", c->forked_inferior_pid.pid ());
112e8700 7723 uiout->spaces (1);
ce78b96d 7724 }
8ac3646f 7725
112e8700
SM
7726 if (uiout->is_mi_like_p ())
7727 uiout->field_string ("catch-type", "fork");
ce78b96d
JB
7728}
7729
7730/* Implement the "print_mention" breakpoint_ops method for fork
7731 catchpoints. */
7732
7733static void
7734print_mention_catch_fork (struct breakpoint *b)
7735{
7736 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7737}
7738
6149aea9
PA
7739/* Implement the "print_recreate" breakpoint_ops method for fork
7740 catchpoints. */
7741
7742static void
7743print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7744{
7745 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 7746 print_recreate_thread (b, fp);
6149aea9
PA
7747}
7748
ce78b96d
JB
7749/* The breakpoint_ops structure to be used in fork catchpoints. */
7750
2060206e 7751static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 7752
4a64f543
MS
7753/* Implement the "insert" breakpoint_ops method for vfork
7754 catchpoints. */
ce78b96d 7755
77b06cd7
TJB
7756static int
7757insert_catch_vfork (struct bp_location *bl)
ce78b96d 7758{
e99b03dc 7759 return target_insert_vfork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7760}
7761
4a64f543
MS
7762/* Implement the "remove" breakpoint_ops method for vfork
7763 catchpoints. */
ce78b96d
JB
7764
7765static int
73971819 7766remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7767{
e99b03dc 7768 return target_remove_vfork_catchpoint (inferior_ptid.pid ());
ce78b96d
JB
7769}
7770
7771/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7772 catchpoints. */
7773
7774static int
f1310107 7775breakpoint_hit_catch_vfork (const struct bp_location *bl,
bd522513 7776 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7777 const struct target_waitstatus *ws)
ce78b96d 7778{
e29a4733
PA
7779 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7780
f90263c1
TT
7781 if (ws->kind != TARGET_WAITKIND_VFORKED)
7782 return 0;
7783
7784 c->forked_inferior_pid = ws->value.related_pid;
7785 return 1;
ce78b96d
JB
7786}
7787
4a64f543
MS
7788/* Implement the "print_it" breakpoint_ops method for vfork
7789 catchpoints. */
ce78b96d
JB
7790
7791static enum print_stop_action
348d480f 7792print_it_catch_vfork (bpstat bs)
ce78b96d 7793{
36dfb11c 7794 struct ui_out *uiout = current_uiout;
348d480f 7795 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
7796 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7797
ce78b96d 7798 annotate_catchpoint (b->number);
f303dbd6 7799 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7800 if (b->disposition == disp_del)
112e8700 7801 uiout->text ("Temporary catchpoint ");
36dfb11c 7802 else
112e8700
SM
7803 uiout->text ("Catchpoint ");
7804 if (uiout->is_mi_like_p ())
36dfb11c 7805 {
112e8700
SM
7806 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
7807 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7808 }
381befee 7809 uiout->field_signed ("bkptno", b->number);
112e8700 7810 uiout->text (" (vforked process ");
381befee 7811 uiout->field_signed ("newpid", c->forked_inferior_pid.pid ());
112e8700 7812 uiout->text ("), ");
ce78b96d
JB
7813 return PRINT_SRC_AND_LOC;
7814}
7815
4a64f543
MS
7816/* Implement the "print_one" breakpoint_ops method for vfork
7817 catchpoints. */
ce78b96d
JB
7818
7819static void
a6d9a66e 7820print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7821{
e29a4733 7822 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7823 struct value_print_options opts;
79a45e25 7824 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7825
7826 get_user_print_options (&opts);
4a64f543
MS
7827 /* Field 4, the address, is omitted (which makes the columns not
7828 line up too nicely with the headers, but the effect is relatively
7829 readable). */
79a45b7d 7830 if (opts.addressprint)
112e8700 7831 uiout->field_skip ("addr");
ce78b96d 7832 annotate_field (5);
112e8700 7833 uiout->text ("vfork");
d7e15655 7834 if (c->forked_inferior_pid != null_ptid)
ce78b96d 7835 {
112e8700 7836 uiout->text (", process ");
381befee 7837 uiout->field_signed ("what", c->forked_inferior_pid.pid ());
112e8700 7838 uiout->spaces (1);
ce78b96d 7839 }
8ac3646f 7840
112e8700
SM
7841 if (uiout->is_mi_like_p ())
7842 uiout->field_string ("catch-type", "vfork");
ce78b96d
JB
7843}
7844
7845/* Implement the "print_mention" breakpoint_ops method for vfork
7846 catchpoints. */
7847
7848static void
7849print_mention_catch_vfork (struct breakpoint *b)
7850{
7851 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7852}
7853
6149aea9
PA
7854/* Implement the "print_recreate" breakpoint_ops method for vfork
7855 catchpoints. */
7856
7857static void
7858print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7859{
7860 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 7861 print_recreate_thread (b, fp);
6149aea9
PA
7862}
7863
ce78b96d
JB
7864/* The breakpoint_ops structure to be used in vfork catchpoints. */
7865
2060206e 7866static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 7867
edcc5120 7868/* An instance of this type is used to represent an solib catchpoint.
c1fc2657 7869 A breakpoint is really of this type iff its ops pointer points to
edcc5120
TT
7870 CATCH_SOLIB_BREAKPOINT_OPS. */
7871
c1fc2657 7872struct solib_catchpoint : public breakpoint
edcc5120 7873{
c1fc2657 7874 ~solib_catchpoint () override;
edcc5120
TT
7875
7876 /* True for "catch load", false for "catch unload". */
7877 unsigned char is_load;
7878
7879 /* Regular expression to match, if any. COMPILED is only valid when
7880 REGEX is non-NULL. */
7881 char *regex;
2d7cc5c7 7882 std::unique_ptr<compiled_regex> compiled;
edcc5120
TT
7883};
7884
c1fc2657 7885solib_catchpoint::~solib_catchpoint ()
edcc5120 7886{
c1fc2657 7887 xfree (this->regex);
edcc5120
TT
7888}
7889
7890static int
7891insert_catch_solib (struct bp_location *ignore)
7892{
7893 return 0;
7894}
7895
7896static int
73971819 7897remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
edcc5120
TT
7898{
7899 return 0;
7900}
7901
7902static int
7903breakpoint_hit_catch_solib (const struct bp_location *bl,
bd522513 7904 const address_space *aspace,
edcc5120
TT
7905 CORE_ADDR bp_addr,
7906 const struct target_waitstatus *ws)
7907{
7908 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
7909 struct breakpoint *other;
7910
7911 if (ws->kind == TARGET_WAITKIND_LOADED)
7912 return 1;
7913
7914 ALL_BREAKPOINTS (other)
7915 {
7916 struct bp_location *other_bl;
7917
7918 if (other == bl->owner)
7919 continue;
7920
7921 if (other->type != bp_shlib_event)
7922 continue;
7923
c1fc2657 7924 if (self->pspace != NULL && other->pspace != self->pspace)
edcc5120
TT
7925 continue;
7926
7927 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
7928 {
7929 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
7930 return 1;
7931 }
7932 }
7933
7934 return 0;
7935}
7936
7937static void
7938check_status_catch_solib (struct bpstats *bs)
7939{
7940 struct solib_catchpoint *self
7941 = (struct solib_catchpoint *) bs->breakpoint_at;
edcc5120
TT
7942
7943 if (self->is_load)
7944 {
52941706 7945 for (so_list *iter : current_program_space->added_solibs)
edcc5120
TT
7946 {
7947 if (!self->regex
2d7cc5c7 7948 || self->compiled->exec (iter->so_name, 0, NULL, 0) == 0)
edcc5120
TT
7949 return;
7950 }
7951 }
7952 else
7953 {
6fb16ce6 7954 for (const std::string &iter : current_program_space->deleted_solibs)
edcc5120
TT
7955 {
7956 if (!self->regex
6fb16ce6 7957 || self->compiled->exec (iter.c_str (), 0, NULL, 0) == 0)
edcc5120
TT
7958 return;
7959 }
7960 }
7961
7962 bs->stop = 0;
7963 bs->print_it = print_it_noop;
7964}
7965
7966static enum print_stop_action
7967print_it_catch_solib (bpstat bs)
7968{
7969 struct breakpoint *b = bs->breakpoint_at;
7970 struct ui_out *uiout = current_uiout;
7971
7972 annotate_catchpoint (b->number);
f303dbd6 7973 maybe_print_thread_hit_breakpoint (uiout);
edcc5120 7974 if (b->disposition == disp_del)
112e8700 7975 uiout->text ("Temporary catchpoint ");
edcc5120 7976 else
112e8700 7977 uiout->text ("Catchpoint ");
381befee 7978 uiout->field_signed ("bkptno", b->number);
112e8700
SM
7979 uiout->text ("\n");
7980 if (uiout->is_mi_like_p ())
7981 uiout->field_string ("disp", bpdisp_text (b->disposition));
edcc5120
TT
7982 print_solib_event (1);
7983 return PRINT_SRC_AND_LOC;
7984}
7985
7986static void
7987print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
7988{
7989 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
7990 struct value_print_options opts;
7991 struct ui_out *uiout = current_uiout;
edcc5120
TT
7992
7993 get_user_print_options (&opts);
7994 /* Field 4, the address, is omitted (which makes the columns not
7995 line up too nicely with the headers, but the effect is relatively
7996 readable). */
7997 if (opts.addressprint)
7998 {
7999 annotate_field (4);
112e8700 8000 uiout->field_skip ("addr");
edcc5120
TT
8001 }
8002
528e1572 8003 std::string msg;
edcc5120
TT
8004 annotate_field (5);
8005 if (self->is_load)
8006 {
8007 if (self->regex)
528e1572 8008 msg = string_printf (_("load of library matching %s"), self->regex);
edcc5120 8009 else
528e1572 8010 msg = _("load of library");
edcc5120
TT
8011 }
8012 else
8013 {
8014 if (self->regex)
528e1572 8015 msg = string_printf (_("unload of library matching %s"), self->regex);
edcc5120 8016 else
528e1572 8017 msg = _("unload of library");
edcc5120 8018 }
112e8700 8019 uiout->field_string ("what", msg);
8ac3646f 8020
112e8700
SM
8021 if (uiout->is_mi_like_p ())
8022 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
edcc5120
TT
8023}
8024
8025static void
8026print_mention_catch_solib (struct breakpoint *b)
8027{
8028 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8029
8030 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8031 self->is_load ? "load" : "unload");
8032}
8033
8034static void
8035print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8036{
8037 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8038
8039 fprintf_unfiltered (fp, "%s %s",
8040 b->disposition == disp_del ? "tcatch" : "catch",
8041 self->is_load ? "load" : "unload");
8042 if (self->regex)
8043 fprintf_unfiltered (fp, " %s", self->regex);
8044 fprintf_unfiltered (fp, "\n");
8045}
8046
8047static struct breakpoint_ops catch_solib_breakpoint_ops;
8048
91985142
MG
8049/* Shared helper function (MI and CLI) for creating and installing
8050 a shared object event catchpoint. If IS_LOAD is non-zero then
8051 the events to be caught are load events, otherwise they are
8052 unload events. If IS_TEMP is non-zero the catchpoint is a
8053 temporary one. If ENABLED is non-zero the catchpoint is
8054 created in an enabled state. */
edcc5120 8055
91985142 8056void
a121b7c1 8057add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
edcc5120 8058{
edcc5120 8059 struct gdbarch *gdbarch = get_current_arch ();
edcc5120 8060
edcc5120
TT
8061 if (!arg)
8062 arg = "";
f1735a53 8063 arg = skip_spaces (arg);
edcc5120 8064
36bd8eaa 8065 std::unique_ptr<solib_catchpoint> c (new solib_catchpoint ());
edcc5120
TT
8066
8067 if (*arg != '\0')
8068 {
2d7cc5c7
PA
8069 c->compiled.reset (new compiled_regex (arg, REG_NOSUB,
8070 _("Invalid regexp")));
edcc5120
TT
8071 c->regex = xstrdup (arg);
8072 }
8073
8074 c->is_load = is_load;
36bd8eaa 8075 init_catchpoint (c.get (), gdbarch, is_temp, NULL,
edcc5120
TT
8076 &catch_solib_breakpoint_ops);
8077
c1fc2657 8078 c->enable_state = enabled ? bp_enabled : bp_disabled;
91985142 8079
b270e6f9 8080 install_breakpoint (0, std::move (c), 1);
edcc5120
TT
8081}
8082
91985142
MG
8083/* A helper function that does all the work for "catch load" and
8084 "catch unload". */
8085
8086static void
eb4c3f4a 8087catch_load_or_unload (const char *arg, int from_tty, int is_load,
91985142
MG
8088 struct cmd_list_element *command)
8089{
8090 int tempflag;
8091 const int enabled = 1;
8092
8093 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8094
8095 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8096}
8097
edcc5120 8098static void
eb4c3f4a 8099catch_load_command_1 (const char *arg, int from_tty,
edcc5120
TT
8100 struct cmd_list_element *command)
8101{
8102 catch_load_or_unload (arg, from_tty, 1, command);
8103}
8104
8105static void
eb4c3f4a 8106catch_unload_command_1 (const char *arg, int from_tty,
edcc5120
TT
8107 struct cmd_list_element *command)
8108{
8109 catch_load_or_unload (arg, from_tty, 0, command);
8110}
8111
346774a9
PA
8112/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8113 is non-zero, then make the breakpoint temporary. If COND_STRING is
8114 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8115 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8116
ab04a2af 8117void
346774a9
PA
8118init_catchpoint (struct breakpoint *b,
8119 struct gdbarch *gdbarch, int tempflag,
63160a43 8120 const char *cond_string,
c0a91b2b 8121 const struct breakpoint_ops *ops)
c906108c 8122{
51abb421 8123 symtab_and_line sal;
6c95b8df 8124 sal.pspace = current_program_space;
c5aa993b 8125
28010a5d 8126 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8127
1b36a34b 8128 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8129 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8130}
8131
28010a5d 8132void
b270e6f9 8133install_breakpoint (int internal, std::unique_ptr<breakpoint> &&arg, int update_gll)
c56053d2 8134{
b270e6f9 8135 breakpoint *b = add_to_breakpoint_chain (std::move (arg));
3a5c3e22 8136 set_breakpoint_number (internal, b);
558a9d82
YQ
8137 if (is_tracepoint (b))
8138 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8139 if (!internal)
8140 mention (b);
76727919 8141 gdb::observers::breakpoint_created.notify (b);
3ea46bff
YQ
8142
8143 if (update_gll)
44702360 8144 update_global_location_list (UGLL_MAY_INSERT);
c56053d2
PA
8145}
8146
9b70b993 8147static void
a6d9a66e 8148create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
63160a43 8149 int tempflag, const char *cond_string,
c0a91b2b 8150 const struct breakpoint_ops *ops)
c906108c 8151{
b270e6f9 8152 std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
ce78b96d 8153
b270e6f9 8154 init_catchpoint (c.get (), gdbarch, tempflag, cond_string, ops);
e29a4733
PA
8155
8156 c->forked_inferior_pid = null_ptid;
8157
b270e6f9 8158 install_breakpoint (0, std::move (c), 1);
c906108c
SS
8159}
8160
fe798b75
JB
8161/* Exec catchpoints. */
8162
b4d90040 8163/* An instance of this type is used to represent an exec catchpoint.
c1fc2657 8164 A breakpoint is really of this type iff its ops pointer points to
b4d90040
PA
8165 CATCH_EXEC_BREAKPOINT_OPS. */
8166
c1fc2657 8167struct exec_catchpoint : public breakpoint
b4d90040 8168{
c1fc2657 8169 ~exec_catchpoint () override;
b4d90040
PA
8170
8171 /* Filename of a program whose exec triggered this catchpoint.
8172 This field is only valid immediately after this catchpoint has
8173 triggered. */
8174 char *exec_pathname;
8175};
8176
c1fc2657 8177/* Exec catchpoint destructor. */
b4d90040 8178
c1fc2657 8179exec_catchpoint::~exec_catchpoint ()
b4d90040 8180{
c1fc2657 8181 xfree (this->exec_pathname);
b4d90040
PA
8182}
8183
77b06cd7
TJB
8184static int
8185insert_catch_exec (struct bp_location *bl)
c906108c 8186{
e99b03dc 8187 return target_insert_exec_catchpoint (inferior_ptid.pid ());
fe798b75 8188}
c906108c 8189
fe798b75 8190static int
73971819 8191remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
fe798b75 8192{
e99b03dc 8193 return target_remove_exec_catchpoint (inferior_ptid.pid ());
fe798b75 8194}
c906108c 8195
fe798b75 8196static int
f1310107 8197breakpoint_hit_catch_exec (const struct bp_location *bl,
bd522513 8198 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 8199 const struct target_waitstatus *ws)
fe798b75 8200{
b4d90040
PA
8201 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8202
f90263c1
TT
8203 if (ws->kind != TARGET_WAITKIND_EXECD)
8204 return 0;
8205
8206 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8207 return 1;
fe798b75 8208}
c906108c 8209
fe798b75 8210static enum print_stop_action
348d480f 8211print_it_catch_exec (bpstat bs)
fe798b75 8212{
36dfb11c 8213 struct ui_out *uiout = current_uiout;
348d480f 8214 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8215 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8216
fe798b75 8217 annotate_catchpoint (b->number);
f303dbd6 8218 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8219 if (b->disposition == disp_del)
112e8700 8220 uiout->text ("Temporary catchpoint ");
36dfb11c 8221 else
112e8700
SM
8222 uiout->text ("Catchpoint ");
8223 if (uiout->is_mi_like_p ())
36dfb11c 8224 {
112e8700
SM
8225 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8226 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8227 }
381befee 8228 uiout->field_signed ("bkptno", b->number);
112e8700
SM
8229 uiout->text (" (exec'd ");
8230 uiout->field_string ("new-exec", c->exec_pathname);
8231 uiout->text ("), ");
36dfb11c 8232
fe798b75 8233 return PRINT_SRC_AND_LOC;
c906108c
SS
8234}
8235
fe798b75 8236static void
a6d9a66e 8237print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 8238{
b4d90040 8239 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 8240 struct value_print_options opts;
79a45e25 8241 struct ui_out *uiout = current_uiout;
fe798b75
JB
8242
8243 get_user_print_options (&opts);
8244
8245 /* Field 4, the address, is omitted (which makes the columns
8246 not line up too nicely with the headers, but the effect
8247 is relatively readable). */
8248 if (opts.addressprint)
112e8700 8249 uiout->field_skip ("addr");
fe798b75 8250 annotate_field (5);
112e8700 8251 uiout->text ("exec");
b4d90040 8252 if (c->exec_pathname != NULL)
fe798b75 8253 {
112e8700
SM
8254 uiout->text (", program \"");
8255 uiout->field_string ("what", c->exec_pathname);
8256 uiout->text ("\" ");
fe798b75 8257 }
8ac3646f 8258
112e8700
SM
8259 if (uiout->is_mi_like_p ())
8260 uiout->field_string ("catch-type", "exec");
fe798b75
JB
8261}
8262
8263static void
8264print_mention_catch_exec (struct breakpoint *b)
8265{
8266 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8267}
8268
6149aea9
PA
8269/* Implement the "print_recreate" breakpoint_ops method for exec
8270 catchpoints. */
8271
8272static void
8273print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8274{
8275 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 8276 print_recreate_thread (b, fp);
6149aea9
PA
8277}
8278
2060206e 8279static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 8280
c906108c 8281static int
fba45db2 8282hw_breakpoint_used_count (void)
c906108c 8283{
c906108c 8284 int i = 0;
f1310107
TJB
8285 struct breakpoint *b;
8286 struct bp_location *bl;
c906108c
SS
8287
8288 ALL_BREAKPOINTS (b)
c5aa993b 8289 {
d6b74ac4 8290 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
8291 for (bl = b->loc; bl; bl = bl->next)
8292 {
8293 /* Special types of hardware breakpoints may use more than
8294 one register. */
348d480f 8295 i += b->ops->resources_needed (bl);
f1310107 8296 }
c5aa993b 8297 }
c906108c
SS
8298
8299 return i;
8300}
8301
a1398e0c
PA
8302/* Returns the resources B would use if it were a hardware
8303 watchpoint. */
8304
c906108c 8305static int
a1398e0c 8306hw_watchpoint_use_count (struct breakpoint *b)
c906108c 8307{
c906108c 8308 int i = 0;
e09342b5 8309 struct bp_location *bl;
c906108c 8310
a1398e0c
PA
8311 if (!breakpoint_enabled (b))
8312 return 0;
8313
8314 for (bl = b->loc; bl; bl = bl->next)
8315 {
8316 /* Special types of hardware watchpoints may use more than
8317 one register. */
8318 i += b->ops->resources_needed (bl);
8319 }
8320
8321 return i;
8322}
8323
8324/* Returns the sum the used resources of all hardware watchpoints of
8325 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8326 the sum of the used resources of all hardware watchpoints of other
8327 types _not_ TYPE. */
8328
8329static int
8330hw_watchpoint_used_count_others (struct breakpoint *except,
8331 enum bptype type, int *other_type_used)
8332{
8333 int i = 0;
8334 struct breakpoint *b;
8335
c906108c
SS
8336 *other_type_used = 0;
8337 ALL_BREAKPOINTS (b)
e09342b5 8338 {
a1398e0c
PA
8339 if (b == except)
8340 continue;
e09342b5
TJB
8341 if (!breakpoint_enabled (b))
8342 continue;
8343
a1398e0c
PA
8344 if (b->type == type)
8345 i += hw_watchpoint_use_count (b);
8346 else if (is_hardware_watchpoint (b))
8347 *other_type_used = 1;
e09342b5
TJB
8348 }
8349
c906108c
SS
8350 return i;
8351}
8352
c906108c 8353void
fba45db2 8354disable_watchpoints_before_interactive_call_start (void)
c906108c 8355{
c5aa993b 8356 struct breakpoint *b;
c906108c
SS
8357
8358 ALL_BREAKPOINTS (b)
c5aa993b 8359 {
cc60f2e3 8360 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 8361 {
b5de0fa7 8362 b->enable_state = bp_call_disabled;
44702360 8363 update_global_location_list (UGLL_DONT_INSERT);
c5aa993b
JM
8364 }
8365 }
c906108c
SS
8366}
8367
8368void
fba45db2 8369enable_watchpoints_after_interactive_call_stop (void)
c906108c 8370{
c5aa993b 8371 struct breakpoint *b;
c906108c
SS
8372
8373 ALL_BREAKPOINTS (b)
c5aa993b 8374 {
cc60f2e3 8375 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 8376 {
b5de0fa7 8377 b->enable_state = bp_enabled;
44702360 8378 update_global_location_list (UGLL_MAY_INSERT);
c5aa993b
JM
8379 }
8380 }
c906108c
SS
8381}
8382
8bea4e01
UW
8383void
8384disable_breakpoints_before_startup (void)
8385{
6c95b8df 8386 current_program_space->executing_startup = 1;
44702360 8387 update_global_location_list (UGLL_DONT_INSERT);
8bea4e01
UW
8388}
8389
8390void
8391enable_breakpoints_after_startup (void)
8392{
6c95b8df 8393 current_program_space->executing_startup = 0;
f8eba3c6 8394 breakpoint_re_set ();
8bea4e01
UW
8395}
8396
7c16b83e
PA
8397/* Create a new single-step breakpoint for thread THREAD, with no
8398 locations. */
c906108c 8399
7c16b83e
PA
8400static struct breakpoint *
8401new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8402{
b270e6f9 8403 std::unique_ptr<breakpoint> b (new breakpoint ());
7c16b83e 8404
b270e6f9 8405 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step,
7c16b83e
PA
8406 &momentary_breakpoint_ops);
8407
8408 b->disposition = disp_donttouch;
8409 b->frame_id = null_frame_id;
8410
8411 b->thread = thread;
8412 gdb_assert (b->thread != 0);
8413
b270e6f9 8414 return add_to_breakpoint_chain (std::move (b));
7c16b83e
PA
8415}
8416
8417/* Set a momentary breakpoint of type TYPE at address specified by
8418 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8419 frame. */
c906108c 8420
454dafbd 8421breakpoint_up
a6d9a66e
UW
8422set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8423 struct frame_id frame_id, enum bptype type)
c906108c 8424{
52f0bd74 8425 struct breakpoint *b;
edb3359d 8426
193facb3
JK
8427 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8428 tail-called one. */
8429 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 8430
06edf0c0 8431 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
8432 b->enable_state = bp_enabled;
8433 b->disposition = disp_donttouch;
818dd999 8434 b->frame_id = frame_id;
c906108c 8435
00431a78 8436 b->thread = inferior_thread ()->global_num;
c906108c 8437
44702360 8438 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 8439
454dafbd 8440 return breakpoint_up (b);
c906108c 8441}
611c83ae 8442
06edf0c0 8443/* Make a momentary breakpoint based on the master breakpoint ORIG.
a1aa2221
LM
8444 The new breakpoint will have type TYPE, use OPS as its
8445 breakpoint_ops, and will set enabled to LOC_ENABLED. */
e58b0e63 8446
06edf0c0
PA
8447static struct breakpoint *
8448momentary_breakpoint_from_master (struct breakpoint *orig,
8449 enum bptype type,
a1aa2221
LM
8450 const struct breakpoint_ops *ops,
8451 int loc_enabled)
e58b0e63
PA
8452{
8453 struct breakpoint *copy;
8454
06edf0c0 8455 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 8456 copy->loc = allocate_bp_location (copy);
0ba852ab 8457 set_breakpoint_location_function (copy->loc);
e58b0e63 8458
a6d9a66e 8459 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
8460 copy->loc->requested_address = orig->loc->requested_address;
8461 copy->loc->address = orig->loc->address;
8462 copy->loc->section = orig->loc->section;
6c95b8df 8463 copy->loc->pspace = orig->loc->pspace;
55aa24fb 8464 copy->loc->probe = orig->loc->probe;
f8eba3c6 8465 copy->loc->line_number = orig->loc->line_number;
2f202fde 8466 copy->loc->symtab = orig->loc->symtab;
a1aa2221 8467 copy->loc->enabled = loc_enabled;
e58b0e63
PA
8468 copy->frame_id = orig->frame_id;
8469 copy->thread = orig->thread;
6c95b8df 8470 copy->pspace = orig->pspace;
e58b0e63
PA
8471
8472 copy->enable_state = bp_enabled;
8473 copy->disposition = disp_donttouch;
8474 copy->number = internal_breakpoint_number--;
8475
44702360 8476 update_global_location_list_nothrow (UGLL_DONT_INSERT);
e58b0e63
PA
8477 return copy;
8478}
8479
06edf0c0
PA
8480/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8481 ORIG is NULL. */
8482
8483struct breakpoint *
8484clone_momentary_breakpoint (struct breakpoint *orig)
8485{
8486 /* If there's nothing to clone, then return nothing. */
8487 if (orig == NULL)
8488 return NULL;
8489
a1aa2221 8490 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
06edf0c0
PA
8491}
8492
454dafbd 8493breakpoint_up
a6d9a66e
UW
8494set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8495 enum bptype type)
611c83ae
PA
8496{
8497 struct symtab_and_line sal;
8498
8499 sal = find_pc_line (pc, 0);
8500 sal.pc = pc;
8501 sal.section = find_pc_overlay (pc);
8502 sal.explicit_pc = 1;
8503
a6d9a66e 8504 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 8505}
c906108c 8506\f
c5aa993b 8507
c906108c
SS
8508/* Tell the user we have just set a breakpoint B. */
8509
8510static void
fba45db2 8511mention (struct breakpoint *b)
c906108c 8512{
348d480f 8513 b->ops->print_mention (b);
2d33446d 8514 current_uiout->text ("\n");
c906108c 8515}
c906108c 8516\f
c5aa993b 8517
5133a315 8518static bool bp_loc_is_permanent (struct bp_location *loc);
1a853c52 8519
0d381245 8520static struct bp_location *
39d61571 8521add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
8522 const struct symtab_and_line *sal)
8523{
8524 struct bp_location *loc, **tmp;
3742cc8b
YQ
8525 CORE_ADDR adjusted_address;
8526 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8527
8528 if (loc_gdbarch == NULL)
8529 loc_gdbarch = b->gdbarch;
8530
8531 /* Adjust the breakpoint's address prior to allocating a location.
8532 Once we call allocate_bp_location(), that mostly uninitialized
8533 location will be placed on the location chain. Adjustment of the
8534 breakpoint may cause target_read_memory() to be called and we do
8535 not want its scan of the location chain to find a breakpoint and
8536 location that's only been partially initialized. */
8537 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8538 sal->pc, b->type);
0d381245 8539
d30113d4 8540 /* Sort the locations by their ADDRESS. */
39d61571 8541 loc = allocate_bp_location (b);
d30113d4
JK
8542 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8543 tmp = &((*tmp)->next))
0d381245 8544 ;
d30113d4 8545 loc->next = *tmp;
0d381245 8546 *tmp = loc;
3742cc8b 8547
0d381245 8548 loc->requested_address = sal->pc;
3742cc8b 8549 loc->address = adjusted_address;
6c95b8df 8550 loc->pspace = sal->pspace;
935676c9 8551 loc->probe.prob = sal->prob;
729662a5 8552 loc->probe.objfile = sal->objfile;
6c95b8df 8553 gdb_assert (loc->pspace != NULL);
0d381245 8554 loc->section = sal->section;
3742cc8b 8555 loc->gdbarch = loc_gdbarch;
f8eba3c6 8556 loc->line_number = sal->line;
2f202fde 8557 loc->symtab = sal->symtab;
4a27f119 8558 loc->symbol = sal->symbol;
3467ec66
PA
8559 loc->msymbol = sal->msymbol;
8560 loc->objfile = sal->objfile;
f8eba3c6 8561
0ba852ab 8562 set_breakpoint_location_function (loc);
1a853c52 8563
6ae88661
LM
8564 /* While by definition, permanent breakpoints are already present in the
8565 code, we don't mark the location as inserted. Normally one would expect
8566 that GDB could rely on that breakpoint instruction to stop the program,
8567 thus removing the need to insert its own breakpoint, except that executing
8568 the breakpoint instruction can kill the target instead of reporting a
8569 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
8570 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
8571 with "Trap 0x02 while interrupts disabled, Error state". Letting the
8572 breakpoint be inserted normally results in QEMU knowing about the GDB
8573 breakpoint, and thus trap before the breakpoint instruction is executed.
8574 (If GDB later needs to continue execution past the permanent breakpoint,
8575 it manually increments the PC, thus avoiding executing the breakpoint
8576 instruction.) */
1a853c52 8577 if (bp_loc_is_permanent (loc))
6ae88661 8578 loc->permanent = 1;
1a853c52 8579
0d381245
VP
8580 return loc;
8581}
514f746b
AR
8582\f
8583
5133a315
LM
8584/* Return true if LOC is pointing to a permanent breakpoint,
8585 return false otherwise. */
1cf4d951 8586
5133a315 8587static bool
1cf4d951
PA
8588bp_loc_is_permanent (struct bp_location *loc)
8589{
514f746b
AR
8590 gdb_assert (loc != NULL);
8591
cb1e4e32
PA
8592 /* If we have a non-breakpoint-backed catchpoint or a software
8593 watchpoint, just return 0. We should not attempt to read from
8594 the addresses the locations of these breakpoint types point to.
5133a315 8595 gdbarch_program_breakpoint_here_p, below, will attempt to read
244558af 8596 memory. */
cb1e4e32 8597 if (!bl_address_is_meaningful (loc))
5133a315 8598 return false;
244558af 8599
5ed8105e 8600 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 8601 switch_to_program_space_and_thread (loc->pspace);
5133a315 8602 return gdbarch_program_breakpoint_here_p (loc->gdbarch, loc->address);
514f746b
AR
8603}
8604
e7e0cddf
SS
8605/* Build a command list for the dprintf corresponding to the current
8606 settings of the dprintf style options. */
8607
8608static void
8609update_dprintf_command_list (struct breakpoint *b)
8610{
8611 char *dprintf_args = b->extra_string;
8612 char *printf_line = NULL;
8613
8614 if (!dprintf_args)
8615 return;
8616
8617 dprintf_args = skip_spaces (dprintf_args);
8618
8619 /* Allow a comma, as it may have terminated a location, but don't
8620 insist on it. */
8621 if (*dprintf_args == ',')
8622 ++dprintf_args;
8623 dprintf_args = skip_spaces (dprintf_args);
8624
8625 if (*dprintf_args != '"')
8626 error (_("Bad format string, missing '\"'."));
8627
d3ce09f5 8628 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 8629 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 8630 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
8631 {
8632 if (!dprintf_function)
8633 error (_("No function supplied for dprintf call"));
8634
8635 if (dprintf_channel && strlen (dprintf_channel) > 0)
8636 printf_line = xstrprintf ("call (void) %s (%s,%s)",
8637 dprintf_function,
8638 dprintf_channel,
8639 dprintf_args);
8640 else
8641 printf_line = xstrprintf ("call (void) %s (%s)",
8642 dprintf_function,
8643 dprintf_args);
8644 }
d3ce09f5
SS
8645 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
8646 {
8647 if (target_can_run_breakpoint_commands ())
8648 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
8649 else
8650 {
8651 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
8652 printf_line = xstrprintf ("printf %s", dprintf_args);
8653 }
8654 }
e7e0cddf
SS
8655 else
8656 internal_error (__FILE__, __LINE__,
8657 _("Invalid dprintf style."));
8658
f28045c2 8659 gdb_assert (printf_line != NULL);
e7e0cddf 8660
12973681
TT
8661 /* Manufacture a printf sequence. */
8662 struct command_line *printf_cmd_line
8663 = new struct command_line (simple_control, printf_line);
8664 breakpoint_set_commands (b, counted_command_line (printf_cmd_line,
8665 command_lines_deleter ()));
e7e0cddf
SS
8666}
8667
8668/* Update all dprintf commands, making their command lists reflect
8669 current style settings. */
8670
8671static void
eb4c3f4a 8672update_dprintf_commands (const char *args, int from_tty,
e7e0cddf
SS
8673 struct cmd_list_element *c)
8674{
8675 struct breakpoint *b;
8676
8677 ALL_BREAKPOINTS (b)
8678 {
8679 if (b->type == bp_dprintf)
8680 update_dprintf_command_list (b);
8681 }
8682}
c3f6f71d 8683
f00aae0f
KS
8684/* Create a breakpoint with SAL as location. Use LOCATION
8685 as a description of the location, and COND_STRING
b35a8b2f
DE
8686 as condition expression. If LOCATION is NULL then create an
8687 "address location" from the address in the SAL. */
018d34a4
VP
8688
8689static void
d9b3f62e 8690init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
6c5b2ebe 8691 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8692 event_location_up &&location,
e1e01040
PA
8693 gdb::unique_xmalloc_ptr<char> filter,
8694 gdb::unique_xmalloc_ptr<char> cond_string,
8695 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
8696 enum bptype type, enum bpdisp disposition,
8697 int thread, int task, int ignore_count,
c0a91b2b 8698 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
8699 int enabled, int internal, unsigned flags,
8700 int display_canonical)
018d34a4 8701{
0d381245 8702 int i;
018d34a4
VP
8703
8704 if (type == bp_hardware_breakpoint)
8705 {
fbbd034e
AS
8706 int target_resources_ok;
8707
8708 i = hw_breakpoint_used_count ();
8709 target_resources_ok =
8710 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
8711 i + 1, 0);
8712 if (target_resources_ok == 0)
8713 error (_("No hardware breakpoint support in the target."));
8714 else if (target_resources_ok < 0)
8715 error (_("Hardware breakpoints used exceeds limit."));
8716 }
8717
6c5b2ebe 8718 gdb_assert (!sals.empty ());
6c95b8df 8719
6c5b2ebe 8720 for (const auto &sal : sals)
0d381245 8721 {
0d381245
VP
8722 struct bp_location *loc;
8723
8724 if (from_tty)
5af949e3
UW
8725 {
8726 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8727 if (!loc_gdbarch)
8728 loc_gdbarch = gdbarch;
8729
8730 describe_other_breakpoints (loc_gdbarch,
6c95b8df 8731 sal.pspace, sal.pc, sal.section, thread);
5af949e3 8732 }
0d381245 8733
6c5b2ebe 8734 if (&sal == &sals[0])
0d381245 8735 {
d9b3f62e 8736 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 8737 b->thread = thread;
4a306c9a 8738 b->task = task;
855a6e68 8739
e1e01040
PA
8740 b->cond_string = cond_string.release ();
8741 b->extra_string = extra_string.release ();
0d381245 8742 b->ignore_count = ignore_count;
41447f92 8743 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 8744 b->disposition = disposition;
6c95b8df 8745
44f238bb
PA
8746 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8747 b->loc->inserted = 1;
8748
0fb4aa4b
PA
8749 if (type == bp_static_tracepoint)
8750 {
d9b3f62e 8751 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
8752 struct static_tracepoint_marker marker;
8753
983af33b 8754 if (strace_marker_p (b))
0fb4aa4b
PA
8755 {
8756 /* We already know the marker exists, otherwise, we
8757 wouldn't see a sal for it. */
d28cd78a
TT
8758 const char *p
8759 = &event_location_to_string (b->location.get ())[3];
f00aae0f 8760 const char *endp;
0fb4aa4b 8761
f1735a53 8762 p = skip_spaces (p);
0fb4aa4b 8763
f1735a53 8764 endp = skip_to_space (p);
0fb4aa4b 8765
5d9310c4 8766 t->static_trace_marker_id.assign (p, endp - p);
0fb4aa4b 8767
3e43a32a
MS
8768 printf_filtered (_("Probed static tracepoint "
8769 "marker \"%s\"\n"),
5d9310c4 8770 t->static_trace_marker_id.c_str ());
0fb4aa4b
PA
8771 }
8772 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
8773 {
5d9310c4 8774 t->static_trace_marker_id = std::move (marker.str_id);
0fb4aa4b 8775
3e43a32a
MS
8776 printf_filtered (_("Probed static tracepoint "
8777 "marker \"%s\"\n"),
5d9310c4 8778 t->static_trace_marker_id.c_str ());
0fb4aa4b
PA
8779 }
8780 else
3e43a32a
MS
8781 warning (_("Couldn't determine the static "
8782 "tracepoint marker to probe"));
0fb4aa4b
PA
8783 }
8784
0d381245
VP
8785 loc = b->loc;
8786 }
8787 else
018d34a4 8788 {
39d61571 8789 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
8790 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8791 loc->inserted = 1;
0d381245
VP
8792 }
8793
8794 if (b->cond_string)
8795 {
bbc13ae3
KS
8796 const char *arg = b->cond_string;
8797
1bb9788d
TT
8798 loc->cond = parse_exp_1 (&arg, loc->address,
8799 block_for_pc (loc->address), 0);
0d381245 8800 if (*arg)
588ae58c 8801 error (_("Garbage '%s' follows condition"), arg);
018d34a4 8802 }
e7e0cddf
SS
8803
8804 /* Dynamic printf requires and uses additional arguments on the
8805 command line, otherwise it's an error. */
8806 if (type == bp_dprintf)
8807 {
8808 if (b->extra_string)
8809 update_dprintf_command_list (b);
8810 else
8811 error (_("Format string required"));
8812 }
8813 else if (b->extra_string)
588ae58c 8814 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 8815 }
018d34a4 8816
56435ebe 8817 b->display_canonical = display_canonical;
f00aae0f 8818 if (location != NULL)
d28cd78a 8819 b->location = std::move (location);
018d34a4 8820 else
d28cd78a 8821 b->location = new_address_location (b->loc->address, NULL, 0);
c0e8dcd8 8822 b->filter = std::move (filter);
d9b3f62e 8823}
018d34a4 8824
d9b3f62e
PA
8825static void
8826create_breakpoint_sal (struct gdbarch *gdbarch,
6c5b2ebe 8827 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8828 event_location_up &&location,
e1e01040
PA
8829 gdb::unique_xmalloc_ptr<char> filter,
8830 gdb::unique_xmalloc_ptr<char> cond_string,
8831 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
8832 enum bptype type, enum bpdisp disposition,
8833 int thread, int task, int ignore_count,
c0a91b2b 8834 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
8835 int enabled, int internal, unsigned flags,
8836 int display_canonical)
d9b3f62e 8837{
a5e364af 8838 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (type);
d9b3f62e 8839
a5e364af 8840 init_breakpoint_sal (b.get (), gdbarch,
ffc2605c 8841 sals, std::move (location),
e1e01040
PA
8842 std::move (filter),
8843 std::move (cond_string),
8844 std::move (extra_string),
d9b3f62e
PA
8845 type, disposition,
8846 thread, task, ignore_count,
8847 ops, from_tty,
44f238bb
PA
8848 enabled, internal, flags,
8849 display_canonical);
d9b3f62e 8850
b270e6f9 8851 install_breakpoint (internal, std::move (b), 0);
018d34a4
VP
8852}
8853
8854/* Add SALS.nelts breakpoints to the breakpoint table. For each
8855 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
8856 value. COND_STRING, if not NULL, specified the condition to be
8857 used for all breakpoints. Essentially the only case where
8858 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
8859 function. In that case, it's still not possible to specify
8860 separate conditions for different overloaded functions, so
8861 we take just a single condition string.
8862
c3f6f71d 8863 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 8864 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
8865 array contents). If the function fails (error() is called), the
8866 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 8867 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
8868
8869static void
8cdf0e15 8870create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 8871 struct linespec_result *canonical,
e1e01040
PA
8872 gdb::unique_xmalloc_ptr<char> cond_string,
8873 gdb::unique_xmalloc_ptr<char> extra_string,
8cdf0e15
VP
8874 enum bptype type, enum bpdisp disposition,
8875 int thread, int task, int ignore_count,
c0a91b2b 8876 const struct breakpoint_ops *ops, int from_tty,
44f238bb 8877 int enabled, int internal, unsigned flags)
c906108c 8878{
f8eba3c6 8879 if (canonical->pre_expanded)
6c5b2ebe 8880 gdb_assert (canonical->lsals.size () == 1);
f8eba3c6 8881
6c5b2ebe 8882 for (const auto &lsal : canonical->lsals)
c3f6f71d 8883 {
f00aae0f 8884 /* Note that 'location' can be NULL in the case of a plain
f8eba3c6 8885 'break', without arguments. */
ffc2605c 8886 event_location_up location
f00aae0f 8887 = (canonical->location != NULL
8e9e35b1 8888 ? copy_event_location (canonical->location.get ()) : NULL);
e1e01040 8889 gdb::unique_xmalloc_ptr<char> filter_string
6c5b2ebe 8890 (lsal.canonical != NULL ? xstrdup (lsal.canonical) : NULL);
0d381245 8891
6c5b2ebe 8892 create_breakpoint_sal (gdbarch, lsal.sals,
ffc2605c 8893 std::move (location),
e1e01040
PA
8894 std::move (filter_string),
8895 std::move (cond_string),
8896 std::move (extra_string),
e7e0cddf 8897 type, disposition,
84f4c1fe 8898 thread, task, ignore_count, ops,
44f238bb 8899 from_tty, enabled, internal, flags,
56435ebe 8900 canonical->special_display);
c3f6f71d 8901 }
c3f6f71d 8902}
c906108c 8903
f00aae0f 8904/* Parse LOCATION which is assumed to be a SAL specification possibly
c3f6f71d 8905 followed by conditionals. On return, SALS contains an array of SAL
f00aae0f
KS
8906 addresses found. LOCATION points to the end of the SAL (for
8907 linespec locations).
9998af43
TJB
8908
8909 The array and the line spec strings are allocated on the heap, it is
8910 the caller's responsibility to free them. */
c906108c 8911
b9362cc7 8912static void
f00aae0f 8913parse_breakpoint_sals (const struct event_location *location,
58438ac1 8914 struct linespec_result *canonical)
c3f6f71d 8915{
f00aae0f
KS
8916 struct symtab_and_line cursal;
8917
8918 if (event_location_type (location) == LINESPEC_LOCATION)
8919 {
a20714ff 8920 const char *spec = get_linespec_location (location)->spec_string;
f00aae0f 8921
a20714ff 8922 if (spec == NULL)
f00aae0f
KS
8923 {
8924 /* The last displayed codepoint, if it's valid, is our default
8925 breakpoint address. */
8926 if (last_displayed_sal_is_valid ())
8927 {
f00aae0f
KS
8928 /* Set sal's pspace, pc, symtab, and line to the values
8929 corresponding to the last call to print_frame_info.
8930 Be sure to reinitialize LINE with NOTCURRENT == 0
8931 as the breakpoint line number is inappropriate otherwise.
8932 find_pc_line would adjust PC, re-set it back. */
51abb421
PA
8933 symtab_and_line sal = get_last_displayed_sal ();
8934 CORE_ADDR pc = sal.pc;
8935
f00aae0f
KS
8936 sal = find_pc_line (pc, 0);
8937
8938 /* "break" without arguments is equivalent to "break *PC"
8939 where PC is the last displayed codepoint's address. So
8940 make sure to set sal.explicit_pc to prevent GDB from
8941 trying to expand the list of sals to include all other
8942 instances with the same symtab and line. */
8943 sal.pc = pc;
8944 sal.explicit_pc = 1;
8945
6c5b2ebe
PA
8946 struct linespec_sals lsal;
8947 lsal.sals = {sal};
f00aae0f
KS
8948 lsal.canonical = NULL;
8949
6c5b2ebe 8950 canonical->lsals.push_back (std::move (lsal));
f00aae0f
KS
8951 return;
8952 }
8953 else
8954 error (_("No default breakpoint address now."));
c906108c 8955 }
c906108c 8956 }
f00aae0f
KS
8957
8958 /* Force almost all breakpoints to be in terms of the
8959 current_source_symtab (which is decode_line_1's default).
8960 This should produce the results we want almost all of the
8961 time while leaving default_breakpoint_* alone.
8962
8963 ObjC: However, don't match an Objective-C method name which
8964 may have a '+' or '-' succeeded by a '['. */
8965 cursal = get_current_source_symtab_and_line ();
8966 if (last_displayed_sal_is_valid ())
c906108c 8967 {
a20714ff 8968 const char *spec = NULL;
cc80f267 8969
f00aae0f 8970 if (event_location_type (location) == LINESPEC_LOCATION)
a20714ff 8971 spec = get_linespec_location (location)->spec_string;
cc80f267 8972
f00aae0f 8973 if (!cursal.symtab
a20714ff
PA
8974 || (spec != NULL
8975 && strchr ("+-", spec[0]) != NULL
8976 && spec[1] != '['))
f00aae0f 8977 {
c2f4122d 8978 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f
KS
8979 get_last_displayed_symtab (),
8980 get_last_displayed_line (),
8981 canonical, NULL, NULL);
8982 return;
8983 }
c906108c 8984 }
f00aae0f 8985
c2f4122d 8986 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f 8987 cursal.symtab, cursal.line, canonical, NULL, NULL);
c3f6f71d 8988}
c906108c 8989
c906108c 8990
c3f6f71d 8991/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 8992 inserted as a breakpoint. If it can't throw an error. */
c906108c 8993
b9362cc7 8994static void
6c5b2ebe 8995breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
c3f6f71d 8996{
6c5b2ebe
PA
8997 for (auto &sal : sals)
8998 resolve_sal_pc (&sal);
c3f6f71d
JM
8999}
9000
7a697b8d
SS
9001/* Fast tracepoints may have restrictions on valid locations. For
9002 instance, a fast tracepoint using a jump instead of a trap will
9003 likely have to overwrite more bytes than a trap would, and so can
9004 only be placed where the instruction is longer than the jump, or a
9005 multi-instruction sequence does not have a jump into the middle of
9006 it, etc. */
9007
9008static void
9009check_fast_tracepoint_sals (struct gdbarch *gdbarch,
6c5b2ebe 9010 gdb::array_view<const symtab_and_line> sals)
7a697b8d 9011{
6c5b2ebe 9012 for (const auto &sal : sals)
7a697b8d 9013 {
f8eba3c6
TT
9014 struct gdbarch *sarch;
9015
6c5b2ebe 9016 sarch = get_sal_arch (sal);
f8eba3c6
TT
9017 /* We fall back to GDBARCH if there is no architecture
9018 associated with SAL. */
9019 if (sarch == NULL)
9020 sarch = gdbarch;
281d762b
TT
9021 std::string msg;
9022 if (!gdbarch_fast_tracepoint_valid_at (sarch, sal.pc, &msg))
53c3572a 9023 error (_("May not have a fast tracepoint at %s%s"),
281d762b 9024 paddress (sarch, sal.pc), msg.c_str ());
7a697b8d
SS
9025 }
9026}
9027
018d34a4
VP
9028/* Given TOK, a string specification of condition and thread, as
9029 accepted by the 'break' command, extract the condition
9030 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9031 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9032 If no condition is found, *COND_STRING is set to NULL.
9033 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9034
9035static void
bbc13ae3 9036find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9037 char **cond_string, int *thread, int *task,
9038 char **rest)
018d34a4
VP
9039{
9040 *cond_string = NULL;
9041 *thread = -1;
ed1d1739
KS
9042 *task = 0;
9043 *rest = NULL;
9044
018d34a4
VP
9045 while (tok && *tok)
9046 {
bbc13ae3 9047 const char *end_tok;
018d34a4 9048 int toklen;
bbc13ae3
KS
9049 const char *cond_start = NULL;
9050 const char *cond_end = NULL;
cc59ec59 9051
f1735a53 9052 tok = skip_spaces (tok);
e7e0cddf
SS
9053
9054 if ((*tok == '"' || *tok == ',') && rest)
9055 {
9056 *rest = savestring (tok, strlen (tok));
9057 return;
9058 }
9059
f1735a53 9060 end_tok = skip_to_space (tok);
d634f2de 9061
018d34a4 9062 toklen = end_tok - tok;
d634f2de 9063
018d34a4
VP
9064 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9065 {
9066 tok = cond_start = end_tok + 1;
4d01a485 9067 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
018d34a4 9068 cond_end = tok;
d634f2de 9069 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9070 }
9071 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9072 {
5d5658a1
PA
9073 const char *tmptok;
9074 struct thread_info *thr;
d634f2de 9075
018d34a4 9076 tok = end_tok + 1;
5d5658a1 9077 thr = parse_thread_id (tok, &tmptok);
018d34a4
VP
9078 if (tok == tmptok)
9079 error (_("Junk after thread keyword."));
5d5658a1 9080 *thread = thr->global_num;
bbc13ae3 9081 tok = tmptok;
018d34a4 9082 }
4a306c9a
JB
9083 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9084 {
9085 char *tmptok;
9086
9087 tok = end_tok + 1;
bbc13ae3 9088 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9089 if (tok == tmptok)
9090 error (_("Junk after task keyword."));
9091 if (!valid_task_id (*task))
b6199126 9092 error (_("Unknown task %d."), *task);
bbc13ae3 9093 tok = tmptok;
4a306c9a 9094 }
e7e0cddf
SS
9095 else if (rest)
9096 {
9097 *rest = savestring (tok, strlen (tok));
ccab2054 9098 return;
e7e0cddf 9099 }
018d34a4
VP
9100 else
9101 error (_("Junk at end of arguments."));
9102 }
9103}
9104
0fb4aa4b
PA
9105/* Decode a static tracepoint marker spec. */
9106
6c5b2ebe 9107static std::vector<symtab_and_line>
f00aae0f 9108decode_static_tracepoint_spec (const char **arg_p)
0fb4aa4b 9109{
f00aae0f
KS
9110 const char *p = &(*arg_p)[3];
9111 const char *endp;
0fb4aa4b 9112
f1735a53 9113 p = skip_spaces (p);
0fb4aa4b 9114
f1735a53 9115 endp = skip_to_space (p);
0fb4aa4b 9116
81b1e71c 9117 std::string marker_str (p, endp - p);
0fb4aa4b 9118
5d9310c4
SM
9119 std::vector<static_tracepoint_marker> markers
9120 = target_static_tracepoint_markers_by_strid (marker_str.c_str ());
9121 if (markers.empty ())
81b1e71c
TT
9122 error (_("No known static tracepoint marker named %s"),
9123 marker_str.c_str ());
0fb4aa4b 9124
6c5b2ebe 9125 std::vector<symtab_and_line> sals;
5d9310c4 9126 sals.reserve (markers.size ());
0fb4aa4b 9127
5d9310c4 9128 for (const static_tracepoint_marker &marker : markers)
0fb4aa4b 9129 {
5d9310c4
SM
9130 symtab_and_line sal = find_pc_line (marker.address, 0);
9131 sal.pc = marker.address;
6c5b2ebe 9132 sals.push_back (sal);
5d9310c4 9133 }
0fb4aa4b 9134
0fb4aa4b
PA
9135 *arg_p = endp;
9136 return sals;
9137}
9138
bac7c5cf
GB
9139/* Returns the breakpoint ops appropriate for use with with LOCATION_TYPE and
9140 according to IS_TRACEPOINT. */
9141
9142static const struct breakpoint_ops *
9143breakpoint_ops_for_event_location_type (enum event_location_type location_type,
9144 bool is_tracepoint)
9145{
9146 if (is_tracepoint)
9147 {
9148 if (location_type == PROBE_LOCATION)
9149 return &tracepoint_probe_breakpoint_ops;
9150 else
9151 return &tracepoint_breakpoint_ops;
9152 }
9153 else
9154 {
9155 if (location_type == PROBE_LOCATION)
9156 return &bkpt_probe_breakpoint_ops;
9157 else
9158 return &bkpt_breakpoint_ops;
9159 }
9160}
9161
9162/* See breakpoint.h. */
9163
9164const struct breakpoint_ops *
9165breakpoint_ops_for_event_location (const struct event_location *location,
9166 bool is_tracepoint)
9167{
9168 if (location != nullptr)
9169 return breakpoint_ops_for_event_location_type
9170 (event_location_type (location), is_tracepoint);
9171 return is_tracepoint ? &tracepoint_breakpoint_ops : &bkpt_breakpoint_ops;
9172}
9173
f00aae0f 9174/* See breakpoint.h. */
0101ce28 9175
8cdf0e15
VP
9176int
9177create_breakpoint (struct gdbarch *gdbarch,
e1e01040
PA
9178 const struct event_location *location,
9179 const char *cond_string,
9180 int thread, const char *extra_string,
f00aae0f 9181 int parse_extra,
0fb4aa4b 9182 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9183 int ignore_count,
9184 enum auto_boolean pending_break_support,
c0a91b2b 9185 const struct breakpoint_ops *ops,
44f238bb
PA
9186 int from_tty, int enabled, int internal,
9187 unsigned flags)
c3f6f71d 9188{
7efd8fc2 9189 struct linespec_result canonical;
0101ce28 9190 int pending = 0;
4a306c9a 9191 int task = 0;
86b17b60 9192 int prev_bkpt_count = breakpoint_count;
c3f6f71d 9193
348d480f
PA
9194 gdb_assert (ops != NULL);
9195
f00aae0f
KS
9196 /* If extra_string isn't useful, set it to NULL. */
9197 if (extra_string != NULL && *extra_string == '\0')
9198 extra_string = NULL;
9199
a70b8144 9200 try
b78a6381 9201 {
f00aae0f 9202 ops->create_sals_from_location (location, &canonical, type_wanted);
b78a6381 9203 }
230d2906 9204 catch (const gdb_exception_error &e)
0101ce28 9205 {
492d29ea
PA
9206 /* If caller is interested in rc value from parse, set
9207 value. */
9208 if (e.error == NOT_FOUND_ERROR)
0101ce28 9209 {
05ff989b
AC
9210 /* If pending breakpoint support is turned off, throw
9211 error. */
fa8d40ab
JJ
9212
9213 if (pending_break_support == AUTO_BOOLEAN_FALSE)
eedc3f4f 9214 throw;
723a2275
VP
9215
9216 exception_print (gdb_stderr, e);
fa8d40ab 9217
05ff989b
AC
9218 /* If pending breakpoint support is auto query and the user
9219 selects no, then simply return the error code. */
059fb39f 9220 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
9221 && !nquery (_("Make %s pending on future shared library load? "),
9222 bptype_string (type_wanted)))
fd9b8c24 9223 return 0;
fa8d40ab 9224
05ff989b
AC
9225 /* At this point, either the user was queried about setting
9226 a pending breakpoint and selected yes, or pending
9227 breakpoint behavior is on and thus a pending breakpoint
9228 is defaulted on behalf of the user. */
f00aae0f 9229 pending = 1;
0101ce28 9230 }
492d29ea 9231 else
eedc3f4f 9232 throw;
0101ce28 9233 }
492d29ea 9234
6c5b2ebe 9235 if (!pending && canonical.lsals.empty ())
492d29ea 9236 return 0;
c3f6f71d 9237
c3f6f71d
JM
9238 /* Resolve all line numbers to PC's and verify that the addresses
9239 are ok for the target. */
0101ce28 9240 if (!pending)
f8eba3c6 9241 {
6c5b2ebe
PA
9242 for (auto &lsal : canonical.lsals)
9243 breakpoint_sals_to_pc (lsal.sals);
f8eba3c6 9244 }
c3f6f71d 9245
7a697b8d 9246 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 9247 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6 9248 {
6c5b2ebe
PA
9249 for (const auto &lsal : canonical.lsals)
9250 check_fast_tracepoint_sals (gdbarch, lsal.sals);
f8eba3c6 9251 }
7a697b8d 9252
c3f6f71d
JM
9253 /* Verify that condition can be parsed, before setting any
9254 breakpoints. Allocate a separate condition expression for each
4a64f543 9255 breakpoint. */
0101ce28 9256 if (!pending)
c3f6f71d 9257 {
e1e01040
PA
9258 gdb::unique_xmalloc_ptr<char> cond_string_copy;
9259 gdb::unique_xmalloc_ptr<char> extra_string_copy;
9260
f00aae0f 9261 if (parse_extra)
72b2ff0e 9262 {
0878d0fa 9263 char *rest;
e1e01040 9264 char *cond;
52d361e1 9265
6c5b2ebe 9266 const linespec_sals &lsal = canonical.lsals[0];
52d361e1 9267
0878d0fa
YQ
9268 /* Here we only parse 'arg' to separate condition
9269 from thread number, so parsing in context of first
9270 sal is OK. When setting the breakpoint we'll
9271 re-parse it in context of each sal. */
9272
6c5b2ebe 9273 find_condition_and_thread (extra_string, lsal.sals[0].pc,
e1e01040
PA
9274 &cond, &thread, &task, &rest);
9275 cond_string_copy.reset (cond);
9276 extra_string_copy.reset (rest);
72b2ff0e 9277 }
2f069f6f 9278 else
72b2ff0e 9279 {
f00aae0f
KS
9280 if (type_wanted != bp_dprintf
9281 && extra_string != NULL && *extra_string != '\0')
9282 error (_("Garbage '%s' at end of location"), extra_string);
0878d0fa
YQ
9283
9284 /* Create a private copy of condition string. */
9285 if (cond_string)
e1e01040 9286 cond_string_copy.reset (xstrdup (cond_string));
0878d0fa
YQ
9287 /* Create a private copy of any extra string. */
9288 if (extra_string)
e1e01040 9289 extra_string_copy.reset (xstrdup (extra_string));
72b2ff0e 9290 }
0fb4aa4b 9291
52d361e1 9292 ops->create_breakpoints_sal (gdbarch, &canonical,
e1e01040
PA
9293 std::move (cond_string_copy),
9294 std::move (extra_string_copy),
9295 type_wanted,
d9b3f62e
PA
9296 tempflag ? disp_del : disp_donttouch,
9297 thread, task, ignore_count, ops,
44f238bb 9298 from_tty, enabled, internal, flags);
c906108c 9299 }
0101ce28
JJ
9300 else
9301 {
a5e364af 9302 std::unique_ptr <breakpoint> b = new_breakpoint_from_type (type_wanted);
bfccc43c 9303
a5e364af 9304 init_raw_breakpoint_without_location (b.get (), gdbarch, type_wanted, ops);
d28cd78a 9305 b->location = copy_event_location (location);
bfccc43c 9306
f00aae0f
KS
9307 if (parse_extra)
9308 b->cond_string = NULL;
e12c7713
MK
9309 else
9310 {
9311 /* Create a private copy of condition string. */
e1e01040 9312 b->cond_string = cond_string != NULL ? xstrdup (cond_string) : NULL;
15630549 9313 b->thread = thread;
e12c7713 9314 }
f00aae0f
KS
9315
9316 /* Create a private copy of any extra string. */
e1e01040 9317 b->extra_string = extra_string != NULL ? xstrdup (extra_string) : NULL;
0101ce28 9318 b->ignore_count = ignore_count;
0101ce28 9319 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 9320 b->condition_not_parsed = 1;
41447f92 9321 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
9322 if ((type_wanted != bp_breakpoint
9323 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 9324 b->pspace = current_program_space;
8bea4e01 9325
b270e6f9 9326 install_breakpoint (internal, std::move (b), 0);
0101ce28
JJ
9327 }
9328
6c5b2ebe 9329 if (canonical.lsals.size () > 1)
95a42b64 9330 {
3e43a32a
MS
9331 warning (_("Multiple breakpoints were set.\nUse the "
9332 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 9333 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
9334 }
9335
44702360 9336 update_global_location_list (UGLL_MAY_INSERT);
fd9b8c24
PA
9337
9338 return 1;
c3f6f71d 9339}
c906108c 9340
348d480f 9341/* Set a breakpoint.
72b2ff0e
VP
9342 ARG is a string describing breakpoint address,
9343 condition, and thread.
9344 FLAG specifies if a breakpoint is hardware on,
9345 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9346 and BP_TEMPFLAG. */
348d480f 9347
98deb0da 9348static void
f2fc3015 9349break_command_1 (const char *arg, int flag, int from_tty)
c3f6f71d 9350{
72b2ff0e 9351 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
9352 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9353 ? bp_hardware_breakpoint
9354 : bp_breakpoint);
f00aae0f 9355
ffc2605c 9356 event_location_up location = string_to_event_location (&arg, current_language);
bac7c5cf
GB
9357 const struct breakpoint_ops *ops = breakpoint_ops_for_event_location
9358 (location.get (), false /* is_tracepoint */);
c3f6f71d 9359
8cdf0e15 9360 create_breakpoint (get_current_arch (),
ffc2605c 9361 location.get (),
f00aae0f 9362 NULL, 0, arg, 1 /* parse arg */,
0fb4aa4b 9363 tempflag, type_wanted,
8cdf0e15
VP
9364 0 /* Ignore count */,
9365 pending_break_support,
55aa24fb 9366 ops,
8cdf0e15 9367 from_tty,
84f4c1fe 9368 1 /* enabled */,
44f238bb
PA
9369 0 /* internal */,
9370 0);
c906108c
SS
9371}
9372
c906108c
SS
9373/* Helper function for break_command_1 and disassemble_command. */
9374
9375void
fba45db2 9376resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
9377{
9378 CORE_ADDR pc;
9379
9380 if (sal->pc == 0 && sal->symtab != NULL)
9381 {
9382 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 9383 error (_("No line %d in file \"%s\"."),
05cba821 9384 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 9385 sal->pc = pc;
6a048695 9386
4a64f543
MS
9387 /* If this SAL corresponds to a breakpoint inserted using a line
9388 number, then skip the function prologue if necessary. */
6a048695 9389 if (sal->explicit_line)
059acae7 9390 skip_prologue_sal (sal);
c906108c
SS
9391 }
9392
9393 if (sal->section == 0 && sal->symtab != NULL)
9394 {
346d1dfe 9395 const struct blockvector *bv;
3977b71f 9396 const struct block *b;
c5aa993b 9397 struct symbol *sym;
c906108c 9398
43f3e411
DE
9399 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
9400 SYMTAB_COMPUNIT (sal->symtab));
c906108c
SS
9401 if (bv != NULL)
9402 {
7f0df278 9403 sym = block_linkage_function (b);
c906108c
SS
9404 if (sym != NULL)
9405 {
eb822aa6
DE
9406 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
9407 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
9408 sym);
c906108c
SS
9409 }
9410 else
9411 {
4a64f543
MS
9412 /* It really is worthwhile to have the section, so we'll
9413 just have to look harder. This case can be executed
9414 if we have line numbers but no functions (as can
9415 happen in assembly source). */
c906108c 9416
5ed8105e 9417 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 9418 switch_to_program_space_and_thread (sal->pspace);
c906108c 9419
5ed8105e 9420 bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 9421 if (msym.minsym)
efd66ac6 9422 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
c906108c
SS
9423 }
9424 }
9425 }
9426}
9427
9428void
0b39b52e 9429break_command (const char *arg, int from_tty)
c906108c 9430{
db107f19 9431 break_command_1 (arg, 0, from_tty);
c906108c
SS
9432}
9433
c906108c 9434void
0b39b52e 9435tbreak_command (const char *arg, int from_tty)
c906108c 9436{
db107f19 9437 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
9438}
9439
c906108c 9440static void
0b39b52e 9441hbreak_command (const char *arg, int from_tty)
c906108c 9442{
db107f19 9443 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
9444}
9445
9446static void
0b39b52e 9447thbreak_command (const char *arg, int from_tty)
c906108c 9448{
db107f19 9449 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
9450}
9451
9452static void
ee7ddd71 9453stop_command (const char *arg, int from_tty)
c906108c 9454{
a3f17187 9455 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 9456Usage: stop in <function | address>\n\
a3f17187 9457 stop at <line>\n"));
c906108c
SS
9458}
9459
9460static void
4495129a 9461stopin_command (const char *arg, int from_tty)
c906108c
SS
9462{
9463 int badInput = 0;
9464
cafb3438 9465 if (arg == NULL)
c906108c
SS
9466 badInput = 1;
9467 else if (*arg != '*')
9468 {
4495129a 9469 const char *argptr = arg;
c906108c
SS
9470 int hasColon = 0;
9471
4a64f543 9472 /* Look for a ':'. If this is a line number specification, then
53a5351d 9473 say it is bad, otherwise, it should be an address or
4a64f543 9474 function/method name. */
c906108c 9475 while (*argptr && !hasColon)
c5aa993b
JM
9476 {
9477 hasColon = (*argptr == ':');
9478 argptr++;
9479 }
c906108c
SS
9480
9481 if (hasColon)
c5aa993b 9482 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 9483 else
c5aa993b 9484 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
9485 }
9486
9487 if (badInput)
a3f17187 9488 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 9489 else
db107f19 9490 break_command_1 (arg, 0, from_tty);
c906108c
SS
9491}
9492
9493static void
4495129a 9494stopat_command (const char *arg, int from_tty)
c906108c
SS
9495{
9496 int badInput = 0;
9497
cafb3438 9498 if (arg == NULL || *arg == '*') /* no line number */
c906108c
SS
9499 badInput = 1;
9500 else
9501 {
4495129a 9502 const char *argptr = arg;
c906108c
SS
9503 int hasColon = 0;
9504
4a64f543
MS
9505 /* Look for a ':'. If there is a '::' then get out, otherwise
9506 it is probably a line number. */
c906108c 9507 while (*argptr && !hasColon)
c5aa993b
JM
9508 {
9509 hasColon = (*argptr == ':');
9510 argptr++;
9511 }
c906108c
SS
9512
9513 if (hasColon)
c5aa993b 9514 badInput = (*argptr == ':'); /* we have class::method */
c906108c 9515 else
c5aa993b 9516 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
9517 }
9518
9519 if (badInput)
65e65158 9520 printf_filtered (_("Usage: stop at LINE\n"));
c906108c 9521 else
db107f19 9522 break_command_1 (arg, 0, from_tty);
c906108c
SS
9523}
9524
e7e0cddf
SS
9525/* The dynamic printf command is mostly like a regular breakpoint, but
9526 with a prewired command list consisting of a single output command,
9527 built from extra arguments supplied on the dprintf command
9528 line. */
9529
da821c7b 9530static void
0b39b52e 9531dprintf_command (const char *arg, int from_tty)
e7e0cddf 9532{
ffc2605c 9533 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f
KS
9534
9535 /* If non-NULL, ARG should have been advanced past the location;
9536 the next character must be ','. */
9537 if (arg != NULL)
9538 {
9539 if (arg[0] != ',' || arg[1] == '\0')
9540 error (_("Format string required"));
9541 else
9542 {
9543 /* Skip the comma. */
9544 ++arg;
9545 }
9546 }
9547
e7e0cddf 9548 create_breakpoint (get_current_arch (),
ffc2605c 9549 location.get (),
f00aae0f 9550 NULL, 0, arg, 1 /* parse arg */,
e7e0cddf
SS
9551 0, bp_dprintf,
9552 0 /* Ignore count */,
9553 pending_break_support,
9554 &dprintf_breakpoint_ops,
9555 from_tty,
9556 1 /* enabled */,
9557 0 /* internal */,
9558 0);
9559}
9560
d3ce09f5 9561static void
0b39b52e 9562agent_printf_command (const char *arg, int from_tty)
d3ce09f5
SS
9563{
9564 error (_("May only run agent-printf on the target"));
9565}
9566
f1310107
TJB
9567/* Implement the "breakpoint_hit" breakpoint_ops method for
9568 ranged breakpoints. */
9569
9570static int
9571breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
bd522513 9572 const address_space *aspace,
09ac7c10
TT
9573 CORE_ADDR bp_addr,
9574 const struct target_waitstatus *ws)
f1310107 9575{
09ac7c10 9576 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 9577 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
9578 return 0;
9579
f1310107
TJB
9580 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
9581 bl->length, aspace, bp_addr);
9582}
9583
9584/* Implement the "resources_needed" breakpoint_ops method for
9585 ranged breakpoints. */
9586
9587static int
9588resources_needed_ranged_breakpoint (const struct bp_location *bl)
9589{
9590 return target_ranged_break_num_registers ();
9591}
9592
9593/* Implement the "print_it" breakpoint_ops method for
9594 ranged breakpoints. */
9595
9596static enum print_stop_action
348d480f 9597print_it_ranged_breakpoint (bpstat bs)
f1310107 9598{
348d480f 9599 struct breakpoint *b = bs->breakpoint_at;
f1310107 9600 struct bp_location *bl = b->loc;
79a45e25 9601 struct ui_out *uiout = current_uiout;
f1310107
TJB
9602
9603 gdb_assert (b->type == bp_hardware_breakpoint);
9604
9605 /* Ranged breakpoints have only one location. */
9606 gdb_assert (bl && bl->next == NULL);
9607
9608 annotate_breakpoint (b->number);
f303dbd6
PA
9609
9610 maybe_print_thread_hit_breakpoint (uiout);
9611
f1310107 9612 if (b->disposition == disp_del)
112e8700 9613 uiout->text ("Temporary ranged breakpoint ");
f1310107 9614 else
112e8700
SM
9615 uiout->text ("Ranged breakpoint ");
9616 if (uiout->is_mi_like_p ())
f1310107 9617 {
112e8700 9618 uiout->field_string ("reason",
f1310107 9619 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 9620 uiout->field_string ("disp", bpdisp_text (b->disposition));
f1310107 9621 }
381befee 9622 uiout->field_signed ("bkptno", b->number);
112e8700 9623 uiout->text (", ");
f1310107
TJB
9624
9625 return PRINT_SRC_AND_LOC;
9626}
9627
9628/* Implement the "print_one" breakpoint_ops method for
9629 ranged breakpoints. */
9630
9631static void
9632print_one_ranged_breakpoint (struct breakpoint *b,
9633 struct bp_location **last_loc)
9634{
9635 struct bp_location *bl = b->loc;
9636 struct value_print_options opts;
79a45e25 9637 struct ui_out *uiout = current_uiout;
f1310107
TJB
9638
9639 /* Ranged breakpoints have only one location. */
9640 gdb_assert (bl && bl->next == NULL);
9641
9642 get_user_print_options (&opts);
9643
9644 if (opts.addressprint)
9645 /* We don't print the address range here, it will be printed later
9646 by print_one_detail_ranged_breakpoint. */
112e8700 9647 uiout->field_skip ("addr");
f1310107
TJB
9648 annotate_field (5);
9649 print_breakpoint_location (b, bl);
9650 *last_loc = bl;
9651}
9652
9653/* Implement the "print_one_detail" breakpoint_ops method for
9654 ranged breakpoints. */
9655
9656static void
9657print_one_detail_ranged_breakpoint (const struct breakpoint *b,
9658 struct ui_out *uiout)
9659{
9660 CORE_ADDR address_start, address_end;
9661 struct bp_location *bl = b->loc;
d7e74731 9662 string_file stb;
f1310107
TJB
9663
9664 gdb_assert (bl);
9665
9666 address_start = bl->address;
9667 address_end = address_start + bl->length - 1;
9668
112e8700 9669 uiout->text ("\taddress range: ");
d7e74731
PA
9670 stb.printf ("[%s, %s]",
9671 print_core_address (bl->gdbarch, address_start),
9672 print_core_address (bl->gdbarch, address_end));
112e8700
SM
9673 uiout->field_stream ("addr", stb);
9674 uiout->text ("\n");
f1310107
TJB
9675}
9676
9677/* Implement the "print_mention" breakpoint_ops method for
9678 ranged breakpoints. */
9679
9680static void
9681print_mention_ranged_breakpoint (struct breakpoint *b)
9682{
9683 struct bp_location *bl = b->loc;
79a45e25 9684 struct ui_out *uiout = current_uiout;
f1310107
TJB
9685
9686 gdb_assert (bl);
9687 gdb_assert (b->type == bp_hardware_breakpoint);
9688
2d33446d
TT
9689 uiout->message (_("Hardware assisted ranged breakpoint %d from %s to %s."),
9690 b->number, paddress (bl->gdbarch, bl->address),
9691 paddress (bl->gdbarch, bl->address + bl->length - 1));
f1310107
TJB
9692}
9693
9694/* Implement the "print_recreate" breakpoint_ops method for
9695 ranged breakpoints. */
9696
9697static void
9698print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
9699{
f00aae0f 9700 fprintf_unfiltered (fp, "break-range %s, %s",
d28cd78a
TT
9701 event_location_to_string (b->location.get ()),
9702 event_location_to_string (b->location_range_end.get ()));
d9b3f62e 9703 print_recreate_thread (b, fp);
f1310107
TJB
9704}
9705
9706/* The breakpoint_ops structure to be used in ranged breakpoints. */
9707
2060206e 9708static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
9709
9710/* Find the address where the end of the breakpoint range should be
9711 placed, given the SAL of the end of the range. This is so that if
9712 the user provides a line number, the end of the range is set to the
9713 last instruction of the given line. */
9714
9715static CORE_ADDR
9716find_breakpoint_range_end (struct symtab_and_line sal)
9717{
9718 CORE_ADDR end;
9719
9720 /* If the user provided a PC value, use it. Otherwise,
9721 find the address of the end of the given location. */
9722 if (sal.explicit_pc)
9723 end = sal.pc;
9724 else
9725 {
9726 int ret;
9727 CORE_ADDR start;
9728
9729 ret = find_line_pc_range (sal, &start, &end);
9730 if (!ret)
9731 error (_("Could not find location of the end of the range."));
9732
9733 /* find_line_pc_range returns the start of the next line. */
9734 end--;
9735 }
9736
9737 return end;
9738}
9739
9740/* Implement the "break-range" CLI command. */
9741
9742static void
0b39b52e 9743break_range_command (const char *arg, int from_tty)
f1310107 9744{
f2fc3015 9745 const char *arg_start;
f1310107
TJB
9746 struct linespec_result canonical_start, canonical_end;
9747 int bp_count, can_use_bp, length;
9748 CORE_ADDR end;
9749 struct breakpoint *b;
f1310107
TJB
9750
9751 /* We don't support software ranged breakpoints. */
9752 if (target_ranged_break_num_registers () < 0)
9753 error (_("This target does not support hardware ranged breakpoints."));
9754
9755 bp_count = hw_breakpoint_used_count ();
9756 bp_count += target_ranged_break_num_registers ();
9757 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9758 bp_count, 0);
9759 if (can_use_bp < 0)
9760 error (_("Hardware breakpoints used exceeds limit."));
9761
f8eba3c6 9762 arg = skip_spaces (arg);
f1310107
TJB
9763 if (arg == NULL || arg[0] == '\0')
9764 error(_("No address range specified."));
9765
f8eba3c6 9766 arg_start = arg;
ffc2605c
TT
9767 event_location_up start_location = string_to_event_location (&arg,
9768 current_language);
9769 parse_breakpoint_sals (start_location.get (), &canonical_start);
f1310107
TJB
9770
9771 if (arg[0] != ',')
9772 error (_("Too few arguments."));
6c5b2ebe 9773 else if (canonical_start.lsals.empty ())
f1310107 9774 error (_("Could not find location of the beginning of the range."));
f8eba3c6 9775
6c5b2ebe 9776 const linespec_sals &lsal_start = canonical_start.lsals[0];
f8eba3c6 9777
6c5b2ebe
PA
9778 if (canonical_start.lsals.size () > 1
9779 || lsal_start.sals.size () != 1)
f1310107
TJB
9780 error (_("Cannot create a ranged breakpoint with multiple locations."));
9781
6c5b2ebe 9782 const symtab_and_line &sal_start = lsal_start.sals[0];
81b1e71c 9783 std::string addr_string_start (arg_start, arg - arg_start);
f1310107
TJB
9784
9785 arg++; /* Skip the comma. */
f8eba3c6 9786 arg = skip_spaces (arg);
f1310107
TJB
9787
9788 /* Parse the end location. */
9789
f1310107
TJB
9790 arg_start = arg;
9791
f8eba3c6 9792 /* We call decode_line_full directly here instead of using
f1310107
TJB
9793 parse_breakpoint_sals because we need to specify the start location's
9794 symtab and line as the default symtab and line for the end of the
9795 range. This makes it possible to have ranges like "foo.c:27, +14",
9796 where +14 means 14 lines from the start location. */
ffc2605c
TT
9797 event_location_up end_location = string_to_event_location (&arg,
9798 current_language);
9799 decode_line_full (end_location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
f8eba3c6
TT
9800 sal_start.symtab, sal_start.line,
9801 &canonical_end, NULL, NULL);
9802
6c5b2ebe 9803 if (canonical_end.lsals.empty ())
f1310107 9804 error (_("Could not find location of the end of the range."));
f8eba3c6 9805
6c5b2ebe
PA
9806 const linespec_sals &lsal_end = canonical_end.lsals[0];
9807 if (canonical_end.lsals.size () > 1
9808 || lsal_end.sals.size () != 1)
f1310107
TJB
9809 error (_("Cannot create a ranged breakpoint with multiple locations."));
9810
6c5b2ebe 9811 const symtab_and_line &sal_end = lsal_end.sals[0];
f1310107
TJB
9812
9813 end = find_breakpoint_range_end (sal_end);
9814 if (sal_start.pc > end)
177b42fe 9815 error (_("Invalid address range, end precedes start."));
f1310107
TJB
9816
9817 length = end - sal_start.pc + 1;
9818 if (length < 0)
9819 /* Length overflowed. */
9820 error (_("Address range too large."));
9821 else if (length == 1)
9822 {
9823 /* This range is simple enough to be handled by
9824 the `hbreak' command. */
81b1e71c 9825 hbreak_command (&addr_string_start[0], 1);
f1310107
TJB
9826
9827 return;
9828 }
9829
9830 /* Now set up the breakpoint. */
9831 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 9832 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
9833 set_breakpoint_count (breakpoint_count + 1);
9834 b->number = breakpoint_count;
9835 b->disposition = disp_donttouch;
d28cd78a
TT
9836 b->location = std::move (start_location);
9837 b->location_range_end = std::move (end_location);
f1310107
TJB
9838 b->loc->length = length;
9839
f1310107 9840 mention (b);
76727919 9841 gdb::observers::breakpoint_created.notify (b);
44702360 9842 update_global_location_list (UGLL_MAY_INSERT);
f1310107
TJB
9843}
9844
4a64f543
MS
9845/* Return non-zero if EXP is verified as constant. Returned zero
9846 means EXP is variable. Also the constant detection may fail for
9847 some constant expressions and in such case still falsely return
9848 zero. */
2e6e3d9c 9849
65d79d4b
SDJ
9850static int
9851watchpoint_exp_is_const (const struct expression *exp)
9852{
9853 int i = exp->nelts;
9854
9855 while (i > 0)
9856 {
9857 int oplenp, argsp;
9858
9859 /* We are only interested in the descriptor of each element. */
9860 operator_length (exp, i, &oplenp, &argsp);
9861 i -= oplenp;
9862
9863 switch (exp->elts[i].opcode)
9864 {
9865 case BINOP_ADD:
9866 case BINOP_SUB:
9867 case BINOP_MUL:
9868 case BINOP_DIV:
9869 case BINOP_REM:
9870 case BINOP_MOD:
9871 case BINOP_LSH:
9872 case BINOP_RSH:
9873 case BINOP_LOGICAL_AND:
9874 case BINOP_LOGICAL_OR:
9875 case BINOP_BITWISE_AND:
9876 case BINOP_BITWISE_IOR:
9877 case BINOP_BITWISE_XOR:
9878 case BINOP_EQUAL:
9879 case BINOP_NOTEQUAL:
9880 case BINOP_LESS:
9881 case BINOP_GTR:
9882 case BINOP_LEQ:
9883 case BINOP_GEQ:
9884 case BINOP_REPEAT:
9885 case BINOP_COMMA:
9886 case BINOP_EXP:
9887 case BINOP_MIN:
9888 case BINOP_MAX:
9889 case BINOP_INTDIV:
9890 case BINOP_CONCAT:
65d79d4b
SDJ
9891 case TERNOP_COND:
9892 case TERNOP_SLICE:
65d79d4b
SDJ
9893
9894 case OP_LONG:
edd079d9 9895 case OP_FLOAT:
65d79d4b
SDJ
9896 case OP_LAST:
9897 case OP_COMPLEX:
9898 case OP_STRING:
65d79d4b
SDJ
9899 case OP_ARRAY:
9900 case OP_TYPE:
608b4967
TT
9901 case OP_TYPEOF:
9902 case OP_DECLTYPE:
6e72ca20 9903 case OP_TYPEID:
65d79d4b
SDJ
9904 case OP_NAME:
9905 case OP_OBJC_NSSTRING:
9906
9907 case UNOP_NEG:
9908 case UNOP_LOGICAL_NOT:
9909 case UNOP_COMPLEMENT:
9910 case UNOP_ADDR:
9911 case UNOP_HIGH:
aeaa2474 9912 case UNOP_CAST:
9eaf6705
TT
9913
9914 case UNOP_CAST_TYPE:
9915 case UNOP_REINTERPRET_CAST:
9916 case UNOP_DYNAMIC_CAST:
4a64f543
MS
9917 /* Unary, binary and ternary operators: We have to check
9918 their operands. If they are constant, then so is the
9919 result of that operation. For instance, if A and B are
9920 determined to be constants, then so is "A + B".
9921
9922 UNOP_IND is one exception to the rule above, because the
9923 value of *ADDR is not necessarily a constant, even when
9924 ADDR is. */
65d79d4b
SDJ
9925 break;
9926
9927 case OP_VAR_VALUE:
9928 /* Check whether the associated symbol is a constant.
4a64f543 9929
65d79d4b 9930 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
9931 possible that a buggy compiler could mark a variable as
9932 constant even when it is not, and TYPE_CONST would return
9933 true in this case, while SYMBOL_CLASS wouldn't.
9934
9935 We also have to check for function symbols because they
9936 are always constant. */
65d79d4b
SDJ
9937 {
9938 struct symbol *s = exp->elts[i + 2].symbol;
9939
9940 if (SYMBOL_CLASS (s) != LOC_BLOCK
9941 && SYMBOL_CLASS (s) != LOC_CONST
9942 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
9943 return 0;
9944 break;
9945 }
9946
9947 /* The default action is to return 0 because we are using
9948 the optimistic approach here: If we don't know something,
9949 then it is not a constant. */
9950 default:
9951 return 0;
9952 }
9953 }
9954
9955 return 1;
9956}
9957
c1fc2657 9958/* Watchpoint destructor. */
3a5c3e22 9959
c1fc2657 9960watchpoint::~watchpoint ()
3a5c3e22 9961{
c1fc2657
SM
9962 xfree (this->exp_string);
9963 xfree (this->exp_string_reparse);
3a5c3e22
PA
9964}
9965
348d480f
PA
9966/* Implement the "re_set" breakpoint_ops method for watchpoints. */
9967
9968static void
9969re_set_watchpoint (struct breakpoint *b)
9970{
3a5c3e22
PA
9971 struct watchpoint *w = (struct watchpoint *) b;
9972
348d480f
PA
9973 /* Watchpoint can be either on expression using entirely global
9974 variables, or it can be on local variables.
9975
9976 Watchpoints of the first kind are never auto-deleted, and even
9977 persist across program restarts. Since they can use variables
9978 from shared libraries, we need to reparse expression as libraries
9979 are loaded and unloaded.
9980
9981 Watchpoints on local variables can also change meaning as result
9982 of solib event. For example, if a watchpoint uses both a local
9983 and a global variables in expression, it's a local watchpoint,
9984 but unloading of a shared library will make the expression
9985 invalid. This is not a very common use case, but we still
9986 re-evaluate expression, to avoid surprises to the user.
9987
9988 Note that for local watchpoints, we re-evaluate it only if
9989 watchpoints frame id is still valid. If it's not, it means the
9990 watchpoint is out of scope and will be deleted soon. In fact,
9991 I'm not sure we'll ever be called in this case.
9992
9993 If a local watchpoint's frame id is still valid, then
3a5c3e22 9994 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 9995
3a5c3e22
PA
9996 Don't do anything about disabled watchpoints, since they will be
9997 reevaluated again when enabled. */
9998 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
9999}
10000
77b06cd7
TJB
10001/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10002
10003static int
10004insert_watchpoint (struct bp_location *bl)
10005{
3a5c3e22
PA
10006 struct watchpoint *w = (struct watchpoint *) bl->owner;
10007 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10008
10009 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10010 w->cond_exp.get ());
77b06cd7
TJB
10011}
10012
10013/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10014
10015static int
73971819 10016remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
77b06cd7 10017{
3a5c3e22
PA
10018 struct watchpoint *w = (struct watchpoint *) bl->owner;
10019 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10020
10021 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10022 w->cond_exp.get ());
e09342b5
TJB
10023}
10024
e09342b5 10025static int
348d480f 10026breakpoint_hit_watchpoint (const struct bp_location *bl,
bd522513 10027 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 10028 const struct target_waitstatus *ws)
e09342b5 10029{
348d480f 10030 struct breakpoint *b = bl->owner;
3a5c3e22 10031 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10032
348d480f
PA
10033 /* Continuable hardware watchpoints are treated as non-existent if the
10034 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10035 some data address). Otherwise gdb won't stop on a break instruction
10036 in the code (not from a breakpoint) when a hardware watchpoint has
10037 been defined. Also skip watchpoints which we know did not trigger
10038 (did not match the data address). */
10039 if (is_hardware_watchpoint (b)
3a5c3e22 10040 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10041 return 0;
9c06b0b4 10042
348d480f 10043 return 1;
9c06b0b4
TJB
10044}
10045
348d480f
PA
10046static void
10047check_status_watchpoint (bpstat bs)
9c06b0b4 10048{
348d480f 10049 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10050
348d480f 10051 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10052}
10053
10054/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10055 hardware watchpoints. */
9c06b0b4
TJB
10056
10057static int
348d480f 10058resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10059{
3a5c3e22
PA
10060 struct watchpoint *w = (struct watchpoint *) bl->owner;
10061 int length = w->exact? 1 : bl->length;
348d480f
PA
10062
10063 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10064}
10065
10066/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10067 hardware watchpoints. */
9c06b0b4
TJB
10068
10069static int
348d480f 10070works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10071{
efa80663
PA
10072 /* Read and access watchpoints only work with hardware support. */
10073 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10074}
10075
9c06b0b4 10076static enum print_stop_action
348d480f 10077print_it_watchpoint (bpstat bs)
9c06b0b4 10078{
348d480f 10079 struct breakpoint *b;
348d480f 10080 enum print_stop_action result;
3a5c3e22 10081 struct watchpoint *w;
79a45e25 10082 struct ui_out *uiout = current_uiout;
348d480f
PA
10083
10084 gdb_assert (bs->bp_location_at != NULL);
10085
348d480f 10086 b = bs->breakpoint_at;
3a5c3e22 10087 w = (struct watchpoint *) b;
348d480f 10088
f303dbd6
PA
10089 annotate_watchpoint (b->number);
10090 maybe_print_thread_hit_breakpoint (uiout);
10091
d7e74731
PA
10092 string_file stb;
10093
76f9c9cf 10094 gdb::optional<ui_out_emit_tuple> tuple_emitter;
9c06b0b4
TJB
10095 switch (b->type)
10096 {
348d480f 10097 case bp_watchpoint:
9c06b0b4 10098 case bp_hardware_watchpoint:
112e8700
SM
10099 if (uiout->is_mi_like_p ())
10100 uiout->field_string
10101 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f 10102 mention (b);
76f9c9cf 10103 tuple_emitter.emplace (uiout, "value");
112e8700 10104 uiout->text ("\nOld value = ");
850645cf 10105 watchpoint_value_print (bs->old_val.get (), &stb);
112e8700
SM
10106 uiout->field_stream ("old", stb);
10107 uiout->text ("\nNew value = ");
850645cf 10108 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10109 uiout->field_stream ("new", stb);
10110 uiout->text ("\n");
348d480f
PA
10111 /* More than one watchpoint may have been triggered. */
10112 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10113 break;
10114
10115 case bp_read_watchpoint:
112e8700
SM
10116 if (uiout->is_mi_like_p ())
10117 uiout->field_string
10118 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f 10119 mention (b);
76f9c9cf 10120 tuple_emitter.emplace (uiout, "value");
112e8700 10121 uiout->text ("\nValue = ");
850645cf 10122 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10123 uiout->field_stream ("value", stb);
10124 uiout->text ("\n");
348d480f 10125 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10126 break;
10127
10128 case bp_access_watchpoint:
348d480f
PA
10129 if (bs->old_val != NULL)
10130 {
112e8700
SM
10131 if (uiout->is_mi_like_p ())
10132 uiout->field_string
10133 ("reason",
348d480f
PA
10134 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10135 mention (b);
76f9c9cf 10136 tuple_emitter.emplace (uiout, "value");
112e8700 10137 uiout->text ("\nOld value = ");
850645cf 10138 watchpoint_value_print (bs->old_val.get (), &stb);
112e8700
SM
10139 uiout->field_stream ("old", stb);
10140 uiout->text ("\nNew value = ");
348d480f
PA
10141 }
10142 else
10143 {
10144 mention (b);
112e8700
SM
10145 if (uiout->is_mi_like_p ())
10146 uiout->field_string
10147 ("reason",
348d480f 10148 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
76f9c9cf 10149 tuple_emitter.emplace (uiout, "value");
112e8700 10150 uiout->text ("\nValue = ");
348d480f 10151 }
850645cf 10152 watchpoint_value_print (w->val.get (), &stb);
112e8700
SM
10153 uiout->field_stream ("new", stb);
10154 uiout->text ("\n");
348d480f 10155 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10156 break;
10157 default:
348d480f 10158 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10159 }
10160
348d480f
PA
10161 return result;
10162}
10163
10164/* Implement the "print_mention" breakpoint_ops method for hardware
10165 watchpoints. */
10166
10167static void
10168print_mention_watchpoint (struct breakpoint *b)
10169{
3a5c3e22 10170 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10171 struct ui_out *uiout = current_uiout;
46b9c129 10172 const char *tuple_name;
348d480f
PA
10173
10174 switch (b->type)
10175 {
10176 case bp_watchpoint:
112e8700 10177 uiout->text ("Watchpoint ");
46b9c129 10178 tuple_name = "wpt";
348d480f
PA
10179 break;
10180 case bp_hardware_watchpoint:
112e8700 10181 uiout->text ("Hardware watchpoint ");
46b9c129 10182 tuple_name = "wpt";
348d480f
PA
10183 break;
10184 case bp_read_watchpoint:
112e8700 10185 uiout->text ("Hardware read watchpoint ");
46b9c129 10186 tuple_name = "hw-rwpt";
348d480f
PA
10187 break;
10188 case bp_access_watchpoint:
112e8700 10189 uiout->text ("Hardware access (read/write) watchpoint ");
46b9c129 10190 tuple_name = "hw-awpt";
348d480f
PA
10191 break;
10192 default:
10193 internal_error (__FILE__, __LINE__,
10194 _("Invalid hardware watchpoint type."));
10195 }
10196
46b9c129 10197 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
381befee 10198 uiout->field_signed ("number", b->number);
112e8700
SM
10199 uiout->text (": ");
10200 uiout->field_string ("exp", w->exp_string);
348d480f
PA
10201}
10202
10203/* Implement the "print_recreate" breakpoint_ops method for
10204 watchpoints. */
10205
10206static void
10207print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10208{
3a5c3e22
PA
10209 struct watchpoint *w = (struct watchpoint *) b;
10210
348d480f
PA
10211 switch (b->type)
10212 {
10213 case bp_watchpoint:
10214 case bp_hardware_watchpoint:
10215 fprintf_unfiltered (fp, "watch");
10216 break;
10217 case bp_read_watchpoint:
10218 fprintf_unfiltered (fp, "rwatch");
10219 break;
10220 case bp_access_watchpoint:
10221 fprintf_unfiltered (fp, "awatch");
10222 break;
10223 default:
10224 internal_error (__FILE__, __LINE__,
10225 _("Invalid watchpoint type."));
10226 }
10227
3a5c3e22 10228 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 10229 print_recreate_thread (b, fp);
348d480f
PA
10230}
10231
427cd150
TT
10232/* Implement the "explains_signal" breakpoint_ops method for
10233 watchpoints. */
10234
47591c29 10235static int
427cd150
TT
10236explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10237{
10238 /* A software watchpoint cannot cause a signal other than
10239 GDB_SIGNAL_TRAP. */
10240 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 10241 return 0;
427cd150 10242
47591c29 10243 return 1;
427cd150
TT
10244}
10245
348d480f
PA
10246/* The breakpoint_ops structure to be used in hardware watchpoints. */
10247
2060206e 10248static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
10249
10250/* Implement the "insert" breakpoint_ops method for
10251 masked hardware watchpoints. */
10252
10253static int
10254insert_masked_watchpoint (struct bp_location *bl)
10255{
3a5c3e22
PA
10256 struct watchpoint *w = (struct watchpoint *) bl->owner;
10257
10258 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10259 bl->watchpoint_type);
10260}
10261
10262/* Implement the "remove" breakpoint_ops method for
10263 masked hardware watchpoints. */
10264
10265static int
73971819 10266remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
348d480f 10267{
3a5c3e22
PA
10268 struct watchpoint *w = (struct watchpoint *) bl->owner;
10269
10270 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10271 bl->watchpoint_type);
10272}
10273
10274/* Implement the "resources_needed" breakpoint_ops method for
10275 masked hardware watchpoints. */
10276
10277static int
10278resources_needed_masked_watchpoint (const struct bp_location *bl)
10279{
3a5c3e22
PA
10280 struct watchpoint *w = (struct watchpoint *) bl->owner;
10281
10282 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
10283}
10284
10285/* Implement the "works_in_software_mode" breakpoint_ops method for
10286 masked hardware watchpoints. */
10287
10288static int
10289works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10290{
10291 return 0;
10292}
10293
10294/* Implement the "print_it" breakpoint_ops method for
10295 masked hardware watchpoints. */
10296
10297static enum print_stop_action
10298print_it_masked_watchpoint (bpstat bs)
10299{
10300 struct breakpoint *b = bs->breakpoint_at;
79a45e25 10301 struct ui_out *uiout = current_uiout;
348d480f
PA
10302
10303 /* Masked watchpoints have only one location. */
10304 gdb_assert (b->loc && b->loc->next == NULL);
10305
f303dbd6
PA
10306 annotate_watchpoint (b->number);
10307 maybe_print_thread_hit_breakpoint (uiout);
10308
348d480f
PA
10309 switch (b->type)
10310 {
10311 case bp_hardware_watchpoint:
112e8700
SM
10312 if (uiout->is_mi_like_p ())
10313 uiout->field_string
10314 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10315 break;
10316
10317 case bp_read_watchpoint:
112e8700
SM
10318 if (uiout->is_mi_like_p ())
10319 uiout->field_string
10320 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10321 break;
10322
10323 case bp_access_watchpoint:
112e8700
SM
10324 if (uiout->is_mi_like_p ())
10325 uiout->field_string
10326 ("reason",
348d480f
PA
10327 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10328 break;
10329 default:
10330 internal_error (__FILE__, __LINE__,
10331 _("Invalid hardware watchpoint type."));
10332 }
10333
10334 mention (b);
112e8700 10335 uiout->text (_("\n\
9c06b0b4
TJB
10336Check the underlying instruction at PC for the memory\n\
10337address and value which triggered this watchpoint.\n"));
112e8700 10338 uiout->text ("\n");
9c06b0b4
TJB
10339
10340 /* More than one watchpoint may have been triggered. */
10341 return PRINT_UNKNOWN;
10342}
10343
10344/* Implement the "print_one_detail" breakpoint_ops method for
10345 masked hardware watchpoints. */
10346
10347static void
10348print_one_detail_masked_watchpoint (const struct breakpoint *b,
10349 struct ui_out *uiout)
10350{
3a5c3e22
PA
10351 struct watchpoint *w = (struct watchpoint *) b;
10352
9c06b0b4
TJB
10353 /* Masked watchpoints have only one location. */
10354 gdb_assert (b->loc && b->loc->next == NULL);
10355
112e8700
SM
10356 uiout->text ("\tmask ");
10357 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
10358 uiout->text ("\n");
9c06b0b4
TJB
10359}
10360
10361/* Implement the "print_mention" breakpoint_ops method for
10362 masked hardware watchpoints. */
10363
10364static void
10365print_mention_masked_watchpoint (struct breakpoint *b)
10366{
3a5c3e22 10367 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10368 struct ui_out *uiout = current_uiout;
46b9c129 10369 const char *tuple_name;
9c06b0b4
TJB
10370
10371 switch (b->type)
10372 {
10373 case bp_hardware_watchpoint:
112e8700 10374 uiout->text ("Masked hardware watchpoint ");
46b9c129 10375 tuple_name = "wpt";
9c06b0b4
TJB
10376 break;
10377 case bp_read_watchpoint:
112e8700 10378 uiout->text ("Masked hardware read watchpoint ");
46b9c129 10379 tuple_name = "hw-rwpt";
9c06b0b4
TJB
10380 break;
10381 case bp_access_watchpoint:
112e8700 10382 uiout->text ("Masked hardware access (read/write) watchpoint ");
46b9c129 10383 tuple_name = "hw-awpt";
9c06b0b4
TJB
10384 break;
10385 default:
10386 internal_error (__FILE__, __LINE__,
10387 _("Invalid hardware watchpoint type."));
10388 }
10389
46b9c129 10390 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
381befee 10391 uiout->field_signed ("number", b->number);
112e8700
SM
10392 uiout->text (": ");
10393 uiout->field_string ("exp", w->exp_string);
9c06b0b4
TJB
10394}
10395
10396/* Implement the "print_recreate" breakpoint_ops method for
10397 masked hardware watchpoints. */
10398
10399static void
10400print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10401{
3a5c3e22 10402 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
10403
10404 switch (b->type)
10405 {
10406 case bp_hardware_watchpoint:
10407 fprintf_unfiltered (fp, "watch");
10408 break;
10409 case bp_read_watchpoint:
10410 fprintf_unfiltered (fp, "rwatch");
10411 break;
10412 case bp_access_watchpoint:
10413 fprintf_unfiltered (fp, "awatch");
10414 break;
10415 default:
10416 internal_error (__FILE__, __LINE__,
10417 _("Invalid hardware watchpoint type."));
10418 }
10419
53807e9f
TT
10420 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string,
10421 phex (w->hw_wp_mask, sizeof (CORE_ADDR)));
d9b3f62e 10422 print_recreate_thread (b, fp);
9c06b0b4
TJB
10423}
10424
10425/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10426
2060206e 10427static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
10428
10429/* Tell whether the given watchpoint is a masked hardware watchpoint. */
10430
f2478a7e 10431static bool
9c06b0b4
TJB
10432is_masked_watchpoint (const struct breakpoint *b)
10433{
10434 return b->ops == &masked_watchpoint_breakpoint_ops;
10435}
10436
53a5351d
JM
10437/* accessflag: hw_write: watch write,
10438 hw_read: watch read,
10439 hw_access: watch access (read or write) */
c906108c 10440static void
bbc13ae3 10441watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 10442 int just_location, int internal)
c906108c 10443{
c1fc2657 10444 struct breakpoint *scope_breakpoint = NULL;
270140bd 10445 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
b926417a 10446 struct value *result;
bb9d5f81 10447 int saved_bitpos = 0, saved_bitsize = 0;
bbc13ae3
KS
10448 const char *exp_start = NULL;
10449 const char *exp_end = NULL;
10450 const char *tok, *end_tok;
9c06b0b4 10451 int toklen = -1;
bbc13ae3
KS
10452 const char *cond_start = NULL;
10453 const char *cond_end = NULL;
c906108c 10454 enum bptype bp_type;
37e4754d 10455 int thread = -1;
0cf6dd15 10456 int pc = 0;
9c06b0b4
TJB
10457 /* Flag to indicate whether we are going to use masks for
10458 the hardware watchpoint. */
10459 int use_mask = 0;
10460 CORE_ADDR mask = 0;
c906108c 10461
37e4754d
LM
10462 /* Make sure that we actually have parameters to parse. */
10463 if (arg != NULL && arg[0] != '\0')
10464 {
bbc13ae3
KS
10465 const char *value_start;
10466
10467 exp_end = arg + strlen (arg);
37e4754d 10468
9c06b0b4
TJB
10469 /* Look for "parameter value" pairs at the end
10470 of the arguments string. */
bbc13ae3 10471 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
10472 {
10473 /* Skip whitespace at the end of the argument list. */
10474 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10475 tok--;
10476
10477 /* Find the beginning of the last token.
10478 This is the value of the parameter. */
10479 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10480 tok--;
10481 value_start = tok + 1;
10482
10483 /* Skip whitespace. */
10484 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10485 tok--;
10486
10487 end_tok = tok;
10488
10489 /* Find the beginning of the second to last token.
10490 This is the parameter itself. */
10491 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10492 tok--;
10493 tok++;
10494 toklen = end_tok - tok + 1;
10495
61012eef 10496 if (toklen == 6 && startswith (tok, "thread"))
9c06b0b4 10497 {
5d5658a1 10498 struct thread_info *thr;
9c06b0b4
TJB
10499 /* At this point we've found a "thread" token, which means
10500 the user is trying to set a watchpoint that triggers
10501 only in a specific thread. */
5d5658a1 10502 const char *endp;
37e4754d 10503
9c06b0b4
TJB
10504 if (thread != -1)
10505 error(_("You can specify only one thread."));
37e4754d 10506
9c06b0b4 10507 /* Extract the thread ID from the next token. */
5d5658a1 10508 thr = parse_thread_id (value_start, &endp);
37e4754d 10509
5d5658a1 10510 /* Check if the user provided a valid thread ID. */
9c06b0b4 10511 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
5d5658a1 10512 invalid_thread_id_error (value_start);
9c06b0b4 10513
5d5658a1 10514 thread = thr->global_num;
9c06b0b4 10515 }
61012eef 10516 else if (toklen == 4 && startswith (tok, "mask"))
9c06b0b4
TJB
10517 {
10518 /* We've found a "mask" token, which means the user wants to
10519 create a hardware watchpoint that is going to have the mask
10520 facility. */
10521 struct value *mask_value, *mark;
37e4754d 10522
9c06b0b4
TJB
10523 if (use_mask)
10524 error(_("You can specify only one mask."));
37e4754d 10525
9c06b0b4 10526 use_mask = just_location = 1;
37e4754d 10527
9c06b0b4
TJB
10528 mark = value_mark ();
10529 mask_value = parse_to_comma_and_eval (&value_start);
10530 mask = value_as_address (mask_value);
10531 value_free_to_mark (mark);
10532 }
10533 else
10534 /* We didn't recognize what we found. We should stop here. */
10535 break;
37e4754d 10536
9c06b0b4
TJB
10537 /* Truncate the string and get rid of the "parameter value" pair before
10538 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 10539 exp_end = tok;
9c06b0b4 10540 }
37e4754d 10541 }
bbc13ae3
KS
10542 else
10543 exp_end = arg;
37e4754d 10544
bbc13ae3
KS
10545 /* Parse the rest of the arguments. From here on out, everything
10546 is in terms of a newly allocated string instead of the original
10547 ARG. */
81b1e71c
TT
10548 std::string expression (arg, exp_end - arg);
10549 exp_start = arg = expression.c_str ();
699bd4cf
TT
10550 innermost_block_tracker tracker;
10551 expression_up exp = parse_exp_1 (&arg, 0, 0, 0, &tracker);
c906108c 10552 exp_end = arg;
fa8a61dc
TT
10553 /* Remove trailing whitespace from the expression before saving it.
10554 This makes the eventual display of the expression string a bit
10555 prettier. */
10556 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
10557 --exp_end;
10558
65d79d4b 10559 /* Checking if the expression is not constant. */
4d01a485 10560 if (watchpoint_exp_is_const (exp.get ()))
65d79d4b
SDJ
10561 {
10562 int len;
10563
10564 len = exp_end - exp_start;
10565 while (len > 0 && isspace (exp_start[len - 1]))
10566 len--;
10567 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
10568 }
10569
699bd4cf 10570 exp_valid_block = tracker.block ();
b926417a 10571 struct value *mark = value_mark ();
850645cf
TT
10572 struct value *val_as_value = nullptr;
10573 fetch_subexp_value (exp.get (), &pc, &val_as_value, &result, NULL,
10574 just_location);
06a64a0b 10575
850645cf 10576 if (val_as_value != NULL && just_location)
bb9d5f81 10577 {
850645cf
TT
10578 saved_bitpos = value_bitpos (val_as_value);
10579 saved_bitsize = value_bitsize (val_as_value);
bb9d5f81
PP
10580 }
10581
850645cf 10582 value_ref_ptr val;
06a64a0b
TT
10583 if (just_location)
10584 {
9c06b0b4
TJB
10585 int ret;
10586
06a64a0b 10587 exp_valid_block = NULL;
850645cf 10588 val = release_value (value_addr (result));
06a64a0b 10589 value_free_to_mark (mark);
9c06b0b4
TJB
10590
10591 if (use_mask)
10592 {
850645cf 10593 ret = target_masked_watch_num_registers (value_as_address (val.get ()),
9c06b0b4
TJB
10594 mask);
10595 if (ret == -1)
10596 error (_("This target does not support masked watchpoints."));
10597 else if (ret == -2)
10598 error (_("Invalid mask or memory region."));
10599 }
06a64a0b 10600 }
850645cf
TT
10601 else if (val_as_value != NULL)
10602 val = release_value (val_as_value);
c906108c 10603
f1735a53
TT
10604 tok = skip_spaces (arg);
10605 end_tok = skip_to_space (tok);
c906108c
SS
10606
10607 toklen = end_tok - tok;
10608 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10609 {
10610 tok = cond_start = end_tok + 1;
699bd4cf
TT
10611 innermost_block_tracker if_tracker;
10612 parse_exp_1 (&tok, 0, 0, 0, &if_tracker);
60e1c644
PA
10613
10614 /* The watchpoint expression may not be local, but the condition
10615 may still be. E.g.: `watch global if local > 0'. */
699bd4cf 10616 cond_exp_valid_block = if_tracker.block ();
60e1c644 10617
c906108c
SS
10618 cond_end = tok;
10619 }
10620 if (*tok)
8a3fe4f8 10621 error (_("Junk at end of command."));
c906108c 10622
441d7c93
PA
10623 frame_info *wp_frame = block_innermost_frame (exp_valid_block);
10624
10625 /* Save this because create_internal_breakpoint below invalidates
10626 'wp_frame'. */
10627 frame_id watchpoint_frame = get_frame_id (wp_frame);
d983da9c
DJ
10628
10629 /* If the expression is "local", then set up a "watchpoint scope"
10630 breakpoint at the point where we've left the scope of the watchpoint
10631 expression. Create the scope breakpoint before the watchpoint, so
10632 that we will encounter it first in bpstat_stop_status. */
441d7c93 10633 if (exp_valid_block != NULL && wp_frame != NULL)
d983da9c 10634 {
441d7c93
PA
10635 frame_id caller_frame_id = frame_unwind_caller_id (wp_frame);
10636
10637 if (frame_id_p (caller_frame_id))
edb3359d 10638 {
441d7c93
PA
10639 gdbarch *caller_arch = frame_unwind_caller_arch (wp_frame);
10640 CORE_ADDR caller_pc = frame_unwind_caller_pc (wp_frame);
10641
edb3359d 10642 scope_breakpoint
441d7c93 10643 = create_internal_breakpoint (caller_arch, caller_pc,
06edf0c0
PA
10644 bp_watchpoint_scope,
10645 &momentary_breakpoint_ops);
d983da9c 10646
441d7c93
PA
10647 /* create_internal_breakpoint could invalidate WP_FRAME. */
10648 wp_frame = NULL;
10649
edb3359d 10650 scope_breakpoint->enable_state = bp_enabled;
d983da9c 10651
edb3359d
DJ
10652 /* Automatically delete the breakpoint when it hits. */
10653 scope_breakpoint->disposition = disp_del;
d983da9c 10654
edb3359d 10655 /* Only break in the proper frame (help with recursion). */
441d7c93 10656 scope_breakpoint->frame_id = caller_frame_id;
d983da9c 10657
edb3359d 10658 /* Set the address at which we will stop. */
441d7c93
PA
10659 scope_breakpoint->loc->gdbarch = caller_arch;
10660 scope_breakpoint->loc->requested_address = caller_pc;
edb3359d 10661 scope_breakpoint->loc->address
a6d9a66e
UW
10662 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
10663 scope_breakpoint->loc->requested_address,
edb3359d
DJ
10664 scope_breakpoint->type);
10665 }
d983da9c
DJ
10666 }
10667
e8369a73
AB
10668 /* Now set up the breakpoint. We create all watchpoints as hardware
10669 watchpoints here even if hardware watchpoints are turned off, a call
10670 to update_watchpoint later in this function will cause the type to
10671 drop back to bp_watchpoint (software watchpoint) if required. */
10672
10673 if (accessflag == hw_read)
10674 bp_type = bp_read_watchpoint;
10675 else if (accessflag == hw_access)
10676 bp_type = bp_access_watchpoint;
10677 else
10678 bp_type = bp_hardware_watchpoint;
3a5c3e22 10679
b270e6f9 10680 std::unique_ptr<watchpoint> w (new watchpoint ());
c1fc2657 10681
348d480f 10682 if (use_mask)
b270e6f9 10683 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10684 &masked_watchpoint_breakpoint_ops);
348d480f 10685 else
b270e6f9 10686 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10687 &watchpoint_breakpoint_ops);
c1fc2657
SM
10688 w->thread = thread;
10689 w->disposition = disp_donttouch;
10690 w->pspace = current_program_space;
b22e99fd 10691 w->exp = std::move (exp);
3a5c3e22
PA
10692 w->exp_valid_block = exp_valid_block;
10693 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
10694 if (just_location)
10695 {
850645cf
TT
10696 struct type *t = value_type (val.get ());
10697 CORE_ADDR addr = value_as_address (val.get ());
06a64a0b 10698
43cc5389
TT
10699 w->exp_string_reparse
10700 = current_language->la_watch_location_expression (t, addr).release ();
06a64a0b 10701
3a5c3e22 10702 w->exp_string = xstrprintf ("-location %.*s",
d63d0675 10703 (int) (exp_end - exp_start), exp_start);
06a64a0b
TT
10704 }
10705 else
3a5c3e22 10706 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
10707
10708 if (use_mask)
10709 {
3a5c3e22 10710 w->hw_wp_mask = mask;
9c06b0b4
TJB
10711 }
10712 else
10713 {
3a5c3e22 10714 w->val = val;
bb9d5f81
PP
10715 w->val_bitpos = saved_bitpos;
10716 w->val_bitsize = saved_bitsize;
4c1d86d9 10717 w->val_valid = true;
9c06b0b4 10718 }
77b06cd7 10719
c906108c 10720 if (cond_start)
c1fc2657 10721 w->cond_string = savestring (cond_start, cond_end - cond_start);
c906108c 10722 else
c1fc2657 10723 w->cond_string = 0;
c5aa993b 10724
441d7c93 10725 if (frame_id_p (watchpoint_frame))
f6bc2008 10726 {
441d7c93 10727 w->watchpoint_frame = watchpoint_frame;
3a5c3e22 10728 w->watchpoint_thread = inferior_ptid;
f6bc2008 10729 }
c906108c 10730 else
f6bc2008 10731 {
3a5c3e22
PA
10732 w->watchpoint_frame = null_frame_id;
10733 w->watchpoint_thread = null_ptid;
f6bc2008 10734 }
c906108c 10735
d983da9c 10736 if (scope_breakpoint != NULL)
c906108c 10737 {
d983da9c
DJ
10738 /* The scope breakpoint is related to the watchpoint. We will
10739 need to act on them together. */
c1fc2657 10740 w->related_breakpoint = scope_breakpoint;
b270e6f9 10741 scope_breakpoint->related_breakpoint = w.get ();
c906108c 10742 }
d983da9c 10743
06a64a0b
TT
10744 if (!just_location)
10745 value_free_to_mark (mark);
2d134ed3 10746
b270e6f9
TT
10747 /* Finally update the new watchpoint. This creates the locations
10748 that should be inserted. */
10749 update_watchpoint (w.get (), 1);
a9634178 10750
b270e6f9 10751 install_breakpoint (internal, std::move (w), 1);
c906108c
SS
10752}
10753
e09342b5 10754/* Return count of debug registers needed to watch the given expression.
e09342b5 10755 If the watchpoint cannot be handled in hardware return zero. */
c906108c 10756
c906108c 10757static int
a6535de1 10758can_use_hardware_watchpoint (const std::vector<value_ref_ptr> &vals)
c906108c
SS
10759{
10760 int found_memory_cnt = 0;
10761
10762 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 10763 if (!can_use_hw_watchpoints)
c906108c 10764 return 0;
c5aa993b 10765
a6535de1
TT
10766 gdb_assert (!vals.empty ());
10767 struct value *head = vals[0].get ();
10768
5c44784c
JM
10769 /* Make sure that the value of the expression depends only upon
10770 memory contents, and values computed from them within GDB. If we
10771 find any register references or function calls, we can't use a
10772 hardware watchpoint.
10773
10774 The idea here is that evaluating an expression generates a series
10775 of values, one holding the value of every subexpression. (The
10776 expression a*b+c has five subexpressions: a, b, a*b, c, and
10777 a*b+c.) GDB's values hold almost enough information to establish
10778 the criteria given above --- they identify memory lvalues,
10779 register lvalues, computed values, etcetera. So we can evaluate
10780 the expression, and then scan the chain of values that leaves
10781 behind to decide whether we can detect any possible change to the
10782 expression's final value using only hardware watchpoints.
10783
10784 However, I don't think that the values returned by inferior
10785 function calls are special in any way. So this function may not
10786 notice that an expression involving an inferior function call
10787 can't be watched with hardware watchpoints. FIXME. */
a6535de1 10788 for (const value_ref_ptr &iter : vals)
c906108c 10789 {
a6535de1
TT
10790 struct value *v = iter.get ();
10791
5c44784c 10792 if (VALUE_LVAL (v) == lval_memory)
c906108c 10793 {
8464be76
DJ
10794 if (v != head && value_lazy (v))
10795 /* A lazy memory lvalue in the chain is one that GDB never
10796 needed to fetch; we either just used its address (e.g.,
10797 `a' in `a.b') or we never needed it at all (e.g., `a'
10798 in `a,b'). This doesn't apply to HEAD; if that is
10799 lazy then it was not readable, but watch it anyway. */
5c44784c 10800 ;
53a5351d 10801 else
5c44784c
JM
10802 {
10803 /* Ahh, memory we actually used! Check if we can cover
10804 it with hardware watchpoints. */
df407dfe 10805 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
10806
10807 /* We only watch structs and arrays if user asked for it
10808 explicitly, never if they just happen to appear in a
10809 middle of some value chain. */
10810 if (v == head
10811 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
10812 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
10813 {
42ae5230 10814 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
10815 int len;
10816 int num_regs;
10817
a9634178 10818 len = (target_exact_watchpoints
e09342b5
TJB
10819 && is_scalar_type_recursive (vtype))?
10820 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 10821
e09342b5
TJB
10822 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
10823 if (!num_regs)
2e70b7b9
MS
10824 return 0;
10825 else
e09342b5 10826 found_memory_cnt += num_regs;
2e70b7b9 10827 }
5c44784c 10828 }
c5aa993b 10829 }
5086187c
AC
10830 else if (VALUE_LVAL (v) != not_lval
10831 && deprecated_value_modifiable (v) == 0)
38b6c3b3 10832 return 0; /* These are values from the history (e.g., $1). */
5086187c 10833 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 10834 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
10835 }
10836
10837 /* The expression itself looks suitable for using a hardware
10838 watchpoint, but give the target machine a chance to reject it. */
10839 return found_memory_cnt;
10840}
10841
8b93c638 10842void
f2fc3015 10843watch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10844{
84f4c1fe 10845 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
10846}
10847
06a64a0b
TT
10848/* A helper function that looks for the "-location" argument and then
10849 calls watch_command_1. */
10850
10851static void
0b39b52e 10852watch_maybe_just_location (const char *arg, int accessflag, int from_tty)
06a64a0b
TT
10853{
10854 int just_location = 0;
10855
10856 if (arg
10857 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
10858 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
cbba3ecd 10859 just_location = 1;
06a64a0b 10860
84f4c1fe 10861 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 10862}
8926118c 10863
c5aa993b 10864static void
0b39b52e 10865watch_command (const char *arg, int from_tty)
c906108c 10866{
06a64a0b 10867 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
10868}
10869
8b93c638 10870void
f2fc3015 10871rwatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10872{
84f4c1fe 10873 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 10874}
8926118c 10875
c5aa993b 10876static void
0b39b52e 10877rwatch_command (const char *arg, int from_tty)
c906108c 10878{
06a64a0b 10879 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
10880}
10881
8b93c638 10882void
f2fc3015 10883awatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 10884{
84f4c1fe 10885 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 10886}
8926118c 10887
c5aa993b 10888static void
0b39b52e 10889awatch_command (const char *arg, int from_tty)
c906108c 10890{
06a64a0b 10891 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 10892}
c906108c 10893\f
c5aa993b 10894
cfc31633
PA
10895/* Data for the FSM that manages the until(location)/advance commands
10896 in infcmd.c. Here because it uses the mechanisms of
10897 breakpoints. */
c906108c 10898
46e3ed7f 10899struct until_break_fsm : public thread_fsm
bfec99b2 10900{
46e3ed7f 10901 /* The thread that was current when the command was executed. */
cfc31633
PA
10902 int thread;
10903
10904 /* The breakpoint set at the destination location. */
46e3ed7f 10905 breakpoint_up location_breakpoint;
cfc31633
PA
10906
10907 /* Breakpoint set at the return address in the caller frame. May be
10908 NULL. */
46e3ed7f 10909 breakpoint_up caller_breakpoint;
cfc31633 10910
46e3ed7f
TT
10911 until_break_fsm (struct interp *cmd_interp, int thread,
10912 breakpoint_up &&location_breakpoint,
10913 breakpoint_up &&caller_breakpoint)
10914 : thread_fsm (cmd_interp),
10915 thread (thread),
10916 location_breakpoint (std::move (location_breakpoint)),
10917 caller_breakpoint (std::move (caller_breakpoint))
10918 {
10919 }
cfc31633 10920
46e3ed7f
TT
10921 void clean_up (struct thread_info *thread) override;
10922 bool should_stop (struct thread_info *thread) override;
10923 enum async_reply_reason do_async_reply_reason () override;
cfc31633
PA
10924};
10925
cfc31633
PA
10926/* Implementation of the 'should_stop' FSM method for the
10927 until(location)/advance commands. */
10928
46e3ed7f
TT
10929bool
10930until_break_fsm::should_stop (struct thread_info *tp)
cfc31633 10931{
cfc31633 10932 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
46e3ed7f
TT
10933 location_breakpoint.get ()) != NULL
10934 || (caller_breakpoint != NULL
cfc31633 10935 && bpstat_find_breakpoint (tp->control.stop_bpstat,
46e3ed7f
TT
10936 caller_breakpoint.get ()) != NULL))
10937 set_finished ();
cfc31633 10938
46e3ed7f 10939 return true;
cfc31633
PA
10940}
10941
10942/* Implementation of the 'clean_up' FSM method for the
10943 until(location)/advance commands. */
10944
46e3ed7f
TT
10945void
10946until_break_fsm::clean_up (struct thread_info *)
43ff13b4 10947{
cfc31633 10948 /* Clean up our temporary breakpoints. */
46e3ed7f
TT
10949 location_breakpoint.reset ();
10950 caller_breakpoint.reset ();
10951 delete_longjmp_breakpoint (thread);
cfc31633
PA
10952}
10953
10954/* Implementation of the 'async_reply_reason' FSM method for the
10955 until(location)/advance commands. */
10956
46e3ed7f
TT
10957enum async_reply_reason
10958until_break_fsm::do_async_reply_reason ()
cfc31633
PA
10959{
10960 return EXEC_ASYNC_LOCATION_REACHED;
43ff13b4
JM
10961}
10962
c906108c 10963void
f2fc3015 10964until_break_command (const char *arg, int from_tty, int anywhere)
c906108c 10965{
8556afb4
PA
10966 struct frame_info *frame;
10967 struct gdbarch *frame_gdbarch;
10968 struct frame_id stack_frame_id;
10969 struct frame_id caller_frame_id;
186c406b
TT
10970 int thread;
10971 struct thread_info *tp;
c906108c 10972
70509625 10973 clear_proceed_status (0);
c906108c
SS
10974
10975 /* Set a breakpoint where the user wants it and at return from
4a64f543 10976 this function. */
c5aa993b 10977
ffc2605c 10978 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f 10979
6c5b2ebe
PA
10980 std::vector<symtab_and_line> sals
10981 = (last_displayed_sal_is_valid ()
10982 ? decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
10983 get_last_displayed_symtab (),
10984 get_last_displayed_line ())
10985 : decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE,
cafb3438 10986 NULL, NULL, 0));
c5aa993b 10987
6c5b2ebe 10988 if (sals.size () != 1)
8a3fe4f8 10989 error (_("Couldn't get information on specified line."));
c5aa993b 10990
6c5b2ebe 10991 symtab_and_line &sal = sals[0];
c5aa993b 10992
c906108c 10993 if (*arg)
8a3fe4f8 10994 error (_("Junk at end of arguments."));
c5aa993b 10995
c906108c 10996 resolve_sal_pc (&sal);
c5aa993b 10997
186c406b 10998 tp = inferior_thread ();
5d5658a1 10999 thread = tp->global_num;
186c406b 11000
8556afb4
PA
11001 /* Note linespec handling above invalidates the frame chain.
11002 Installing a breakpoint also invalidates the frame chain (as it
11003 may need to switch threads), so do any frame handling before
11004 that. */
11005
11006 frame = get_selected_frame (NULL);
11007 frame_gdbarch = get_frame_arch (frame);
11008 stack_frame_id = get_stack_frame_id (frame);
11009 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11010
ae66c1fc
EZ
11011 /* Keep within the current frame, or in frames called by the current
11012 one. */
edb3359d 11013
454dafbd 11014 breakpoint_up caller_breakpoint;
5419bdae
TT
11015
11016 gdb::optional<delete_longjmp_breakpoint_cleanup> lj_deleter;
11017
883bc8d1 11018 if (frame_id_p (caller_frame_id))
c906108c 11019 {
883bc8d1 11020 struct symtab_and_line sal2;
cfc31633 11021 struct gdbarch *caller_gdbarch;
883bc8d1
PA
11022
11023 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11024 sal2.pc = frame_unwind_caller_pc (frame);
cfc31633
PA
11025 caller_gdbarch = frame_unwind_caller_arch (frame);
11026 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11027 sal2,
11028 caller_frame_id,
11029 bp_until);
186c406b 11030
883bc8d1 11031 set_longjmp_breakpoint (tp, caller_frame_id);
5419bdae 11032 lj_deleter.emplace (thread);
c906108c 11033 }
c5aa993b 11034
c70a6932
JK
11035 /* set_momentary_breakpoint could invalidate FRAME. */
11036 frame = NULL;
11037
454dafbd 11038 breakpoint_up location_breakpoint;
883bc8d1
PA
11039 if (anywhere)
11040 /* If the user told us to continue until a specified location,
11041 we don't specify a frame at which we need to stop. */
cfc31633
PA
11042 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11043 null_frame_id, bp_until);
883bc8d1
PA
11044 else
11045 /* Otherwise, specify the selected frame, because we want to stop
11046 only at the very same frame. */
cfc31633
PA
11047 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11048 stack_frame_id, bp_until);
883bc8d1 11049
46e3ed7f
TT
11050 tp->thread_fsm = new until_break_fsm (command_interp (), tp->global_num,
11051 std::move (location_breakpoint),
11052 std::move (caller_breakpoint));
f107f563 11053
5419bdae
TT
11054 if (lj_deleter)
11055 lj_deleter->release ();
f107f563 11056
cfc31633 11057 proceed (-1, GDB_SIGNAL_DEFAULT);
c906108c 11058}
ae66c1fc 11059
c906108c
SS
11060/* This function attempts to parse an optional "if <cond>" clause
11061 from the arg string. If one is not found, it returns NULL.
c5aa993b 11062
c906108c
SS
11063 Else, it returns a pointer to the condition string. (It does not
11064 attempt to evaluate the string against a particular block.) And,
11065 it updates arg to point to the first character following the parsed
4a64f543 11066 if clause in the arg string. */
53a5351d 11067
63160a43
PA
11068const char *
11069ep_parse_optional_if_clause (const char **arg)
c906108c 11070{
63160a43 11071 const char *cond_string;
c5aa993b
JM
11072
11073 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11074 return NULL;
c5aa993b 11075
4a64f543 11076 /* Skip the "if" keyword. */
c906108c 11077 (*arg) += 2;
c5aa993b 11078
c906108c 11079 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11080 condition string. */
f1735a53 11081 *arg = skip_spaces (*arg);
c906108c 11082 cond_string = *arg;
c5aa993b 11083
4a64f543
MS
11084 /* Assume that the condition occupies the remainder of the arg
11085 string. */
c906108c 11086 (*arg) += strlen (cond_string);
c5aa993b 11087
c906108c
SS
11088 return cond_string;
11089}
c5aa993b 11090
c906108c
SS
11091/* Commands to deal with catching events, such as signals, exceptions,
11092 process start/exit, etc. */
c5aa993b
JM
11093
11094typedef enum
11095{
44feb3ce
TT
11096 catch_fork_temporary, catch_vfork_temporary,
11097 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11098}
11099catch_fork_kind;
11100
c906108c 11101static void
eb4c3f4a 11102catch_fork_command_1 (const char *arg, int from_tty,
cc59ec59 11103 struct cmd_list_element *command)
c906108c 11104{
a6d9a66e 11105 struct gdbarch *gdbarch = get_current_arch ();
63160a43 11106 const char *cond_string = NULL;
44feb3ce
TT
11107 catch_fork_kind fork_kind;
11108 int tempflag;
11109
11110 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11111 tempflag = (fork_kind == catch_fork_temporary
11112 || fork_kind == catch_vfork_temporary);
c5aa993b 11113
44feb3ce
TT
11114 if (!arg)
11115 arg = "";
f1735a53 11116 arg = skip_spaces (arg);
c5aa993b 11117
c906108c 11118 /* The allowed syntax is:
c5aa993b
JM
11119 catch [v]fork
11120 catch [v]fork if <cond>
11121
4a64f543 11122 First, check if there's an if clause. */
c906108c 11123 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 11124
c906108c 11125 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11126 error (_("Junk at end of arguments."));
c5aa993b 11127
c906108c 11128 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 11129 and enable reporting of such events. */
c5aa993b
JM
11130 switch (fork_kind)
11131 {
44feb3ce
TT
11132 case catch_fork_temporary:
11133 case catch_fork_permanent:
a6d9a66e 11134 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11135 &catch_fork_breakpoint_ops);
c906108c 11136 break;
44feb3ce
TT
11137 case catch_vfork_temporary:
11138 case catch_vfork_permanent:
a6d9a66e 11139 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11140 &catch_vfork_breakpoint_ops);
c906108c 11141 break;
c5aa993b 11142 default:
8a3fe4f8 11143 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 11144 break;
c5aa993b 11145 }
c906108c
SS
11146}
11147
11148static void
eb4c3f4a 11149catch_exec_command_1 (const char *arg, int from_tty,
cc59ec59 11150 struct cmd_list_element *command)
c906108c 11151{
a6d9a66e 11152 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 11153 int tempflag;
63160a43 11154 const char *cond_string = NULL;
c906108c 11155
44feb3ce
TT
11156 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11157
11158 if (!arg)
11159 arg = "";
f1735a53 11160 arg = skip_spaces (arg);
c906108c
SS
11161
11162 /* The allowed syntax is:
c5aa993b
JM
11163 catch exec
11164 catch exec if <cond>
c906108c 11165
4a64f543 11166 First, check if there's an if clause. */
c906108c
SS
11167 cond_string = ep_parse_optional_if_clause (&arg);
11168
11169 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11170 error (_("Junk at end of arguments."));
c906108c 11171
b270e6f9
TT
11172 std::unique_ptr<exec_catchpoint> c (new exec_catchpoint ());
11173 init_catchpoint (c.get (), gdbarch, tempflag, cond_string,
b4d90040
PA
11174 &catch_exec_breakpoint_ops);
11175 c->exec_pathname = NULL;
11176
b270e6f9 11177 install_breakpoint (0, std::move (c), 1);
c906108c 11178}
c5aa993b 11179
9ac4176b 11180void
28010a5d
PA
11181init_ada_exception_breakpoint (struct breakpoint *b,
11182 struct gdbarch *gdbarch,
11183 struct symtab_and_line sal,
f2fc3015 11184 const char *addr_string,
c0a91b2b 11185 const struct breakpoint_ops *ops,
28010a5d 11186 int tempflag,
349774ef 11187 int enabled,
28010a5d 11188 int from_tty)
f7f9143b 11189{
f7f9143b
JB
11190 if (from_tty)
11191 {
5af949e3
UW
11192 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11193 if (!loc_gdbarch)
11194 loc_gdbarch = gdbarch;
11195
6c95b8df
PA
11196 describe_other_breakpoints (loc_gdbarch,
11197 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
11198 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11199 version for exception catchpoints, because two catchpoints
11200 used for different exception names will use the same address.
11201 In this case, a "breakpoint ... also set at..." warning is
4a64f543 11202 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 11203 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
11204 the user what type of catchpoint it is. The above is good
11205 enough for now, though. */
11206 }
11207
f06f1252 11208 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
f7f9143b 11209
349774ef 11210 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 11211 b->disposition = tempflag ? disp_del : disp_donttouch;
d28cd78a
TT
11212 b->location = string_to_event_location (&addr_string,
11213 language_def (language_ada));
f7f9143b 11214 b->language = language_ada;
f7f9143b
JB
11215}
11216
c906108c
SS
11217\f
11218
81b1e71c 11219/* Compare two breakpoints and return a strcmp-like result. */
8a2c437b
TT
11220
11221static int
81b1e71c 11222compare_breakpoints (const breakpoint *a, const breakpoint *b)
8a2c437b 11223{
81b1e71c
TT
11224 uintptr_t ua = (uintptr_t) a;
11225 uintptr_t ub = (uintptr_t) b;
8a2c437b 11226
81b1e71c 11227 if (a->number < b->number)
8a2c437b 11228 return -1;
81b1e71c 11229 else if (a->number > b->number)
8a2c437b
TT
11230 return 1;
11231
11232 /* Now sort by address, in case we see, e..g, two breakpoints with
11233 the number 0. */
11234 if (ua < ub)
11235 return -1;
94b0e70d 11236 return ua > ub ? 1 : 0;
8a2c437b
TT
11237}
11238
80f8a6eb 11239/* Delete breakpoints by address or line. */
c906108c
SS
11240
11241static void
0b39b52e 11242clear_command (const char *arg, int from_tty)
c906108c 11243{
81b1e71c 11244 struct breakpoint *b;
c906108c 11245 int default_match;
c906108c 11246
6c5b2ebe
PA
11247 std::vector<symtab_and_line> decoded_sals;
11248 symtab_and_line last_sal;
11249 gdb::array_view<symtab_and_line> sals;
c906108c
SS
11250 if (arg)
11251 {
6c5b2ebe
PA
11252 decoded_sals
11253 = decode_line_with_current_source (arg,
11254 (DECODE_LINE_FUNFIRSTLINE
11255 | DECODE_LINE_LIST_MODE));
c906108c 11256 default_match = 0;
6c5b2ebe 11257 sals = decoded_sals;
c906108c
SS
11258 }
11259 else
11260 {
1bfeeb0f
JL
11261 /* Set sal's line, symtab, pc, and pspace to the values
11262 corresponding to the last call to print_frame_info. If the
11263 codepoint is not valid, this will set all the fields to 0. */
51abb421 11264 last_sal = get_last_displayed_sal ();
6c5b2ebe 11265 if (last_sal.symtab == 0)
8a3fe4f8 11266 error (_("No source file specified."));
c906108c 11267
c906108c 11268 default_match = 1;
6c5b2ebe 11269 sals = last_sal;
c906108c
SS
11270 }
11271
4a64f543
MS
11272 /* We don't call resolve_sal_pc here. That's not as bad as it
11273 seems, because all existing breakpoints typically have both
11274 file/line and pc set. So, if clear is given file/line, we can
11275 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
11276
11277 We only support clearing given the address explicitly
11278 present in breakpoint table. Say, we've set breakpoint
4a64f543 11279 at file:line. There were several PC values for that file:line,
ed0616c6 11280 due to optimization, all in one block.
4a64f543
MS
11281
11282 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
11283 PC corresponding to the same file:line, the breakpoint won't
11284 be cleared. We probably can still clear the breakpoint, but
11285 since the other PC value is never presented to user, user
11286 can only find it by guessing, and it does not seem important
11287 to support that. */
11288
4a64f543
MS
11289 /* For each line spec given, delete bps which correspond to it. Do
11290 it in two passes, solely to preserve the current behavior that
11291 from_tty is forced true if we delete more than one
11292 breakpoint. */
c906108c 11293
81b1e71c 11294 std::vector<struct breakpoint *> found;
6c5b2ebe 11295 for (const auto &sal : sals)
c906108c 11296 {
05cba821
JK
11297 const char *sal_fullname;
11298
c906108c 11299 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
11300 If line given (pc == 0), clear all bpts on specified line.
11301 If defaulting, clear all bpts on default line
c906108c 11302 or at default pc.
c5aa993b
JM
11303
11304 defaulting sal.pc != 0 tests to do
11305
11306 0 1 pc
11307 1 1 pc _and_ line
11308 0 0 line
11309 1 0 <can't happen> */
c906108c 11310
05cba821
JK
11311 sal_fullname = (sal.symtab == NULL
11312 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 11313
4a64f543 11314 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 11315 ALL_BREAKPOINTS (b)
c5aa993b 11316 {
0d381245 11317 int match = 0;
4a64f543 11318 /* Are we going to delete b? */
cc60f2e3 11319 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
11320 {
11321 struct bp_location *loc = b->loc;
11322 for (; loc; loc = loc->next)
11323 {
f8eba3c6
TT
11324 /* If the user specified file:line, don't allow a PC
11325 match. This matches historical gdb behavior. */
11326 int pc_match = (!sal.explicit_line
11327 && sal.pc
11328 && (loc->pspace == sal.pspace)
11329 && (loc->address == sal.pc)
11330 && (!section_is_overlay (loc->section)
11331 || loc->section == sal.section));
4aac40c8
TT
11332 int line_match = 0;
11333
11334 if ((default_match || sal.explicit_line)
2f202fde 11335 && loc->symtab != NULL
05cba821 11336 && sal_fullname != NULL
4aac40c8 11337 && sal.pspace == loc->pspace
05cba821
JK
11338 && loc->line_number == sal.line
11339 && filename_cmp (symtab_to_fullname (loc->symtab),
11340 sal_fullname) == 0)
11341 line_match = 1;
4aac40c8 11342
0d381245
VP
11343 if (pc_match || line_match)
11344 {
11345 match = 1;
11346 break;
11347 }
11348 }
11349 }
11350
11351 if (match)
81b1e71c 11352 found.push_back (b);
c906108c 11353 }
80f8a6eb 11354 }
8a2c437b 11355
80f8a6eb 11356 /* Now go thru the 'found' chain and delete them. */
81b1e71c 11357 if (found.empty ())
80f8a6eb
MS
11358 {
11359 if (arg)
8a3fe4f8 11360 error (_("No breakpoint at %s."), arg);
80f8a6eb 11361 else
8a3fe4f8 11362 error (_("No breakpoint at this line."));
80f8a6eb 11363 }
c906108c 11364
8a2c437b 11365 /* Remove duplicates from the vec. */
81b1e71c 11366 std::sort (found.begin (), found.end (),
b926417a 11367 [] (const breakpoint *bp_a, const breakpoint *bp_b)
81b1e71c 11368 {
b926417a 11369 return compare_breakpoints (bp_a, bp_b) < 0;
81b1e71c
TT
11370 });
11371 found.erase (std::unique (found.begin (), found.end (),
b926417a 11372 [] (const breakpoint *bp_a, const breakpoint *bp_b)
81b1e71c 11373 {
b926417a 11374 return compare_breakpoints (bp_a, bp_b) == 0;
81b1e71c
TT
11375 }),
11376 found.end ());
8a2c437b 11377
81b1e71c 11378 if (found.size () > 1)
4a64f543 11379 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 11380 if (from_tty)
a3f17187 11381 {
81b1e71c 11382 if (found.size () == 1)
a3f17187
AC
11383 printf_unfiltered (_("Deleted breakpoint "));
11384 else
11385 printf_unfiltered (_("Deleted breakpoints "));
11386 }
d6e956e5 11387
81b1e71c 11388 for (breakpoint *iter : found)
80f8a6eb 11389 {
c5aa993b 11390 if (from_tty)
81b1e71c
TT
11391 printf_unfiltered ("%d ", iter->number);
11392 delete_breakpoint (iter);
c906108c 11393 }
80f8a6eb
MS
11394 if (from_tty)
11395 putchar_unfiltered ('\n');
c906108c
SS
11396}
11397\f
11398/* Delete breakpoint in BS if they are `delete' breakpoints and
11399 all breakpoints that are marked for deletion, whether hit or not.
11400 This is called after any breakpoint is hit, or after errors. */
11401
11402void
fba45db2 11403breakpoint_auto_delete (bpstat bs)
c906108c 11404{
35df4500 11405 struct breakpoint *b, *b_tmp;
c906108c
SS
11406
11407 for (; bs; bs = bs->next)
f431efe5
PA
11408 if (bs->breakpoint_at
11409 && bs->breakpoint_at->disposition == disp_del
c906108c 11410 && bs->stop)
f431efe5 11411 delete_breakpoint (bs->breakpoint_at);
c906108c 11412
35df4500 11413 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 11414 {
b5de0fa7 11415 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
11416 delete_breakpoint (b);
11417 }
c906108c
SS
11418}
11419
4a64f543 11420/* A comparison function for bp_location AP and BP being interfaced to
39ef2f62 11421 std::sort. Sort elements primarily by their ADDRESS (no matter what
cb1e4e32
PA
11422 bl_address_is_meaningful says), secondarily by ordering first
11423 permanent elements and terciarily just ensuring the array is sorted
39ef2f62 11424 stable way despite std::sort being an unstable algorithm. */
876fa593
JK
11425
11426static int
39ef2f62 11427bp_location_is_less_than (const bp_location *a, const bp_location *b)
876fa593 11428{
876fa593 11429 if (a->address != b->address)
39ef2f62 11430 return a->address < b->address;
876fa593 11431
dea2aa5f
LM
11432 /* Sort locations at the same address by their pspace number, keeping
11433 locations of the same inferior (in a multi-inferior environment)
11434 grouped. */
11435
11436 if (a->pspace->num != b->pspace->num)
39ef2f62 11437 return a->pspace->num < b->pspace->num;
dea2aa5f 11438
876fa593 11439 /* Sort permanent breakpoints first. */
1a853c52 11440 if (a->permanent != b->permanent)
39ef2f62 11441 return a->permanent > b->permanent;
876fa593 11442
c56a97f9
JK
11443 /* Make the internal GDB representation stable across GDB runs
11444 where A and B memory inside GDB can differ. Breakpoint locations of
11445 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
11446
11447 if (a->owner->number != b->owner->number)
39ef2f62 11448 return a->owner->number < b->owner->number;
876fa593 11449
39ef2f62 11450 return a < b;
876fa593
JK
11451}
11452
f5336ca5
PA
11453/* Set bp_locations_placed_address_before_address_max and
11454 bp_locations_shadow_len_after_address_max according to the current
11455 content of the bp_locations array. */
f7545552
TT
11456
11457static void
f5336ca5 11458bp_locations_target_extensions_update (void)
f7545552 11459{
876fa593
JK
11460 struct bp_location *bl, **blp_tmp;
11461
f5336ca5
PA
11462 bp_locations_placed_address_before_address_max = 0;
11463 bp_locations_shadow_len_after_address_max = 0;
876fa593
JK
11464
11465 ALL_BP_LOCATIONS (bl, blp_tmp)
11466 {
11467 CORE_ADDR start, end, addr;
11468
11469 if (!bp_location_has_shadow (bl))
11470 continue;
11471
11472 start = bl->target_info.placed_address;
11473 end = start + bl->target_info.shadow_len;
11474
11475 gdb_assert (bl->address >= start);
11476 addr = bl->address - start;
f5336ca5
PA
11477 if (addr > bp_locations_placed_address_before_address_max)
11478 bp_locations_placed_address_before_address_max = addr;
876fa593
JK
11479
11480 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
11481
11482 gdb_assert (bl->address < end);
11483 addr = end - bl->address;
f5336ca5
PA
11484 if (addr > bp_locations_shadow_len_after_address_max)
11485 bp_locations_shadow_len_after_address_max = addr;
876fa593 11486 }
f7545552
TT
11487}
11488
1e4d1764
YQ
11489/* Download tracepoint locations if they haven't been. */
11490
11491static void
11492download_tracepoint_locations (void)
11493{
7ed2c994 11494 struct breakpoint *b;
dd2e65cc 11495 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
1e4d1764 11496
5ed8105e 11497 scoped_restore_current_pspace_and_thread restore_pspace_thread;
1e4d1764 11498
7ed2c994 11499 ALL_TRACEPOINTS (b)
1e4d1764 11500 {
7ed2c994 11501 struct bp_location *bl;
1e4d1764 11502 struct tracepoint *t;
f2a8bc8a 11503 int bp_location_downloaded = 0;
1e4d1764 11504
7ed2c994 11505 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
11506 ? !may_insert_fast_tracepoints
11507 : !may_insert_tracepoints))
11508 continue;
11509
dd2e65cc
YQ
11510 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
11511 {
11512 if (target_can_download_tracepoint ())
11513 can_download_tracepoint = TRIBOOL_TRUE;
11514 else
11515 can_download_tracepoint = TRIBOOL_FALSE;
11516 }
11517
11518 if (can_download_tracepoint == TRIBOOL_FALSE)
11519 break;
11520
7ed2c994
YQ
11521 for (bl = b->loc; bl; bl = bl->next)
11522 {
11523 /* In tracepoint, locations are _never_ duplicated, so
11524 should_be_inserted is equivalent to
11525 unduplicated_should_be_inserted. */
11526 if (!should_be_inserted (bl) || bl->inserted)
11527 continue;
1e4d1764 11528
7ed2c994 11529 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 11530
7ed2c994 11531 target_download_tracepoint (bl);
1e4d1764 11532
7ed2c994 11533 bl->inserted = 1;
f2a8bc8a 11534 bp_location_downloaded = 1;
7ed2c994
YQ
11535 }
11536 t = (struct tracepoint *) b;
11537 t->number_on_target = b->number;
f2a8bc8a 11538 if (bp_location_downloaded)
76727919 11539 gdb::observers::breakpoint_modified.notify (b);
1e4d1764 11540 }
1e4d1764
YQ
11541}
11542
934709f0
PW
11543/* Swap the insertion/duplication state between two locations. */
11544
11545static void
11546swap_insertion (struct bp_location *left, struct bp_location *right)
11547{
11548 const int left_inserted = left->inserted;
11549 const int left_duplicate = left->duplicate;
b775012e 11550 const int left_needs_update = left->needs_update;
934709f0
PW
11551 const struct bp_target_info left_target_info = left->target_info;
11552
1e4d1764
YQ
11553 /* Locations of tracepoints can never be duplicated. */
11554 if (is_tracepoint (left->owner))
11555 gdb_assert (!left->duplicate);
11556 if (is_tracepoint (right->owner))
11557 gdb_assert (!right->duplicate);
11558
934709f0
PW
11559 left->inserted = right->inserted;
11560 left->duplicate = right->duplicate;
b775012e 11561 left->needs_update = right->needs_update;
934709f0
PW
11562 left->target_info = right->target_info;
11563 right->inserted = left_inserted;
11564 right->duplicate = left_duplicate;
b775012e 11565 right->needs_update = left_needs_update;
934709f0
PW
11566 right->target_info = left_target_info;
11567}
11568
b775012e
LM
11569/* Force the re-insertion of the locations at ADDRESS. This is called
11570 once a new/deleted/modified duplicate location is found and we are evaluating
11571 conditions on the target's side. Such conditions need to be updated on
11572 the target. */
11573
11574static void
11575force_breakpoint_reinsertion (struct bp_location *bl)
11576{
11577 struct bp_location **locp = NULL, **loc2p;
11578 struct bp_location *loc;
11579 CORE_ADDR address = 0;
11580 int pspace_num;
11581
11582 address = bl->address;
11583 pspace_num = bl->pspace->num;
11584
11585 /* This is only meaningful if the target is
11586 evaluating conditions and if the user has
11587 opted for condition evaluation on the target's
11588 side. */
11589 if (gdb_evaluates_breakpoint_condition_p ()
11590 || !target_supports_evaluation_of_breakpoint_conditions ())
11591 return;
11592
11593 /* Flag all breakpoint locations with this address and
11594 the same program space as the location
11595 as "its condition has changed". We need to
11596 update the conditions on the target's side. */
11597 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
11598 {
11599 loc = *loc2p;
11600
11601 if (!is_breakpoint (loc->owner)
11602 || pspace_num != loc->pspace->num)
11603 continue;
11604
11605 /* Flag the location appropriately. We use a different state to
11606 let everyone know that we already updated the set of locations
11607 with addr bl->address and program space bl->pspace. This is so
11608 we don't have to keep calling these functions just to mark locations
11609 that have already been marked. */
11610 loc->condition_changed = condition_updated;
11611
11612 /* Free the agent expression bytecode as well. We will compute
11613 it later on. */
833177a4 11614 loc->cond_bytecode.reset ();
b775012e
LM
11615 }
11616}
44702360
PA
11617/* Called whether new breakpoints are created, or existing breakpoints
11618 deleted, to update the global location list and recompute which
11619 locations are duplicate of which.
b775012e 11620
04086b45
PA
11621 The INSERT_MODE flag determines whether locations may not, may, or
11622 shall be inserted now. See 'enum ugll_insert_mode' for more
11623 info. */
b60e7edf 11624
0d381245 11625static void
44702360 11626update_global_location_list (enum ugll_insert_mode insert_mode)
0d381245 11627{
74960c60 11628 struct breakpoint *b;
876fa593 11629 struct bp_location **locp, *loc;
b775012e
LM
11630 /* Last breakpoint location address that was marked for update. */
11631 CORE_ADDR last_addr = 0;
11632 /* Last breakpoint location program space that was marked for update. */
11633 int last_pspace_num = -1;
f7545552 11634
2d134ed3
PA
11635 /* Used in the duplicates detection below. When iterating over all
11636 bp_locations, points to the first bp_location of a given address.
11637 Breakpoints and watchpoints of different types are never
11638 duplicates of each other. Keep one pointer for each type of
11639 breakpoint/watchpoint, so we only need to loop over all locations
11640 once. */
11641 struct bp_location *bp_loc_first; /* breakpoint */
11642 struct bp_location *wp_loc_first; /* hardware watchpoint */
11643 struct bp_location *awp_loc_first; /* access watchpoint */
11644 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 11645
f5336ca5
PA
11646 /* Saved former bp_locations array which we compare against the newly
11647 built bp_locations from the current state of ALL_BREAKPOINTS. */
81b1e71c 11648 struct bp_location **old_locp;
f5336ca5 11649 unsigned old_locations_count;
81b1e71c 11650 gdb::unique_xmalloc_ptr<struct bp_location *> old_locations (bp_locations);
876fa593 11651
f5336ca5
PA
11652 old_locations_count = bp_locations_count;
11653 bp_locations = NULL;
11654 bp_locations_count = 0;
0d381245 11655
74960c60 11656 ALL_BREAKPOINTS (b)
876fa593 11657 for (loc = b->loc; loc; loc = loc->next)
f5336ca5 11658 bp_locations_count++;
876fa593 11659
f5336ca5
PA
11660 bp_locations = XNEWVEC (struct bp_location *, bp_locations_count);
11661 locp = bp_locations;
876fa593
JK
11662 ALL_BREAKPOINTS (b)
11663 for (loc = b->loc; loc; loc = loc->next)
11664 *locp++ = loc;
39ef2f62
CB
11665 std::sort (bp_locations, bp_locations + bp_locations_count,
11666 bp_location_is_less_than);
876fa593 11667
f5336ca5 11668 bp_locations_target_extensions_update ();
74960c60 11669
4a64f543
MS
11670 /* Identify bp_location instances that are no longer present in the
11671 new list, and therefore should be freed. Note that it's not
11672 necessary that those locations should be removed from inferior --
11673 if there's another location at the same address (previously
11674 marked as duplicate), we don't need to remove/insert the
11675 location.
876fa593 11676
4a64f543
MS
11677 LOCP is kept in sync with OLD_LOCP, each pointing to the current
11678 and former bp_location array state respectively. */
876fa593 11679
f5336ca5 11680 locp = bp_locations;
81b1e71c
TT
11681 for (old_locp = old_locations.get ();
11682 old_locp < old_locations.get () + old_locations_count;
876fa593 11683 old_locp++)
74960c60 11684 {
876fa593 11685 struct bp_location *old_loc = *old_locp;
c7d46a38 11686 struct bp_location **loc2p;
876fa593 11687
e5dd4106 11688 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 11689 not, we have to free it. */
c7d46a38 11690 int found_object = 0;
20874c92
VP
11691 /* Tells if the location should remain inserted in the target. */
11692 int keep_in_target = 0;
11693 int removed = 0;
876fa593 11694
4a64f543
MS
11695 /* Skip LOCP entries which will definitely never be needed.
11696 Stop either at or being the one matching OLD_LOC. */
f5336ca5 11697 while (locp < bp_locations + bp_locations_count
c7d46a38 11698 && (*locp)->address < old_loc->address)
876fa593 11699 locp++;
c7d46a38
PA
11700
11701 for (loc2p = locp;
f5336ca5 11702 (loc2p < bp_locations + bp_locations_count
c7d46a38
PA
11703 && (*loc2p)->address == old_loc->address);
11704 loc2p++)
11705 {
b775012e
LM
11706 /* Check if this is a new/duplicated location or a duplicated
11707 location that had its condition modified. If so, we want to send
11708 its condition to the target if evaluation of conditions is taking
11709 place there. */
11710 if ((*loc2p)->condition_changed == condition_modified
11711 && (last_addr != old_loc->address
11712 || last_pspace_num != old_loc->pspace->num))
c7d46a38 11713 {
b775012e
LM
11714 force_breakpoint_reinsertion (*loc2p);
11715 last_pspace_num = old_loc->pspace->num;
c7d46a38 11716 }
b775012e
LM
11717
11718 if (*loc2p == old_loc)
11719 found_object = 1;
c7d46a38 11720 }
74960c60 11721
b775012e
LM
11722 /* We have already handled this address, update it so that we don't
11723 have to go through updates again. */
11724 last_addr = old_loc->address;
11725
11726 /* Target-side condition evaluation: Handle deleted locations. */
11727 if (!found_object)
11728 force_breakpoint_reinsertion (old_loc);
11729
4a64f543
MS
11730 /* If this location is no longer present, and inserted, look if
11731 there's maybe a new location at the same address. If so,
11732 mark that one inserted, and don't remove this one. This is
11733 needed so that we don't have a time window where a breakpoint
11734 at certain location is not inserted. */
74960c60 11735
876fa593 11736 if (old_loc->inserted)
0d381245 11737 {
4a64f543
MS
11738 /* If the location is inserted now, we might have to remove
11739 it. */
74960c60 11740
876fa593 11741 if (found_object && should_be_inserted (old_loc))
74960c60 11742 {
4a64f543
MS
11743 /* The location is still present in the location list,
11744 and still should be inserted. Don't do anything. */
20874c92 11745 keep_in_target = 1;
74960c60
VP
11746 }
11747 else
11748 {
b775012e
LM
11749 /* This location still exists, but it won't be kept in the
11750 target since it may have been disabled. We proceed to
11751 remove its target-side condition. */
11752
4a64f543
MS
11753 /* The location is either no longer present, or got
11754 disabled. See if there's another location at the
11755 same address, in which case we don't need to remove
11756 this one from the target. */
876fa593 11757
2bdf28a0 11758 /* OLD_LOC comes from existing struct breakpoint. */
cb1e4e32 11759 if (bl_address_is_meaningful (old_loc))
876fa593 11760 {
876fa593 11761 for (loc2p = locp;
f5336ca5 11762 (loc2p < bp_locations + bp_locations_count
c7d46a38 11763 && (*loc2p)->address == old_loc->address);
876fa593
JK
11764 loc2p++)
11765 {
11766 struct bp_location *loc2 = *loc2p;
11767
2d134ed3 11768 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 11769 {
85d721b8
PA
11770 /* Read watchpoint locations are switched to
11771 access watchpoints, if the former are not
11772 supported, but the latter are. */
11773 if (is_hardware_watchpoint (old_loc->owner))
11774 {
11775 gdb_assert (is_hardware_watchpoint (loc2->owner));
11776 loc2->watchpoint_type = old_loc->watchpoint_type;
11777 }
11778
934709f0
PW
11779 /* loc2 is a duplicated location. We need to check
11780 if it should be inserted in case it will be
11781 unduplicated. */
11782 if (loc2 != old_loc
11783 && unduplicated_should_be_inserted (loc2))
c7d46a38 11784 {
934709f0 11785 swap_insertion (old_loc, loc2);
c7d46a38
PA
11786 keep_in_target = 1;
11787 break;
11788 }
876fa593
JK
11789 }
11790 }
11791 }
74960c60
VP
11792 }
11793
20874c92
VP
11794 if (!keep_in_target)
11795 {
834c0d03 11796 if (remove_breakpoint (old_loc))
20874c92 11797 {
4a64f543
MS
11798 /* This is just about all we can do. We could keep
11799 this location on the global list, and try to
11800 remove it next time, but there's no particular
11801 reason why we will succeed next time.
20874c92 11802
4a64f543
MS
11803 Note that at this point, old_loc->owner is still
11804 valid, as delete_breakpoint frees the breakpoint
11805 only after calling us. */
3e43a32a
MS
11806 printf_filtered (_("warning: Error removing "
11807 "breakpoint %d\n"),
876fa593 11808 old_loc->owner->number);
20874c92
VP
11809 }
11810 removed = 1;
11811 }
0d381245 11812 }
74960c60
VP
11813
11814 if (!found_object)
1c5cfe86 11815 {
fbea99ea 11816 if (removed && target_is_non_stop_p ()
1cf4d951 11817 && need_moribund_for_location_type (old_loc))
20874c92 11818 {
db82e815
PA
11819 /* This location was removed from the target. In
11820 non-stop mode, a race condition is possible where
11821 we've removed a breakpoint, but stop events for that
11822 breakpoint are already queued and will arrive later.
11823 We apply an heuristic to be able to distinguish such
11824 SIGTRAPs from other random SIGTRAPs: we keep this
11825 breakpoint location for a bit, and will retire it
11826 after we see some number of events. The theory here
11827 is that reporting of events should, "on the average",
11828 be fair, so after a while we'll see events from all
11829 threads that have anything of interest, and no longer
11830 need to keep this breakpoint location around. We
11831 don't hold locations forever so to reduce chances of
11832 mistaking a non-breakpoint SIGTRAP for a breakpoint
11833 SIGTRAP.
11834
11835 The heuristic failing can be disastrous on
11836 decr_pc_after_break targets.
11837
11838 On decr_pc_after_break targets, like e.g., x86-linux,
11839 if we fail to recognize a late breakpoint SIGTRAP,
11840 because events_till_retirement has reached 0 too
11841 soon, we'll fail to do the PC adjustment, and report
11842 a random SIGTRAP to the user. When the user resumes
11843 the inferior, it will most likely immediately crash
2dec564e 11844 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
11845 corrupted, because of being resumed e.g., in the
11846 middle of a multi-byte instruction, or skipped a
11847 one-byte instruction. This was actually seen happen
11848 on native x86-linux, and should be less rare on
11849 targets that do not support new thread events, like
11850 remote, due to the heuristic depending on
11851 thread_count.
11852
11853 Mistaking a random SIGTRAP for a breakpoint trap
11854 causes similar symptoms (PC adjustment applied when
11855 it shouldn't), but then again, playing with SIGTRAPs
11856 behind the debugger's back is asking for trouble.
11857
11858 Since hardware watchpoint traps are always
11859 distinguishable from other traps, so we don't need to
11860 apply keep hardware watchpoint moribund locations
11861 around. We simply always ignore hardware watchpoint
11862 traps we can no longer explain. */
11863
5b6d1e4f
PA
11864 process_stratum_target *proc_target = nullptr;
11865 for (inferior *inf : all_inferiors ())
11866 if (inf->pspace == old_loc->pspace)
11867 {
11868 proc_target = inf->process_target ();
11869 break;
11870 }
11871 if (proc_target != nullptr)
11872 old_loc->events_till_retirement
11873 = 3 * (thread_count (proc_target) + 1);
11874 else
11875 old_loc->events_till_retirement = 1;
876fa593 11876 old_loc->owner = NULL;
20874c92 11877
1123588c 11878 moribund_locations.push_back (old_loc);
1c5cfe86
PA
11879 }
11880 else
f431efe5
PA
11881 {
11882 old_loc->owner = NULL;
11883 decref_bp_location (&old_loc);
11884 }
20874c92 11885 }
74960c60 11886 }
1c5cfe86 11887
348d480f
PA
11888 /* Rescan breakpoints at the same address and section, marking the
11889 first one as "first" and any others as "duplicates". This is so
11890 that the bpt instruction is only inserted once. If we have a
11891 permanent breakpoint at the same place as BPT, make that one the
11892 official one, and the rest as duplicates. Permanent breakpoints
11893 are sorted first for the same address.
11894
11895 Do the same for hardware watchpoints, but also considering the
11896 watchpoint's type (regular/access/read) and length. */
11897
11898 bp_loc_first = NULL;
11899 wp_loc_first = NULL;
11900 awp_loc_first = NULL;
11901 rwp_loc_first = NULL;
11902 ALL_BP_LOCATIONS (loc, locp)
11903 {
11904 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
11905 non-NULL. */
348d480f 11906 struct bp_location **loc_first_p;
d3fbdd86 11907 b = loc->owner;
348d480f 11908
6f380991 11909 if (!unduplicated_should_be_inserted (loc)
cb1e4e32 11910 || !bl_address_is_meaningful (loc)
1e4d1764
YQ
11911 /* Don't detect duplicate for tracepoint locations because they are
11912 never duplicated. See the comments in field `duplicate' of
11913 `struct bp_location'. */
348d480f 11914 || is_tracepoint (b))
b775012e
LM
11915 {
11916 /* Clear the condition modification flag. */
11917 loc->condition_changed = condition_unchanged;
11918 continue;
11919 }
348d480f 11920
348d480f
PA
11921 if (b->type == bp_hardware_watchpoint)
11922 loc_first_p = &wp_loc_first;
11923 else if (b->type == bp_read_watchpoint)
11924 loc_first_p = &rwp_loc_first;
11925 else if (b->type == bp_access_watchpoint)
11926 loc_first_p = &awp_loc_first;
11927 else
11928 loc_first_p = &bp_loc_first;
11929
11930 if (*loc_first_p == NULL
11931 || (overlay_debugging && loc->section != (*loc_first_p)->section)
11932 || !breakpoint_locations_match (loc, *loc_first_p))
11933 {
11934 *loc_first_p = loc;
11935 loc->duplicate = 0;
b775012e
LM
11936
11937 if (is_breakpoint (loc->owner) && loc->condition_changed)
11938 {
11939 loc->needs_update = 1;
11940 /* Clear the condition modification flag. */
11941 loc->condition_changed = condition_unchanged;
11942 }
348d480f
PA
11943 continue;
11944 }
11945
934709f0
PW
11946
11947 /* This and the above ensure the invariant that the first location
11948 is not duplicated, and is the inserted one.
11949 All following are marked as duplicated, and are not inserted. */
11950 if (loc->inserted)
11951 swap_insertion (loc, *loc_first_p);
348d480f
PA
11952 loc->duplicate = 1;
11953
b775012e
LM
11954 /* Clear the condition modification flag. */
11955 loc->condition_changed = condition_unchanged;
348d480f
PA
11956 }
11957
a25a5a45 11958 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
b775012e 11959 {
04086b45 11960 if (insert_mode != UGLL_DONT_INSERT)
b775012e
LM
11961 insert_breakpoint_locations ();
11962 else
11963 {
44702360
PA
11964 /* Even though the caller told us to not insert new
11965 locations, we may still need to update conditions on the
11966 target's side of breakpoints that were already inserted
11967 if the target is evaluating breakpoint conditions. We
b775012e
LM
11968 only update conditions for locations that are marked
11969 "needs_update". */
11970 update_inserted_breakpoint_locations ();
11971 }
11972 }
348d480f 11973
04086b45 11974 if (insert_mode != UGLL_DONT_INSERT)
1e4d1764 11975 download_tracepoint_locations ();
348d480f
PA
11976}
11977
11978void
11979breakpoint_retire_moribund (void)
11980{
1123588c
TT
11981 for (int ix = 0; ix < moribund_locations.size (); ++ix)
11982 {
11983 struct bp_location *loc = moribund_locations[ix];
11984 if (--(loc->events_till_retirement) == 0)
11985 {
11986 decref_bp_location (&loc);
11987 unordered_remove (moribund_locations, ix);
11988 --ix;
11989 }
11990 }
348d480f
PA
11991}
11992
11993static void
44702360 11994update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
348d480f 11995{
348d480f 11996
a70b8144 11997 try
492d29ea
PA
11998 {
11999 update_global_location_list (insert_mode);
12000 }
230d2906 12001 catch (const gdb_exception_error &e)
492d29ea
PA
12002 {
12003 }
348d480f
PA
12004}
12005
12006/* Clear BKP from a BPS. */
12007
12008static void
12009bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12010{
12011 bpstat bs;
12012
12013 for (bs = bps; bs; bs = bs->next)
12014 if (bs->breakpoint_at == bpt)
12015 {
12016 bs->breakpoint_at = NULL;
12017 bs->old_val = NULL;
12018 /* bs->commands will be freed later. */
12019 }
12020}
12021
12022/* Callback for iterate_over_threads. */
12023static int
12024bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12025{
9a3c8263 12026 struct breakpoint *bpt = (struct breakpoint *) data;
348d480f
PA
12027
12028 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12029 return 0;
12030}
12031
12032/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12033 callbacks. */
12034
12035static void
12036say_where (struct breakpoint *b)
12037{
12038 struct value_print_options opts;
12039
12040 get_user_print_options (&opts);
12041
12042 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12043 single string. */
12044 if (b->loc == NULL)
12045 {
f00aae0f
KS
12046 /* For pending locations, the output differs slightly based
12047 on b->extra_string. If this is non-NULL, it contains either
12048 a condition or dprintf arguments. */
12049 if (b->extra_string == NULL)
12050 {
12051 printf_filtered (_(" (%s) pending."),
d28cd78a 12052 event_location_to_string (b->location.get ()));
f00aae0f
KS
12053 }
12054 else if (b->type == bp_dprintf)
12055 {
12056 printf_filtered (_(" (%s,%s) pending."),
d28cd78a 12057 event_location_to_string (b->location.get ()),
f00aae0f
KS
12058 b->extra_string);
12059 }
12060 else
12061 {
12062 printf_filtered (_(" (%s %s) pending."),
d28cd78a 12063 event_location_to_string (b->location.get ()),
f00aae0f
KS
12064 b->extra_string);
12065 }
348d480f
PA
12066 }
12067 else
12068 {
2f202fde 12069 if (opts.addressprint || b->loc->symtab == NULL)
6a831f06
PA
12070 printf_filtered (" at %ps",
12071 styled_string (address_style.style (),
12072 paddress (b->loc->gdbarch,
12073 b->loc->address)));
2f202fde 12074 if (b->loc->symtab != NULL)
f8eba3c6
TT
12075 {
12076 /* If there is a single location, we can print the location
12077 more nicely. */
12078 if (b->loc->next == NULL)
0bb296cb 12079 {
6a831f06
PA
12080 const char *filename
12081 = symtab_to_filename_for_display (b->loc->symtab);
12082 printf_filtered (": file %ps, line %d.",
12083 styled_string (file_name_style.style (),
12084 filename),
0bb296cb
TT
12085 b->loc->line_number);
12086 }
f8eba3c6
TT
12087 else
12088 /* This is not ideal, but each location may have a
12089 different file name, and this at least reflects the
12090 real situation somewhat. */
f00aae0f 12091 printf_filtered (": %s.",
d28cd78a 12092 event_location_to_string (b->location.get ()));
f8eba3c6 12093 }
348d480f
PA
12094
12095 if (b->loc->next)
12096 {
12097 struct bp_location *loc = b->loc;
12098 int n = 0;
12099 for (; loc; loc = loc->next)
12100 ++n;
12101 printf_filtered (" (%d locations)", n);
12102 }
12103 }
12104}
12105
5f486660 12106bp_location::~bp_location ()
348d480f 12107{
5f486660 12108 xfree (function_name);
348d480f
PA
12109}
12110
c1fc2657 12111/* Destructor for the breakpoint base class. */
348d480f 12112
c1fc2657 12113breakpoint::~breakpoint ()
348d480f 12114{
c1fc2657
SM
12115 xfree (this->cond_string);
12116 xfree (this->extra_string);
348d480f
PA
12117}
12118
2060206e
PA
12119static struct bp_location *
12120base_breakpoint_allocate_location (struct breakpoint *self)
348d480f 12121{
5f486660 12122 return new bp_location (self);
348d480f
PA
12123}
12124
2060206e
PA
12125static void
12126base_breakpoint_re_set (struct breakpoint *b)
12127{
12128 /* Nothing to re-set. */
12129}
12130
12131#define internal_error_pure_virtual_called() \
12132 gdb_assert_not_reached ("pure virtual function called")
12133
12134static int
12135base_breakpoint_insert_location (struct bp_location *bl)
12136{
12137 internal_error_pure_virtual_called ();
12138}
12139
12140static int
73971819
PA
12141base_breakpoint_remove_location (struct bp_location *bl,
12142 enum remove_bp_reason reason)
2060206e
PA
12143{
12144 internal_error_pure_virtual_called ();
12145}
12146
12147static int
12148base_breakpoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12149 const address_space *aspace,
09ac7c10
TT
12150 CORE_ADDR bp_addr,
12151 const struct target_waitstatus *ws)
2060206e
PA
12152{
12153 internal_error_pure_virtual_called ();
12154}
12155
12156static void
12157base_breakpoint_check_status (bpstat bs)
12158{
12159 /* Always stop. */
12160}
12161
12162/* A "works_in_software_mode" breakpoint_ops method that just internal
12163 errors. */
12164
12165static int
12166base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12167{
12168 internal_error_pure_virtual_called ();
12169}
12170
12171/* A "resources_needed" breakpoint_ops method that just internal
12172 errors. */
12173
12174static int
12175base_breakpoint_resources_needed (const struct bp_location *bl)
12176{
12177 internal_error_pure_virtual_called ();
12178}
12179
12180static enum print_stop_action
12181base_breakpoint_print_it (bpstat bs)
12182{
12183 internal_error_pure_virtual_called ();
12184}
12185
12186static void
12187base_breakpoint_print_one_detail (const struct breakpoint *self,
12188 struct ui_out *uiout)
12189{
12190 /* nothing */
12191}
12192
12193static void
12194base_breakpoint_print_mention (struct breakpoint *b)
12195{
12196 internal_error_pure_virtual_called ();
12197}
12198
12199static void
12200base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12201{
12202 internal_error_pure_virtual_called ();
12203}
12204
983af33b 12205static void
f00aae0f
KS
12206base_breakpoint_create_sals_from_location
12207 (const struct event_location *location,
12208 struct linespec_result *canonical,
12209 enum bptype type_wanted)
983af33b
SDJ
12210{
12211 internal_error_pure_virtual_called ();
12212}
12213
12214static void
12215base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12216 struct linespec_result *c,
e1e01040
PA
12217 gdb::unique_xmalloc_ptr<char> cond_string,
12218 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12219 enum bptype type_wanted,
12220 enum bpdisp disposition,
12221 int thread,
12222 int task, int ignore_count,
12223 const struct breakpoint_ops *o,
12224 int from_tty, int enabled,
44f238bb 12225 int internal, unsigned flags)
983af33b
SDJ
12226{
12227 internal_error_pure_virtual_called ();
12228}
12229
6c5b2ebe 12230static std::vector<symtab_and_line>
f00aae0f
KS
12231base_breakpoint_decode_location (struct breakpoint *b,
12232 const struct event_location *location,
6c5b2ebe 12233 struct program_space *search_pspace)
983af33b
SDJ
12234{
12235 internal_error_pure_virtual_called ();
12236}
12237
ab04a2af
TT
12238/* The default 'explains_signal' method. */
12239
47591c29 12240static int
427cd150 12241base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 12242{
47591c29 12243 return 1;
ab04a2af
TT
12244}
12245
9d6e6e84
HZ
12246/* The default "after_condition_true" method. */
12247
12248static void
12249base_breakpoint_after_condition_true (struct bpstats *bs)
12250{
12251 /* Nothing to do. */
12252}
12253
ab04a2af 12254struct breakpoint_ops base_breakpoint_ops =
2060206e 12255{
2060206e
PA
12256 base_breakpoint_allocate_location,
12257 base_breakpoint_re_set,
12258 base_breakpoint_insert_location,
12259 base_breakpoint_remove_location,
12260 base_breakpoint_breakpoint_hit,
12261 base_breakpoint_check_status,
12262 base_breakpoint_resources_needed,
12263 base_breakpoint_works_in_software_mode,
12264 base_breakpoint_print_it,
12265 NULL,
12266 base_breakpoint_print_one_detail,
12267 base_breakpoint_print_mention,
983af33b 12268 base_breakpoint_print_recreate,
5f700d83 12269 base_breakpoint_create_sals_from_location,
983af33b 12270 base_breakpoint_create_breakpoints_sal,
5f700d83 12271 base_breakpoint_decode_location,
9d6e6e84
HZ
12272 base_breakpoint_explains_signal,
12273 base_breakpoint_after_condition_true,
2060206e
PA
12274};
12275
12276/* Default breakpoint_ops methods. */
12277
12278static void
348d480f
PA
12279bkpt_re_set (struct breakpoint *b)
12280{
06edf0c0 12281 /* FIXME: is this still reachable? */
9ef9e6a6 12282 if (breakpoint_event_location_empty_p (b))
06edf0c0 12283 {
f00aae0f 12284 /* Anything without a location can't be re-set. */
348d480f 12285 delete_breakpoint (b);
06edf0c0 12286 return;
348d480f 12287 }
06edf0c0
PA
12288
12289 breakpoint_re_set_default (b);
348d480f
PA
12290}
12291
2060206e 12292static int
348d480f
PA
12293bkpt_insert_location (struct bp_location *bl)
12294{
cd6c3b4f
YQ
12295 CORE_ADDR addr = bl->target_info.reqstd_address;
12296
579c6ad9 12297 bl->target_info.kind = breakpoint_kind (bl, &addr);
cd6c3b4f
YQ
12298 bl->target_info.placed_address = addr;
12299
348d480f 12300 if (bl->loc_type == bp_loc_hardware_breakpoint)
7c16b83e 12301 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
348d480f 12302 else
7c16b83e 12303 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
348d480f
PA
12304}
12305
2060206e 12306static int
73971819 12307bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
348d480f
PA
12308{
12309 if (bl->loc_type == bp_loc_hardware_breakpoint)
12310 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12311 else
73971819 12312 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
348d480f
PA
12313}
12314
2060206e 12315static int
348d480f 12316bkpt_breakpoint_hit (const struct bp_location *bl,
bd522513 12317 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12318 const struct target_waitstatus *ws)
348d480f 12319{
09ac7c10 12320 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 12321 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
12322 return 0;
12323
348d480f
PA
12324 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12325 aspace, bp_addr))
12326 return 0;
12327
12328 if (overlay_debugging /* unmapped overlay section */
12329 && section_is_overlay (bl->section)
12330 && !section_is_mapped (bl->section))
12331 return 0;
12332
12333 return 1;
12334}
12335
cd1608cc
PA
12336static int
12337dprintf_breakpoint_hit (const struct bp_location *bl,
bd522513 12338 const address_space *aspace, CORE_ADDR bp_addr,
cd1608cc
PA
12339 const struct target_waitstatus *ws)
12340{
12341 if (dprintf_style == dprintf_style_agent
12342 && target_can_run_breakpoint_commands ())
12343 {
12344 /* An agent-style dprintf never causes a stop. If we see a trap
12345 for this address it must be for a breakpoint that happens to
12346 be set at the same address. */
12347 return 0;
12348 }
12349
12350 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
12351}
12352
2060206e 12353static int
348d480f
PA
12354bkpt_resources_needed (const struct bp_location *bl)
12355{
12356 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12357
12358 return 1;
12359}
12360
2060206e 12361static enum print_stop_action
348d480f
PA
12362bkpt_print_it (bpstat bs)
12363{
348d480f
PA
12364 struct breakpoint *b;
12365 const struct bp_location *bl;
001c8c33 12366 int bp_temp;
79a45e25 12367 struct ui_out *uiout = current_uiout;
348d480f
PA
12368
12369 gdb_assert (bs->bp_location_at != NULL);
12370
12371 bl = bs->bp_location_at;
12372 b = bs->breakpoint_at;
12373
001c8c33
PA
12374 bp_temp = b->disposition == disp_del;
12375 if (bl->address != bl->requested_address)
12376 breakpoint_adjustment_warning (bl->requested_address,
12377 bl->address,
12378 b->number, 1);
12379 annotate_breakpoint (b->number);
f303dbd6
PA
12380 maybe_print_thread_hit_breakpoint (uiout);
12381
112e8700 12382 if (uiout->is_mi_like_p ())
348d480f 12383 {
112e8700 12384 uiout->field_string ("reason",
001c8c33 12385 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 12386 uiout->field_string ("disp", bpdisp_text (b->disposition));
06edf0c0 12387 }
6a831f06
PA
12388 if (bp_temp)
12389 uiout->message ("Temporary breakpoint %pF, ",
12390 signed_field ("bkptno", b->number));
12391 else
12392 uiout->message ("Breakpoint %pF, ",
12393 signed_field ("bkptno", b->number));
06edf0c0 12394
001c8c33 12395 return PRINT_SRC_AND_LOC;
06edf0c0
PA
12396}
12397
2060206e 12398static void
06edf0c0
PA
12399bkpt_print_mention (struct breakpoint *b)
12400{
112e8700 12401 if (current_uiout->is_mi_like_p ())
06edf0c0
PA
12402 return;
12403
12404 switch (b->type)
12405 {
12406 case bp_breakpoint:
12407 case bp_gnu_ifunc_resolver:
12408 if (b->disposition == disp_del)
12409 printf_filtered (_("Temporary breakpoint"));
12410 else
12411 printf_filtered (_("Breakpoint"));
12412 printf_filtered (_(" %d"), b->number);
12413 if (b->type == bp_gnu_ifunc_resolver)
12414 printf_filtered (_(" at gnu-indirect-function resolver"));
12415 break;
12416 case bp_hardware_breakpoint:
12417 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
12418 break;
e7e0cddf
SS
12419 case bp_dprintf:
12420 printf_filtered (_("Dprintf %d"), b->number);
12421 break;
06edf0c0
PA
12422 }
12423
12424 say_where (b);
12425}
12426
2060206e 12427static void
06edf0c0
PA
12428bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12429{
12430 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12431 fprintf_unfiltered (fp, "tbreak");
12432 else if (tp->type == bp_breakpoint)
12433 fprintf_unfiltered (fp, "break");
12434 else if (tp->type == bp_hardware_breakpoint
12435 && tp->disposition == disp_del)
12436 fprintf_unfiltered (fp, "thbreak");
12437 else if (tp->type == bp_hardware_breakpoint)
12438 fprintf_unfiltered (fp, "hbreak");
12439 else
12440 internal_error (__FILE__, __LINE__,
12441 _("unhandled breakpoint type %d"), (int) tp->type);
12442
f00aae0f 12443 fprintf_unfiltered (fp, " %s",
d28cd78a 12444 event_location_to_string (tp->location.get ()));
f00aae0f
KS
12445
12446 /* Print out extra_string if this breakpoint is pending. It might
12447 contain, for example, conditions that were set by the user. */
12448 if (tp->loc == NULL && tp->extra_string != NULL)
12449 fprintf_unfiltered (fp, " %s", tp->extra_string);
12450
dd11a36c 12451 print_recreate_thread (tp, fp);
06edf0c0
PA
12452}
12453
983af33b 12454static void
f00aae0f
KS
12455bkpt_create_sals_from_location (const struct event_location *location,
12456 struct linespec_result *canonical,
12457 enum bptype type_wanted)
983af33b 12458{
f00aae0f 12459 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12460}
12461
12462static void
12463bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
12464 struct linespec_result *canonical,
e1e01040
PA
12465 gdb::unique_xmalloc_ptr<char> cond_string,
12466 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12467 enum bptype type_wanted,
12468 enum bpdisp disposition,
12469 int thread,
12470 int task, int ignore_count,
12471 const struct breakpoint_ops *ops,
12472 int from_tty, int enabled,
44f238bb 12473 int internal, unsigned flags)
983af33b 12474{
023fa29b 12475 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
12476 std::move (cond_string),
12477 std::move (extra_string),
e7e0cddf 12478 type_wanted,
983af33b
SDJ
12479 disposition, thread, task,
12480 ignore_count, ops, from_tty,
44f238bb 12481 enabled, internal, flags);
983af33b
SDJ
12482}
12483
6c5b2ebe 12484static std::vector<symtab_and_line>
f00aae0f
KS
12485bkpt_decode_location (struct breakpoint *b,
12486 const struct event_location *location,
6c5b2ebe 12487 struct program_space *search_pspace)
983af33b 12488{
6c5b2ebe 12489 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
12490}
12491
06edf0c0
PA
12492/* Virtual table for internal breakpoints. */
12493
12494static void
12495internal_bkpt_re_set (struct breakpoint *b)
12496{
12497 switch (b->type)
12498 {
12499 /* Delete overlay event and longjmp master breakpoints; they
12500 will be reset later by breakpoint_re_set. */
12501 case bp_overlay_event:
12502 case bp_longjmp_master:
12503 case bp_std_terminate_master:
12504 case bp_exception_master:
12505 delete_breakpoint (b);
12506 break;
12507
12508 /* This breakpoint is special, it's set up when the inferior
12509 starts and we really don't want to touch it. */
12510 case bp_shlib_event:
12511
12512 /* Like bp_shlib_event, this breakpoint type is special. Once
12513 it is set up, we do not want to touch it. */
12514 case bp_thread_event:
12515 break;
12516 }
12517}
12518
12519static void
12520internal_bkpt_check_status (bpstat bs)
12521{
a9b3a50f
PA
12522 if (bs->breakpoint_at->type == bp_shlib_event)
12523 {
12524 /* If requested, stop when the dynamic linker notifies GDB of
12525 events. This allows the user to get control and place
12526 breakpoints in initializer routines for dynamically loaded
12527 objects (among other things). */
12528 bs->stop = stop_on_solib_events;
12529 bs->print = stop_on_solib_events;
12530 }
12531 else
12532 bs->stop = 0;
06edf0c0
PA
12533}
12534
12535static enum print_stop_action
12536internal_bkpt_print_it (bpstat bs)
12537{
06edf0c0 12538 struct breakpoint *b;
06edf0c0 12539
06edf0c0
PA
12540 b = bs->breakpoint_at;
12541
06edf0c0
PA
12542 switch (b->type)
12543 {
348d480f
PA
12544 case bp_shlib_event:
12545 /* Did we stop because the user set the stop_on_solib_events
12546 variable? (If so, we report this as a generic, "Stopped due
12547 to shlib event" message.) */
edcc5120 12548 print_solib_event (0);
348d480f
PA
12549 break;
12550
12551 case bp_thread_event:
12552 /* Not sure how we will get here.
12553 GDB should not stop for these breakpoints. */
12554 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12555 break;
12556
12557 case bp_overlay_event:
12558 /* By analogy with the thread event, GDB should not stop for these. */
12559 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12560 break;
12561
12562 case bp_longjmp_master:
12563 /* These should never be enabled. */
12564 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
12565 break;
12566
12567 case bp_std_terminate_master:
12568 /* These should never be enabled. */
12569 printf_filtered (_("std::terminate Master Breakpoint: "
12570 "gdb should not stop!\n"));
348d480f
PA
12571 break;
12572
12573 case bp_exception_master:
12574 /* These should never be enabled. */
12575 printf_filtered (_("Exception Master Breakpoint: "
12576 "gdb should not stop!\n"));
06edf0c0
PA
12577 break;
12578 }
12579
001c8c33 12580 return PRINT_NOTHING;
06edf0c0
PA
12581}
12582
12583static void
12584internal_bkpt_print_mention (struct breakpoint *b)
12585{
12586 /* Nothing to mention. These breakpoints are internal. */
12587}
12588
06edf0c0
PA
12589/* Virtual table for momentary breakpoints */
12590
12591static void
12592momentary_bkpt_re_set (struct breakpoint *b)
12593{
12594 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 12595 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
12596 Otherwise these should have been blown away via the cleanup chain
12597 or by breakpoint_init_inferior when we rerun the executable. */
12598}
12599
12600static void
12601momentary_bkpt_check_status (bpstat bs)
12602{
12603 /* Nothing. The point of these breakpoints is causing a stop. */
12604}
12605
12606static enum print_stop_action
12607momentary_bkpt_print_it (bpstat bs)
12608{
001c8c33 12609 return PRINT_UNKNOWN;
348d480f
PA
12610}
12611
06edf0c0
PA
12612static void
12613momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 12614{
06edf0c0 12615 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
12616}
12617
e2e4d78b
JK
12618/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
12619
12620 It gets cleared already on the removal of the first one of such placed
12621 breakpoints. This is OK as they get all removed altogether. */
12622
c1fc2657 12623longjmp_breakpoint::~longjmp_breakpoint ()
e2e4d78b 12624{
c1fc2657 12625 thread_info *tp = find_thread_global_id (this->thread);
e2e4d78b 12626
c1fc2657 12627 if (tp != NULL)
e2e4d78b 12628 tp->initiating_frame = null_frame_id;
e2e4d78b
JK
12629}
12630
55aa24fb
SDJ
12631/* Specific methods for probe breakpoints. */
12632
12633static int
12634bkpt_probe_insert_location (struct bp_location *bl)
12635{
12636 int v = bkpt_insert_location (bl);
12637
12638 if (v == 0)
12639 {
12640 /* The insertion was successful, now let's set the probe's semaphore
12641 if needed. */
935676c9 12642 bl->probe.prob->set_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb
SDJ
12643 }
12644
12645 return v;
12646}
12647
12648static int
73971819
PA
12649bkpt_probe_remove_location (struct bp_location *bl,
12650 enum remove_bp_reason reason)
55aa24fb
SDJ
12651{
12652 /* Let's clear the semaphore before removing the location. */
935676c9 12653 bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb 12654
73971819 12655 return bkpt_remove_location (bl, reason);
55aa24fb
SDJ
12656}
12657
12658static void
f00aae0f 12659bkpt_probe_create_sals_from_location (const struct event_location *location,
5f700d83 12660 struct linespec_result *canonical,
f00aae0f 12661 enum bptype type_wanted)
55aa24fb
SDJ
12662{
12663 struct linespec_sals lsal;
12664
c2f4122d 12665 lsal.sals = parse_probes (location, NULL, canonical);
8e9e35b1
TT
12666 lsal.canonical
12667 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 12668 canonical->lsals.push_back (std::move (lsal));
55aa24fb
SDJ
12669}
12670
6c5b2ebe 12671static std::vector<symtab_and_line>
f00aae0f
KS
12672bkpt_probe_decode_location (struct breakpoint *b,
12673 const struct event_location *location,
6c5b2ebe 12674 struct program_space *search_pspace)
55aa24fb 12675{
6c5b2ebe
PA
12676 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL);
12677 if (sals.empty ())
55aa24fb 12678 error (_("probe not found"));
6c5b2ebe 12679 return sals;
55aa24fb
SDJ
12680}
12681
348d480f 12682/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 12683
348d480f
PA
12684static void
12685tracepoint_re_set (struct breakpoint *b)
12686{
12687 breakpoint_re_set_default (b);
12688}
876fa593 12689
348d480f
PA
12690static int
12691tracepoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12692 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12693 const struct target_waitstatus *ws)
348d480f
PA
12694{
12695 /* By definition, the inferior does not report stops at
12696 tracepoints. */
12697 return 0;
74960c60
VP
12698}
12699
12700static void
348d480f
PA
12701tracepoint_print_one_detail (const struct breakpoint *self,
12702 struct ui_out *uiout)
74960c60 12703{
d9b3f62e 12704 struct tracepoint *tp = (struct tracepoint *) self;
5d9310c4 12705 if (!tp->static_trace_marker_id.empty ())
348d480f
PA
12706 {
12707 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 12708
6a831f06
PA
12709 uiout->message ("\tmarker id is %pF\n",
12710 string_field ("static-tracepoint-marker-string-id",
12711 tp->static_trace_marker_id.c_str ()));
348d480f 12712 }
0d381245
VP
12713}
12714
a474d7c2 12715static void
348d480f 12716tracepoint_print_mention (struct breakpoint *b)
a474d7c2 12717{
112e8700 12718 if (current_uiout->is_mi_like_p ())
348d480f 12719 return;
cc59ec59 12720
348d480f
PA
12721 switch (b->type)
12722 {
12723 case bp_tracepoint:
12724 printf_filtered (_("Tracepoint"));
12725 printf_filtered (_(" %d"), b->number);
12726 break;
12727 case bp_fast_tracepoint:
12728 printf_filtered (_("Fast tracepoint"));
12729 printf_filtered (_(" %d"), b->number);
12730 break;
12731 case bp_static_tracepoint:
12732 printf_filtered (_("Static tracepoint"));
12733 printf_filtered (_(" %d"), b->number);
12734 break;
12735 default:
12736 internal_error (__FILE__, __LINE__,
12737 _("unhandled tracepoint type %d"), (int) b->type);
12738 }
12739
12740 say_where (b);
a474d7c2
PA
12741}
12742
348d480f 12743static void
d9b3f62e 12744tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 12745{
d9b3f62e
PA
12746 struct tracepoint *tp = (struct tracepoint *) self;
12747
12748 if (self->type == bp_fast_tracepoint)
348d480f 12749 fprintf_unfiltered (fp, "ftrace");
c93e8391 12750 else if (self->type == bp_static_tracepoint)
348d480f 12751 fprintf_unfiltered (fp, "strace");
d9b3f62e 12752 else if (self->type == bp_tracepoint)
348d480f
PA
12753 fprintf_unfiltered (fp, "trace");
12754 else
12755 internal_error (__FILE__, __LINE__,
d9b3f62e 12756 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 12757
f00aae0f 12758 fprintf_unfiltered (fp, " %s",
d28cd78a 12759 event_location_to_string (self->location.get ()));
d9b3f62e
PA
12760 print_recreate_thread (self, fp);
12761
12762 if (tp->pass_count)
12763 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
12764}
12765
983af33b 12766static void
f00aae0f
KS
12767tracepoint_create_sals_from_location (const struct event_location *location,
12768 struct linespec_result *canonical,
12769 enum bptype type_wanted)
983af33b 12770{
f00aae0f 12771 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12772}
12773
12774static void
12775tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12776 struct linespec_result *canonical,
e1e01040
PA
12777 gdb::unique_xmalloc_ptr<char> cond_string,
12778 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12779 enum bptype type_wanted,
12780 enum bpdisp disposition,
12781 int thread,
12782 int task, int ignore_count,
12783 const struct breakpoint_ops *ops,
12784 int from_tty, int enabled,
44f238bb 12785 int internal, unsigned flags)
983af33b 12786{
023fa29b 12787 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
12788 std::move (cond_string),
12789 std::move (extra_string),
e7e0cddf 12790 type_wanted,
983af33b
SDJ
12791 disposition, thread, task,
12792 ignore_count, ops, from_tty,
44f238bb 12793 enabled, internal, flags);
983af33b
SDJ
12794}
12795
6c5b2ebe 12796static std::vector<symtab_and_line>
f00aae0f
KS
12797tracepoint_decode_location (struct breakpoint *b,
12798 const struct event_location *location,
6c5b2ebe 12799 struct program_space *search_pspace)
983af33b 12800{
6c5b2ebe 12801 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
12802}
12803
2060206e 12804struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 12805
bac7c5cf 12806/* Virtual table for tracepoints on static probes. */
55aa24fb
SDJ
12807
12808static void
f00aae0f
KS
12809tracepoint_probe_create_sals_from_location
12810 (const struct event_location *location,
12811 struct linespec_result *canonical,
12812 enum bptype type_wanted)
55aa24fb
SDJ
12813{
12814 /* We use the same method for breakpoint on probes. */
f00aae0f 12815 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
55aa24fb
SDJ
12816}
12817
6c5b2ebe 12818static std::vector<symtab_and_line>
f00aae0f
KS
12819tracepoint_probe_decode_location (struct breakpoint *b,
12820 const struct event_location *location,
6c5b2ebe 12821 struct program_space *search_pspace)
55aa24fb
SDJ
12822{
12823 /* We use the same method for breakpoint on probes. */
6c5b2ebe 12824 return bkpt_probe_decode_location (b, location, search_pspace);
55aa24fb
SDJ
12825}
12826
5c2b4418
HZ
12827/* Dprintf breakpoint_ops methods. */
12828
12829static void
12830dprintf_re_set (struct breakpoint *b)
12831{
12832 breakpoint_re_set_default (b);
12833
f00aae0f
KS
12834 /* extra_string should never be non-NULL for dprintf. */
12835 gdb_assert (b->extra_string != NULL);
5c2b4418
HZ
12836
12837 /* 1 - connect to target 1, that can run breakpoint commands.
12838 2 - create a dprintf, which resolves fine.
12839 3 - disconnect from target 1
12840 4 - connect to target 2, that can NOT run breakpoint commands.
12841
12842 After steps #3/#4, you'll want the dprintf command list to
12843 be updated, because target 1 and 2 may well return different
12844 answers for target_can_run_breakpoint_commands().
12845 Given absence of finer grained resetting, we get to do
12846 it all the time. */
12847 if (b->extra_string != NULL)
12848 update_dprintf_command_list (b);
12849}
12850
2d9442cc
HZ
12851/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
12852
12853static void
12854dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12855{
f00aae0f 12856 fprintf_unfiltered (fp, "dprintf %s,%s",
d28cd78a 12857 event_location_to_string (tp->location.get ()),
2d9442cc
HZ
12858 tp->extra_string);
12859 print_recreate_thread (tp, fp);
12860}
12861
9d6e6e84
HZ
12862/* Implement the "after_condition_true" breakpoint_ops method for
12863 dprintf.
12864
12865 dprintf's are implemented with regular commands in their command
12866 list, but we run the commands here instead of before presenting the
12867 stop to the user, as dprintf's don't actually cause a stop. This
12868 also makes it so that the commands of multiple dprintfs at the same
12869 address are all handled. */
12870
12871static void
12872dprintf_after_condition_true (struct bpstats *bs)
12873{
04afa70c 12874 struct bpstats tmp_bs;
9d6e6e84
HZ
12875 struct bpstats *tmp_bs_p = &tmp_bs;
12876
12877 /* dprintf's never cause a stop. This wasn't set in the
12878 check_status hook instead because that would make the dprintf's
12879 condition not be evaluated. */
12880 bs->stop = 0;
12881
12882 /* Run the command list here. Take ownership of it instead of
12883 copying. We never want these commands to run later in
12884 bpstat_do_actions, if a breakpoint that causes a stop happens to
12885 be set at same address as this dprintf, or even if running the
12886 commands here throws. */
12887 tmp_bs.commands = bs->commands;
12888 bs->commands = NULL;
9d6e6e84
HZ
12889
12890 bpstat_do_actions_1 (&tmp_bs_p);
12891
12892 /* 'tmp_bs.commands' will usually be NULL by now, but
12893 bpstat_do_actions_1 may return early without processing the whole
12894 list. */
9d6e6e84
HZ
12895}
12896
983af33b
SDJ
12897/* The breakpoint_ops structure to be used on static tracepoints with
12898 markers (`-m'). */
12899
12900static void
f00aae0f 12901strace_marker_create_sals_from_location (const struct event_location *location,
5f700d83 12902 struct linespec_result *canonical,
f00aae0f 12903 enum bptype type_wanted)
983af33b
SDJ
12904{
12905 struct linespec_sals lsal;
f00aae0f 12906 const char *arg_start, *arg;
983af33b 12907
a20714ff 12908 arg = arg_start = get_linespec_location (location)->spec_string;
f00aae0f 12909 lsal.sals = decode_static_tracepoint_spec (&arg);
983af33b 12910
f2fc3015
TT
12911 std::string str (arg_start, arg - arg_start);
12912 const char *ptr = str.c_str ();
a20714ff
PA
12913 canonical->location
12914 = new_linespec_location (&ptr, symbol_name_match_type::FULL);
983af33b 12915
8e9e35b1
TT
12916 lsal.canonical
12917 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 12918 canonical->lsals.push_back (std::move (lsal));
983af33b
SDJ
12919}
12920
12921static void
12922strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
12923 struct linespec_result *canonical,
e1e01040
PA
12924 gdb::unique_xmalloc_ptr<char> cond_string,
12925 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12926 enum bptype type_wanted,
12927 enum bpdisp disposition,
12928 int thread,
12929 int task, int ignore_count,
12930 const struct breakpoint_ops *ops,
12931 int from_tty, int enabled,
44f238bb 12932 int internal, unsigned flags)
983af33b 12933{
6c5b2ebe 12934 const linespec_sals &lsal = canonical->lsals[0];
983af33b
SDJ
12935
12936 /* If the user is creating a static tracepoint by marker id
12937 (strace -m MARKER_ID), then store the sals index, so that
12938 breakpoint_re_set can try to match up which of the newly
12939 found markers corresponds to this one, and, don't try to
12940 expand multiple locations for each sal, given than SALS
12941 already should contain all sals for MARKER_ID. */
12942
6c5b2ebe 12943 for (size_t i = 0; i < lsal.sals.size (); i++)
983af33b 12944 {
6c5b2ebe
PA
12945 event_location_up location
12946 = copy_event_location (canonical->location.get ());
983af33b 12947
b270e6f9 12948 std::unique_ptr<tracepoint> tp (new tracepoint ());
6c5b2ebe 12949 init_breakpoint_sal (tp.get (), gdbarch, lsal.sals[i],
ffc2605c 12950 std::move (location), NULL,
e1e01040
PA
12951 std::move (cond_string),
12952 std::move (extra_string),
e7e0cddf 12953 type_wanted, disposition,
983af33b 12954 thread, task, ignore_count, ops,
44f238bb 12955 from_tty, enabled, internal, flags,
983af33b
SDJ
12956 canonical->special_display);
12957 /* Given that its possible to have multiple markers with
12958 the same string id, if the user is creating a static
12959 tracepoint by marker id ("strace -m MARKER_ID"), then
12960 store the sals index, so that breakpoint_re_set can
12961 try to match up which of the newly found markers
12962 corresponds to this one */
12963 tp->static_trace_marker_id_idx = i;
12964
b270e6f9 12965 install_breakpoint (internal, std::move (tp), 0);
983af33b
SDJ
12966 }
12967}
12968
6c5b2ebe 12969static std::vector<symtab_and_line>
f00aae0f
KS
12970strace_marker_decode_location (struct breakpoint *b,
12971 const struct event_location *location,
6c5b2ebe 12972 struct program_space *search_pspace)
983af33b
SDJ
12973{
12974 struct tracepoint *tp = (struct tracepoint *) b;
a20714ff 12975 const char *s = get_linespec_location (location)->spec_string;
983af33b 12976
6c5b2ebe
PA
12977 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s);
12978 if (sals.size () > tp->static_trace_marker_id_idx)
983af33b 12979 {
6c5b2ebe
PA
12980 sals[0] = sals[tp->static_trace_marker_id_idx];
12981 sals.resize (1);
12982 return sals;
983af33b
SDJ
12983 }
12984 else
5d9310c4 12985 error (_("marker %s not found"), tp->static_trace_marker_id.c_str ());
983af33b
SDJ
12986}
12987
12988static struct breakpoint_ops strace_marker_breakpoint_ops;
12989
12990static int
12991strace_marker_p (struct breakpoint *b)
12992{
12993 return b->ops == &strace_marker_breakpoint_ops;
12994}
12995
53a5351d 12996/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 12997 structures. */
c906108c
SS
12998
12999void
fba45db2 13000delete_breakpoint (struct breakpoint *bpt)
c906108c 13001{
52f0bd74 13002 struct breakpoint *b;
c906108c 13003
8a3fe4f8 13004 gdb_assert (bpt != NULL);
c906108c 13005
4a64f543
MS
13006 /* Has this bp already been deleted? This can happen because
13007 multiple lists can hold pointers to bp's. bpstat lists are
13008 especial culprits.
13009
13010 One example of this happening is a watchpoint's scope bp. When
13011 the scope bp triggers, we notice that the watchpoint is out of
13012 scope, and delete it. We also delete its scope bp. But the
13013 scope bp is marked "auto-deleting", and is already on a bpstat.
13014 That bpstat is then checked for auto-deleting bp's, which are
13015 deleted.
13016
13017 A real solution to this problem might involve reference counts in
13018 bp's, and/or giving them pointers back to their referencing
13019 bpstat's, and teaching delete_breakpoint to only free a bp's
13020 storage when no more references were extent. A cheaper bandaid
13021 was chosen. */
c906108c
SS
13022 if (bpt->type == bp_none)
13023 return;
13024
4a64f543
MS
13025 /* At least avoid this stale reference until the reference counting
13026 of breakpoints gets resolved. */
d0fb5eae 13027 if (bpt->related_breakpoint != bpt)
e5a0a904 13028 {
d0fb5eae 13029 struct breakpoint *related;
3a5c3e22 13030 struct watchpoint *w;
d0fb5eae
JK
13031
13032 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 13033 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 13034 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
13035 w = (struct watchpoint *) bpt;
13036 else
13037 w = NULL;
13038 if (w != NULL)
13039 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
13040
13041 /* Unlink bpt from the bpt->related_breakpoint ring. */
13042 for (related = bpt; related->related_breakpoint != bpt;
13043 related = related->related_breakpoint);
13044 related->related_breakpoint = bpt->related_breakpoint;
13045 bpt->related_breakpoint = bpt;
e5a0a904
JK
13046 }
13047
a9634178
TJB
13048 /* watch_command_1 creates a watchpoint but only sets its number if
13049 update_watchpoint succeeds in creating its bp_locations. If there's
13050 a problem in that process, we'll be asked to delete the half-created
13051 watchpoint. In that case, don't announce the deletion. */
13052 if (bpt->number)
76727919 13053 gdb::observers::breakpoint_deleted.notify (bpt);
c906108c 13054
c906108c
SS
13055 if (breakpoint_chain == bpt)
13056 breakpoint_chain = bpt->next;
13057
c906108c
SS
13058 ALL_BREAKPOINTS (b)
13059 if (b->next == bpt)
c5aa993b
JM
13060 {
13061 b->next = bpt->next;
13062 break;
13063 }
c906108c 13064
f431efe5
PA
13065 /* Be sure no bpstat's are pointing at the breakpoint after it's
13066 been freed. */
13067 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 13068 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
13069 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13070 commands are associated with the bpstat; if we remove it here,
13071 then the later call to bpstat_do_actions (&stop_bpstat); in
13072 event-top.c won't do anything, and temporary breakpoints with
13073 commands won't work. */
13074
13075 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13076
4a64f543
MS
13077 /* Now that breakpoint is removed from breakpoint list, update the
13078 global location list. This will remove locations that used to
13079 belong to this breakpoint. Do this before freeing the breakpoint
13080 itself, since remove_breakpoint looks at location's owner. It
13081 might be better design to have location completely
13082 self-contained, but it's not the case now. */
44702360 13083 update_global_location_list (UGLL_DONT_INSERT);
74960c60 13084
4a64f543
MS
13085 /* On the chance that someone will soon try again to delete this
13086 same bp, we mark it as deleted before freeing its storage. */
c906108c 13087 bpt->type = bp_none;
4d01a485 13088 delete bpt;
c906108c
SS
13089}
13090
51be5b68
PA
13091/* Iterator function to call a user-provided callback function once
13092 for each of B and its related breakpoints. */
13093
13094static void
13095iterate_over_related_breakpoints (struct breakpoint *b,
48649e1b 13096 gdb::function_view<void (breakpoint *)> function)
51be5b68
PA
13097{
13098 struct breakpoint *related;
13099
13100 related = b;
13101 do
13102 {
13103 struct breakpoint *next;
13104
13105 /* FUNCTION may delete RELATED. */
13106 next = related->related_breakpoint;
13107
13108 if (next == related)
13109 {
13110 /* RELATED is the last ring entry. */
48649e1b 13111 function (related);
51be5b68
PA
13112
13113 /* FUNCTION may have deleted it, so we'd never reach back to
13114 B. There's nothing left to do anyway, so just break
13115 out. */
13116 break;
13117 }
13118 else
48649e1b 13119 function (related);
51be5b68
PA
13120
13121 related = next;
13122 }
13123 while (related != b);
13124}
95a42b64 13125
4495129a 13126static void
981a3fb3 13127delete_command (const char *arg, int from_tty)
c906108c 13128{
35df4500 13129 struct breakpoint *b, *b_tmp;
c906108c 13130
ea9365bb
TT
13131 dont_repeat ();
13132
c906108c
SS
13133 if (arg == 0)
13134 {
13135 int breaks_to_delete = 0;
13136
46c6471b
PA
13137 /* Delete all breakpoints if no argument. Do not delete
13138 internal breakpoints, these have to be deleted with an
13139 explicit breakpoint number argument. */
c5aa993b 13140 ALL_BREAKPOINTS (b)
46c6471b 13141 if (user_breakpoint_p (b))
973d738b
DJ
13142 {
13143 breaks_to_delete = 1;
13144 break;
13145 }
c906108c
SS
13146
13147 /* Ask user only if there are some breakpoints to delete. */
13148 if (!from_tty
e2e0b3e5 13149 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 13150 {
35df4500 13151 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 13152 if (user_breakpoint_p (b))
c5aa993b 13153 delete_breakpoint (b);
c906108c
SS
13154 }
13155 }
13156 else
48649e1b 13157 map_breakpoint_numbers
b926417a 13158 (arg, [&] (breakpoint *br)
48649e1b 13159 {
b926417a 13160 iterate_over_related_breakpoints (br, delete_breakpoint);
48649e1b 13161 });
c906108c
SS
13162}
13163
c2f4122d
PA
13164/* Return true if all locations of B bound to PSPACE are pending. If
13165 PSPACE is NULL, all locations of all program spaces are
13166 considered. */
13167
0d381245 13168static int
c2f4122d 13169all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
fe3f5fa8 13170{
c2f4122d
PA
13171 struct bp_location *loc;
13172
13173 for (loc = b->loc; loc != NULL; loc = loc->next)
13174 if ((pspace == NULL
13175 || loc->pspace == pspace)
13176 && !loc->shlib_disabled
8645ff69 13177 && !loc->pspace->executing_startup)
0d381245
VP
13178 return 0;
13179 return 1;
fe3f5fa8
VP
13180}
13181
776592bf
DE
13182/* Subroutine of update_breakpoint_locations to simplify it.
13183 Return non-zero if multiple fns in list LOC have the same name.
13184 Null names are ignored. */
13185
13186static int
13187ambiguous_names_p (struct bp_location *loc)
13188{
13189 struct bp_location *l;
459a2e4c
TT
13190 htab_t htab = htab_create_alloc (13, htab_hash_string, streq_hash, NULL,
13191 xcalloc, xfree);
776592bf
DE
13192
13193 for (l = loc; l != NULL; l = l->next)
13194 {
13195 const char **slot;
13196 const char *name = l->function_name;
13197
13198 /* Allow for some names to be NULL, ignore them. */
13199 if (name == NULL)
13200 continue;
13201
13202 slot = (const char **) htab_find_slot (htab, (const void *) name,
13203 INSERT);
4a64f543
MS
13204 /* NOTE: We can assume slot != NULL here because xcalloc never
13205 returns NULL. */
776592bf
DE
13206 if (*slot != NULL)
13207 {
13208 htab_delete (htab);
13209 return 1;
13210 }
13211 *slot = name;
13212 }
13213
13214 htab_delete (htab);
13215 return 0;
13216}
13217
0fb4aa4b
PA
13218/* When symbols change, it probably means the sources changed as well,
13219 and it might mean the static tracepoint markers are no longer at
13220 the same address or line numbers they used to be at last we
13221 checked. Losing your static tracepoints whenever you rebuild is
13222 undesirable. This function tries to resync/rematch gdb static
13223 tracepoints with the markers on the target, for static tracepoints
13224 that have not been set by marker id. Static tracepoint that have
13225 been set by marker id are reset by marker id in breakpoint_re_set.
13226 The heuristic is:
13227
13228 1) For a tracepoint set at a specific address, look for a marker at
13229 the old PC. If one is found there, assume to be the same marker.
13230 If the name / string id of the marker found is different from the
13231 previous known name, assume that means the user renamed the marker
13232 in the sources, and output a warning.
13233
13234 2) For a tracepoint set at a given line number, look for a marker
13235 at the new address of the old line number. If one is found there,
13236 assume to be the same marker. If the name / string id of the
13237 marker found is different from the previous known name, assume that
13238 means the user renamed the marker in the sources, and output a
13239 warning.
13240
13241 3) If a marker is no longer found at the same address or line, it
13242 may mean the marker no longer exists. But it may also just mean
13243 the code changed a bit. Maybe the user added a few lines of code
13244 that made the marker move up or down (in line number terms). Ask
13245 the target for info about the marker with the string id as we knew
13246 it. If found, update line number and address in the matching
13247 static tracepoint. This will get confused if there's more than one
13248 marker with the same ID (possible in UST, although unadvised
13249 precisely because it confuses tools). */
13250
13251static struct symtab_and_line
13252update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13253{
d9b3f62e 13254 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
13255 struct static_tracepoint_marker marker;
13256 CORE_ADDR pc;
0fb4aa4b
PA
13257
13258 pc = sal.pc;
13259 if (sal.line)
13260 find_line_pc (sal.symtab, sal.line, &pc);
13261
13262 if (target_static_tracepoint_marker_at (pc, &marker))
13263 {
5d9310c4 13264 if (tp->static_trace_marker_id != marker.str_id)
0fb4aa4b 13265 warning (_("static tracepoint %d changed probed marker from %s to %s"),
5d9310c4
SM
13266 b->number, tp->static_trace_marker_id.c_str (),
13267 marker.str_id.c_str ());
0fb4aa4b 13268
5d9310c4 13269 tp->static_trace_marker_id = std::move (marker.str_id);
0fb4aa4b
PA
13270
13271 return sal;
13272 }
13273
13274 /* Old marker wasn't found on target at lineno. Try looking it up
13275 by string ID. */
13276 if (!sal.explicit_pc
13277 && sal.line != 0
13278 && sal.symtab != NULL
5d9310c4 13279 && !tp->static_trace_marker_id.empty ())
0fb4aa4b 13280 {
5d9310c4
SM
13281 std::vector<static_tracepoint_marker> markers
13282 = target_static_tracepoint_markers_by_strid
13283 (tp->static_trace_marker_id.c_str ());
0fb4aa4b 13284
5d9310c4 13285 if (!markers.empty ())
0fb4aa4b 13286 {
0fb4aa4b 13287 struct symbol *sym;
80e1d417 13288 struct static_tracepoint_marker *tpmarker;
79a45e25 13289 struct ui_out *uiout = current_uiout;
67994074 13290 struct explicit_location explicit_loc;
0fb4aa4b 13291
5d9310c4 13292 tpmarker = &markers[0];
0fb4aa4b 13293
5d9310c4 13294 tp->static_trace_marker_id = std::move (tpmarker->str_id);
0fb4aa4b
PA
13295
13296 warning (_("marker for static tracepoint %d (%s) not "
13297 "found at previous line number"),
5d9310c4 13298 b->number, tp->static_trace_marker_id.c_str ());
0fb4aa4b 13299
51abb421 13300 symtab_and_line sal2 = find_pc_line (tpmarker->address, 0);
80e1d417 13301 sym = find_pc_sect_function (tpmarker->address, NULL);
112e8700 13302 uiout->text ("Now in ");
0fb4aa4b
PA
13303 if (sym)
13304 {
987012b8 13305 uiout->field_string ("func", sym->print_name (),
e43b10e1 13306 function_name_style.style ());
112e8700 13307 uiout->text (" at ");
0fb4aa4b 13308 }
112e8700 13309 uiout->field_string ("file",
cbe56571 13310 symtab_to_filename_for_display (sal2.symtab),
e43b10e1 13311 file_name_style.style ());
112e8700 13312 uiout->text (":");
0fb4aa4b 13313
112e8700 13314 if (uiout->is_mi_like_p ())
0fb4aa4b 13315 {
0b0865da 13316 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 13317
112e8700 13318 uiout->field_string ("fullname", fullname);
0fb4aa4b
PA
13319 }
13320
381befee 13321 uiout->field_signed ("line", sal2.line);
112e8700 13322 uiout->text ("\n");
0fb4aa4b 13323
80e1d417 13324 b->loc->line_number = sal2.line;
2f202fde 13325 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b 13326
d28cd78a 13327 b->location.reset (NULL);
67994074
KS
13328 initialize_explicit_location (&explicit_loc);
13329 explicit_loc.source_filename
00e52e53 13330 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
67994074
KS
13331 explicit_loc.line_offset.offset = b->loc->line_number;
13332 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
d28cd78a 13333 b->location = new_explicit_location (&explicit_loc);
0fb4aa4b
PA
13334
13335 /* Might be nice to check if function changed, and warn if
13336 so. */
0fb4aa4b
PA
13337 }
13338 }
13339 return sal;
13340}
13341
8d3788bd
VP
13342/* Returns 1 iff locations A and B are sufficiently same that
13343 we don't need to report breakpoint as changed. */
13344
13345static int
13346locations_are_equal (struct bp_location *a, struct bp_location *b)
13347{
13348 while (a && b)
13349 {
13350 if (a->address != b->address)
13351 return 0;
13352
13353 if (a->shlib_disabled != b->shlib_disabled)
13354 return 0;
13355
13356 if (a->enabled != b->enabled)
13357 return 0;
13358
13359 a = a->next;
13360 b = b->next;
13361 }
13362
13363 if ((a == NULL) != (b == NULL))
13364 return 0;
13365
13366 return 1;
13367}
13368
c2f4122d
PA
13369/* Split all locations of B that are bound to PSPACE out of B's
13370 location list to a separate list and return that list's head. If
13371 PSPACE is NULL, hoist out all locations of B. */
13372
13373static struct bp_location *
13374hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
13375{
13376 struct bp_location head;
13377 struct bp_location *i = b->loc;
13378 struct bp_location **i_link = &b->loc;
13379 struct bp_location *hoisted = &head;
13380
13381 if (pspace == NULL)
13382 {
13383 i = b->loc;
13384 b->loc = NULL;
13385 return i;
13386 }
13387
13388 head.next = NULL;
13389
13390 while (i != NULL)
13391 {
13392 if (i->pspace == pspace)
13393 {
13394 *i_link = i->next;
13395 i->next = NULL;
13396 hoisted->next = i;
13397 hoisted = i;
13398 }
13399 else
13400 i_link = &i->next;
13401 i = *i_link;
13402 }
13403
13404 return head.next;
13405}
13406
13407/* Create new breakpoint locations for B (a hardware or software
13408 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
13409 zero, then B is a ranged breakpoint. Only recreates locations for
13410 FILTER_PSPACE. Locations of other program spaces are left
13411 untouched. */
f1310107 13412
0e30163f 13413void
0d381245 13414update_breakpoint_locations (struct breakpoint *b,
c2f4122d 13415 struct program_space *filter_pspace,
6c5b2ebe
PA
13416 gdb::array_view<const symtab_and_line> sals,
13417 gdb::array_view<const symtab_and_line> sals_end)
fe3f5fa8 13418{
c2f4122d 13419 struct bp_location *existing_locations;
0d381245 13420
6c5b2ebe 13421 if (!sals_end.empty () && (sals.size () != 1 || sals_end.size () != 1))
f8eba3c6
TT
13422 {
13423 /* Ranged breakpoints have only one start location and one end
13424 location. */
13425 b->enable_state = bp_disabled;
f8eba3c6
TT
13426 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
13427 "multiple locations found\n"),
13428 b->number);
13429 return;
13430 }
f1310107 13431
4a64f543
MS
13432 /* If there's no new locations, and all existing locations are
13433 pending, don't do anything. This optimizes the common case where
13434 all locations are in the same shared library, that was unloaded.
13435 We'd like to retain the location, so that when the library is
13436 loaded again, we don't loose the enabled/disabled status of the
13437 individual locations. */
6c5b2ebe 13438 if (all_locations_are_pending (b, filter_pspace) && sals.empty ())
fe3f5fa8
VP
13439 return;
13440
c2f4122d 13441 existing_locations = hoist_existing_locations (b, filter_pspace);
fe3f5fa8 13442
6c5b2ebe 13443 for (const auto &sal : sals)
fe3f5fa8 13444 {
f8eba3c6
TT
13445 struct bp_location *new_loc;
13446
6c5b2ebe 13447 switch_to_program_space_and_thread (sal.pspace);
f8eba3c6 13448
6c5b2ebe 13449 new_loc = add_location_to_breakpoint (b, &sal);
fe3f5fa8 13450
0d381245
VP
13451 /* Reparse conditions, they might contain references to the
13452 old symtab. */
13453 if (b->cond_string != NULL)
13454 {
bbc13ae3 13455 const char *s;
fe3f5fa8 13456
0d381245 13457 s = b->cond_string;
a70b8144 13458 try
0d381245 13459 {
6c5b2ebe
PA
13460 new_loc->cond = parse_exp_1 (&s, sal.pc,
13461 block_for_pc (sal.pc),
0d381245
VP
13462 0);
13463 }
230d2906 13464 catch (const gdb_exception_error &e)
0d381245 13465 {
3e43a32a
MS
13466 warning (_("failed to reevaluate condition "
13467 "for breakpoint %d: %s"),
3d6e9d23 13468 b->number, e.what ());
0d381245
VP
13469 new_loc->enabled = 0;
13470 }
13471 }
fe3f5fa8 13472
6c5b2ebe 13473 if (!sals_end.empty ())
f1310107 13474 {
6c5b2ebe 13475 CORE_ADDR end = find_breakpoint_range_end (sals_end[0]);
f1310107 13476
6c5b2ebe 13477 new_loc->length = end - sals[0].pc + 1;
f1310107 13478 }
0d381245 13479 }
fe3f5fa8 13480
4a64f543
MS
13481 /* If possible, carry over 'disable' status from existing
13482 breakpoints. */
0d381245
VP
13483 {
13484 struct bp_location *e = existing_locations;
776592bf
DE
13485 /* If there are multiple breakpoints with the same function name,
13486 e.g. for inline functions, comparing function names won't work.
13487 Instead compare pc addresses; this is just a heuristic as things
13488 may have moved, but in practice it gives the correct answer
13489 often enough until a better solution is found. */
13490 int have_ambiguous_names = ambiguous_names_p (b->loc);
13491
0d381245
VP
13492 for (; e; e = e->next)
13493 {
13494 if (!e->enabled && e->function_name)
13495 {
13496 struct bp_location *l = b->loc;
776592bf
DE
13497 if (have_ambiguous_names)
13498 {
13499 for (; l; l = l->next)
f1310107 13500 if (breakpoint_locations_match (e, l))
776592bf
DE
13501 {
13502 l->enabled = 0;
13503 break;
13504 }
13505 }
13506 else
13507 {
13508 for (; l; l = l->next)
13509 if (l->function_name
13510 && strcmp (e->function_name, l->function_name) == 0)
13511 {
13512 l->enabled = 0;
13513 break;
13514 }
13515 }
0d381245
VP
13516 }
13517 }
13518 }
fe3f5fa8 13519
8d3788bd 13520 if (!locations_are_equal (existing_locations, b->loc))
76727919 13521 gdb::observers::breakpoint_modified.notify (b);
fe3f5fa8
VP
13522}
13523
f00aae0f 13524/* Find the SaL locations corresponding to the given LOCATION.
ef23e705
TJB
13525 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
13526
6c5b2ebe 13527static std::vector<symtab_and_line>
f00aae0f 13528location_to_sals (struct breakpoint *b, struct event_location *location,
c2f4122d 13529 struct program_space *search_pspace, int *found)
ef23e705 13530{
cc06b668 13531 struct gdb_exception exception;
ef23e705 13532
983af33b 13533 gdb_assert (b->ops != NULL);
ef23e705 13534
6c5b2ebe
PA
13535 std::vector<symtab_and_line> sals;
13536
a70b8144 13537 try
ef23e705 13538 {
6c5b2ebe 13539 sals = b->ops->decode_location (b, location, search_pspace);
ef23e705 13540 }
94aeb44b 13541 catch (gdb_exception_error &e)
ef23e705
TJB
13542 {
13543 int not_found_and_ok = 0;
492d29ea 13544
ef23e705
TJB
13545 /* For pending breakpoints, it's expected that parsing will
13546 fail until the right shared library is loaded. User has
13547 already told to create pending breakpoints and don't need
13548 extra messages. If breakpoint is in bp_shlib_disabled
13549 state, then user already saw the message about that
13550 breakpoint being disabled, and don't want to see more
13551 errors. */
58438ac1 13552 if (e.error == NOT_FOUND_ERROR
c2f4122d
PA
13553 && (b->condition_not_parsed
13554 || (b->loc != NULL
13555 && search_pspace != NULL
13556 && b->loc->pspace != search_pspace)
ef23e705 13557 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 13558 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
13559 || b->enable_state == bp_disabled))
13560 not_found_and_ok = 1;
13561
13562 if (!not_found_and_ok)
13563 {
13564 /* We surely don't want to warn about the same breakpoint
13565 10 times. One solution, implemented here, is disable
13566 the breakpoint on error. Another solution would be to
13567 have separate 'warning emitted' flag. Since this
13568 happens only when a binary has changed, I don't know
13569 which approach is better. */
13570 b->enable_state = bp_disabled;
eedc3f4f 13571 throw;
ef23e705 13572 }
94aeb44b
TT
13573
13574 exception = std::move (e);
ef23e705
TJB
13575 }
13576
492d29ea 13577 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
ef23e705 13578 {
6c5b2ebe
PA
13579 for (auto &sal : sals)
13580 resolve_sal_pc (&sal);
f00aae0f 13581 if (b->condition_not_parsed && b->extra_string != NULL)
ef23e705 13582 {
ed1d1739
KS
13583 char *cond_string, *extra_string;
13584 int thread, task;
ef23e705 13585
6c5b2ebe 13586 find_condition_and_thread (b->extra_string, sals[0].pc,
e7e0cddf
SS
13587 &cond_string, &thread, &task,
13588 &extra_string);
f00aae0f 13589 gdb_assert (b->cond_string == NULL);
ef23e705
TJB
13590 if (cond_string)
13591 b->cond_string = cond_string;
13592 b->thread = thread;
13593 b->task = task;
e7e0cddf 13594 if (extra_string)
f00aae0f
KS
13595 {
13596 xfree (b->extra_string);
13597 b->extra_string = extra_string;
13598 }
ef23e705
TJB
13599 b->condition_not_parsed = 0;
13600 }
13601
983af33b 13602 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
6c5b2ebe 13603 sals[0] = update_static_tracepoint (b, sals[0]);
ef23e705 13604
58438ac1
TT
13605 *found = 1;
13606 }
13607 else
13608 *found = 0;
ef23e705
TJB
13609
13610 return sals;
13611}
13612
348d480f
PA
13613/* The default re_set method, for typical hardware or software
13614 breakpoints. Reevaluate the breakpoint and recreate its
13615 locations. */
13616
13617static void
28010a5d 13618breakpoint_re_set_default (struct breakpoint *b)
ef23e705 13619{
c2f4122d 13620 struct program_space *filter_pspace = current_program_space;
6c5b2ebe 13621 std::vector<symtab_and_line> expanded, expanded_end;
ef23e705 13622
6c5b2ebe
PA
13623 int found;
13624 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (),
13625 filter_pspace, &found);
ef23e705 13626 if (found)
6c5b2ebe 13627 expanded = std::move (sals);
ef23e705 13628
f00aae0f 13629 if (b->location_range_end != NULL)
f1310107 13630 {
6c5b2ebe
PA
13631 std::vector<symtab_and_line> sals_end
13632 = location_to_sals (b, b->location_range_end.get (),
13633 filter_pspace, &found);
f1310107 13634 if (found)
6c5b2ebe 13635 expanded_end = std::move (sals_end);
f1310107
TJB
13636 }
13637
c2f4122d 13638 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
28010a5d
PA
13639}
13640
983af33b
SDJ
13641/* Default method for creating SALs from an address string. It basically
13642 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
13643
13644static void
f00aae0f
KS
13645create_sals_from_location_default (const struct event_location *location,
13646 struct linespec_result *canonical,
13647 enum bptype type_wanted)
983af33b 13648{
f00aae0f 13649 parse_breakpoint_sals (location, canonical);
983af33b
SDJ
13650}
13651
13652/* Call create_breakpoints_sal for the given arguments. This is the default
13653 function for the `create_breakpoints_sal' method of
13654 breakpoint_ops. */
13655
13656static void
13657create_breakpoints_sal_default (struct gdbarch *gdbarch,
13658 struct linespec_result *canonical,
e1e01040
PA
13659 gdb::unique_xmalloc_ptr<char> cond_string,
13660 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
13661 enum bptype type_wanted,
13662 enum bpdisp disposition,
13663 int thread,
13664 int task, int ignore_count,
13665 const struct breakpoint_ops *ops,
13666 int from_tty, int enabled,
44f238bb 13667 int internal, unsigned flags)
983af33b 13668{
e1e01040
PA
13669 create_breakpoints_sal (gdbarch, canonical,
13670 std::move (cond_string),
13671 std::move (extra_string),
983af33b
SDJ
13672 type_wanted, disposition,
13673 thread, task, ignore_count, ops, from_tty,
44f238bb 13674 enabled, internal, flags);
983af33b
SDJ
13675}
13676
13677/* Decode the line represented by S by calling decode_line_full. This is the
5f700d83 13678 default function for the `decode_location' method of breakpoint_ops. */
983af33b 13679
6c5b2ebe 13680static std::vector<symtab_and_line>
f00aae0f
KS
13681decode_location_default (struct breakpoint *b,
13682 const struct event_location *location,
6c5b2ebe 13683 struct program_space *search_pspace)
983af33b
SDJ
13684{
13685 struct linespec_result canonical;
13686
c2f4122d 13687 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
cafb3438 13688 NULL, 0, &canonical, multiple_symbols_all,
c0e8dcd8 13689 b->filter.get ());
983af33b
SDJ
13690
13691 /* We should get 0 or 1 resulting SALs. */
6c5b2ebe 13692 gdb_assert (canonical.lsals.size () < 2);
983af33b 13693
6c5b2ebe 13694 if (!canonical.lsals.empty ())
983af33b 13695 {
6c5b2ebe
PA
13696 const linespec_sals &lsal = canonical.lsals[0];
13697 return std::move (lsal.sals);
983af33b 13698 }
6c5b2ebe 13699 return {};
983af33b
SDJ
13700}
13701
bf469271 13702/* Reset a breakpoint. */
c906108c 13703
bf469271
PA
13704static void
13705breakpoint_re_set_one (breakpoint *b)
c906108c 13706{
fdf44873
TT
13707 input_radix = b->input_radix;
13708 set_language (b->language);
c906108c 13709
348d480f 13710 b->ops->re_set (b);
c906108c
SS
13711}
13712
c2f4122d
PA
13713/* Re-set breakpoint locations for the current program space.
13714 Locations bound to other program spaces are left untouched. */
13715
c906108c 13716void
69de3c6a 13717breakpoint_re_set (void)
c906108c 13718{
35df4500 13719 struct breakpoint *b, *b_tmp;
2a7f3dff 13720
c5aa993b 13721 {
fdf44873
TT
13722 scoped_restore_current_language save_language;
13723 scoped_restore save_input_radix = make_scoped_restore (&input_radix);
5ed8105e 13724 scoped_restore_current_pspace_and_thread restore_pspace_thread;
e62c965a 13725
8e817061
JB
13726 /* breakpoint_re_set_one sets the current_language to the language
13727 of the breakpoint it is resetting (see prepare_re_set_context)
13728 before re-evaluating the breakpoint's location. This change can
13729 unfortunately get undone by accident if the language_mode is set
13730 to auto, and we either switch frames, or more likely in this context,
13731 we select the current frame.
13732
13733 We prevent this by temporarily turning the language_mode to
13734 language_mode_manual. We restore it once all breakpoints
13735 have been reset. */
13736 scoped_restore save_language_mode = make_scoped_restore (&language_mode);
13737 language_mode = language_mode_manual;
13738
5ed8105e
PA
13739 /* Note: we must not try to insert locations until after all
13740 breakpoints have been re-set. Otherwise, e.g., when re-setting
13741 breakpoint 1, we'd insert the locations of breakpoint 2, which
13742 hadn't been re-set yet, and thus may have stale locations. */
4efc6507 13743
5ed8105e
PA
13744 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13745 {
a70b8144 13746 try
bf469271
PA
13747 {
13748 breakpoint_re_set_one (b);
13749 }
230d2906 13750 catch (const gdb_exception &ex)
bf469271
PA
13751 {
13752 exception_fprintf (gdb_stderr, ex,
13753 "Error in re-setting breakpoint %d: ",
13754 b->number);
13755 }
5ed8105e 13756 }
5ed8105e
PA
13757
13758 jit_breakpoint_re_set ();
13759 }
6c95b8df 13760
af02033e
PP
13761 create_overlay_event_breakpoint ();
13762 create_longjmp_master_breakpoint ();
13763 create_std_terminate_master_breakpoint ();
186c406b 13764 create_exception_master_breakpoint ();
2a7f3dff
PA
13765
13766 /* Now we can insert. */
13767 update_global_location_list (UGLL_MAY_INSERT);
c906108c
SS
13768}
13769\f
c906108c
SS
13770/* Reset the thread number of this breakpoint:
13771
13772 - If the breakpoint is for all threads, leave it as-is.
4a64f543 13773 - Else, reset it to the current thread for inferior_ptid. */
c906108c 13774void
fba45db2 13775breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
13776{
13777 if (b->thread != -1)
13778 {
00431a78 13779 b->thread = inferior_thread ()->global_num;
6c95b8df
PA
13780
13781 /* We're being called after following a fork. The new fork is
13782 selected as current, and unless this was a vfork will have a
13783 different program space from the original thread. Reset that
13784 as well. */
13785 b->loc->pspace = current_program_space;
c906108c
SS
13786 }
13787}
13788
03ac34d5
MS
13789/* Set ignore-count of breakpoint number BPTNUM to COUNT.
13790 If from_tty is nonzero, it prints a message to that effect,
13791 which ends with a period (no newline). */
13792
c906108c 13793void
fba45db2 13794set_ignore_count (int bptnum, int count, int from_tty)
c906108c 13795{
52f0bd74 13796 struct breakpoint *b;
c906108c
SS
13797
13798 if (count < 0)
13799 count = 0;
13800
13801 ALL_BREAKPOINTS (b)
13802 if (b->number == bptnum)
c5aa993b 13803 {
d77f58be
SS
13804 if (is_tracepoint (b))
13805 {
13806 if (from_tty && count != 0)
13807 printf_filtered (_("Ignore count ignored for tracepoint %d."),
13808 bptnum);
13809 return;
13810 }
13811
c5aa993b 13812 b->ignore_count = count;
221ea385
KS
13813 if (from_tty)
13814 {
13815 if (count == 0)
3e43a32a
MS
13816 printf_filtered (_("Will stop next time "
13817 "breakpoint %d is reached."),
221ea385
KS
13818 bptnum);
13819 else if (count == 1)
a3f17187 13820 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
13821 bptnum);
13822 else
3e43a32a
MS
13823 printf_filtered (_("Will ignore next %d "
13824 "crossings of breakpoint %d."),
221ea385
KS
13825 count, bptnum);
13826 }
76727919 13827 gdb::observers::breakpoint_modified.notify (b);
c5aa993b
JM
13828 return;
13829 }
c906108c 13830
8a3fe4f8 13831 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
13832}
13833
c906108c
SS
13834/* Command to set ignore-count of breakpoint N to COUNT. */
13835
13836static void
0b39b52e 13837ignore_command (const char *args, int from_tty)
c906108c 13838{
0b39b52e 13839 const char *p = args;
52f0bd74 13840 int num;
c906108c
SS
13841
13842 if (p == 0)
e2e0b3e5 13843 error_no_arg (_("a breakpoint number"));
c5aa993b 13844
c906108c 13845 num = get_number (&p);
5c44784c 13846 if (num == 0)
8a3fe4f8 13847 error (_("bad breakpoint number: '%s'"), args);
c906108c 13848 if (*p == 0)
8a3fe4f8 13849 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
13850
13851 set_ignore_count (num,
13852 longest_to_int (value_as_long (parse_and_eval (p))),
13853 from_tty);
221ea385
KS
13854 if (from_tty)
13855 printf_filtered ("\n");
c906108c
SS
13856}
13857\f
d0fe4701
XR
13858
13859/* Call FUNCTION on each of the breakpoints with numbers in the range
13860 defined by BP_NUM_RANGE (an inclusive range). */
c906108c
SS
13861
13862static void
d0fe4701
XR
13863map_breakpoint_number_range (std::pair<int, int> bp_num_range,
13864 gdb::function_view<void (breakpoint *)> function)
c906108c 13865{
d0fe4701
XR
13866 if (bp_num_range.first == 0)
13867 {
13868 warning (_("bad breakpoint number at or near '%d'"),
13869 bp_num_range.first);
13870 }
13871 else
c906108c 13872 {
d0fe4701 13873 struct breakpoint *b, *tmp;
197f0a60 13874
d0fe4701 13875 for (int i = bp_num_range.first; i <= bp_num_range.second; i++)
5c44784c 13876 {
d0fe4701
XR
13877 bool match = false;
13878
5c44784c 13879 ALL_BREAKPOINTS_SAFE (b, tmp)
d0fe4701 13880 if (b->number == i)
5c44784c 13881 {
bfd28288 13882 match = true;
48649e1b 13883 function (b);
11cf8741 13884 break;
5c44784c 13885 }
bfd28288 13886 if (!match)
d0fe4701 13887 printf_unfiltered (_("No breakpoint number %d.\n"), i);
c5aa993b 13888 }
c906108c
SS
13889 }
13890}
13891
d0fe4701
XR
13892/* Call FUNCTION on each of the breakpoints whose numbers are given in
13893 ARGS. */
13894
13895static void
13896map_breakpoint_numbers (const char *args,
13897 gdb::function_view<void (breakpoint *)> function)
13898{
13899 if (args == NULL || *args == '\0')
13900 error_no_arg (_("one or more breakpoint numbers"));
13901
13902 number_or_range_parser parser (args);
13903
13904 while (!parser.finished ())
13905 {
13906 int num = parser.get_number ();
13907 map_breakpoint_number_range (std::make_pair (num, num), function);
13908 }
13909}
13910
13911/* Return the breakpoint location structure corresponding to the
13912 BP_NUM and LOC_NUM values. */
13913
0d381245 13914static struct bp_location *
d0fe4701 13915find_location_by_number (int bp_num, int loc_num)
0d381245 13916{
0d381245 13917 struct breakpoint *b;
0d381245
VP
13918
13919 ALL_BREAKPOINTS (b)
13920 if (b->number == bp_num)
13921 {
13922 break;
13923 }
13924
13925 if (!b || b->number != bp_num)
d0fe4701 13926 error (_("Bad breakpoint number '%d'"), bp_num);
0d381245 13927
0d381245 13928 if (loc_num == 0)
d0fe4701 13929 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245 13930
d0fe4701
XR
13931 int n = 0;
13932 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next)
13933 if (++n == loc_num)
13934 return loc;
13935
13936 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245
VP
13937}
13938
95e95a6d
PA
13939/* Modes of operation for extract_bp_num. */
13940enum class extract_bp_kind
13941{
13942 /* Extracting a breakpoint number. */
13943 bp,
13944
13945 /* Extracting a location number. */
13946 loc,
13947};
13948
13949/* Extract a breakpoint or location number (as determined by KIND)
13950 from the string starting at START. TRAILER is a character which
13951 can be found after the number. If you don't want a trailer, use
13952 '\0'. If END_OUT is not NULL, it is set to point after the parsed
13953 string. This always returns a positive integer. */
13954
13955static int
13956extract_bp_num (extract_bp_kind kind, const char *start,
13957 int trailer, const char **end_out = NULL)
13958{
13959 const char *end = start;
13960 int num = get_number_trailer (&end, trailer);
13961 if (num < 0)
13962 error (kind == extract_bp_kind::bp
13963 ? _("Negative breakpoint number '%.*s'")
13964 : _("Negative breakpoint location number '%.*s'"),
13965 int (end - start), start);
13966 if (num == 0)
13967 error (kind == extract_bp_kind::bp
13968 ? _("Bad breakpoint number '%.*s'")
13969 : _("Bad breakpoint location number '%.*s'"),
13970 int (end - start), start);
13971
13972 if (end_out != NULL)
13973 *end_out = end;
13974 return num;
13975}
13976
13977/* Extract a breakpoint or location range (as determined by KIND) in
13978 the form NUM1-NUM2 stored at &ARG[arg_offset]. Returns a std::pair
13979 representing the (inclusive) range. The returned pair's elements
13980 are always positive integers. */
13981
13982static std::pair<int, int>
13983extract_bp_or_bp_range (extract_bp_kind kind,
13984 const std::string &arg,
13985 std::string::size_type arg_offset)
13986{
13987 std::pair<int, int> range;
13988 const char *bp_loc = &arg[arg_offset];
13989 std::string::size_type dash = arg.find ('-', arg_offset);
13990 if (dash != std::string::npos)
13991 {
13992 /* bp_loc is a range (x-z). */
13993 if (arg.length () == dash + 1)
13994 error (kind == extract_bp_kind::bp
13995 ? _("Bad breakpoint number at or near: '%s'")
13996 : _("Bad breakpoint location number at or near: '%s'"),
13997 bp_loc);
13998
13999 const char *end;
14000 const char *start_first = bp_loc;
14001 const char *start_second = &arg[dash + 1];
14002 range.first = extract_bp_num (kind, start_first, '-');
14003 range.second = extract_bp_num (kind, start_second, '\0', &end);
14004
14005 if (range.first > range.second)
14006 error (kind == extract_bp_kind::bp
14007 ? _("Inverted breakpoint range at '%.*s'")
14008 : _("Inverted breakpoint location range at '%.*s'"),
14009 int (end - start_first), start_first);
14010 }
14011 else
14012 {
14013 /* bp_loc is a single value. */
14014 range.first = extract_bp_num (kind, bp_loc, '\0');
14015 range.second = range.first;
14016 }
14017 return range;
14018}
14019
d0fe4701
XR
14020/* Extract the breakpoint/location range specified by ARG. Returns
14021 the breakpoint range in BP_NUM_RANGE, and the location range in
14022 BP_LOC_RANGE.
14023
14024 ARG may be in any of the following forms:
14025
14026 x where 'x' is a breakpoint number.
14027 x-y where 'x' and 'y' specify a breakpoint numbers range.
14028 x.y where 'x' is a breakpoint number and 'y' a location number.
14029 x.y-z where 'x' is a breakpoint number and 'y' and 'z' specify a
14030 location number range.
14031*/
14032
cc638e86 14033static void
d0fe4701
XR
14034extract_bp_number_and_location (const std::string &arg,
14035 std::pair<int, int> &bp_num_range,
14036 std::pair<int, int> &bp_loc_range)
14037{
14038 std::string::size_type dot = arg.find ('.');
14039
14040 if (dot != std::string::npos)
14041 {
14042 /* Handle 'x.y' and 'x.y-z' cases. */
14043
14044 if (arg.length () == dot + 1 || dot == 0)
95e95a6d 14045 error (_("Bad breakpoint number at or near: '%s'"), arg.c_str ());
d0fe4701 14046
95e95a6d
PA
14047 bp_num_range.first
14048 = extract_bp_num (extract_bp_kind::bp, arg.c_str (), '.');
14049 bp_num_range.second = bp_num_range.first;
d0fe4701 14050
95e95a6d
PA
14051 bp_loc_range = extract_bp_or_bp_range (extract_bp_kind::loc,
14052 arg, dot + 1);
d0fe4701
XR
14053 }
14054 else
14055 {
14056 /* Handle x and x-y cases. */
d0fe4701 14057
95e95a6d 14058 bp_num_range = extract_bp_or_bp_range (extract_bp_kind::bp, arg, 0);
d0fe4701
XR
14059 bp_loc_range.first = 0;
14060 bp_loc_range.second = 0;
14061 }
d0fe4701
XR
14062}
14063
14064/* Enable or disable a breakpoint location BP_NUM.LOC_NUM. ENABLE
14065 specifies whether to enable or disable. */
14066
14067static void
14068enable_disable_bp_num_loc (int bp_num, int loc_num, bool enable)
14069{
14070 struct bp_location *loc = find_location_by_number (bp_num, loc_num);
14071 if (loc != NULL)
14072 {
14073 if (loc->enabled != enable)
14074 {
14075 loc->enabled = enable;
14076 mark_breakpoint_location_modified (loc);
14077 }
14078 if (target_supports_enable_disable_tracepoint ()
14079 && current_trace_status ()->running && loc->owner
14080 && is_tracepoint (loc->owner))
14081 target_disable_tracepoint (loc);
14082 }
14083 update_global_location_list (UGLL_DONT_INSERT);
d7154a8d
JV
14084
14085 gdb::observers::breakpoint_modified.notify (loc->owner);
d0fe4701
XR
14086}
14087
14088/* Enable or disable a range of breakpoint locations. BP_NUM is the
14089 number of the breakpoint, and BP_LOC_RANGE specifies the
14090 (inclusive) range of location numbers of that breakpoint to
14091 enable/disable. ENABLE specifies whether to enable or disable the
14092 location. */
14093
14094static void
14095enable_disable_breakpoint_location_range (int bp_num,
14096 std::pair<int, int> &bp_loc_range,
14097 bool enable)
14098{
14099 for (int i = bp_loc_range.first; i <= bp_loc_range.second; i++)
14100 enable_disable_bp_num_loc (bp_num, i, enable);
14101}
0d381245 14102
1900040c
MS
14103/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14104 If from_tty is nonzero, it prints a message to that effect,
14105 which ends with a period (no newline). */
14106
c906108c 14107void
fba45db2 14108disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
14109{
14110 /* Never disable a watchpoint scope breakpoint; we want to
14111 hit them when we leave scope so we can delete both the
14112 watchpoint and its scope breakpoint at that time. */
14113 if (bpt->type == bp_watchpoint_scope)
14114 return;
14115
b5de0fa7 14116 bpt->enable_state = bp_disabled;
c906108c 14117
b775012e
LM
14118 /* Mark breakpoint locations modified. */
14119 mark_breakpoint_modified (bpt);
14120
d248b706
KY
14121 if (target_supports_enable_disable_tracepoint ()
14122 && current_trace_status ()->running && is_tracepoint (bpt))
14123 {
14124 struct bp_location *location;
14125
14126 for (location = bpt->loc; location; location = location->next)
14127 target_disable_tracepoint (location);
14128 }
14129
44702360 14130 update_global_location_list (UGLL_DONT_INSERT);
c906108c 14131
76727919 14132 gdb::observers::breakpoint_modified.notify (bpt);
c906108c
SS
14133}
14134
d0fe4701
XR
14135/* Enable or disable the breakpoint(s) or breakpoint location(s)
14136 specified in ARGS. ARGS may be in any of the formats handled by
14137 extract_bp_number_and_location. ENABLE specifies whether to enable
14138 or disable the breakpoints/locations. */
14139
c906108c 14140static void
d0fe4701 14141enable_disable_command (const char *args, int from_tty, bool enable)
c906108c 14142{
c906108c 14143 if (args == 0)
46c6471b
PA
14144 {
14145 struct breakpoint *bpt;
14146
14147 ALL_BREAKPOINTS (bpt)
14148 if (user_breakpoint_p (bpt))
d0fe4701
XR
14149 {
14150 if (enable)
14151 enable_breakpoint (bpt);
14152 else
14153 disable_breakpoint (bpt);
14154 }
46c6471b 14155 }
9eaabc75 14156 else
0d381245 14157 {
cb791d59 14158 std::string num = extract_arg (&args);
9eaabc75 14159
cb791d59 14160 while (!num.empty ())
d248b706 14161 {
d0fe4701 14162 std::pair<int, int> bp_num_range, bp_loc_range;
9eaabc75 14163
cc638e86
PA
14164 extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
14165
14166 if (bp_loc_range.first == bp_loc_range.second
14167 && bp_loc_range.first == 0)
d0fe4701 14168 {
cc638e86
PA
14169 /* Handle breakpoint ids with formats 'x' or 'x-z'. */
14170 map_breakpoint_number_range (bp_num_range,
14171 enable
14172 ? enable_breakpoint
14173 : disable_breakpoint);
14174 }
14175 else
14176 {
14177 /* Handle breakpoint ids with formats 'x.y' or
14178 'x.y-z'. */
14179 enable_disable_breakpoint_location_range
14180 (bp_num_range.first, bp_loc_range, enable);
b775012e 14181 }
9eaabc75 14182 num = extract_arg (&args);
d248b706 14183 }
0d381245 14184 }
c906108c
SS
14185}
14186
d0fe4701
XR
14187/* The disable command disables the specified breakpoints/locations
14188 (or all defined breakpoints) so they're no longer effective in
14189 stopping the inferior. ARGS may be in any of the forms defined in
14190 extract_bp_number_and_location. */
14191
14192static void
14193disable_command (const char *args, int from_tty)
14194{
14195 enable_disable_command (args, from_tty, false);
14196}
14197
c906108c 14198static void
816338b5
SS
14199enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14200 int count)
c906108c 14201{
afe38095 14202 int target_resources_ok;
c906108c
SS
14203
14204 if (bpt->type == bp_hardware_breakpoint)
14205 {
14206 int i;
c5aa993b 14207 i = hw_breakpoint_used_count ();
53a5351d 14208 target_resources_ok =
d92524f1 14209 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 14210 i + 1, 0);
c906108c 14211 if (target_resources_ok == 0)
8a3fe4f8 14212 error (_("No hardware breakpoint support in the target."));
c906108c 14213 else if (target_resources_ok < 0)
8a3fe4f8 14214 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
14215 }
14216
cc60f2e3 14217 if (is_watchpoint (bpt))
c906108c 14218 {
d07205c2 14219 /* Initialize it just to avoid a GCC false warning. */
f486487f 14220 enum enable_state orig_enable_state = bp_disabled;
dde02812 14221
a70b8144 14222 try
c906108c 14223 {
3a5c3e22
PA
14224 struct watchpoint *w = (struct watchpoint *) bpt;
14225
1e718ff1
TJB
14226 orig_enable_state = bpt->enable_state;
14227 bpt->enable_state = bp_enabled;
3a5c3e22 14228 update_watchpoint (w, 1 /* reparse */);
c906108c 14229 }
230d2906 14230 catch (const gdb_exception &e)
c5aa993b 14231 {
1e718ff1 14232 bpt->enable_state = orig_enable_state;
dde02812
ES
14233 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14234 bpt->number);
14235 return;
c5aa993b 14236 }
c906108c 14237 }
0101ce28 14238
b775012e
LM
14239 bpt->enable_state = bp_enabled;
14240
14241 /* Mark breakpoint locations modified. */
14242 mark_breakpoint_modified (bpt);
14243
d248b706
KY
14244 if (target_supports_enable_disable_tracepoint ()
14245 && current_trace_status ()->running && is_tracepoint (bpt))
14246 {
14247 struct bp_location *location;
14248
14249 for (location = bpt->loc; location; location = location->next)
14250 target_enable_tracepoint (location);
14251 }
14252
b4c291bb 14253 bpt->disposition = disposition;
816338b5 14254 bpt->enable_count = count;
44702360 14255 update_global_location_list (UGLL_MAY_INSERT);
9c97429f 14256
76727919 14257 gdb::observers::breakpoint_modified.notify (bpt);
c906108c
SS
14258}
14259
fe3f5fa8 14260
c906108c 14261void
fba45db2 14262enable_breakpoint (struct breakpoint *bpt)
c906108c 14263{
816338b5 14264 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
14265}
14266
d0fe4701
XR
14267/* The enable command enables the specified breakpoints/locations (or
14268 all defined breakpoints) so they once again become (or continue to
14269 be) effective in stopping the inferior. ARGS may be in any of the
14270 forms defined in extract_bp_number_and_location. */
c906108c 14271
c906108c 14272static void
981a3fb3 14273enable_command (const char *args, int from_tty)
c906108c 14274{
d0fe4701 14275 enable_disable_command (args, from_tty, true);
c906108c
SS
14276}
14277
c906108c 14278static void
4495129a 14279enable_once_command (const char *args, int from_tty)
c906108c 14280{
48649e1b
TT
14281 map_breakpoint_numbers
14282 (args, [&] (breakpoint *b)
14283 {
14284 iterate_over_related_breakpoints
14285 (b, [&] (breakpoint *bpt)
14286 {
14287 enable_breakpoint_disp (bpt, disp_disable, 1);
14288 });
14289 });
816338b5
SS
14290}
14291
14292static void
4495129a 14293enable_count_command (const char *args, int from_tty)
816338b5 14294{
b9d61307
SM
14295 int count;
14296
14297 if (args == NULL)
14298 error_no_arg (_("hit count"));
14299
14300 count = get_number (&args);
816338b5 14301
48649e1b
TT
14302 map_breakpoint_numbers
14303 (args, [&] (breakpoint *b)
14304 {
14305 iterate_over_related_breakpoints
14306 (b, [&] (breakpoint *bpt)
14307 {
14308 enable_breakpoint_disp (bpt, disp_disable, count);
14309 });
14310 });
c906108c
SS
14311}
14312
c906108c 14313static void
4495129a 14314enable_delete_command (const char *args, int from_tty)
c906108c 14315{
48649e1b
TT
14316 map_breakpoint_numbers
14317 (args, [&] (breakpoint *b)
14318 {
14319 iterate_over_related_breakpoints
14320 (b, [&] (breakpoint *bpt)
14321 {
14322 enable_breakpoint_disp (bpt, disp_del, 1);
14323 });
14324 });
c906108c
SS
14325}
14326\f
1f3b5d1b
PP
14327/* Invalidate last known value of any hardware watchpoint if
14328 the memory which that value represents has been written to by
14329 GDB itself. */
14330
14331static void
8de0566d
YQ
14332invalidate_bp_value_on_memory_change (struct inferior *inferior,
14333 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
14334 const bfd_byte *data)
14335{
14336 struct breakpoint *bp;
14337
14338 ALL_BREAKPOINTS (bp)
14339 if (bp->enable_state == bp_enabled
3a5c3e22 14340 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 14341 {
3a5c3e22 14342 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 14343
850645cf 14344 if (wp->val_valid && wp->val != nullptr)
3a5c3e22
PA
14345 {
14346 struct bp_location *loc;
14347
14348 for (loc = bp->loc; loc != NULL; loc = loc->next)
14349 if (loc->loc_type == bp_loc_hardware_watchpoint
14350 && loc->address + loc->length > addr
14351 && addr + len > loc->address)
14352 {
3a5c3e22 14353 wp->val = NULL;
4c1d86d9 14354 wp->val_valid = false;
3a5c3e22
PA
14355 }
14356 }
1f3b5d1b
PP
14357 }
14358}
14359
8181d85f
DJ
14360/* Create and insert a breakpoint for software single step. */
14361
14362void
6c95b8df 14363insert_single_step_breakpoint (struct gdbarch *gdbarch,
accd0bcd 14364 const address_space *aspace,
4a64f543 14365 CORE_ADDR next_pc)
8181d85f 14366{
7c16b83e
PA
14367 struct thread_info *tp = inferior_thread ();
14368 struct symtab_and_line sal;
14369 CORE_ADDR pc = next_pc;
8181d85f 14370
34b7e8a6
PA
14371 if (tp->control.single_step_breakpoints == NULL)
14372 {
14373 tp->control.single_step_breakpoints
5d5658a1 14374 = new_single_step_breakpoint (tp->global_num, gdbarch);
34b7e8a6 14375 }
8181d85f 14376
7c16b83e
PA
14377 sal = find_pc_line (pc, 0);
14378 sal.pc = pc;
14379 sal.section = find_pc_overlay (pc);
14380 sal.explicit_pc = 1;
34b7e8a6 14381 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
8181d85f 14382
7c16b83e 14383 update_global_location_list (UGLL_INSERT);
8181d85f
DJ
14384}
14385
93f9a11f
YQ
14386/* Insert single step breakpoints according to the current state. */
14387
14388int
14389insert_single_step_breakpoints (struct gdbarch *gdbarch)
14390{
f5ea389a 14391 struct regcache *regcache = get_current_regcache ();
a0ff9e1a 14392 std::vector<CORE_ADDR> next_pcs;
93f9a11f 14393
f5ea389a 14394 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
93f9a11f 14395
a0ff9e1a 14396 if (!next_pcs.empty ())
93f9a11f 14397 {
f5ea389a 14398 struct frame_info *frame = get_current_frame ();
8b86c959 14399 const address_space *aspace = get_frame_address_space (frame);
93f9a11f 14400
a0ff9e1a 14401 for (CORE_ADDR pc : next_pcs)
93f9a11f
YQ
14402 insert_single_step_breakpoint (gdbarch, aspace, pc);
14403
93f9a11f
YQ
14404 return 1;
14405 }
14406 else
14407 return 0;
14408}
14409
34b7e8a6 14410/* See breakpoint.h. */
f02253f1
HZ
14411
14412int
7c16b83e 14413breakpoint_has_location_inserted_here (struct breakpoint *bp,
accd0bcd 14414 const address_space *aspace,
7c16b83e 14415 CORE_ADDR pc)
1aafd4da 14416{
7c16b83e 14417 struct bp_location *loc;
1aafd4da 14418
7c16b83e
PA
14419 for (loc = bp->loc; loc != NULL; loc = loc->next)
14420 if (loc->inserted
14421 && breakpoint_location_address_match (loc, aspace, pc))
14422 return 1;
1aafd4da 14423
7c16b83e 14424 return 0;
ef370185
JB
14425}
14426
14427/* Check whether a software single-step breakpoint is inserted at
14428 PC. */
14429
14430int
accd0bcd 14431single_step_breakpoint_inserted_here_p (const address_space *aspace,
ef370185
JB
14432 CORE_ADDR pc)
14433{
34b7e8a6
PA
14434 struct breakpoint *bpt;
14435
14436 ALL_BREAKPOINTS (bpt)
14437 {
14438 if (bpt->type == bp_single_step
14439 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
14440 return 1;
14441 }
14442 return 0;
1aafd4da
UW
14443}
14444
1042e4c0
SS
14445/* Tracepoint-specific operations. */
14446
14447/* Set tracepoint count to NUM. */
14448static void
14449set_tracepoint_count (int num)
14450{
14451 tracepoint_count = num;
4fa62494 14452 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
14453}
14454
70221824 14455static void
0b39b52e 14456trace_command (const char *arg, int from_tty)
1042e4c0 14457{
ffc2605c
TT
14458 event_location_up location = string_to_event_location (&arg,
14459 current_language);
bac7c5cf
GB
14460 const struct breakpoint_ops *ops = breakpoint_ops_for_event_location
14461 (location.get (), true /* is_tracepoint */);
55aa24fb 14462
558a9d82 14463 create_breakpoint (get_current_arch (),
ffc2605c 14464 location.get (),
f00aae0f 14465 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14466 0 /* tempflag */,
14467 bp_tracepoint /* type_wanted */,
14468 0 /* Ignore count */,
14469 pending_break_support,
14470 ops,
14471 from_tty,
14472 1 /* enabled */,
14473 0 /* internal */, 0);
1042e4c0
SS
14474}
14475
70221824 14476static void
0b39b52e 14477ftrace_command (const char *arg, int from_tty)
7a697b8d 14478{
ffc2605c
TT
14479 event_location_up location = string_to_event_location (&arg,
14480 current_language);
558a9d82 14481 create_breakpoint (get_current_arch (),
ffc2605c 14482 location.get (),
f00aae0f 14483 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14484 0 /* tempflag */,
14485 bp_fast_tracepoint /* type_wanted */,
14486 0 /* Ignore count */,
14487 pending_break_support,
14488 &tracepoint_breakpoint_ops,
14489 from_tty,
14490 1 /* enabled */,
14491 0 /* internal */, 0);
0fb4aa4b
PA
14492}
14493
14494/* strace command implementation. Creates a static tracepoint. */
14495
70221824 14496static void
0b39b52e 14497strace_command (const char *arg, int from_tty)
0fb4aa4b 14498{
983af33b 14499 struct breakpoint_ops *ops;
ffc2605c 14500 event_location_up location;
983af33b
SDJ
14501
14502 /* Decide if we are dealing with a static tracepoint marker (`-m'),
14503 or with a normal static tracepoint. */
61012eef 14504 if (arg && startswith (arg, "-m") && isspace (arg[2]))
f00aae0f
KS
14505 {
14506 ops = &strace_marker_breakpoint_ops;
a20714ff 14507 location = new_linespec_location (&arg, symbol_name_match_type::FULL);
f00aae0f 14508 }
983af33b 14509 else
f00aae0f
KS
14510 {
14511 ops = &tracepoint_breakpoint_ops;
14512 location = string_to_event_location (&arg, current_language);
14513 }
983af33b 14514
558a9d82 14515 create_breakpoint (get_current_arch (),
ffc2605c 14516 location.get (),
f00aae0f 14517 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14518 0 /* tempflag */,
14519 bp_static_tracepoint /* type_wanted */,
14520 0 /* Ignore count */,
14521 pending_break_support,
14522 ops,
14523 from_tty,
14524 1 /* enabled */,
14525 0 /* internal */, 0);
7a697b8d
SS
14526}
14527
409873ef
SS
14528/* Set up a fake reader function that gets command lines from a linked
14529 list that was acquired during tracepoint uploading. */
14530
14531static struct uploaded_tp *this_utp;
3149d8c1 14532static int next_cmd;
409873ef
SS
14533
14534static char *
14535read_uploaded_action (void)
14536{
a18ba4e4 14537 char *rslt = nullptr;
409873ef 14538
a18ba4e4
SM
14539 if (next_cmd < this_utp->cmd_strings.size ())
14540 {
67aa1f3c 14541 rslt = this_utp->cmd_strings[next_cmd].get ();
a18ba4e4
SM
14542 next_cmd++;
14543 }
409873ef
SS
14544
14545 return rslt;
14546}
14547
00bf0b85
SS
14548/* Given information about a tracepoint as recorded on a target (which
14549 can be either a live system or a trace file), attempt to create an
14550 equivalent GDB tracepoint. This is not a reliable process, since
14551 the target does not necessarily have all the information used when
14552 the tracepoint was originally defined. */
14553
d9b3f62e 14554struct tracepoint *
00bf0b85 14555create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 14556{
f2fc3015
TT
14557 const char *addr_str;
14558 char small_buf[100];
d9b3f62e 14559 struct tracepoint *tp;
fd9b8c24 14560
409873ef 14561 if (utp->at_string)
67aa1f3c 14562 addr_str = utp->at_string.get ();
409873ef
SS
14563 else
14564 {
14565 /* In the absence of a source location, fall back to raw
14566 address. Since there is no way to confirm that the address
14567 means the same thing as when the trace was started, warn the
14568 user. */
3e43a32a
MS
14569 warning (_("Uploaded tracepoint %d has no "
14570 "source location, using raw address"),
409873ef 14571 utp->number);
8c042590 14572 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
14573 addr_str = small_buf;
14574 }
14575
14576 /* There's not much we can do with a sequence of bytecodes. */
14577 if (utp->cond && !utp->cond_string)
3e43a32a
MS
14578 warning (_("Uploaded tracepoint %d condition "
14579 "has no source form, ignoring it"),
409873ef 14580 utp->number);
d5551862 14581
ffc2605c
TT
14582 event_location_up location = string_to_event_location (&addr_str,
14583 current_language);
8cdf0e15 14584 if (!create_breakpoint (get_current_arch (),
ffc2605c 14585 location.get (),
67aa1f3c 14586 utp->cond_string.get (), -1, addr_str,
e7e0cddf 14587 0 /* parse cond/thread */,
8cdf0e15 14588 0 /* tempflag */,
0fb4aa4b 14589 utp->type /* type_wanted */,
8cdf0e15
VP
14590 0 /* Ignore count */,
14591 pending_break_support,
348d480f 14592 &tracepoint_breakpoint_ops,
8cdf0e15 14593 0 /* from_tty */,
84f4c1fe 14594 utp->enabled /* enabled */,
44f238bb
PA
14595 0 /* internal */,
14596 CREATE_BREAKPOINT_FLAGS_INSERTED))
ffc2605c 14597 return NULL;
fd9b8c24 14598
409873ef 14599 /* Get the tracepoint we just created. */
fd9b8c24
PA
14600 tp = get_tracepoint (tracepoint_count);
14601 gdb_assert (tp != NULL);
d5551862 14602
00bf0b85
SS
14603 if (utp->pass > 0)
14604 {
8c042590 14605 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
c1fc2657 14606 tp->number);
00bf0b85 14607
409873ef 14608 trace_pass_command (small_buf, 0);
00bf0b85
SS
14609 }
14610
409873ef
SS
14611 /* If we have uploaded versions of the original commands, set up a
14612 special-purpose "reader" function and call the usual command line
14613 reader, then pass the result to the breakpoint command-setting
14614 function. */
a18ba4e4 14615 if (!utp->cmd_strings.empty ())
00bf0b85 14616 {
12973681 14617 counted_command_line cmd_list;
00bf0b85 14618
409873ef 14619 this_utp = utp;
3149d8c1 14620 next_cmd = 0;
d5551862 14621
60b3cef2 14622 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL);
409873ef 14623
c1fc2657 14624 breakpoint_set_commands (tp, std::move (cmd_list));
00bf0b85 14625 }
a18ba4e4
SM
14626 else if (!utp->actions.empty ()
14627 || !utp->step_actions.empty ())
3e43a32a
MS
14628 warning (_("Uploaded tracepoint %d actions "
14629 "have no source form, ignoring them"),
409873ef 14630 utp->number);
00bf0b85 14631
f196051f 14632 /* Copy any status information that might be available. */
c1fc2657 14633 tp->hit_count = utp->hit_count;
f196051f
SS
14634 tp->traceframe_usage = utp->traceframe_usage;
14635
00bf0b85 14636 return tp;
d9b3f62e 14637}
00bf0b85 14638
1042e4c0
SS
14639/* Print information on tracepoint number TPNUM_EXP, or all if
14640 omitted. */
14641
14642static void
1d12d88f 14643info_tracepoints_command (const char *args, int from_tty)
1042e4c0 14644{
79a45e25 14645 struct ui_out *uiout = current_uiout;
e5a67952 14646 int num_printed;
1042e4c0 14647
5c458ae8 14648 num_printed = breakpoint_1 (args, false, is_tracepoint);
d77f58be
SS
14649
14650 if (num_printed == 0)
1042e4c0 14651 {
e5a67952 14652 if (args == NULL || *args == '\0')
112e8700 14653 uiout->message ("No tracepoints.\n");
d77f58be 14654 else
112e8700 14655 uiout->message ("No tracepoint matching '%s'.\n", args);
1042e4c0 14656 }
ad443146
SS
14657
14658 default_collect_info ();
1042e4c0
SS
14659}
14660
4a64f543 14661/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
14662 Not supported by all targets. */
14663static void
5fed81ff 14664enable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14665{
14666 enable_command (args, from_tty);
14667}
14668
4a64f543 14669/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
14670 Not supported by all targets. */
14671static void
5fed81ff 14672disable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14673{
14674 disable_command (args, from_tty);
14675}
14676
4a64f543 14677/* Remove a tracepoint (or all if no argument). */
1042e4c0 14678static void
4495129a 14679delete_trace_command (const char *arg, int from_tty)
1042e4c0 14680{
35df4500 14681 struct breakpoint *b, *b_tmp;
1042e4c0
SS
14682
14683 dont_repeat ();
14684
14685 if (arg == 0)
14686 {
14687 int breaks_to_delete = 0;
14688
14689 /* Delete all breakpoints if no argument.
14690 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
14691 have to be deleted with an explicit breakpoint number
14692 argument. */
1042e4c0 14693 ALL_TRACEPOINTS (b)
46c6471b 14694 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
14695 {
14696 breaks_to_delete = 1;
14697 break;
14698 }
1042e4c0
SS
14699
14700 /* Ask user only if there are some breakpoints to delete. */
14701 if (!from_tty
14702 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
14703 {
35df4500 14704 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 14705 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 14706 delete_breakpoint (b);
1042e4c0
SS
14707 }
14708 }
14709 else
48649e1b 14710 map_breakpoint_numbers
b926417a 14711 (arg, [&] (breakpoint *br)
48649e1b 14712 {
b926417a 14713 iterate_over_related_breakpoints (br, delete_breakpoint);
48649e1b 14714 });
1042e4c0
SS
14715}
14716
197f0a60
TT
14717/* Helper function for trace_pass_command. */
14718
14719static void
d9b3f62e 14720trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 14721{
d9b3f62e 14722 tp->pass_count = count;
76727919 14723 gdb::observers::breakpoint_modified.notify (tp);
197f0a60
TT
14724 if (from_tty)
14725 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
c1fc2657 14726 tp->number, count);
197f0a60
TT
14727}
14728
1042e4c0
SS
14729/* Set passcount for tracepoint.
14730
14731 First command argument is passcount, second is tracepoint number.
14732 If tracepoint number omitted, apply to most recently defined.
14733 Also accepts special argument "all". */
14734
14735static void
0b39b52e 14736trace_pass_command (const char *args, int from_tty)
1042e4c0 14737{
d9b3f62e 14738 struct tracepoint *t1;
0b39b52e 14739 ULONGEST count;
1042e4c0
SS
14740
14741 if (args == 0 || *args == 0)
3e43a32a
MS
14742 error (_("passcount command requires an "
14743 "argument (count + optional TP num)"));
1042e4c0 14744
0b39b52e 14745 count = strtoulst (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 14746
529480d0 14747 args = skip_spaces (args);
1042e4c0
SS
14748 if (*args && strncasecmp (args, "all", 3) == 0)
14749 {
d9b3f62e
PA
14750 struct breakpoint *b;
14751
1042e4c0 14752 args += 3; /* Skip special argument "all". */
1042e4c0
SS
14753 if (*args)
14754 error (_("Junk at end of arguments."));
1042e4c0 14755
d9b3f62e 14756 ALL_TRACEPOINTS (b)
197f0a60 14757 {
d9b3f62e 14758 t1 = (struct tracepoint *) b;
197f0a60
TT
14759 trace_pass_set_count (t1, count, from_tty);
14760 }
14761 }
14762 else if (*args == '\0')
1042e4c0 14763 {
5fa1d40e 14764 t1 = get_tracepoint_by_number (&args, NULL);
1042e4c0 14765 if (t1)
197f0a60
TT
14766 trace_pass_set_count (t1, count, from_tty);
14767 }
14768 else
14769 {
bfd28288
PA
14770 number_or_range_parser parser (args);
14771 while (!parser.finished ())
1042e4c0 14772 {
bfd28288 14773 t1 = get_tracepoint_by_number (&args, &parser);
197f0a60
TT
14774 if (t1)
14775 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
14776 }
14777 }
1042e4c0
SS
14778}
14779
d9b3f62e 14780struct tracepoint *
1042e4c0
SS
14781get_tracepoint (int num)
14782{
14783 struct breakpoint *t;
14784
14785 ALL_TRACEPOINTS (t)
14786 if (t->number == num)
d9b3f62e 14787 return (struct tracepoint *) t;
1042e4c0
SS
14788
14789 return NULL;
14790}
14791
d5551862
SS
14792/* Find the tracepoint with the given target-side number (which may be
14793 different from the tracepoint number after disconnecting and
14794 reconnecting). */
14795
d9b3f62e 14796struct tracepoint *
d5551862
SS
14797get_tracepoint_by_number_on_target (int num)
14798{
d9b3f62e 14799 struct breakpoint *b;
d5551862 14800
d9b3f62e
PA
14801 ALL_TRACEPOINTS (b)
14802 {
14803 struct tracepoint *t = (struct tracepoint *) b;
14804
14805 if (t->number_on_target == num)
14806 return t;
14807 }
d5551862
SS
14808
14809 return NULL;
14810}
14811
1042e4c0 14812/* Utility: parse a tracepoint number and look it up in the list.
197f0a60 14813 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
5fa1d40e
YQ
14814 If the argument is missing, the most recent tracepoint
14815 (tracepoint_count) is returned. */
14816
d9b3f62e 14817struct tracepoint *
0b39b52e 14818get_tracepoint_by_number (const char **arg,
bfd28288 14819 number_or_range_parser *parser)
1042e4c0 14820{
1042e4c0
SS
14821 struct breakpoint *t;
14822 int tpnum;
0b39b52e 14823 const char *instring = arg == NULL ? NULL : *arg;
1042e4c0 14824
bfd28288 14825 if (parser != NULL)
197f0a60 14826 {
bfd28288
PA
14827 gdb_assert (!parser->finished ());
14828 tpnum = parser->get_number ();
197f0a60
TT
14829 }
14830 else if (arg == NULL || *arg == NULL || ! **arg)
5fa1d40e 14831 tpnum = tracepoint_count;
1042e4c0 14832 else
197f0a60 14833 tpnum = get_number (arg);
1042e4c0
SS
14834
14835 if (tpnum <= 0)
14836 {
14837 if (instring && *instring)
14838 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
14839 instring);
14840 else
5fa1d40e 14841 printf_filtered (_("No previous tracepoint\n"));
1042e4c0
SS
14842 return NULL;
14843 }
14844
14845 ALL_TRACEPOINTS (t)
14846 if (t->number == tpnum)
14847 {
d9b3f62e 14848 return (struct tracepoint *) t;
1042e4c0
SS
14849 }
14850
1042e4c0
SS
14851 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
14852 return NULL;
14853}
14854
d9b3f62e
PA
14855void
14856print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
14857{
14858 if (b->thread != -1)
14859 fprintf_unfiltered (fp, " thread %d", b->thread);
14860
14861 if (b->task != 0)
14862 fprintf_unfiltered (fp, " task %d", b->task);
14863
14864 fprintf_unfiltered (fp, "\n");
14865}
14866
6149aea9
PA
14867/* Save information on user settable breakpoints (watchpoints, etc) to
14868 a new script file named FILENAME. If FILTER is non-NULL, call it
14869 on each breakpoint and only include the ones for which it returns
f2478a7e 14870 true. */
6149aea9 14871
1042e4c0 14872static void
4495129a 14873save_breakpoints (const char *filename, int from_tty,
f2478a7e 14874 bool (*filter) (const struct breakpoint *))
1042e4c0
SS
14875{
14876 struct breakpoint *tp;
6149aea9 14877 int any = 0;
6149aea9 14878 int extra_trace_bits = 0;
1042e4c0 14879
6149aea9
PA
14880 if (filename == 0 || *filename == 0)
14881 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
14882
14883 /* See if we have anything to save. */
6149aea9 14884 ALL_BREAKPOINTS (tp)
1042e4c0 14885 {
6149aea9 14886 /* Skip internal and momentary breakpoints. */
09d682a4 14887 if (!user_breakpoint_p (tp))
6149aea9
PA
14888 continue;
14889
14890 /* If we have a filter, only save the breakpoints it accepts. */
14891 if (filter && !filter (tp))
14892 continue;
14893
14894 any = 1;
14895
14896 if (is_tracepoint (tp))
14897 {
14898 extra_trace_bits = 1;
14899
14900 /* We can stop searching. */
14901 break;
14902 }
1042e4c0 14903 }
6149aea9
PA
14904
14905 if (!any)
1042e4c0 14906 {
6149aea9 14907 warning (_("Nothing to save."));
1042e4c0
SS
14908 return;
14909 }
14910
ee0c3293 14911 gdb::unique_xmalloc_ptr<char> expanded_filename (tilde_expand (filename));
d7e74731
PA
14912
14913 stdio_file fp;
14914
ee0c3293 14915 if (!fp.open (expanded_filename.get (), "w"))
6149aea9 14916 error (_("Unable to open file '%s' for saving (%s)"),
ee0c3293 14917 expanded_filename.get (), safe_strerror (errno));
8bf6485c 14918
6149aea9 14919 if (extra_trace_bits)
d7e74731 14920 save_trace_state_variables (&fp);
8bf6485c 14921
6149aea9 14922 ALL_BREAKPOINTS (tp)
1042e4c0 14923 {
6149aea9 14924 /* Skip internal and momentary breakpoints. */
09d682a4 14925 if (!user_breakpoint_p (tp))
6149aea9 14926 continue;
8bf6485c 14927
6149aea9
PA
14928 /* If we have a filter, only save the breakpoints it accepts. */
14929 if (filter && !filter (tp))
14930 continue;
14931
d7e74731 14932 tp->ops->print_recreate (tp, &fp);
1042e4c0 14933
6149aea9
PA
14934 /* Note, we can't rely on tp->number for anything, as we can't
14935 assume the recreated breakpoint numbers will match. Use $bpnum
14936 instead. */
14937
14938 if (tp->cond_string)
d7e74731 14939 fp.printf (" condition $bpnum %s\n", tp->cond_string);
6149aea9
PA
14940
14941 if (tp->ignore_count)
d7e74731 14942 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
6149aea9 14943
2d9442cc 14944 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 14945 {
d7e74731 14946 fp.puts (" commands\n");
a7bdde9e 14947
d7e74731 14948 current_uiout->redirect (&fp);
a70b8144 14949 try
1042e4c0 14950 {
d1b0a7bf 14951 print_command_lines (current_uiout, tp->commands.get (), 2);
a7bdde9e 14952 }
230d2906 14953 catch (const gdb_exception &ex)
492d29ea 14954 {
112e8700 14955 current_uiout->redirect (NULL);
eedc3f4f 14956 throw;
492d29ea 14957 }
1042e4c0 14958
112e8700 14959 current_uiout->redirect (NULL);
d7e74731 14960 fp.puts (" end\n");
1042e4c0 14961 }
6149aea9
PA
14962
14963 if (tp->enable_state == bp_disabled)
d7e74731 14964 fp.puts ("disable $bpnum\n");
6149aea9
PA
14965
14966 /* If this is a multi-location breakpoint, check if the locations
14967 should be individually disabled. Watchpoint locations are
14968 special, and not user visible. */
14969 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
14970 {
14971 struct bp_location *loc;
14972 int n = 1;
14973
14974 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
14975 if (!loc->enabled)
d7e74731 14976 fp.printf ("disable $bpnum.%d\n", n);
6149aea9 14977 }
1042e4c0 14978 }
8bf6485c 14979
6149aea9 14980 if (extra_trace_bits && *default_collect)
d7e74731 14981 fp.printf ("set default-collect %s\n", default_collect);
8bf6485c 14982
1042e4c0 14983 if (from_tty)
ee0c3293 14984 printf_filtered (_("Saved to file '%s'.\n"), expanded_filename.get ());
6149aea9
PA
14985}
14986
14987/* The `save breakpoints' command. */
14988
14989static void
4495129a 14990save_breakpoints_command (const char *args, int from_tty)
6149aea9
PA
14991{
14992 save_breakpoints (args, from_tty, NULL);
14993}
14994
14995/* The `save tracepoints' command. */
14996
14997static void
4495129a 14998save_tracepoints_command (const char *args, int from_tty)
6149aea9
PA
14999{
15000 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
15001}
15002
15003/* Create a vector of all tracepoints. */
15004
f51e0e20 15005std::vector<breakpoint *>
eeae04df 15006all_tracepoints (void)
1042e4c0 15007{
f51e0e20 15008 std::vector<breakpoint *> tp_vec;
1042e4c0
SS
15009 struct breakpoint *tp;
15010
15011 ALL_TRACEPOINTS (tp)
15012 {
f51e0e20 15013 tp_vec.push_back (tp);
1042e4c0
SS
15014 }
15015
15016 return tp_vec;
15017}
15018
c906108c 15019\f
629500fa
KS
15020/* This help string is used to consolidate all the help string for specifying
15021 locations used by several commands. */
15022
15023#define LOCATION_HELP_STRING \
15024"Linespecs are colon-separated lists of location parameters, such as\n\
15025source filename, function name, label name, and line number.\n\
15026Example: To specify the start of a label named \"the_top\" in the\n\
15027function \"fact\" in the file \"factorial.c\", use\n\
15028\"factorial.c:fact:the_top\".\n\
15029\n\
15030Address locations begin with \"*\" and specify an exact address in the\n\
15031program. Example: To specify the fourth byte past the start function\n\
15032\"main\", use \"*main + 4\".\n\
15033\n\
15034Explicit locations are similar to linespecs but use an option/argument\n\
15035syntax to specify location parameters.\n\
15036Example: To specify the start of the label named \"the_top\" in the\n\
15037function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
a20714ff
PA
15038-function fact -label the_top\".\n\
15039\n\
15040By default, a specified function is matched against the program's\n\
15041functions in all scopes. For C++, this means in all namespaces and\n\
15042classes. For Ada, this means in all packages. E.g., in C++,\n\
15043\"func()\" matches \"A::func()\", \"A::B::func()\", etc. The\n\
15044\"-qualified\" flag overrides this behavior, making GDB interpret the\n\
89549d7f 15045specified name as a complete fully-qualified name instead."
629500fa 15046
4a64f543
MS
15047/* This help string is used for the break, hbreak, tbreak and thbreak
15048 commands. It is defined as a macro to prevent duplication.
15049 COMMAND should be a string constant containing the name of the
15050 command. */
629500fa 15051
31e2b00f 15052#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
15053command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15054PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15055probe point. Accepted values are `-probe' (for a generic, automatically\n\
d4777acb
JM
15056guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15057`-probe-dtrace' (for a DTrace probe).\n\
629500fa
KS
15058LOCATION may be a linespec, address, or explicit location as described\n\
15059below.\n\
15060\n\
dc10affe
PA
15061With no LOCATION, uses current execution address of the selected\n\
15062stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
15063\n\
15064THREADNUM is the number from \"info threads\".\n\
15065CONDITION is a boolean expression.\n\
89549d7f 15066\n" LOCATION_HELP_STRING "\n\n\
d41c0fc8
PA
15067Multiple breakpoints at one place are permitted, and useful if their\n\
15068conditions are different.\n\
31e2b00f
AS
15069\n\
15070Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15071
44feb3ce
TT
15072/* List of subcommands for "catch". */
15073static struct cmd_list_element *catch_cmdlist;
15074
15075/* List of subcommands for "tcatch". */
15076static struct cmd_list_element *tcatch_cmdlist;
15077
9ac4176b 15078void
a121b7c1 15079add_catch_command (const char *name, const char *docstring,
eb4c3f4a 15080 cmd_const_sfunc_ftype *sfunc,
625e8578 15081 completer_ftype *completer,
44feb3ce
TT
15082 void *user_data_catch,
15083 void *user_data_tcatch)
15084{
15085 struct cmd_list_element *command;
15086
0450cc4c 15087 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15088 &catch_cmdlist);
15089 set_cmd_sfunc (command, sfunc);
15090 set_cmd_context (command, user_data_catch);
a96d9b2e 15091 set_cmd_completer (command, completer);
44feb3ce 15092
0450cc4c 15093 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15094 &tcatch_cmdlist);
15095 set_cmd_sfunc (command, sfunc);
15096 set_cmd_context (command, user_data_tcatch);
a96d9b2e 15097 set_cmd_completer (command, completer);
44feb3ce
TT
15098}
15099
84f4c1fe 15100struct breakpoint *
95da600f 15101iterate_over_breakpoints (gdb::function_view<bool (breakpoint *)> callback)
84f4c1fe 15102{
35df4500 15103 struct breakpoint *b, *b_tmp;
84f4c1fe 15104
35df4500 15105 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe 15106 {
95da600f 15107 if (callback (b))
84f4c1fe
PM
15108 return b;
15109 }
15110
15111 return NULL;
15112}
15113
0574c78f
GB
15114/* Zero if any of the breakpoint's locations could be a location where
15115 functions have been inlined, nonzero otherwise. */
15116
15117static int
15118is_non_inline_function (struct breakpoint *b)
15119{
15120 /* The shared library event breakpoint is set on the address of a
15121 non-inline function. */
15122 if (b->type == bp_shlib_event)
15123 return 1;
15124
15125 return 0;
15126}
15127
15128/* Nonzero if the specified PC cannot be a location where functions
15129 have been inlined. */
15130
15131int
accd0bcd 15132pc_at_non_inline_function (const address_space *aspace, CORE_ADDR pc,
09ac7c10 15133 const struct target_waitstatus *ws)
0574c78f
GB
15134{
15135 struct breakpoint *b;
15136 struct bp_location *bl;
15137
15138 ALL_BREAKPOINTS (b)
15139 {
15140 if (!is_non_inline_function (b))
15141 continue;
15142
15143 for (bl = b->loc; bl != NULL; bl = bl->next)
15144 {
15145 if (!bl->shlib_disabled
09ac7c10 15146 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
15147 return 1;
15148 }
15149 }
15150
15151 return 0;
15152}
15153
2f202fde
JK
15154/* Remove any references to OBJFILE which is going to be freed. */
15155
15156void
15157breakpoint_free_objfile (struct objfile *objfile)
15158{
15159 struct bp_location **locp, *loc;
15160
15161 ALL_BP_LOCATIONS (loc, locp)
eb822aa6 15162 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
2f202fde
JK
15163 loc->symtab = NULL;
15164}
15165
2060206e
PA
15166void
15167initialize_breakpoint_ops (void)
15168{
15169 static int initialized = 0;
15170
15171 struct breakpoint_ops *ops;
15172
15173 if (initialized)
15174 return;
15175 initialized = 1;
15176
15177 /* The breakpoint_ops structure to be inherit by all kinds of
15178 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15179 internal and momentary breakpoints, etc.). */
15180 ops = &bkpt_base_breakpoint_ops;
15181 *ops = base_breakpoint_ops;
15182 ops->re_set = bkpt_re_set;
15183 ops->insert_location = bkpt_insert_location;
15184 ops->remove_location = bkpt_remove_location;
15185 ops->breakpoint_hit = bkpt_breakpoint_hit;
5f700d83 15186 ops->create_sals_from_location = bkpt_create_sals_from_location;
983af33b 15187 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
5f700d83 15188 ops->decode_location = bkpt_decode_location;
2060206e
PA
15189
15190 /* The breakpoint_ops structure to be used in regular breakpoints. */
15191 ops = &bkpt_breakpoint_ops;
15192 *ops = bkpt_base_breakpoint_ops;
15193 ops->re_set = bkpt_re_set;
15194 ops->resources_needed = bkpt_resources_needed;
15195 ops->print_it = bkpt_print_it;
15196 ops->print_mention = bkpt_print_mention;
15197 ops->print_recreate = bkpt_print_recreate;
15198
15199 /* Ranged breakpoints. */
15200 ops = &ranged_breakpoint_ops;
15201 *ops = bkpt_breakpoint_ops;
15202 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15203 ops->resources_needed = resources_needed_ranged_breakpoint;
15204 ops->print_it = print_it_ranged_breakpoint;
15205 ops->print_one = print_one_ranged_breakpoint;
15206 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15207 ops->print_mention = print_mention_ranged_breakpoint;
15208 ops->print_recreate = print_recreate_ranged_breakpoint;
15209
15210 /* Internal breakpoints. */
15211 ops = &internal_breakpoint_ops;
15212 *ops = bkpt_base_breakpoint_ops;
15213 ops->re_set = internal_bkpt_re_set;
15214 ops->check_status = internal_bkpt_check_status;
15215 ops->print_it = internal_bkpt_print_it;
15216 ops->print_mention = internal_bkpt_print_mention;
15217
15218 /* Momentary breakpoints. */
15219 ops = &momentary_breakpoint_ops;
15220 *ops = bkpt_base_breakpoint_ops;
15221 ops->re_set = momentary_bkpt_re_set;
15222 ops->check_status = momentary_bkpt_check_status;
15223 ops->print_it = momentary_bkpt_print_it;
15224 ops->print_mention = momentary_bkpt_print_mention;
15225
55aa24fb
SDJ
15226 /* Probe breakpoints. */
15227 ops = &bkpt_probe_breakpoint_ops;
15228 *ops = bkpt_breakpoint_ops;
15229 ops->insert_location = bkpt_probe_insert_location;
15230 ops->remove_location = bkpt_probe_remove_location;
5f700d83
KS
15231 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
15232 ops->decode_location = bkpt_probe_decode_location;
55aa24fb 15233
2060206e
PA
15234 /* Watchpoints. */
15235 ops = &watchpoint_breakpoint_ops;
15236 *ops = base_breakpoint_ops;
15237 ops->re_set = re_set_watchpoint;
15238 ops->insert_location = insert_watchpoint;
15239 ops->remove_location = remove_watchpoint;
15240 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15241 ops->check_status = check_status_watchpoint;
15242 ops->resources_needed = resources_needed_watchpoint;
15243 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15244 ops->print_it = print_it_watchpoint;
15245 ops->print_mention = print_mention_watchpoint;
15246 ops->print_recreate = print_recreate_watchpoint;
427cd150 15247 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
15248
15249 /* Masked watchpoints. */
15250 ops = &masked_watchpoint_breakpoint_ops;
15251 *ops = watchpoint_breakpoint_ops;
15252 ops->insert_location = insert_masked_watchpoint;
15253 ops->remove_location = remove_masked_watchpoint;
15254 ops->resources_needed = resources_needed_masked_watchpoint;
15255 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15256 ops->print_it = print_it_masked_watchpoint;
15257 ops->print_one_detail = print_one_detail_masked_watchpoint;
15258 ops->print_mention = print_mention_masked_watchpoint;
15259 ops->print_recreate = print_recreate_masked_watchpoint;
15260
15261 /* Tracepoints. */
15262 ops = &tracepoint_breakpoint_ops;
15263 *ops = base_breakpoint_ops;
15264 ops->re_set = tracepoint_re_set;
15265 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15266 ops->print_one_detail = tracepoint_print_one_detail;
15267 ops->print_mention = tracepoint_print_mention;
15268 ops->print_recreate = tracepoint_print_recreate;
5f700d83 15269 ops->create_sals_from_location = tracepoint_create_sals_from_location;
983af33b 15270 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
5f700d83 15271 ops->decode_location = tracepoint_decode_location;
983af33b 15272
55aa24fb
SDJ
15273 /* Probe tracepoints. */
15274 ops = &tracepoint_probe_breakpoint_ops;
15275 *ops = tracepoint_breakpoint_ops;
5f700d83
KS
15276 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
15277 ops->decode_location = tracepoint_probe_decode_location;
55aa24fb 15278
983af33b
SDJ
15279 /* Static tracepoints with marker (`-m'). */
15280 ops = &strace_marker_breakpoint_ops;
15281 *ops = tracepoint_breakpoint_ops;
5f700d83 15282 ops->create_sals_from_location = strace_marker_create_sals_from_location;
983af33b 15283 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
5f700d83 15284 ops->decode_location = strace_marker_decode_location;
2060206e
PA
15285
15286 /* Fork catchpoints. */
15287 ops = &catch_fork_breakpoint_ops;
15288 *ops = base_breakpoint_ops;
15289 ops->insert_location = insert_catch_fork;
15290 ops->remove_location = remove_catch_fork;
15291 ops->breakpoint_hit = breakpoint_hit_catch_fork;
15292 ops->print_it = print_it_catch_fork;
15293 ops->print_one = print_one_catch_fork;
15294 ops->print_mention = print_mention_catch_fork;
15295 ops->print_recreate = print_recreate_catch_fork;
15296
15297 /* Vfork catchpoints. */
15298 ops = &catch_vfork_breakpoint_ops;
15299 *ops = base_breakpoint_ops;
15300 ops->insert_location = insert_catch_vfork;
15301 ops->remove_location = remove_catch_vfork;
15302 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
15303 ops->print_it = print_it_catch_vfork;
15304 ops->print_one = print_one_catch_vfork;
15305 ops->print_mention = print_mention_catch_vfork;
15306 ops->print_recreate = print_recreate_catch_vfork;
15307
15308 /* Exec catchpoints. */
15309 ops = &catch_exec_breakpoint_ops;
15310 *ops = base_breakpoint_ops;
2060206e
PA
15311 ops->insert_location = insert_catch_exec;
15312 ops->remove_location = remove_catch_exec;
15313 ops->breakpoint_hit = breakpoint_hit_catch_exec;
15314 ops->print_it = print_it_catch_exec;
15315 ops->print_one = print_one_catch_exec;
15316 ops->print_mention = print_mention_catch_exec;
15317 ops->print_recreate = print_recreate_catch_exec;
15318
edcc5120
TT
15319 /* Solib-related catchpoints. */
15320 ops = &catch_solib_breakpoint_ops;
15321 *ops = base_breakpoint_ops;
edcc5120
TT
15322 ops->insert_location = insert_catch_solib;
15323 ops->remove_location = remove_catch_solib;
15324 ops->breakpoint_hit = breakpoint_hit_catch_solib;
15325 ops->check_status = check_status_catch_solib;
15326 ops->print_it = print_it_catch_solib;
15327 ops->print_one = print_one_catch_solib;
15328 ops->print_mention = print_mention_catch_solib;
15329 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
15330
15331 ops = &dprintf_breakpoint_ops;
15332 *ops = bkpt_base_breakpoint_ops;
5c2b4418 15333 ops->re_set = dprintf_re_set;
e7e0cddf
SS
15334 ops->resources_needed = bkpt_resources_needed;
15335 ops->print_it = bkpt_print_it;
15336 ops->print_mention = bkpt_print_mention;
2d9442cc 15337 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 15338 ops->after_condition_true = dprintf_after_condition_true;
cd1608cc 15339 ops->breakpoint_hit = dprintf_breakpoint_hit;
2060206e
PA
15340}
15341
8bfd80db
YQ
15342/* Chain containing all defined "enable breakpoint" subcommands. */
15343
15344static struct cmd_list_element *enablebreaklist = NULL;
15345
8588b356
SM
15346/* See breakpoint.h. */
15347
15348cmd_list_element *commands_cmd_element = nullptr;
15349
6c265988 15350void _initialize_breakpoint ();
c906108c 15351void
6c265988 15352_initialize_breakpoint ()
c906108c
SS
15353{
15354 struct cmd_list_element *c;
15355
2060206e
PA
15356 initialize_breakpoint_ops ();
15357
76727919
TT
15358 gdb::observers::solib_unloaded.attach (disable_breakpoints_in_unloaded_shlib);
15359 gdb::observers::free_objfile.attach (disable_breakpoints_in_freed_objfile);
15360 gdb::observers::memory_changed.attach (invalidate_bp_value_on_memory_change);
84acb35a 15361
c906108c
SS
15362 breakpoint_chain = 0;
15363 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
15364 before a breakpoint is set. */
15365 breakpoint_count = 0;
15366
1042e4c0
SS
15367 tracepoint_count = 0;
15368
1bedd215
AC
15369 add_com ("ignore", class_breakpoint, ignore_command, _("\
15370Set ignore-count of breakpoint number N to COUNT.\n\
15371Usage is `ignore N COUNT'."));
c906108c 15372
8588b356
SM
15373 commands_cmd_element = add_com ("commands", class_breakpoint,
15374 commands_command, _("\
18da0c51
MG
15375Set commands to be executed when the given breakpoints are hit.\n\
15376Give a space-separated breakpoint list as argument after \"commands\".\n\
15377A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
15378(e.g. `5-7').\n\
c906108c
SS
15379With no argument, the targeted breakpoint is the last one set.\n\
15380The commands themselves follow starting on the next line.\n\
15381Type a line containing \"end\" to indicate the end of them.\n\
15382Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 15383then no output is printed when it is hit, except what the commands print."));
c906108c 15384
d55637df 15385 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 15386Specify breakpoint number N to break only if COND is true.\n\
c906108c 15387Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 15388expression to be evaluated whenever breakpoint N is reached."));
d55637df 15389 set_cmd_completer (c, condition_completer);
c906108c 15390
1bedd215 15391 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 15392Set a temporary breakpoint.\n\
c906108c
SS
15393Like \"break\" except the breakpoint is only temporary,\n\
15394so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
15395by using \"enable delete\" on the breakpoint number.\n\
15396\n"
15397BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 15398 set_cmd_completer (c, location_completer);
c94fdfd0 15399
1bedd215 15400 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 15401Set a hardware assisted breakpoint.\n\
c906108c 15402Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
15403some target hardware may not have this support.\n\
15404\n"
15405BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 15406 set_cmd_completer (c, location_completer);
c906108c 15407
1bedd215 15408 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 15409Set a temporary hardware assisted breakpoint.\n\
c906108c 15410Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
15411so it will be deleted when hit.\n\
15412\n"
15413BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 15414 set_cmd_completer (c, location_completer);
c906108c 15415
1bedd215 15416 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
590042fc
PW
15417Enable all or some breakpoints.\n\
15418Usage: enable [BREAKPOINTNUM]...\n\
c906108c
SS
15419Give breakpoint numbers (separated by spaces) as arguments.\n\
15420With no subcommand, breakpoints are enabled until you command otherwise.\n\
15421This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 15422With a subcommand you can enable temporarily."),
c906108c 15423 &enablelist, "enable ", 1, &cmdlist);
c906108c
SS
15424
15425 add_com_alias ("en", "enable", class_breakpoint, 1);
15426
84951ab5 15427 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
590042fc
PW
15428Enable all or some breakpoints.\n\
15429Usage: enable breakpoints [BREAKPOINTNUM]...\n\
c906108c
SS
15430Give breakpoint numbers (separated by spaces) as arguments.\n\
15431This is used to cancel the effect of the \"disable\" command.\n\
89549d7f 15432May be abbreviated to simply \"enable\"."),
c5aa993b 15433 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 15434
1a966eab 15435 add_cmd ("once", no_class, enable_once_command, _("\
590042fc
PW
15436Enable some breakpoints for one hit.\n\
15437Usage: enable breakpoints once BREAKPOINTNUM...\n\
1a966eab 15438If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
15439 &enablebreaklist);
15440
1a966eab 15441 add_cmd ("delete", no_class, enable_delete_command, _("\
590042fc
PW
15442Enable some breakpoints and delete when hit.\n\
15443Usage: enable breakpoints delete BREAKPOINTNUM...\n\
1a966eab 15444If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15445 &enablebreaklist);
15446
816338b5 15447 add_cmd ("count", no_class, enable_count_command, _("\
590042fc
PW
15448Enable some breakpoints for COUNT hits.\n\
15449Usage: enable breakpoints count COUNT BREAKPOINTNUM...\n\
816338b5
SS
15450If a breakpoint is hit while enabled in this fashion,\n\
15451the count is decremented; when it reaches zero, the breakpoint is disabled."),
15452 &enablebreaklist);
15453
1a966eab 15454 add_cmd ("delete", no_class, enable_delete_command, _("\
590042fc
PW
15455Enable some breakpoints and delete when hit.\n\
15456Usage: enable delete BREAKPOINTNUM...\n\
1a966eab 15457If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15458 &enablelist);
15459
1a966eab 15460 add_cmd ("once", no_class, enable_once_command, _("\
590042fc
PW
15461Enable some breakpoints for one hit.\n\
15462Usage: enable once BREAKPOINTNUM...\n\
1a966eab 15463If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
15464 &enablelist);
15465
15466 add_cmd ("count", no_class, enable_count_command, _("\
590042fc
PW
15467Enable some breakpoints for COUNT hits.\n\
15468Usage: enable count COUNT BREAKPOINTNUM...\n\
816338b5
SS
15469If a breakpoint is hit while enabled in this fashion,\n\
15470the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
15471 &enablelist);
15472
1bedd215 15473 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
590042fc
PW
15474Disable all or some breakpoints.\n\
15475Usage: disable [BREAKPOINTNUM]...\n\
c906108c
SS
15476Arguments are breakpoint numbers with spaces in between.\n\
15477To disable all breakpoints, give no argument.\n\
64b9b334 15478A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
15479 &disablelist, "disable ", 1, &cmdlist);
15480 add_com_alias ("dis", "disable", class_breakpoint, 1);
15481 add_com_alias ("disa", "disable", class_breakpoint, 1);
c906108c 15482
1a966eab 15483 add_cmd ("breakpoints", class_alias, disable_command, _("\
590042fc
PW
15484Disable all or some breakpoints.\n\
15485Usage: disable breakpoints [BREAKPOINTNUM]...\n\
c906108c
SS
15486Arguments are breakpoint numbers with spaces in between.\n\
15487To disable all breakpoints, give no argument.\n\
64b9b334 15488A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 15489This command may be abbreviated \"disable\"."),
c906108c
SS
15490 &disablelist);
15491
1bedd215 15492 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
590042fc
PW
15493Delete all or some breakpoints.\n\
15494Usage: delete [BREAKPOINTNUM]...\n\
c906108c
SS
15495Arguments are breakpoint numbers with spaces in between.\n\
15496To delete all breakpoints, give no argument.\n\
15497\n\
590042fc 15498Also a prefix command for deletion of other GDB objects."),
c906108c
SS
15499 &deletelist, "delete ", 1, &cmdlist);
15500 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 15501 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 15502
1a966eab 15503 add_cmd ("breakpoints", class_alias, delete_command, _("\
590042fc
PW
15504Delete all or some breakpoints or auto-display expressions.\n\
15505Usage: delete breakpoints [BREAKPOINTNUM]...\n\
c906108c
SS
15506Arguments are breakpoint numbers with spaces in between.\n\
15507To delete all breakpoints, give no argument.\n\
1a966eab 15508This command may be abbreviated \"delete\"."),
c906108c
SS
15509 &deletelist);
15510
1bedd215 15511 add_com ("clear", class_breakpoint, clear_command, _("\
629500fa
KS
15512Clear breakpoint at specified location.\n\
15513Argument may be a linespec, explicit, or address location as described below.\n\
1bedd215
AC
15514\n\
15515With no argument, clears all breakpoints in the line that the selected frame\n\
629500fa 15516is executing in.\n"
89549d7f 15517"\n" LOCATION_HELP_STRING "\n\n\
1bedd215 15518See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 15519 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 15520
1bedd215 15521 c = add_com ("break", class_breakpoint, break_command, _("\
629500fa 15522Set breakpoint at specified location.\n"
31e2b00f 15523BREAK_ARGS_HELP ("break")));
5ba2abeb 15524 set_cmd_completer (c, location_completer);
c94fdfd0 15525
c906108c
SS
15526 add_com_alias ("b", "break", class_run, 1);
15527 add_com_alias ("br", "break", class_run, 1);
15528 add_com_alias ("bre", "break", class_run, 1);
15529 add_com_alias ("brea", "break", class_run, 1);
15530
c906108c
SS
15531 if (dbx_commands)
15532 {
1bedd215
AC
15533 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
15534Break in function/address or break at a line in the current file."),
c5aa993b
JM
15535 &stoplist, "stop ", 1, &cmdlist);
15536 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 15537 _("Break in function or address."), &stoplist);
c5aa993b 15538 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 15539 _("Break at a line in the current file."), &stoplist);
11db9430 15540 add_com ("status", class_info, info_breakpoints_command, _("\
1bedd215 15541Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15542The \"Type\" column indicates one of:\n\
15543\tbreakpoint - normal breakpoint\n\
15544\twatchpoint - watchpoint\n\
15545The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15546the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15547breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15548address and file/line number respectively.\n\
15549\n\
15550Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15551are set to the address of the last breakpoint listed unless the command\n\
15552is prefixed with \"server \".\n\n\
c906108c 15553Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15554breakpoint set."));
c906108c
SS
15555 }
15556
11db9430 15557 add_info ("breakpoints", info_breakpoints_command, _("\
e5a67952 15558Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
15559The \"Type\" column indicates one of:\n\
15560\tbreakpoint - normal breakpoint\n\
15561\twatchpoint - watchpoint\n\
15562The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15563the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15564breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15565address and file/line number respectively.\n\
15566\n\
15567Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15568are set to the address of the last breakpoint listed unless the command\n\
15569is prefixed with \"server \".\n\n\
c906108c 15570Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15571breakpoint set."));
c906108c 15572
6b04bdb7
MS
15573 add_info_alias ("b", "breakpoints", 1);
15574
1a966eab
AC
15575 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
15576Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15577The \"Type\" column indicates one of:\n\
15578\tbreakpoint - normal breakpoint\n\
15579\twatchpoint - watchpoint\n\
15580\tlongjmp - internal breakpoint used to step through longjmp()\n\
15581\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
15582\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
15583\tfinish - internal breakpoint used by the \"finish\" command\n\
15584The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
15585the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15586breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
15587address and file/line number respectively.\n\
15588\n\
15589Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15590are set to the address of the last breakpoint listed unless the command\n\
15591is prefixed with \"server \".\n\n\
c906108c 15592Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 15593breakpoint set."),
c906108c
SS
15594 &maintenanceinfolist);
15595
3b6acaee 15596 add_basic_prefix_cmd ("catch", class_breakpoint, _("\
44feb3ce 15597Set catchpoints to catch events."),
3b6acaee
TT
15598 &catch_cmdlist, "catch ",
15599 0/*allow-unknown*/, &cmdlist);
44feb3ce 15600
3b6acaee 15601 add_basic_prefix_cmd ("tcatch", class_breakpoint, _("\
44feb3ce 15602Set temporary catchpoints to catch events."),
3b6acaee
TT
15603 &tcatch_cmdlist, "tcatch ",
15604 0/*allow-unknown*/, &cmdlist);
44feb3ce 15605
44feb3ce
TT
15606 add_catch_command ("fork", _("Catch calls to fork."),
15607 catch_fork_command_1,
a96d9b2e 15608 NULL,
44feb3ce
TT
15609 (void *) (uintptr_t) catch_fork_permanent,
15610 (void *) (uintptr_t) catch_fork_temporary);
15611 add_catch_command ("vfork", _("Catch calls to vfork."),
15612 catch_fork_command_1,
a96d9b2e 15613 NULL,
44feb3ce
TT
15614 (void *) (uintptr_t) catch_vfork_permanent,
15615 (void *) (uintptr_t) catch_vfork_temporary);
15616 add_catch_command ("exec", _("Catch calls to exec."),
15617 catch_exec_command_1,
a96d9b2e
SDJ
15618 NULL,
15619 CATCH_PERMANENT,
15620 CATCH_TEMPORARY);
edcc5120
TT
15621 add_catch_command ("load", _("Catch loads of shared libraries.\n\
15622Usage: catch load [REGEX]\n\
15623If REGEX is given, only stop for libraries matching the regular expression."),
15624 catch_load_command_1,
15625 NULL,
15626 CATCH_PERMANENT,
15627 CATCH_TEMPORARY);
15628 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
15629Usage: catch unload [REGEX]\n\
15630If REGEX is given, only stop for libraries matching the regular expression."),
15631 catch_unload_command_1,
15632 NULL,
15633 CATCH_PERMANENT,
15634 CATCH_TEMPORARY);
c5aa993b 15635
1bedd215
AC
15636 c = add_com ("watch", class_breakpoint, watch_command, _("\
15637Set a watchpoint for an expression.\n\
06a64a0b 15638Usage: watch [-l|-location] EXPRESSION\n\
c906108c 15639A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15640an expression changes.\n\
15641If -l or -location is given, this evaluates EXPRESSION and watches\n\
15642the memory to which it refers."));
65d12d83 15643 set_cmd_completer (c, expression_completer);
c906108c 15644
1bedd215
AC
15645 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
15646Set a read watchpoint for an expression.\n\
06a64a0b 15647Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 15648A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15649an expression is read.\n\
15650If -l or -location is given, this evaluates EXPRESSION and watches\n\
15651the memory to which it refers."));
65d12d83 15652 set_cmd_completer (c, expression_completer);
c906108c 15653
1bedd215
AC
15654 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
15655Set a watchpoint for an expression.\n\
06a64a0b 15656Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 15657A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15658an expression is either read or written.\n\
15659If -l or -location is given, this evaluates EXPRESSION and watches\n\
15660the memory to which it refers."));
65d12d83 15661 set_cmd_completer (c, expression_completer);
c906108c 15662
11db9430 15663 add_info ("watchpoints", info_watchpoints_command, _("\
e5a67952 15664Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 15665
920d2a44
AC
15666 /* XXX: cagney/2005-02-23: This should be a boolean, and should
15667 respond to changes - contrary to the description. */
85c07804
AC
15668 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
15669 &can_use_hw_watchpoints, _("\
15670Set debugger's willingness to use watchpoint hardware."), _("\
15671Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
15672If zero, gdb will not use hardware for new watchpoints, even if\n\
15673such is available. (However, any hardware watchpoints that were\n\
15674created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
15675hardware.)"),
15676 NULL,
920d2a44 15677 show_can_use_hw_watchpoints,
85c07804 15678 &setlist, &showlist);
c906108c
SS
15679
15680 can_use_hw_watchpoints = 1;
fa8d40ab 15681
1042e4c0
SS
15682 /* Tracepoint manipulation commands. */
15683
15684 c = add_com ("trace", class_breakpoint, trace_command, _("\
629500fa 15685Set a tracepoint at specified location.\n\
1042e4c0
SS
15686\n"
15687BREAK_ARGS_HELP ("trace") "\n\
15688Do \"help tracepoints\" for info on other tracepoint commands."));
15689 set_cmd_completer (c, location_completer);
15690
15691 add_com_alias ("tp", "trace", class_alias, 0);
15692 add_com_alias ("tr", "trace", class_alias, 1);
15693 add_com_alias ("tra", "trace", class_alias, 1);
15694 add_com_alias ("trac", "trace", class_alias, 1);
15695
7a697b8d 15696 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
629500fa 15697Set a fast tracepoint at specified location.\n\
7a697b8d
SS
15698\n"
15699BREAK_ARGS_HELP ("ftrace") "\n\
15700Do \"help tracepoints\" for info on other tracepoint commands."));
15701 set_cmd_completer (c, location_completer);
15702
0fb4aa4b 15703 c = add_com ("strace", class_breakpoint, strace_command, _("\
629500fa 15704Set a static tracepoint at location or marker.\n\
0fb4aa4b
PA
15705\n\
15706strace [LOCATION] [if CONDITION]\n\
629500fa
KS
15707LOCATION may be a linespec, explicit, or address location (described below) \n\
15708or -m MARKER_ID.\n\n\
15709If a marker id is specified, probe the marker with that name. With\n\
15710no LOCATION, uses current execution address of the selected stack frame.\n\
0fb4aa4b
PA
15711Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
15712This collects arbitrary user data passed in the probe point call to the\n\
15713tracing library. You can inspect it when analyzing the trace buffer,\n\
15714by printing the $_sdata variable like any other convenience variable.\n\
15715\n\
15716CONDITION is a boolean expression.\n\
89549d7f 15717\n" LOCATION_HELP_STRING "\n\n\
d41c0fc8
PA
15718Multiple tracepoints at one place are permitted, and useful if their\n\
15719conditions are different.\n\
0fb4aa4b
PA
15720\n\
15721Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
15722Do \"help tracepoints\" for info on other tracepoint commands."));
15723 set_cmd_completer (c, location_completer);
15724
11db9430 15725 add_info ("tracepoints", info_tracepoints_command, _("\
e5a67952 15726Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
15727Convenience variable \"$tpnum\" contains the number of the\n\
15728last tracepoint set."));
15729
15730 add_info_alias ("tp", "tracepoints", 1);
15731
15732 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
15733Delete specified tracepoints.\n\
15734Arguments are tracepoint numbers, separated by spaces.\n\
15735No argument means delete all tracepoints."),
15736 &deletelist);
7e20dfcd 15737 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
15738
15739 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
15740Disable specified tracepoints.\n\
15741Arguments are tracepoint numbers, separated by spaces.\n\
15742No argument means disable all tracepoints."),
15743 &disablelist);
15744 deprecate_cmd (c, "disable");
15745
15746 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
15747Enable specified tracepoints.\n\
15748Arguments are tracepoint numbers, separated by spaces.\n\
15749No argument means enable all tracepoints."),
15750 &enablelist);
15751 deprecate_cmd (c, "enable");
15752
15753 add_com ("passcount", class_trace, trace_pass_command, _("\
15754Set the passcount for a tracepoint.\n\
15755The trace will end when the tracepoint has been passed 'count' times.\n\
15756Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
15757if TPNUM is omitted, passcount refers to the last tracepoint defined."));
15758
0743fc83
TT
15759 add_basic_prefix_cmd ("save", class_breakpoint,
15760 _("Save breakpoint definitions as a script."),
15761 &save_cmdlist, "save ",
15762 0/*allow-unknown*/, &cmdlist);
6149aea9
PA
15763
15764 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
15765Save current breakpoint definitions as a script.\n\
cce7e648 15766This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
15767catchpoints, tracepoints). Use the 'source' command in another debug\n\
15768session to restore them."),
15769 &save_cmdlist);
15770 set_cmd_completer (c, filename_completer);
15771
15772 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 15773Save current tracepoint definitions as a script.\n\
6149aea9
PA
15774Use the 'source' command in another debug session to restore them."),
15775 &save_cmdlist);
1042e4c0
SS
15776 set_cmd_completer (c, filename_completer);
15777
6149aea9
PA
15778 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
15779 deprecate_cmd (c, "save tracepoints");
15780
3b6acaee 15781 add_basic_prefix_cmd ("breakpoint", class_maintenance, _("\
590042fc 15782Breakpoint specific settings.\n\
fa8d40ab 15783Configure various breakpoint-specific variables such as\n\
590042fc 15784pending breakpoint behavior."),
3b6acaee
TT
15785 &breakpoint_set_cmdlist, "set breakpoint ",
15786 0/*allow-unknown*/, &setlist);
15787 add_show_prefix_cmd ("breakpoint", class_maintenance, _("\
590042fc 15788Breakpoint specific settings.\n\
fa8d40ab 15789Configure various breakpoint-specific variables such as\n\
590042fc 15790pending breakpoint behavior."),
3b6acaee
TT
15791 &breakpoint_show_cmdlist, "show breakpoint ",
15792 0/*allow-unknown*/, &showlist);
fa8d40ab 15793
7915a72c
AC
15794 add_setshow_auto_boolean_cmd ("pending", no_class,
15795 &pending_break_support, _("\
15796Set debugger's behavior regarding pending breakpoints."), _("\
15797Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
15798If on, an unrecognized breakpoint location will cause gdb to create a\n\
15799pending breakpoint. If off, an unrecognized breakpoint location results in\n\
15800an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 15801user-query to see if a pending breakpoint should be created."),
2c5b56ce 15802 NULL,
920d2a44 15803 show_pending_break_support,
6e1d7d6c
AC
15804 &breakpoint_set_cmdlist,
15805 &breakpoint_show_cmdlist);
fa8d40ab
JJ
15806
15807 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
15808
15809 add_setshow_boolean_cmd ("auto-hw", no_class,
15810 &automatic_hardware_breakpoints, _("\
15811Set automatic usage of hardware breakpoints."), _("\
15812Show automatic usage of hardware breakpoints."), _("\
15813If set, the debugger will automatically use hardware breakpoints for\n\
15814breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
15815a warning will be emitted for such breakpoints."),
15816 NULL,
15817 show_automatic_hardware_breakpoints,
15818 &breakpoint_set_cmdlist,
15819 &breakpoint_show_cmdlist);
74960c60 15820
a25a5a45
PA
15821 add_setshow_boolean_cmd ("always-inserted", class_support,
15822 &always_inserted_mode, _("\
74960c60
VP
15823Set mode for inserting breakpoints."), _("\
15824Show mode for inserting breakpoints."), _("\
a25a5a45
PA
15825When this mode is on, breakpoints are inserted immediately as soon as\n\
15826they're created, kept inserted even when execution stops, and removed\n\
15827only when the user deletes them. When this mode is off (the default),\n\
15828breakpoints are inserted only when execution continues, and removed\n\
15829when execution stops."),
72d0e2c5
YQ
15830 NULL,
15831 &show_always_inserted_mode,
15832 &breakpoint_set_cmdlist,
15833 &breakpoint_show_cmdlist);
f1310107 15834
b775012e
LM
15835 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
15836 condition_evaluation_enums,
15837 &condition_evaluation_mode_1, _("\
15838Set mode of breakpoint condition evaluation."), _("\
15839Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 15840When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
15841evaluated on the host's side by GDB. When it is set to \"target\",\n\
15842breakpoint conditions will be downloaded to the target (if the target\n\
15843supports such feature) and conditions will be evaluated on the target's side.\n\
15844If this is set to \"auto\" (default), this will be automatically set to\n\
15845\"target\" if it supports condition evaluation, otherwise it will\n\
15846be set to \"gdb\""),
15847 &set_condition_evaluation_mode,
15848 &show_condition_evaluation_mode,
15849 &breakpoint_set_cmdlist,
15850 &breakpoint_show_cmdlist);
15851
f1310107
TJB
15852 add_com ("break-range", class_breakpoint, break_range_command, _("\
15853Set a breakpoint for an address range.\n\
15854break-range START-LOCATION, END-LOCATION\n\
15855where START-LOCATION and END-LOCATION can be one of the following:\n\
15856 LINENUM, for that line in the current file,\n\
15857 FILE:LINENUM, for that line in that file,\n\
15858 +OFFSET, for that number of lines after the current line\n\
15859 or the start of the range\n\
15860 FUNCTION, for the first line in that function,\n\
15861 FILE:FUNCTION, to distinguish among like-named static functions.\n\
15862 *ADDRESS, for the instruction at that address.\n\
15863\n\
15864The breakpoint will stop execution of the inferior whenever it executes\n\
15865an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
15866range (including START-LOCATION and END-LOCATION)."));
15867
e7e0cddf 15868 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
629500fa 15869Set a dynamic printf at specified location.\n\
e7e0cddf 15870dprintf location,format string,arg1,arg2,...\n\
629500fa
KS
15871location may be a linespec, explicit, or address location.\n"
15872"\n" LOCATION_HELP_STRING));
e7e0cddf
SS
15873 set_cmd_completer (c, location_completer);
15874
15875 add_setshow_enum_cmd ("dprintf-style", class_support,
15876 dprintf_style_enums, &dprintf_style, _("\
15877Set the style of usage for dynamic printf."), _("\
15878Show the style of usage for dynamic printf."), _("\
15879This setting chooses how GDB will do a dynamic printf.\n\
15880If the value is \"gdb\", then the printing is done by GDB to its own\n\
15881console, as with the \"printf\" command.\n\
15882If the value is \"call\", the print is done by calling a function in your\n\
15883program; by default printf(), but you can choose a different function or\n\
15884output stream by setting dprintf-function and dprintf-channel."),
15885 update_dprintf_commands, NULL,
15886 &setlist, &showlist);
15887
15888 dprintf_function = xstrdup ("printf");
15889 add_setshow_string_cmd ("dprintf-function", class_support,
15890 &dprintf_function, _("\
590042fc
PW
15891Set the function to use for dynamic printf."), _("\
15892Show the function to use for dynamic printf."), NULL,
e7e0cddf
SS
15893 update_dprintf_commands, NULL,
15894 &setlist, &showlist);
15895
15896 dprintf_channel = xstrdup ("");
15897 add_setshow_string_cmd ("dprintf-channel", class_support,
15898 &dprintf_channel, _("\
590042fc
PW
15899Set the channel to use for dynamic printf."), _("\
15900Show the channel to use for dynamic printf."), NULL,
e7e0cddf
SS
15901 update_dprintf_commands, NULL,
15902 &setlist, &showlist);
15903
d3ce09f5
SS
15904 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
15905 &disconnected_dprintf, _("\
15906Set whether dprintf continues after GDB disconnects."), _("\
15907Show whether dprintf continues after GDB disconnects."), _("\
15908Use this to let dprintf commands continue to hit and produce output\n\
15909even if GDB disconnects or detaches from the target."),
15910 NULL,
15911 NULL,
15912 &setlist, &showlist);
15913
15914 add_com ("agent-printf", class_vars, agent_printf_command, _("\
590042fc
PW
15915Target agent only formatted printing, like the C \"printf\" function.\n\
15916Usage: agent-printf \"format string\", ARG1, ARG2, ARG3, ..., ARGN\n\
15917This supports most C printf format specifications, like %s, %d, etc.\n\
15918This is useful for formatted output in user-defined commands."));
d3ce09f5 15919
491144b5 15920 automatic_hardware_breakpoints = true;
f3b1572e 15921
76727919
TT
15922 gdb::observers::about_to_proceed.attach (breakpoint_about_to_proceed);
15923 gdb::observers::thread_exit.attach (remove_threaded_breakpoints);
c906108c 15924}
This page took 3.49272 seconds and 4 git commands to generate.