]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/breakpoint.c
C++ify program_space
[thirdparty/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
e2882c85 3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
a6d9a66e 21#include "arch-utils.h"
c906108c 22#include <ctype.h>
776592bf 23#include "hashtab.h"
c906108c
SS
24#include "symtab.h"
25#include "frame.h"
26#include "breakpoint.h"
1042e4c0 27#include "tracepoint.h"
c906108c
SS
28#include "gdbtypes.h"
29#include "expression.h"
30#include "gdbcore.h"
31#include "gdbcmd.h"
32#include "value.h"
33#include "command.h"
34#include "inferior.h"
45741a9c 35#include "infrun.h"
c906108c
SS
36#include "gdbthread.h"
37#include "target.h"
38#include "language.h"
50f182aa 39#include "gdb-demangle.h"
0ba1096a 40#include "filenames.h"
c906108c
SS
41#include "annotate.h"
42#include "symfile.h"
43#include "objfiles.h"
0378c332 44#include "source.h"
c5f0f3d0 45#include "linespec.h"
c94fdfd0 46#include "completer.h"
8b93c638 47#include "ui-out.h"
e1507482 48#include "cli/cli-script.h"
fe898f56 49#include "block.h"
a77053c2 50#include "solib.h"
84acb35a
JJ
51#include "solist.h"
52#include "observer.h"
765dc015 53#include "memattr.h"
f7f9143b 54#include "ada-lang.h"
d1aa2f50 55#include "top.h"
79a45b7d 56#include "valprint.h"
4efc6507 57#include "jit.h"
65d79d4b 58#include "parser-defs.h"
55aa24fb
SDJ
59#include "gdb_regex.h"
60#include "probe.h"
e9cafbcc 61#include "cli/cli-utils.h"
be34f849 62#include "continuations.h"
1bfeeb0f
JL
63#include "stack.h"
64#include "skip.h"
b775012e 65#include "ax-gdb.h"
e2e4d78b 66#include "dummy-frame.h"
5589af0e 67#include "interps.h"
d3ce09f5 68#include "format.h"
cfc31633 69#include "thread-fsm.h"
5d5658a1 70#include "tid-parse.h"
d3ce09f5 71
1042e4c0
SS
72/* readline include files */
73#include "readline/readline.h"
74#include "readline/history.h"
75
76/* readline defines this. */
77#undef savestring
78
034dad6f 79#include "mi/mi-common.h"
6dddc817 80#include "extension.h"
325fac50 81#include <algorithm>
5ed8105e 82#include "progspace-and-thread.h"
6c5b2ebe 83#include "common/array-view.h"
76f9c9cf 84#include "common/gdb_optional.h"
104c1213 85
e7e8980f
YQ
86/* Enums for exception-handling support. */
87enum exception_event_kind
88{
89 EX_EVENT_THROW,
591f19e8 90 EX_EVENT_RETHROW,
e7e8980f
YQ
91 EX_EVENT_CATCH
92};
93
4a64f543 94/* Prototypes for local functions. */
c906108c 95
896b6bda 96static void map_breakpoint_numbers (const char *,
48649e1b 97 gdb::function_view<void (breakpoint *)>);
c906108c 98
348d480f
PA
99static void breakpoint_re_set_default (struct breakpoint *);
100
f00aae0f
KS
101static void
102 create_sals_from_location_default (const struct event_location *location,
103 struct linespec_result *canonical,
104 enum bptype type_wanted);
983af33b
SDJ
105
106static void create_breakpoints_sal_default (struct gdbarch *,
107 struct linespec_result *,
e1e01040
PA
108 gdb::unique_xmalloc_ptr<char>,
109 gdb::unique_xmalloc_ptr<char>,
110 enum bptype,
983af33b
SDJ
111 enum bpdisp, int, int,
112 int,
113 const struct breakpoint_ops *,
44f238bb 114 int, int, int, unsigned);
983af33b 115
6c5b2ebe
PA
116static std::vector<symtab_and_line> decode_location_default
117 (struct breakpoint *b, const struct event_location *location,
118 struct program_space *search_pspace);
983af33b 119
a9634178 120static int can_use_hardware_watchpoint (struct value *);
c906108c 121
a14ed312 122static void mention (struct breakpoint *);
c906108c 123
348d480f
PA
124static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
125 enum bptype,
c0a91b2b 126 const struct breakpoint_ops *);
3742cc8b
YQ
127static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
128 const struct symtab_and_line *);
129
4a64f543
MS
130/* This function is used in gdbtk sources and thus can not be made
131 static. */
63c252f8 132struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 133 struct symtab_and_line,
c0a91b2b
TT
134 enum bptype,
135 const struct breakpoint_ops *);
c906108c 136
06edf0c0
PA
137static struct breakpoint *
138 momentary_breakpoint_from_master (struct breakpoint *orig,
139 enum bptype type,
a1aa2221
LM
140 const struct breakpoint_ops *ops,
141 int loc_enabled);
06edf0c0 142
76897487
KB
143static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
144
a6d9a66e
UW
145static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
146 CORE_ADDR bpaddr,
88f7da05 147 enum bptype bptype);
76897487 148
6c95b8df
PA
149static void describe_other_breakpoints (struct gdbarch *,
150 struct program_space *, CORE_ADDR,
5af949e3 151 struct obj_section *, int);
c906108c 152
85d721b8
PA
153static int watchpoint_locations_match (struct bp_location *loc1,
154 struct bp_location *loc2);
155
f1310107 156static int breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 157 const struct address_space *aspace,
f1310107
TJB
158 CORE_ADDR addr);
159
d35ae833 160static int breakpoint_location_address_range_overlap (struct bp_location *,
accd0bcd 161 const address_space *,
d35ae833
PA
162 CORE_ADDR, int);
163
834c0d03 164static int remove_breakpoint (struct bp_location *);
b2b6a7da 165static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
c906108c 166
e514a9d6 167static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 168
a14ed312 169static int hw_breakpoint_used_count (void);
c906108c 170
a1398e0c
PA
171static int hw_watchpoint_use_count (struct breakpoint *);
172
173static int hw_watchpoint_used_count_others (struct breakpoint *except,
174 enum bptype type,
175 int *other_type_used);
c906108c 176
816338b5
SS
177static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
178 int count);
c906108c 179
fe3f5fa8 180static void free_bp_location (struct bp_location *loc);
f431efe5
PA
181static void incref_bp_location (struct bp_location *loc);
182static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 183
39d61571 184static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 185
44702360
PA
186/* update_global_location_list's modes of operation wrt to whether to
187 insert locations now. */
188enum ugll_insert_mode
189{
190 /* Don't insert any breakpoint locations into the inferior, only
191 remove already-inserted locations that no longer should be
192 inserted. Functions that delete a breakpoint or breakpoints
193 should specify this mode, so that deleting a breakpoint doesn't
194 have the side effect of inserting the locations of other
195 breakpoints that are marked not-inserted, but should_be_inserted
196 returns true on them.
197
198 This behavior is useful is situations close to tear-down -- e.g.,
199 after an exec, while the target still has execution, but
200 breakpoint shadows of the previous executable image should *NOT*
201 be restored to the new image; or before detaching, where the
202 target still has execution and wants to delete breakpoints from
203 GDB's lists, and all breakpoints had already been removed from
204 the inferior. */
205 UGLL_DONT_INSERT,
206
a25a5a45
PA
207 /* May insert breakpoints iff breakpoints_should_be_inserted_now
208 claims breakpoints should be inserted now. */
04086b45
PA
209 UGLL_MAY_INSERT,
210
a25a5a45
PA
211 /* Insert locations now, irrespective of
212 breakpoints_should_be_inserted_now. E.g., say all threads are
213 stopped right now, and the user did "continue". We need to
214 insert breakpoints _before_ resuming the target, but
215 UGLL_MAY_INSERT wouldn't insert them, because
216 breakpoints_should_be_inserted_now returns false at that point,
217 as no thread is running yet. */
04086b45 218 UGLL_INSERT
44702360
PA
219};
220
221static void update_global_location_list (enum ugll_insert_mode);
a5606eee 222
44702360 223static void update_global_location_list_nothrow (enum ugll_insert_mode);
74960c60 224
d77f58be 225static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60
VP
226
227static void insert_breakpoint_locations (void);
a5606eee 228
0b39b52e 229static void trace_pass_command (const char *, int);
1042e4c0 230
558a9d82
YQ
231static void set_tracepoint_count (int num);
232
9c06b0b4
TJB
233static int is_masked_watchpoint (const struct breakpoint *b);
234
b775012e
LM
235static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
236
983af33b
SDJ
237/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
238 otherwise. */
239
240static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 241
2060206e
PA
242/* The breakpoint_ops structure to be inherited by all breakpoint_ops
243 that are implemented on top of software or hardware breakpoints
244 (user breakpoints, internal and momentary breakpoints, etc.). */
245static struct breakpoint_ops bkpt_base_breakpoint_ops;
246
247/* Internal breakpoints class type. */
06edf0c0 248static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
249
250/* Momentary breakpoints class type. */
06edf0c0
PA
251static struct breakpoint_ops momentary_breakpoint_ops;
252
2060206e
PA
253/* The breakpoint_ops structure to be used in regular user created
254 breakpoints. */
255struct breakpoint_ops bkpt_breakpoint_ops;
256
55aa24fb
SDJ
257/* Breakpoints set on probes. */
258static struct breakpoint_ops bkpt_probe_breakpoint_ops;
259
e7e0cddf 260/* Dynamic printf class type. */
c5867ab6 261struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 262
d3ce09f5
SS
263/* The style in which to perform a dynamic printf. This is a user
264 option because different output options have different tradeoffs;
265 if GDB does the printing, there is better error handling if there
266 is a problem with any of the arguments, but using an inferior
267 function lets you have special-purpose printers and sending of
268 output to the same place as compiled-in print functions. */
269
270static const char dprintf_style_gdb[] = "gdb";
271static const char dprintf_style_call[] = "call";
272static const char dprintf_style_agent[] = "agent";
273static const char *const dprintf_style_enums[] = {
274 dprintf_style_gdb,
275 dprintf_style_call,
276 dprintf_style_agent,
277 NULL
278};
279static const char *dprintf_style = dprintf_style_gdb;
280
281/* The function to use for dynamic printf if the preferred style is to
282 call into the inferior. The value is simply a string that is
283 copied into the command, so it can be anything that GDB can
284 evaluate to a callable address, not necessarily a function name. */
285
bde6261a 286static char *dprintf_function;
d3ce09f5
SS
287
288/* The channel to use for dynamic printf if the preferred style is to
289 call into the inferior; if a nonempty string, it will be passed to
290 the call as the first argument, with the format string as the
291 second. As with the dprintf function, this can be anything that
292 GDB knows how to evaluate, so in addition to common choices like
293 "stderr", this could be an app-specific expression like
294 "mystreams[curlogger]". */
295
bde6261a 296static char *dprintf_channel;
d3ce09f5
SS
297
298/* True if dprintf commands should continue to operate even if GDB
299 has disconnected. */
300static int disconnected_dprintf = 1;
301
5cea2a26
PA
302struct command_line *
303breakpoint_commands (struct breakpoint *b)
304{
d1b0a7bf 305 return b->commands ? b->commands.get () : NULL;
5cea2a26 306}
3daf8fe5 307
f3b1572e
PA
308/* Flag indicating that a command has proceeded the inferior past the
309 current breakpoint. */
310
311static int breakpoint_proceeded;
312
956a9fb9 313const char *
2cec12e5
AR
314bpdisp_text (enum bpdisp disp)
315{
4a64f543
MS
316 /* NOTE: the following values are a part of MI protocol and
317 represent values of 'disp' field returned when inferior stops at
318 a breakpoint. */
bc043ef3 319 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 320
2cec12e5
AR
321 return bpdisps[(int) disp];
322}
c906108c 323
4a64f543 324/* Prototypes for exported functions. */
c906108c 325/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 326 if such is available. */
c906108c
SS
327static int can_use_hw_watchpoints;
328
920d2a44
AC
329static void
330show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
331 struct cmd_list_element *c,
332 const char *value)
333{
3e43a32a
MS
334 fprintf_filtered (file,
335 _("Debugger's willingness to use "
336 "watchpoint hardware is %s.\n"),
920d2a44
AC
337 value);
338}
339
fa8d40ab
JJ
340/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
341 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 342 for unrecognized breakpoint locations.
fa8d40ab
JJ
343 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
344static enum auto_boolean pending_break_support;
920d2a44
AC
345static void
346show_pending_break_support (struct ui_file *file, int from_tty,
347 struct cmd_list_element *c,
348 const char *value)
349{
3e43a32a
MS
350 fprintf_filtered (file,
351 _("Debugger's behavior regarding "
352 "pending breakpoints is %s.\n"),
920d2a44
AC
353 value);
354}
fa8d40ab 355
765dc015 356/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 357 set with "break" but falling in read-only memory.
765dc015
VP
358 If 0, gdb will warn about such breakpoints, but won't automatically
359 use hardware breakpoints. */
360static int automatic_hardware_breakpoints;
361static void
362show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
363 struct cmd_list_element *c,
364 const char *value)
365{
3e43a32a
MS
366 fprintf_filtered (file,
367 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
368 value);
369}
370
a25a5a45
PA
371/* If on, GDB keeps breakpoints inserted even if the inferior is
372 stopped, and immediately inserts any new breakpoints as soon as
373 they're created. If off (default), GDB keeps breakpoints off of
374 the target as long as possible. That is, it delays inserting
375 breakpoints until the next resume, and removes them again when the
376 target fully stops. This is a bit safer in case GDB crashes while
377 processing user input. */
378static int always_inserted_mode = 0;
72d0e2c5 379
33e5cbd6 380static void
74960c60 381show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 382 struct cmd_list_element *c, const char *value)
74960c60 383{
a25a5a45
PA
384 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
385 value);
74960c60
VP
386}
387
b57bacec
PA
388/* See breakpoint.h. */
389
33e5cbd6 390int
a25a5a45 391breakpoints_should_be_inserted_now (void)
33e5cbd6 392{
a25a5a45
PA
393 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
394 {
395 /* If breakpoints are global, they should be inserted even if no
396 thread under gdb's control is running, or even if there are
397 no threads under GDB's control yet. */
398 return 1;
399 }
400 else if (target_has_execution)
401 {
372316f1
PA
402 struct thread_info *tp;
403
a25a5a45
PA
404 if (always_inserted_mode)
405 {
406 /* The user wants breakpoints inserted even if all threads
407 are stopped. */
408 return 1;
409 }
410
b57bacec
PA
411 if (threads_are_executing ())
412 return 1;
372316f1
PA
413
414 /* Don't remove breakpoints yet if, even though all threads are
415 stopped, we still have events to process. */
416 ALL_NON_EXITED_THREADS (tp)
417 if (tp->resumed
418 && tp->suspend.waitstatus_pending_p)
419 return 1;
a25a5a45
PA
420 }
421 return 0;
33e5cbd6 422}
765dc015 423
b775012e
LM
424static const char condition_evaluation_both[] = "host or target";
425
426/* Modes for breakpoint condition evaluation. */
427static const char condition_evaluation_auto[] = "auto";
428static const char condition_evaluation_host[] = "host";
429static const char condition_evaluation_target[] = "target";
430static const char *const condition_evaluation_enums[] = {
431 condition_evaluation_auto,
432 condition_evaluation_host,
433 condition_evaluation_target,
434 NULL
435};
436
437/* Global that holds the current mode for breakpoint condition evaluation. */
438static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
439
440/* Global that we use to display information to the user (gets its value from
441 condition_evaluation_mode_1. */
442static const char *condition_evaluation_mode = condition_evaluation_auto;
443
444/* Translate a condition evaluation mode MODE into either "host"
445 or "target". This is used mostly to translate from "auto" to the
446 real setting that is being used. It returns the translated
447 evaluation mode. */
448
449static const char *
450translate_condition_evaluation_mode (const char *mode)
451{
452 if (mode == condition_evaluation_auto)
453 {
454 if (target_supports_evaluation_of_breakpoint_conditions ())
455 return condition_evaluation_target;
456 else
457 return condition_evaluation_host;
458 }
459 else
460 return mode;
461}
462
463/* Discovers what condition_evaluation_auto translates to. */
464
465static const char *
466breakpoint_condition_evaluation_mode (void)
467{
468 return translate_condition_evaluation_mode (condition_evaluation_mode);
469}
470
471/* Return true if GDB should evaluate breakpoint conditions or false
472 otherwise. */
473
474static int
475gdb_evaluates_breakpoint_condition_p (void)
476{
477 const char *mode = breakpoint_condition_evaluation_mode ();
478
479 return (mode == condition_evaluation_host);
480}
481
c906108c
SS
482/* Are we executing breakpoint commands? */
483static int executing_breakpoint_commands;
484
c02f5703
MS
485/* Are overlay event breakpoints enabled? */
486static int overlay_events_enabled;
487
e09342b5
TJB
488/* See description in breakpoint.h. */
489int target_exact_watchpoints = 0;
490
c906108c 491/* Walk the following statement or block through all breakpoints.
e5dd4106 492 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 493 current breakpoint. */
c906108c 494
5c44784c 495#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 496
5c44784c
JM
497#define ALL_BREAKPOINTS_SAFE(B,TMP) \
498 for (B = breakpoint_chain; \
499 B ? (TMP=B->next, 1): 0; \
500 B = TMP)
c906108c 501
4a64f543
MS
502/* Similar iterator for the low-level breakpoints. SAFE variant is
503 not provided so update_global_location_list must not be called
504 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 505
876fa593 506#define ALL_BP_LOCATIONS(B,BP_TMP) \
f5336ca5
PA
507 for (BP_TMP = bp_locations; \
508 BP_TMP < bp_locations + bp_locations_count && (B = *BP_TMP);\
876fa593 509 BP_TMP++)
7cc221ef 510
b775012e
LM
511/* Iterates through locations with address ADDRESS for the currently selected
512 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
513 to where the loop should start from.
514 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
515 appropriate location to start with. */
516
517#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
518 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
519 BP_LOCP_TMP = BP_LOCP_START; \
520 BP_LOCP_START \
f5336ca5 521 && (BP_LOCP_TMP < bp_locations + bp_locations_count \
b775012e
LM
522 && (*BP_LOCP_TMP)->address == ADDRESS); \
523 BP_LOCP_TMP++)
524
1042e4c0
SS
525/* Iterator for tracepoints only. */
526
527#define ALL_TRACEPOINTS(B) \
528 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 529 if (is_tracepoint (B))
1042e4c0 530
7cc221ef 531/* Chains of all breakpoints defined. */
c906108c
SS
532
533struct breakpoint *breakpoint_chain;
534
f5336ca5 535/* Array is sorted by bp_locations_compare - primarily by the ADDRESS. */
876fa593 536
f5336ca5 537static struct bp_location **bp_locations;
876fa593 538
f5336ca5 539/* Number of elements of BP_LOCATIONS. */
876fa593 540
f5336ca5 541static unsigned bp_locations_count;
876fa593 542
4a64f543 543/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
f5336ca5 544 ADDRESS for the current elements of BP_LOCATIONS which get a valid
4a64f543 545 result from bp_location_has_shadow. You can use it for roughly
f5336ca5 546 limiting the subrange of BP_LOCATIONS to scan for shadow bytes for
4a64f543 547 an address you need to read. */
876fa593 548
f5336ca5 549static CORE_ADDR bp_locations_placed_address_before_address_max;
876fa593 550
4a64f543
MS
551/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
552 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
f5336ca5
PA
553 BP_LOCATIONS which get a valid result from bp_location_has_shadow.
554 You can use it for roughly limiting the subrange of BP_LOCATIONS to
4a64f543 555 scan for shadow bytes for an address you need to read. */
876fa593 556
f5336ca5 557static CORE_ADDR bp_locations_shadow_len_after_address_max;
7cc221ef 558
4a64f543 559/* The locations that no longer correspond to any breakpoint, unlinked
f5336ca5
PA
560 from the bp_locations array, but for which a hit may still be
561 reported by a target. */
20874c92
VP
562VEC(bp_location_p) *moribund_locations = NULL;
563
c906108c
SS
564/* Number of last breakpoint made. */
565
95a42b64
TT
566static int breakpoint_count;
567
86b17b60
PA
568/* The value of `breakpoint_count' before the last command that
569 created breakpoints. If the last (break-like) command created more
570 than one breakpoint, then the difference between BREAKPOINT_COUNT
571 and PREV_BREAKPOINT_COUNT is more than one. */
572static int prev_breakpoint_count;
c906108c 573
1042e4c0
SS
574/* Number of last tracepoint made. */
575
95a42b64 576static int tracepoint_count;
1042e4c0 577
6149aea9
PA
578static struct cmd_list_element *breakpoint_set_cmdlist;
579static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 580struct cmd_list_element *save_cmdlist;
6149aea9 581
badd37ce
SDJ
582/* See declaration at breakpoint.h. */
583
584struct breakpoint *
585breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
586 void *user_data)
587{
588 struct breakpoint *b = NULL;
589
590 ALL_BREAKPOINTS (b)
591 {
592 if (func (b, user_data) != 0)
593 break;
594 }
595
596 return b;
597}
598
468d015d
JJ
599/* Return whether a breakpoint is an active enabled breakpoint. */
600static int
601breakpoint_enabled (struct breakpoint *b)
602{
0d381245 603 return (b->enable_state == bp_enabled);
468d015d
JJ
604}
605
c906108c
SS
606/* Set breakpoint count to NUM. */
607
95a42b64 608static void
fba45db2 609set_breakpoint_count (int num)
c906108c 610{
86b17b60 611 prev_breakpoint_count = breakpoint_count;
c906108c 612 breakpoint_count = num;
4fa62494 613 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
614}
615
86b17b60
PA
616/* Used by `start_rbreak_breakpoints' below, to record the current
617 breakpoint count before "rbreak" creates any breakpoint. */
618static int rbreak_start_breakpoint_count;
619
95a42b64
TT
620/* Called at the start an "rbreak" command to record the first
621 breakpoint made. */
86b17b60 622
c80049d3 623scoped_rbreak_breakpoints::scoped_rbreak_breakpoints ()
95a42b64 624{
86b17b60 625 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
626}
627
628/* Called at the end of an "rbreak" command to record the last
629 breakpoint made. */
86b17b60 630
c80049d3 631scoped_rbreak_breakpoints::~scoped_rbreak_breakpoints ()
95a42b64 632{
86b17b60 633 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
634}
635
4a64f543 636/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
637
638void
fba45db2 639clear_breakpoint_hit_counts (void)
c906108c
SS
640{
641 struct breakpoint *b;
642
643 ALL_BREAKPOINTS (b)
644 b->hit_count = 0;
645}
646
c906108c 647\f
48cb2d85
VP
648/* Return the breakpoint with the specified number, or NULL
649 if the number does not refer to an existing breakpoint. */
650
651struct breakpoint *
652get_breakpoint (int num)
653{
654 struct breakpoint *b;
655
656 ALL_BREAKPOINTS (b)
657 if (b->number == num)
658 return b;
659
660 return NULL;
661}
5c44784c 662
c906108c 663\f
adc36818 664
b775012e
LM
665/* Mark locations as "conditions have changed" in case the target supports
666 evaluating conditions on its side. */
667
668static void
669mark_breakpoint_modified (struct breakpoint *b)
670{
671 struct bp_location *loc;
672
673 /* This is only meaningful if the target is
674 evaluating conditions and if the user has
675 opted for condition evaluation on the target's
676 side. */
677 if (gdb_evaluates_breakpoint_condition_p ()
678 || !target_supports_evaluation_of_breakpoint_conditions ())
679 return;
680
681 if (!is_breakpoint (b))
682 return;
683
684 for (loc = b->loc; loc; loc = loc->next)
685 loc->condition_changed = condition_modified;
686}
687
688/* Mark location as "conditions have changed" in case the target supports
689 evaluating conditions on its side. */
690
691static void
692mark_breakpoint_location_modified (struct bp_location *loc)
693{
694 /* This is only meaningful if the target is
695 evaluating conditions and if the user has
696 opted for condition evaluation on the target's
697 side. */
698 if (gdb_evaluates_breakpoint_condition_p ()
699 || !target_supports_evaluation_of_breakpoint_conditions ())
700
701 return;
702
703 if (!is_breakpoint (loc->owner))
704 return;
705
706 loc->condition_changed = condition_modified;
707}
708
709/* Sets the condition-evaluation mode using the static global
710 condition_evaluation_mode. */
711
712static void
eb4c3f4a 713set_condition_evaluation_mode (const char *args, int from_tty,
b775012e
LM
714 struct cmd_list_element *c)
715{
b775012e
LM
716 const char *old_mode, *new_mode;
717
718 if ((condition_evaluation_mode_1 == condition_evaluation_target)
719 && !target_supports_evaluation_of_breakpoint_conditions ())
720 {
721 condition_evaluation_mode_1 = condition_evaluation_mode;
722 warning (_("Target does not support breakpoint condition evaluation.\n"
723 "Using host evaluation mode instead."));
724 return;
725 }
726
727 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
728 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
729
abf1152a
JK
730 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
731 settings was "auto". */
732 condition_evaluation_mode = condition_evaluation_mode_1;
733
b775012e
LM
734 /* Only update the mode if the user picked a different one. */
735 if (new_mode != old_mode)
736 {
737 struct bp_location *loc, **loc_tmp;
738 /* If the user switched to a different evaluation mode, we
739 need to synch the changes with the target as follows:
740
741 "host" -> "target": Send all (valid) conditions to the target.
742 "target" -> "host": Remove all the conditions from the target.
743 */
744
b775012e
LM
745 if (new_mode == condition_evaluation_target)
746 {
747 /* Mark everything modified and synch conditions with the
748 target. */
749 ALL_BP_LOCATIONS (loc, loc_tmp)
750 mark_breakpoint_location_modified (loc);
751 }
752 else
753 {
754 /* Manually mark non-duplicate locations to synch conditions
755 with the target. We do this to remove all the conditions the
756 target knows about. */
757 ALL_BP_LOCATIONS (loc, loc_tmp)
758 if (is_breakpoint (loc->owner) && loc->inserted)
759 loc->needs_update = 1;
760 }
761
762 /* Do the update. */
44702360 763 update_global_location_list (UGLL_MAY_INSERT);
b775012e
LM
764 }
765
766 return;
767}
768
769/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
770 what "auto" is translating to. */
771
772static void
773show_condition_evaluation_mode (struct ui_file *file, int from_tty,
774 struct cmd_list_element *c, const char *value)
775{
776 if (condition_evaluation_mode == condition_evaluation_auto)
777 fprintf_filtered (file,
778 _("Breakpoint condition evaluation "
779 "mode is %s (currently %s).\n"),
780 value,
781 breakpoint_condition_evaluation_mode ());
782 else
783 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
784 value);
785}
786
787/* A comparison function for bp_location AP and BP that is used by
788 bsearch. This comparison function only cares about addresses, unlike
f5336ca5 789 the more general bp_locations_compare function. */
b775012e
LM
790
791static int
f5336ca5 792bp_locations_compare_addrs (const void *ap, const void *bp)
b775012e 793{
9a3c8263
SM
794 const struct bp_location *a = *(const struct bp_location **) ap;
795 const struct bp_location *b = *(const struct bp_location **) bp;
b775012e
LM
796
797 if (a->address == b->address)
798 return 0;
799 else
800 return ((a->address > b->address) - (a->address < b->address));
801}
802
803/* Helper function to skip all bp_locations with addresses
804 less than ADDRESS. It returns the first bp_location that
805 is greater than or equal to ADDRESS. If none is found, just
806 return NULL. */
807
808static struct bp_location **
809get_first_locp_gte_addr (CORE_ADDR address)
810{
811 struct bp_location dummy_loc;
812 struct bp_location *dummy_locp = &dummy_loc;
813 struct bp_location **locp_found = NULL;
814
815 /* Initialize the dummy location's address field. */
b775012e
LM
816 dummy_loc.address = address;
817
818 /* Find a close match to the first location at ADDRESS. */
9a3c8263 819 locp_found = ((struct bp_location **)
f5336ca5 820 bsearch (&dummy_locp, bp_locations, bp_locations_count,
9a3c8263 821 sizeof (struct bp_location **),
f5336ca5 822 bp_locations_compare_addrs));
b775012e
LM
823
824 /* Nothing was found, nothing left to do. */
825 if (locp_found == NULL)
826 return NULL;
827
828 /* We may have found a location that is at ADDRESS but is not the first in the
829 location's list. Go backwards (if possible) and locate the first one. */
f5336ca5 830 while ((locp_found - 1) >= bp_locations
b775012e
LM
831 && (*(locp_found - 1))->address == address)
832 locp_found--;
833
834 return locp_found;
835}
836
adc36818 837void
7a26bd4d 838set_breakpoint_condition (struct breakpoint *b, const char *exp,
adc36818
PM
839 int from_tty)
840{
3a5c3e22
PA
841 xfree (b->cond_string);
842 b->cond_string = NULL;
adc36818 843
3a5c3e22 844 if (is_watchpoint (b))
adc36818 845 {
3a5c3e22
PA
846 struct watchpoint *w = (struct watchpoint *) b;
847
4d01a485 848 w->cond_exp.reset ();
3a5c3e22
PA
849 }
850 else
851 {
852 struct bp_location *loc;
853
854 for (loc = b->loc; loc; loc = loc->next)
855 {
4d01a485 856 loc->cond.reset ();
b775012e
LM
857
858 /* No need to free the condition agent expression
859 bytecode (if we have one). We will handle this
860 when we go through update_global_location_list. */
3a5c3e22 861 }
adc36818 862 }
adc36818
PM
863
864 if (*exp == 0)
865 {
866 if (from_tty)
867 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
868 }
869 else
870 {
bbc13ae3 871 const char *arg = exp;
cc59ec59 872
adc36818
PM
873 /* I don't know if it matters whether this is the string the user
874 typed in or the decompiled expression. */
875 b->cond_string = xstrdup (arg);
876 b->condition_not_parsed = 0;
877
878 if (is_watchpoint (b))
879 {
3a5c3e22
PA
880 struct watchpoint *w = (struct watchpoint *) b;
881
aee1fcdf 882 innermost_block.reset ();
adc36818 883 arg = exp;
1bb9788d 884 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
adc36818
PM
885 if (*arg)
886 error (_("Junk at end of expression"));
aee1fcdf 887 w->cond_exp_valid_block = innermost_block.block ();
adc36818
PM
888 }
889 else
890 {
3a5c3e22
PA
891 struct bp_location *loc;
892
adc36818
PM
893 for (loc = b->loc; loc; loc = loc->next)
894 {
895 arg = exp;
896 loc->cond =
1bb9788d
TT
897 parse_exp_1 (&arg, loc->address,
898 block_for_pc (loc->address), 0);
adc36818
PM
899 if (*arg)
900 error (_("Junk at end of expression"));
901 }
902 }
903 }
b775012e
LM
904 mark_breakpoint_modified (b);
905
8d3788bd 906 observer_notify_breakpoint_modified (b);
adc36818
PM
907}
908
d55637df
TT
909/* Completion for the "condition" command. */
910
eb3ff9a5 911static void
6f937416 912condition_completer (struct cmd_list_element *cmd,
eb3ff9a5 913 completion_tracker &tracker,
6f937416 914 const char *text, const char *word)
d55637df 915{
6f937416 916 const char *space;
d55637df 917
f1735a53
TT
918 text = skip_spaces (text);
919 space = skip_to_space (text);
d55637df
TT
920 if (*space == '\0')
921 {
922 int len;
923 struct breakpoint *b;
d55637df
TT
924
925 if (text[0] == '$')
926 {
927 /* We don't support completion of history indices. */
eb3ff9a5
PA
928 if (!isdigit (text[1]))
929 complete_internalvar (tracker, &text[1]);
930 return;
d55637df
TT
931 }
932
933 /* We're completing the breakpoint number. */
934 len = strlen (text);
935
936 ALL_BREAKPOINTS (b)
58ce7251
SDJ
937 {
938 char number[50];
939
940 xsnprintf (number, sizeof (number), "%d", b->number);
941
942 if (strncmp (number, text, len) == 0)
eb3ff9a5
PA
943 {
944 gdb::unique_xmalloc_ptr<char> copy (xstrdup (number));
945 tracker.add_completion (std::move (copy));
946 }
58ce7251 947 }
d55637df 948
eb3ff9a5 949 return;
d55637df
TT
950 }
951
952 /* We're completing the expression part. */
f1735a53 953 text = skip_spaces (space);
eb3ff9a5 954 expression_completer (cmd, tracker, text, word);
d55637df
TT
955}
956
c906108c
SS
957/* condition N EXP -- set break condition of breakpoint N to EXP. */
958
959static void
0b39b52e 960condition_command (const char *arg, int from_tty)
c906108c 961{
52f0bd74 962 struct breakpoint *b;
0b39b52e 963 const char *p;
52f0bd74 964 int bnum;
c906108c
SS
965
966 if (arg == 0)
e2e0b3e5 967 error_no_arg (_("breakpoint number"));
c906108c
SS
968
969 p = arg;
970 bnum = get_number (&p);
5c44784c 971 if (bnum == 0)
8a3fe4f8 972 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
973
974 ALL_BREAKPOINTS (b)
975 if (b->number == bnum)
2f069f6f 976 {
6dddc817
DE
977 /* Check if this breakpoint has a "stop" method implemented in an
978 extension language. This method and conditions entered into GDB
979 from the CLI are mutually exclusive. */
980 const struct extension_language_defn *extlang
981 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
982
983 if (extlang != NULL)
984 {
985 error (_("Only one stop condition allowed. There is currently"
986 " a %s stop condition defined for this breakpoint."),
987 ext_lang_capitalized_name (extlang));
988 }
2566ad2d 989 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
990
991 if (is_breakpoint (b))
44702360 992 update_global_location_list (UGLL_MAY_INSERT);
b775012e 993
2f069f6f
JB
994 return;
995 }
c906108c 996
8a3fe4f8 997 error (_("No breakpoint number %d."), bnum);
c906108c
SS
998}
999
a7bdde9e
VP
1000/* Check that COMMAND do not contain commands that are suitable
1001 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
1002 Throw if any such commands is found. */
1003
a7bdde9e
VP
1004static void
1005check_no_tracepoint_commands (struct command_line *commands)
1006{
1007 struct command_line *c;
cc59ec59 1008
a7bdde9e
VP
1009 for (c = commands; c; c = c->next)
1010 {
1011 int i;
1012
1013 if (c->control_type == while_stepping_control)
3e43a32a
MS
1014 error (_("The 'while-stepping' command can "
1015 "only be used for tracepoints"));
a7bdde9e
VP
1016
1017 for (i = 0; i < c->body_count; ++i)
1018 check_no_tracepoint_commands ((c->body_list)[i]);
1019
1020 /* Not that command parsing removes leading whitespace and comment
4a64f543 1021 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1022 command directly. */
1023 if (strstr (c->line, "collect ") == c->line)
1024 error (_("The 'collect' command can only be used for tracepoints"));
1025
51661e93
VP
1026 if (strstr (c->line, "teval ") == c->line)
1027 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1028 }
1029}
1030
c1fc2657 1031struct longjmp_breakpoint : public breakpoint
3b0871f4 1032{
c1fc2657 1033 ~longjmp_breakpoint () override;
3b0871f4
SM
1034};
1035
d77f58be
SS
1036/* Encapsulate tests for different types of tracepoints. */
1037
3b0871f4
SM
1038static bool
1039is_tracepoint_type (bptype type)
d9b3f62e
PA
1040{
1041 return (type == bp_tracepoint
1042 || type == bp_fast_tracepoint
1043 || type == bp_static_tracepoint);
1044}
1045
3b0871f4
SM
1046static bool
1047is_longjmp_type (bptype type)
1048{
1049 return type == bp_longjmp || type == bp_exception;
1050}
1051
a7bdde9e 1052int
d77f58be 1053is_tracepoint (const struct breakpoint *b)
a7bdde9e 1054{
d9b3f62e 1055 return is_tracepoint_type (b->type);
a7bdde9e 1056}
d9b3f62e 1057
a5e364af
SM
1058/* Factory function to create an appropriate instance of breakpoint given
1059 TYPE. */
1060
1061static std::unique_ptr<breakpoint>
1062new_breakpoint_from_type (bptype type)
1063{
1064 breakpoint *b;
1065
1066 if (is_tracepoint_type (type))
c1fc2657 1067 b = new tracepoint ();
3b0871f4 1068 else if (is_longjmp_type (type))
c1fc2657 1069 b = new longjmp_breakpoint ();
a5e364af
SM
1070 else
1071 b = new breakpoint ();
1072
1073 return std::unique_ptr<breakpoint> (b);
1074}
1075
e5dd4106 1076/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1077 breakpoint. This function will throw an exception if a problem is
1078 found. */
48cb2d85 1079
95a42b64
TT
1080static void
1081validate_commands_for_breakpoint (struct breakpoint *b,
1082 struct command_line *commands)
48cb2d85 1083{
d77f58be 1084 if (is_tracepoint (b))
a7bdde9e 1085 {
c9a6ce02 1086 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1087 struct command_line *c;
1088 struct command_line *while_stepping = 0;
c9a6ce02
PA
1089
1090 /* Reset the while-stepping step count. The previous commands
1091 might have included a while-stepping action, while the new
1092 ones might not. */
1093 t->step_count = 0;
1094
1095 /* We need to verify that each top-level element of commands is
1096 valid for tracepoints, that there's at most one
1097 while-stepping element, and that the while-stepping's body
1098 has valid tracing commands excluding nested while-stepping.
1099 We also need to validate the tracepoint action line in the
1100 context of the tracepoint --- validate_actionline actually
1101 has side effects, like setting the tracepoint's
1102 while-stepping STEP_COUNT, in addition to checking if the
1103 collect/teval actions parse and make sense in the
1104 tracepoint's context. */
a7bdde9e
VP
1105 for (c = commands; c; c = c->next)
1106 {
a7bdde9e
VP
1107 if (c->control_type == while_stepping_control)
1108 {
1109 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1110 error (_("The 'while-stepping' command "
1111 "cannot be used for fast tracepoint"));
0fb4aa4b 1112 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1113 error (_("The 'while-stepping' command "
1114 "cannot be used for static tracepoint"));
a7bdde9e
VP
1115
1116 if (while_stepping)
3e43a32a
MS
1117 error (_("The 'while-stepping' command "
1118 "can be used only once"));
a7bdde9e
VP
1119 else
1120 while_stepping = c;
1121 }
c9a6ce02
PA
1122
1123 validate_actionline (c->line, b);
a7bdde9e
VP
1124 }
1125 if (while_stepping)
1126 {
1127 struct command_line *c2;
1128
1129 gdb_assert (while_stepping->body_count == 1);
1130 c2 = while_stepping->body_list[0];
1131 for (; c2; c2 = c2->next)
1132 {
a7bdde9e
VP
1133 if (c2->control_type == while_stepping_control)
1134 error (_("The 'while-stepping' command cannot be nested"));
1135 }
1136 }
1137 }
1138 else
1139 {
1140 check_no_tracepoint_commands (commands);
1141 }
95a42b64
TT
1142}
1143
0fb4aa4b
PA
1144/* Return a vector of all the static tracepoints set at ADDR. The
1145 caller is responsible for releasing the vector. */
1146
1147VEC(breakpoint_p) *
1148static_tracepoints_here (CORE_ADDR addr)
1149{
1150 struct breakpoint *b;
1151 VEC(breakpoint_p) *found = 0;
1152 struct bp_location *loc;
1153
1154 ALL_BREAKPOINTS (b)
1155 if (b->type == bp_static_tracepoint)
1156 {
1157 for (loc = b->loc; loc; loc = loc->next)
1158 if (loc->address == addr)
1159 VEC_safe_push(breakpoint_p, found, b);
1160 }
1161
1162 return found;
1163}
1164
95a42b64 1165/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1166 validate that only allowed commands are included. */
95a42b64
TT
1167
1168void
4a64f543 1169breakpoint_set_commands (struct breakpoint *b,
93921405 1170 command_line_up &&commands)
95a42b64 1171{
93921405 1172 validate_commands_for_breakpoint (b, commands.get ());
a7bdde9e 1173
d1b0a7bf 1174 b->commands = std::move (commands);
8d3788bd 1175 observer_notify_breakpoint_modified (b);
48cb2d85
VP
1176}
1177
45a43567
TT
1178/* Set the internal `silent' flag on the breakpoint. Note that this
1179 is not the same as the "silent" that may appear in the breakpoint's
1180 commands. */
1181
1182void
1183breakpoint_set_silent (struct breakpoint *b, int silent)
1184{
1185 int old_silent = b->silent;
1186
1187 b->silent = silent;
1188 if (old_silent != silent)
8d3788bd 1189 observer_notify_breakpoint_modified (b);
45a43567
TT
1190}
1191
1192/* Set the thread for this breakpoint. If THREAD is -1, make the
1193 breakpoint work for any thread. */
1194
1195void
1196breakpoint_set_thread (struct breakpoint *b, int thread)
1197{
1198 int old_thread = b->thread;
1199
1200 b->thread = thread;
1201 if (old_thread != thread)
8d3788bd 1202 observer_notify_breakpoint_modified (b);
45a43567
TT
1203}
1204
1205/* Set the task for this breakpoint. If TASK is 0, make the
1206 breakpoint work for any task. */
1207
1208void
1209breakpoint_set_task (struct breakpoint *b, int task)
1210{
1211 int old_task = b->task;
1212
1213 b->task = task;
1214 if (old_task != task)
8d3788bd 1215 observer_notify_breakpoint_modified (b);
45a43567
TT
1216}
1217
95a42b64
TT
1218void
1219check_tracepoint_command (char *line, void *closure)
a7bdde9e 1220{
9a3c8263 1221 struct breakpoint *b = (struct breakpoint *) closure;
cc59ec59 1222
6f937416 1223 validate_actionline (line, b);
a7bdde9e
VP
1224}
1225
95a42b64 1226static void
896b6bda 1227commands_command_1 (const char *arg, int from_tty,
4a64f543 1228 struct command_line *control)
95a42b64 1229{
d1b0a7bf 1230 counted_command_line cmd;
95a42b64 1231
896b6bda
PA
1232 std::string new_arg;
1233
95a42b64
TT
1234 if (arg == NULL || !*arg)
1235 {
86b17b60 1236 if (breakpoint_count - prev_breakpoint_count > 1)
896b6bda
PA
1237 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1238 breakpoint_count);
95a42b64 1239 else if (breakpoint_count > 0)
896b6bda 1240 new_arg = string_printf ("%d", breakpoint_count);
48649e1b
TT
1241 arg = new_arg.c_str ();
1242 }
1243
1244 map_breakpoint_numbers
1245 (arg, [&] (breakpoint *b)
1246 {
1247 if (cmd == NULL)
1248 {
48649e1b 1249 if (control != NULL)
d1b0a7bf 1250 cmd = copy_command_lines (control->body_list[0]);
48649e1b
TT
1251 else
1252 {
81b1e71c
TT
1253 std::string str
1254 = string_printf (_("Type commands for breakpoint(s) "
1255 "%s, one per line."),
1256 arg);
48649e1b 1257
81b1e71c 1258 cmd = read_command_lines (&str[0],
d1b0a7bf
TT
1259 from_tty, 1,
1260 (is_tracepoint (b)
1261 ? check_tracepoint_command : 0),
1262 b);
48649e1b 1263 }
48649e1b
TT
1264 }
1265
1266 /* If a breakpoint was on the list more than once, we don't need to
1267 do anything. */
1268 if (b->commands != cmd)
1269 {
d1b0a7bf 1270 validate_commands_for_breakpoint (b, cmd.get ());
48649e1b
TT
1271 b->commands = cmd;
1272 observer_notify_breakpoint_modified (b);
1273 }
1274 });
95a42b64
TT
1275}
1276
1277static void
0b39b52e 1278commands_command (const char *arg, int from_tty)
95a42b64
TT
1279{
1280 commands_command_1 (arg, from_tty, NULL);
c906108c 1281}
40c03ae8
EZ
1282
1283/* Like commands_command, but instead of reading the commands from
1284 input stream, takes them from an already parsed command structure.
1285
1286 This is used by cli-script.c to DTRT with breakpoint commands
1287 that are part of if and while bodies. */
1288enum command_control_type
896b6bda 1289commands_from_control_command (const char *arg, struct command_line *cmd)
40c03ae8 1290{
95a42b64
TT
1291 commands_command_1 (arg, 0, cmd);
1292 return simple_control;
40c03ae8 1293}
876fa593
JK
1294
1295/* Return non-zero if BL->TARGET_INFO contains valid information. */
1296
1297static int
1298bp_location_has_shadow (struct bp_location *bl)
1299{
1300 if (bl->loc_type != bp_loc_software_breakpoint)
1301 return 0;
1302 if (!bl->inserted)
1303 return 0;
1304 if (bl->target_info.shadow_len == 0)
e5dd4106 1305 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1306 return 0;
1307 return 1;
1308}
1309
9d497a19
PA
1310/* Update BUF, which is LEN bytes read from the target address
1311 MEMADDR, by replacing a memory breakpoint with its shadowed
1312 contents.
1313
1314 If READBUF is not NULL, this buffer must not overlap with the of
1315 the breakpoint location's shadow_contents buffer. Otherwise, a
1316 failed assertion internal error will be raised. */
1317
1318static void
1319one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1320 const gdb_byte *writebuf_org,
1321 ULONGEST memaddr, LONGEST len,
1322 struct bp_target_info *target_info,
1323 struct gdbarch *gdbarch)
1324{
1325 /* Now do full processing of the found relevant range of elements. */
1326 CORE_ADDR bp_addr = 0;
1327 int bp_size = 0;
1328 int bptoffset = 0;
1329
1330 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1331 current_program_space->aspace, 0))
1332 {
1333 /* The breakpoint is inserted in a different address space. */
1334 return;
1335 }
1336
1337 /* Addresses and length of the part of the breakpoint that
1338 we need to copy. */
1339 bp_addr = target_info->placed_address;
1340 bp_size = target_info->shadow_len;
1341
1342 if (bp_addr + bp_size <= memaddr)
1343 {
1344 /* The breakpoint is entirely before the chunk of memory we are
1345 reading. */
1346 return;
1347 }
1348
1349 if (bp_addr >= memaddr + len)
1350 {
1351 /* The breakpoint is entirely after the chunk of memory we are
1352 reading. */
1353 return;
1354 }
1355
1356 /* Offset within shadow_contents. */
1357 if (bp_addr < memaddr)
1358 {
1359 /* Only copy the second part of the breakpoint. */
1360 bp_size -= memaddr - bp_addr;
1361 bptoffset = memaddr - bp_addr;
1362 bp_addr = memaddr;
1363 }
1364
1365 if (bp_addr + bp_size > memaddr + len)
1366 {
1367 /* Only copy the first part of the breakpoint. */
1368 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1369 }
1370
1371 if (readbuf != NULL)
1372 {
1373 /* Verify that the readbuf buffer does not overlap with the
1374 shadow_contents buffer. */
1375 gdb_assert (target_info->shadow_contents >= readbuf + len
1376 || readbuf >= (target_info->shadow_contents
1377 + target_info->shadow_len));
1378
1379 /* Update the read buffer with this inserted breakpoint's
1380 shadow. */
1381 memcpy (readbuf + bp_addr - memaddr,
1382 target_info->shadow_contents + bptoffset, bp_size);
1383 }
1384 else
1385 {
1386 const unsigned char *bp;
0d5ed153
MR
1387 CORE_ADDR addr = target_info->reqstd_address;
1388 int placed_size;
9d497a19
PA
1389
1390 /* Update the shadow with what we want to write to memory. */
1391 memcpy (target_info->shadow_contents + bptoffset,
1392 writebuf_org + bp_addr - memaddr, bp_size);
1393
1394 /* Determine appropriate breakpoint contents and size for this
1395 address. */
0d5ed153 1396 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
9d497a19
PA
1397
1398 /* Update the final write buffer with this inserted
1399 breakpoint's INSN. */
1400 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1401 }
1402}
1403
8defab1a 1404/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1405 by replacing any memory breakpoints with their shadowed contents.
1406
35c63cd8
JB
1407 If READBUF is not NULL, this buffer must not overlap with any of
1408 the breakpoint location's shadow_contents buffers. Otherwise,
1409 a failed assertion internal error will be raised.
1410
876fa593 1411 The range of shadowed area by each bp_location is:
f5336ca5
PA
1412 bl->address - bp_locations_placed_address_before_address_max
1413 up to bl->address + bp_locations_shadow_len_after_address_max
876fa593
JK
1414 The range we were requested to resolve shadows for is:
1415 memaddr ... memaddr + len
1416 Thus the safe cutoff boundaries for performance optimization are
35df4500 1417 memaddr + len <= (bl->address
f5336ca5 1418 - bp_locations_placed_address_before_address_max)
876fa593 1419 and:
f5336ca5 1420 bl->address + bp_locations_shadow_len_after_address_max <= memaddr */
c906108c 1421
8defab1a 1422void
f0ba3972
PA
1423breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1424 const gdb_byte *writebuf_org,
1425 ULONGEST memaddr, LONGEST len)
c906108c 1426{
4a64f543
MS
1427 /* Left boundary, right boundary and median element of our binary
1428 search. */
876fa593
JK
1429 unsigned bc_l, bc_r, bc;
1430
4a64f543
MS
1431 /* Find BC_L which is a leftmost element which may affect BUF
1432 content. It is safe to report lower value but a failure to
1433 report higher one. */
876fa593
JK
1434
1435 bc_l = 0;
f5336ca5 1436 bc_r = bp_locations_count;
876fa593
JK
1437 while (bc_l + 1 < bc_r)
1438 {
35df4500 1439 struct bp_location *bl;
876fa593
JK
1440
1441 bc = (bc_l + bc_r) / 2;
f5336ca5 1442 bl = bp_locations[bc];
876fa593 1443
4a64f543
MS
1444 /* Check first BL->ADDRESS will not overflow due to the added
1445 constant. Then advance the left boundary only if we are sure
1446 the BC element can in no way affect the BUF content (MEMADDR
1447 to MEMADDR + LEN range).
876fa593 1448
f5336ca5 1449 Use the BP_LOCATIONS_SHADOW_LEN_AFTER_ADDRESS_MAX safety
4a64f543
MS
1450 offset so that we cannot miss a breakpoint with its shadow
1451 range tail still reaching MEMADDR. */
c5aa993b 1452
f5336ca5 1453 if ((bl->address + bp_locations_shadow_len_after_address_max
35df4500 1454 >= bl->address)
f5336ca5 1455 && (bl->address + bp_locations_shadow_len_after_address_max
35df4500 1456 <= memaddr))
876fa593
JK
1457 bc_l = bc;
1458 else
1459 bc_r = bc;
1460 }
1461
128070bb
PA
1462 /* Due to the binary search above, we need to make sure we pick the
1463 first location that's at BC_L's address. E.g., if there are
1464 multiple locations at the same address, BC_L may end up pointing
1465 at a duplicate location, and miss the "master"/"inserted"
1466 location. Say, given locations L1, L2 and L3 at addresses A and
1467 B:
1468
1469 L1@A, L2@A, L3@B, ...
1470
1471 BC_L could end up pointing at location L2, while the "master"
1472 location could be L1. Since the `loc->inserted' flag is only set
1473 on "master" locations, we'd forget to restore the shadow of L1
1474 and L2. */
1475 while (bc_l > 0
f5336ca5 1476 && bp_locations[bc_l]->address == bp_locations[bc_l - 1]->address)
128070bb
PA
1477 bc_l--;
1478
876fa593
JK
1479 /* Now do full processing of the found relevant range of elements. */
1480
f5336ca5 1481 for (bc = bc_l; bc < bp_locations_count; bc++)
c5aa993b 1482 {
f5336ca5 1483 struct bp_location *bl = bp_locations[bc];
876fa593 1484
35df4500
TJB
1485 /* bp_location array has BL->OWNER always non-NULL. */
1486 if (bl->owner->type == bp_none)
8a3fe4f8 1487 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1488 bl->owner->number);
ffce0d52 1489
e5dd4106 1490 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1491 content. */
1492
f5336ca5
PA
1493 if (bl->address >= bp_locations_placed_address_before_address_max
1494 && memaddr + len <= (bl->address
1495 - bp_locations_placed_address_before_address_max))
876fa593
JK
1496 break;
1497
35df4500 1498 if (!bp_location_has_shadow (bl))
c5aa993b 1499 continue;
6c95b8df 1500
9d497a19
PA
1501 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1502 memaddr, len, &bl->target_info, bl->gdbarch);
1503 }
c906108c 1504}
9d497a19 1505
c906108c 1506\f
c5aa993b 1507
b775012e
LM
1508/* Return true if BPT is either a software breakpoint or a hardware
1509 breakpoint. */
1510
1511int
1512is_breakpoint (const struct breakpoint *bpt)
1513{
1514 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1515 || bpt->type == bp_hardware_breakpoint
1516 || bpt->type == bp_dprintf);
b775012e
LM
1517}
1518
60e1c644
PA
1519/* Return true if BPT is of any hardware watchpoint kind. */
1520
a5606eee 1521static int
d77f58be 1522is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1523{
1524 return (bpt->type == bp_hardware_watchpoint
1525 || bpt->type == bp_read_watchpoint
1526 || bpt->type == bp_access_watchpoint);
1527}
7270d8f2 1528
60e1c644
PA
1529/* Return true if BPT is of any watchpoint kind, hardware or
1530 software. */
1531
3a5c3e22 1532int
d77f58be 1533is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1534{
1535 return (is_hardware_watchpoint (bpt)
1536 || bpt->type == bp_watchpoint);
1537}
1538
3a5c3e22
PA
1539/* Returns true if the current thread and its running state are safe
1540 to evaluate or update watchpoint B. Watchpoints on local
1541 expressions need to be evaluated in the context of the thread that
1542 was current when the watchpoint was created, and, that thread needs
1543 to be stopped to be able to select the correct frame context.
1544 Watchpoints on global expressions can be evaluated on any thread,
1545 and in any state. It is presently left to the target allowing
1546 memory accesses when threads are running. */
f6bc2008
PA
1547
1548static int
3a5c3e22 1549watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1550{
c1fc2657 1551 return (b->pspace == current_program_space
d0d8b0c6
JK
1552 && (ptid_equal (b->watchpoint_thread, null_ptid)
1553 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1554 && !is_executing (inferior_ptid))));
f6bc2008
PA
1555}
1556
d0fb5eae
JK
1557/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1558 associated bp_watchpoint_scope breakpoint. */
1559
1560static void
3a5c3e22 1561watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1562{
c1fc2657 1563 if (w->related_breakpoint != w)
d0fb5eae 1564 {
c1fc2657
SM
1565 gdb_assert (w->related_breakpoint->type == bp_watchpoint_scope);
1566 gdb_assert (w->related_breakpoint->related_breakpoint == w);
1567 w->related_breakpoint->disposition = disp_del_at_next_stop;
1568 w->related_breakpoint->related_breakpoint = w->related_breakpoint;
1569 w->related_breakpoint = w;
d0fb5eae 1570 }
c1fc2657 1571 w->disposition = disp_del_at_next_stop;
d0fb5eae
JK
1572}
1573
bb9d5f81
PP
1574/* Extract a bitfield value from value VAL using the bit parameters contained in
1575 watchpoint W. */
1576
1577static struct value *
1578extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1579{
1580 struct value *bit_val;
1581
1582 if (val == NULL)
1583 return NULL;
1584
1585 bit_val = allocate_value (value_type (val));
1586
1587 unpack_value_bitfield (bit_val,
1588 w->val_bitpos,
1589 w->val_bitsize,
1590 value_contents_for_printing (val),
1591 value_offset (val),
1592 val);
1593
1594 return bit_val;
1595}
1596
c6d81124
PA
1597/* Allocate a dummy location and add it to B, which must be a software
1598 watchpoint. This is required because even if a software watchpoint
1599 is not watching any memory, bpstat_stop_status requires a location
1600 to be able to report stops. */
1601
1602static void
1603software_watchpoint_add_no_memory_location (struct breakpoint *b,
1604 struct program_space *pspace)
1605{
1606 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1607
1608 b->loc = allocate_bp_location (b);
1609 b->loc->pspace = pspace;
1610 b->loc->address = -1;
1611 b->loc->length = -1;
1612}
1613
1614/* Returns true if B is a software watchpoint that is not watching any
1615 memory (e.g., "watch $pc"). */
1616
1617static int
1618is_no_memory_software_watchpoint (struct breakpoint *b)
1619{
1620 return (b->type == bp_watchpoint
1621 && b->loc != NULL
1622 && b->loc->next == NULL
1623 && b->loc->address == -1
1624 && b->loc->length == -1);
1625}
1626
567e1b4e
JB
1627/* Assuming that B is a watchpoint:
1628 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1629 - Evaluate expression and store the result in B->val
567e1b4e
JB
1630 - Evaluate the condition if there is one, and store the result
1631 in b->loc->cond.
a5606eee
VP
1632 - Update the list of values that must be watched in B->loc.
1633
4a64f543
MS
1634 If the watchpoint disposition is disp_del_at_next_stop, then do
1635 nothing. If this is local watchpoint that is out of scope, delete
1636 it.
1637
1638 Even with `set breakpoint always-inserted on' the watchpoints are
1639 removed + inserted on each stop here. Normal breakpoints must
1640 never be removed because they might be missed by a running thread
1641 when debugging in non-stop mode. On the other hand, hardware
1642 watchpoints (is_hardware_watchpoint; processed here) are specific
1643 to each LWP since they are stored in each LWP's hardware debug
1644 registers. Therefore, such LWP must be stopped first in order to
1645 be able to modify its hardware watchpoints.
1646
1647 Hardware watchpoints must be reset exactly once after being
1648 presented to the user. It cannot be done sooner, because it would
1649 reset the data used to present the watchpoint hit to the user. And
1650 it must not be done later because it could display the same single
1651 watchpoint hit during multiple GDB stops. Note that the latter is
1652 relevant only to the hardware watchpoint types bp_read_watchpoint
1653 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1654 not user-visible - its hit is suppressed if the memory content has
1655 not changed.
1656
1657 The following constraints influence the location where we can reset
1658 hardware watchpoints:
1659
1660 * target_stopped_by_watchpoint and target_stopped_data_address are
1661 called several times when GDB stops.
1662
1663 [linux]
1664 * Multiple hardware watchpoints can be hit at the same time,
1665 causing GDB to stop. GDB only presents one hardware watchpoint
1666 hit at a time as the reason for stopping, and all the other hits
1667 are presented later, one after the other, each time the user
1668 requests the execution to be resumed. Execution is not resumed
1669 for the threads still having pending hit event stored in
1670 LWP_INFO->STATUS. While the watchpoint is already removed from
1671 the inferior on the first stop the thread hit event is kept being
1672 reported from its cached value by linux_nat_stopped_data_address
1673 until the real thread resume happens after the watchpoint gets
1674 presented and thus its LWP_INFO->STATUS gets reset.
1675
1676 Therefore the hardware watchpoint hit can get safely reset on the
1677 watchpoint removal from inferior. */
a79d3c27 1678
b40ce68a 1679static void
3a5c3e22 1680update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1681{
a5606eee 1682 int within_current_scope;
a5606eee 1683 struct frame_id saved_frame_id;
66076460 1684 int frame_saved;
a5606eee 1685
f6bc2008
PA
1686 /* If this is a local watchpoint, we only want to check if the
1687 watchpoint frame is in scope if the current thread is the thread
1688 that was used to create the watchpoint. */
1689 if (!watchpoint_in_thread_scope (b))
1690 return;
1691
c1fc2657 1692 if (b->disposition == disp_del_at_next_stop)
a5606eee
VP
1693 return;
1694
66076460 1695 frame_saved = 0;
a5606eee
VP
1696
1697 /* Determine if the watchpoint is within scope. */
1698 if (b->exp_valid_block == NULL)
1699 within_current_scope = 1;
1700 else
1701 {
b5db5dfc
UW
1702 struct frame_info *fi = get_current_frame ();
1703 struct gdbarch *frame_arch = get_frame_arch (fi);
1704 CORE_ADDR frame_pc = get_frame_pc (fi);
1705
c9cf6e20
MG
1706 /* If we're at a point where the stack has been destroyed
1707 (e.g. in a function epilogue), unwinding may not work
1708 properly. Do not attempt to recreate locations at this
b5db5dfc 1709 point. See similar comments in watchpoint_check. */
c9cf6e20 1710 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
b5db5dfc 1711 return;
66076460
DJ
1712
1713 /* Save the current frame's ID so we can restore it after
1714 evaluating the watchpoint expression on its own frame. */
1715 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1716 took a frame parameter, so that we didn't have to change the
1717 selected frame. */
1718 frame_saved = 1;
1719 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1720
a5606eee
VP
1721 fi = frame_find_by_id (b->watchpoint_frame);
1722 within_current_scope = (fi != NULL);
1723 if (within_current_scope)
1724 select_frame (fi);
1725 }
1726
b5db5dfc
UW
1727 /* We don't free locations. They are stored in the bp_location array
1728 and update_global_location_list will eventually delete them and
1729 remove breakpoints if needed. */
c1fc2657 1730 b->loc = NULL;
b5db5dfc 1731
a5606eee
VP
1732 if (within_current_scope && reparse)
1733 {
bbc13ae3 1734 const char *s;
d63d0675 1735
4d01a485 1736 b->exp.reset ();
d63d0675 1737 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1738 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1739 /* If the meaning of expression itself changed, the old value is
1740 no longer relevant. We don't want to report a watchpoint hit
1741 to the user when the old value and the new value may actually
1742 be completely different objects. */
1743 value_free (b->val);
fa4727a6
DJ
1744 b->val = NULL;
1745 b->val_valid = 0;
60e1c644
PA
1746
1747 /* Note that unlike with breakpoints, the watchpoint's condition
1748 expression is stored in the breakpoint object, not in the
1749 locations (re)created below. */
c1fc2657 1750 if (b->cond_string != NULL)
60e1c644 1751 {
4d01a485 1752 b->cond_exp.reset ();
60e1c644 1753
c1fc2657 1754 s = b->cond_string;
1bb9788d 1755 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1756 }
a5606eee 1757 }
a5606eee
VP
1758
1759 /* If we failed to parse the expression, for example because
1760 it refers to a global variable in a not-yet-loaded shared library,
1761 don't try to insert watchpoint. We don't automatically delete
1762 such watchpoint, though, since failure to parse expression
1763 is different from out-of-scope watchpoint. */
e8369a73 1764 if (!target_has_execution)
2d134ed3
PA
1765 {
1766 /* Without execution, memory can't change. No use to try and
1767 set watchpoint locations. The watchpoint will be reset when
1768 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1769 if (!can_use_hw_watchpoints)
1770 {
c1fc2657
SM
1771 if (b->ops->works_in_software_mode (b))
1772 b->type = bp_watchpoint;
e8369a73 1773 else
638aa5a1
AB
1774 error (_("Can't set read/access watchpoint when "
1775 "hardware watchpoints are disabled."));
e8369a73 1776 }
2d134ed3
PA
1777 }
1778 else if (within_current_scope && b->exp)
a5606eee 1779 {
0cf6dd15 1780 int pc = 0;
fa4727a6 1781 struct value *val_chain, *v, *result, *next;
2d134ed3 1782 struct program_space *frame_pspace;
a5606eee 1783
4d01a485 1784 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
a5606eee 1785
a5606eee
VP
1786 /* Avoid setting b->val if it's already set. The meaning of
1787 b->val is 'the last value' user saw, and we should update
1788 it only if we reported that last value to user. As it
9c06b0b4
TJB
1789 happens, the code that reports it updates b->val directly.
1790 We don't keep track of the memory value for masked
1791 watchpoints. */
c1fc2657 1792 if (!b->val_valid && !is_masked_watchpoint (b))
fa4727a6 1793 {
bb9d5f81
PP
1794 if (b->val_bitsize != 0)
1795 {
1796 v = extract_bitfield_from_watchpoint_value (b, v);
1797 if (v != NULL)
1798 release_value (v);
1799 }
fa4727a6
DJ
1800 b->val = v;
1801 b->val_valid = 1;
1802 }
a5606eee 1803
2d134ed3
PA
1804 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1805
a5606eee 1806 /* Look at each value on the value chain. */
9fa40276 1807 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1808 {
1809 /* If it's a memory location, and GDB actually needed
1810 its contents to evaluate the expression, then we
fa4727a6
DJ
1811 must watch it. If the first value returned is
1812 still lazy, that means an error occurred reading it;
1813 watch it anyway in case it becomes readable. */
a5606eee 1814 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1815 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1816 {
1817 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1818
a5606eee
VP
1819 /* We only watch structs and arrays if user asked
1820 for it explicitly, never if they just happen to
1821 appear in the middle of some value chain. */
fa4727a6 1822 if (v == result
a5606eee
VP
1823 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1824 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1825 {
1826 CORE_ADDR addr;
f486487f 1827 enum target_hw_bp_type type;
a5606eee 1828 struct bp_location *loc, **tmp;
bb9d5f81
PP
1829 int bitpos = 0, bitsize = 0;
1830
1831 if (value_bitsize (v) != 0)
1832 {
1833 /* Extract the bit parameters out from the bitfield
1834 sub-expression. */
1835 bitpos = value_bitpos (v);
1836 bitsize = value_bitsize (v);
1837 }
1838 else if (v == result && b->val_bitsize != 0)
1839 {
1840 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
1841 lvalue whose bit parameters are saved in the fields
1842 VAL_BITPOS and VAL_BITSIZE. */
1843 bitpos = b->val_bitpos;
1844 bitsize = b->val_bitsize;
1845 }
a5606eee 1846
42ae5230 1847 addr = value_address (v);
bb9d5f81
PP
1848 if (bitsize != 0)
1849 {
1850 /* Skip the bytes that don't contain the bitfield. */
1851 addr += bitpos / 8;
1852 }
1853
a5606eee 1854 type = hw_write;
c1fc2657 1855 if (b->type == bp_read_watchpoint)
a5606eee 1856 type = hw_read;
c1fc2657 1857 else if (b->type == bp_access_watchpoint)
a5606eee 1858 type = hw_access;
3a5c3e22 1859
c1fc2657
SM
1860 loc = allocate_bp_location (b);
1861 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
1862 ;
1863 *tmp = loc;
a6d9a66e 1864 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1865
1866 loc->pspace = frame_pspace;
f17d9474 1867 loc->address = address_significant (loc->gdbarch, addr);
bb9d5f81
PP
1868
1869 if (bitsize != 0)
1870 {
1871 /* Just cover the bytes that make up the bitfield. */
1872 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
1873 }
1874 else
1875 loc->length = TYPE_LENGTH (value_type (v));
1876
a5606eee
VP
1877 loc->watchpoint_type = type;
1878 }
1879 }
9fa40276
TJB
1880 }
1881
1882 /* Change the type of breakpoint between hardware assisted or
1883 an ordinary watchpoint depending on the hardware support
1884 and free hardware slots. REPARSE is set when the inferior
1885 is started. */
a9634178 1886 if (reparse)
9fa40276 1887 {
e09342b5 1888 int reg_cnt;
9fa40276
TJB
1889 enum bp_loc_type loc_type;
1890 struct bp_location *bl;
a5606eee 1891
a9634178 1892 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
1893
1894 if (reg_cnt)
9fa40276
TJB
1895 {
1896 int i, target_resources_ok, other_type_used;
a1398e0c 1897 enum bptype type;
9fa40276 1898
a9634178
TJB
1899 /* Use an exact watchpoint when there's only one memory region to be
1900 watched, and only one debug register is needed to watch it. */
1901 b->exact = target_exact_watchpoints && reg_cnt == 1;
1902
9fa40276 1903 /* We need to determine how many resources are already
e09342b5
TJB
1904 used for all other hardware watchpoints plus this one
1905 to see if we still have enough resources to also fit
a1398e0c
PA
1906 this watchpoint in as well. */
1907
1908 /* If this is a software watchpoint, we try to turn it
1909 to a hardware one -- count resources as if B was of
1910 hardware watchpoint type. */
c1fc2657 1911 type = b->type;
a1398e0c
PA
1912 if (type == bp_watchpoint)
1913 type = bp_hardware_watchpoint;
1914
1915 /* This watchpoint may or may not have been placed on
1916 the list yet at this point (it won't be in the list
1917 if we're trying to create it for the first time,
1918 through watch_command), so always account for it
1919 manually. */
1920
1921 /* Count resources used by all watchpoints except B. */
c1fc2657 1922 i = hw_watchpoint_used_count_others (b, type, &other_type_used);
a1398e0c
PA
1923
1924 /* Add in the resources needed for B. */
c1fc2657 1925 i += hw_watchpoint_use_count (b);
a1398e0c
PA
1926
1927 target_resources_ok
1928 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 1929 if (target_resources_ok <= 0)
a9634178 1930 {
c1fc2657 1931 int sw_mode = b->ops->works_in_software_mode (b);
9c06b0b4
TJB
1932
1933 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
1934 error (_("Target does not support this type of "
1935 "hardware watchpoint."));
9c06b0b4
TJB
1936 else if (target_resources_ok < 0 && !sw_mode)
1937 error (_("There are not enough available hardware "
1938 "resources for this watchpoint."));
a1398e0c
PA
1939
1940 /* Downgrade to software watchpoint. */
c1fc2657 1941 b->type = bp_watchpoint;
a1398e0c
PA
1942 }
1943 else
1944 {
1945 /* If this was a software watchpoint, we've just
1946 found we have enough resources to turn it to a
1947 hardware watchpoint. Otherwise, this is a
1948 nop. */
c1fc2657 1949 b->type = type;
a9634178 1950 }
9fa40276 1951 }
c1fc2657 1952 else if (!b->ops->works_in_software_mode (b))
638aa5a1
AB
1953 {
1954 if (!can_use_hw_watchpoints)
1955 error (_("Can't set read/access watchpoint when "
1956 "hardware watchpoints are disabled."));
1957 else
1958 error (_("Expression cannot be implemented with "
1959 "read/access watchpoint."));
1960 }
9fa40276 1961 else
c1fc2657 1962 b->type = bp_watchpoint;
9fa40276 1963
c1fc2657 1964 loc_type = (b->type == bp_watchpoint? bp_loc_other
9fa40276 1965 : bp_loc_hardware_watchpoint);
c1fc2657 1966 for (bl = b->loc; bl; bl = bl->next)
9fa40276
TJB
1967 bl->loc_type = loc_type;
1968 }
1969
1970 for (v = val_chain; v; v = next)
1971 {
a5606eee
VP
1972 next = value_next (v);
1973 if (v != b->val)
1974 value_free (v);
1975 }
1976
c7437ca6
PA
1977 /* If a software watchpoint is not watching any memory, then the
1978 above left it without any location set up. But,
1979 bpstat_stop_status requires a location to be able to report
1980 stops, so make sure there's at least a dummy one. */
c1fc2657
SM
1981 if (b->type == bp_watchpoint && b->loc == NULL)
1982 software_watchpoint_add_no_memory_location (b, frame_pspace);
a5606eee
VP
1983 }
1984 else if (!within_current_scope)
7270d8f2 1985 {
ac74f770
MS
1986 printf_filtered (_("\
1987Watchpoint %d deleted because the program has left the block\n\
1988in which its expression is valid.\n"),
c1fc2657 1989 b->number);
d0fb5eae 1990 watchpoint_del_at_next_stop (b);
7270d8f2 1991 }
a5606eee
VP
1992
1993 /* Restore the selected frame. */
66076460
DJ
1994 if (frame_saved)
1995 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1996}
1997
a5606eee 1998
74960c60 1999/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
2000 inserted in the inferior. We don't differentiate the type of BL's owner
2001 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2002 breakpoint_ops is not defined, because in insert_bp_location,
2003 tracepoint's insert_location will not be called. */
74960c60 2004static int
35df4500 2005should_be_inserted (struct bp_location *bl)
74960c60 2006{
35df4500 2007 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
2008 return 0;
2009
35df4500 2010 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
2011 return 0;
2012
35df4500 2013 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
2014 return 0;
2015
f8eba3c6
TT
2016 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2017 return 0;
2018
56710373
PA
2019 /* This is set for example, when we're attached to the parent of a
2020 vfork, and have detached from the child. The child is running
2021 free, and we expect it to do an exec or exit, at which point the
2022 OS makes the parent schedulable again (and the target reports
2023 that the vfork is done). Until the child is done with the shared
2024 memory region, do not insert breakpoints in the parent, otherwise
2025 the child could still trip on the parent's breakpoints. Since
2026 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2027 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2028 return 0;
2029
31e77af2 2030 /* Don't insert a breakpoint if we're trying to step past its
21edc42f
YQ
2031 location, except if the breakpoint is a single-step breakpoint,
2032 and the breakpoint's thread is the thread which is stepping past
2033 a breakpoint. */
31e77af2
PA
2034 if ((bl->loc_type == bp_loc_software_breakpoint
2035 || bl->loc_type == bp_loc_hardware_breakpoint)
2036 && stepping_past_instruction_at (bl->pspace->aspace,
21edc42f
YQ
2037 bl->address)
2038 /* The single-step breakpoint may be inserted at the location
2039 we're trying to step if the instruction branches to itself.
2040 However, the instruction won't be executed at all and it may
2041 break the semantics of the instruction, for example, the
2042 instruction is a conditional branch or updates some flags.
2043 We can't fix it unless GDB is able to emulate the instruction
2044 or switch to displaced stepping. */
2045 && !(bl->owner->type == bp_single_step
2046 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
e558d7c1
PA
2047 {
2048 if (debug_infrun)
2049 {
2050 fprintf_unfiltered (gdb_stdlog,
2051 "infrun: skipping breakpoint: "
2052 "stepping past insn at: %s\n",
2053 paddress (bl->gdbarch, bl->address));
2054 }
2055 return 0;
2056 }
31e77af2 2057
963f9c80
PA
2058 /* Don't insert watchpoints if we're trying to step past the
2059 instruction that triggered one. */
2060 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2061 && stepping_past_nonsteppable_watchpoint ())
2062 {
2063 if (debug_infrun)
2064 {
2065 fprintf_unfiltered (gdb_stdlog,
2066 "infrun: stepping past non-steppable watchpoint. "
2067 "skipping watchpoint at %s:%d\n",
2068 paddress (bl->gdbarch, bl->address),
2069 bl->length);
2070 }
2071 return 0;
2072 }
2073
74960c60
VP
2074 return 1;
2075}
2076
934709f0
PW
2077/* Same as should_be_inserted but does the check assuming
2078 that the location is not duplicated. */
2079
2080static int
2081unduplicated_should_be_inserted (struct bp_location *bl)
2082{
2083 int result;
2084 const int save_duplicate = bl->duplicate;
2085
2086 bl->duplicate = 0;
2087 result = should_be_inserted (bl);
2088 bl->duplicate = save_duplicate;
2089 return result;
2090}
2091
b775012e
LM
2092/* Parses a conditional described by an expression COND into an
2093 agent expression bytecode suitable for evaluation
2094 by the bytecode interpreter. Return NULL if there was
2095 any error during parsing. */
2096
833177a4 2097static agent_expr_up
b775012e
LM
2098parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2099{
833177a4 2100 if (cond == NULL)
b775012e
LM
2101 return NULL;
2102
833177a4
PA
2103 agent_expr_up aexpr;
2104
b775012e
LM
2105 /* We don't want to stop processing, so catch any errors
2106 that may show up. */
492d29ea 2107 TRY
b775012e 2108 {
036e657b 2109 aexpr = gen_eval_for_expr (scope, cond);
b775012e
LM
2110 }
2111
492d29ea 2112 CATCH (ex, RETURN_MASK_ERROR)
b775012e
LM
2113 {
2114 /* If we got here, it means the condition could not be parsed to a valid
2115 bytecode expression and thus can't be evaluated on the target's side.
2116 It's no use iterating through the conditions. */
b775012e 2117 }
492d29ea 2118 END_CATCH
b775012e
LM
2119
2120 /* We have a valid agent expression. */
2121 return aexpr;
2122}
2123
2124/* Based on location BL, create a list of breakpoint conditions to be
2125 passed on to the target. If we have duplicated locations with different
2126 conditions, we will add such conditions to the list. The idea is that the
2127 target will evaluate the list of conditions and will only notify GDB when
2128 one of them is true. */
2129
2130static void
2131build_target_condition_list (struct bp_location *bl)
2132{
2133 struct bp_location **locp = NULL, **loc2p;
2134 int null_condition_or_parse_error = 0;
2135 int modified = bl->needs_update;
2136 struct bp_location *loc;
2137
8b4f3082 2138 /* Release conditions left over from a previous insert. */
3cde5c42 2139 bl->target_info.conditions.clear ();
8b4f3082 2140
b775012e
LM
2141 /* This is only meaningful if the target is
2142 evaluating conditions and if the user has
2143 opted for condition evaluation on the target's
2144 side. */
2145 if (gdb_evaluates_breakpoint_condition_p ()
2146 || !target_supports_evaluation_of_breakpoint_conditions ())
2147 return;
2148
2149 /* Do a first pass to check for locations with no assigned
2150 conditions or conditions that fail to parse to a valid agent expression
2151 bytecode. If any of these happen, then it's no use to send conditions
2152 to the target since this location will always trigger and generate a
2153 response back to GDB. */
2154 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2155 {
2156 loc = (*loc2p);
2157 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2158 {
2159 if (modified)
2160 {
b775012e
LM
2161 /* Re-parse the conditions since something changed. In that
2162 case we already freed the condition bytecodes (see
2163 force_breakpoint_reinsertion). We just
2164 need to parse the condition to bytecodes again. */
833177a4
PA
2165 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2166 loc->cond.get ());
b775012e
LM
2167 }
2168
2169 /* If we have a NULL bytecode expression, it means something
2170 went wrong or we have a null condition expression. */
2171 if (!loc->cond_bytecode)
2172 {
2173 null_condition_or_parse_error = 1;
2174 break;
2175 }
2176 }
2177 }
2178
2179 /* If any of these happened, it means we will have to evaluate the conditions
2180 for the location's address on gdb's side. It is no use keeping bytecodes
2181 for all the other duplicate locations, thus we free all of them here.
2182
2183 This is so we have a finer control over which locations' conditions are
2184 being evaluated by GDB or the remote stub. */
2185 if (null_condition_or_parse_error)
2186 {
2187 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2188 {
2189 loc = (*loc2p);
2190 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2191 {
2192 /* Only go as far as the first NULL bytecode is
2193 located. */
2194 if (!loc->cond_bytecode)
2195 return;
2196
833177a4 2197 loc->cond_bytecode.reset ();
b775012e
LM
2198 }
2199 }
2200 }
2201
2202 /* No NULL conditions or failed bytecode generation. Build a condition list
2203 for this location's address. */
2204 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2205 {
2206 loc = (*loc2p);
2207 if (loc->cond
2208 && is_breakpoint (loc->owner)
2209 && loc->pspace->num == bl->pspace->num
2210 && loc->owner->enable_state == bp_enabled
2211 && loc->enabled)
3cde5c42
PA
2212 {
2213 /* Add the condition to the vector. This will be used later
2214 to send the conditions to the target. */
2215 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2216 }
b775012e
LM
2217 }
2218
2219 return;
2220}
2221
d3ce09f5
SS
2222/* Parses a command described by string CMD into an agent expression
2223 bytecode suitable for evaluation by the bytecode interpreter.
2224 Return NULL if there was any error during parsing. */
2225
833177a4 2226static agent_expr_up
d3ce09f5
SS
2227parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2228{
bbc13ae3
KS
2229 const char *cmdrest;
2230 const char *format_start, *format_end;
d3ce09f5
SS
2231 struct gdbarch *gdbarch = get_current_arch ();
2232
833177a4 2233 if (cmd == NULL)
d3ce09f5
SS
2234 return NULL;
2235
2236 cmdrest = cmd;
2237
2238 if (*cmdrest == ',')
2239 ++cmdrest;
f1735a53 2240 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2241
2242 if (*cmdrest++ != '"')
2243 error (_("No format string following the location"));
2244
2245 format_start = cmdrest;
2246
8e481c3b 2247 format_pieces fpieces (&cmdrest);
d3ce09f5
SS
2248
2249 format_end = cmdrest;
2250
2251 if (*cmdrest++ != '"')
2252 error (_("Bad format string, non-terminated '\"'."));
2253
f1735a53 2254 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2255
2256 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2257 error (_("Invalid argument syntax"));
2258
2259 if (*cmdrest == ',')
2260 cmdrest++;
f1735a53 2261 cmdrest = skip_spaces (cmdrest);
d3ce09f5
SS
2262
2263 /* For each argument, make an expression. */
2264
8e481c3b 2265 std::vector<struct expression *> argvec;
d3ce09f5
SS
2266 while (*cmdrest != '\0')
2267 {
bbc13ae3 2268 const char *cmd1;
d3ce09f5
SS
2269
2270 cmd1 = cmdrest;
4d01a485 2271 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
8e481c3b 2272 argvec.push_back (expr.release ());
d3ce09f5
SS
2273 cmdrest = cmd1;
2274 if (*cmdrest == ',')
2275 ++cmdrest;
2276 }
2277
833177a4
PA
2278 agent_expr_up aexpr;
2279
d3ce09f5
SS
2280 /* We don't want to stop processing, so catch any errors
2281 that may show up. */
492d29ea 2282 TRY
d3ce09f5 2283 {
036e657b
JB
2284 aexpr = gen_printf (scope, gdbarch, 0, 0,
2285 format_start, format_end - format_start,
8e481c3b 2286 argvec.size (), argvec.data ());
d3ce09f5 2287 }
492d29ea 2288 CATCH (ex, RETURN_MASK_ERROR)
d3ce09f5
SS
2289 {
2290 /* If we got here, it means the command could not be parsed to a valid
2291 bytecode expression and thus can't be evaluated on the target's side.
2292 It's no use iterating through the other commands. */
d3ce09f5 2293 }
492d29ea
PA
2294 END_CATCH
2295
d3ce09f5
SS
2296 /* We have a valid agent expression, return it. */
2297 return aexpr;
2298}
2299
2300/* Based on location BL, create a list of breakpoint commands to be
2301 passed on to the target. If we have duplicated locations with
2302 different commands, we will add any such to the list. */
2303
2304static void
2305build_target_command_list (struct bp_location *bl)
2306{
2307 struct bp_location **locp = NULL, **loc2p;
2308 int null_command_or_parse_error = 0;
2309 int modified = bl->needs_update;
2310 struct bp_location *loc;
2311
3cde5c42
PA
2312 /* Clear commands left over from a previous insert. */
2313 bl->target_info.tcommands.clear ();
8b4f3082 2314
41fac0cf 2315 if (!target_can_run_breakpoint_commands ())
d3ce09f5
SS
2316 return;
2317
41fac0cf
PA
2318 /* For now, limit to agent-style dprintf breakpoints. */
2319 if (dprintf_style != dprintf_style_agent)
d3ce09f5
SS
2320 return;
2321
41fac0cf
PA
2322 /* For now, if we have any duplicate location that isn't a dprintf,
2323 don't install the target-side commands, as that would make the
2324 breakpoint not be reported to the core, and we'd lose
2325 control. */
2326 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2327 {
2328 loc = (*loc2p);
2329 if (is_breakpoint (loc->owner)
2330 && loc->pspace->num == bl->pspace->num
2331 && loc->owner->type != bp_dprintf)
2332 return;
2333 }
2334
d3ce09f5
SS
2335 /* Do a first pass to check for locations with no assigned
2336 conditions or conditions that fail to parse to a valid agent expression
2337 bytecode. If any of these happen, then it's no use to send conditions
2338 to the target since this location will always trigger and generate a
2339 response back to GDB. */
2340 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2341 {
2342 loc = (*loc2p);
2343 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2344 {
2345 if (modified)
2346 {
d3ce09f5
SS
2347 /* Re-parse the commands since something changed. In that
2348 case we already freed the command bytecodes (see
2349 force_breakpoint_reinsertion). We just
2350 need to parse the command to bytecodes again. */
833177a4
PA
2351 loc->cmd_bytecode
2352 = parse_cmd_to_aexpr (bl->address,
2353 loc->owner->extra_string);
d3ce09f5
SS
2354 }
2355
2356 /* If we have a NULL bytecode expression, it means something
2357 went wrong or we have a null command expression. */
2358 if (!loc->cmd_bytecode)
2359 {
2360 null_command_or_parse_error = 1;
2361 break;
2362 }
2363 }
2364 }
2365
2366 /* If anything failed, then we're not doing target-side commands,
2367 and so clean up. */
2368 if (null_command_or_parse_error)
2369 {
2370 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2371 {
2372 loc = (*loc2p);
2373 if (is_breakpoint (loc->owner)
2374 && loc->pspace->num == bl->pspace->num)
2375 {
2376 /* Only go as far as the first NULL bytecode is
2377 located. */
40fb6c5e 2378 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2379 return;
2380
833177a4 2381 loc->cmd_bytecode.reset ();
d3ce09f5
SS
2382 }
2383 }
2384 }
2385
2386 /* No NULL commands or failed bytecode generation. Build a command list
2387 for this location's address. */
2388 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2389 {
2390 loc = (*loc2p);
2391 if (loc->owner->extra_string
2392 && is_breakpoint (loc->owner)
2393 && loc->pspace->num == bl->pspace->num
2394 && loc->owner->enable_state == bp_enabled
2395 && loc->enabled)
3cde5c42
PA
2396 {
2397 /* Add the command to the vector. This will be used later
2398 to send the commands to the target. */
2399 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2400 }
d3ce09f5
SS
2401 }
2402
2403 bl->target_info.persist = 0;
2404 /* Maybe flag this location as persistent. */
2405 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2406 bl->target_info.persist = 1;
2407}
2408
833b7ab5
YQ
2409/* Return the kind of breakpoint on address *ADDR. Get the kind
2410 of breakpoint according to ADDR except single-step breakpoint.
2411 Get the kind of single-step breakpoint according to the current
2412 registers state. */
cd6c3b4f
YQ
2413
2414static int
2415breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2416{
833b7ab5
YQ
2417 if (bl->owner->type == bp_single_step)
2418 {
2419 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2420 struct regcache *regcache;
2421
2422 regcache = get_thread_regcache (thr->ptid);
2423
2424 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2425 regcache, addr);
2426 }
2427 else
2428 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
cd6c3b4f
YQ
2429}
2430
35df4500
TJB
2431/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2432 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2433 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2434 Returns 0 for success, 1 if the bp_location type is not supported or
2435 -1 for failure.
879bfdc2 2436
4a64f543
MS
2437 NOTE drow/2003-09-09: This routine could be broken down to an
2438 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2439static int
35df4500 2440insert_bp_location (struct bp_location *bl,
26bb91f3 2441 struct ui_file *tmp_error_stream,
3fbb6ffa 2442 int *disabled_breaks,
dd61ec5c
MW
2443 int *hw_breakpoint_error,
2444 int *hw_bp_error_explained_already)
879bfdc2 2445{
688fca4f 2446 gdb_exception bp_excpt = exception_none;
879bfdc2 2447
b775012e 2448 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2449 return 0;
2450
35c63cd8
JB
2451 /* Note we don't initialize bl->target_info, as that wipes out
2452 the breakpoint location's shadow_contents if the breakpoint
2453 is still inserted at that location. This in turn breaks
2454 target_read_memory which depends on these buffers when
2455 a memory read is requested at the breakpoint location:
2456 Once the target_info has been wiped, we fail to see that
2457 we have a breakpoint inserted at that address and thus
2458 read the breakpoint instead of returning the data saved in
2459 the breakpoint location's shadow contents. */
0d5ed153 2460 bl->target_info.reqstd_address = bl->address;
35df4500 2461 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2462 bl->target_info.length = bl->length;
8181d85f 2463
b775012e
LM
2464 /* When working with target-side conditions, we must pass all the conditions
2465 for the same breakpoint address down to the target since GDB will not
2466 insert those locations. With a list of breakpoint conditions, the target
2467 can decide when to stop and notify GDB. */
2468
2469 if (is_breakpoint (bl->owner))
2470 {
2471 build_target_condition_list (bl);
d3ce09f5
SS
2472 build_target_command_list (bl);
2473 /* Reset the modification marker. */
b775012e
LM
2474 bl->needs_update = 0;
2475 }
2476
35df4500
TJB
2477 if (bl->loc_type == bp_loc_software_breakpoint
2478 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2479 {
35df4500 2480 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2481 {
2482 /* If the explicitly specified breakpoint type
2483 is not hardware breakpoint, check the memory map to see
2484 if the breakpoint address is in read only memory or not.
4a64f543 2485
765dc015
VP
2486 Two important cases are:
2487 - location type is not hardware breakpoint, memory
2488 is readonly. We change the type of the location to
2489 hardware breakpoint.
4a64f543
MS
2490 - location type is hardware breakpoint, memory is
2491 read-write. This means we've previously made the
2492 location hardware one, but then the memory map changed,
2493 so we undo.
765dc015 2494
4a64f543
MS
2495 When breakpoints are removed, remove_breakpoints will use
2496 location types we've just set here, the only possible
2497 problem is that memory map has changed during running
2498 program, but it's not going to work anyway with current
2499 gdb. */
765dc015 2500 struct mem_region *mr
0d5ed153 2501 = lookup_mem_region (bl->target_info.reqstd_address);
765dc015
VP
2502
2503 if (mr)
2504 {
2505 if (automatic_hardware_breakpoints)
2506 {
765dc015
VP
2507 enum bp_loc_type new_type;
2508
2509 if (mr->attrib.mode != MEM_RW)
2510 new_type = bp_loc_hardware_breakpoint;
2511 else
2512 new_type = bp_loc_software_breakpoint;
2513
35df4500 2514 if (new_type != bl->loc_type)
765dc015
VP
2515 {
2516 static int said = 0;
cc59ec59 2517
35df4500 2518 bl->loc_type = new_type;
765dc015
VP
2519 if (!said)
2520 {
3e43a32a
MS
2521 fprintf_filtered (gdb_stdout,
2522 _("Note: automatically using "
2523 "hardware breakpoints for "
2524 "read-only addresses.\n"));
765dc015
VP
2525 said = 1;
2526 }
2527 }
2528 }
35df4500 2529 else if (bl->loc_type == bp_loc_software_breakpoint
0fec99e8
PA
2530 && mr->attrib.mode != MEM_RW)
2531 {
2532 fprintf_unfiltered (tmp_error_stream,
2533 _("Cannot insert breakpoint %d.\n"
2534 "Cannot set software breakpoint "
2535 "at read-only address %s\n"),
2536 bl->owner->number,
2537 paddress (bl->gdbarch, bl->address));
2538 return 1;
2539 }
765dc015
VP
2540 }
2541 }
2542
879bfdc2
DJ
2543 /* First check to see if we have to handle an overlay. */
2544 if (overlay_debugging == ovly_off
35df4500
TJB
2545 || bl->section == NULL
2546 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2547 {
2548 /* No overlay handling: just set the breakpoint. */
492d29ea 2549 TRY
dd61ec5c 2550 {
0000e5cc
PA
2551 int val;
2552
dd61ec5c 2553 val = bl->owner->ops->insert_location (bl);
0000e5cc 2554 if (val)
688fca4f 2555 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2556 }
492d29ea 2557 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2558 {
688fca4f 2559 bp_excpt = e;
dd61ec5c 2560 }
492d29ea 2561 END_CATCH
879bfdc2
DJ
2562 }
2563 else
2564 {
4a64f543 2565 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2566 Shall we set a breakpoint at the LMA? */
2567 if (!overlay_events_enabled)
2568 {
2569 /* Yes -- overlay event support is not active,
2570 so we must try to set a breakpoint at the LMA.
2571 This will not work for a hardware breakpoint. */
35df4500 2572 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2573 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2574 bl->owner->number);
879bfdc2
DJ
2575 else
2576 {
35df4500
TJB
2577 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2578 bl->section);
879bfdc2 2579 /* Set a software (trap) breakpoint at the LMA. */
35df4500 2580 bl->overlay_target_info = bl->target_info;
0d5ed153 2581 bl->overlay_target_info.reqstd_address = addr;
0000e5cc
PA
2582
2583 /* No overlay handling: just set the breakpoint. */
492d29ea 2584 TRY
0000e5cc
PA
2585 {
2586 int val;
2587
579c6ad9 2588 bl->overlay_target_info.kind
cd6c3b4f
YQ
2589 = breakpoint_kind (bl, &addr);
2590 bl->overlay_target_info.placed_address = addr;
0000e5cc
PA
2591 val = target_insert_breakpoint (bl->gdbarch,
2592 &bl->overlay_target_info);
2593 if (val)
688fca4f
PA
2594 bp_excpt
2595 = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
0000e5cc 2596 }
492d29ea 2597 CATCH (e, RETURN_MASK_ALL)
0000e5cc 2598 {
688fca4f 2599 bp_excpt = e;
0000e5cc 2600 }
492d29ea 2601 END_CATCH
0000e5cc 2602
688fca4f 2603 if (bp_excpt.reason != 0)
99361f52 2604 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2605 "Overlay breakpoint %d "
2606 "failed: in ROM?\n",
35df4500 2607 bl->owner->number);
879bfdc2
DJ
2608 }
2609 }
2610 /* Shall we set a breakpoint at the VMA? */
35df4500 2611 if (section_is_mapped (bl->section))
879bfdc2
DJ
2612 {
2613 /* Yes. This overlay section is mapped into memory. */
492d29ea 2614 TRY
dd61ec5c 2615 {
0000e5cc
PA
2616 int val;
2617
dd61ec5c 2618 val = bl->owner->ops->insert_location (bl);
0000e5cc 2619 if (val)
688fca4f 2620 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
dd61ec5c 2621 }
492d29ea 2622 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2623 {
688fca4f 2624 bp_excpt = e;
dd61ec5c 2625 }
492d29ea 2626 END_CATCH
879bfdc2
DJ
2627 }
2628 else
2629 {
2630 /* No. This breakpoint will not be inserted.
2631 No error, but do not mark the bp as 'inserted'. */
2632 return 0;
2633 }
2634 }
2635
688fca4f 2636 if (bp_excpt.reason != 0)
879bfdc2
DJ
2637 {
2638 /* Can't set the breakpoint. */
0000e5cc
PA
2639
2640 /* In some cases, we might not be able to insert a
2641 breakpoint in a shared library that has already been
2642 removed, but we have not yet processed the shlib unload
2643 event. Unfortunately, some targets that implement
076855f9
PA
2644 breakpoint insertion themselves can't tell why the
2645 breakpoint insertion failed (e.g., the remote target
2646 doesn't define error codes), so we must treat generic
2647 errors as memory errors. */
688fca4f
PA
2648 if (bp_excpt.reason == RETURN_ERROR
2649 && (bp_excpt.error == GENERIC_ERROR
2650 || bp_excpt.error == MEMORY_ERROR)
076855f9 2651 && bl->loc_type == bp_loc_software_breakpoint
08351840 2652 && (solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
2653 || shared_objfile_contains_address_p (bl->pspace,
2654 bl->address)))
879bfdc2 2655 {
4a64f543 2656 /* See also: disable_breakpoints_in_shlibs. */
35df4500 2657 bl->shlib_disabled = 1;
8d3788bd 2658 observer_notify_breakpoint_modified (bl->owner);
3fbb6ffa
TJB
2659 if (!*disabled_breaks)
2660 {
2661 fprintf_unfiltered (tmp_error_stream,
2662 "Cannot insert breakpoint %d.\n",
2663 bl->owner->number);
2664 fprintf_unfiltered (tmp_error_stream,
2665 "Temporarily disabling shared "
2666 "library breakpoints:\n");
2667 }
2668 *disabled_breaks = 1;
879bfdc2 2669 fprintf_unfiltered (tmp_error_stream,
35df4500 2670 "breakpoint #%d\n", bl->owner->number);
0000e5cc 2671 return 0;
879bfdc2
DJ
2672 }
2673 else
879bfdc2 2674 {
35df4500 2675 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2676 {
0000e5cc 2677 *hw_breakpoint_error = 1;
688fca4f 2678 *hw_bp_error_explained_already = bp_excpt.message != NULL;
dd61ec5c
MW
2679 fprintf_unfiltered (tmp_error_stream,
2680 "Cannot insert hardware breakpoint %d%s",
688fca4f
PA
2681 bl->owner->number,
2682 bp_excpt.message ? ":" : ".\n");
2683 if (bp_excpt.message != NULL)
2684 fprintf_unfiltered (tmp_error_stream, "%s.\n",
2685 bp_excpt.message);
879bfdc2
DJ
2686 }
2687 else
2688 {
688fca4f 2689 if (bp_excpt.message == NULL)
0000e5cc 2690 {
1ccbe998 2691 std::string message
0000e5cc
PA
2692 = memory_error_message (TARGET_XFER_E_IO,
2693 bl->gdbarch, bl->address);
0000e5cc
PA
2694
2695 fprintf_unfiltered (tmp_error_stream,
2696 "Cannot insert breakpoint %d.\n"
2697 "%s\n",
1ccbe998 2698 bl->owner->number, message.c_str ());
0000e5cc
PA
2699 }
2700 else
2701 {
2702 fprintf_unfiltered (tmp_error_stream,
2703 "Cannot insert breakpoint %d: %s\n",
2704 bl->owner->number,
688fca4f 2705 bp_excpt.message);
0000e5cc 2706 }
879bfdc2 2707 }
0000e5cc 2708 return 1;
879bfdc2
DJ
2709
2710 }
2711 }
2712 else
35df4500 2713 bl->inserted = 1;
879bfdc2 2714
0000e5cc 2715 return 0;
879bfdc2
DJ
2716 }
2717
35df4500 2718 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2719 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2720 watchpoints. It's not clear that it's necessary... */
35df4500 2721 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2722 {
0000e5cc
PA
2723 int val;
2724
77b06cd7
TJB
2725 gdb_assert (bl->owner->ops != NULL
2726 && bl->owner->ops->insert_location != NULL);
2727
2728 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2729
2730 /* If trying to set a read-watchpoint, and it turns out it's not
2731 supported, try emulating one with an access watchpoint. */
35df4500 2732 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2733 {
2734 struct bp_location *loc, **loc_temp;
2735
2736 /* But don't try to insert it, if there's already another
2737 hw_access location that would be considered a duplicate
2738 of this one. */
2739 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2740 if (loc != bl
85d721b8 2741 && loc->watchpoint_type == hw_access
35df4500 2742 && watchpoint_locations_match (bl, loc))
85d721b8 2743 {
35df4500
TJB
2744 bl->duplicate = 1;
2745 bl->inserted = 1;
2746 bl->target_info = loc->target_info;
2747 bl->watchpoint_type = hw_access;
85d721b8
PA
2748 val = 0;
2749 break;
2750 }
2751
2752 if (val == 1)
2753 {
77b06cd7
TJB
2754 bl->watchpoint_type = hw_access;
2755 val = bl->owner->ops->insert_location (bl);
2756
2757 if (val)
2758 /* Back to the original value. */
2759 bl->watchpoint_type = hw_read;
85d721b8
PA
2760 }
2761 }
2762
35df4500 2763 bl->inserted = (val == 0);
879bfdc2
DJ
2764 }
2765
35df4500 2766 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2767 {
0000e5cc
PA
2768 int val;
2769
77b06cd7
TJB
2770 gdb_assert (bl->owner->ops != NULL
2771 && bl->owner->ops->insert_location != NULL);
2772
2773 val = bl->owner->ops->insert_location (bl);
2774 if (val)
2775 {
2776 bl->owner->enable_state = bp_disabled;
2777
2778 if (val == 1)
2779 warning (_("\
2780Error inserting catchpoint %d: Your system does not support this type\n\
2781of catchpoint."), bl->owner->number);
2782 else
2783 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2784 }
2785
2786 bl->inserted = (val == 0);
1640b821
DJ
2787
2788 /* We've already printed an error message if there was a problem
2789 inserting this catchpoint, and we've disabled the catchpoint,
2790 so just return success. */
2791 return 0;
879bfdc2
DJ
2792 }
2793
2794 return 0;
2795}
2796
6c95b8df
PA
2797/* This function is called when program space PSPACE is about to be
2798 deleted. It takes care of updating breakpoints to not reference
2799 PSPACE anymore. */
2800
2801void
2802breakpoint_program_space_exit (struct program_space *pspace)
2803{
2804 struct breakpoint *b, *b_temp;
876fa593 2805 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2806
2807 /* Remove any breakpoint that was set through this program space. */
2808 ALL_BREAKPOINTS_SAFE (b, b_temp)
2809 {
2810 if (b->pspace == pspace)
2811 delete_breakpoint (b);
2812 }
2813
2814 /* Breakpoints set through other program spaces could have locations
2815 bound to PSPACE as well. Remove those. */
876fa593 2816 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2817 {
2818 struct bp_location *tmp;
2819
2820 if (loc->pspace == pspace)
2821 {
2bdf28a0 2822 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2823 if (loc->owner->loc == loc)
2824 loc->owner->loc = loc->next;
2825 else
2826 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2827 if (tmp->next == loc)
2828 {
2829 tmp->next = loc->next;
2830 break;
2831 }
2832 }
2833 }
2834
2835 /* Now update the global location list to permanently delete the
2836 removed locations above. */
44702360 2837 update_global_location_list (UGLL_DONT_INSERT);
6c95b8df
PA
2838}
2839
74960c60
VP
2840/* Make sure all breakpoints are inserted in inferior.
2841 Throws exception on any error.
2842 A breakpoint that is already inserted won't be inserted
2843 again, so calling this function twice is safe. */
2844void
2845insert_breakpoints (void)
2846{
2847 struct breakpoint *bpt;
2848
2849 ALL_BREAKPOINTS (bpt)
2850 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
2851 {
2852 struct watchpoint *w = (struct watchpoint *) bpt;
2853
2854 update_watchpoint (w, 0 /* don't reparse. */);
2855 }
74960c60 2856
04086b45
PA
2857 /* Updating watchpoints creates new locations, so update the global
2858 location list. Explicitly tell ugll to insert locations and
2859 ignore breakpoints_always_inserted_mode. */
2860 update_global_location_list (UGLL_INSERT);
74960c60
VP
2861}
2862
20388dd6
YQ
2863/* Invoke CALLBACK for each of bp_location. */
2864
2865void
2866iterate_over_bp_locations (walk_bp_location_callback callback)
2867{
2868 struct bp_location *loc, **loc_tmp;
2869
2870 ALL_BP_LOCATIONS (loc, loc_tmp)
2871 {
2872 callback (loc, NULL);
2873 }
2874}
2875
b775012e
LM
2876/* This is used when we need to synch breakpoint conditions between GDB and the
2877 target. It is the case with deleting and disabling of breakpoints when using
2878 always-inserted mode. */
2879
2880static void
2881update_inserted_breakpoint_locations (void)
2882{
2883 struct bp_location *bl, **blp_tmp;
2884 int error_flag = 0;
2885 int val = 0;
2886 int disabled_breaks = 0;
2887 int hw_breakpoint_error = 0;
dd61ec5c 2888 int hw_bp_details_reported = 0;
b775012e 2889
d7e74731 2890 string_file tmp_error_stream;
b775012e
LM
2891
2892 /* Explicitly mark the warning -- this will only be printed if
2893 there was an error. */
d7e74731 2894 tmp_error_stream.puts ("Warning:\n");
b775012e 2895
5ed8105e 2896 scoped_restore_current_pspace_and_thread restore_pspace_thread;
b775012e
LM
2897
2898 ALL_BP_LOCATIONS (bl, blp_tmp)
2899 {
2900 /* We only want to update software breakpoints and hardware
2901 breakpoints. */
2902 if (!is_breakpoint (bl->owner))
2903 continue;
2904
2905 /* We only want to update locations that are already inserted
2906 and need updating. This is to avoid unwanted insertion during
2907 deletion of breakpoints. */
2908 if (!bl->inserted || (bl->inserted && !bl->needs_update))
2909 continue;
2910
2911 switch_to_program_space_and_thread (bl->pspace);
2912
2913 /* For targets that support global breakpoints, there's no need
2914 to select an inferior to insert breakpoint to. In fact, even
2915 if we aren't attached to any process yet, we should still
2916 insert breakpoints. */
f5656ead 2917 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
b775012e
LM
2918 && ptid_equal (inferior_ptid, null_ptid))
2919 continue;
2920
d7e74731 2921 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2922 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
2923 if (val)
2924 error_flag = val;
2925 }
2926
2927 if (error_flag)
2928 {
223ffa71 2929 target_terminal::ours_for_output ();
b775012e
LM
2930 error_stream (tmp_error_stream);
2931 }
b775012e
LM
2932}
2933
c30eee59 2934/* Used when starting or continuing the program. */
c906108c 2935
74960c60
VP
2936static void
2937insert_breakpoint_locations (void)
c906108c 2938{
a5606eee 2939 struct breakpoint *bpt;
35df4500 2940 struct bp_location *bl, **blp_tmp;
eacd795a 2941 int error_flag = 0;
c906108c 2942 int val = 0;
3fbb6ffa 2943 int disabled_breaks = 0;
81d0cc19 2944 int hw_breakpoint_error = 0;
dd61ec5c 2945 int hw_bp_error_explained_already = 0;
c906108c 2946
d7e74731
PA
2947 string_file tmp_error_stream;
2948
81d0cc19
GS
2949 /* Explicitly mark the warning -- this will only be printed if
2950 there was an error. */
d7e74731 2951 tmp_error_stream.puts ("Warning:\n");
6c95b8df 2952
5ed8105e 2953 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 2954
35df4500 2955 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 2956 {
b775012e 2957 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2958 continue;
2959
4a64f543
MS
2960 /* There is no point inserting thread-specific breakpoints if
2961 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2962 has BL->OWNER always non-NULL. */
35df4500 2963 if (bl->owner->thread != -1
5d5658a1 2964 && !valid_global_thread_id (bl->owner->thread))
f365de73
AS
2965 continue;
2966
35df4500 2967 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
2968
2969 /* For targets that support global breakpoints, there's no need
2970 to select an inferior to insert breakpoint to. In fact, even
2971 if we aren't attached to any process yet, we should still
2972 insert breakpoints. */
f5656ead 2973 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
2974 && ptid_equal (inferior_ptid, null_ptid))
2975 continue;
2976
d7e74731 2977 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 2978 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 2979 if (val)
eacd795a 2980 error_flag = val;
879bfdc2 2981 }
c906108c 2982
4a64f543
MS
2983 /* If we failed to insert all locations of a watchpoint, remove
2984 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
2985 ALL_BREAKPOINTS (bpt)
2986 {
2987 int some_failed = 0;
2988 struct bp_location *loc;
2989
2990 if (!is_hardware_watchpoint (bpt))
2991 continue;
2992
d6b74ac4 2993 if (!breakpoint_enabled (bpt))
a5606eee 2994 continue;
74960c60
VP
2995
2996 if (bpt->disposition == disp_del_at_next_stop)
2997 continue;
a5606eee
VP
2998
2999 for (loc = bpt->loc; loc; loc = loc->next)
56710373 3000 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
3001 {
3002 some_failed = 1;
3003 break;
3004 }
3005 if (some_failed)
3006 {
3007 for (loc = bpt->loc; loc; loc = loc->next)
3008 if (loc->inserted)
834c0d03 3009 remove_breakpoint (loc);
a5606eee
VP
3010
3011 hw_breakpoint_error = 1;
d7e74731
PA
3012 tmp_error_stream.printf ("Could not insert "
3013 "hardware watchpoint %d.\n",
3014 bpt->number);
eacd795a 3015 error_flag = -1;
a5606eee
VP
3016 }
3017 }
3018
eacd795a 3019 if (error_flag)
81d0cc19
GS
3020 {
3021 /* If a hardware breakpoint or watchpoint was inserted, add a
3022 message about possibly exhausted resources. */
dd61ec5c 3023 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 3024 {
d7e74731 3025 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
c6510018 3026You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 3027 }
223ffa71 3028 target_terminal::ours_for_output ();
81d0cc19
GS
3029 error_stream (tmp_error_stream);
3030 }
c906108c
SS
3031}
3032
c30eee59
TJB
3033/* Used when the program stops.
3034 Returns zero if successful, or non-zero if there was a problem
3035 removing a breakpoint location. */
3036
c906108c 3037int
fba45db2 3038remove_breakpoints (void)
c906108c 3039{
35df4500 3040 struct bp_location *bl, **blp_tmp;
3a1bae8e 3041 int val = 0;
c906108c 3042
35df4500 3043 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3044 {
1e4d1764 3045 if (bl->inserted && !is_tracepoint (bl->owner))
834c0d03 3046 val |= remove_breakpoint (bl);
c5aa993b 3047 }
3a1bae8e 3048 return val;
c906108c
SS
3049}
3050
49fa26b0
PA
3051/* When a thread exits, remove breakpoints that are related to
3052 that thread. */
3053
3054static void
3055remove_threaded_breakpoints (struct thread_info *tp, int silent)
3056{
3057 struct breakpoint *b, *b_tmp;
3058
3059 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3060 {
5d5658a1 3061 if (b->thread == tp->global_num && user_breakpoint_p (b))
49fa26b0
PA
3062 {
3063 b->disposition = disp_del_at_next_stop;
3064
3065 printf_filtered (_("\
43792cf0
PA
3066Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3067 b->number, print_thread_id (tp));
49fa26b0
PA
3068
3069 /* Hide it from the user. */
3070 b->number = 0;
3071 }
3072 }
3073}
3074
6c95b8df
PA
3075/* Remove breakpoints of process PID. */
3076
3077int
3078remove_breakpoints_pid (int pid)
3079{
35df4500 3080 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
3081 int val;
3082 struct inferior *inf = find_inferior_pid (pid);
3083
35df4500 3084 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3085 {
35df4500 3086 if (bl->pspace != inf->pspace)
6c95b8df
PA
3087 continue;
3088
fc126975 3089 if (bl->inserted && !bl->target_info.persist)
6c95b8df 3090 {
834c0d03 3091 val = remove_breakpoint (bl);
6c95b8df
PA
3092 if (val != 0)
3093 return val;
3094 }
3095 }
3096 return 0;
3097}
3098
e58b0e63
PA
3099static int internal_breakpoint_number = -1;
3100
84f4c1fe
PM
3101/* Set the breakpoint number of B, depending on the value of INTERNAL.
3102 If INTERNAL is non-zero, the breakpoint number will be populated
3103 from internal_breakpoint_number and that variable decremented.
e5dd4106 3104 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3105 breakpoint_count and that value incremented. Internal breakpoints
3106 do not set the internal var bpnum. */
3107static void
3108set_breakpoint_number (int internal, struct breakpoint *b)
3109{
3110 if (internal)
3111 b->number = internal_breakpoint_number--;
3112 else
3113 {
3114 set_breakpoint_count (breakpoint_count + 1);
3115 b->number = breakpoint_count;
3116 }
3117}
3118
e62c965a 3119static struct breakpoint *
a6d9a66e 3120create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3121 CORE_ADDR address, enum bptype type,
c0a91b2b 3122 const struct breakpoint_ops *ops)
e62c965a 3123{
51abb421 3124 symtab_and_line sal;
e62c965a
PP
3125 sal.pc = address;
3126 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3127 sal.pspace = current_program_space;
e62c965a 3128
51abb421 3129 breakpoint *b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3130 b->number = internal_breakpoint_number--;
3131 b->disposition = disp_donttouch;
3132
3133 return b;
3134}
3135
17450429
PP
3136static const char *const longjmp_names[] =
3137 {
3138 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3139 };
3140#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3141
3142/* Per-objfile data private to breakpoint.c. */
3143struct breakpoint_objfile_data
3144{
3145 /* Minimal symbol for "_ovly_debug_event" (if any). */
43dce439 3146 struct bound_minimal_symbol overlay_msym {};
17450429
PP
3147
3148 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
43dce439 3149 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
17450429 3150
28106bc2 3151 /* True if we have looked for longjmp probes. */
43dce439 3152 int longjmp_searched = 0;
28106bc2 3153
45461e0d
SM
3154 /* SystemTap probe points for longjmp (if any). These are non-owning
3155 references. */
3156 std::vector<probe *> longjmp_probes;
28106bc2 3157
17450429 3158 /* Minimal symbol for "std::terminate()" (if any). */
43dce439 3159 struct bound_minimal_symbol terminate_msym {};
17450429
PP
3160
3161 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
43dce439 3162 struct bound_minimal_symbol exception_msym {};
28106bc2
SDJ
3163
3164 /* True if we have looked for exception probes. */
43dce439 3165 int exception_searched = 0;
28106bc2 3166
45461e0d
SM
3167 /* SystemTap probe points for unwinding (if any). These are non-owning
3168 references. */
3169 std::vector<probe *> exception_probes;
17450429
PP
3170};
3171
3172static const struct objfile_data *breakpoint_objfile_key;
3173
3174/* Minimal symbol not found sentinel. */
3175static struct minimal_symbol msym_not_found;
3176
3177/* Returns TRUE if MSYM point to the "not found" sentinel. */
3178
3179static int
3180msym_not_found_p (const struct minimal_symbol *msym)
3181{
3182 return msym == &msym_not_found;
3183}
3184
3185/* Return per-objfile data needed by breakpoint.c.
3186 Allocate the data if necessary. */
3187
3188static struct breakpoint_objfile_data *
3189get_breakpoint_objfile_data (struct objfile *objfile)
3190{
3191 struct breakpoint_objfile_data *bp_objfile_data;
3192
9a3c8263
SM
3193 bp_objfile_data = ((struct breakpoint_objfile_data *)
3194 objfile_data (objfile, breakpoint_objfile_key));
17450429
PP
3195 if (bp_objfile_data == NULL)
3196 {
43dce439 3197 bp_objfile_data = new breakpoint_objfile_data ();
17450429
PP
3198 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3199 }
3200 return bp_objfile_data;
3201}
3202
28106bc2 3203static void
43dce439 3204free_breakpoint_objfile_data (struct objfile *obj, void *data)
28106bc2 3205{
9a3c8263
SM
3206 struct breakpoint_objfile_data *bp_objfile_data
3207 = (struct breakpoint_objfile_data *) data;
28106bc2 3208
43dce439 3209 delete bp_objfile_data;
28106bc2
SDJ
3210}
3211
e62c965a 3212static void
af02033e 3213create_overlay_event_breakpoint (void)
e62c965a 3214{
69de3c6a 3215 struct objfile *objfile;
af02033e 3216 const char *const func_name = "_ovly_debug_event";
e62c965a 3217
69de3c6a
PP
3218 ALL_OBJFILES (objfile)
3219 {
3220 struct breakpoint *b;
17450429
PP
3221 struct breakpoint_objfile_data *bp_objfile_data;
3222 CORE_ADDR addr;
67994074 3223 struct explicit_location explicit_loc;
69de3c6a 3224
17450429
PP
3225 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3226
3b7344d5 3227 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
17450429
PP
3228 continue;
3229
3b7344d5 3230 if (bp_objfile_data->overlay_msym.minsym == NULL)
17450429 3231 {
3b7344d5 3232 struct bound_minimal_symbol m;
17450429
PP
3233
3234 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3235 if (m.minsym == NULL)
17450429
PP
3236 {
3237 /* Avoid future lookups in this objfile. */
3b7344d5 3238 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
17450429
PP
3239 continue;
3240 }
3241 bp_objfile_data->overlay_msym = m;
3242 }
e62c965a 3243
77e371c0 3244 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
17450429 3245 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3246 bp_overlay_event,
3247 &internal_breakpoint_ops);
67994074
KS
3248 initialize_explicit_location (&explicit_loc);
3249 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3250 b->location = new_explicit_location (&explicit_loc);
e62c965a 3251
69de3c6a
PP
3252 if (overlay_debugging == ovly_auto)
3253 {
3254 b->enable_state = bp_enabled;
3255 overlay_events_enabled = 1;
3256 }
3257 else
3258 {
3259 b->enable_state = bp_disabled;
3260 overlay_events_enabled = 0;
3261 }
e62c965a 3262 }
e62c965a
PP
3263}
3264
0fd8e87f 3265static void
af02033e 3266create_longjmp_master_breakpoint (void)
0fd8e87f 3267{
6c95b8df 3268 struct program_space *pspace;
6c95b8df 3269
5ed8105e 3270 scoped_restore_current_program_space restore_pspace;
0fd8e87f 3271
6c95b8df 3272 ALL_PSPACES (pspace)
af02033e
PP
3273 {
3274 struct objfile *objfile;
3275
3276 set_current_program_space (pspace);
3277
3278 ALL_OBJFILES (objfile)
0fd8e87f 3279 {
af02033e
PP
3280 int i;
3281 struct gdbarch *gdbarch;
17450429 3282 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3283
af02033e 3284 gdbarch = get_objfile_arch (objfile);
0fd8e87f 3285
17450429
PP
3286 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3287
28106bc2
SDJ
3288 if (!bp_objfile_data->longjmp_searched)
3289 {
45461e0d
SM
3290 std::vector<probe *> ret
3291 = find_probes_in_objfile (objfile, "libc", "longjmp");
25f9533e 3292
45461e0d 3293 if (!ret.empty ())
25f9533e
SDJ
3294 {
3295 /* We are only interested in checking one element. */
45461e0d 3296 probe *p = ret[0];
25f9533e 3297
935676c9 3298 if (!p->can_evaluate_arguments ())
25f9533e
SDJ
3299 {
3300 /* We cannot use the probe interface here, because it does
3301 not know how to evaluate arguments. */
45461e0d 3302 ret.clear ();
25f9533e
SDJ
3303 }
3304 }
3305 bp_objfile_data->longjmp_probes = ret;
28106bc2
SDJ
3306 bp_objfile_data->longjmp_searched = 1;
3307 }
3308
45461e0d 3309 if (!bp_objfile_data->longjmp_probes.empty ())
28106bc2 3310 {
28106bc2
SDJ
3311 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3312
45461e0d 3313 for (probe *p : bp_objfile_data->longjmp_probes)
28106bc2
SDJ
3314 {
3315 struct breakpoint *b;
3316
729662a5 3317 b = create_internal_breakpoint (gdbarch,
935676c9 3318 p->get_relocated_address (objfile),
28106bc2
SDJ
3319 bp_longjmp_master,
3320 &internal_breakpoint_ops);
d28cd78a 3321 b->location = new_probe_location ("-probe-stap libc:longjmp");
28106bc2
SDJ
3322 b->enable_state = bp_disabled;
3323 }
3324
3325 continue;
3326 }
3327
0569175e
TSD
3328 if (!gdbarch_get_longjmp_target_p (gdbarch))
3329 continue;
3330
17450429 3331 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
3332 {
3333 struct breakpoint *b;
af02033e 3334 const char *func_name;
17450429 3335 CORE_ADDR addr;
67994074 3336 struct explicit_location explicit_loc;
6c95b8df 3337
3b7344d5 3338 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
af02033e 3339 continue;
0fd8e87f 3340
17450429 3341 func_name = longjmp_names[i];
3b7344d5 3342 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
17450429 3343 {
3b7344d5 3344 struct bound_minimal_symbol m;
17450429
PP
3345
3346 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3347 if (m.minsym == NULL)
17450429
PP
3348 {
3349 /* Prevent future lookups in this objfile. */
3b7344d5 3350 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
17450429
PP
3351 continue;
3352 }
3353 bp_objfile_data->longjmp_msym[i] = m;
3354 }
3355
77e371c0 3356 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
06edf0c0
PA
3357 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3358 &internal_breakpoint_ops);
67994074
KS
3359 initialize_explicit_location (&explicit_loc);
3360 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3361 b->location = new_explicit_location (&explicit_loc);
af02033e
PP
3362 b->enable_state = bp_disabled;
3363 }
0fd8e87f 3364 }
af02033e 3365 }
0fd8e87f
UW
3366}
3367
af02033e 3368/* Create a master std::terminate breakpoint. */
aa7d318d 3369static void
af02033e 3370create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3371{
3372 struct program_space *pspace;
af02033e 3373 const char *const func_name = "std::terminate()";
aa7d318d 3374
5ed8105e 3375 scoped_restore_current_program_space restore_pspace;
aa7d318d
TT
3376
3377 ALL_PSPACES (pspace)
17450429
PP
3378 {
3379 struct objfile *objfile;
3380 CORE_ADDR addr;
3381
3382 set_current_program_space (pspace);
3383
aa7d318d
TT
3384 ALL_OBJFILES (objfile)
3385 {
3386 struct breakpoint *b;
17450429 3387 struct breakpoint_objfile_data *bp_objfile_data;
67994074 3388 struct explicit_location explicit_loc;
aa7d318d 3389
17450429 3390 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3391
3b7344d5 3392 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
17450429
PP
3393 continue;
3394
3b7344d5 3395 if (bp_objfile_data->terminate_msym.minsym == NULL)
17450429 3396 {
3b7344d5 3397 struct bound_minimal_symbol m;
17450429
PP
3398
3399 m = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5
TT
3400 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3401 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
17450429
PP
3402 {
3403 /* Prevent future lookups in this objfile. */
3b7344d5 3404 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
17450429
PP
3405 continue;
3406 }
3407 bp_objfile_data->terminate_msym = m;
3408 }
aa7d318d 3409
77e371c0 3410 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
17450429 3411 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3412 bp_std_terminate_master,
3413 &internal_breakpoint_ops);
67994074
KS
3414 initialize_explicit_location (&explicit_loc);
3415 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3416 b->location = new_explicit_location (&explicit_loc);
aa7d318d
TT
3417 b->enable_state = bp_disabled;
3418 }
17450429 3419 }
aa7d318d
TT
3420}
3421
186c406b
TT
3422/* Install a master breakpoint on the unwinder's debug hook. */
3423
70221824 3424static void
186c406b
TT
3425create_exception_master_breakpoint (void)
3426{
3427 struct objfile *objfile;
17450429 3428 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
3429
3430 ALL_OBJFILES (objfile)
3431 {
17450429
PP
3432 struct breakpoint *b;
3433 struct gdbarch *gdbarch;
3434 struct breakpoint_objfile_data *bp_objfile_data;
3435 CORE_ADDR addr;
67994074 3436 struct explicit_location explicit_loc;
17450429
PP
3437
3438 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3439
28106bc2
SDJ
3440 /* We prefer the SystemTap probe point if it exists. */
3441 if (!bp_objfile_data->exception_searched)
3442 {
45461e0d
SM
3443 std::vector<probe *> ret
3444 = find_probes_in_objfile (objfile, "libgcc", "unwind");
25f9533e 3445
45461e0d 3446 if (!ret.empty ())
25f9533e
SDJ
3447 {
3448 /* We are only interested in checking one element. */
45461e0d 3449 probe *p = ret[0];
25f9533e 3450
935676c9 3451 if (!p->can_evaluate_arguments ())
25f9533e
SDJ
3452 {
3453 /* We cannot use the probe interface here, because it does
3454 not know how to evaluate arguments. */
45461e0d 3455 ret.clear ();
25f9533e
SDJ
3456 }
3457 }
3458 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3459 bp_objfile_data->exception_searched = 1;
3460 }
3461
45461e0d 3462 if (!bp_objfile_data->exception_probes.empty ())
28106bc2
SDJ
3463 {
3464 struct gdbarch *gdbarch = get_objfile_arch (objfile);
45461e0d
SM
3465
3466 for (probe *p : bp_objfile_data->exception_probes)
28106bc2
SDJ
3467 {
3468 struct breakpoint *b;
3469
729662a5 3470 b = create_internal_breakpoint (gdbarch,
935676c9 3471 p->get_relocated_address (objfile),
28106bc2
SDJ
3472 bp_exception_master,
3473 &internal_breakpoint_ops);
d28cd78a 3474 b->location = new_probe_location ("-probe-stap libgcc:unwind");
28106bc2
SDJ
3475 b->enable_state = bp_disabled;
3476 }
3477
3478 continue;
3479 }
3480
3481 /* Otherwise, try the hook function. */
3482
3b7344d5 3483 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
17450429
PP
3484 continue;
3485
3486 gdbarch = get_objfile_arch (objfile);
186c406b 3487
3b7344d5 3488 if (bp_objfile_data->exception_msym.minsym == NULL)
186c406b 3489 {
3b7344d5 3490 struct bound_minimal_symbol debug_hook;
186c406b 3491
17450429 3492 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5 3493 if (debug_hook.minsym == NULL)
17450429 3494 {
3b7344d5 3495 bp_objfile_data->exception_msym.minsym = &msym_not_found;
17450429
PP
3496 continue;
3497 }
3498
3499 bp_objfile_data->exception_msym = debug_hook;
186c406b 3500 }
17450429 3501
77e371c0 3502 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
17450429
PP
3503 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3504 &current_target);
06edf0c0
PA
3505 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3506 &internal_breakpoint_ops);
67994074
KS
3507 initialize_explicit_location (&explicit_loc);
3508 explicit_loc.function_name = ASTRDUP (func_name);
d28cd78a 3509 b->location = new_explicit_location (&explicit_loc);
17450429 3510 b->enable_state = bp_disabled;
186c406b 3511 }
186c406b
TT
3512}
3513
9ef9e6a6
KS
3514/* Does B have a location spec? */
3515
3516static int
3517breakpoint_event_location_empty_p (const struct breakpoint *b)
3518{
d28cd78a 3519 return b->location != NULL && event_location_empty_p (b->location.get ());
9ef9e6a6
KS
3520}
3521
c906108c 3522void
fba45db2 3523update_breakpoints_after_exec (void)
c906108c 3524{
35df4500 3525 struct breakpoint *b, *b_tmp;
876fa593 3526 struct bp_location *bploc, **bplocp_tmp;
c906108c 3527
25b22b0a
PA
3528 /* We're about to delete breakpoints from GDB's lists. If the
3529 INSERTED flag is true, GDB will try to lift the breakpoints by
3530 writing the breakpoints' "shadow contents" back into memory. The
3531 "shadow contents" are NOT valid after an exec, so GDB should not
3532 do that. Instead, the target is responsible from marking
3533 breakpoints out as soon as it detects an exec. We don't do that
3534 here instead, because there may be other attempts to delete
3535 breakpoints after detecting an exec and before reaching here. */
876fa593 3536 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3537 if (bploc->pspace == current_program_space)
3538 gdb_assert (!bploc->inserted);
c906108c 3539
35df4500 3540 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3541 {
6c95b8df
PA
3542 if (b->pspace != current_program_space)
3543 continue;
3544
4a64f543 3545 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3546 if (b->type == bp_shlib_event)
3547 {
3548 delete_breakpoint (b);
3549 continue;
3550 }
c906108c 3551
4a64f543 3552 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3553 if (b->type == bp_jit_event)
3554 {
3555 delete_breakpoint (b);
3556 continue;
3557 }
3558
1900040c 3559 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3560 as must overlay event and longjmp master breakpoints. */
3561 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3562 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3563 || b->type == bp_exception_master)
c4093a6a
JM
3564 {
3565 delete_breakpoint (b);
3566 continue;
3567 }
3568
4a64f543 3569 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3570 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3571 {
3572 delete_breakpoint (b);
3573 continue;
3574 }
3575
7c16b83e
PA
3576 /* Just like single-step breakpoints. */
3577 if (b->type == bp_single_step)
3578 {
3579 delete_breakpoint (b);
3580 continue;
3581 }
3582
611c83ae
PA
3583 /* Longjmp and longjmp-resume breakpoints are also meaningless
3584 after an exec. */
186c406b 3585 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3586 || b->type == bp_longjmp_call_dummy
186c406b 3587 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3588 {
3589 delete_breakpoint (b);
3590 continue;
3591 }
3592
ce78b96d
JB
3593 if (b->type == bp_catchpoint)
3594 {
3595 /* For now, none of the bp_catchpoint breakpoints need to
3596 do anything at this point. In the future, if some of
3597 the catchpoints need to something, we will need to add
3598 a new method, and call this method from here. */
3599 continue;
3600 }
3601
c5aa993b
JM
3602 /* bp_finish is a special case. The only way we ought to be able
3603 to see one of these when an exec() has happened, is if the user
3604 caught a vfork, and then said "finish". Ordinarily a finish just
3605 carries them to the call-site of the current callee, by setting
3606 a temporary bp there and resuming. But in this case, the finish
3607 will carry them entirely through the vfork & exec.
3608
3609 We don't want to allow a bp_finish to remain inserted now. But
3610 we can't safely delete it, 'cause finish_command has a handle to
3611 the bp on a bpstat, and will later want to delete it. There's a
3612 chance (and I've seen it happen) that if we delete the bp_finish
3613 here, that its storage will get reused by the time finish_command
3614 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3615 We really must allow finish_command to delete a bp_finish.
3616
e5dd4106 3617 In the absence of a general solution for the "how do we know
53a5351d
JM
3618 it's safe to delete something others may have handles to?"
3619 problem, what we'll do here is just uninsert the bp_finish, and
3620 let finish_command delete it.
3621
3622 (We know the bp_finish is "doomed" in the sense that it's
3623 momentary, and will be deleted as soon as finish_command sees
3624 the inferior stopped. So it doesn't matter that the bp's
3625 address is probably bogus in the new a.out, unlike e.g., the
3626 solib breakpoints.) */
c5aa993b 3627
c5aa993b
JM
3628 if (b->type == bp_finish)
3629 {
3630 continue;
3631 }
3632
3633 /* Without a symbolic address, we have little hope of the
3634 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3635 a.out. */
9ef9e6a6 3636 if (breakpoint_event_location_empty_p (b))
c5aa993b
JM
3637 {
3638 delete_breakpoint (b);
3639 continue;
3640 }
c5aa993b 3641 }
c906108c
SS
3642}
3643
3644int
d80ee84f 3645detach_breakpoints (ptid_t ptid)
c906108c 3646{
35df4500 3647 struct bp_location *bl, **blp_tmp;
3a1bae8e 3648 int val = 0;
2989a365 3649 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
6c95b8df 3650 struct inferior *inf = current_inferior ();
c5aa993b 3651
dfd4cc63 3652 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
8a3fe4f8 3653 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3654
6c95b8df 3655 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3656 inferior_ptid = ptid;
35df4500 3657 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3658 {
35df4500 3659 if (bl->pspace != inf->pspace)
6c95b8df
PA
3660 continue;
3661
bd9673a4
PW
3662 /* This function must physically remove breakpoints locations
3663 from the specified ptid, without modifying the breakpoint
3664 package's state. Locations of type bp_loc_other are only
3665 maintained at GDB side. So, there is no need to remove
3666 these bp_loc_other locations. Moreover, removing these
3667 would modify the breakpoint package's state. */
3668 if (bl->loc_type == bp_loc_other)
3669 continue;
3670
35df4500 3671 if (bl->inserted)
b2b6a7da 3672 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
c5aa993b 3673 }
d03285ec 3674
3a1bae8e 3675 return val;
c906108c
SS
3676}
3677
35df4500 3678/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3679 Note that this is used to detach breakpoints from a child fork.
3680 When we get here, the child isn't in the inferior list, and neither
3681 do we have objects to represent its address space --- we should
35df4500 3682 *not* look at bl->pspace->aspace here. */
6c95b8df 3683
c906108c 3684static int
b2b6a7da 3685remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
c906108c
SS
3686{
3687 int val;
c5aa993b 3688
35df4500
TJB
3689 /* BL is never in moribund_locations by our callers. */
3690 gdb_assert (bl->owner != NULL);
2bdf28a0 3691
74960c60
VP
3692 /* The type of none suggests that owner is actually deleted.
3693 This should not ever happen. */
35df4500 3694 gdb_assert (bl->owner->type != bp_none);
0bde7532 3695
35df4500
TJB
3696 if (bl->loc_type == bp_loc_software_breakpoint
3697 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3698 {
c02f5703
MS
3699 /* "Normal" instruction breakpoint: either the standard
3700 trap-instruction bp (bp_breakpoint), or a
3701 bp_hardware_breakpoint. */
3702
3703 /* First check to see if we have to handle an overlay. */
3704 if (overlay_debugging == ovly_off
35df4500
TJB
3705 || bl->section == NULL
3706 || !(section_is_overlay (bl->section)))
c02f5703
MS
3707 {
3708 /* No overlay handling: just remove the breakpoint. */
08351840
PA
3709
3710 /* If we're trying to uninsert a memory breakpoint that we
3711 know is set in a dynamic object that is marked
3712 shlib_disabled, then either the dynamic object was
3713 removed with "remove-symbol-file" or with
3714 "nosharedlibrary". In the former case, we don't know
3715 whether another dynamic object might have loaded over the
3716 breakpoint's address -- the user might well let us know
3717 about it next with add-symbol-file (the whole point of
d03de421 3718 add-symbol-file is letting the user manually maintain a
08351840
PA
3719 list of dynamically loaded objects). If we have the
3720 breakpoint's shadow memory, that is, this is a software
3721 breakpoint managed by GDB, check whether the breakpoint
3722 is still inserted in memory, to avoid overwriting wrong
3723 code with stale saved shadow contents. Note that HW
3724 breakpoints don't have shadow memory, as they're
3725 implemented using a mechanism that is not dependent on
3726 being able to modify the target's memory, and as such
3727 they should always be removed. */
3728 if (bl->shlib_disabled
3729 && bl->target_info.shadow_len != 0
3730 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3731 val = 0;
3732 else
73971819 3733 val = bl->owner->ops->remove_location (bl, reason);
c02f5703 3734 }
c906108c
SS
3735 else
3736 {
4a64f543 3737 /* This breakpoint is in an overlay section.
c02f5703
MS
3738 Did we set a breakpoint at the LMA? */
3739 if (!overlay_events_enabled)
3740 {
3741 /* Yes -- overlay event support is not active, so we
3742 should have set a breakpoint at the LMA. Remove it.
3743 */
c02f5703
MS
3744 /* Ignore any failures: if the LMA is in ROM, we will
3745 have already warned when we failed to insert it. */
35df4500
TJB
3746 if (bl->loc_type == bp_loc_hardware_breakpoint)
3747 target_remove_hw_breakpoint (bl->gdbarch,
3748 &bl->overlay_target_info);
c02f5703 3749 else
35df4500 3750 target_remove_breakpoint (bl->gdbarch,
73971819
PA
3751 &bl->overlay_target_info,
3752 reason);
c02f5703
MS
3753 }
3754 /* Did we set a breakpoint at the VMA?
3755 If so, we will have marked the breakpoint 'inserted'. */
35df4500 3756 if (bl->inserted)
c906108c 3757 {
c02f5703
MS
3758 /* Yes -- remove it. Previously we did not bother to
3759 remove the breakpoint if the section had been
3760 unmapped, but let's not rely on that being safe. We
3761 don't know what the overlay manager might do. */
aa67235e
UW
3762
3763 /* However, we should remove *software* breakpoints only
3764 if the section is still mapped, or else we overwrite
3765 wrong code with the saved shadow contents. */
348d480f
PA
3766 if (bl->loc_type == bp_loc_hardware_breakpoint
3767 || section_is_mapped (bl->section))
73971819 3768 val = bl->owner->ops->remove_location (bl, reason);
aa67235e
UW
3769 else
3770 val = 0;
c906108c 3771 }
c02f5703
MS
3772 else
3773 {
3774 /* No -- not inserted, so no need to remove. No error. */
3775 val = 0;
3776 }
c906108c 3777 }
879d1e6b 3778
08351840
PA
3779 /* In some cases, we might not be able to remove a breakpoint in
3780 a shared library that has already been removed, but we have
3781 not yet processed the shlib unload event. Similarly for an
3782 unloaded add-symbol-file object - the user might not yet have
3783 had the chance to remove-symbol-file it. shlib_disabled will
3784 be set if the library/object has already been removed, but
3785 the breakpoint hasn't been uninserted yet, e.g., after
3786 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3787 always-inserted mode. */
076855f9 3788 if (val
08351840
PA
3789 && (bl->loc_type == bp_loc_software_breakpoint
3790 && (bl->shlib_disabled
3791 || solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
3792 || shared_objfile_contains_address_p (bl->pspace,
3793 bl->address))))
879d1e6b
UW
3794 val = 0;
3795
c906108c
SS
3796 if (val)
3797 return val;
b2b6a7da 3798 bl->inserted = (reason == DETACH_BREAKPOINT);
c906108c 3799 }
35df4500 3800 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 3801 {
77b06cd7
TJB
3802 gdb_assert (bl->owner->ops != NULL
3803 && bl->owner->ops->remove_location != NULL);
3804
b2b6a7da 3805 bl->inserted = (reason == DETACH_BREAKPOINT);
73971819 3806 bl->owner->ops->remove_location (bl, reason);
2e70b7b9 3807
c906108c 3808 /* Failure to remove any of the hardware watchpoints comes here. */
b2b6a7da 3809 if (reason == REMOVE_BREAKPOINT && bl->inserted)
8a3fe4f8 3810 warning (_("Could not remove hardware watchpoint %d."),
35df4500 3811 bl->owner->number);
c906108c 3812 }
35df4500
TJB
3813 else if (bl->owner->type == bp_catchpoint
3814 && breakpoint_enabled (bl->owner)
3815 && !bl->duplicate)
ce78b96d 3816 {
77b06cd7
TJB
3817 gdb_assert (bl->owner->ops != NULL
3818 && bl->owner->ops->remove_location != NULL);
ce78b96d 3819
73971819 3820 val = bl->owner->ops->remove_location (bl, reason);
ce78b96d
JB
3821 if (val)
3822 return val;
77b06cd7 3823
b2b6a7da 3824 bl->inserted = (reason == DETACH_BREAKPOINT);
ce78b96d 3825 }
c906108c
SS
3826
3827 return 0;
3828}
3829
6c95b8df 3830static int
834c0d03 3831remove_breakpoint (struct bp_location *bl)
6c95b8df 3832{
35df4500
TJB
3833 /* BL is never in moribund_locations by our callers. */
3834 gdb_assert (bl->owner != NULL);
2bdf28a0 3835
6c95b8df
PA
3836 /* The type of none suggests that owner is actually deleted.
3837 This should not ever happen. */
35df4500 3838 gdb_assert (bl->owner->type != bp_none);
6c95b8df 3839
5ed8105e 3840 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 3841
35df4500 3842 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 3843
5ed8105e 3844 return remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
6c95b8df
PA
3845}
3846
c906108c
SS
3847/* Clear the "inserted" flag in all breakpoints. */
3848
25b22b0a 3849void
fba45db2 3850mark_breakpoints_out (void)
c906108c 3851{
35df4500 3852 struct bp_location *bl, **blp_tmp;
c906108c 3853
35df4500 3854 ALL_BP_LOCATIONS (bl, blp_tmp)
66c4b3e8 3855 if (bl->pspace == current_program_space)
35df4500 3856 bl->inserted = 0;
c906108c
SS
3857}
3858
53a5351d
JM
3859/* Clear the "inserted" flag in all breakpoints and delete any
3860 breakpoints which should go away between runs of the program.
c906108c
SS
3861
3862 Plus other such housekeeping that has to be done for breakpoints
3863 between runs.
3864
53a5351d
JM
3865 Note: this function gets called at the end of a run (by
3866 generic_mourn_inferior) and when a run begins (by
4a64f543 3867 init_wait_for_inferior). */
c906108c
SS
3868
3869
3870
3871void
fba45db2 3872breakpoint_init_inferior (enum inf_context context)
c906108c 3873{
35df4500 3874 struct breakpoint *b, *b_tmp;
870f88f7 3875 struct bp_location *bl;
1c5cfe86 3876 int ix;
6c95b8df 3877 struct program_space *pspace = current_program_space;
c906108c 3878
50c71eaf
PA
3879 /* If breakpoint locations are shared across processes, then there's
3880 nothing to do. */
f5656ead 3881 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
3882 return;
3883
1a853c52 3884 mark_breakpoints_out ();
075f6582 3885
35df4500 3886 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3887 {
6c95b8df
PA
3888 if (b->loc && b->loc->pspace != pspace)
3889 continue;
3890
c5aa993b
JM
3891 switch (b->type)
3892 {
3893 case bp_call_dummy:
e2e4d78b 3894 case bp_longjmp_call_dummy:
c906108c 3895
c5aa993b 3896 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
3897 cause problems when the inferior is rerun, so we better get
3898 rid of it. */
3899
3900 case bp_watchpoint_scope:
3901
3902 /* Also get rid of scope breakpoints. */
3903
3904 case bp_shlib_event:
3905
3906 /* Also remove solib event breakpoints. Their addresses may
3907 have changed since the last time we ran the program.
3908 Actually we may now be debugging against different target;
3909 and so the solib backend that installed this breakpoint may
3910 not be used in by the target. E.g.,
3911
3912 (gdb) file prog-linux
3913 (gdb) run # native linux target
3914 ...
3915 (gdb) kill
3916 (gdb) file prog-win.exe
3917 (gdb) tar rem :9999 # remote Windows gdbserver.
3918 */
c906108c 3919
f59f708a
PA
3920 case bp_step_resume:
3921
3922 /* Also remove step-resume breakpoints. */
3923
7c16b83e
PA
3924 case bp_single_step:
3925
3926 /* Also remove single-step breakpoints. */
3927
c5aa993b
JM
3928 delete_breakpoint (b);
3929 break;
c906108c 3930
c5aa993b
JM
3931 case bp_watchpoint:
3932 case bp_hardware_watchpoint:
3933 case bp_read_watchpoint:
3934 case bp_access_watchpoint:
3a5c3e22
PA
3935 {
3936 struct watchpoint *w = (struct watchpoint *) b;
c906108c 3937
3a5c3e22
PA
3938 /* Likewise for watchpoints on local expressions. */
3939 if (w->exp_valid_block != NULL)
3940 delete_breakpoint (b);
63000888 3941 else
3a5c3e22 3942 {
63000888
PA
3943 /* Get rid of existing locations, which are no longer
3944 valid. New ones will be created in
3945 update_watchpoint, when the inferior is restarted.
3946 The next update_global_location_list call will
3947 garbage collect them. */
3948 b->loc = NULL;
3949
3950 if (context == inf_starting)
3951 {
3952 /* Reset val field to force reread of starting value in
3953 insert_breakpoints. */
3954 if (w->val)
3955 value_free (w->val);
3956 w->val = NULL;
3957 w->val_valid = 0;
3958 }
3959 }
3a5c3e22 3960 }
c5aa993b
JM
3961 break;
3962 default:
c5aa993b
JM
3963 break;
3964 }
3965 }
1c5cfe86
PA
3966
3967 /* Get rid of the moribund locations. */
35df4500
TJB
3968 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
3969 decref_bp_location (&bl);
1c5cfe86 3970 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
3971}
3972
6c95b8df
PA
3973/* These functions concern about actual breakpoints inserted in the
3974 target --- to e.g. check if we need to do decr_pc adjustment or if
3975 we need to hop over the bkpt --- so we check for address space
3976 match, not program space. */
3977
c2c6d25f
JM
3978/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3979 exists at PC. It returns ordinary_breakpoint_here if it's an
3980 ordinary breakpoint, or permanent_breakpoint_here if it's a
3981 permanent breakpoint.
3982 - When continuing from a location with an ordinary breakpoint, we
3983 actually single step once before calling insert_breakpoints.
e5dd4106 3984 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
3985 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3986 the target, to advance the PC past the breakpoint. */
c906108c 3987
c2c6d25f 3988enum breakpoint_here
accd0bcd 3989breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 3990{
35df4500 3991 struct bp_location *bl, **blp_tmp;
c2c6d25f 3992 int any_breakpoint_here = 0;
c906108c 3993
35df4500 3994 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 3995 {
35df4500
TJB
3996 if (bl->loc_type != bp_loc_software_breakpoint
3997 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
3998 continue;
3999
f1310107 4000 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500 4001 if ((breakpoint_enabled (bl->owner)
1a853c52 4002 || bl->permanent)
f1310107 4003 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
4004 {
4005 if (overlay_debugging
35df4500
TJB
4006 && section_is_overlay (bl->section)
4007 && !section_is_mapped (bl->section))
075f6582 4008 continue; /* unmapped overlay -- can't be a match */
1a853c52 4009 else if (bl->permanent)
075f6582
DJ
4010 return permanent_breakpoint_here;
4011 else
4012 any_breakpoint_here = 1;
4013 }
4014 }
c906108c 4015
f486487f 4016 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
c906108c
SS
4017}
4018
d35ae833
PA
4019/* See breakpoint.h. */
4020
4021int
accd0bcd 4022breakpoint_in_range_p (const address_space *aspace,
d35ae833
PA
4023 CORE_ADDR addr, ULONGEST len)
4024{
4025 struct bp_location *bl, **blp_tmp;
4026
4027 ALL_BP_LOCATIONS (bl, blp_tmp)
4028 {
4029 if (bl->loc_type != bp_loc_software_breakpoint
4030 && bl->loc_type != bp_loc_hardware_breakpoint)
4031 continue;
4032
4033 if ((breakpoint_enabled (bl->owner)
4034 || bl->permanent)
4035 && breakpoint_location_address_range_overlap (bl, aspace,
4036 addr, len))
4037 {
4038 if (overlay_debugging
4039 && section_is_overlay (bl->section)
4040 && !section_is_mapped (bl->section))
4041 {
4042 /* Unmapped overlay -- can't be a match. */
4043 continue;
4044 }
4045
4046 return 1;
4047 }
4048 }
4049
4050 return 0;
4051}
4052
1c5cfe86
PA
4053/* Return true if there's a moribund breakpoint at PC. */
4054
4055int
accd0bcd 4056moribund_breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
4057{
4058 struct bp_location *loc;
4059 int ix;
4060
4061 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 4062 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
4063 return 1;
4064
4065 return 0;
4066}
c2c6d25f 4067
f7ce857f
PA
4068/* Returns non-zero iff BL is inserted at PC, in address space
4069 ASPACE. */
4070
4071static int
4072bp_location_inserted_here_p (struct bp_location *bl,
accd0bcd 4073 const address_space *aspace, CORE_ADDR pc)
f7ce857f
PA
4074{
4075 if (bl->inserted
4076 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4077 aspace, pc))
4078 {
4079 if (overlay_debugging
4080 && section_is_overlay (bl->section)
4081 && !section_is_mapped (bl->section))
4082 return 0; /* unmapped overlay -- can't be a match */
4083 else
4084 return 1;
4085 }
4086 return 0;
4087}
4088
a1fd2fa5 4089/* Returns non-zero iff there's a breakpoint inserted at PC. */
c906108c
SS
4090
4091int
accd0bcd 4092breakpoint_inserted_here_p (const address_space *aspace, CORE_ADDR pc)
c906108c 4093{
f7ce857f 4094 struct bp_location **blp, **blp_tmp = NULL;
c906108c 4095
f7ce857f 4096 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
c5aa993b 4097 {
f7ce857f
PA
4098 struct bp_location *bl = *blp;
4099
35df4500
TJB
4100 if (bl->loc_type != bp_loc_software_breakpoint
4101 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4102 continue;
4103
f7ce857f
PA
4104 if (bp_location_inserted_here_p (bl, aspace, pc))
4105 return 1;
c5aa993b 4106 }
c36b740a
VP
4107 return 0;
4108}
4109
a1fd2fa5
PA
4110/* This function returns non-zero iff there is a software breakpoint
4111 inserted at PC. */
c36b740a
VP
4112
4113int
accd0bcd 4114software_breakpoint_inserted_here_p (const address_space *aspace,
a1fd2fa5 4115 CORE_ADDR pc)
4fa8626c 4116{
f7ce857f 4117 struct bp_location **blp, **blp_tmp = NULL;
4fa8626c 4118
f7ce857f 4119 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4fa8626c 4120 {
f7ce857f
PA
4121 struct bp_location *bl = *blp;
4122
35df4500 4123 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4124 continue;
4125
f7ce857f
PA
4126 if (bp_location_inserted_here_p (bl, aspace, pc))
4127 return 1;
4fa8626c
DJ
4128 }
4129
4130 return 0;
9c02b525
PA
4131}
4132
4133/* See breakpoint.h. */
4134
4135int
accd0bcd 4136hardware_breakpoint_inserted_here_p (const address_space *aspace,
9c02b525
PA
4137 CORE_ADDR pc)
4138{
4139 struct bp_location **blp, **blp_tmp = NULL;
9c02b525
PA
4140
4141 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4142 {
4143 struct bp_location *bl = *blp;
4144
4145 if (bl->loc_type != bp_loc_hardware_breakpoint)
4146 continue;
4147
4148 if (bp_location_inserted_here_p (bl, aspace, pc))
4149 return 1;
4150 }
4151
4152 return 0;
4fa8626c
DJ
4153}
4154
9093389c 4155int
accd0bcd 4156hardware_watchpoint_inserted_in_range (const address_space *aspace,
9093389c
PA
4157 CORE_ADDR addr, ULONGEST len)
4158{
4159 struct breakpoint *bpt;
4160
4161 ALL_BREAKPOINTS (bpt)
4162 {
4163 struct bp_location *loc;
4164
4165 if (bpt->type != bp_hardware_watchpoint
4166 && bpt->type != bp_access_watchpoint)
4167 continue;
4168
4169 if (!breakpoint_enabled (bpt))
4170 continue;
4171
4172 for (loc = bpt->loc; loc; loc = loc->next)
4173 if (loc->pspace->aspace == aspace && loc->inserted)
4174 {
4175 CORE_ADDR l, h;
4176
4177 /* Check for intersection. */
768adc05
PA
4178 l = std::max<CORE_ADDR> (loc->address, addr);
4179 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
9093389c
PA
4180 if (l < h)
4181 return 1;
4182 }
4183 }
4184 return 0;
4185}
c906108c 4186\f
c5aa993b 4187
c906108c
SS
4188/* bpstat stuff. External routines' interfaces are documented
4189 in breakpoint.h. */
4190
4191int
c326b90e 4192is_catchpoint (struct breakpoint *ep)
c906108c 4193{
533be4dd 4194 return (ep->type == bp_catchpoint);
c906108c
SS
4195}
4196
f431efe5
PA
4197/* Frees any storage that is part of a bpstat. Does not walk the
4198 'next' chain. */
4199
04afa70c 4200bpstats::~bpstats ()
198757a8 4201{
04afa70c
TT
4202 if (old_val != NULL)
4203 value_free (old_val);
04afa70c
TT
4204 if (bp_location_at != NULL)
4205 decref_bp_location (&bp_location_at);
198757a8
VP
4206}
4207
c906108c
SS
4208/* Clear a bpstat so that it says we are not at any breakpoint.
4209 Also free any storage that is part of a bpstat. */
4210
4211void
fba45db2 4212bpstat_clear (bpstat *bsp)
c906108c
SS
4213{
4214 bpstat p;
4215 bpstat q;
4216
4217 if (bsp == 0)
4218 return;
4219 p = *bsp;
4220 while (p != NULL)
4221 {
4222 q = p->next;
04afa70c 4223 delete p;
c906108c
SS
4224 p = q;
4225 }
4226 *bsp = NULL;
4227}
4228
04afa70c
TT
4229bpstats::bpstats (const bpstats &other)
4230 : next (NULL),
4231 bp_location_at (other.bp_location_at),
4232 breakpoint_at (other.breakpoint_at),
4233 commands (other.commands),
4234 old_val (other.old_val),
4235 print (other.print),
4236 stop (other.stop),
4237 print_it (other.print_it)
4238{
4239 if (old_val != NULL)
4240 {
4241 old_val = value_copy (old_val);
4242 release_value (old_val);
4243 }
4244 incref_bp_location (bp_location_at);
04afa70c
TT
4245}
4246
c906108c
SS
4247/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4248 is part of the bpstat is copied as well. */
4249
4250bpstat
fba45db2 4251bpstat_copy (bpstat bs)
c906108c
SS
4252{
4253 bpstat p = NULL;
4254 bpstat tmp;
4255 bpstat retval = NULL;
4256
4257 if (bs == NULL)
4258 return bs;
4259
4260 for (; bs != NULL; bs = bs->next)
4261 {
04afa70c 4262 tmp = new bpstats (*bs);
31cc81e9 4263
c906108c
SS
4264 if (p == NULL)
4265 /* This is the first thing in the chain. */
4266 retval = tmp;
4267 else
4268 p->next = tmp;
4269 p = tmp;
4270 }
4271 p->next = NULL;
4272 return retval;
4273}
4274
4a64f543 4275/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4276
4277bpstat
fba45db2 4278bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4279{
c5aa993b
JM
4280 if (bsp == NULL)
4281 return NULL;
c906108c 4282
c5aa993b
JM
4283 for (; bsp != NULL; bsp = bsp->next)
4284 {
f431efe5 4285 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4286 return bsp;
4287 }
c906108c
SS
4288 return NULL;
4289}
4290
ab04a2af
TT
4291/* See breakpoint.h. */
4292
47591c29 4293int
427cd150 4294bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4295{
ab04a2af
TT
4296 for (; bsp != NULL; bsp = bsp->next)
4297 {
427cd150
TT
4298 if (bsp->breakpoint_at == NULL)
4299 {
4300 /* A moribund location can never explain a signal other than
4301 GDB_SIGNAL_TRAP. */
4302 if (sig == GDB_SIGNAL_TRAP)
47591c29 4303 return 1;
427cd150
TT
4304 }
4305 else
47591c29
PA
4306 {
4307 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4308 sig))
4309 return 1;
4310 }
ab04a2af
TT
4311 }
4312
47591c29 4313 return 0;
ab04a2af
TT
4314}
4315
4a64f543
MS
4316/* Put in *NUM the breakpoint number of the first breakpoint we are
4317 stopped at. *BSP upon return is a bpstat which points to the
4318 remaining breakpoints stopped at (but which is not guaranteed to be
4319 good for anything but further calls to bpstat_num).
4320
8671a17b
PA
4321 Return 0 if passed a bpstat which does not indicate any breakpoints.
4322 Return -1 if stopped at a breakpoint that has been deleted since
4323 we set it.
4324 Return 1 otherwise. */
c906108c
SS
4325
4326int
8671a17b 4327bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4328{
4329 struct breakpoint *b;
4330
4331 if ((*bsp) == NULL)
4332 return 0; /* No more breakpoint values */
8671a17b 4333
4a64f543
MS
4334 /* We assume we'll never have several bpstats that correspond to a
4335 single breakpoint -- otherwise, this function might return the
4336 same number more than once and this will look ugly. */
f431efe5 4337 b = (*bsp)->breakpoint_at;
8671a17b
PA
4338 *bsp = (*bsp)->next;
4339 if (b == NULL)
4340 return -1; /* breakpoint that's been deleted since */
4341
4342 *num = b->number; /* We have its number */
4343 return 1;
c906108c
SS
4344}
4345
e93ca019 4346/* See breakpoint.h. */
c906108c
SS
4347
4348void
e93ca019 4349bpstat_clear_actions (void)
c906108c 4350{
e93ca019
JK
4351 struct thread_info *tp;
4352 bpstat bs;
4353
4354 if (ptid_equal (inferior_ptid, null_ptid))
4355 return;
4356
4357 tp = find_thread_ptid (inferior_ptid);
4358 if (tp == NULL)
4359 return;
4360
4361 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4362 {
d1b0a7bf 4363 bs->commands = NULL;
abf85f46 4364
c906108c
SS
4365 if (bs->old_val != NULL)
4366 {
4367 value_free (bs->old_val);
4368 bs->old_val = NULL;
4369 }
4370 }
4371}
4372
f3b1572e
PA
4373/* Called when a command is about to proceed the inferior. */
4374
4375static void
4376breakpoint_about_to_proceed (void)
4377{
4378 if (!ptid_equal (inferior_ptid, null_ptid))
4379 {
4380 struct thread_info *tp = inferior_thread ();
4381
4382 /* Allow inferior function calls in breakpoint commands to not
4383 interrupt the command list. When the call finishes
4384 successfully, the inferior will be standing at the same
4385 breakpoint as if nothing happened. */
16c381f0 4386 if (tp->control.in_infcall)
f3b1572e
PA
4387 return;
4388 }
4389
4390 breakpoint_proceeded = 1;
4391}
4392
abf85f46
JK
4393/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4394 or its equivalent. */
4395
4396static int
4397command_line_is_silent (struct command_line *cmd)
4398{
4f45d445 4399 return cmd && (strcmp ("silent", cmd->line) == 0);
abf85f46
JK
4400}
4401
4a64f543
MS
4402/* Execute all the commands associated with all the breakpoints at
4403 this location. Any of these commands could cause the process to
4404 proceed beyond this point, etc. We look out for such changes by
4405 checking the global "breakpoint_proceeded" after each command.
c906108c 4406
347bddb7
PA
4407 Returns true if a breakpoint command resumed the inferior. In that
4408 case, it is the caller's responsibility to recall it again with the
4409 bpstat of the current thread. */
4410
4411static int
4412bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4413{
4414 bpstat bs;
347bddb7 4415 int again = 0;
c906108c
SS
4416
4417 /* Avoid endless recursion if a `source' command is contained
4418 in bs->commands. */
4419 if (executing_breakpoint_commands)
347bddb7 4420 return 0;
c906108c 4421
81b1e71c
TT
4422 scoped_restore save_executing
4423 = make_scoped_restore (&executing_breakpoint_commands, 1);
c906108c 4424
1ac32117 4425 scoped_restore preventer = prevent_dont_repeat ();
cf6c5ffb 4426
4a64f543 4427 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4428 bs = *bsp;
4429
4430 breakpoint_proceeded = 0;
4431 for (; bs != NULL; bs = bs->next)
4432 {
d1b0a7bf 4433 struct command_line *cmd = NULL;
6c50ab1c
JB
4434
4435 /* Take ownership of the BSP's command tree, if it has one.
4436
4437 The command tree could legitimately contain commands like
4438 'step' and 'next', which call clear_proceed_status, which
4439 frees stop_bpstat's command tree. To make sure this doesn't
4440 free the tree we're executing out from under us, we need to
4441 take ownership of the tree ourselves. Since a given bpstat's
4442 commands are only executed once, we don't need to copy it; we
4443 can clear the pointer in the bpstat, and make sure we free
4444 the tree when we're done. */
d1b0a7bf 4445 counted_command_line ccmd = bs->commands;
9add0f1b 4446 bs->commands = NULL;
d1b0a7bf
TT
4447 if (ccmd != NULL)
4448 cmd = ccmd.get ();
abf85f46
JK
4449 if (command_line_is_silent (cmd))
4450 {
4451 /* The action has been already done by bpstat_stop_status. */
4452 cmd = cmd->next;
4453 }
6c50ab1c 4454
c906108c
SS
4455 while (cmd != NULL)
4456 {
4457 execute_control_command (cmd);
4458
4459 if (breakpoint_proceeded)
4460 break;
4461 else
4462 cmd = cmd->next;
4463 }
6c50ab1c 4464
c906108c 4465 if (breakpoint_proceeded)
32c1e744 4466 {
cb814510 4467 if (current_ui->async)
347bddb7
PA
4468 /* If we are in async mode, then the target might be still
4469 running, not stopped at any breakpoint, so nothing for
4470 us to do here -- just return to the event loop. */
4471 ;
32c1e744
VP
4472 else
4473 /* In sync mode, when execute_control_command returns
4474 we're already standing on the next breakpoint.
347bddb7
PA
4475 Breakpoint commands for that stop were not run, since
4476 execute_command does not run breakpoint commands --
4477 only command_line_handler does, but that one is not
4478 involved in execution of breakpoint commands. So, we
4479 can now execute breakpoint commands. It should be
4480 noted that making execute_command do bpstat actions is
4481 not an option -- in this case we'll have recursive
4482 invocation of bpstat for each breakpoint with a
4483 command, and can easily blow up GDB stack. Instead, we
4484 return true, which will trigger the caller to recall us
4485 with the new stop_bpstat. */
4486 again = 1;
4487 break;
32c1e744 4488 }
c906108c 4489 }
347bddb7
PA
4490 return again;
4491}
4492
4493void
4494bpstat_do_actions (void)
4495{
353d1d73
JK
4496 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4497
347bddb7
PA
4498 /* Do any commands attached to breakpoint we are stopped at. */
4499 while (!ptid_equal (inferior_ptid, null_ptid)
4500 && target_has_execution
4501 && !is_exited (inferior_ptid)
4502 && !is_executing (inferior_ptid))
4503 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4504 and only return when it is stopped at the next breakpoint, we
4505 keep doing breakpoint actions until it returns false to
4506 indicate the inferior was not resumed. */
16c381f0 4507 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 4508 break;
353d1d73
JK
4509
4510 discard_cleanups (cleanup_if_error);
c906108c
SS
4511}
4512
fa4727a6
DJ
4513/* Print out the (old or new) value associated with a watchpoint. */
4514
4515static void
4516watchpoint_value_print (struct value *val, struct ui_file *stream)
4517{
4518 if (val == NULL)
4519 fprintf_unfiltered (stream, _("<unreadable>"));
4520 else
79a45b7d
TT
4521 {
4522 struct value_print_options opts;
4523 get_user_print_options (&opts);
4524 value_print (val, stream, &opts);
4525 }
fa4727a6
DJ
4526}
4527
f303dbd6
PA
4528/* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4529 debugging multiple threads. */
4530
4531void
4532maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4533{
112e8700 4534 if (uiout->is_mi_like_p ())
f303dbd6
PA
4535 return;
4536
112e8700 4537 uiout->text ("\n");
f303dbd6
PA
4538
4539 if (show_thread_that_caused_stop ())
4540 {
4541 const char *name;
4542 struct thread_info *thr = inferior_thread ();
4543
112e8700
SM
4544 uiout->text ("Thread ");
4545 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
f303dbd6
PA
4546
4547 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4548 if (name != NULL)
4549 {
112e8700
SM
4550 uiout->text (" \"");
4551 uiout->field_fmt ("name", "%s", name);
4552 uiout->text ("\"");
f303dbd6
PA
4553 }
4554
112e8700 4555 uiout->text (" hit ");
f303dbd6
PA
4556 }
4557}
4558
e514a9d6 4559/* Generic routine for printing messages indicating why we
4a64f543 4560 stopped. The behavior of this function depends on the value
e514a9d6
JM
4561 'print_it' in the bpstat structure. Under some circumstances we
4562 may decide not to print anything here and delegate the task to
4a64f543 4563 normal_stop(). */
e514a9d6
JM
4564
4565static enum print_stop_action
4566print_bp_stop_message (bpstat bs)
4567{
4568 switch (bs->print_it)
4569 {
4570 case print_it_noop:
4a64f543 4571 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4572 return PRINT_UNKNOWN;
4573 break;
4574
4575 case print_it_done:
4576 /* We still want to print the frame, but we already printed the
4a64f543 4577 relevant messages. */
e514a9d6
JM
4578 return PRINT_SRC_AND_LOC;
4579 break;
4580
4581 case print_it_normal:
4f8d1dc6 4582 {
f431efe5
PA
4583 struct breakpoint *b = bs->breakpoint_at;
4584
1a6a67de
TJB
4585 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4586 which has since been deleted. */
4587 if (b == NULL)
4588 return PRINT_UNKNOWN;
4589
348d480f
PA
4590 /* Normal case. Call the breakpoint's print_it method. */
4591 return b->ops->print_it (bs);
4f8d1dc6 4592 }
348d480f 4593 break;
3086aeae 4594
e514a9d6 4595 default:
8e65ff28 4596 internal_error (__FILE__, __LINE__,
e2e0b3e5 4597 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4598 break;
c906108c 4599 }
c906108c
SS
4600}
4601
edcc5120
TT
4602/* A helper function that prints a shared library stopped event. */
4603
4604static void
4605print_solib_event (int is_catchpoint)
4606{
4607 int any_deleted
4608 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4609 int any_added
4610 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4611
4612 if (!is_catchpoint)
4613 {
4614 if (any_added || any_deleted)
112e8700 4615 current_uiout->text (_("Stopped due to shared library event:\n"));
edcc5120 4616 else
112e8700
SM
4617 current_uiout->text (_("Stopped due to shared library event (no "
4618 "libraries added or removed)\n"));
edcc5120
TT
4619 }
4620
112e8700
SM
4621 if (current_uiout->is_mi_like_p ())
4622 current_uiout->field_string ("reason",
4623 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
edcc5120
TT
4624
4625 if (any_deleted)
4626 {
edcc5120
TT
4627 char *name;
4628 int ix;
4629
112e8700 4630 current_uiout->text (_(" Inferior unloaded "));
10f489e5 4631 ui_out_emit_list list_emitter (current_uiout, "removed");
edcc5120
TT
4632 for (ix = 0;
4633 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4634 ix, name);
4635 ++ix)
4636 {
4637 if (ix > 0)
112e8700
SM
4638 current_uiout->text (" ");
4639 current_uiout->field_string ("library", name);
4640 current_uiout->text ("\n");
edcc5120 4641 }
edcc5120
TT
4642 }
4643
4644 if (any_added)
4645 {
4646 struct so_list *iter;
4647 int ix;
edcc5120 4648
112e8700 4649 current_uiout->text (_(" Inferior loaded "));
10f489e5 4650 ui_out_emit_list list_emitter (current_uiout, "added");
edcc5120
TT
4651 for (ix = 0;
4652 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4653 ix, iter);
4654 ++ix)
4655 {
4656 if (ix > 0)
112e8700
SM
4657 current_uiout->text (" ");
4658 current_uiout->field_string ("library", iter->so_name);
4659 current_uiout->text ("\n");
edcc5120 4660 }
edcc5120
TT
4661 }
4662}
4663
e514a9d6
JM
4664/* Print a message indicating what happened. This is called from
4665 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4666 list - a list of the eventpoints that caused this stop. KIND is
4667 the target_waitkind for the stopping event. This
e514a9d6
JM
4668 routine calls the generic print routine for printing a message
4669 about reasons for stopping. This will print (for example) the
4670 "Breakpoint n," part of the output. The return value of this
4671 routine is one of:
c906108c 4672
4a64f543 4673 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4674 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4675 code to print the location. An example is
c5aa993b
JM
4676 "Breakpoint 1, " which should be followed by
4677 the location.
917317f4 4678 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4679 to also print the location part of the message.
4680 An example is the catch/throw messages, which
4a64f543 4681 don't require a location appended to the end.
917317f4 4682 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4683 further info to be printed. */
c906108c 4684
917317f4 4685enum print_stop_action
36dfb11c 4686bpstat_print (bpstat bs, int kind)
c906108c 4687{
f486487f 4688 enum print_stop_action val;
c5aa993b 4689
c906108c 4690 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4691 (Currently all watchpoints go on the bpstat whether hit or not.
4692 That probably could (should) be changed, provided care is taken
c906108c 4693 with respect to bpstat_explains_signal). */
e514a9d6
JM
4694 for (; bs; bs = bs->next)
4695 {
4696 val = print_bp_stop_message (bs);
4697 if (val == PRINT_SRC_ONLY
4698 || val == PRINT_SRC_AND_LOC
4699 || val == PRINT_NOTHING)
4700 return val;
4701 }
c906108c 4702
36dfb11c
TT
4703 /* If we had hit a shared library event breakpoint,
4704 print_bp_stop_message would print out this message. If we hit an
4705 OS-level shared library event, do the same thing. */
4706 if (kind == TARGET_WAITKIND_LOADED)
4707 {
edcc5120 4708 print_solib_event (0);
36dfb11c
TT
4709 return PRINT_NOTHING;
4710 }
4711
e514a9d6 4712 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4713 with and nothing was printed. */
917317f4 4714 return PRINT_UNKNOWN;
c906108c
SS
4715}
4716
bf469271 4717/* Evaluate the boolean expression EXP and return the result. */
c906108c 4718
bf469271
PA
4719static bool
4720breakpoint_cond_eval (expression *exp)
c906108c 4721{
278cd55f 4722 struct value *mark = value_mark ();
bf469271 4723 bool res = value_true (evaluate_expression (exp));
cc59ec59 4724
c906108c 4725 value_free_to_mark (mark);
bf469271 4726 return res;
c906108c
SS
4727}
4728
5760d0ab 4729/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c 4730
04afa70c
TT
4731bpstats::bpstats (struct bp_location *bl, bpstat **bs_link_pointer)
4732 : next (NULL),
4733 bp_location_at (bl),
4734 breakpoint_at (bl->owner),
4735 commands (NULL),
4736 old_val (NULL),
4737 print (0),
4738 stop (0),
4739 print_it (print_it_normal)
c906108c 4740{
f431efe5 4741 incref_bp_location (bl);
04afa70c
TT
4742 **bs_link_pointer = this;
4743 *bs_link_pointer = &next;
4744}
4745
4746bpstats::bpstats ()
4747 : next (NULL),
4748 bp_location_at (NULL),
4749 breakpoint_at (NULL),
4750 commands (NULL),
4751 old_val (NULL),
4752 print (0),
4753 stop (0),
4754 print_it (print_it_normal)
4755{
c906108c
SS
4756}
4757\f
d983da9c
DJ
4758/* The target has stopped with waitstatus WS. Check if any hardware
4759 watchpoints have triggered, according to the target. */
4760
4761int
4762watchpoints_triggered (struct target_waitstatus *ws)
4763{
d92524f1 4764 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
4765 CORE_ADDR addr;
4766 struct breakpoint *b;
4767
4768 if (!stopped_by_watchpoint)
4769 {
4770 /* We were not stopped by a watchpoint. Mark all watchpoints
4771 as not triggered. */
4772 ALL_BREAKPOINTS (b)
cc60f2e3 4773 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4774 {
4775 struct watchpoint *w = (struct watchpoint *) b;
4776
4777 w->watchpoint_triggered = watch_triggered_no;
4778 }
d983da9c
DJ
4779
4780 return 0;
4781 }
4782
4783 if (!target_stopped_data_address (&current_target, &addr))
4784 {
4785 /* We were stopped by a watchpoint, but we don't know where.
4786 Mark all watchpoints as unknown. */
4787 ALL_BREAKPOINTS (b)
cc60f2e3 4788 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4789 {
4790 struct watchpoint *w = (struct watchpoint *) b;
4791
4792 w->watchpoint_triggered = watch_triggered_unknown;
4793 }
d983da9c 4794
3c4797ba 4795 return 1;
d983da9c
DJ
4796 }
4797
4798 /* The target could report the data address. Mark watchpoints
4799 affected by this data address as triggered, and all others as not
4800 triggered. */
4801
4802 ALL_BREAKPOINTS (b)
cc60f2e3 4803 if (is_hardware_watchpoint (b))
d983da9c 4804 {
3a5c3e22 4805 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 4806 struct bp_location *loc;
d983da9c 4807
3a5c3e22 4808 w->watchpoint_triggered = watch_triggered_no;
a5606eee 4809 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 4810 {
3a5c3e22 4811 if (is_masked_watchpoint (b))
9c06b0b4 4812 {
3a5c3e22
PA
4813 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4814 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
4815
4816 if (newaddr == start)
4817 {
3a5c3e22 4818 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4819 break;
4820 }
4821 }
4822 /* Exact match not required. Within range is sufficient. */
4823 else if (target_watchpoint_addr_within_range (&current_target,
4824 addr, loc->address,
4825 loc->length))
4826 {
3a5c3e22 4827 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4828 break;
4829 }
4830 }
d983da9c
DJ
4831 }
4832
4833 return 1;
4834}
4835
bf469271
PA
4836/* Possible return values for watchpoint_check. */
4837enum wp_check_result
4838 {
4839 /* The watchpoint has been deleted. */
4840 WP_DELETED = 1,
4841
4842 /* The value has changed. */
4843 WP_VALUE_CHANGED = 2,
4844
4845 /* The value has not changed. */
4846 WP_VALUE_NOT_CHANGED = 3,
4847
4848 /* Ignore this watchpoint, no matter if the value changed or not. */
4849 WP_IGNORE = 4,
4850 };
c906108c
SS
4851
4852#define BP_TEMPFLAG 1
4853#define BP_HARDWAREFLAG 2
4854
4a64f543 4855/* Evaluate watchpoint condition expression and check if its value
bf469271 4856 changed. */
553e4c11 4857
bf469271
PA
4858static wp_check_result
4859watchpoint_check (bpstat bs)
c906108c 4860{
3a5c3e22 4861 struct watchpoint *b;
c906108c
SS
4862 struct frame_info *fr;
4863 int within_current_scope;
4864
f431efe5 4865 /* BS is built from an existing struct breakpoint. */
2bdf28a0 4866 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 4867 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 4868
f6bc2008
PA
4869 /* If this is a local watchpoint, we only want to check if the
4870 watchpoint frame is in scope if the current thread is the thread
4871 that was used to create the watchpoint. */
4872 if (!watchpoint_in_thread_scope (b))
60e1c644 4873 return WP_IGNORE;
f6bc2008 4874
c906108c
SS
4875 if (b->exp_valid_block == NULL)
4876 within_current_scope = 1;
4877 else
4878 {
edb3359d
DJ
4879 struct frame_info *frame = get_current_frame ();
4880 struct gdbarch *frame_arch = get_frame_arch (frame);
4881 CORE_ADDR frame_pc = get_frame_pc (frame);
4882
c9cf6e20 4883 /* stack_frame_destroyed_p() returns a non-zero value if we're
4a64f543
MS
4884 still in the function but the stack frame has already been
4885 invalidated. Since we can't rely on the values of local
4886 variables after the stack has been destroyed, we are treating
4887 the watchpoint in that state as `not changed' without further
4888 checking. Don't mark watchpoints as changed if the current
4889 frame is in an epilogue - even if they are in some other
4890 frame, our view of the stack is likely to be wrong and
4891 frame_find_by_id could error out. */
c9cf6e20 4892 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
60e1c644 4893 return WP_IGNORE;
a0f49112 4894
101dcfbe 4895 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 4896 within_current_scope = (fr != NULL);
69fbadd5
DJ
4897
4898 /* If we've gotten confused in the unwinder, we might have
4899 returned a frame that can't describe this variable. */
edb3359d
DJ
4900 if (within_current_scope)
4901 {
4902 struct symbol *function;
4903
4904 function = get_frame_function (fr);
4905 if (function == NULL
4906 || !contained_in (b->exp_valid_block,
4907 SYMBOL_BLOCK_VALUE (function)))
4908 within_current_scope = 0;
4909 }
69fbadd5 4910
edb3359d 4911 if (within_current_scope)
c906108c
SS
4912 /* If we end up stopping, the current frame will get selected
4913 in normal_stop. So this call to select_frame won't affect
4914 the user. */
0f7d239c 4915 select_frame (fr);
c906108c 4916 }
c5aa993b 4917
c906108c
SS
4918 if (within_current_scope)
4919 {
4a64f543
MS
4920 /* We use value_{,free_to_}mark because it could be a *long*
4921 time before we return to the command level and call
4922 free_all_values. We can't call free_all_values because we
4923 might be in the middle of evaluating a function call. */
c906108c 4924
0cf6dd15 4925 int pc = 0;
9c06b0b4 4926 struct value *mark;
fa4727a6
DJ
4927 struct value *new_val;
4928
c1fc2657 4929 if (is_masked_watchpoint (b))
9c06b0b4
TJB
4930 /* Since we don't know the exact trigger address (from
4931 stopped_data_address), just tell the user we've triggered
4932 a mask watchpoint. */
4933 return WP_VALUE_CHANGED;
4934
4935 mark = value_mark ();
4d01a485 4936 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
218d2fc6 4937
bb9d5f81
PP
4938 if (b->val_bitsize != 0)
4939 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
4940
4a64f543
MS
4941 /* We use value_equal_contents instead of value_equal because
4942 the latter coerces an array to a pointer, thus comparing just
4943 the address of the array instead of its contents. This is
4944 not what we want. */
fa4727a6 4945 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 4946 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 4947 {
fa4727a6
DJ
4948 if (new_val != NULL)
4949 {
4950 release_value (new_val);
4951 value_free_to_mark (mark);
4952 }
c906108c
SS
4953 bs->old_val = b->val;
4954 b->val = new_val;
fa4727a6 4955 b->val_valid = 1;
c906108c
SS
4956 return WP_VALUE_CHANGED;
4957 }
4958 else
4959 {
60e1c644 4960 /* Nothing changed. */
c906108c 4961 value_free_to_mark (mark);
c906108c
SS
4962 return WP_VALUE_NOT_CHANGED;
4963 }
4964 }
4965 else
4966 {
4967 /* This seems like the only logical thing to do because
c5aa993b
JM
4968 if we temporarily ignored the watchpoint, then when
4969 we reenter the block in which it is valid it contains
4970 garbage (in the case of a function, it may have two
4971 garbage values, one before and one after the prologue).
4972 So we can't even detect the first assignment to it and
4973 watch after that (since the garbage may or may not equal
4974 the first value assigned). */
348d480f
PA
4975 /* We print all the stop information in
4976 breakpoint_ops->print_it, but in this case, by the time we
4977 call breakpoint_ops->print_it this bp will be deleted
4978 already. So we have no choice but print the information
4979 here. */
468afe6c 4980
0e454242 4981 SWITCH_THRU_ALL_UIS ()
468afe6c
PA
4982 {
4983 struct ui_out *uiout = current_uiout;
4984
112e8700
SM
4985 if (uiout->is_mi_like_p ())
4986 uiout->field_string
4987 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
4988 uiout->text ("\nWatchpoint ");
c1fc2657 4989 uiout->field_int ("wpnum", b->number);
112e8700 4990 uiout->text (" deleted because the program has left the block in\n"
468afe6c
PA
4991 "which its expression is valid.\n");
4992 }
4ce44c66 4993
cdac0397 4994 /* Make sure the watchpoint's commands aren't executed. */
d1b0a7bf 4995 b->commands = NULL;
d0fb5eae 4996 watchpoint_del_at_next_stop (b);
c906108c
SS
4997
4998 return WP_DELETED;
4999 }
5000}
5001
18a18393 5002/* Return true if it looks like target has stopped due to hitting
348d480f
PA
5003 breakpoint location BL. This function does not check if we should
5004 stop, only if BL explains the stop. */
5005
18a18393 5006static int
6c95b8df 5007bpstat_check_location (const struct bp_location *bl,
accd0bcd 5008 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 5009 const struct target_waitstatus *ws)
18a18393
VP
5010{
5011 struct breakpoint *b = bl->owner;
5012
348d480f 5013 /* BL is from an existing breakpoint. */
2bdf28a0
JK
5014 gdb_assert (b != NULL);
5015
bd522513 5016 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
5017}
5018
3a5c3e22
PA
5019/* Determine if the watched values have actually changed, and we
5020 should stop. If not, set BS->stop to 0. */
5021
18a18393
VP
5022static void
5023bpstat_check_watchpoint (bpstat bs)
5024{
2bdf28a0 5025 const struct bp_location *bl;
3a5c3e22 5026 struct watchpoint *b;
2bdf28a0
JK
5027
5028 /* BS is built for existing struct breakpoint. */
f431efe5 5029 bl = bs->bp_location_at;
2bdf28a0 5030 gdb_assert (bl != NULL);
3a5c3e22 5031 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 5032 gdb_assert (b != NULL);
18a18393 5033
18a18393 5034 {
18a18393
VP
5035 int must_check_value = 0;
5036
c1fc2657 5037 if (b->type == bp_watchpoint)
18a18393
VP
5038 /* For a software watchpoint, we must always check the
5039 watched value. */
5040 must_check_value = 1;
5041 else if (b->watchpoint_triggered == watch_triggered_yes)
5042 /* We have a hardware watchpoint (read, write, or access)
5043 and the target earlier reported an address watched by
5044 this watchpoint. */
5045 must_check_value = 1;
5046 else if (b->watchpoint_triggered == watch_triggered_unknown
c1fc2657 5047 && b->type == bp_hardware_watchpoint)
18a18393
VP
5048 /* We were stopped by a hardware watchpoint, but the target could
5049 not report the data address. We must check the watchpoint's
5050 value. Access and read watchpoints are out of luck; without
5051 a data address, we can't figure it out. */
5052 must_check_value = 1;
3a5c3e22 5053
18a18393
VP
5054 if (must_check_value)
5055 {
bf469271
PA
5056 wp_check_result e;
5057
5058 TRY
5059 {
5060 e = watchpoint_check (bs);
5061 }
5062 CATCH (ex, RETURN_MASK_ALL)
5063 {
5064 exception_fprintf (gdb_stderr, ex,
5065 "Error evaluating expression "
5066 "for watchpoint %d\n",
5067 b->number);
5068
5069 SWITCH_THRU_ALL_UIS ()
5070 {
5071 printf_filtered (_("Watchpoint %d deleted.\n"),
5072 b->number);
5073 }
5074 watchpoint_del_at_next_stop (b);
5075 e = WP_DELETED;
5076 }
5077 END_CATCH
5078
18a18393
VP
5079 switch (e)
5080 {
5081 case WP_DELETED:
5082 /* We've already printed what needs to be printed. */
5083 bs->print_it = print_it_done;
5084 /* Stop. */
5085 break;
60e1c644
PA
5086 case WP_IGNORE:
5087 bs->print_it = print_it_noop;
5088 bs->stop = 0;
5089 break;
18a18393 5090 case WP_VALUE_CHANGED:
c1fc2657 5091 if (b->type == bp_read_watchpoint)
18a18393 5092 {
85d721b8
PA
5093 /* There are two cases to consider here:
5094
4a64f543 5095 1. We're watching the triggered memory for reads.
85d721b8
PA
5096 In that case, trust the target, and always report
5097 the watchpoint hit to the user. Even though
5098 reads don't cause value changes, the value may
5099 have changed since the last time it was read, and
5100 since we're not trapping writes, we will not see
5101 those, and as such we should ignore our notion of
5102 old value.
5103
4a64f543 5104 2. We're watching the triggered memory for both
85d721b8
PA
5105 reads and writes. There are two ways this may
5106 happen:
5107
4a64f543 5108 2.1. This is a target that can't break on data
85d721b8
PA
5109 reads only, but can break on accesses (reads or
5110 writes), such as e.g., x86. We detect this case
5111 at the time we try to insert read watchpoints.
5112
4a64f543 5113 2.2. Otherwise, the target supports read
85d721b8
PA
5114 watchpoints, but, the user set an access or write
5115 watchpoint watching the same memory as this read
5116 watchpoint.
5117
5118 If we're watching memory writes as well as reads,
5119 ignore watchpoint hits when we find that the
5120 value hasn't changed, as reads don't cause
5121 changes. This still gives false positives when
5122 the program writes the same value to memory as
5123 what there was already in memory (we will confuse
5124 it for a read), but it's much better than
5125 nothing. */
5126
5127 int other_write_watchpoint = 0;
5128
5129 if (bl->watchpoint_type == hw_read)
5130 {
5131 struct breakpoint *other_b;
5132
5133 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5134 if (other_b->type == bp_hardware_watchpoint
5135 || other_b->type == bp_access_watchpoint)
85d721b8 5136 {
3a5c3e22
PA
5137 struct watchpoint *other_w =
5138 (struct watchpoint *) other_b;
5139
5140 if (other_w->watchpoint_triggered
5141 == watch_triggered_yes)
5142 {
5143 other_write_watchpoint = 1;
5144 break;
5145 }
85d721b8
PA
5146 }
5147 }
5148
5149 if (other_write_watchpoint
5150 || bl->watchpoint_type == hw_access)
5151 {
5152 /* We're watching the same memory for writes,
5153 and the value changed since the last time we
5154 updated it, so this trap must be for a write.
5155 Ignore it. */
5156 bs->print_it = print_it_noop;
5157 bs->stop = 0;
5158 }
18a18393
VP
5159 }
5160 break;
5161 case WP_VALUE_NOT_CHANGED:
c1fc2657
SM
5162 if (b->type == bp_hardware_watchpoint
5163 || b->type == bp_watchpoint)
18a18393
VP
5164 {
5165 /* Don't stop: write watchpoints shouldn't fire if
5166 the value hasn't changed. */
5167 bs->print_it = print_it_noop;
5168 bs->stop = 0;
5169 }
5170 /* Stop. */
5171 break;
5172 default:
5173 /* Can't happen. */
18a18393
VP
5174 break;
5175 }
5176 }
5177 else /* must_check_value == 0 */
5178 {
5179 /* This is a case where some watchpoint(s) triggered, but
5180 not at the address of this watchpoint, or else no
5181 watchpoint triggered after all. So don't print
5182 anything for this watchpoint. */
5183 bs->print_it = print_it_noop;
5184 bs->stop = 0;
5185 }
5186 }
5187}
5188
7d4df6a4
DE
5189/* For breakpoints that are currently marked as telling gdb to stop,
5190 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5191 of breakpoint referred to by BS. If we should not stop for this
5192 breakpoint, set BS->stop to 0. */
f431efe5 5193
18a18393
VP
5194static void
5195bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5196{
2bdf28a0
JK
5197 const struct bp_location *bl;
5198 struct breakpoint *b;
bf469271
PA
5199 /* Assume stop. */
5200 bool condition_result = true;
7d4df6a4
DE
5201 struct expression *cond;
5202
5203 gdb_assert (bs->stop);
2bdf28a0
JK
5204
5205 /* BS is built for existing struct breakpoint. */
f431efe5 5206 bl = bs->bp_location_at;
2bdf28a0 5207 gdb_assert (bl != NULL);
f431efe5 5208 b = bs->breakpoint_at;
2bdf28a0 5209 gdb_assert (b != NULL);
18a18393 5210
b775012e
LM
5211 /* Even if the target evaluated the condition on its end and notified GDB, we
5212 need to do so again since GDB does not know if we stopped due to a
5213 breakpoint or a single step breakpoint. */
5214
18a18393 5215 if (frame_id_p (b->frame_id)
edb3359d 5216 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5217 {
7d4df6a4
DE
5218 bs->stop = 0;
5219 return;
5220 }
60e1c644 5221
12ab52e9
PA
5222 /* If this is a thread/task-specific breakpoint, don't waste cpu
5223 evaluating the condition if this isn't the specified
5224 thread/task. */
5d5658a1 5225 if ((b->thread != -1 && b->thread != ptid_to_global_thread_id (ptid))
12ab52e9
PA
5226 || (b->task != 0 && b->task != ada_get_task_number (ptid)))
5227
6c1b0f7b
DE
5228 {
5229 bs->stop = 0;
5230 return;
5231 }
5232
6dddc817
DE
5233 /* Evaluate extension language breakpoints that have a "stop" method
5234 implemented. */
5235 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
7371cf6d 5236
7d4df6a4
DE
5237 if (is_watchpoint (b))
5238 {
5239 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5240
4d01a485 5241 cond = w->cond_exp.get ();
7d4df6a4
DE
5242 }
5243 else
4d01a485 5244 cond = bl->cond.get ();
60e1c644 5245
7d4df6a4
DE
5246 if (cond && b->disposition != disp_del_at_next_stop)
5247 {
5248 int within_current_scope = 1;
5249 struct watchpoint * w;
60e1c644 5250
7d4df6a4
DE
5251 /* We use value_mark and value_free_to_mark because it could
5252 be a long time before we return to the command level and
5253 call free_all_values. We can't call free_all_values
5254 because we might be in the middle of evaluating a
5255 function call. */
5256 struct value *mark = value_mark ();
5257
5258 if (is_watchpoint (b))
5259 w = (struct watchpoint *) b;
5260 else
5261 w = NULL;
5262
5263 /* Need to select the frame, with all that implies so that
5264 the conditions will have the right context. Because we
5265 use the frame, we will not see an inlined function's
5266 variables when we arrive at a breakpoint at the start
5267 of the inlined function; the current frame will be the
5268 call site. */
5269 if (w == NULL || w->cond_exp_valid_block == NULL)
5270 select_frame (get_current_frame ());
5271 else
18a18393 5272 {
7d4df6a4
DE
5273 struct frame_info *frame;
5274
5275 /* For local watchpoint expressions, which particular
5276 instance of a local is being watched matters, so we
5277 keep track of the frame to evaluate the expression
5278 in. To evaluate the condition however, it doesn't
5279 really matter which instantiation of the function
5280 where the condition makes sense triggers the
5281 watchpoint. This allows an expression like "watch
5282 global if q > 10" set in `func', catch writes to
5283 global on all threads that call `func', or catch
5284 writes on all recursive calls of `func' by a single
5285 thread. We simply always evaluate the condition in
5286 the innermost frame that's executing where it makes
5287 sense to evaluate the condition. It seems
5288 intuitive. */
5289 frame = block_innermost_frame (w->cond_exp_valid_block);
5290 if (frame != NULL)
5291 select_frame (frame);
5292 else
5293 within_current_scope = 0;
18a18393 5294 }
7d4df6a4 5295 if (within_current_scope)
bf469271
PA
5296 {
5297 TRY
5298 {
5299 condition_result = breakpoint_cond_eval (cond);
5300 }
5301 CATCH (ex, RETURN_MASK_ALL)
5302 {
5303 exception_fprintf (gdb_stderr, ex,
5304 "Error in testing breakpoint condition:\n");
5305 }
5306 END_CATCH
5307 }
7d4df6a4 5308 else
18a18393 5309 {
7d4df6a4
DE
5310 warning (_("Watchpoint condition cannot be tested "
5311 "in the current scope"));
5312 /* If we failed to set the right context for this
5313 watchpoint, unconditionally report it. */
18a18393 5314 }
7d4df6a4
DE
5315 /* FIXME-someday, should give breakpoint #. */
5316 value_free_to_mark (mark);
18a18393 5317 }
7d4df6a4 5318
bf469271 5319 if (cond && !condition_result)
7d4df6a4
DE
5320 {
5321 bs->stop = 0;
5322 }
7d4df6a4
DE
5323 else if (b->ignore_count > 0)
5324 {
5325 b->ignore_count--;
5326 bs->stop = 0;
5327 /* Increase the hit count even though we don't stop. */
5328 ++(b->hit_count);
5329 observer_notify_breakpoint_modified (b);
5330 }
18a18393
VP
5331}
5332
1cf4d951
PA
5333/* Returns true if we need to track moribund locations of LOC's type
5334 on the current target. */
5335
5336static int
5337need_moribund_for_location_type (struct bp_location *loc)
5338{
5339 return ((loc->loc_type == bp_loc_software_breakpoint
5340 && !target_supports_stopped_by_sw_breakpoint ())
5341 || (loc->loc_type == bp_loc_hardware_breakpoint
5342 && !target_supports_stopped_by_hw_breakpoint ()));
5343}
5344
18a18393 5345
9709f61c 5346/* Get a bpstat associated with having just stopped at address
d983da9c 5347 BP_ADDR in thread PTID.
c906108c 5348
d983da9c 5349 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
5350 don't understand this stop. Result is a chain of bpstat's such
5351 that:
c906108c 5352
c5aa993b 5353 if we don't understand the stop, the result is a null pointer.
c906108c 5354
c5aa993b 5355 if we understand why we stopped, the result is not null.
c906108c 5356
c5aa993b
JM
5357 Each element of the chain refers to a particular breakpoint or
5358 watchpoint at which we have stopped. (We may have stopped for
5359 several reasons concurrently.)
c906108c 5360
c5aa993b
JM
5361 Each element of the chain has valid next, breakpoint_at,
5362 commands, FIXME??? fields. */
c906108c
SS
5363
5364bpstat
accd0bcd 5365bpstat_stop_status (const address_space *aspace,
09ac7c10
TT
5366 CORE_ADDR bp_addr, ptid_t ptid,
5367 const struct target_waitstatus *ws)
c906108c 5368{
0d381245 5369 struct breakpoint *b = NULL;
afe38095 5370 struct bp_location *bl;
20874c92 5371 struct bp_location *loc;
5760d0ab
JK
5372 /* First item of allocated bpstat's. */
5373 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 5374 /* Pointer to the last thing in the chain currently. */
5760d0ab 5375 bpstat bs;
20874c92 5376 int ix;
429374b8 5377 int need_remove_insert;
f431efe5 5378 int removed_any;
c906108c 5379
f431efe5
PA
5380 /* First, build the bpstat chain with locations that explain a
5381 target stop, while being careful to not set the target running,
5382 as that may invalidate locations (in particular watchpoint
5383 locations are recreated). Resuming will happen here with
5384 breakpoint conditions or watchpoint expressions that include
5385 inferior function calls. */
c5aa993b 5386
429374b8
JK
5387 ALL_BREAKPOINTS (b)
5388 {
1a853c52 5389 if (!breakpoint_enabled (b))
429374b8 5390 continue;
a5606eee 5391
429374b8
JK
5392 for (bl = b->loc; bl != NULL; bl = bl->next)
5393 {
4a64f543
MS
5394 /* For hardware watchpoints, we look only at the first
5395 location. The watchpoint_check function will work on the
5396 entire expression, not the individual locations. For
5397 read watchpoints, the watchpoints_triggered function has
5398 checked all locations already. */
429374b8
JK
5399 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5400 break;
18a18393 5401
f6592439 5402 if (!bl->enabled || bl->shlib_disabled)
429374b8 5403 continue;
c5aa993b 5404
09ac7c10 5405 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5406 continue;
c5aa993b 5407
4a64f543
MS
5408 /* Come here if it's a watchpoint, or if the break address
5409 matches. */
c5aa993b 5410
04afa70c 5411 bs = new bpstats (bl, &bs_link); /* Alloc a bpstat to
4a64f543 5412 explain stop. */
c5aa993b 5413
f431efe5
PA
5414 /* Assume we stop. Should we find a watchpoint that is not
5415 actually triggered, or if the condition of the breakpoint
5416 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5417 bs->stop = 1;
5418 bs->print = 1;
d983da9c 5419
f431efe5
PA
5420 /* If this is a scope breakpoint, mark the associated
5421 watchpoint as triggered so that we will handle the
5422 out-of-scope event. We'll get to the watchpoint next
5423 iteration. */
d0fb5eae 5424 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5425 {
5426 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5427
5428 w->watchpoint_triggered = watch_triggered_yes;
5429 }
f431efe5
PA
5430 }
5431 }
5432
7c16b83e 5433 /* Check if a moribund breakpoint explains the stop. */
1cf4d951
PA
5434 if (!target_supports_stopped_by_sw_breakpoint ()
5435 || !target_supports_stopped_by_hw_breakpoint ())
f431efe5 5436 {
1cf4d951 5437 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f431efe5 5438 {
1cf4d951
PA
5439 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5440 && need_moribund_for_location_type (loc))
5441 {
04afa70c 5442 bs = new bpstats (loc, &bs_link);
1cf4d951
PA
5443 /* For hits of moribund locations, we should just proceed. */
5444 bs->stop = 0;
5445 bs->print = 0;
5446 bs->print_it = print_it_noop;
5447 }
f431efe5
PA
5448 }
5449 }
5450
edcc5120
TT
5451 /* A bit of special processing for shlib breakpoints. We need to
5452 process solib loading here, so that the lists of loaded and
5453 unloaded libraries are correct before we handle "catch load" and
5454 "catch unload". */
5455 for (bs = bs_head; bs != NULL; bs = bs->next)
5456 {
5d268276 5457 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5458 {
5459 handle_solib_event ();
5460 break;
5461 }
5462 }
5463
f431efe5
PA
5464 /* Now go through the locations that caused the target to stop, and
5465 check whether we're interested in reporting this stop to higher
5466 layers, or whether we should resume the target transparently. */
5467
5468 removed_any = 0;
5469
5760d0ab 5470 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5471 {
5472 if (!bs->stop)
5473 continue;
5474
f431efe5 5475 b = bs->breakpoint_at;
348d480f
PA
5476 b->ops->check_status (bs);
5477 if (bs->stop)
28010a5d 5478 {
348d480f 5479 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 5480
429374b8
JK
5481 if (bs->stop)
5482 {
5483 ++(b->hit_count);
8d3788bd 5484 observer_notify_breakpoint_modified (b);
c906108c 5485
4a64f543 5486 /* We will stop here. */
429374b8
JK
5487 if (b->disposition == disp_disable)
5488 {
816338b5 5489 --(b->enable_count);
1a853c52 5490 if (b->enable_count <= 0)
429374b8 5491 b->enable_state = bp_disabled;
f431efe5 5492 removed_any = 1;
429374b8
JK
5493 }
5494 if (b->silent)
5495 bs->print = 0;
5496 bs->commands = b->commands;
abf85f46 5497 if (command_line_is_silent (bs->commands
d1b0a7bf 5498 ? bs->commands.get () : NULL))
abf85f46 5499 bs->print = 0;
9d6e6e84
HZ
5500
5501 b->ops->after_condition_true (bs);
429374b8
JK
5502 }
5503
348d480f 5504 }
a9b3a50f
PA
5505
5506 /* Print nothing for this entry if we don't stop or don't
5507 print. */
5508 if (!bs->stop || !bs->print)
5509 bs->print_it = print_it_noop;
429374b8 5510 }
876fa593 5511
d983da9c
DJ
5512 /* If we aren't stopping, the value of some hardware watchpoint may
5513 not have changed, but the intermediate memory locations we are
5514 watching may have. Don't bother if we're stopping; this will get
5515 done later. */
d832cb68 5516 need_remove_insert = 0;
5760d0ab
JK
5517 if (! bpstat_causes_stop (bs_head))
5518 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5519 if (!bs->stop
f431efe5
PA
5520 && bs->breakpoint_at
5521 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5522 {
3a5c3e22
PA
5523 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5524
5525 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5526 need_remove_insert = 1;
d983da9c
DJ
5527 }
5528
d832cb68 5529 if (need_remove_insert)
44702360 5530 update_global_location_list (UGLL_MAY_INSERT);
f431efe5 5531 else if (removed_any)
44702360 5532 update_global_location_list (UGLL_DONT_INSERT);
d832cb68 5533
5760d0ab 5534 return bs_head;
c906108c 5535}
628fe4e4
JK
5536
5537static void
5538handle_jit_event (void)
5539{
5540 struct frame_info *frame;
5541 struct gdbarch *gdbarch;
5542
243a9253
PA
5543 if (debug_infrun)
5544 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5545
628fe4e4
JK
5546 /* Switch terminal for any messages produced by
5547 breakpoint_re_set. */
223ffa71 5548 target_terminal::ours_for_output ();
628fe4e4
JK
5549
5550 frame = get_current_frame ();
5551 gdbarch = get_frame_arch (frame);
5552
5553 jit_event_handler (gdbarch);
5554
223ffa71 5555 target_terminal::inferior ();
628fe4e4
JK
5556}
5557
5558/* Prepare WHAT final decision for infrun. */
5559
5560/* Decide what infrun needs to do with this bpstat. */
5561
c906108c 5562struct bpstat_what
0e30163f 5563bpstat_what (bpstat bs_head)
c906108c 5564{
c906108c 5565 struct bpstat_what retval;
0e30163f 5566 bpstat bs;
c906108c 5567
628fe4e4 5568 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5569 retval.call_dummy = STOP_NONE;
186c406b 5570 retval.is_longjmp = 0;
628fe4e4 5571
0e30163f 5572 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5573 {
628fe4e4
JK
5574 /* Extract this BS's action. After processing each BS, we check
5575 if its action overrides all we've seem so far. */
5576 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5577 enum bptype bptype;
5578
c906108c 5579 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5580 {
5581 /* I suspect this can happen if it was a momentary
5582 breakpoint which has since been deleted. */
5583 bptype = bp_none;
5584 }
20874c92 5585 else
f431efe5 5586 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5587
5588 switch (bptype)
c906108c
SS
5589 {
5590 case bp_none:
628fe4e4 5591 break;
c906108c
SS
5592 case bp_breakpoint:
5593 case bp_hardware_breakpoint:
7c16b83e 5594 case bp_single_step:
c906108c
SS
5595 case bp_until:
5596 case bp_finish:
a9b3a50f 5597 case bp_shlib_event:
c906108c
SS
5598 if (bs->stop)
5599 {
5600 if (bs->print)
628fe4e4 5601 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5602 else
628fe4e4 5603 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5604 }
5605 else
628fe4e4 5606 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5607 break;
5608 case bp_watchpoint:
5609 case bp_hardware_watchpoint:
5610 case bp_read_watchpoint:
5611 case bp_access_watchpoint:
5612 if (bs->stop)
5613 {
5614 if (bs->print)
628fe4e4 5615 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5616 else
628fe4e4 5617 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5618 }
5619 else
628fe4e4
JK
5620 {
5621 /* There was a watchpoint, but we're not stopping.
5622 This requires no further action. */
5623 }
c906108c
SS
5624 break;
5625 case bp_longjmp:
e2e4d78b 5626 case bp_longjmp_call_dummy:
186c406b 5627 case bp_exception:
0a39bb32
PA
5628 if (bs->stop)
5629 {
5630 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5631 retval.is_longjmp = bptype != bp_exception;
5632 }
5633 else
5634 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5635 break;
5636 case bp_longjmp_resume:
186c406b 5637 case bp_exception_resume:
0a39bb32
PA
5638 if (bs->stop)
5639 {
5640 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5641 retval.is_longjmp = bptype == bp_longjmp_resume;
5642 }
5643 else
5644 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5645 break;
5646 case bp_step_resume:
5647 if (bs->stop)
628fe4e4
JK
5648 this_action = BPSTAT_WHAT_STEP_RESUME;
5649 else
c906108c 5650 {
628fe4e4
JK
5651 /* It is for the wrong frame. */
5652 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5653 }
c906108c 5654 break;
2c03e5be
PA
5655 case bp_hp_step_resume:
5656 if (bs->stop)
5657 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5658 else
5659 {
5660 /* It is for the wrong frame. */
5661 this_action = BPSTAT_WHAT_SINGLE;
5662 }
5663 break;
c906108c 5664 case bp_watchpoint_scope:
c4093a6a 5665 case bp_thread_event:
1900040c 5666 case bp_overlay_event:
0fd8e87f 5667 case bp_longjmp_master:
aa7d318d 5668 case bp_std_terminate_master:
186c406b 5669 case bp_exception_master:
628fe4e4 5670 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5671 break;
ce78b96d 5672 case bp_catchpoint:
c5aa993b
JM
5673 if (bs->stop)
5674 {
5675 if (bs->print)
628fe4e4 5676 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5677 else
628fe4e4 5678 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5679 }
5680 else
628fe4e4
JK
5681 {
5682 /* There was a catchpoint, but we're not stopping.
5683 This requires no further action. */
5684 }
5685 break;
628fe4e4 5686 case bp_jit_event:
628fe4e4 5687 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5688 break;
c906108c 5689 case bp_call_dummy:
53a5351d
JM
5690 /* Make sure the action is stop (silent or noisy),
5691 so infrun.c pops the dummy frame. */
aa7d318d 5692 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5693 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5694 break;
5695 case bp_std_terminate:
5696 /* Make sure the action is stop (silent or noisy),
5697 so infrun.c pops the dummy frame. */
aa7d318d 5698 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5699 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5700 break;
1042e4c0 5701 case bp_tracepoint:
7a697b8d 5702 case bp_fast_tracepoint:
0fb4aa4b 5703 case bp_static_tracepoint:
1042e4c0
SS
5704 /* Tracepoint hits should not be reported back to GDB, and
5705 if one got through somehow, it should have been filtered
5706 out already. */
5707 internal_error (__FILE__, __LINE__,
7a697b8d 5708 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5709 break;
5710 case bp_gnu_ifunc_resolver:
5711 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5712 this_action = BPSTAT_WHAT_SINGLE;
5713 break;
5714 case bp_gnu_ifunc_resolver_return:
5715 /* The breakpoint will be removed, execution will restart from the
5716 PC of the former breakpoint. */
5717 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5718 break;
e7e0cddf
SS
5719
5720 case bp_dprintf:
a11cfd87
HZ
5721 if (bs->stop)
5722 this_action = BPSTAT_WHAT_STOP_SILENT;
5723 else
5724 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5725 break;
5726
628fe4e4
JK
5727 default:
5728 internal_error (__FILE__, __LINE__,
5729 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5730 }
628fe4e4 5731
325fac50 5732 retval.main_action = std::max (retval.main_action, this_action);
c906108c 5733 }
628fe4e4 5734
243a9253
PA
5735 return retval;
5736}
628fe4e4 5737
243a9253
PA
5738void
5739bpstat_run_callbacks (bpstat bs_head)
5740{
5741 bpstat bs;
628fe4e4 5742
0e30163f
JK
5743 for (bs = bs_head; bs != NULL; bs = bs->next)
5744 {
5745 struct breakpoint *b = bs->breakpoint_at;
5746
5747 if (b == NULL)
5748 continue;
5749 switch (b->type)
5750 {
243a9253
PA
5751 case bp_jit_event:
5752 handle_jit_event ();
5753 break;
0e30163f
JK
5754 case bp_gnu_ifunc_resolver:
5755 gnu_ifunc_resolver_stop (b);
5756 break;
5757 case bp_gnu_ifunc_resolver_return:
5758 gnu_ifunc_resolver_return_stop (b);
5759 break;
5760 }
5761 }
c906108c
SS
5762}
5763
5764/* Nonzero if we should step constantly (e.g. watchpoints on machines
5765 without hardware support). This isn't related to a specific bpstat,
5766 just to things like whether watchpoints are set. */
5767
c5aa993b 5768int
fba45db2 5769bpstat_should_step (void)
c906108c
SS
5770{
5771 struct breakpoint *b;
cc59ec59 5772
c906108c 5773 ALL_BREAKPOINTS (b)
717a8278 5774 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 5775 return 1;
c906108c
SS
5776 return 0;
5777}
5778
67822962
PA
5779int
5780bpstat_causes_stop (bpstat bs)
5781{
5782 for (; bs != NULL; bs = bs->next)
5783 if (bs->stop)
5784 return 1;
5785
5786 return 0;
5787}
5788
c906108c 5789\f
c5aa993b 5790
170b53b2
UW
5791/* Compute a string of spaces suitable to indent the next line
5792 so it starts at the position corresponding to the table column
5793 named COL_NAME in the currently active table of UIOUT. */
5794
5795static char *
5796wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5797{
5798 static char wrap_indent[80];
5799 int i, total_width, width, align;
c5209615 5800 const char *text;
170b53b2
UW
5801
5802 total_width = 0;
112e8700 5803 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
170b53b2
UW
5804 {
5805 if (strcmp (text, col_name) == 0)
5806 {
5807 gdb_assert (total_width < sizeof wrap_indent);
5808 memset (wrap_indent, ' ', total_width);
5809 wrap_indent[total_width] = 0;
5810
5811 return wrap_indent;
5812 }
5813
5814 total_width += width + 1;
5815 }
5816
5817 return NULL;
5818}
5819
b775012e
LM
5820/* Determine if the locations of this breakpoint will have their conditions
5821 evaluated by the target, host or a mix of both. Returns the following:
5822
5823 "host": Host evals condition.
5824 "host or target": Host or Target evals condition.
5825 "target": Target evals condition.
5826*/
5827
5828static const char *
5829bp_condition_evaluator (struct breakpoint *b)
5830{
5831 struct bp_location *bl;
5832 char host_evals = 0;
5833 char target_evals = 0;
5834
5835 if (!b)
5836 return NULL;
5837
5838 if (!is_breakpoint (b))
5839 return NULL;
5840
5841 if (gdb_evaluates_breakpoint_condition_p ()
5842 || !target_supports_evaluation_of_breakpoint_conditions ())
5843 return condition_evaluation_host;
5844
5845 for (bl = b->loc; bl; bl = bl->next)
5846 {
5847 if (bl->cond_bytecode)
5848 target_evals++;
5849 else
5850 host_evals++;
5851 }
5852
5853 if (host_evals && target_evals)
5854 return condition_evaluation_both;
5855 else if (target_evals)
5856 return condition_evaluation_target;
5857 else
5858 return condition_evaluation_host;
5859}
5860
5861/* Determine the breakpoint location's condition evaluator. This is
5862 similar to bp_condition_evaluator, but for locations. */
5863
5864static const char *
5865bp_location_condition_evaluator (struct bp_location *bl)
5866{
5867 if (bl && !is_breakpoint (bl->owner))
5868 return NULL;
5869
5870 if (gdb_evaluates_breakpoint_condition_p ()
5871 || !target_supports_evaluation_of_breakpoint_conditions ())
5872 return condition_evaluation_host;
5873
5874 if (bl && bl->cond_bytecode)
5875 return condition_evaluation_target;
5876 else
5877 return condition_evaluation_host;
5878}
5879
859825b8
JK
5880/* Print the LOC location out of the list of B->LOC locations. */
5881
170b53b2
UW
5882static void
5883print_breakpoint_location (struct breakpoint *b,
5884 struct bp_location *loc)
0d381245 5885{
79a45e25 5886 struct ui_out *uiout = current_uiout;
5ed8105e
PA
5887
5888 scoped_restore_current_program_space restore_pspace;
6c95b8df 5889
859825b8
JK
5890 if (loc != NULL && loc->shlib_disabled)
5891 loc = NULL;
5892
6c95b8df
PA
5893 if (loc != NULL)
5894 set_current_program_space (loc->pspace);
5895
56435ebe 5896 if (b->display_canonical)
d28cd78a 5897 uiout->field_string ("what", event_location_to_string (b->location.get ()));
2f202fde 5898 else if (loc && loc->symtab)
0d381245 5899 {
4a27f119
KS
5900 const struct symbol *sym = loc->symbol;
5901
5902 if (sym == NULL)
5903 sym = find_pc_sect_function (loc->address, loc->section);
5904
0d381245
VP
5905 if (sym)
5906 {
112e8700
SM
5907 uiout->text ("in ");
5908 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
5909 uiout->text (" ");
5910 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
5911 uiout->text ("at ");
0d381245 5912 }
112e8700 5913 uiout->field_string ("file",
05cba821 5914 symtab_to_filename_for_display (loc->symtab));
112e8700 5915 uiout->text (":");
05cba821 5916
112e8700
SM
5917 if (uiout->is_mi_like_p ())
5918 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
0d381245 5919
112e8700 5920 uiout->field_int ("line", loc->line_number);
0d381245 5921 }
859825b8 5922 else if (loc)
0d381245 5923 {
d7e74731 5924 string_file stb;
170b53b2 5925
d7e74731 5926 print_address_symbolic (loc->gdbarch, loc->address, &stb,
22e722e1 5927 demangle, "");
112e8700 5928 uiout->field_stream ("at", stb);
0d381245 5929 }
859825b8 5930 else
f00aae0f 5931 {
d28cd78a
TT
5932 uiout->field_string ("pending",
5933 event_location_to_string (b->location.get ()));
f00aae0f
KS
5934 /* If extra_string is available, it could be holding a condition
5935 or dprintf arguments. In either case, make sure it is printed,
5936 too, but only for non-MI streams. */
112e8700 5937 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
f00aae0f
KS
5938 {
5939 if (b->type == bp_dprintf)
112e8700 5940 uiout->text (",");
f00aae0f 5941 else
112e8700
SM
5942 uiout->text (" ");
5943 uiout->text (b->extra_string);
f00aae0f
KS
5944 }
5945 }
6c95b8df 5946
b775012e
LM
5947 if (loc && is_breakpoint (b)
5948 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5949 && bp_condition_evaluator (b) == condition_evaluation_both)
5950 {
112e8700
SM
5951 uiout->text (" (");
5952 uiout->field_string ("evaluated-by",
b775012e 5953 bp_location_condition_evaluator (loc));
112e8700 5954 uiout->text (")");
b775012e 5955 }
0d381245
VP
5956}
5957
269b11a2
PA
5958static const char *
5959bptype_string (enum bptype type)
c906108c 5960{
c4093a6a
JM
5961 struct ep_type_description
5962 {
5963 enum bptype type;
a121b7c1 5964 const char *description;
c4093a6a
JM
5965 };
5966 static struct ep_type_description bptypes[] =
c906108c 5967 {
c5aa993b
JM
5968 {bp_none, "?deleted?"},
5969 {bp_breakpoint, "breakpoint"},
c906108c 5970 {bp_hardware_breakpoint, "hw breakpoint"},
7c16b83e 5971 {bp_single_step, "sw single-step"},
c5aa993b
JM
5972 {bp_until, "until"},
5973 {bp_finish, "finish"},
5974 {bp_watchpoint, "watchpoint"},
c906108c 5975 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
5976 {bp_read_watchpoint, "read watchpoint"},
5977 {bp_access_watchpoint, "acc watchpoint"},
5978 {bp_longjmp, "longjmp"},
5979 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 5980 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
5981 {bp_exception, "exception"},
5982 {bp_exception_resume, "exception resume"},
c5aa993b 5983 {bp_step_resume, "step resume"},
2c03e5be 5984 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
5985 {bp_watchpoint_scope, "watchpoint scope"},
5986 {bp_call_dummy, "call dummy"},
aa7d318d 5987 {bp_std_terminate, "std::terminate"},
c5aa993b 5988 {bp_shlib_event, "shlib events"},
c4093a6a 5989 {bp_thread_event, "thread events"},
1900040c 5990 {bp_overlay_event, "overlay events"},
0fd8e87f 5991 {bp_longjmp_master, "longjmp master"},
aa7d318d 5992 {bp_std_terminate_master, "std::terminate master"},
186c406b 5993 {bp_exception_master, "exception master"},
ce78b96d 5994 {bp_catchpoint, "catchpoint"},
1042e4c0 5995 {bp_tracepoint, "tracepoint"},
7a697b8d 5996 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 5997 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 5998 {bp_dprintf, "dprintf"},
4efc6507 5999 {bp_jit_event, "jit events"},
0e30163f
JK
6000 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
6001 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 6002 };
269b11a2
PA
6003
6004 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
6005 || ((int) type != bptypes[(int) type].type))
6006 internal_error (__FILE__, __LINE__,
6007 _("bptypes table does not describe type #%d."),
6008 (int) type);
6009
6010 return bptypes[(int) type].description;
6011}
6012
998580f1
MK
6013/* For MI, output a field named 'thread-groups' with a list as the value.
6014 For CLI, prefix the list with the string 'inf'. */
6015
6016static void
6017output_thread_groups (struct ui_out *uiout,
6018 const char *field_name,
5c632425 6019 const std::vector<int> &inf_nums,
998580f1
MK
6020 int mi_only)
6021{
112e8700 6022 int is_mi = uiout->is_mi_like_p ();
998580f1
MK
6023
6024 /* For backward compatibility, don't display inferiors in CLI unless
6025 there are several. Always display them for MI. */
6026 if (!is_mi && mi_only)
6027 return;
6028
10f489e5 6029 ui_out_emit_list list_emitter (uiout, field_name);
752eb8b4 6030
5c632425 6031 for (size_t i = 0; i < inf_nums.size (); i++)
998580f1
MK
6032 {
6033 if (is_mi)
6034 {
6035 char mi_group[10];
6036
5c632425 6037 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf_nums[i]);
112e8700 6038 uiout->field_string (NULL, mi_group);
998580f1
MK
6039 }
6040 else
6041 {
6042 if (i == 0)
112e8700 6043 uiout->text (" inf ");
998580f1 6044 else
112e8700 6045 uiout->text (", ");
998580f1 6046
5c632425 6047 uiout->text (plongest (inf_nums[i]));
998580f1
MK
6048 }
6049 }
998580f1
MK
6050}
6051
269b11a2
PA
6052/* Print B to gdb_stdout. */
6053
6054static void
6055print_one_breakpoint_location (struct breakpoint *b,
6056 struct bp_location *loc,
6057 int loc_number,
6058 struct bp_location **last_loc,
269b11a2
PA
6059 int allflag)
6060{
6061 struct command_line *l;
c2c6d25f 6062 static char bpenables[] = "nynny";
c906108c 6063
79a45e25 6064 struct ui_out *uiout = current_uiout;
0d381245
VP
6065 int header_of_multiple = 0;
6066 int part_of_multiple = (loc != NULL);
79a45b7d
TT
6067 struct value_print_options opts;
6068
6069 get_user_print_options (&opts);
0d381245
VP
6070
6071 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
6072 /* See comment in print_one_breakpoint concerning treatment of
6073 breakpoints with single disabled location. */
0d381245
VP
6074 if (loc == NULL
6075 && (b->loc != NULL
6076 && (b->loc->next != NULL || !b->loc->enabled)))
6077 header_of_multiple = 1;
6078 if (loc == NULL)
6079 loc = b->loc;
6080
c4093a6a
JM
6081 annotate_record ();
6082
6083 /* 1 */
6084 annotate_field (0);
0d381245
VP
6085 if (part_of_multiple)
6086 {
6087 char *formatted;
0c6773c1 6088 formatted = xstrprintf ("%d.%d", b->number, loc_number);
112e8700 6089 uiout->field_string ("number", formatted);
0d381245
VP
6090 xfree (formatted);
6091 }
6092 else
6093 {
112e8700 6094 uiout->field_int ("number", b->number);
0d381245 6095 }
c4093a6a
JM
6096
6097 /* 2 */
6098 annotate_field (1);
0d381245 6099 if (part_of_multiple)
112e8700 6100 uiout->field_skip ("type");
269b11a2 6101 else
112e8700 6102 uiout->field_string ("type", bptype_string (b->type));
c4093a6a
JM
6103
6104 /* 3 */
6105 annotate_field (2);
0d381245 6106 if (part_of_multiple)
112e8700 6107 uiout->field_skip ("disp");
0d381245 6108 else
112e8700 6109 uiout->field_string ("disp", bpdisp_text (b->disposition));
0d381245 6110
c4093a6a
JM
6111
6112 /* 4 */
6113 annotate_field (3);
0d381245 6114 if (part_of_multiple)
112e8700 6115 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
0d381245 6116 else
112e8700
SM
6117 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
6118 uiout->spaces (2);
0d381245 6119
c4093a6a
JM
6120
6121 /* 5 and 6 */
3086aeae 6122 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 6123 {
4a64f543
MS
6124 /* Although the print_one can possibly print all locations,
6125 calling it here is not likely to get any nice result. So,
6126 make sure there's just one location. */
0d381245 6127 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 6128 b->ops->print_one (b, last_loc);
0d381245 6129 }
3086aeae
DJ
6130 else
6131 switch (b->type)
6132 {
6133 case bp_none:
6134 internal_error (__FILE__, __LINE__,
e2e0b3e5 6135 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 6136 break;
c906108c 6137
3086aeae
DJ
6138 case bp_watchpoint:
6139 case bp_hardware_watchpoint:
6140 case bp_read_watchpoint:
6141 case bp_access_watchpoint:
3a5c3e22
PA
6142 {
6143 struct watchpoint *w = (struct watchpoint *) b;
6144
6145 /* Field 4, the address, is omitted (which makes the columns
6146 not line up too nicely with the headers, but the effect
6147 is relatively readable). */
6148 if (opts.addressprint)
112e8700 6149 uiout->field_skip ("addr");
3a5c3e22 6150 annotate_field (5);
112e8700 6151 uiout->field_string ("what", w->exp_string);
3a5c3e22 6152 }
3086aeae
DJ
6153 break;
6154
3086aeae
DJ
6155 case bp_breakpoint:
6156 case bp_hardware_breakpoint:
7c16b83e 6157 case bp_single_step:
3086aeae
DJ
6158 case bp_until:
6159 case bp_finish:
6160 case bp_longjmp:
6161 case bp_longjmp_resume:
e2e4d78b 6162 case bp_longjmp_call_dummy:
186c406b
TT
6163 case bp_exception:
6164 case bp_exception_resume:
3086aeae 6165 case bp_step_resume:
2c03e5be 6166 case bp_hp_step_resume:
3086aeae
DJ
6167 case bp_watchpoint_scope:
6168 case bp_call_dummy:
aa7d318d 6169 case bp_std_terminate:
3086aeae
DJ
6170 case bp_shlib_event:
6171 case bp_thread_event:
6172 case bp_overlay_event:
0fd8e87f 6173 case bp_longjmp_master:
aa7d318d 6174 case bp_std_terminate_master:
186c406b 6175 case bp_exception_master:
1042e4c0 6176 case bp_tracepoint:
7a697b8d 6177 case bp_fast_tracepoint:
0fb4aa4b 6178 case bp_static_tracepoint:
e7e0cddf 6179 case bp_dprintf:
4efc6507 6180 case bp_jit_event:
0e30163f
JK
6181 case bp_gnu_ifunc_resolver:
6182 case bp_gnu_ifunc_resolver_return:
79a45b7d 6183 if (opts.addressprint)
3086aeae
DJ
6184 {
6185 annotate_field (4);
54e52265 6186 if (header_of_multiple)
112e8700 6187 uiout->field_string ("addr", "<MULTIPLE>");
e9bbd7c5 6188 else if (b->loc == NULL || loc->shlib_disabled)
112e8700 6189 uiout->field_string ("addr", "<PENDING>");
0101ce28 6190 else
112e8700 6191 uiout->field_core_addr ("addr",
5af949e3 6192 loc->gdbarch, loc->address);
3086aeae
DJ
6193 }
6194 annotate_field (5);
0d381245 6195 if (!header_of_multiple)
170b53b2 6196 print_breakpoint_location (b, loc);
0d381245 6197 if (b->loc)
a6d9a66e 6198 *last_loc = b->loc;
3086aeae
DJ
6199 break;
6200 }
c906108c 6201
6c95b8df 6202
998580f1 6203 if (loc != NULL && !header_of_multiple)
6c95b8df
PA
6204 {
6205 struct inferior *inf;
5c632425 6206 std::vector<int> inf_nums;
998580f1 6207 int mi_only = 1;
6c95b8df 6208
998580f1 6209 ALL_INFERIORS (inf)
6c95b8df
PA
6210 {
6211 if (inf->pspace == loc->pspace)
5c632425 6212 inf_nums.push_back (inf->num);
6c95b8df 6213 }
998580f1
MK
6214
6215 /* For backward compatibility, don't display inferiors in CLI unless
6216 there are several. Always display for MI. */
6217 if (allflag
6218 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6219 && (number_of_program_spaces () > 1
6220 || number_of_inferiors () > 1)
6221 /* LOC is for existing B, it cannot be in
6222 moribund_locations and thus having NULL OWNER. */
6223 && loc->owner->type != bp_catchpoint))
6224 mi_only = 0;
5c632425 6225 output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
6c95b8df
PA
6226 }
6227
4a306c9a 6228 if (!part_of_multiple)
c4093a6a 6229 {
4a306c9a
JB
6230 if (b->thread != -1)
6231 {
6232 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6233 "stop only in" line a little further down. */
112e8700
SM
6234 uiout->text (" thread ");
6235 uiout->field_int ("thread", b->thread);
4a306c9a
JB
6236 }
6237 else if (b->task != 0)
6238 {
112e8700
SM
6239 uiout->text (" task ");
6240 uiout->field_int ("task", b->task);
4a306c9a 6241 }
c4093a6a 6242 }
f1310107 6243
112e8700 6244 uiout->text ("\n");
f1310107 6245
348d480f 6246 if (!part_of_multiple)
f1310107
TJB
6247 b->ops->print_one_detail (b, uiout);
6248
0d381245 6249 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6250 {
6251 annotate_field (6);
112e8700 6252 uiout->text ("\tstop only in stack frame at ");
e5dd4106 6253 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6254 the frame ID. */
112e8700 6255 uiout->field_core_addr ("frame",
5af949e3 6256 b->gdbarch, b->frame_id.stack_addr);
112e8700 6257 uiout->text ("\n");
c4093a6a
JM
6258 }
6259
28010a5d 6260 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6261 {
6262 annotate_field (7);
d77f58be 6263 if (is_tracepoint (b))
112e8700 6264 uiout->text ("\ttrace only if ");
1042e4c0 6265 else
112e8700
SM
6266 uiout->text ("\tstop only if ");
6267 uiout->field_string ("cond", b->cond_string);
b775012e
LM
6268
6269 /* Print whether the target is doing the breakpoint's condition
6270 evaluation. If GDB is doing the evaluation, don't print anything. */
6271 if (is_breakpoint (b)
6272 && breakpoint_condition_evaluation_mode ()
6273 == condition_evaluation_target)
6274 {
112e8700
SM
6275 uiout->text (" (");
6276 uiout->field_string ("evaluated-by",
b775012e 6277 bp_condition_evaluator (b));
112e8700 6278 uiout->text (" evals)");
b775012e 6279 }
112e8700 6280 uiout->text ("\n");
0101ce28
JJ
6281 }
6282
0d381245 6283 if (!part_of_multiple && b->thread != -1)
c4093a6a 6284 {
4a64f543 6285 /* FIXME should make an annotation for this. */
112e8700
SM
6286 uiout->text ("\tstop only in thread ");
6287 if (uiout->is_mi_like_p ())
6288 uiout->field_int ("thread", b->thread);
5d5658a1
PA
6289 else
6290 {
6291 struct thread_info *thr = find_thread_global_id (b->thread);
6292
112e8700 6293 uiout->field_string ("thread", print_thread_id (thr));
5d5658a1 6294 }
112e8700 6295 uiout->text ("\n");
c4093a6a
JM
6296 }
6297
556ec64d
YQ
6298 if (!part_of_multiple)
6299 {
6300 if (b->hit_count)
31f56a27
YQ
6301 {
6302 /* FIXME should make an annotation for this. */
6303 if (is_catchpoint (b))
112e8700 6304 uiout->text ("\tcatchpoint");
31f56a27 6305 else if (is_tracepoint (b))
112e8700 6306 uiout->text ("\ttracepoint");
31f56a27 6307 else
112e8700
SM
6308 uiout->text ("\tbreakpoint");
6309 uiout->text (" already hit ");
6310 uiout->field_int ("times", b->hit_count);
31f56a27 6311 if (b->hit_count == 1)
112e8700 6312 uiout->text (" time\n");
31f56a27 6313 else
112e8700 6314 uiout->text (" times\n");
31f56a27 6315 }
556ec64d
YQ
6316 else
6317 {
31f56a27 6318 /* Output the count also if it is zero, but only if this is mi. */
112e8700
SM
6319 if (uiout->is_mi_like_p ())
6320 uiout->field_int ("times", b->hit_count);
556ec64d
YQ
6321 }
6322 }
8b93c638 6323
0d381245 6324 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6325 {
6326 annotate_field (8);
112e8700
SM
6327 uiout->text ("\tignore next ");
6328 uiout->field_int ("ignore", b->ignore_count);
6329 uiout->text (" hits\n");
c4093a6a 6330 }
059fb39f 6331
816338b5
SS
6332 /* Note that an enable count of 1 corresponds to "enable once"
6333 behavior, which is reported by the combination of enablement and
6334 disposition, so we don't need to mention it here. */
6335 if (!part_of_multiple && b->enable_count > 1)
6336 {
6337 annotate_field (8);
112e8700 6338 uiout->text ("\tdisable after ");
816338b5
SS
6339 /* Tweak the wording to clarify that ignore and enable counts
6340 are distinct, and have additive effect. */
6341 if (b->ignore_count)
112e8700 6342 uiout->text ("additional ");
816338b5 6343 else
112e8700
SM
6344 uiout->text ("next ");
6345 uiout->field_int ("enable", b->enable_count);
6346 uiout->text (" hits\n");
816338b5
SS
6347 }
6348
f196051f
SS
6349 if (!part_of_multiple && is_tracepoint (b))
6350 {
6351 struct tracepoint *tp = (struct tracepoint *) b;
6352
6353 if (tp->traceframe_usage)
6354 {
112e8700
SM
6355 uiout->text ("\ttrace buffer usage ");
6356 uiout->field_int ("traceframe-usage", tp->traceframe_usage);
6357 uiout->text (" bytes\n");
f196051f
SS
6358 }
6359 }
d3ce09f5 6360
d1b0a7bf 6361 l = b->commands ? b->commands.get () : NULL;
059fb39f 6362 if (!part_of_multiple && l)
c4093a6a
JM
6363 {
6364 annotate_field (9);
2e783024 6365 ui_out_emit_tuple tuple_emitter (uiout, "script");
8b93c638 6366 print_command_lines (uiout, l, 4);
c4093a6a 6367 }
d24317b4 6368
d9b3f62e 6369 if (is_tracepoint (b))
1042e4c0 6370 {
d9b3f62e
PA
6371 struct tracepoint *t = (struct tracepoint *) b;
6372
6373 if (!part_of_multiple && t->pass_count)
6374 {
6375 annotate_field (10);
112e8700
SM
6376 uiout->text ("\tpass count ");
6377 uiout->field_int ("pass", t->pass_count);
6378 uiout->text (" \n");
d9b3f62e 6379 }
f2a8bc8a
YQ
6380
6381 /* Don't display it when tracepoint or tracepoint location is
6382 pending. */
6383 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6384 {
6385 annotate_field (11);
6386
112e8700
SM
6387 if (uiout->is_mi_like_p ())
6388 uiout->field_string ("installed",
f2a8bc8a
YQ
6389 loc->inserted ? "y" : "n");
6390 else
6391 {
6392 if (loc->inserted)
112e8700 6393 uiout->text ("\t");
f2a8bc8a 6394 else
112e8700
SM
6395 uiout->text ("\tnot ");
6396 uiout->text ("installed on target\n");
f2a8bc8a
YQ
6397 }
6398 }
1042e4c0
SS
6399 }
6400
112e8700 6401 if (uiout->is_mi_like_p () && !part_of_multiple)
d24317b4 6402 {
3a5c3e22
PA
6403 if (is_watchpoint (b))
6404 {
6405 struct watchpoint *w = (struct watchpoint *) b;
6406
112e8700 6407 uiout->field_string ("original-location", w->exp_string);
3a5c3e22 6408 }
f00aae0f 6409 else if (b->location != NULL
d28cd78a 6410 && event_location_to_string (b->location.get ()) != NULL)
112e8700 6411 uiout->field_string ("original-location",
d28cd78a 6412 event_location_to_string (b->location.get ()));
d24317b4 6413 }
c4093a6a 6414}
c5aa993b 6415
0d381245
VP
6416static void
6417print_one_breakpoint (struct breakpoint *b,
4a64f543 6418 struct bp_location **last_loc,
6c95b8df 6419 int allflag)
0d381245 6420{
79a45e25 6421 struct ui_out *uiout = current_uiout;
8d3788bd 6422
2e783024
TT
6423 {
6424 ui_out_emit_tuple tuple_emitter (uiout, "bkpt");
8d3788bd 6425
2e783024
TT
6426 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6427 }
0d381245
VP
6428
6429 /* If this breakpoint has custom print function,
6430 it's already printed. Otherwise, print individual
6431 locations, if any. */
6432 if (b->ops == NULL || b->ops->print_one == NULL)
6433 {
4a64f543
MS
6434 /* If breakpoint has a single location that is disabled, we
6435 print it as if it had several locations, since otherwise it's
6436 hard to represent "breakpoint enabled, location disabled"
6437 situation.
6438
6439 Note that while hardware watchpoints have several locations
a3be7890 6440 internally, that's not a property exposed to user. */
0d381245 6441 if (b->loc
a5606eee 6442 && !is_hardware_watchpoint (b)
8d3788bd 6443 && (b->loc->next || !b->loc->enabled))
0d381245
VP
6444 {
6445 struct bp_location *loc;
6446 int n = 1;
8d3788bd 6447
0d381245 6448 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd 6449 {
2e783024 6450 ui_out_emit_tuple tuple_emitter (uiout, NULL);
8d3788bd 6451 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
8d3788bd 6452 }
0d381245
VP
6453 }
6454 }
6455}
6456
a6d9a66e
UW
6457static int
6458breakpoint_address_bits (struct breakpoint *b)
6459{
6460 int print_address_bits = 0;
6461 struct bp_location *loc;
6462
c6d81124
PA
6463 /* Software watchpoints that aren't watching memory don't have an
6464 address to print. */
6465 if (is_no_memory_software_watchpoint (b))
6466 return 0;
6467
a6d9a66e
UW
6468 for (loc = b->loc; loc; loc = loc->next)
6469 {
c7437ca6
PA
6470 int addr_bit;
6471
c7437ca6 6472 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6473 if (addr_bit > print_address_bits)
6474 print_address_bits = addr_bit;
6475 }
6476
6477 return print_address_bits;
6478}
0d381245 6479
65630365 6480/* See breakpoint.h. */
c5aa993b 6481
65630365
PA
6482void
6483print_breakpoint (breakpoint *b)
c4093a6a 6484{
a6d9a66e 6485 struct bp_location *dummy_loc = NULL;
65630365 6486 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6487}
c5aa993b 6488
09d682a4
TT
6489/* Return true if this breakpoint was set by the user, false if it is
6490 internal or momentary. */
6491
6492int
6493user_breakpoint_p (struct breakpoint *b)
6494{
46c6471b 6495 return b->number > 0;
09d682a4
TT
6496}
6497
93daf339
TT
6498/* See breakpoint.h. */
6499
6500int
6501pending_breakpoint_p (struct breakpoint *b)
6502{
6503 return b->loc == NULL;
6504}
6505
7f3b0473 6506/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
6507 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6508 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6509 FILTER is non-NULL, call it on each breakpoint and only include the
6510 ones for which it returns non-zero. Return the total number of
6511 breakpoints listed. */
c906108c 6512
d77f58be 6513static int
4495129a 6514breakpoint_1 (const char *args, int allflag,
4a64f543 6515 int (*filter) (const struct breakpoint *))
c4093a6a 6516{
52f0bd74 6517 struct breakpoint *b;
a6d9a66e 6518 struct bp_location *last_loc = NULL;
7f3b0473 6519 int nr_printable_breakpoints;
79a45b7d 6520 struct value_print_options opts;
a6d9a66e 6521 int print_address_bits = 0;
269b11a2 6522 int print_type_col_width = 14;
79a45e25 6523 struct ui_out *uiout = current_uiout;
269b11a2 6524
79a45b7d
TT
6525 get_user_print_options (&opts);
6526
4a64f543
MS
6527 /* Compute the number of rows in the table, as well as the size
6528 required for address fields. */
7f3b0473
AC
6529 nr_printable_breakpoints = 0;
6530 ALL_BREAKPOINTS (b)
e5a67952
MS
6531 {
6532 /* If we have a filter, only list the breakpoints it accepts. */
6533 if (filter && !filter (b))
6534 continue;
6535
6536 /* If we have an "args" string, it is a list of breakpoints to
6537 accept. Skip the others. */
6538 if (args != NULL && *args != '\0')
6539 {
6540 if (allflag && parse_and_eval_long (args) != b->number)
6541 continue;
6542 if (!allflag && !number_is_in_list (args, b->number))
6543 continue;
6544 }
269b11a2 6545
e5a67952
MS
6546 if (allflag || user_breakpoint_p (b))
6547 {
6548 int addr_bit, type_len;
a6d9a66e 6549
e5a67952
MS
6550 addr_bit = breakpoint_address_bits (b);
6551 if (addr_bit > print_address_bits)
6552 print_address_bits = addr_bit;
269b11a2 6553
e5a67952
MS
6554 type_len = strlen (bptype_string (b->type));
6555 if (type_len > print_type_col_width)
6556 print_type_col_width = type_len;
6557
6558 nr_printable_breakpoints++;
6559 }
6560 }
7f3b0473 6561
4a2b031d
TT
6562 {
6563 ui_out_emit_table table_emitter (uiout,
6564 opts.addressprint ? 6 : 5,
6565 nr_printable_breakpoints,
6566 "BreakpointTable");
6567
6568 if (nr_printable_breakpoints > 0)
6569 annotate_breakpoints_headers ();
6570 if (nr_printable_breakpoints > 0)
6571 annotate_field (0);
6572 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
6573 if (nr_printable_breakpoints > 0)
6574 annotate_field (1);
6575 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
6576 if (nr_printable_breakpoints > 0)
6577 annotate_field (2);
6578 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
6579 if (nr_printable_breakpoints > 0)
6580 annotate_field (3);
6581 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
6582 if (opts.addressprint)
6583 {
6584 if (nr_printable_breakpoints > 0)
6585 annotate_field (4);
6586 if (print_address_bits <= 32)
6587 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
6588 else
6589 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
6590 }
6591 if (nr_printable_breakpoints > 0)
6592 annotate_field (5);
6593 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6594 uiout->table_body ();
6595 if (nr_printable_breakpoints > 0)
6596 annotate_breakpoints_table ();
6597
6598 ALL_BREAKPOINTS (b)
6599 {
6600 QUIT;
6601 /* If we have a filter, only list the breakpoints it accepts. */
6602 if (filter && !filter (b))
6603 continue;
e5a67952 6604
4a2b031d
TT
6605 /* If we have an "args" string, it is a list of breakpoints to
6606 accept. Skip the others. */
e5a67952 6607
4a2b031d
TT
6608 if (args != NULL && *args != '\0')
6609 {
6610 if (allflag) /* maintenance info breakpoint */
6611 {
6612 if (parse_and_eval_long (args) != b->number)
6613 continue;
6614 }
6615 else /* all others */
6616 {
6617 if (!number_is_in_list (args, b->number))
6618 continue;
6619 }
6620 }
6621 /* We only print out user settable breakpoints unless the
6622 allflag is set. */
6623 if (allflag || user_breakpoint_p (b))
6624 print_one_breakpoint (b, &last_loc, allflag);
6625 }
6626 }
698384cd 6627
7f3b0473 6628 if (nr_printable_breakpoints == 0)
c906108c 6629 {
4a64f543
MS
6630 /* If there's a filter, let the caller decide how to report
6631 empty list. */
d77f58be
SS
6632 if (!filter)
6633 {
e5a67952 6634 if (args == NULL || *args == '\0')
112e8700 6635 uiout->message ("No breakpoints or watchpoints.\n");
d77f58be 6636 else
112e8700 6637 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
e5a67952 6638 args);
d77f58be 6639 }
c906108c
SS
6640 }
6641 else
c4093a6a 6642 {
a6d9a66e
UW
6643 if (last_loc && !server_command)
6644 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6645 }
c906108c 6646
4a64f543 6647 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6648 there have been breakpoints? */
c906108c 6649 annotate_breakpoints_table_end ();
d77f58be
SS
6650
6651 return nr_printable_breakpoints;
c906108c
SS
6652}
6653
ad443146
SS
6654/* Display the value of default-collect in a way that is generally
6655 compatible with the breakpoint list. */
6656
6657static void
6658default_collect_info (void)
6659{
79a45e25
PA
6660 struct ui_out *uiout = current_uiout;
6661
ad443146
SS
6662 /* If it has no value (which is frequently the case), say nothing; a
6663 message like "No default-collect." gets in user's face when it's
6664 not wanted. */
6665 if (!*default_collect)
6666 return;
6667
6668 /* The following phrase lines up nicely with per-tracepoint collect
6669 actions. */
112e8700
SM
6670 uiout->text ("default collect ");
6671 uiout->field_string ("default-collect", default_collect);
6672 uiout->text (" \n");
ad443146
SS
6673}
6674
c906108c 6675static void
0b39b52e 6676info_breakpoints_command (const char *args, int from_tty)
c906108c 6677{
e5a67952 6678 breakpoint_1 (args, 0, NULL);
ad443146
SS
6679
6680 default_collect_info ();
d77f58be
SS
6681}
6682
6683static void
1d12d88f 6684info_watchpoints_command (const char *args, int from_tty)
d77f58be 6685{
e5a67952 6686 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
79a45e25 6687 struct ui_out *uiout = current_uiout;
d77f58be
SS
6688
6689 if (num_printed == 0)
6690 {
e5a67952 6691 if (args == NULL || *args == '\0')
112e8700 6692 uiout->message ("No watchpoints.\n");
d77f58be 6693 else
112e8700 6694 uiout->message ("No watchpoint matching '%s'.\n", args);
d77f58be 6695 }
c906108c
SS
6696}
6697
7a292a7a 6698static void
4495129a 6699maintenance_info_breakpoints (const char *args, int from_tty)
c906108c 6700{
e5a67952 6701 breakpoint_1 (args, 1, NULL);
ad443146
SS
6702
6703 default_collect_info ();
c906108c
SS
6704}
6705
0d381245 6706static int
714835d5 6707breakpoint_has_pc (struct breakpoint *b,
6c95b8df 6708 struct program_space *pspace,
714835d5 6709 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
6710{
6711 struct bp_location *bl = b->loc;
cc59ec59 6712
0d381245
VP
6713 for (; bl; bl = bl->next)
6714 {
6c95b8df
PA
6715 if (bl->pspace == pspace
6716 && bl->address == pc
0d381245
VP
6717 && (!overlay_debugging || bl->section == section))
6718 return 1;
6719 }
6720 return 0;
6721}
6722
672f9b60 6723/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
6724 concerns with logical breakpoints, so we match program spaces, not
6725 address spaces. */
c906108c
SS
6726
6727static void
6c95b8df
PA
6728describe_other_breakpoints (struct gdbarch *gdbarch,
6729 struct program_space *pspace, CORE_ADDR pc,
5af949e3 6730 struct obj_section *section, int thread)
c906108c 6731{
52f0bd74
AC
6732 int others = 0;
6733 struct breakpoint *b;
c906108c
SS
6734
6735 ALL_BREAKPOINTS (b)
672f9b60
KP
6736 others += (user_breakpoint_p (b)
6737 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
6738 if (others > 0)
6739 {
a3f17187
AC
6740 if (others == 1)
6741 printf_filtered (_("Note: breakpoint "));
6742 else /* if (others == ???) */
6743 printf_filtered (_("Note: breakpoints "));
c906108c 6744 ALL_BREAKPOINTS (b)
672f9b60 6745 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
6746 {
6747 others--;
6748 printf_filtered ("%d", b->number);
6749 if (b->thread == -1 && thread != -1)
6750 printf_filtered (" (all threads)");
6751 else if (b->thread != -1)
6752 printf_filtered (" (thread %d)", b->thread);
6753 printf_filtered ("%s%s ",
059fb39f 6754 ((b->enable_state == bp_disabled
f8eba3c6 6755 || b->enable_state == bp_call_disabled)
0d381245 6756 ? " (disabled)"
0d381245
VP
6757 : ""),
6758 (others > 1) ? ","
6759 : ((others == 1) ? " and" : ""));
6760 }
a3f17187 6761 printf_filtered (_("also set at pc "));
5af949e3 6762 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
6763 printf_filtered (".\n");
6764 }
6765}
6766\f
c906108c 6767
e4f237da 6768/* Return true iff it is meaningful to use the address member of
244558af
LM
6769 BPT locations. For some breakpoint types, the locations' address members
6770 are irrelevant and it makes no sense to attempt to compare them to other
6771 addresses (or use them for any other purpose either).
e4f237da 6772
4a64f543 6773 More specifically, each of the following breakpoint types will
244558af 6774 always have a zero valued location address and we don't want to mark
4a64f543 6775 breakpoints of any of these types to be a duplicate of an actual
244558af 6776 breakpoint location at address zero:
e4f237da
KB
6777
6778 bp_watchpoint
2d134ed3
PA
6779 bp_catchpoint
6780
6781*/
e4f237da
KB
6782
6783static int
6784breakpoint_address_is_meaningful (struct breakpoint *bpt)
6785{
6786 enum bptype type = bpt->type;
6787
2d134ed3
PA
6788 return (type != bp_watchpoint && type != bp_catchpoint);
6789}
6790
6791/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6792 true if LOC1 and LOC2 represent the same watchpoint location. */
6793
6794static int
4a64f543
MS
6795watchpoint_locations_match (struct bp_location *loc1,
6796 struct bp_location *loc2)
2d134ed3 6797{
3a5c3e22
PA
6798 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6799 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6800
6801 /* Both of them must exist. */
6802 gdb_assert (w1 != NULL);
6803 gdb_assert (w2 != NULL);
2bdf28a0 6804
4a64f543
MS
6805 /* If the target can evaluate the condition expression in hardware,
6806 then we we need to insert both watchpoints even if they are at
6807 the same place. Otherwise the watchpoint will only trigger when
6808 the condition of whichever watchpoint was inserted evaluates to
6809 true, not giving a chance for GDB to check the condition of the
6810 other watchpoint. */
3a5c3e22 6811 if ((w1->cond_exp
4a64f543
MS
6812 && target_can_accel_watchpoint_condition (loc1->address,
6813 loc1->length,
0cf6dd15 6814 loc1->watchpoint_type,
4d01a485 6815 w1->cond_exp.get ()))
3a5c3e22 6816 || (w2->cond_exp
4a64f543
MS
6817 && target_can_accel_watchpoint_condition (loc2->address,
6818 loc2->length,
0cf6dd15 6819 loc2->watchpoint_type,
4d01a485 6820 w2->cond_exp.get ())))
0cf6dd15
TJB
6821 return 0;
6822
85d721b8
PA
6823 /* Note that this checks the owner's type, not the location's. In
6824 case the target does not support read watchpoints, but does
6825 support access watchpoints, we'll have bp_read_watchpoint
6826 watchpoints with hw_access locations. Those should be considered
6827 duplicates of hw_read locations. The hw_read locations will
6828 become hw_access locations later. */
2d134ed3
PA
6829 return (loc1->owner->type == loc2->owner->type
6830 && loc1->pspace->aspace == loc2->pspace->aspace
6831 && loc1->address == loc2->address
6832 && loc1->length == loc2->length);
e4f237da
KB
6833}
6834
31e77af2 6835/* See breakpoint.h. */
6c95b8df 6836
31e77af2 6837int
accd0bcd
YQ
6838breakpoint_address_match (const address_space *aspace1, CORE_ADDR addr1,
6839 const address_space *aspace2, CORE_ADDR addr2)
6c95b8df 6840{
f5656ead 6841 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
6842 || aspace1 == aspace2)
6843 && addr1 == addr2);
6844}
6845
f1310107
TJB
6846/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6847 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6848 matches ASPACE2. On targets that have global breakpoints, the address
6849 space doesn't really matter. */
6850
6851static int
accd0bcd
YQ
6852breakpoint_address_match_range (const address_space *aspace1,
6853 CORE_ADDR addr1,
6854 int len1, const address_space *aspace2,
f1310107
TJB
6855 CORE_ADDR addr2)
6856{
f5656ead 6857 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
6858 || aspace1 == aspace2)
6859 && addr2 >= addr1 && addr2 < addr1 + len1);
6860}
6861
6862/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6863 a ranged breakpoint. In most targets, a match happens only if ASPACE
6864 matches the breakpoint's address space. On targets that have global
6865 breakpoints, the address space doesn't really matter. */
6866
6867static int
6868breakpoint_location_address_match (struct bp_location *bl,
accd0bcd 6869 const address_space *aspace,
f1310107
TJB
6870 CORE_ADDR addr)
6871{
6872 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6873 aspace, addr)
6874 || (bl->length
6875 && breakpoint_address_match_range (bl->pspace->aspace,
6876 bl->address, bl->length,
6877 aspace, addr)));
6878}
6879
d35ae833
PA
6880/* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
6881 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
6882 match happens only if ASPACE matches the breakpoint's address
6883 space. On targets that have global breakpoints, the address space
6884 doesn't really matter. */
6885
6886static int
6887breakpoint_location_address_range_overlap (struct bp_location *bl,
accd0bcd 6888 const address_space *aspace,
d35ae833
PA
6889 CORE_ADDR addr, int len)
6890{
6891 if (gdbarch_has_global_breakpoints (target_gdbarch ())
6892 || bl->pspace->aspace == aspace)
6893 {
6894 int bl_len = bl->length != 0 ? bl->length : 1;
6895
6896 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
6897 return 1;
6898 }
6899 return 0;
6900}
6901
1e4d1764
YQ
6902/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6903 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6904 true, otherwise returns false. */
6905
6906static int
6907tracepoint_locations_match (struct bp_location *loc1,
6908 struct bp_location *loc2)
6909{
6910 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6911 /* Since tracepoint locations are never duplicated with others', tracepoint
6912 locations at the same address of different tracepoints are regarded as
6913 different locations. */
6914 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6915 else
6916 return 0;
6917}
6918
2d134ed3
PA
6919/* Assuming LOC1 and LOC2's types' have meaningful target addresses
6920 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
6921 represent the same location. */
6922
6923static int
4a64f543
MS
6924breakpoint_locations_match (struct bp_location *loc1,
6925 struct bp_location *loc2)
2d134ed3 6926{
2bdf28a0
JK
6927 int hw_point1, hw_point2;
6928
6929 /* Both of them must not be in moribund_locations. */
6930 gdb_assert (loc1->owner != NULL);
6931 gdb_assert (loc2->owner != NULL);
6932
6933 hw_point1 = is_hardware_watchpoint (loc1->owner);
6934 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
6935
6936 if (hw_point1 != hw_point2)
6937 return 0;
6938 else if (hw_point1)
6939 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
6940 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6941 return tracepoint_locations_match (loc1, loc2);
2d134ed3 6942 else
f1310107
TJB
6943 /* We compare bp_location.length in order to cover ranged breakpoints. */
6944 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6945 loc2->pspace->aspace, loc2->address)
6946 && loc1->length == loc2->length);
2d134ed3
PA
6947}
6948
76897487
KB
6949static void
6950breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6951 int bnum, int have_bnum)
6952{
f63fbe86
MS
6953 /* The longest string possibly returned by hex_string_custom
6954 is 50 chars. These must be at least that big for safety. */
6955 char astr1[64];
6956 char astr2[64];
76897487 6957
bb599908
PH
6958 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6959 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 6960 if (have_bnum)
8a3fe4f8 6961 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
6962 bnum, astr1, astr2);
6963 else
8a3fe4f8 6964 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
6965}
6966
4a64f543
MS
6967/* Adjust a breakpoint's address to account for architectural
6968 constraints on breakpoint placement. Return the adjusted address.
6969 Note: Very few targets require this kind of adjustment. For most
6970 targets, this function is simply the identity function. */
76897487
KB
6971
6972static CORE_ADDR
a6d9a66e
UW
6973adjust_breakpoint_address (struct gdbarch *gdbarch,
6974 CORE_ADDR bpaddr, enum bptype bptype)
76897487 6975{
a0de8c21
YQ
6976 if (bptype == bp_watchpoint
6977 || bptype == bp_hardware_watchpoint
6978 || bptype == bp_read_watchpoint
6979 || bptype == bp_access_watchpoint
6980 || bptype == bp_catchpoint)
88f7da05
KB
6981 {
6982 /* Watchpoints and the various bp_catch_* eventpoints should not
6983 have their addresses modified. */
6984 return bpaddr;
6985 }
7c16b83e
PA
6986 else if (bptype == bp_single_step)
6987 {
6988 /* Single-step breakpoints should not have their addresses
6989 modified. If there's any architectural constrain that
6990 applies to this address, then it should have already been
6991 taken into account when the breakpoint was created in the
6992 first place. If we didn't do this, stepping through e.g.,
6993 Thumb-2 IT blocks would break. */
6994 return bpaddr;
6995 }
76897487
KB
6996 else
6997 {
a0de8c21
YQ
6998 CORE_ADDR adjusted_bpaddr = bpaddr;
6999
7000 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
7001 {
7002 /* Some targets have architectural constraints on the placement
7003 of breakpoint instructions. Obtain the adjusted address. */
7004 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
7005 }
76897487 7006
a0de8c21 7007 adjusted_bpaddr = address_significant (gdbarch, adjusted_bpaddr);
76897487
KB
7008
7009 /* An adjusted breakpoint address can significantly alter
7010 a user's expectations. Print a warning if an adjustment
7011 is required. */
7012 if (adjusted_bpaddr != bpaddr)
7013 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
7014
7015 return adjusted_bpaddr;
7016 }
7017}
7018
5625a286 7019bp_location::bp_location (const bp_location_ops *ops, breakpoint *owner)
7cc221ef 7020{
5625a286 7021 bp_location *loc = this;
7cc221ef 7022
348d480f
PA
7023 gdb_assert (ops != NULL);
7024
28010a5d
PA
7025 loc->ops = ops;
7026 loc->owner = owner;
b775012e 7027 loc->cond_bytecode = NULL;
0d381245
VP
7028 loc->shlib_disabled = 0;
7029 loc->enabled = 1;
e049a4b5 7030
28010a5d 7031 switch (owner->type)
e049a4b5
DJ
7032 {
7033 case bp_breakpoint:
7c16b83e 7034 case bp_single_step:
e049a4b5
DJ
7035 case bp_until:
7036 case bp_finish:
7037 case bp_longjmp:
7038 case bp_longjmp_resume:
e2e4d78b 7039 case bp_longjmp_call_dummy:
186c406b
TT
7040 case bp_exception:
7041 case bp_exception_resume:
e049a4b5 7042 case bp_step_resume:
2c03e5be 7043 case bp_hp_step_resume:
e049a4b5
DJ
7044 case bp_watchpoint_scope:
7045 case bp_call_dummy:
aa7d318d 7046 case bp_std_terminate:
e049a4b5
DJ
7047 case bp_shlib_event:
7048 case bp_thread_event:
7049 case bp_overlay_event:
4efc6507 7050 case bp_jit_event:
0fd8e87f 7051 case bp_longjmp_master:
aa7d318d 7052 case bp_std_terminate_master:
186c406b 7053 case bp_exception_master:
0e30163f
JK
7054 case bp_gnu_ifunc_resolver:
7055 case bp_gnu_ifunc_resolver_return:
e7e0cddf 7056 case bp_dprintf:
e049a4b5 7057 loc->loc_type = bp_loc_software_breakpoint;
b775012e 7058 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7059 break;
7060 case bp_hardware_breakpoint:
7061 loc->loc_type = bp_loc_hardware_breakpoint;
b775012e 7062 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7063 break;
7064 case bp_hardware_watchpoint:
7065 case bp_read_watchpoint:
7066 case bp_access_watchpoint:
7067 loc->loc_type = bp_loc_hardware_watchpoint;
7068 break;
7069 case bp_watchpoint:
ce78b96d 7070 case bp_catchpoint:
15c3d785
PA
7071 case bp_tracepoint:
7072 case bp_fast_tracepoint:
0fb4aa4b 7073 case bp_static_tracepoint:
e049a4b5
DJ
7074 loc->loc_type = bp_loc_other;
7075 break;
7076 default:
e2e0b3e5 7077 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
7078 }
7079
f431efe5 7080 loc->refc = 1;
28010a5d
PA
7081}
7082
7083/* Allocate a struct bp_location. */
7084
7085static struct bp_location *
7086allocate_bp_location (struct breakpoint *bpt)
7087{
348d480f
PA
7088 return bpt->ops->allocate_location (bpt);
7089}
7cc221ef 7090
f431efe5
PA
7091static void
7092free_bp_location (struct bp_location *loc)
fe3f5fa8 7093{
348d480f 7094 loc->ops->dtor (loc);
4d01a485 7095 delete loc;
fe3f5fa8
VP
7096}
7097
f431efe5
PA
7098/* Increment reference count. */
7099
7100static void
7101incref_bp_location (struct bp_location *bl)
7102{
7103 ++bl->refc;
7104}
7105
7106/* Decrement reference count. If the reference count reaches 0,
7107 destroy the bp_location. Sets *BLP to NULL. */
7108
7109static void
7110decref_bp_location (struct bp_location **blp)
7111{
0807b50c
PA
7112 gdb_assert ((*blp)->refc > 0);
7113
f431efe5
PA
7114 if (--(*blp)->refc == 0)
7115 free_bp_location (*blp);
7116 *blp = NULL;
7117}
7118
346774a9 7119/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 7120
b270e6f9
TT
7121static breakpoint *
7122add_to_breakpoint_chain (std::unique_ptr<breakpoint> &&b)
c906108c 7123{
346774a9 7124 struct breakpoint *b1;
b270e6f9 7125 struct breakpoint *result = b.get ();
c906108c 7126
346774a9
PA
7127 /* Add this breakpoint to the end of the chain so that a list of
7128 breakpoints will come out in order of increasing numbers. */
7129
7130 b1 = breakpoint_chain;
7131 if (b1 == 0)
b270e6f9 7132 breakpoint_chain = b.release ();
346774a9
PA
7133 else
7134 {
7135 while (b1->next)
7136 b1 = b1->next;
b270e6f9 7137 b1->next = b.release ();
346774a9 7138 }
b270e6f9
TT
7139
7140 return result;
346774a9
PA
7141}
7142
7143/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7144
7145static void
7146init_raw_breakpoint_without_location (struct breakpoint *b,
7147 struct gdbarch *gdbarch,
28010a5d 7148 enum bptype bptype,
c0a91b2b 7149 const struct breakpoint_ops *ops)
346774a9 7150{
348d480f
PA
7151 gdb_assert (ops != NULL);
7152
28010a5d 7153 b->ops = ops;
4d28f7a8 7154 b->type = bptype;
a6d9a66e 7155 b->gdbarch = gdbarch;
c906108c
SS
7156 b->language = current_language->la_language;
7157 b->input_radix = input_radix;
d0fb5eae 7158 b->related_breakpoint = b;
346774a9
PA
7159}
7160
7161/* Helper to set_raw_breakpoint below. Creates a breakpoint
7162 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7163
7164static struct breakpoint *
7165set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7166 enum bptype bptype,
c0a91b2b 7167 const struct breakpoint_ops *ops)
346774a9 7168{
3b0871f4 7169 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7170
3b0871f4 7171 init_raw_breakpoint_without_location (b.get (), gdbarch, bptype, ops);
b270e6f9 7172 return add_to_breakpoint_chain (std::move (b));
0d381245
VP
7173}
7174
0e30163f
JK
7175/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7176 resolutions should be made as the user specified the location explicitly
7177 enough. */
7178
0d381245 7179static void
0e30163f 7180set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 7181{
2bdf28a0
JK
7182 gdb_assert (loc->owner != NULL);
7183
0d381245 7184 if (loc->owner->type == bp_breakpoint
1042e4c0 7185 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7186 || is_tracepoint (loc->owner))
0d381245 7187 {
0e30163f 7188 int is_gnu_ifunc;
2c02bd72 7189 const char *function_name;
6a3a010b 7190 CORE_ADDR func_addr;
0e30163f 7191
2c02bd72 7192 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
6a3a010b 7193 &func_addr, NULL, &is_gnu_ifunc);
0e30163f
JK
7194
7195 if (is_gnu_ifunc && !explicit_loc)
7196 {
7197 struct breakpoint *b = loc->owner;
7198
7199 gdb_assert (loc->pspace == current_program_space);
2c02bd72 7200 if (gnu_ifunc_resolve_name (function_name,
0e30163f
JK
7201 &loc->requested_address))
7202 {
7203 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7204 loc->address = adjust_breakpoint_address (loc->gdbarch,
7205 loc->requested_address,
7206 b->type);
7207 }
7208 else if (b->type == bp_breakpoint && b->loc == loc
7209 && loc->next == NULL && b->related_breakpoint == b)
7210 {
7211 /* Create only the whole new breakpoint of this type but do not
7212 mess more complicated breakpoints with multiple locations. */
7213 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7214 /* Remember the resolver's address for use by the return
7215 breakpoint. */
7216 loc->related_address = func_addr;
0e30163f
JK
7217 }
7218 }
7219
2c02bd72
DE
7220 if (function_name)
7221 loc->function_name = xstrdup (function_name);
0d381245
VP
7222 }
7223}
7224
a6d9a66e 7225/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7226struct gdbarch *
a6d9a66e
UW
7227get_sal_arch (struct symtab_and_line sal)
7228{
7229 if (sal.section)
7230 return get_objfile_arch (sal.section->objfile);
7231 if (sal.symtab)
eb822aa6 7232 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
a6d9a66e
UW
7233
7234 return NULL;
7235}
7236
346774a9
PA
7237/* Low level routine for partially initializing a breakpoint of type
7238 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7239 file name, and line number are provided by SAL.
0d381245
VP
7240
7241 It is expected that the caller will complete the initialization of
7242 the newly created breakpoint struct as well as output any status
c56053d2 7243 information regarding the creation of a new breakpoint. */
0d381245 7244
346774a9
PA
7245static void
7246init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7247 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7248 const struct breakpoint_ops *ops)
0d381245 7249{
28010a5d 7250 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7251
3742cc8b 7252 add_location_to_breakpoint (b, &sal);
0d381245 7253
6c95b8df
PA
7254 if (bptype != bp_catchpoint)
7255 gdb_assert (sal.pspace != NULL);
7256
f8eba3c6
TT
7257 /* Store the program space that was used to set the breakpoint,
7258 except for ordinary breakpoints, which are independent of the
7259 program space. */
7260 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7261 b->pspace = sal.pspace;
346774a9 7262}
c906108c 7263
346774a9
PA
7264/* set_raw_breakpoint is a low level routine for allocating and
7265 partially initializing a breakpoint of type BPTYPE. The newly
7266 created breakpoint's address, section, source file name, and line
7267 number are provided by SAL. The newly created and partially
7268 initialized breakpoint is added to the breakpoint chain and
7269 is also returned as the value of this function.
7270
7271 It is expected that the caller will complete the initialization of
7272 the newly created breakpoint struct as well as output any status
7273 information regarding the creation of a new breakpoint. In
7274 particular, set_raw_breakpoint does NOT set the breakpoint
7275 number! Care should be taken to not allow an error to occur
7276 prior to completing the initialization of the breakpoint. If this
7277 should happen, a bogus breakpoint will be left on the chain. */
7278
7279struct breakpoint *
7280set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7281 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7282 const struct breakpoint_ops *ops)
346774a9 7283{
3b0871f4 7284 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
346774a9 7285
3b0871f4 7286 init_raw_breakpoint (b.get (), gdbarch, sal, bptype, ops);
b270e6f9 7287 return add_to_breakpoint_chain (std::move (b));
c906108c
SS
7288}
7289
53a5351d 7290/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7291 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7292 initiated the operation. */
c906108c
SS
7293
7294void
186c406b 7295set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7296{
35df4500 7297 struct breakpoint *b, *b_tmp;
5d5658a1 7298 int thread = tp->global_num;
0fd8e87f
UW
7299
7300 /* To avoid having to rescan all objfile symbols at every step,
7301 we maintain a list of continually-inserted but always disabled
7302 longjmp "master" breakpoints. Here, we simply create momentary
7303 clones of those and enable them for the requested thread. */
35df4500 7304 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7305 if (b->pspace == current_program_space
186c406b
TT
7306 && (b->type == bp_longjmp_master
7307 || b->type == bp_exception_master))
0fd8e87f 7308 {
06edf0c0
PA
7309 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7310 struct breakpoint *clone;
cc59ec59 7311
e2e4d78b
JK
7312 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7313 after their removal. */
06edf0c0 7314 clone = momentary_breakpoint_from_master (b, type,
c1fc2657 7315 &momentary_breakpoint_ops, 1);
0fd8e87f
UW
7316 clone->thread = thread;
7317 }
186c406b
TT
7318
7319 tp->initiating_frame = frame;
c906108c
SS
7320}
7321
611c83ae 7322/* Delete all longjmp breakpoints from THREAD. */
c906108c 7323void
611c83ae 7324delete_longjmp_breakpoint (int thread)
c906108c 7325{
35df4500 7326 struct breakpoint *b, *b_tmp;
c906108c 7327
35df4500 7328 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7329 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7330 {
7331 if (b->thread == thread)
7332 delete_breakpoint (b);
7333 }
c906108c
SS
7334}
7335
f59f708a
PA
7336void
7337delete_longjmp_breakpoint_at_next_stop (int thread)
7338{
7339 struct breakpoint *b, *b_tmp;
7340
7341 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7342 if (b->type == bp_longjmp || b->type == bp_exception)
7343 {
7344 if (b->thread == thread)
7345 b->disposition = disp_del_at_next_stop;
7346 }
7347}
7348
e2e4d78b
JK
7349/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7350 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7351 pointer to any of them. Return NULL if this system cannot place longjmp
7352 breakpoints. */
7353
7354struct breakpoint *
7355set_longjmp_breakpoint_for_call_dummy (void)
7356{
7357 struct breakpoint *b, *retval = NULL;
7358
7359 ALL_BREAKPOINTS (b)
7360 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7361 {
7362 struct breakpoint *new_b;
7363
7364 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
a1aa2221
LM
7365 &momentary_breakpoint_ops,
7366 1);
5d5658a1 7367 new_b->thread = ptid_to_global_thread_id (inferior_ptid);
e2e4d78b
JK
7368
7369 /* Link NEW_B into the chain of RETVAL breakpoints. */
7370
7371 gdb_assert (new_b->related_breakpoint == new_b);
7372 if (retval == NULL)
7373 retval = new_b;
7374 new_b->related_breakpoint = retval;
7375 while (retval->related_breakpoint != new_b->related_breakpoint)
7376 retval = retval->related_breakpoint;
7377 retval->related_breakpoint = new_b;
7378 }
7379
7380 return retval;
7381}
7382
7383/* Verify all existing dummy frames and their associated breakpoints for
b67a2c6f 7384 TP. Remove those which can no longer be found in the current frame
e2e4d78b
JK
7385 stack.
7386
7387 You should call this function only at places where it is safe to currently
7388 unwind the whole stack. Failed stack unwind would discard live dummy
7389 frames. */
7390
7391void
b67a2c6f 7392check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
e2e4d78b
JK
7393{
7394 struct breakpoint *b, *b_tmp;
7395
7396 ALL_BREAKPOINTS_SAFE (b, b_tmp)
5d5658a1 7397 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
e2e4d78b
JK
7398 {
7399 struct breakpoint *dummy_b = b->related_breakpoint;
7400
7401 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7402 dummy_b = dummy_b->related_breakpoint;
7403 if (dummy_b->type != bp_call_dummy
7404 || frame_find_by_id (dummy_b->frame_id) != NULL)
7405 continue;
7406
b67a2c6f 7407 dummy_frame_discard (dummy_b->frame_id, tp->ptid);
e2e4d78b
JK
7408
7409 while (b->related_breakpoint != b)
7410 {
7411 if (b_tmp == b->related_breakpoint)
7412 b_tmp = b->related_breakpoint->next;
7413 delete_breakpoint (b->related_breakpoint);
7414 }
7415 delete_breakpoint (b);
7416 }
7417}
7418
1900040c
MS
7419void
7420enable_overlay_breakpoints (void)
7421{
52f0bd74 7422 struct breakpoint *b;
1900040c
MS
7423
7424 ALL_BREAKPOINTS (b)
7425 if (b->type == bp_overlay_event)
7426 {
7427 b->enable_state = bp_enabled;
44702360 7428 update_global_location_list (UGLL_MAY_INSERT);
c02f5703 7429 overlay_events_enabled = 1;
1900040c
MS
7430 }
7431}
7432
7433void
7434disable_overlay_breakpoints (void)
7435{
52f0bd74 7436 struct breakpoint *b;
1900040c
MS
7437
7438 ALL_BREAKPOINTS (b)
7439 if (b->type == bp_overlay_event)
7440 {
7441 b->enable_state = bp_disabled;
44702360 7442 update_global_location_list (UGLL_DONT_INSERT);
c02f5703 7443 overlay_events_enabled = 0;
1900040c
MS
7444 }
7445}
7446
aa7d318d
TT
7447/* Set an active std::terminate breakpoint for each std::terminate
7448 master breakpoint. */
7449void
7450set_std_terminate_breakpoint (void)
7451{
35df4500 7452 struct breakpoint *b, *b_tmp;
aa7d318d 7453
35df4500 7454 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7455 if (b->pspace == current_program_space
7456 && b->type == bp_std_terminate_master)
7457 {
06edf0c0 7458 momentary_breakpoint_from_master (b, bp_std_terminate,
a1aa2221 7459 &momentary_breakpoint_ops, 1);
aa7d318d
TT
7460 }
7461}
7462
7463/* Delete all the std::terminate breakpoints. */
7464void
7465delete_std_terminate_breakpoint (void)
7466{
35df4500 7467 struct breakpoint *b, *b_tmp;
aa7d318d 7468
35df4500 7469 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7470 if (b->type == bp_std_terminate)
7471 delete_breakpoint (b);
7472}
7473
c4093a6a 7474struct breakpoint *
a6d9a66e 7475create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7476{
7477 struct breakpoint *b;
c4093a6a 7478
06edf0c0
PA
7479 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7480 &internal_breakpoint_ops);
7481
b5de0fa7 7482 b->enable_state = bp_enabled;
f00aae0f 7483 /* location has to be used or breakpoint_re_set will delete me. */
d28cd78a 7484 b->location = new_address_location (b->loc->address, NULL, 0);
c4093a6a 7485
44702360 7486 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 7487
c4093a6a
JM
7488 return b;
7489}
7490
0101ce28
JJ
7491struct lang_and_radix
7492 {
7493 enum language lang;
7494 int radix;
7495 };
7496
4efc6507
DE
7497/* Create a breakpoint for JIT code registration and unregistration. */
7498
7499struct breakpoint *
7500create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7501{
2a7f3dff
PA
7502 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7503 &internal_breakpoint_ops);
4efc6507 7504}
0101ce28 7505
03673fc7
PP
7506/* Remove JIT code registration and unregistration breakpoint(s). */
7507
7508void
7509remove_jit_event_breakpoints (void)
7510{
7511 struct breakpoint *b, *b_tmp;
7512
7513 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7514 if (b->type == bp_jit_event
7515 && b->loc->pspace == current_program_space)
7516 delete_breakpoint (b);
7517}
7518
cae688ec
JJ
7519void
7520remove_solib_event_breakpoints (void)
7521{
35df4500 7522 struct breakpoint *b, *b_tmp;
cae688ec 7523
35df4500 7524 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7525 if (b->type == bp_shlib_event
7526 && b->loc->pspace == current_program_space)
cae688ec
JJ
7527 delete_breakpoint (b);
7528}
7529
f37f681c
PA
7530/* See breakpoint.h. */
7531
7532void
7533remove_solib_event_breakpoints_at_next_stop (void)
7534{
7535 struct breakpoint *b, *b_tmp;
7536
7537 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7538 if (b->type == bp_shlib_event
7539 && b->loc->pspace == current_program_space)
7540 b->disposition = disp_del_at_next_stop;
7541}
7542
04086b45
PA
7543/* Helper for create_solib_event_breakpoint /
7544 create_and_insert_solib_event_breakpoint. Allows specifying which
7545 INSERT_MODE to pass through to update_global_location_list. */
7546
7547static struct breakpoint *
7548create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7549 enum ugll_insert_mode insert_mode)
cae688ec
JJ
7550{
7551 struct breakpoint *b;
7552
06edf0c0
PA
7553 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7554 &internal_breakpoint_ops);
04086b45 7555 update_global_location_list_nothrow (insert_mode);
cae688ec
JJ
7556 return b;
7557}
7558
04086b45
PA
7559struct breakpoint *
7560create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7561{
7562 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7563}
7564
f37f681c
PA
7565/* See breakpoint.h. */
7566
7567struct breakpoint *
7568create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7569{
7570 struct breakpoint *b;
7571
04086b45
PA
7572 /* Explicitly tell update_global_location_list to insert
7573 locations. */
7574 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
f37f681c
PA
7575 if (!b->loc->inserted)
7576 {
7577 delete_breakpoint (b);
7578 return NULL;
7579 }
7580 return b;
7581}
7582
cae688ec
JJ
7583/* Disable any breakpoints that are on code in shared libraries. Only
7584 apply to enabled breakpoints, disabled ones can just stay disabled. */
7585
7586void
cb851954 7587disable_breakpoints_in_shlibs (void)
cae688ec 7588{
876fa593 7589 struct bp_location *loc, **locp_tmp;
cae688ec 7590
876fa593 7591 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7592 {
2bdf28a0 7593 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7594 struct breakpoint *b = loc->owner;
2bdf28a0 7595
4a64f543
MS
7596 /* We apply the check to all breakpoints, including disabled for
7597 those with loc->duplicate set. This is so that when breakpoint
7598 becomes enabled, or the duplicate is removed, gdb will try to
7599 insert all breakpoints. If we don't set shlib_disabled here,
7600 we'll try to insert those breakpoints and fail. */
1042e4c0 7601 if (((b->type == bp_breakpoint)
508ccb1f 7602 || (b->type == bp_jit_event)
1042e4c0 7603 || (b->type == bp_hardware_breakpoint)
d77f58be 7604 || (is_tracepoint (b)))
6c95b8df 7605 && loc->pspace == current_program_space
0d381245 7606 && !loc->shlib_disabled
6c95b8df 7607 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7608 )
0d381245
VP
7609 {
7610 loc->shlib_disabled = 1;
7611 }
cae688ec
JJ
7612 }
7613}
7614
63644780
NB
7615/* Disable any breakpoints and tracepoints that are in SOLIB upon
7616 notification of unloaded_shlib. Only apply to enabled breakpoints,
7617 disabled ones can just stay disabled. */
84acb35a 7618
75149521 7619static void
84acb35a
JJ
7620disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7621{
876fa593 7622 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7623 int disabled_shlib_breaks = 0;
7624
876fa593 7625 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7626 {
2bdf28a0 7627 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7628 struct breakpoint *b = loc->owner;
cc59ec59 7629
1e4d1764 7630 if (solib->pspace == loc->pspace
e2dd7057 7631 && !loc->shlib_disabled
1e4d1764
YQ
7632 && (((b->type == bp_breakpoint
7633 || b->type == bp_jit_event
7634 || b->type == bp_hardware_breakpoint)
7635 && (loc->loc_type == bp_loc_hardware_breakpoint
7636 || loc->loc_type == bp_loc_software_breakpoint))
7637 || is_tracepoint (b))
e2dd7057 7638 && solib_contains_address_p (solib, loc->address))
84acb35a 7639 {
e2dd7057
PP
7640 loc->shlib_disabled = 1;
7641 /* At this point, we cannot rely on remove_breakpoint
7642 succeeding so we must mark the breakpoint as not inserted
7643 to prevent future errors occurring in remove_breakpoints. */
7644 loc->inserted = 0;
8d3788bd
VP
7645
7646 /* This may cause duplicate notifications for the same breakpoint. */
7647 observer_notify_breakpoint_modified (b);
7648
e2dd7057
PP
7649 if (!disabled_shlib_breaks)
7650 {
223ffa71 7651 target_terminal::ours_for_output ();
3e43a32a
MS
7652 warning (_("Temporarily disabling breakpoints "
7653 "for unloaded shared library \"%s\""),
e2dd7057 7654 solib->so_name);
84acb35a 7655 }
e2dd7057 7656 disabled_shlib_breaks = 1;
84acb35a
JJ
7657 }
7658 }
84acb35a
JJ
7659}
7660
63644780
NB
7661/* Disable any breakpoints and tracepoints in OBJFILE upon
7662 notification of free_objfile. Only apply to enabled breakpoints,
7663 disabled ones can just stay disabled. */
7664
7665static void
7666disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7667{
7668 struct breakpoint *b;
7669
7670 if (objfile == NULL)
7671 return;
7672
d03de421
PA
7673 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7674 managed by the user with add-symbol-file/remove-symbol-file.
7675 Similarly to how breakpoints in shared libraries are handled in
7676 response to "nosharedlibrary", mark breakpoints in such modules
08351840
PA
7677 shlib_disabled so they end up uninserted on the next global
7678 location list update. Shared libraries not loaded by the user
7679 aren't handled here -- they're already handled in
7680 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7681 solib_unloaded observer. We skip objfiles that are not
d03de421
PA
7682 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7683 main objfile). */
7684 if ((objfile->flags & OBJF_SHARED) == 0
7685 || (objfile->flags & OBJF_USERLOADED) == 0)
63644780
NB
7686 return;
7687
7688 ALL_BREAKPOINTS (b)
7689 {
7690 struct bp_location *loc;
7691 int bp_modified = 0;
7692
7693 if (!is_breakpoint (b) && !is_tracepoint (b))
7694 continue;
7695
7696 for (loc = b->loc; loc != NULL; loc = loc->next)
7697 {
7698 CORE_ADDR loc_addr = loc->address;
7699
7700 if (loc->loc_type != bp_loc_hardware_breakpoint
7701 && loc->loc_type != bp_loc_software_breakpoint)
7702 continue;
7703
7704 if (loc->shlib_disabled != 0)
7705 continue;
7706
7707 if (objfile->pspace != loc->pspace)
7708 continue;
7709
7710 if (loc->loc_type != bp_loc_hardware_breakpoint
7711 && loc->loc_type != bp_loc_software_breakpoint)
7712 continue;
7713
7714 if (is_addr_in_objfile (loc_addr, objfile))
7715 {
7716 loc->shlib_disabled = 1;
08351840
PA
7717 /* At this point, we don't know whether the object was
7718 unmapped from the inferior or not, so leave the
7719 inserted flag alone. We'll handle failure to
7720 uninsert quietly, in case the object was indeed
7721 unmapped. */
63644780
NB
7722
7723 mark_breakpoint_location_modified (loc);
7724
7725 bp_modified = 1;
7726 }
7727 }
7728
7729 if (bp_modified)
7730 observer_notify_breakpoint_modified (b);
7731 }
7732}
7733
ce78b96d
JB
7734/* FORK & VFORK catchpoints. */
7735
e29a4733 7736/* An instance of this type is used to represent a fork or vfork
c1fc2657
SM
7737 catchpoint. A breakpoint is really of this type iff its ops pointer points
7738 to CATCH_FORK_BREAKPOINT_OPS. */
e29a4733 7739
c1fc2657 7740struct fork_catchpoint : public breakpoint
e29a4733 7741{
e29a4733
PA
7742 /* Process id of a child process whose forking triggered this
7743 catchpoint. This field is only valid immediately after this
7744 catchpoint has triggered. */
7745 ptid_t forked_inferior_pid;
7746};
7747
4a64f543
MS
7748/* Implement the "insert" breakpoint_ops method for fork
7749 catchpoints. */
ce78b96d 7750
77b06cd7
TJB
7751static int
7752insert_catch_fork (struct bp_location *bl)
ce78b96d 7753{
dfd4cc63 7754 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7755}
7756
4a64f543
MS
7757/* Implement the "remove" breakpoint_ops method for fork
7758 catchpoints. */
ce78b96d
JB
7759
7760static int
73971819 7761remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7762{
dfd4cc63 7763 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7764}
7765
7766/* Implement the "breakpoint_hit" breakpoint_ops method for fork
7767 catchpoints. */
7768
7769static int
f1310107 7770breakpoint_hit_catch_fork (const struct bp_location *bl,
bd522513 7771 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7772 const struct target_waitstatus *ws)
ce78b96d 7773{
e29a4733
PA
7774 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7775
f90263c1
TT
7776 if (ws->kind != TARGET_WAITKIND_FORKED)
7777 return 0;
7778
7779 c->forked_inferior_pid = ws->value.related_pid;
7780 return 1;
ce78b96d
JB
7781}
7782
4a64f543
MS
7783/* Implement the "print_it" breakpoint_ops method for fork
7784 catchpoints. */
ce78b96d
JB
7785
7786static enum print_stop_action
348d480f 7787print_it_catch_fork (bpstat bs)
ce78b96d 7788{
36dfb11c 7789 struct ui_out *uiout = current_uiout;
348d480f
PA
7790 struct breakpoint *b = bs->breakpoint_at;
7791 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 7792
ce78b96d 7793 annotate_catchpoint (b->number);
f303dbd6 7794 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7795 if (b->disposition == disp_del)
112e8700 7796 uiout->text ("Temporary catchpoint ");
36dfb11c 7797 else
112e8700
SM
7798 uiout->text ("Catchpoint ");
7799 if (uiout->is_mi_like_p ())
36dfb11c 7800 {
112e8700
SM
7801 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
7802 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7803 }
112e8700
SM
7804 uiout->field_int ("bkptno", b->number);
7805 uiout->text (" (forked process ");
7806 uiout->field_int ("newpid", ptid_get_pid (c->forked_inferior_pid));
7807 uiout->text ("), ");
ce78b96d
JB
7808 return PRINT_SRC_AND_LOC;
7809}
7810
4a64f543
MS
7811/* Implement the "print_one" breakpoint_ops method for fork
7812 catchpoints. */
ce78b96d
JB
7813
7814static void
a6d9a66e 7815print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7816{
e29a4733 7817 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7818 struct value_print_options opts;
79a45e25 7819 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7820
7821 get_user_print_options (&opts);
7822
4a64f543
MS
7823 /* Field 4, the address, is omitted (which makes the columns not
7824 line up too nicely with the headers, but the effect is relatively
7825 readable). */
79a45b7d 7826 if (opts.addressprint)
112e8700 7827 uiout->field_skip ("addr");
ce78b96d 7828 annotate_field (5);
112e8700 7829 uiout->text ("fork");
e29a4733 7830 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d 7831 {
112e8700
SM
7832 uiout->text (", process ");
7833 uiout->field_int ("what", ptid_get_pid (c->forked_inferior_pid));
7834 uiout->spaces (1);
ce78b96d 7835 }
8ac3646f 7836
112e8700
SM
7837 if (uiout->is_mi_like_p ())
7838 uiout->field_string ("catch-type", "fork");
ce78b96d
JB
7839}
7840
7841/* Implement the "print_mention" breakpoint_ops method for fork
7842 catchpoints. */
7843
7844static void
7845print_mention_catch_fork (struct breakpoint *b)
7846{
7847 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7848}
7849
6149aea9
PA
7850/* Implement the "print_recreate" breakpoint_ops method for fork
7851 catchpoints. */
7852
7853static void
7854print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7855{
7856 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 7857 print_recreate_thread (b, fp);
6149aea9
PA
7858}
7859
ce78b96d
JB
7860/* The breakpoint_ops structure to be used in fork catchpoints. */
7861
2060206e 7862static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 7863
4a64f543
MS
7864/* Implement the "insert" breakpoint_ops method for vfork
7865 catchpoints. */
ce78b96d 7866
77b06cd7
TJB
7867static int
7868insert_catch_vfork (struct bp_location *bl)
ce78b96d 7869{
dfd4cc63 7870 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7871}
7872
4a64f543
MS
7873/* Implement the "remove" breakpoint_ops method for vfork
7874 catchpoints. */
ce78b96d
JB
7875
7876static int
73971819 7877remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 7878{
dfd4cc63 7879 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7880}
7881
7882/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7883 catchpoints. */
7884
7885static int
f1310107 7886breakpoint_hit_catch_vfork (const struct bp_location *bl,
bd522513 7887 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 7888 const struct target_waitstatus *ws)
ce78b96d 7889{
e29a4733
PA
7890 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7891
f90263c1
TT
7892 if (ws->kind != TARGET_WAITKIND_VFORKED)
7893 return 0;
7894
7895 c->forked_inferior_pid = ws->value.related_pid;
7896 return 1;
ce78b96d
JB
7897}
7898
4a64f543
MS
7899/* Implement the "print_it" breakpoint_ops method for vfork
7900 catchpoints. */
ce78b96d
JB
7901
7902static enum print_stop_action
348d480f 7903print_it_catch_vfork (bpstat bs)
ce78b96d 7904{
36dfb11c 7905 struct ui_out *uiout = current_uiout;
348d480f 7906 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
7907 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7908
ce78b96d 7909 annotate_catchpoint (b->number);
f303dbd6 7910 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 7911 if (b->disposition == disp_del)
112e8700 7912 uiout->text ("Temporary catchpoint ");
36dfb11c 7913 else
112e8700
SM
7914 uiout->text ("Catchpoint ");
7915 if (uiout->is_mi_like_p ())
36dfb11c 7916 {
112e8700
SM
7917 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
7918 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 7919 }
112e8700
SM
7920 uiout->field_int ("bkptno", b->number);
7921 uiout->text (" (vforked process ");
7922 uiout->field_int ("newpid", ptid_get_pid (c->forked_inferior_pid));
7923 uiout->text ("), ");
ce78b96d
JB
7924 return PRINT_SRC_AND_LOC;
7925}
7926
4a64f543
MS
7927/* Implement the "print_one" breakpoint_ops method for vfork
7928 catchpoints. */
ce78b96d
JB
7929
7930static void
a6d9a66e 7931print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7932{
e29a4733 7933 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7934 struct value_print_options opts;
79a45e25 7935 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7936
7937 get_user_print_options (&opts);
4a64f543
MS
7938 /* Field 4, the address, is omitted (which makes the columns not
7939 line up too nicely with the headers, but the effect is relatively
7940 readable). */
79a45b7d 7941 if (opts.addressprint)
112e8700 7942 uiout->field_skip ("addr");
ce78b96d 7943 annotate_field (5);
112e8700 7944 uiout->text ("vfork");
e29a4733 7945 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d 7946 {
112e8700
SM
7947 uiout->text (", process ");
7948 uiout->field_int ("what", ptid_get_pid (c->forked_inferior_pid));
7949 uiout->spaces (1);
ce78b96d 7950 }
8ac3646f 7951
112e8700
SM
7952 if (uiout->is_mi_like_p ())
7953 uiout->field_string ("catch-type", "vfork");
ce78b96d
JB
7954}
7955
7956/* Implement the "print_mention" breakpoint_ops method for vfork
7957 catchpoints. */
7958
7959static void
7960print_mention_catch_vfork (struct breakpoint *b)
7961{
7962 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7963}
7964
6149aea9
PA
7965/* Implement the "print_recreate" breakpoint_ops method for vfork
7966 catchpoints. */
7967
7968static void
7969print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7970{
7971 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 7972 print_recreate_thread (b, fp);
6149aea9
PA
7973}
7974
ce78b96d
JB
7975/* The breakpoint_ops structure to be used in vfork catchpoints. */
7976
2060206e 7977static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 7978
edcc5120 7979/* An instance of this type is used to represent an solib catchpoint.
c1fc2657 7980 A breakpoint is really of this type iff its ops pointer points to
edcc5120
TT
7981 CATCH_SOLIB_BREAKPOINT_OPS. */
7982
c1fc2657 7983struct solib_catchpoint : public breakpoint
edcc5120 7984{
c1fc2657 7985 ~solib_catchpoint () override;
edcc5120
TT
7986
7987 /* True for "catch load", false for "catch unload". */
7988 unsigned char is_load;
7989
7990 /* Regular expression to match, if any. COMPILED is only valid when
7991 REGEX is non-NULL. */
7992 char *regex;
2d7cc5c7 7993 std::unique_ptr<compiled_regex> compiled;
edcc5120
TT
7994};
7995
c1fc2657 7996solib_catchpoint::~solib_catchpoint ()
edcc5120 7997{
c1fc2657 7998 xfree (this->regex);
edcc5120
TT
7999}
8000
8001static int
8002insert_catch_solib (struct bp_location *ignore)
8003{
8004 return 0;
8005}
8006
8007static int
73971819 8008remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
edcc5120
TT
8009{
8010 return 0;
8011}
8012
8013static int
8014breakpoint_hit_catch_solib (const struct bp_location *bl,
bd522513 8015 const address_space *aspace,
edcc5120
TT
8016 CORE_ADDR bp_addr,
8017 const struct target_waitstatus *ws)
8018{
8019 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
8020 struct breakpoint *other;
8021
8022 if (ws->kind == TARGET_WAITKIND_LOADED)
8023 return 1;
8024
8025 ALL_BREAKPOINTS (other)
8026 {
8027 struct bp_location *other_bl;
8028
8029 if (other == bl->owner)
8030 continue;
8031
8032 if (other->type != bp_shlib_event)
8033 continue;
8034
c1fc2657 8035 if (self->pspace != NULL && other->pspace != self->pspace)
edcc5120
TT
8036 continue;
8037
8038 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
8039 {
8040 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
8041 return 1;
8042 }
8043 }
8044
8045 return 0;
8046}
8047
8048static void
8049check_status_catch_solib (struct bpstats *bs)
8050{
8051 struct solib_catchpoint *self
8052 = (struct solib_catchpoint *) bs->breakpoint_at;
8053 int ix;
8054
8055 if (self->is_load)
8056 {
8057 struct so_list *iter;
8058
8059 for (ix = 0;
8060 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
8061 ix, iter);
8062 ++ix)
8063 {
8064 if (!self->regex
2d7cc5c7 8065 || self->compiled->exec (iter->so_name, 0, NULL, 0) == 0)
edcc5120
TT
8066 return;
8067 }
8068 }
8069 else
8070 {
8071 char *iter;
8072
8073 for (ix = 0;
8074 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
8075 ix, iter);
8076 ++ix)
8077 {
8078 if (!self->regex
2d7cc5c7 8079 || self->compiled->exec (iter, 0, NULL, 0) == 0)
edcc5120
TT
8080 return;
8081 }
8082 }
8083
8084 bs->stop = 0;
8085 bs->print_it = print_it_noop;
8086}
8087
8088static enum print_stop_action
8089print_it_catch_solib (bpstat bs)
8090{
8091 struct breakpoint *b = bs->breakpoint_at;
8092 struct ui_out *uiout = current_uiout;
8093
8094 annotate_catchpoint (b->number);
f303dbd6 8095 maybe_print_thread_hit_breakpoint (uiout);
edcc5120 8096 if (b->disposition == disp_del)
112e8700 8097 uiout->text ("Temporary catchpoint ");
edcc5120 8098 else
112e8700
SM
8099 uiout->text ("Catchpoint ");
8100 uiout->field_int ("bkptno", b->number);
8101 uiout->text ("\n");
8102 if (uiout->is_mi_like_p ())
8103 uiout->field_string ("disp", bpdisp_text (b->disposition));
edcc5120
TT
8104 print_solib_event (1);
8105 return PRINT_SRC_AND_LOC;
8106}
8107
8108static void
8109print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8110{
8111 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8112 struct value_print_options opts;
8113 struct ui_out *uiout = current_uiout;
8114 char *msg;
8115
8116 get_user_print_options (&opts);
8117 /* Field 4, the address, is omitted (which makes the columns not
8118 line up too nicely with the headers, but the effect is relatively
8119 readable). */
8120 if (opts.addressprint)
8121 {
8122 annotate_field (4);
112e8700 8123 uiout->field_skip ("addr");
edcc5120
TT
8124 }
8125
8126 annotate_field (5);
8127 if (self->is_load)
8128 {
8129 if (self->regex)
8130 msg = xstrprintf (_("load of library matching %s"), self->regex);
8131 else
8132 msg = xstrdup (_("load of library"));
8133 }
8134 else
8135 {
8136 if (self->regex)
8137 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8138 else
8139 msg = xstrdup (_("unload of library"));
8140 }
112e8700 8141 uiout->field_string ("what", msg);
edcc5120 8142 xfree (msg);
8ac3646f 8143
112e8700
SM
8144 if (uiout->is_mi_like_p ())
8145 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
edcc5120
TT
8146}
8147
8148static void
8149print_mention_catch_solib (struct breakpoint *b)
8150{
8151 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8152
8153 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8154 self->is_load ? "load" : "unload");
8155}
8156
8157static void
8158print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8159{
8160 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8161
8162 fprintf_unfiltered (fp, "%s %s",
8163 b->disposition == disp_del ? "tcatch" : "catch",
8164 self->is_load ? "load" : "unload");
8165 if (self->regex)
8166 fprintf_unfiltered (fp, " %s", self->regex);
8167 fprintf_unfiltered (fp, "\n");
8168}
8169
8170static struct breakpoint_ops catch_solib_breakpoint_ops;
8171
91985142
MG
8172/* Shared helper function (MI and CLI) for creating and installing
8173 a shared object event catchpoint. If IS_LOAD is non-zero then
8174 the events to be caught are load events, otherwise they are
8175 unload events. If IS_TEMP is non-zero the catchpoint is a
8176 temporary one. If ENABLED is non-zero the catchpoint is
8177 created in an enabled state. */
edcc5120 8178
91985142 8179void
a121b7c1 8180add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
edcc5120 8181{
edcc5120 8182 struct gdbarch *gdbarch = get_current_arch ();
edcc5120 8183
edcc5120
TT
8184 if (!arg)
8185 arg = "";
f1735a53 8186 arg = skip_spaces (arg);
edcc5120 8187
36bd8eaa 8188 std::unique_ptr<solib_catchpoint> c (new solib_catchpoint ());
edcc5120
TT
8189
8190 if (*arg != '\0')
8191 {
2d7cc5c7
PA
8192 c->compiled.reset (new compiled_regex (arg, REG_NOSUB,
8193 _("Invalid regexp")));
edcc5120
TT
8194 c->regex = xstrdup (arg);
8195 }
8196
8197 c->is_load = is_load;
36bd8eaa 8198 init_catchpoint (c.get (), gdbarch, is_temp, NULL,
edcc5120
TT
8199 &catch_solib_breakpoint_ops);
8200
c1fc2657 8201 c->enable_state = enabled ? bp_enabled : bp_disabled;
91985142 8202
b270e6f9 8203 install_breakpoint (0, std::move (c), 1);
edcc5120
TT
8204}
8205
91985142
MG
8206/* A helper function that does all the work for "catch load" and
8207 "catch unload". */
8208
8209static void
eb4c3f4a 8210catch_load_or_unload (const char *arg, int from_tty, int is_load,
91985142
MG
8211 struct cmd_list_element *command)
8212{
8213 int tempflag;
8214 const int enabled = 1;
8215
8216 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8217
8218 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8219}
8220
edcc5120 8221static void
eb4c3f4a 8222catch_load_command_1 (const char *arg, int from_tty,
edcc5120
TT
8223 struct cmd_list_element *command)
8224{
8225 catch_load_or_unload (arg, from_tty, 1, command);
8226}
8227
8228static void
eb4c3f4a 8229catch_unload_command_1 (const char *arg, int from_tty,
edcc5120
TT
8230 struct cmd_list_element *command)
8231{
8232 catch_load_or_unload (arg, from_tty, 0, command);
8233}
8234
346774a9
PA
8235/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8236 is non-zero, then make the breakpoint temporary. If COND_STRING is
8237 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8238 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8239
ab04a2af 8240void
346774a9
PA
8241init_catchpoint (struct breakpoint *b,
8242 struct gdbarch *gdbarch, int tempflag,
63160a43 8243 const char *cond_string,
c0a91b2b 8244 const struct breakpoint_ops *ops)
c906108c 8245{
51abb421 8246 symtab_and_line sal;
6c95b8df 8247 sal.pspace = current_program_space;
c5aa993b 8248
28010a5d 8249 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8250
1b36a34b 8251 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8252 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8253}
8254
28010a5d 8255void
b270e6f9 8256install_breakpoint (int internal, std::unique_ptr<breakpoint> &&arg, int update_gll)
c56053d2 8257{
b270e6f9 8258 breakpoint *b = add_to_breakpoint_chain (std::move (arg));
3a5c3e22 8259 set_breakpoint_number (internal, b);
558a9d82
YQ
8260 if (is_tracepoint (b))
8261 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8262 if (!internal)
8263 mention (b);
c56053d2 8264 observer_notify_breakpoint_created (b);
3ea46bff
YQ
8265
8266 if (update_gll)
44702360 8267 update_global_location_list (UGLL_MAY_INSERT);
c56053d2
PA
8268}
8269
9b70b993 8270static void
a6d9a66e 8271create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
63160a43 8272 int tempflag, const char *cond_string,
c0a91b2b 8273 const struct breakpoint_ops *ops)
c906108c 8274{
b270e6f9 8275 std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
ce78b96d 8276
b270e6f9 8277 init_catchpoint (c.get (), gdbarch, tempflag, cond_string, ops);
e29a4733
PA
8278
8279 c->forked_inferior_pid = null_ptid;
8280
b270e6f9 8281 install_breakpoint (0, std::move (c), 1);
c906108c
SS
8282}
8283
fe798b75
JB
8284/* Exec catchpoints. */
8285
b4d90040 8286/* An instance of this type is used to represent an exec catchpoint.
c1fc2657 8287 A breakpoint is really of this type iff its ops pointer points to
b4d90040
PA
8288 CATCH_EXEC_BREAKPOINT_OPS. */
8289
c1fc2657 8290struct exec_catchpoint : public breakpoint
b4d90040 8291{
c1fc2657 8292 ~exec_catchpoint () override;
b4d90040
PA
8293
8294 /* Filename of a program whose exec triggered this catchpoint.
8295 This field is only valid immediately after this catchpoint has
8296 triggered. */
8297 char *exec_pathname;
8298};
8299
c1fc2657 8300/* Exec catchpoint destructor. */
b4d90040 8301
c1fc2657 8302exec_catchpoint::~exec_catchpoint ()
b4d90040 8303{
c1fc2657 8304 xfree (this->exec_pathname);
b4d90040
PA
8305}
8306
77b06cd7
TJB
8307static int
8308insert_catch_exec (struct bp_location *bl)
c906108c 8309{
dfd4cc63 8310 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8311}
c906108c 8312
fe798b75 8313static int
73971819 8314remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
fe798b75 8315{
dfd4cc63 8316 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8317}
c906108c 8318
fe798b75 8319static int
f1310107 8320breakpoint_hit_catch_exec (const struct bp_location *bl,
bd522513 8321 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 8322 const struct target_waitstatus *ws)
fe798b75 8323{
b4d90040
PA
8324 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8325
f90263c1
TT
8326 if (ws->kind != TARGET_WAITKIND_EXECD)
8327 return 0;
8328
8329 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8330 return 1;
fe798b75 8331}
c906108c 8332
fe798b75 8333static enum print_stop_action
348d480f 8334print_it_catch_exec (bpstat bs)
fe798b75 8335{
36dfb11c 8336 struct ui_out *uiout = current_uiout;
348d480f 8337 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8338 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8339
fe798b75 8340 annotate_catchpoint (b->number);
f303dbd6 8341 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8342 if (b->disposition == disp_del)
112e8700 8343 uiout->text ("Temporary catchpoint ");
36dfb11c 8344 else
112e8700
SM
8345 uiout->text ("Catchpoint ");
8346 if (uiout->is_mi_like_p ())
36dfb11c 8347 {
112e8700
SM
8348 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8349 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8350 }
112e8700
SM
8351 uiout->field_int ("bkptno", b->number);
8352 uiout->text (" (exec'd ");
8353 uiout->field_string ("new-exec", c->exec_pathname);
8354 uiout->text ("), ");
36dfb11c 8355
fe798b75 8356 return PRINT_SRC_AND_LOC;
c906108c
SS
8357}
8358
fe798b75 8359static void
a6d9a66e 8360print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 8361{
b4d90040 8362 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 8363 struct value_print_options opts;
79a45e25 8364 struct ui_out *uiout = current_uiout;
fe798b75
JB
8365
8366 get_user_print_options (&opts);
8367
8368 /* Field 4, the address, is omitted (which makes the columns
8369 not line up too nicely with the headers, but the effect
8370 is relatively readable). */
8371 if (opts.addressprint)
112e8700 8372 uiout->field_skip ("addr");
fe798b75 8373 annotate_field (5);
112e8700 8374 uiout->text ("exec");
b4d90040 8375 if (c->exec_pathname != NULL)
fe798b75 8376 {
112e8700
SM
8377 uiout->text (", program \"");
8378 uiout->field_string ("what", c->exec_pathname);
8379 uiout->text ("\" ");
fe798b75 8380 }
8ac3646f 8381
112e8700
SM
8382 if (uiout->is_mi_like_p ())
8383 uiout->field_string ("catch-type", "exec");
fe798b75
JB
8384}
8385
8386static void
8387print_mention_catch_exec (struct breakpoint *b)
8388{
8389 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8390}
8391
6149aea9
PA
8392/* Implement the "print_recreate" breakpoint_ops method for exec
8393 catchpoints. */
8394
8395static void
8396print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8397{
8398 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 8399 print_recreate_thread (b, fp);
6149aea9
PA
8400}
8401
2060206e 8402static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 8403
c906108c 8404static int
fba45db2 8405hw_breakpoint_used_count (void)
c906108c 8406{
c906108c 8407 int i = 0;
f1310107
TJB
8408 struct breakpoint *b;
8409 struct bp_location *bl;
c906108c
SS
8410
8411 ALL_BREAKPOINTS (b)
c5aa993b 8412 {
d6b74ac4 8413 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
8414 for (bl = b->loc; bl; bl = bl->next)
8415 {
8416 /* Special types of hardware breakpoints may use more than
8417 one register. */
348d480f 8418 i += b->ops->resources_needed (bl);
f1310107 8419 }
c5aa993b 8420 }
c906108c
SS
8421
8422 return i;
8423}
8424
a1398e0c
PA
8425/* Returns the resources B would use if it were a hardware
8426 watchpoint. */
8427
c906108c 8428static int
a1398e0c 8429hw_watchpoint_use_count (struct breakpoint *b)
c906108c 8430{
c906108c 8431 int i = 0;
e09342b5 8432 struct bp_location *bl;
c906108c 8433
a1398e0c
PA
8434 if (!breakpoint_enabled (b))
8435 return 0;
8436
8437 for (bl = b->loc; bl; bl = bl->next)
8438 {
8439 /* Special types of hardware watchpoints may use more than
8440 one register. */
8441 i += b->ops->resources_needed (bl);
8442 }
8443
8444 return i;
8445}
8446
8447/* Returns the sum the used resources of all hardware watchpoints of
8448 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8449 the sum of the used resources of all hardware watchpoints of other
8450 types _not_ TYPE. */
8451
8452static int
8453hw_watchpoint_used_count_others (struct breakpoint *except,
8454 enum bptype type, int *other_type_used)
8455{
8456 int i = 0;
8457 struct breakpoint *b;
8458
c906108c
SS
8459 *other_type_used = 0;
8460 ALL_BREAKPOINTS (b)
e09342b5 8461 {
a1398e0c
PA
8462 if (b == except)
8463 continue;
e09342b5
TJB
8464 if (!breakpoint_enabled (b))
8465 continue;
8466
a1398e0c
PA
8467 if (b->type == type)
8468 i += hw_watchpoint_use_count (b);
8469 else if (is_hardware_watchpoint (b))
8470 *other_type_used = 1;
e09342b5
TJB
8471 }
8472
c906108c
SS
8473 return i;
8474}
8475
c906108c 8476void
fba45db2 8477disable_watchpoints_before_interactive_call_start (void)
c906108c 8478{
c5aa993b 8479 struct breakpoint *b;
c906108c
SS
8480
8481 ALL_BREAKPOINTS (b)
c5aa993b 8482 {
cc60f2e3 8483 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 8484 {
b5de0fa7 8485 b->enable_state = bp_call_disabled;
44702360 8486 update_global_location_list (UGLL_DONT_INSERT);
c5aa993b
JM
8487 }
8488 }
c906108c
SS
8489}
8490
8491void
fba45db2 8492enable_watchpoints_after_interactive_call_stop (void)
c906108c 8493{
c5aa993b 8494 struct breakpoint *b;
c906108c
SS
8495
8496 ALL_BREAKPOINTS (b)
c5aa993b 8497 {
cc60f2e3 8498 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 8499 {
b5de0fa7 8500 b->enable_state = bp_enabled;
44702360 8501 update_global_location_list (UGLL_MAY_INSERT);
c5aa993b
JM
8502 }
8503 }
c906108c
SS
8504}
8505
8bea4e01
UW
8506void
8507disable_breakpoints_before_startup (void)
8508{
6c95b8df 8509 current_program_space->executing_startup = 1;
44702360 8510 update_global_location_list (UGLL_DONT_INSERT);
8bea4e01
UW
8511}
8512
8513void
8514enable_breakpoints_after_startup (void)
8515{
6c95b8df 8516 current_program_space->executing_startup = 0;
f8eba3c6 8517 breakpoint_re_set ();
8bea4e01
UW
8518}
8519
7c16b83e
PA
8520/* Create a new single-step breakpoint for thread THREAD, with no
8521 locations. */
c906108c 8522
7c16b83e
PA
8523static struct breakpoint *
8524new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8525{
b270e6f9 8526 std::unique_ptr<breakpoint> b (new breakpoint ());
7c16b83e 8527
b270e6f9 8528 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step,
7c16b83e
PA
8529 &momentary_breakpoint_ops);
8530
8531 b->disposition = disp_donttouch;
8532 b->frame_id = null_frame_id;
8533
8534 b->thread = thread;
8535 gdb_assert (b->thread != 0);
8536
b270e6f9 8537 return add_to_breakpoint_chain (std::move (b));
7c16b83e
PA
8538}
8539
8540/* Set a momentary breakpoint of type TYPE at address specified by
8541 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8542 frame. */
c906108c 8543
454dafbd 8544breakpoint_up
a6d9a66e
UW
8545set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8546 struct frame_id frame_id, enum bptype type)
c906108c 8547{
52f0bd74 8548 struct breakpoint *b;
edb3359d 8549
193facb3
JK
8550 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8551 tail-called one. */
8552 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 8553
06edf0c0 8554 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
8555 b->enable_state = bp_enabled;
8556 b->disposition = disp_donttouch;
818dd999 8557 b->frame_id = frame_id;
c906108c 8558
4a64f543
MS
8559 /* If we're debugging a multi-threaded program, then we want
8560 momentary breakpoints to be active in only a single thread of
8561 control. */
39f77062 8562 if (in_thread_list (inferior_ptid))
5d5658a1 8563 b->thread = ptid_to_global_thread_id (inferior_ptid);
c906108c 8564
44702360 8565 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 8566
454dafbd 8567 return breakpoint_up (b);
c906108c 8568}
611c83ae 8569
06edf0c0 8570/* Make a momentary breakpoint based on the master breakpoint ORIG.
a1aa2221
LM
8571 The new breakpoint will have type TYPE, use OPS as its
8572 breakpoint_ops, and will set enabled to LOC_ENABLED. */
e58b0e63 8573
06edf0c0
PA
8574static struct breakpoint *
8575momentary_breakpoint_from_master (struct breakpoint *orig,
8576 enum bptype type,
a1aa2221
LM
8577 const struct breakpoint_ops *ops,
8578 int loc_enabled)
e58b0e63
PA
8579{
8580 struct breakpoint *copy;
8581
06edf0c0 8582 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 8583 copy->loc = allocate_bp_location (copy);
0e30163f 8584 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 8585
a6d9a66e 8586 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
8587 copy->loc->requested_address = orig->loc->requested_address;
8588 copy->loc->address = orig->loc->address;
8589 copy->loc->section = orig->loc->section;
6c95b8df 8590 copy->loc->pspace = orig->loc->pspace;
55aa24fb 8591 copy->loc->probe = orig->loc->probe;
f8eba3c6 8592 copy->loc->line_number = orig->loc->line_number;
2f202fde 8593 copy->loc->symtab = orig->loc->symtab;
a1aa2221 8594 copy->loc->enabled = loc_enabled;
e58b0e63
PA
8595 copy->frame_id = orig->frame_id;
8596 copy->thread = orig->thread;
6c95b8df 8597 copy->pspace = orig->pspace;
e58b0e63
PA
8598
8599 copy->enable_state = bp_enabled;
8600 copy->disposition = disp_donttouch;
8601 copy->number = internal_breakpoint_number--;
8602
44702360 8603 update_global_location_list_nothrow (UGLL_DONT_INSERT);
e58b0e63
PA
8604 return copy;
8605}
8606
06edf0c0
PA
8607/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8608 ORIG is NULL. */
8609
8610struct breakpoint *
8611clone_momentary_breakpoint (struct breakpoint *orig)
8612{
8613 /* If there's nothing to clone, then return nothing. */
8614 if (orig == NULL)
8615 return NULL;
8616
a1aa2221 8617 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
06edf0c0
PA
8618}
8619
454dafbd 8620breakpoint_up
a6d9a66e
UW
8621set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8622 enum bptype type)
611c83ae
PA
8623{
8624 struct symtab_and_line sal;
8625
8626 sal = find_pc_line (pc, 0);
8627 sal.pc = pc;
8628 sal.section = find_pc_overlay (pc);
8629 sal.explicit_pc = 1;
8630
a6d9a66e 8631 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 8632}
c906108c 8633\f
c5aa993b 8634
c906108c
SS
8635/* Tell the user we have just set a breakpoint B. */
8636
8637static void
fba45db2 8638mention (struct breakpoint *b)
c906108c 8639{
348d480f 8640 b->ops->print_mention (b);
112e8700 8641 if (current_uiout->is_mi_like_p ())
fb40c209 8642 return;
c906108c
SS
8643 printf_filtered ("\n");
8644}
c906108c 8645\f
c5aa993b 8646
1a853c52
PA
8647static int bp_loc_is_permanent (struct bp_location *loc);
8648
0d381245 8649static struct bp_location *
39d61571 8650add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
8651 const struct symtab_and_line *sal)
8652{
8653 struct bp_location *loc, **tmp;
3742cc8b
YQ
8654 CORE_ADDR adjusted_address;
8655 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8656
8657 if (loc_gdbarch == NULL)
8658 loc_gdbarch = b->gdbarch;
8659
8660 /* Adjust the breakpoint's address prior to allocating a location.
8661 Once we call allocate_bp_location(), that mostly uninitialized
8662 location will be placed on the location chain. Adjustment of the
8663 breakpoint may cause target_read_memory() to be called and we do
8664 not want its scan of the location chain to find a breakpoint and
8665 location that's only been partially initialized. */
8666 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8667 sal->pc, b->type);
0d381245 8668
d30113d4 8669 /* Sort the locations by their ADDRESS. */
39d61571 8670 loc = allocate_bp_location (b);
d30113d4
JK
8671 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8672 tmp = &((*tmp)->next))
0d381245 8673 ;
d30113d4 8674 loc->next = *tmp;
0d381245 8675 *tmp = loc;
3742cc8b 8676
0d381245 8677 loc->requested_address = sal->pc;
3742cc8b 8678 loc->address = adjusted_address;
6c95b8df 8679 loc->pspace = sal->pspace;
935676c9 8680 loc->probe.prob = sal->prob;
729662a5 8681 loc->probe.objfile = sal->objfile;
6c95b8df 8682 gdb_assert (loc->pspace != NULL);
0d381245 8683 loc->section = sal->section;
3742cc8b 8684 loc->gdbarch = loc_gdbarch;
f8eba3c6 8685 loc->line_number = sal->line;
2f202fde 8686 loc->symtab = sal->symtab;
4a27f119 8687 loc->symbol = sal->symbol;
f8eba3c6 8688
0e30163f
JK
8689 set_breakpoint_location_function (loc,
8690 sal->explicit_pc || sal->explicit_line);
1a853c52 8691
6ae88661
LM
8692 /* While by definition, permanent breakpoints are already present in the
8693 code, we don't mark the location as inserted. Normally one would expect
8694 that GDB could rely on that breakpoint instruction to stop the program,
8695 thus removing the need to insert its own breakpoint, except that executing
8696 the breakpoint instruction can kill the target instead of reporting a
8697 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
8698 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
8699 with "Trap 0x02 while interrupts disabled, Error state". Letting the
8700 breakpoint be inserted normally results in QEMU knowing about the GDB
8701 breakpoint, and thus trap before the breakpoint instruction is executed.
8702 (If GDB later needs to continue execution past the permanent breakpoint,
8703 it manually increments the PC, thus avoiding executing the breakpoint
8704 instruction.) */
1a853c52 8705 if (bp_loc_is_permanent (loc))
6ae88661 8706 loc->permanent = 1;
1a853c52 8707
0d381245
VP
8708 return loc;
8709}
514f746b
AR
8710\f
8711
1cf4d951 8712/* See breakpoint.h. */
514f746b 8713
1cf4d951
PA
8714int
8715program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
514f746b
AR
8716{
8717 int len;
8718 CORE_ADDR addr;
1afeeb75 8719 const gdb_byte *bpoint;
514f746b
AR
8720 gdb_byte *target_mem;
8721
1cf4d951
PA
8722 addr = address;
8723 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
8724
8725 /* Software breakpoints unsupported? */
8726 if (bpoint == NULL)
8727 return 0;
8728
224c3ddb 8729 target_mem = (gdb_byte *) alloca (len);
1cf4d951
PA
8730
8731 /* Enable the automatic memory restoration from breakpoints while
8732 we read the memory. Otherwise we could say about our temporary
8733 breakpoints they are permanent. */
cb85b21b
TT
8734 scoped_restore restore_memory
8735 = make_scoped_restore_show_memory_breakpoints (0);
1cf4d951
PA
8736
8737 if (target_read_memory (address, target_mem, len) == 0
8738 && memcmp (target_mem, bpoint, len) == 0)
cb85b21b 8739 return 1;
1cf4d951 8740
cb85b21b 8741 return 0;
1cf4d951
PA
8742}
8743
8744/* Return 1 if LOC is pointing to a permanent breakpoint,
8745 return 0 otherwise. */
8746
8747static int
8748bp_loc_is_permanent (struct bp_location *loc)
8749{
514f746b
AR
8750 gdb_assert (loc != NULL);
8751
244558af
LM
8752 /* If we have a catchpoint or a watchpoint, just return 0. We should not
8753 attempt to read from the addresses the locations of these breakpoint types
8754 point to. program_breakpoint_here_p, below, will attempt to read
8755 memory. */
8756 if (!breakpoint_address_is_meaningful (loc->owner))
8757 return 0;
8758
5ed8105e 8759 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 8760 switch_to_program_space_and_thread (loc->pspace);
5ed8105e 8761 return program_breakpoint_here_p (loc->gdbarch, loc->address);
514f746b
AR
8762}
8763
e7e0cddf
SS
8764/* Build a command list for the dprintf corresponding to the current
8765 settings of the dprintf style options. */
8766
8767static void
8768update_dprintf_command_list (struct breakpoint *b)
8769{
8770 char *dprintf_args = b->extra_string;
8771 char *printf_line = NULL;
8772
8773 if (!dprintf_args)
8774 return;
8775
8776 dprintf_args = skip_spaces (dprintf_args);
8777
8778 /* Allow a comma, as it may have terminated a location, but don't
8779 insist on it. */
8780 if (*dprintf_args == ',')
8781 ++dprintf_args;
8782 dprintf_args = skip_spaces (dprintf_args);
8783
8784 if (*dprintf_args != '"')
8785 error (_("Bad format string, missing '\"'."));
8786
d3ce09f5 8787 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 8788 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 8789 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
8790 {
8791 if (!dprintf_function)
8792 error (_("No function supplied for dprintf call"));
8793
8794 if (dprintf_channel && strlen (dprintf_channel) > 0)
8795 printf_line = xstrprintf ("call (void) %s (%s,%s)",
8796 dprintf_function,
8797 dprintf_channel,
8798 dprintf_args);
8799 else
8800 printf_line = xstrprintf ("call (void) %s (%s)",
8801 dprintf_function,
8802 dprintf_args);
8803 }
d3ce09f5
SS
8804 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
8805 {
8806 if (target_can_run_breakpoint_commands ())
8807 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
8808 else
8809 {
8810 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
8811 printf_line = xstrprintf ("printf %s", dprintf_args);
8812 }
8813 }
e7e0cddf
SS
8814 else
8815 internal_error (__FILE__, __LINE__,
8816 _("Invalid dprintf style."));
8817
f28045c2 8818 gdb_assert (printf_line != NULL);
9d6e6e84 8819 /* Manufacture a printf sequence. */
f28045c2 8820 {
8d749320 8821 struct command_line *printf_cmd_line = XNEW (struct command_line);
e7e0cddf 8822
f28045c2
YQ
8823 printf_cmd_line->control_type = simple_control;
8824 printf_cmd_line->body_count = 0;
8825 printf_cmd_line->body_list = NULL;
9d6e6e84 8826 printf_cmd_line->next = NULL;
f28045c2 8827 printf_cmd_line->line = printf_line;
e7e0cddf 8828
93921405 8829 breakpoint_set_commands (b, command_line_up (printf_cmd_line));
f28045c2 8830 }
e7e0cddf
SS
8831}
8832
8833/* Update all dprintf commands, making their command lists reflect
8834 current style settings. */
8835
8836static void
eb4c3f4a 8837update_dprintf_commands (const char *args, int from_tty,
e7e0cddf
SS
8838 struct cmd_list_element *c)
8839{
8840 struct breakpoint *b;
8841
8842 ALL_BREAKPOINTS (b)
8843 {
8844 if (b->type == bp_dprintf)
8845 update_dprintf_command_list (b);
8846 }
8847}
c3f6f71d 8848
f00aae0f
KS
8849/* Create a breakpoint with SAL as location. Use LOCATION
8850 as a description of the location, and COND_STRING
b35a8b2f
DE
8851 as condition expression. If LOCATION is NULL then create an
8852 "address location" from the address in the SAL. */
018d34a4
VP
8853
8854static void
d9b3f62e 8855init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
6c5b2ebe 8856 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8857 event_location_up &&location,
e1e01040
PA
8858 gdb::unique_xmalloc_ptr<char> filter,
8859 gdb::unique_xmalloc_ptr<char> cond_string,
8860 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
8861 enum bptype type, enum bpdisp disposition,
8862 int thread, int task, int ignore_count,
c0a91b2b 8863 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
8864 int enabled, int internal, unsigned flags,
8865 int display_canonical)
018d34a4 8866{
0d381245 8867 int i;
018d34a4
VP
8868
8869 if (type == bp_hardware_breakpoint)
8870 {
fbbd034e
AS
8871 int target_resources_ok;
8872
8873 i = hw_breakpoint_used_count ();
8874 target_resources_ok =
8875 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
8876 i + 1, 0);
8877 if (target_resources_ok == 0)
8878 error (_("No hardware breakpoint support in the target."));
8879 else if (target_resources_ok < 0)
8880 error (_("Hardware breakpoints used exceeds limit."));
8881 }
8882
6c5b2ebe 8883 gdb_assert (!sals.empty ());
6c95b8df 8884
6c5b2ebe 8885 for (const auto &sal : sals)
0d381245 8886 {
0d381245
VP
8887 struct bp_location *loc;
8888
8889 if (from_tty)
5af949e3
UW
8890 {
8891 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8892 if (!loc_gdbarch)
8893 loc_gdbarch = gdbarch;
8894
8895 describe_other_breakpoints (loc_gdbarch,
6c95b8df 8896 sal.pspace, sal.pc, sal.section, thread);
5af949e3 8897 }
0d381245 8898
6c5b2ebe 8899 if (&sal == &sals[0])
0d381245 8900 {
d9b3f62e 8901 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 8902 b->thread = thread;
4a306c9a 8903 b->task = task;
855a6e68 8904
e1e01040
PA
8905 b->cond_string = cond_string.release ();
8906 b->extra_string = extra_string.release ();
0d381245 8907 b->ignore_count = ignore_count;
41447f92 8908 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 8909 b->disposition = disposition;
6c95b8df 8910
44f238bb
PA
8911 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8912 b->loc->inserted = 1;
8913
0fb4aa4b
PA
8914 if (type == bp_static_tracepoint)
8915 {
d9b3f62e 8916 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
8917 struct static_tracepoint_marker marker;
8918
983af33b 8919 if (strace_marker_p (b))
0fb4aa4b
PA
8920 {
8921 /* We already know the marker exists, otherwise, we
8922 wouldn't see a sal for it. */
d28cd78a
TT
8923 const char *p
8924 = &event_location_to_string (b->location.get ())[3];
f00aae0f 8925 const char *endp;
0fb4aa4b 8926 char *marker_str;
0fb4aa4b 8927
f1735a53 8928 p = skip_spaces (p);
0fb4aa4b 8929
f1735a53 8930 endp = skip_to_space (p);
0fb4aa4b
PA
8931
8932 marker_str = savestring (p, endp - p);
d9b3f62e 8933 t->static_trace_marker_id = marker_str;
0fb4aa4b 8934
3e43a32a
MS
8935 printf_filtered (_("Probed static tracepoint "
8936 "marker \"%s\"\n"),
d9b3f62e 8937 t->static_trace_marker_id);
0fb4aa4b
PA
8938 }
8939 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
8940 {
d9b3f62e 8941 t->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
8942 release_static_tracepoint_marker (&marker);
8943
3e43a32a
MS
8944 printf_filtered (_("Probed static tracepoint "
8945 "marker \"%s\"\n"),
d9b3f62e 8946 t->static_trace_marker_id);
0fb4aa4b
PA
8947 }
8948 else
3e43a32a
MS
8949 warning (_("Couldn't determine the static "
8950 "tracepoint marker to probe"));
0fb4aa4b
PA
8951 }
8952
0d381245
VP
8953 loc = b->loc;
8954 }
8955 else
018d34a4 8956 {
39d61571 8957 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
8958 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8959 loc->inserted = 1;
0d381245
VP
8960 }
8961
8962 if (b->cond_string)
8963 {
bbc13ae3
KS
8964 const char *arg = b->cond_string;
8965
1bb9788d
TT
8966 loc->cond = parse_exp_1 (&arg, loc->address,
8967 block_for_pc (loc->address), 0);
0d381245 8968 if (*arg)
588ae58c 8969 error (_("Garbage '%s' follows condition"), arg);
018d34a4 8970 }
e7e0cddf
SS
8971
8972 /* Dynamic printf requires and uses additional arguments on the
8973 command line, otherwise it's an error. */
8974 if (type == bp_dprintf)
8975 {
8976 if (b->extra_string)
8977 update_dprintf_command_list (b);
8978 else
8979 error (_("Format string required"));
8980 }
8981 else if (b->extra_string)
588ae58c 8982 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 8983 }
018d34a4 8984
56435ebe 8985 b->display_canonical = display_canonical;
f00aae0f 8986 if (location != NULL)
d28cd78a 8987 b->location = std::move (location);
018d34a4 8988 else
d28cd78a 8989 b->location = new_address_location (b->loc->address, NULL, 0);
e1e01040 8990 b->filter = filter.release ();
d9b3f62e 8991}
018d34a4 8992
d9b3f62e
PA
8993static void
8994create_breakpoint_sal (struct gdbarch *gdbarch,
6c5b2ebe 8995 gdb::array_view<const symtab_and_line> sals,
ffc2605c 8996 event_location_up &&location,
e1e01040
PA
8997 gdb::unique_xmalloc_ptr<char> filter,
8998 gdb::unique_xmalloc_ptr<char> cond_string,
8999 gdb::unique_xmalloc_ptr<char> extra_string,
d9b3f62e
PA
9000 enum bptype type, enum bpdisp disposition,
9001 int thread, int task, int ignore_count,
c0a91b2b 9002 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9003 int enabled, int internal, unsigned flags,
9004 int display_canonical)
d9b3f62e 9005{
a5e364af 9006 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (type);
d9b3f62e 9007
a5e364af 9008 init_breakpoint_sal (b.get (), gdbarch,
ffc2605c 9009 sals, std::move (location),
e1e01040
PA
9010 std::move (filter),
9011 std::move (cond_string),
9012 std::move (extra_string),
d9b3f62e
PA
9013 type, disposition,
9014 thread, task, ignore_count,
9015 ops, from_tty,
44f238bb
PA
9016 enabled, internal, flags,
9017 display_canonical);
d9b3f62e 9018
b270e6f9 9019 install_breakpoint (internal, std::move (b), 0);
018d34a4
VP
9020}
9021
9022/* Add SALS.nelts breakpoints to the breakpoint table. For each
9023 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9024 value. COND_STRING, if not NULL, specified the condition to be
9025 used for all breakpoints. Essentially the only case where
9026 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9027 function. In that case, it's still not possible to specify
9028 separate conditions for different overloaded functions, so
9029 we take just a single condition string.
9030
c3f6f71d 9031 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 9032 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
9033 array contents). If the function fails (error() is called), the
9034 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 9035 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
9036
9037static void
8cdf0e15 9038create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 9039 struct linespec_result *canonical,
e1e01040
PA
9040 gdb::unique_xmalloc_ptr<char> cond_string,
9041 gdb::unique_xmalloc_ptr<char> extra_string,
8cdf0e15
VP
9042 enum bptype type, enum bpdisp disposition,
9043 int thread, int task, int ignore_count,
c0a91b2b 9044 const struct breakpoint_ops *ops, int from_tty,
44f238bb 9045 int enabled, int internal, unsigned flags)
c906108c 9046{
f8eba3c6 9047 if (canonical->pre_expanded)
6c5b2ebe 9048 gdb_assert (canonical->lsals.size () == 1);
f8eba3c6 9049
6c5b2ebe 9050 for (const auto &lsal : canonical->lsals)
c3f6f71d 9051 {
f00aae0f 9052 /* Note that 'location' can be NULL in the case of a plain
f8eba3c6 9053 'break', without arguments. */
ffc2605c 9054 event_location_up location
f00aae0f 9055 = (canonical->location != NULL
8e9e35b1 9056 ? copy_event_location (canonical->location.get ()) : NULL);
e1e01040 9057 gdb::unique_xmalloc_ptr<char> filter_string
6c5b2ebe 9058 (lsal.canonical != NULL ? xstrdup (lsal.canonical) : NULL);
0d381245 9059
6c5b2ebe 9060 create_breakpoint_sal (gdbarch, lsal.sals,
ffc2605c 9061 std::move (location),
e1e01040
PA
9062 std::move (filter_string),
9063 std::move (cond_string),
9064 std::move (extra_string),
e7e0cddf 9065 type, disposition,
84f4c1fe 9066 thread, task, ignore_count, ops,
44f238bb 9067 from_tty, enabled, internal, flags,
56435ebe 9068 canonical->special_display);
c3f6f71d 9069 }
c3f6f71d 9070}
c906108c 9071
f00aae0f 9072/* Parse LOCATION which is assumed to be a SAL specification possibly
c3f6f71d 9073 followed by conditionals. On return, SALS contains an array of SAL
f00aae0f
KS
9074 addresses found. LOCATION points to the end of the SAL (for
9075 linespec locations).
9998af43
TJB
9076
9077 The array and the line spec strings are allocated on the heap, it is
9078 the caller's responsibility to free them. */
c906108c 9079
b9362cc7 9080static void
f00aae0f 9081parse_breakpoint_sals (const struct event_location *location,
58438ac1 9082 struct linespec_result *canonical)
c3f6f71d 9083{
f00aae0f
KS
9084 struct symtab_and_line cursal;
9085
9086 if (event_location_type (location) == LINESPEC_LOCATION)
9087 {
a20714ff 9088 const char *spec = get_linespec_location (location)->spec_string;
f00aae0f 9089
a20714ff 9090 if (spec == NULL)
f00aae0f
KS
9091 {
9092 /* The last displayed codepoint, if it's valid, is our default
9093 breakpoint address. */
9094 if (last_displayed_sal_is_valid ())
9095 {
f00aae0f
KS
9096 /* Set sal's pspace, pc, symtab, and line to the values
9097 corresponding to the last call to print_frame_info.
9098 Be sure to reinitialize LINE with NOTCURRENT == 0
9099 as the breakpoint line number is inappropriate otherwise.
9100 find_pc_line would adjust PC, re-set it back. */
51abb421
PA
9101 symtab_and_line sal = get_last_displayed_sal ();
9102 CORE_ADDR pc = sal.pc;
9103
f00aae0f
KS
9104 sal = find_pc_line (pc, 0);
9105
9106 /* "break" without arguments is equivalent to "break *PC"
9107 where PC is the last displayed codepoint's address. So
9108 make sure to set sal.explicit_pc to prevent GDB from
9109 trying to expand the list of sals to include all other
9110 instances with the same symtab and line. */
9111 sal.pc = pc;
9112 sal.explicit_pc = 1;
9113
6c5b2ebe
PA
9114 struct linespec_sals lsal;
9115 lsal.sals = {sal};
f00aae0f
KS
9116 lsal.canonical = NULL;
9117
6c5b2ebe 9118 canonical->lsals.push_back (std::move (lsal));
f00aae0f
KS
9119 return;
9120 }
9121 else
9122 error (_("No default breakpoint address now."));
c906108c 9123 }
c906108c 9124 }
f00aae0f
KS
9125
9126 /* Force almost all breakpoints to be in terms of the
9127 current_source_symtab (which is decode_line_1's default).
9128 This should produce the results we want almost all of the
9129 time while leaving default_breakpoint_* alone.
9130
9131 ObjC: However, don't match an Objective-C method name which
9132 may have a '+' or '-' succeeded by a '['. */
9133 cursal = get_current_source_symtab_and_line ();
9134 if (last_displayed_sal_is_valid ())
c906108c 9135 {
a20714ff 9136 const char *spec = NULL;
cc80f267 9137
f00aae0f 9138 if (event_location_type (location) == LINESPEC_LOCATION)
a20714ff 9139 spec = get_linespec_location (location)->spec_string;
cc80f267 9140
f00aae0f 9141 if (!cursal.symtab
a20714ff
PA
9142 || (spec != NULL
9143 && strchr ("+-", spec[0]) != NULL
9144 && spec[1] != '['))
f00aae0f 9145 {
c2f4122d 9146 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f
KS
9147 get_last_displayed_symtab (),
9148 get_last_displayed_line (),
9149 canonical, NULL, NULL);
9150 return;
9151 }
c906108c 9152 }
f00aae0f 9153
c2f4122d 9154 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f 9155 cursal.symtab, cursal.line, canonical, NULL, NULL);
c3f6f71d 9156}
c906108c 9157
c906108c 9158
c3f6f71d 9159/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 9160 inserted as a breakpoint. If it can't throw an error. */
c906108c 9161
b9362cc7 9162static void
6c5b2ebe 9163breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
c3f6f71d 9164{
6c5b2ebe
PA
9165 for (auto &sal : sals)
9166 resolve_sal_pc (&sal);
c3f6f71d
JM
9167}
9168
7a697b8d
SS
9169/* Fast tracepoints may have restrictions on valid locations. For
9170 instance, a fast tracepoint using a jump instead of a trap will
9171 likely have to overwrite more bytes than a trap would, and so can
9172 only be placed where the instruction is longer than the jump, or a
9173 multi-instruction sequence does not have a jump into the middle of
9174 it, etc. */
9175
9176static void
9177check_fast_tracepoint_sals (struct gdbarch *gdbarch,
6c5b2ebe 9178 gdb::array_view<const symtab_and_line> sals)
7a697b8d 9179{
6c5b2ebe 9180 for (const auto &sal : sals)
7a697b8d 9181 {
f8eba3c6
TT
9182 struct gdbarch *sarch;
9183
6c5b2ebe 9184 sarch = get_sal_arch (sal);
f8eba3c6
TT
9185 /* We fall back to GDBARCH if there is no architecture
9186 associated with SAL. */
9187 if (sarch == NULL)
9188 sarch = gdbarch;
281d762b
TT
9189 std::string msg;
9190 if (!gdbarch_fast_tracepoint_valid_at (sarch, sal.pc, &msg))
53c3572a 9191 error (_("May not have a fast tracepoint at %s%s"),
281d762b 9192 paddress (sarch, sal.pc), msg.c_str ());
7a697b8d
SS
9193 }
9194}
9195
018d34a4
VP
9196/* Given TOK, a string specification of condition and thread, as
9197 accepted by the 'break' command, extract the condition
9198 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9199 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9200 If no condition is found, *COND_STRING is set to NULL.
9201 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9202
9203static void
bbc13ae3 9204find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9205 char **cond_string, int *thread, int *task,
9206 char **rest)
018d34a4
VP
9207{
9208 *cond_string = NULL;
9209 *thread = -1;
ed1d1739
KS
9210 *task = 0;
9211 *rest = NULL;
9212
018d34a4
VP
9213 while (tok && *tok)
9214 {
bbc13ae3 9215 const char *end_tok;
018d34a4 9216 int toklen;
bbc13ae3
KS
9217 const char *cond_start = NULL;
9218 const char *cond_end = NULL;
cc59ec59 9219
f1735a53 9220 tok = skip_spaces (tok);
e7e0cddf
SS
9221
9222 if ((*tok == '"' || *tok == ',') && rest)
9223 {
9224 *rest = savestring (tok, strlen (tok));
9225 return;
9226 }
9227
f1735a53 9228 end_tok = skip_to_space (tok);
d634f2de 9229
018d34a4 9230 toklen = end_tok - tok;
d634f2de 9231
018d34a4
VP
9232 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9233 {
9234 tok = cond_start = end_tok + 1;
4d01a485 9235 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
018d34a4 9236 cond_end = tok;
d634f2de 9237 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9238 }
9239 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9240 {
5d5658a1
PA
9241 const char *tmptok;
9242 struct thread_info *thr;
d634f2de 9243
018d34a4 9244 tok = end_tok + 1;
5d5658a1 9245 thr = parse_thread_id (tok, &tmptok);
018d34a4
VP
9246 if (tok == tmptok)
9247 error (_("Junk after thread keyword."));
5d5658a1 9248 *thread = thr->global_num;
bbc13ae3 9249 tok = tmptok;
018d34a4 9250 }
4a306c9a
JB
9251 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9252 {
9253 char *tmptok;
9254
9255 tok = end_tok + 1;
bbc13ae3 9256 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9257 if (tok == tmptok)
9258 error (_("Junk after task keyword."));
9259 if (!valid_task_id (*task))
b6199126 9260 error (_("Unknown task %d."), *task);
bbc13ae3 9261 tok = tmptok;
4a306c9a 9262 }
e7e0cddf
SS
9263 else if (rest)
9264 {
9265 *rest = savestring (tok, strlen (tok));
ccab2054 9266 return;
e7e0cddf 9267 }
018d34a4
VP
9268 else
9269 error (_("Junk at end of arguments."));
9270 }
9271}
9272
0fb4aa4b
PA
9273/* Decode a static tracepoint marker spec. */
9274
6c5b2ebe 9275static std::vector<symtab_and_line>
f00aae0f 9276decode_static_tracepoint_spec (const char **arg_p)
0fb4aa4b
PA
9277{
9278 VEC(static_tracepoint_marker_p) *markers = NULL;
f00aae0f
KS
9279 const char *p = &(*arg_p)[3];
9280 const char *endp;
0fb4aa4b
PA
9281 int i;
9282
f1735a53 9283 p = skip_spaces (p);
0fb4aa4b 9284
f1735a53 9285 endp = skip_to_space (p);
0fb4aa4b 9286
81b1e71c 9287 std::string marker_str (p, endp - p);
0fb4aa4b 9288
81b1e71c 9289 markers = target_static_tracepoint_markers_by_strid (marker_str.c_str ());
0fb4aa4b 9290 if (VEC_empty(static_tracepoint_marker_p, markers))
81b1e71c
TT
9291 error (_("No known static tracepoint marker named %s"),
9292 marker_str.c_str ());
0fb4aa4b 9293
6c5b2ebe
PA
9294 std::vector<symtab_and_line> sals;
9295 sals.reserve (VEC_length(static_tracepoint_marker_p, markers));
0fb4aa4b 9296
6c5b2ebe 9297 for (i = 0; i < VEC_length(static_tracepoint_marker_p, markers); i++)
0fb4aa4b
PA
9298 {
9299 struct static_tracepoint_marker *marker;
9300
9301 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9302
51abb421 9303 symtab_and_line sal = find_pc_line (marker->address, 0);
6c5b2ebe
PA
9304 sal.pc = marker->address;
9305 sals.push_back (sal);
0fb4aa4b
PA
9306
9307 release_static_tracepoint_marker (marker);
9308 }
9309
0fb4aa4b
PA
9310 *arg_p = endp;
9311 return sals;
9312}
9313
f00aae0f 9314/* See breakpoint.h. */
0101ce28 9315
8cdf0e15
VP
9316int
9317create_breakpoint (struct gdbarch *gdbarch,
e1e01040
PA
9318 const struct event_location *location,
9319 const char *cond_string,
9320 int thread, const char *extra_string,
f00aae0f 9321 int parse_extra,
0fb4aa4b 9322 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9323 int ignore_count,
9324 enum auto_boolean pending_break_support,
c0a91b2b 9325 const struct breakpoint_ops *ops,
44f238bb
PA
9326 int from_tty, int enabled, int internal,
9327 unsigned flags)
c3f6f71d 9328{
7efd8fc2 9329 struct linespec_result canonical;
80c99de1 9330 struct cleanup *bkpt_chain = NULL;
0101ce28 9331 int pending = 0;
4a306c9a 9332 int task = 0;
86b17b60 9333 int prev_bkpt_count = breakpoint_count;
c3f6f71d 9334
348d480f
PA
9335 gdb_assert (ops != NULL);
9336
f00aae0f
KS
9337 /* If extra_string isn't useful, set it to NULL. */
9338 if (extra_string != NULL && *extra_string == '\0')
9339 extra_string = NULL;
9340
492d29ea 9341 TRY
b78a6381 9342 {
f00aae0f 9343 ops->create_sals_from_location (location, &canonical, type_wanted);
b78a6381 9344 }
492d29ea 9345 CATCH (e, RETURN_MASK_ERROR)
0101ce28 9346 {
492d29ea
PA
9347 /* If caller is interested in rc value from parse, set
9348 value. */
9349 if (e.error == NOT_FOUND_ERROR)
0101ce28 9350 {
05ff989b
AC
9351 /* If pending breakpoint support is turned off, throw
9352 error. */
fa8d40ab
JJ
9353
9354 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
9355 throw_exception (e);
9356
9357 exception_print (gdb_stderr, e);
fa8d40ab 9358
05ff989b
AC
9359 /* If pending breakpoint support is auto query and the user
9360 selects no, then simply return the error code. */
059fb39f 9361 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
9362 && !nquery (_("Make %s pending on future shared library load? "),
9363 bptype_string (type_wanted)))
fd9b8c24 9364 return 0;
fa8d40ab 9365
05ff989b
AC
9366 /* At this point, either the user was queried about setting
9367 a pending breakpoint and selected yes, or pending
9368 breakpoint behavior is on and thus a pending breakpoint
9369 is defaulted on behalf of the user. */
f00aae0f 9370 pending = 1;
0101ce28 9371 }
492d29ea
PA
9372 else
9373 throw_exception (e);
0101ce28 9374 }
492d29ea
PA
9375 END_CATCH
9376
6c5b2ebe 9377 if (!pending && canonical.lsals.empty ())
492d29ea 9378 return 0;
c3f6f71d 9379
c3f6f71d
JM
9380 /* ----------------------------- SNIP -----------------------------
9381 Anything added to the cleanup chain beyond this point is assumed
9382 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
9383 then the memory is not reclaimed. */
9384 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 9385
c3f6f71d
JM
9386 /* Resolve all line numbers to PC's and verify that the addresses
9387 are ok for the target. */
0101ce28 9388 if (!pending)
f8eba3c6 9389 {
6c5b2ebe
PA
9390 for (auto &lsal : canonical.lsals)
9391 breakpoint_sals_to_pc (lsal.sals);
f8eba3c6 9392 }
c3f6f71d 9393
7a697b8d 9394 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 9395 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6 9396 {
6c5b2ebe
PA
9397 for (const auto &lsal : canonical.lsals)
9398 check_fast_tracepoint_sals (gdbarch, lsal.sals);
f8eba3c6 9399 }
7a697b8d 9400
c3f6f71d
JM
9401 /* Verify that condition can be parsed, before setting any
9402 breakpoints. Allocate a separate condition expression for each
4a64f543 9403 breakpoint. */
0101ce28 9404 if (!pending)
c3f6f71d 9405 {
e1e01040
PA
9406 gdb::unique_xmalloc_ptr<char> cond_string_copy;
9407 gdb::unique_xmalloc_ptr<char> extra_string_copy;
9408
f00aae0f 9409 if (parse_extra)
72b2ff0e 9410 {
0878d0fa 9411 char *rest;
e1e01040 9412 char *cond;
52d361e1 9413
6c5b2ebe 9414 const linespec_sals &lsal = canonical.lsals[0];
52d361e1 9415
0878d0fa
YQ
9416 /* Here we only parse 'arg' to separate condition
9417 from thread number, so parsing in context of first
9418 sal is OK. When setting the breakpoint we'll
9419 re-parse it in context of each sal. */
9420
6c5b2ebe 9421 find_condition_and_thread (extra_string, lsal.sals[0].pc,
e1e01040
PA
9422 &cond, &thread, &task, &rest);
9423 cond_string_copy.reset (cond);
9424 extra_string_copy.reset (rest);
72b2ff0e 9425 }
2f069f6f 9426 else
72b2ff0e 9427 {
f00aae0f
KS
9428 if (type_wanted != bp_dprintf
9429 && extra_string != NULL && *extra_string != '\0')
9430 error (_("Garbage '%s' at end of location"), extra_string);
0878d0fa
YQ
9431
9432 /* Create a private copy of condition string. */
9433 if (cond_string)
e1e01040 9434 cond_string_copy.reset (xstrdup (cond_string));
0878d0fa
YQ
9435 /* Create a private copy of any extra string. */
9436 if (extra_string)
e1e01040 9437 extra_string_copy.reset (xstrdup (extra_string));
72b2ff0e 9438 }
0fb4aa4b 9439
52d361e1 9440 ops->create_breakpoints_sal (gdbarch, &canonical,
e1e01040
PA
9441 std::move (cond_string_copy),
9442 std::move (extra_string_copy),
9443 type_wanted,
d9b3f62e
PA
9444 tempflag ? disp_del : disp_donttouch,
9445 thread, task, ignore_count, ops,
44f238bb 9446 from_tty, enabled, internal, flags);
c906108c 9447 }
0101ce28
JJ
9448 else
9449 {
a5e364af 9450 std::unique_ptr <breakpoint> b = new_breakpoint_from_type (type_wanted);
bfccc43c 9451
a5e364af 9452 init_raw_breakpoint_without_location (b.get (), gdbarch, type_wanted, ops);
d28cd78a 9453 b->location = copy_event_location (location);
bfccc43c 9454
f00aae0f
KS
9455 if (parse_extra)
9456 b->cond_string = NULL;
e12c7713
MK
9457 else
9458 {
9459 /* Create a private copy of condition string. */
e1e01040 9460 b->cond_string = cond_string != NULL ? xstrdup (cond_string) : NULL;
15630549 9461 b->thread = thread;
e12c7713 9462 }
f00aae0f
KS
9463
9464 /* Create a private copy of any extra string. */
e1e01040 9465 b->extra_string = extra_string != NULL ? xstrdup (extra_string) : NULL;
0101ce28 9466 b->ignore_count = ignore_count;
0101ce28 9467 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 9468 b->condition_not_parsed = 1;
41447f92 9469 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
9470 if ((type_wanted != bp_breakpoint
9471 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 9472 b->pspace = current_program_space;
8bea4e01 9473
b270e6f9 9474 install_breakpoint (internal, std::move (b), 0);
0101ce28
JJ
9475 }
9476
6c5b2ebe 9477 if (canonical.lsals.size () > 1)
95a42b64 9478 {
3e43a32a
MS
9479 warning (_("Multiple breakpoints were set.\nUse the "
9480 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 9481 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
9482 }
9483
80c99de1
PA
9484 /* That's it. Discard the cleanups for data inserted into the
9485 breakpoint. */
9486 discard_cleanups (bkpt_chain);
217dc9e2 9487
80c99de1 9488 /* error call may happen here - have BKPT_CHAIN already discarded. */
44702360 9489 update_global_location_list (UGLL_MAY_INSERT);
fd9b8c24
PA
9490
9491 return 1;
c3f6f71d 9492}
c906108c 9493
348d480f 9494/* Set a breakpoint.
72b2ff0e
VP
9495 ARG is a string describing breakpoint address,
9496 condition, and thread.
9497 FLAG specifies if a breakpoint is hardware on,
9498 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9499 and BP_TEMPFLAG. */
348d480f 9500
98deb0da 9501static void
f2fc3015 9502break_command_1 (const char *arg, int flag, int from_tty)
c3f6f71d 9503{
72b2ff0e 9504 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
9505 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9506 ? bp_hardware_breakpoint
9507 : bp_breakpoint);
55aa24fb 9508 struct breakpoint_ops *ops;
f00aae0f 9509
ffc2605c 9510 event_location_up location = string_to_event_location (&arg, current_language);
55aa24fb
SDJ
9511
9512 /* Matching breakpoints on probes. */
5b56227b 9513 if (location != NULL
ffc2605c 9514 && event_location_type (location.get ()) == PROBE_LOCATION)
55aa24fb
SDJ
9515 ops = &bkpt_probe_breakpoint_ops;
9516 else
9517 ops = &bkpt_breakpoint_ops;
c3f6f71d 9518
8cdf0e15 9519 create_breakpoint (get_current_arch (),
ffc2605c 9520 location.get (),
f00aae0f 9521 NULL, 0, arg, 1 /* parse arg */,
0fb4aa4b 9522 tempflag, type_wanted,
8cdf0e15
VP
9523 0 /* Ignore count */,
9524 pending_break_support,
55aa24fb 9525 ops,
8cdf0e15 9526 from_tty,
84f4c1fe 9527 1 /* enabled */,
44f238bb
PA
9528 0 /* internal */,
9529 0);
c906108c
SS
9530}
9531
c906108c
SS
9532/* Helper function for break_command_1 and disassemble_command. */
9533
9534void
fba45db2 9535resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
9536{
9537 CORE_ADDR pc;
9538
9539 if (sal->pc == 0 && sal->symtab != NULL)
9540 {
9541 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 9542 error (_("No line %d in file \"%s\"."),
05cba821 9543 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 9544 sal->pc = pc;
6a048695 9545
4a64f543
MS
9546 /* If this SAL corresponds to a breakpoint inserted using a line
9547 number, then skip the function prologue if necessary. */
6a048695 9548 if (sal->explicit_line)
059acae7 9549 skip_prologue_sal (sal);
c906108c
SS
9550 }
9551
9552 if (sal->section == 0 && sal->symtab != NULL)
9553 {
346d1dfe 9554 const struct blockvector *bv;
3977b71f 9555 const struct block *b;
c5aa993b 9556 struct symbol *sym;
c906108c 9557
43f3e411
DE
9558 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
9559 SYMTAB_COMPUNIT (sal->symtab));
c906108c
SS
9560 if (bv != NULL)
9561 {
7f0df278 9562 sym = block_linkage_function (b);
c906108c
SS
9563 if (sym != NULL)
9564 {
eb822aa6
DE
9565 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
9566 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
9567 sym);
c906108c
SS
9568 }
9569 else
9570 {
4a64f543
MS
9571 /* It really is worthwhile to have the section, so we'll
9572 just have to look harder. This case can be executed
9573 if we have line numbers but no functions (as can
9574 happen in assembly source). */
c906108c 9575
5ed8105e 9576 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df 9577 switch_to_program_space_and_thread (sal->pspace);
c906108c 9578
5ed8105e 9579 bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 9580 if (msym.minsym)
efd66ac6 9581 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
c906108c
SS
9582 }
9583 }
9584 }
9585}
9586
9587void
0b39b52e 9588break_command (const char *arg, int from_tty)
c906108c 9589{
db107f19 9590 break_command_1 (arg, 0, from_tty);
c906108c
SS
9591}
9592
c906108c 9593void
0b39b52e 9594tbreak_command (const char *arg, int from_tty)
c906108c 9595{
db107f19 9596 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
9597}
9598
c906108c 9599static void
0b39b52e 9600hbreak_command (const char *arg, int from_tty)
c906108c 9601{
db107f19 9602 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
9603}
9604
9605static void
0b39b52e 9606thbreak_command (const char *arg, int from_tty)
c906108c 9607{
db107f19 9608 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
9609}
9610
9611static void
ee7ddd71 9612stop_command (const char *arg, int from_tty)
c906108c 9613{
a3f17187 9614 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 9615Usage: stop in <function | address>\n\
a3f17187 9616 stop at <line>\n"));
c906108c
SS
9617}
9618
9619static void
4495129a 9620stopin_command (const char *arg, int from_tty)
c906108c
SS
9621{
9622 int badInput = 0;
9623
c5aa993b 9624 if (arg == (char *) NULL)
c906108c
SS
9625 badInput = 1;
9626 else if (*arg != '*')
9627 {
4495129a 9628 const char *argptr = arg;
c906108c
SS
9629 int hasColon = 0;
9630
4a64f543 9631 /* Look for a ':'. If this is a line number specification, then
53a5351d 9632 say it is bad, otherwise, it should be an address or
4a64f543 9633 function/method name. */
c906108c 9634 while (*argptr && !hasColon)
c5aa993b
JM
9635 {
9636 hasColon = (*argptr == ':');
9637 argptr++;
9638 }
c906108c
SS
9639
9640 if (hasColon)
c5aa993b 9641 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 9642 else
c5aa993b 9643 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
9644 }
9645
9646 if (badInput)
a3f17187 9647 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 9648 else
db107f19 9649 break_command_1 (arg, 0, from_tty);
c906108c
SS
9650}
9651
9652static void
4495129a 9653stopat_command (const char *arg, int from_tty)
c906108c
SS
9654{
9655 int badInput = 0;
9656
c5aa993b 9657 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
9658 badInput = 1;
9659 else
9660 {
4495129a 9661 const char *argptr = arg;
c906108c
SS
9662 int hasColon = 0;
9663
4a64f543
MS
9664 /* Look for a ':'. If there is a '::' then get out, otherwise
9665 it is probably a line number. */
c906108c 9666 while (*argptr && !hasColon)
c5aa993b
JM
9667 {
9668 hasColon = (*argptr == ':');
9669 argptr++;
9670 }
c906108c
SS
9671
9672 if (hasColon)
c5aa993b 9673 badInput = (*argptr == ':'); /* we have class::method */
c906108c 9674 else
c5aa993b 9675 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
9676 }
9677
9678 if (badInput)
a3f17187 9679 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 9680 else
db107f19 9681 break_command_1 (arg, 0, from_tty);
c906108c
SS
9682}
9683
e7e0cddf
SS
9684/* The dynamic printf command is mostly like a regular breakpoint, but
9685 with a prewired command list consisting of a single output command,
9686 built from extra arguments supplied on the dprintf command
9687 line. */
9688
da821c7b 9689static void
0b39b52e 9690dprintf_command (const char *arg, int from_tty)
e7e0cddf 9691{
ffc2605c 9692 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f
KS
9693
9694 /* If non-NULL, ARG should have been advanced past the location;
9695 the next character must be ','. */
9696 if (arg != NULL)
9697 {
9698 if (arg[0] != ',' || arg[1] == '\0')
9699 error (_("Format string required"));
9700 else
9701 {
9702 /* Skip the comma. */
9703 ++arg;
9704 }
9705 }
9706
e7e0cddf 9707 create_breakpoint (get_current_arch (),
ffc2605c 9708 location.get (),
f00aae0f 9709 NULL, 0, arg, 1 /* parse arg */,
e7e0cddf
SS
9710 0, bp_dprintf,
9711 0 /* Ignore count */,
9712 pending_break_support,
9713 &dprintf_breakpoint_ops,
9714 from_tty,
9715 1 /* enabled */,
9716 0 /* internal */,
9717 0);
9718}
9719
d3ce09f5 9720static void
0b39b52e 9721agent_printf_command (const char *arg, int from_tty)
d3ce09f5
SS
9722{
9723 error (_("May only run agent-printf on the target"));
9724}
9725
f1310107
TJB
9726/* Implement the "breakpoint_hit" breakpoint_ops method for
9727 ranged breakpoints. */
9728
9729static int
9730breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
bd522513 9731 const address_space *aspace,
09ac7c10
TT
9732 CORE_ADDR bp_addr,
9733 const struct target_waitstatus *ws)
f1310107 9734{
09ac7c10 9735 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 9736 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
9737 return 0;
9738
f1310107
TJB
9739 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
9740 bl->length, aspace, bp_addr);
9741}
9742
9743/* Implement the "resources_needed" breakpoint_ops method for
9744 ranged breakpoints. */
9745
9746static int
9747resources_needed_ranged_breakpoint (const struct bp_location *bl)
9748{
9749 return target_ranged_break_num_registers ();
9750}
9751
9752/* Implement the "print_it" breakpoint_ops method for
9753 ranged breakpoints. */
9754
9755static enum print_stop_action
348d480f 9756print_it_ranged_breakpoint (bpstat bs)
f1310107 9757{
348d480f 9758 struct breakpoint *b = bs->breakpoint_at;
f1310107 9759 struct bp_location *bl = b->loc;
79a45e25 9760 struct ui_out *uiout = current_uiout;
f1310107
TJB
9761
9762 gdb_assert (b->type == bp_hardware_breakpoint);
9763
9764 /* Ranged breakpoints have only one location. */
9765 gdb_assert (bl && bl->next == NULL);
9766
9767 annotate_breakpoint (b->number);
f303dbd6
PA
9768
9769 maybe_print_thread_hit_breakpoint (uiout);
9770
f1310107 9771 if (b->disposition == disp_del)
112e8700 9772 uiout->text ("Temporary ranged breakpoint ");
f1310107 9773 else
112e8700
SM
9774 uiout->text ("Ranged breakpoint ");
9775 if (uiout->is_mi_like_p ())
f1310107 9776 {
112e8700 9777 uiout->field_string ("reason",
f1310107 9778 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 9779 uiout->field_string ("disp", bpdisp_text (b->disposition));
f1310107 9780 }
112e8700
SM
9781 uiout->field_int ("bkptno", b->number);
9782 uiout->text (", ");
f1310107
TJB
9783
9784 return PRINT_SRC_AND_LOC;
9785}
9786
9787/* Implement the "print_one" breakpoint_ops method for
9788 ranged breakpoints. */
9789
9790static void
9791print_one_ranged_breakpoint (struct breakpoint *b,
9792 struct bp_location **last_loc)
9793{
9794 struct bp_location *bl = b->loc;
9795 struct value_print_options opts;
79a45e25 9796 struct ui_out *uiout = current_uiout;
f1310107
TJB
9797
9798 /* Ranged breakpoints have only one location. */
9799 gdb_assert (bl && bl->next == NULL);
9800
9801 get_user_print_options (&opts);
9802
9803 if (opts.addressprint)
9804 /* We don't print the address range here, it will be printed later
9805 by print_one_detail_ranged_breakpoint. */
112e8700 9806 uiout->field_skip ("addr");
f1310107
TJB
9807 annotate_field (5);
9808 print_breakpoint_location (b, bl);
9809 *last_loc = bl;
9810}
9811
9812/* Implement the "print_one_detail" breakpoint_ops method for
9813 ranged breakpoints. */
9814
9815static void
9816print_one_detail_ranged_breakpoint (const struct breakpoint *b,
9817 struct ui_out *uiout)
9818{
9819 CORE_ADDR address_start, address_end;
9820 struct bp_location *bl = b->loc;
d7e74731 9821 string_file stb;
f1310107
TJB
9822
9823 gdb_assert (bl);
9824
9825 address_start = bl->address;
9826 address_end = address_start + bl->length - 1;
9827
112e8700 9828 uiout->text ("\taddress range: ");
d7e74731
PA
9829 stb.printf ("[%s, %s]",
9830 print_core_address (bl->gdbarch, address_start),
9831 print_core_address (bl->gdbarch, address_end));
112e8700
SM
9832 uiout->field_stream ("addr", stb);
9833 uiout->text ("\n");
f1310107
TJB
9834}
9835
9836/* Implement the "print_mention" breakpoint_ops method for
9837 ranged breakpoints. */
9838
9839static void
9840print_mention_ranged_breakpoint (struct breakpoint *b)
9841{
9842 struct bp_location *bl = b->loc;
79a45e25 9843 struct ui_out *uiout = current_uiout;
f1310107
TJB
9844
9845 gdb_assert (bl);
9846 gdb_assert (b->type == bp_hardware_breakpoint);
9847
112e8700 9848 if (uiout->is_mi_like_p ())
f1310107
TJB
9849 return;
9850
9851 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
9852 b->number, paddress (bl->gdbarch, bl->address),
9853 paddress (bl->gdbarch, bl->address + bl->length - 1));
9854}
9855
9856/* Implement the "print_recreate" breakpoint_ops method for
9857 ranged breakpoints. */
9858
9859static void
9860print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
9861{
f00aae0f 9862 fprintf_unfiltered (fp, "break-range %s, %s",
d28cd78a
TT
9863 event_location_to_string (b->location.get ()),
9864 event_location_to_string (b->location_range_end.get ()));
d9b3f62e 9865 print_recreate_thread (b, fp);
f1310107
TJB
9866}
9867
9868/* The breakpoint_ops structure to be used in ranged breakpoints. */
9869
2060206e 9870static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
9871
9872/* Find the address where the end of the breakpoint range should be
9873 placed, given the SAL of the end of the range. This is so that if
9874 the user provides a line number, the end of the range is set to the
9875 last instruction of the given line. */
9876
9877static CORE_ADDR
9878find_breakpoint_range_end (struct symtab_and_line sal)
9879{
9880 CORE_ADDR end;
9881
9882 /* If the user provided a PC value, use it. Otherwise,
9883 find the address of the end of the given location. */
9884 if (sal.explicit_pc)
9885 end = sal.pc;
9886 else
9887 {
9888 int ret;
9889 CORE_ADDR start;
9890
9891 ret = find_line_pc_range (sal, &start, &end);
9892 if (!ret)
9893 error (_("Could not find location of the end of the range."));
9894
9895 /* find_line_pc_range returns the start of the next line. */
9896 end--;
9897 }
9898
9899 return end;
9900}
9901
9902/* Implement the "break-range" CLI command. */
9903
9904static void
0b39b52e 9905break_range_command (const char *arg, int from_tty)
f1310107 9906{
f2fc3015 9907 const char *arg_start;
f1310107
TJB
9908 struct linespec_result canonical_start, canonical_end;
9909 int bp_count, can_use_bp, length;
9910 CORE_ADDR end;
9911 struct breakpoint *b;
f1310107
TJB
9912
9913 /* We don't support software ranged breakpoints. */
9914 if (target_ranged_break_num_registers () < 0)
9915 error (_("This target does not support hardware ranged breakpoints."));
9916
9917 bp_count = hw_breakpoint_used_count ();
9918 bp_count += target_ranged_break_num_registers ();
9919 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9920 bp_count, 0);
9921 if (can_use_bp < 0)
9922 error (_("Hardware breakpoints used exceeds limit."));
9923
f8eba3c6 9924 arg = skip_spaces (arg);
f1310107
TJB
9925 if (arg == NULL || arg[0] == '\0')
9926 error(_("No address range specified."));
9927
f8eba3c6 9928 arg_start = arg;
ffc2605c
TT
9929 event_location_up start_location = string_to_event_location (&arg,
9930 current_language);
9931 parse_breakpoint_sals (start_location.get (), &canonical_start);
f1310107
TJB
9932
9933 if (arg[0] != ',')
9934 error (_("Too few arguments."));
6c5b2ebe 9935 else if (canonical_start.lsals.empty ())
f1310107 9936 error (_("Could not find location of the beginning of the range."));
f8eba3c6 9937
6c5b2ebe 9938 const linespec_sals &lsal_start = canonical_start.lsals[0];
f8eba3c6 9939
6c5b2ebe
PA
9940 if (canonical_start.lsals.size () > 1
9941 || lsal_start.sals.size () != 1)
f1310107
TJB
9942 error (_("Cannot create a ranged breakpoint with multiple locations."));
9943
6c5b2ebe 9944 const symtab_and_line &sal_start = lsal_start.sals[0];
81b1e71c 9945 std::string addr_string_start (arg_start, arg - arg_start);
f1310107
TJB
9946
9947 arg++; /* Skip the comma. */
f8eba3c6 9948 arg = skip_spaces (arg);
f1310107
TJB
9949
9950 /* Parse the end location. */
9951
f1310107
TJB
9952 arg_start = arg;
9953
f8eba3c6 9954 /* We call decode_line_full directly here instead of using
f1310107
TJB
9955 parse_breakpoint_sals because we need to specify the start location's
9956 symtab and line as the default symtab and line for the end of the
9957 range. This makes it possible to have ranges like "foo.c:27, +14",
9958 where +14 means 14 lines from the start location. */
ffc2605c
TT
9959 event_location_up end_location = string_to_event_location (&arg,
9960 current_language);
9961 decode_line_full (end_location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
f8eba3c6
TT
9962 sal_start.symtab, sal_start.line,
9963 &canonical_end, NULL, NULL);
9964
6c5b2ebe 9965 if (canonical_end.lsals.empty ())
f1310107 9966 error (_("Could not find location of the end of the range."));
f8eba3c6 9967
6c5b2ebe
PA
9968 const linespec_sals &lsal_end = canonical_end.lsals[0];
9969 if (canonical_end.lsals.size () > 1
9970 || lsal_end.sals.size () != 1)
f1310107
TJB
9971 error (_("Cannot create a ranged breakpoint with multiple locations."));
9972
6c5b2ebe 9973 const symtab_and_line &sal_end = lsal_end.sals[0];
f1310107
TJB
9974
9975 end = find_breakpoint_range_end (sal_end);
9976 if (sal_start.pc > end)
177b42fe 9977 error (_("Invalid address range, end precedes start."));
f1310107
TJB
9978
9979 length = end - sal_start.pc + 1;
9980 if (length < 0)
9981 /* Length overflowed. */
9982 error (_("Address range too large."));
9983 else if (length == 1)
9984 {
9985 /* This range is simple enough to be handled by
9986 the `hbreak' command. */
81b1e71c 9987 hbreak_command (&addr_string_start[0], 1);
f1310107
TJB
9988
9989 return;
9990 }
9991
9992 /* Now set up the breakpoint. */
9993 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 9994 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
9995 set_breakpoint_count (breakpoint_count + 1);
9996 b->number = breakpoint_count;
9997 b->disposition = disp_donttouch;
d28cd78a
TT
9998 b->location = std::move (start_location);
9999 b->location_range_end = std::move (end_location);
f1310107
TJB
10000 b->loc->length = length;
10001
f1310107 10002 mention (b);
8d3788bd 10003 observer_notify_breakpoint_created (b);
44702360 10004 update_global_location_list (UGLL_MAY_INSERT);
f1310107
TJB
10005}
10006
4a64f543
MS
10007/* Return non-zero if EXP is verified as constant. Returned zero
10008 means EXP is variable. Also the constant detection may fail for
10009 some constant expressions and in such case still falsely return
10010 zero. */
2e6e3d9c 10011
65d79d4b
SDJ
10012static int
10013watchpoint_exp_is_const (const struct expression *exp)
10014{
10015 int i = exp->nelts;
10016
10017 while (i > 0)
10018 {
10019 int oplenp, argsp;
10020
10021 /* We are only interested in the descriptor of each element. */
10022 operator_length (exp, i, &oplenp, &argsp);
10023 i -= oplenp;
10024
10025 switch (exp->elts[i].opcode)
10026 {
10027 case BINOP_ADD:
10028 case BINOP_SUB:
10029 case BINOP_MUL:
10030 case BINOP_DIV:
10031 case BINOP_REM:
10032 case BINOP_MOD:
10033 case BINOP_LSH:
10034 case BINOP_RSH:
10035 case BINOP_LOGICAL_AND:
10036 case BINOP_LOGICAL_OR:
10037 case BINOP_BITWISE_AND:
10038 case BINOP_BITWISE_IOR:
10039 case BINOP_BITWISE_XOR:
10040 case BINOP_EQUAL:
10041 case BINOP_NOTEQUAL:
10042 case BINOP_LESS:
10043 case BINOP_GTR:
10044 case BINOP_LEQ:
10045 case BINOP_GEQ:
10046 case BINOP_REPEAT:
10047 case BINOP_COMMA:
10048 case BINOP_EXP:
10049 case BINOP_MIN:
10050 case BINOP_MAX:
10051 case BINOP_INTDIV:
10052 case BINOP_CONCAT:
65d79d4b
SDJ
10053 case TERNOP_COND:
10054 case TERNOP_SLICE:
65d79d4b
SDJ
10055
10056 case OP_LONG:
edd079d9 10057 case OP_FLOAT:
65d79d4b
SDJ
10058 case OP_LAST:
10059 case OP_COMPLEX:
10060 case OP_STRING:
65d79d4b
SDJ
10061 case OP_ARRAY:
10062 case OP_TYPE:
608b4967
TT
10063 case OP_TYPEOF:
10064 case OP_DECLTYPE:
6e72ca20 10065 case OP_TYPEID:
65d79d4b
SDJ
10066 case OP_NAME:
10067 case OP_OBJC_NSSTRING:
10068
10069 case UNOP_NEG:
10070 case UNOP_LOGICAL_NOT:
10071 case UNOP_COMPLEMENT:
10072 case UNOP_ADDR:
10073 case UNOP_HIGH:
aeaa2474 10074 case UNOP_CAST:
9eaf6705
TT
10075
10076 case UNOP_CAST_TYPE:
10077 case UNOP_REINTERPRET_CAST:
10078 case UNOP_DYNAMIC_CAST:
4a64f543
MS
10079 /* Unary, binary and ternary operators: We have to check
10080 their operands. If they are constant, then so is the
10081 result of that operation. For instance, if A and B are
10082 determined to be constants, then so is "A + B".
10083
10084 UNOP_IND is one exception to the rule above, because the
10085 value of *ADDR is not necessarily a constant, even when
10086 ADDR is. */
65d79d4b
SDJ
10087 break;
10088
10089 case OP_VAR_VALUE:
10090 /* Check whether the associated symbol is a constant.
4a64f543 10091
65d79d4b 10092 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
10093 possible that a buggy compiler could mark a variable as
10094 constant even when it is not, and TYPE_CONST would return
10095 true in this case, while SYMBOL_CLASS wouldn't.
10096
10097 We also have to check for function symbols because they
10098 are always constant. */
65d79d4b
SDJ
10099 {
10100 struct symbol *s = exp->elts[i + 2].symbol;
10101
10102 if (SYMBOL_CLASS (s) != LOC_BLOCK
10103 && SYMBOL_CLASS (s) != LOC_CONST
10104 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10105 return 0;
10106 break;
10107 }
10108
10109 /* The default action is to return 0 because we are using
10110 the optimistic approach here: If we don't know something,
10111 then it is not a constant. */
10112 default:
10113 return 0;
10114 }
10115 }
10116
10117 return 1;
10118}
10119
c1fc2657 10120/* Watchpoint destructor. */
3a5c3e22 10121
c1fc2657 10122watchpoint::~watchpoint ()
3a5c3e22 10123{
c1fc2657
SM
10124 xfree (this->exp_string);
10125 xfree (this->exp_string_reparse);
10126 value_free (this->val);
3a5c3e22
PA
10127}
10128
348d480f
PA
10129/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10130
10131static void
10132re_set_watchpoint (struct breakpoint *b)
10133{
3a5c3e22
PA
10134 struct watchpoint *w = (struct watchpoint *) b;
10135
348d480f
PA
10136 /* Watchpoint can be either on expression using entirely global
10137 variables, or it can be on local variables.
10138
10139 Watchpoints of the first kind are never auto-deleted, and even
10140 persist across program restarts. Since they can use variables
10141 from shared libraries, we need to reparse expression as libraries
10142 are loaded and unloaded.
10143
10144 Watchpoints on local variables can also change meaning as result
10145 of solib event. For example, if a watchpoint uses both a local
10146 and a global variables in expression, it's a local watchpoint,
10147 but unloading of a shared library will make the expression
10148 invalid. This is not a very common use case, but we still
10149 re-evaluate expression, to avoid surprises to the user.
10150
10151 Note that for local watchpoints, we re-evaluate it only if
10152 watchpoints frame id is still valid. If it's not, it means the
10153 watchpoint is out of scope and will be deleted soon. In fact,
10154 I'm not sure we'll ever be called in this case.
10155
10156 If a local watchpoint's frame id is still valid, then
3a5c3e22 10157 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 10158
3a5c3e22
PA
10159 Don't do anything about disabled watchpoints, since they will be
10160 reevaluated again when enabled. */
10161 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
10162}
10163
77b06cd7
TJB
10164/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10165
10166static int
10167insert_watchpoint (struct bp_location *bl)
10168{
3a5c3e22
PA
10169 struct watchpoint *w = (struct watchpoint *) bl->owner;
10170 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10171
10172 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10173 w->cond_exp.get ());
77b06cd7
TJB
10174}
10175
10176/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10177
10178static int
73971819 10179remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
77b06cd7 10180{
3a5c3e22
PA
10181 struct watchpoint *w = (struct watchpoint *) bl->owner;
10182 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10183
10184 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10185 w->cond_exp.get ());
e09342b5
TJB
10186}
10187
e09342b5 10188static int
348d480f 10189breakpoint_hit_watchpoint (const struct bp_location *bl,
bd522513 10190 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 10191 const struct target_waitstatus *ws)
e09342b5 10192{
348d480f 10193 struct breakpoint *b = bl->owner;
3a5c3e22 10194 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10195
348d480f
PA
10196 /* Continuable hardware watchpoints are treated as non-existent if the
10197 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10198 some data address). Otherwise gdb won't stop on a break instruction
10199 in the code (not from a breakpoint) when a hardware watchpoint has
10200 been defined. Also skip watchpoints which we know did not trigger
10201 (did not match the data address). */
10202 if (is_hardware_watchpoint (b)
3a5c3e22 10203 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10204 return 0;
9c06b0b4 10205
348d480f 10206 return 1;
9c06b0b4
TJB
10207}
10208
348d480f
PA
10209static void
10210check_status_watchpoint (bpstat bs)
9c06b0b4 10211{
348d480f 10212 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10213
348d480f 10214 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10215}
10216
10217/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10218 hardware watchpoints. */
9c06b0b4
TJB
10219
10220static int
348d480f 10221resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10222{
3a5c3e22
PA
10223 struct watchpoint *w = (struct watchpoint *) bl->owner;
10224 int length = w->exact? 1 : bl->length;
348d480f
PA
10225
10226 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10227}
10228
10229/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10230 hardware watchpoints. */
9c06b0b4
TJB
10231
10232static int
348d480f 10233works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10234{
efa80663
PA
10235 /* Read and access watchpoints only work with hardware support. */
10236 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10237}
10238
9c06b0b4 10239static enum print_stop_action
348d480f 10240print_it_watchpoint (bpstat bs)
9c06b0b4 10241{
348d480f 10242 struct breakpoint *b;
348d480f 10243 enum print_stop_action result;
3a5c3e22 10244 struct watchpoint *w;
79a45e25 10245 struct ui_out *uiout = current_uiout;
348d480f
PA
10246
10247 gdb_assert (bs->bp_location_at != NULL);
10248
348d480f 10249 b = bs->breakpoint_at;
3a5c3e22 10250 w = (struct watchpoint *) b;
348d480f 10251
f303dbd6
PA
10252 annotate_watchpoint (b->number);
10253 maybe_print_thread_hit_breakpoint (uiout);
10254
d7e74731
PA
10255 string_file stb;
10256
76f9c9cf 10257 gdb::optional<ui_out_emit_tuple> tuple_emitter;
9c06b0b4
TJB
10258 switch (b->type)
10259 {
348d480f 10260 case bp_watchpoint:
9c06b0b4 10261 case bp_hardware_watchpoint:
112e8700
SM
10262 if (uiout->is_mi_like_p ())
10263 uiout->field_string
10264 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f 10265 mention (b);
76f9c9cf 10266 tuple_emitter.emplace (uiout, "value");
112e8700 10267 uiout->text ("\nOld value = ");
d7e74731 10268 watchpoint_value_print (bs->old_val, &stb);
112e8700
SM
10269 uiout->field_stream ("old", stb);
10270 uiout->text ("\nNew value = ");
d7e74731 10271 watchpoint_value_print (w->val, &stb);
112e8700
SM
10272 uiout->field_stream ("new", stb);
10273 uiout->text ("\n");
348d480f
PA
10274 /* More than one watchpoint may have been triggered. */
10275 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10276 break;
10277
10278 case bp_read_watchpoint:
112e8700
SM
10279 if (uiout->is_mi_like_p ())
10280 uiout->field_string
10281 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f 10282 mention (b);
76f9c9cf 10283 tuple_emitter.emplace (uiout, "value");
112e8700 10284 uiout->text ("\nValue = ");
d7e74731 10285 watchpoint_value_print (w->val, &stb);
112e8700
SM
10286 uiout->field_stream ("value", stb);
10287 uiout->text ("\n");
348d480f 10288 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10289 break;
10290
10291 case bp_access_watchpoint:
348d480f
PA
10292 if (bs->old_val != NULL)
10293 {
112e8700
SM
10294 if (uiout->is_mi_like_p ())
10295 uiout->field_string
10296 ("reason",
348d480f
PA
10297 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10298 mention (b);
76f9c9cf 10299 tuple_emitter.emplace (uiout, "value");
112e8700 10300 uiout->text ("\nOld value = ");
d7e74731 10301 watchpoint_value_print (bs->old_val, &stb);
112e8700
SM
10302 uiout->field_stream ("old", stb);
10303 uiout->text ("\nNew value = ");
348d480f
PA
10304 }
10305 else
10306 {
10307 mention (b);
112e8700
SM
10308 if (uiout->is_mi_like_p ())
10309 uiout->field_string
10310 ("reason",
348d480f 10311 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
76f9c9cf 10312 tuple_emitter.emplace (uiout, "value");
112e8700 10313 uiout->text ("\nValue = ");
348d480f 10314 }
d7e74731 10315 watchpoint_value_print (w->val, &stb);
112e8700
SM
10316 uiout->field_stream ("new", stb);
10317 uiout->text ("\n");
348d480f 10318 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10319 break;
10320 default:
348d480f 10321 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10322 }
10323
348d480f
PA
10324 return result;
10325}
10326
10327/* Implement the "print_mention" breakpoint_ops method for hardware
10328 watchpoints. */
10329
10330static void
10331print_mention_watchpoint (struct breakpoint *b)
10332{
3a5c3e22 10333 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10334 struct ui_out *uiout = current_uiout;
46b9c129 10335 const char *tuple_name;
348d480f
PA
10336
10337 switch (b->type)
10338 {
10339 case bp_watchpoint:
112e8700 10340 uiout->text ("Watchpoint ");
46b9c129 10341 tuple_name = "wpt";
348d480f
PA
10342 break;
10343 case bp_hardware_watchpoint:
112e8700 10344 uiout->text ("Hardware watchpoint ");
46b9c129 10345 tuple_name = "wpt";
348d480f
PA
10346 break;
10347 case bp_read_watchpoint:
112e8700 10348 uiout->text ("Hardware read watchpoint ");
46b9c129 10349 tuple_name = "hw-rwpt";
348d480f
PA
10350 break;
10351 case bp_access_watchpoint:
112e8700 10352 uiout->text ("Hardware access (read/write) watchpoint ");
46b9c129 10353 tuple_name = "hw-awpt";
348d480f
PA
10354 break;
10355 default:
10356 internal_error (__FILE__, __LINE__,
10357 _("Invalid hardware watchpoint type."));
10358 }
10359
46b9c129 10360 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
112e8700
SM
10361 uiout->field_int ("number", b->number);
10362 uiout->text (": ");
10363 uiout->field_string ("exp", w->exp_string);
348d480f
PA
10364}
10365
10366/* Implement the "print_recreate" breakpoint_ops method for
10367 watchpoints. */
10368
10369static void
10370print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10371{
3a5c3e22
PA
10372 struct watchpoint *w = (struct watchpoint *) b;
10373
348d480f
PA
10374 switch (b->type)
10375 {
10376 case bp_watchpoint:
10377 case bp_hardware_watchpoint:
10378 fprintf_unfiltered (fp, "watch");
10379 break;
10380 case bp_read_watchpoint:
10381 fprintf_unfiltered (fp, "rwatch");
10382 break;
10383 case bp_access_watchpoint:
10384 fprintf_unfiltered (fp, "awatch");
10385 break;
10386 default:
10387 internal_error (__FILE__, __LINE__,
10388 _("Invalid watchpoint type."));
10389 }
10390
3a5c3e22 10391 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 10392 print_recreate_thread (b, fp);
348d480f
PA
10393}
10394
427cd150
TT
10395/* Implement the "explains_signal" breakpoint_ops method for
10396 watchpoints. */
10397
47591c29 10398static int
427cd150
TT
10399explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10400{
10401 /* A software watchpoint cannot cause a signal other than
10402 GDB_SIGNAL_TRAP. */
10403 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 10404 return 0;
427cd150 10405
47591c29 10406 return 1;
427cd150
TT
10407}
10408
348d480f
PA
10409/* The breakpoint_ops structure to be used in hardware watchpoints. */
10410
2060206e 10411static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
10412
10413/* Implement the "insert" breakpoint_ops method for
10414 masked hardware watchpoints. */
10415
10416static int
10417insert_masked_watchpoint (struct bp_location *bl)
10418{
3a5c3e22
PA
10419 struct watchpoint *w = (struct watchpoint *) bl->owner;
10420
10421 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10422 bl->watchpoint_type);
10423}
10424
10425/* Implement the "remove" breakpoint_ops method for
10426 masked hardware watchpoints. */
10427
10428static int
73971819 10429remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
348d480f 10430{
3a5c3e22
PA
10431 struct watchpoint *w = (struct watchpoint *) bl->owner;
10432
10433 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10434 bl->watchpoint_type);
10435}
10436
10437/* Implement the "resources_needed" breakpoint_ops method for
10438 masked hardware watchpoints. */
10439
10440static int
10441resources_needed_masked_watchpoint (const struct bp_location *bl)
10442{
3a5c3e22
PA
10443 struct watchpoint *w = (struct watchpoint *) bl->owner;
10444
10445 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
10446}
10447
10448/* Implement the "works_in_software_mode" breakpoint_ops method for
10449 masked hardware watchpoints. */
10450
10451static int
10452works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10453{
10454 return 0;
10455}
10456
10457/* Implement the "print_it" breakpoint_ops method for
10458 masked hardware watchpoints. */
10459
10460static enum print_stop_action
10461print_it_masked_watchpoint (bpstat bs)
10462{
10463 struct breakpoint *b = bs->breakpoint_at;
79a45e25 10464 struct ui_out *uiout = current_uiout;
348d480f
PA
10465
10466 /* Masked watchpoints have only one location. */
10467 gdb_assert (b->loc && b->loc->next == NULL);
10468
f303dbd6
PA
10469 annotate_watchpoint (b->number);
10470 maybe_print_thread_hit_breakpoint (uiout);
10471
348d480f
PA
10472 switch (b->type)
10473 {
10474 case bp_hardware_watchpoint:
112e8700
SM
10475 if (uiout->is_mi_like_p ())
10476 uiout->field_string
10477 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10478 break;
10479
10480 case bp_read_watchpoint:
112e8700
SM
10481 if (uiout->is_mi_like_p ())
10482 uiout->field_string
10483 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10484 break;
10485
10486 case bp_access_watchpoint:
112e8700
SM
10487 if (uiout->is_mi_like_p ())
10488 uiout->field_string
10489 ("reason",
348d480f
PA
10490 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10491 break;
10492 default:
10493 internal_error (__FILE__, __LINE__,
10494 _("Invalid hardware watchpoint type."));
10495 }
10496
10497 mention (b);
112e8700 10498 uiout->text (_("\n\
9c06b0b4
TJB
10499Check the underlying instruction at PC for the memory\n\
10500address and value which triggered this watchpoint.\n"));
112e8700 10501 uiout->text ("\n");
9c06b0b4
TJB
10502
10503 /* More than one watchpoint may have been triggered. */
10504 return PRINT_UNKNOWN;
10505}
10506
10507/* Implement the "print_one_detail" breakpoint_ops method for
10508 masked hardware watchpoints. */
10509
10510static void
10511print_one_detail_masked_watchpoint (const struct breakpoint *b,
10512 struct ui_out *uiout)
10513{
3a5c3e22
PA
10514 struct watchpoint *w = (struct watchpoint *) b;
10515
9c06b0b4
TJB
10516 /* Masked watchpoints have only one location. */
10517 gdb_assert (b->loc && b->loc->next == NULL);
10518
112e8700
SM
10519 uiout->text ("\tmask ");
10520 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
10521 uiout->text ("\n");
9c06b0b4
TJB
10522}
10523
10524/* Implement the "print_mention" breakpoint_ops method for
10525 masked hardware watchpoints. */
10526
10527static void
10528print_mention_masked_watchpoint (struct breakpoint *b)
10529{
3a5c3e22 10530 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10531 struct ui_out *uiout = current_uiout;
46b9c129 10532 const char *tuple_name;
9c06b0b4
TJB
10533
10534 switch (b->type)
10535 {
10536 case bp_hardware_watchpoint:
112e8700 10537 uiout->text ("Masked hardware watchpoint ");
46b9c129 10538 tuple_name = "wpt";
9c06b0b4
TJB
10539 break;
10540 case bp_read_watchpoint:
112e8700 10541 uiout->text ("Masked hardware read watchpoint ");
46b9c129 10542 tuple_name = "hw-rwpt";
9c06b0b4
TJB
10543 break;
10544 case bp_access_watchpoint:
112e8700 10545 uiout->text ("Masked hardware access (read/write) watchpoint ");
46b9c129 10546 tuple_name = "hw-awpt";
9c06b0b4
TJB
10547 break;
10548 default:
10549 internal_error (__FILE__, __LINE__,
10550 _("Invalid hardware watchpoint type."));
10551 }
10552
46b9c129 10553 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
112e8700
SM
10554 uiout->field_int ("number", b->number);
10555 uiout->text (": ");
10556 uiout->field_string ("exp", w->exp_string);
9c06b0b4
TJB
10557}
10558
10559/* Implement the "print_recreate" breakpoint_ops method for
10560 masked hardware watchpoints. */
10561
10562static void
10563print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10564{
3a5c3e22 10565 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
10566 char tmp[40];
10567
10568 switch (b->type)
10569 {
10570 case bp_hardware_watchpoint:
10571 fprintf_unfiltered (fp, "watch");
10572 break;
10573 case bp_read_watchpoint:
10574 fprintf_unfiltered (fp, "rwatch");
10575 break;
10576 case bp_access_watchpoint:
10577 fprintf_unfiltered (fp, "awatch");
10578 break;
10579 default:
10580 internal_error (__FILE__, __LINE__,
10581 _("Invalid hardware watchpoint type."));
10582 }
10583
3a5c3e22
PA
10584 sprintf_vma (tmp, w->hw_wp_mask);
10585 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
d9b3f62e 10586 print_recreate_thread (b, fp);
9c06b0b4
TJB
10587}
10588
10589/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10590
2060206e 10591static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
10592
10593/* Tell whether the given watchpoint is a masked hardware watchpoint. */
10594
10595static int
10596is_masked_watchpoint (const struct breakpoint *b)
10597{
10598 return b->ops == &masked_watchpoint_breakpoint_ops;
10599}
10600
53a5351d
JM
10601/* accessflag: hw_write: watch write,
10602 hw_read: watch read,
10603 hw_access: watch access (read or write) */
c906108c 10604static void
bbc13ae3 10605watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 10606 int just_location, int internal)
c906108c 10607{
c1fc2657 10608 struct breakpoint *scope_breakpoint = NULL;
270140bd 10609 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 10610 struct value *val, *mark, *result;
bb9d5f81 10611 int saved_bitpos = 0, saved_bitsize = 0;
bbc13ae3
KS
10612 const char *exp_start = NULL;
10613 const char *exp_end = NULL;
10614 const char *tok, *end_tok;
9c06b0b4 10615 int toklen = -1;
bbc13ae3
KS
10616 const char *cond_start = NULL;
10617 const char *cond_end = NULL;
c906108c 10618 enum bptype bp_type;
37e4754d 10619 int thread = -1;
0cf6dd15 10620 int pc = 0;
9c06b0b4
TJB
10621 /* Flag to indicate whether we are going to use masks for
10622 the hardware watchpoint. */
10623 int use_mask = 0;
10624 CORE_ADDR mask = 0;
c906108c 10625
37e4754d
LM
10626 /* Make sure that we actually have parameters to parse. */
10627 if (arg != NULL && arg[0] != '\0')
10628 {
bbc13ae3
KS
10629 const char *value_start;
10630
10631 exp_end = arg + strlen (arg);
37e4754d 10632
9c06b0b4
TJB
10633 /* Look for "parameter value" pairs at the end
10634 of the arguments string. */
bbc13ae3 10635 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
10636 {
10637 /* Skip whitespace at the end of the argument list. */
10638 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10639 tok--;
10640
10641 /* Find the beginning of the last token.
10642 This is the value of the parameter. */
10643 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10644 tok--;
10645 value_start = tok + 1;
10646
10647 /* Skip whitespace. */
10648 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10649 tok--;
10650
10651 end_tok = tok;
10652
10653 /* Find the beginning of the second to last token.
10654 This is the parameter itself. */
10655 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10656 tok--;
10657 tok++;
10658 toklen = end_tok - tok + 1;
10659
61012eef 10660 if (toklen == 6 && startswith (tok, "thread"))
9c06b0b4 10661 {
5d5658a1 10662 struct thread_info *thr;
9c06b0b4
TJB
10663 /* At this point we've found a "thread" token, which means
10664 the user is trying to set a watchpoint that triggers
10665 only in a specific thread. */
5d5658a1 10666 const char *endp;
37e4754d 10667
9c06b0b4
TJB
10668 if (thread != -1)
10669 error(_("You can specify only one thread."));
37e4754d 10670
9c06b0b4 10671 /* Extract the thread ID from the next token. */
5d5658a1 10672 thr = parse_thread_id (value_start, &endp);
37e4754d 10673
5d5658a1 10674 /* Check if the user provided a valid thread ID. */
9c06b0b4 10675 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
5d5658a1 10676 invalid_thread_id_error (value_start);
9c06b0b4 10677
5d5658a1 10678 thread = thr->global_num;
9c06b0b4 10679 }
61012eef 10680 else if (toklen == 4 && startswith (tok, "mask"))
9c06b0b4
TJB
10681 {
10682 /* We've found a "mask" token, which means the user wants to
10683 create a hardware watchpoint that is going to have the mask
10684 facility. */
10685 struct value *mask_value, *mark;
37e4754d 10686
9c06b0b4
TJB
10687 if (use_mask)
10688 error(_("You can specify only one mask."));
37e4754d 10689
9c06b0b4 10690 use_mask = just_location = 1;
37e4754d 10691
9c06b0b4
TJB
10692 mark = value_mark ();
10693 mask_value = parse_to_comma_and_eval (&value_start);
10694 mask = value_as_address (mask_value);
10695 value_free_to_mark (mark);
10696 }
10697 else
10698 /* We didn't recognize what we found. We should stop here. */
10699 break;
37e4754d 10700
9c06b0b4
TJB
10701 /* Truncate the string and get rid of the "parameter value" pair before
10702 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 10703 exp_end = tok;
9c06b0b4 10704 }
37e4754d 10705 }
bbc13ae3
KS
10706 else
10707 exp_end = arg;
37e4754d 10708
bbc13ae3
KS
10709 /* Parse the rest of the arguments. From here on out, everything
10710 is in terms of a newly allocated string instead of the original
10711 ARG. */
aee1fcdf 10712 innermost_block.reset ();
81b1e71c
TT
10713 std::string expression (arg, exp_end - arg);
10714 exp_start = arg = expression.c_str ();
4d01a485 10715 expression_up exp = parse_exp_1 (&arg, 0, 0, 0);
c906108c 10716 exp_end = arg;
fa8a61dc
TT
10717 /* Remove trailing whitespace from the expression before saving it.
10718 This makes the eventual display of the expression string a bit
10719 prettier. */
10720 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
10721 --exp_end;
10722
65d79d4b 10723 /* Checking if the expression is not constant. */
4d01a485 10724 if (watchpoint_exp_is_const (exp.get ()))
65d79d4b
SDJ
10725 {
10726 int len;
10727
10728 len = exp_end - exp_start;
10729 while (len > 0 && isspace (exp_start[len - 1]))
10730 len--;
10731 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
10732 }
10733
aee1fcdf 10734 exp_valid_block = innermost_block.block ();
c906108c 10735 mark = value_mark ();
4d01a485 10736 fetch_subexp_value (exp.get (), &pc, &val, &result, NULL, just_location);
06a64a0b 10737
bb9d5f81
PP
10738 if (val != NULL && just_location)
10739 {
10740 saved_bitpos = value_bitpos (val);
10741 saved_bitsize = value_bitsize (val);
10742 }
10743
06a64a0b
TT
10744 if (just_location)
10745 {
9c06b0b4
TJB
10746 int ret;
10747
06a64a0b 10748 exp_valid_block = NULL;
a1442452 10749 val = value_addr (result);
06a64a0b
TT
10750 release_value (val);
10751 value_free_to_mark (mark);
9c06b0b4
TJB
10752
10753 if (use_mask)
10754 {
10755 ret = target_masked_watch_num_registers (value_as_address (val),
10756 mask);
10757 if (ret == -1)
10758 error (_("This target does not support masked watchpoints."));
10759 else if (ret == -2)
10760 error (_("Invalid mask or memory region."));
10761 }
06a64a0b
TT
10762 }
10763 else if (val != NULL)
fa4727a6 10764 release_value (val);
c906108c 10765
f1735a53
TT
10766 tok = skip_spaces (arg);
10767 end_tok = skip_to_space (tok);
c906108c
SS
10768
10769 toklen = end_tok - tok;
10770 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10771 {
aee1fcdf 10772 innermost_block.reset ();
c906108c 10773 tok = cond_start = end_tok + 1;
4d01a485 10774 parse_exp_1 (&tok, 0, 0, 0);
60e1c644
PA
10775
10776 /* The watchpoint expression may not be local, but the condition
10777 may still be. E.g.: `watch global if local > 0'. */
aee1fcdf 10778 cond_exp_valid_block = innermost_block.block ();
60e1c644 10779
c906108c
SS
10780 cond_end = tok;
10781 }
10782 if (*tok)
8a3fe4f8 10783 error (_("Junk at end of command."));
c906108c 10784
441d7c93
PA
10785 frame_info *wp_frame = block_innermost_frame (exp_valid_block);
10786
10787 /* Save this because create_internal_breakpoint below invalidates
10788 'wp_frame'. */
10789 frame_id watchpoint_frame = get_frame_id (wp_frame);
d983da9c
DJ
10790
10791 /* If the expression is "local", then set up a "watchpoint scope"
10792 breakpoint at the point where we've left the scope of the watchpoint
10793 expression. Create the scope breakpoint before the watchpoint, so
10794 that we will encounter it first in bpstat_stop_status. */
441d7c93 10795 if (exp_valid_block != NULL && wp_frame != NULL)
d983da9c 10796 {
441d7c93
PA
10797 frame_id caller_frame_id = frame_unwind_caller_id (wp_frame);
10798
10799 if (frame_id_p (caller_frame_id))
edb3359d 10800 {
441d7c93
PA
10801 gdbarch *caller_arch = frame_unwind_caller_arch (wp_frame);
10802 CORE_ADDR caller_pc = frame_unwind_caller_pc (wp_frame);
10803
edb3359d 10804 scope_breakpoint
441d7c93 10805 = create_internal_breakpoint (caller_arch, caller_pc,
06edf0c0
PA
10806 bp_watchpoint_scope,
10807 &momentary_breakpoint_ops);
d983da9c 10808
441d7c93
PA
10809 /* create_internal_breakpoint could invalidate WP_FRAME. */
10810 wp_frame = NULL;
10811
edb3359d 10812 scope_breakpoint->enable_state = bp_enabled;
d983da9c 10813
edb3359d
DJ
10814 /* Automatically delete the breakpoint when it hits. */
10815 scope_breakpoint->disposition = disp_del;
d983da9c 10816
edb3359d 10817 /* Only break in the proper frame (help with recursion). */
441d7c93 10818 scope_breakpoint->frame_id = caller_frame_id;
d983da9c 10819
edb3359d 10820 /* Set the address at which we will stop. */
441d7c93
PA
10821 scope_breakpoint->loc->gdbarch = caller_arch;
10822 scope_breakpoint->loc->requested_address = caller_pc;
edb3359d 10823 scope_breakpoint->loc->address
a6d9a66e
UW
10824 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
10825 scope_breakpoint->loc->requested_address,
edb3359d
DJ
10826 scope_breakpoint->type);
10827 }
d983da9c
DJ
10828 }
10829
e8369a73
AB
10830 /* Now set up the breakpoint. We create all watchpoints as hardware
10831 watchpoints here even if hardware watchpoints are turned off, a call
10832 to update_watchpoint later in this function will cause the type to
10833 drop back to bp_watchpoint (software watchpoint) if required. */
10834
10835 if (accessflag == hw_read)
10836 bp_type = bp_read_watchpoint;
10837 else if (accessflag == hw_access)
10838 bp_type = bp_access_watchpoint;
10839 else
10840 bp_type = bp_hardware_watchpoint;
3a5c3e22 10841
b270e6f9 10842 std::unique_ptr<watchpoint> w (new watchpoint ());
c1fc2657 10843
348d480f 10844 if (use_mask)
b270e6f9 10845 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10846 &masked_watchpoint_breakpoint_ops);
348d480f 10847 else
b270e6f9 10848 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
3a5c3e22 10849 &watchpoint_breakpoint_ops);
c1fc2657
SM
10850 w->thread = thread;
10851 w->disposition = disp_donttouch;
10852 w->pspace = current_program_space;
b22e99fd 10853 w->exp = std::move (exp);
3a5c3e22
PA
10854 w->exp_valid_block = exp_valid_block;
10855 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
10856 if (just_location)
10857 {
10858 struct type *t = value_type (val);
10859 CORE_ADDR addr = value_as_address (val);
06a64a0b 10860
43cc5389
TT
10861 w->exp_string_reparse
10862 = current_language->la_watch_location_expression (t, addr).release ();
06a64a0b 10863
3a5c3e22 10864 w->exp_string = xstrprintf ("-location %.*s",
d63d0675 10865 (int) (exp_end - exp_start), exp_start);
06a64a0b
TT
10866 }
10867 else
3a5c3e22 10868 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
10869
10870 if (use_mask)
10871 {
3a5c3e22 10872 w->hw_wp_mask = mask;
9c06b0b4
TJB
10873 }
10874 else
10875 {
3a5c3e22 10876 w->val = val;
bb9d5f81
PP
10877 w->val_bitpos = saved_bitpos;
10878 w->val_bitsize = saved_bitsize;
3a5c3e22 10879 w->val_valid = 1;
9c06b0b4 10880 }
77b06cd7 10881
c906108c 10882 if (cond_start)
c1fc2657 10883 w->cond_string = savestring (cond_start, cond_end - cond_start);
c906108c 10884 else
c1fc2657 10885 w->cond_string = 0;
c5aa993b 10886
441d7c93 10887 if (frame_id_p (watchpoint_frame))
f6bc2008 10888 {
441d7c93 10889 w->watchpoint_frame = watchpoint_frame;
3a5c3e22 10890 w->watchpoint_thread = inferior_ptid;
f6bc2008 10891 }
c906108c 10892 else
f6bc2008 10893 {
3a5c3e22
PA
10894 w->watchpoint_frame = null_frame_id;
10895 w->watchpoint_thread = null_ptid;
f6bc2008 10896 }
c906108c 10897
d983da9c 10898 if (scope_breakpoint != NULL)
c906108c 10899 {
d983da9c
DJ
10900 /* The scope breakpoint is related to the watchpoint. We will
10901 need to act on them together. */
c1fc2657 10902 w->related_breakpoint = scope_breakpoint;
b270e6f9 10903 scope_breakpoint->related_breakpoint = w.get ();
c906108c 10904 }
d983da9c 10905
06a64a0b
TT
10906 if (!just_location)
10907 value_free_to_mark (mark);
2d134ed3 10908
b270e6f9
TT
10909 /* Finally update the new watchpoint. This creates the locations
10910 that should be inserted. */
10911 update_watchpoint (w.get (), 1);
a9634178 10912
b270e6f9 10913 install_breakpoint (internal, std::move (w), 1);
c906108c
SS
10914}
10915
e09342b5 10916/* Return count of debug registers needed to watch the given expression.
e09342b5 10917 If the watchpoint cannot be handled in hardware return zero. */
c906108c 10918
c906108c 10919static int
a9634178 10920can_use_hardware_watchpoint (struct value *v)
c906108c
SS
10921{
10922 int found_memory_cnt = 0;
2e70b7b9 10923 struct value *head = v;
c906108c
SS
10924
10925 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 10926 if (!can_use_hw_watchpoints)
c906108c 10927 return 0;
c5aa993b 10928
5c44784c
JM
10929 /* Make sure that the value of the expression depends only upon
10930 memory contents, and values computed from them within GDB. If we
10931 find any register references or function calls, we can't use a
10932 hardware watchpoint.
10933
10934 The idea here is that evaluating an expression generates a series
10935 of values, one holding the value of every subexpression. (The
10936 expression a*b+c has five subexpressions: a, b, a*b, c, and
10937 a*b+c.) GDB's values hold almost enough information to establish
10938 the criteria given above --- they identify memory lvalues,
10939 register lvalues, computed values, etcetera. So we can evaluate
10940 the expression, and then scan the chain of values that leaves
10941 behind to decide whether we can detect any possible change to the
10942 expression's final value using only hardware watchpoints.
10943
10944 However, I don't think that the values returned by inferior
10945 function calls are special in any way. So this function may not
10946 notice that an expression involving an inferior function call
10947 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 10948 for (; v; v = value_next (v))
c906108c 10949 {
5c44784c 10950 if (VALUE_LVAL (v) == lval_memory)
c906108c 10951 {
8464be76
DJ
10952 if (v != head && value_lazy (v))
10953 /* A lazy memory lvalue in the chain is one that GDB never
10954 needed to fetch; we either just used its address (e.g.,
10955 `a' in `a.b') or we never needed it at all (e.g., `a'
10956 in `a,b'). This doesn't apply to HEAD; if that is
10957 lazy then it was not readable, but watch it anyway. */
5c44784c 10958 ;
53a5351d 10959 else
5c44784c
JM
10960 {
10961 /* Ahh, memory we actually used! Check if we can cover
10962 it with hardware watchpoints. */
df407dfe 10963 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
10964
10965 /* We only watch structs and arrays if user asked for it
10966 explicitly, never if they just happen to appear in a
10967 middle of some value chain. */
10968 if (v == head
10969 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
10970 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
10971 {
42ae5230 10972 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
10973 int len;
10974 int num_regs;
10975
a9634178 10976 len = (target_exact_watchpoints
e09342b5
TJB
10977 && is_scalar_type_recursive (vtype))?
10978 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 10979
e09342b5
TJB
10980 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
10981 if (!num_regs)
2e70b7b9
MS
10982 return 0;
10983 else
e09342b5 10984 found_memory_cnt += num_regs;
2e70b7b9 10985 }
5c44784c 10986 }
c5aa993b 10987 }
5086187c
AC
10988 else if (VALUE_LVAL (v) != not_lval
10989 && deprecated_value_modifiable (v) == 0)
38b6c3b3 10990 return 0; /* These are values from the history (e.g., $1). */
5086187c 10991 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 10992 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
10993 }
10994
10995 /* The expression itself looks suitable for using a hardware
10996 watchpoint, but give the target machine a chance to reject it. */
10997 return found_memory_cnt;
10998}
10999
8b93c638 11000void
f2fc3015 11001watch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 11002{
84f4c1fe 11003 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
11004}
11005
06a64a0b
TT
11006/* A helper function that looks for the "-location" argument and then
11007 calls watch_command_1. */
11008
11009static void
0b39b52e 11010watch_maybe_just_location (const char *arg, int accessflag, int from_tty)
06a64a0b
TT
11011{
11012 int just_location = 0;
11013
11014 if (arg
11015 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11016 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11017 {
e9cafbcc 11018 arg = skip_spaces (arg);
06a64a0b
TT
11019 just_location = 1;
11020 }
11021
84f4c1fe 11022 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 11023}
8926118c 11024
c5aa993b 11025static void
0b39b52e 11026watch_command (const char *arg, int from_tty)
c906108c 11027{
06a64a0b 11028 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
11029}
11030
8b93c638 11031void
f2fc3015 11032rwatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 11033{
84f4c1fe 11034 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 11035}
8926118c 11036
c5aa993b 11037static void
0b39b52e 11038rwatch_command (const char *arg, int from_tty)
c906108c 11039{
06a64a0b 11040 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
11041}
11042
8b93c638 11043void
f2fc3015 11044awatch_command_wrapper (const char *arg, int from_tty, int internal)
8b93c638 11045{
84f4c1fe 11046 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 11047}
8926118c 11048
c5aa993b 11049static void
0b39b52e 11050awatch_command (const char *arg, int from_tty)
c906108c 11051{
06a64a0b 11052 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 11053}
c906108c 11054\f
c5aa993b 11055
cfc31633
PA
11056/* Data for the FSM that manages the until(location)/advance commands
11057 in infcmd.c. Here because it uses the mechanisms of
11058 breakpoints. */
c906108c 11059
cfc31633 11060struct until_break_fsm
bfec99b2 11061{
cfc31633
PA
11062 /* The base class. */
11063 struct thread_fsm thread_fsm;
11064
11065 /* The thread that as current when the command was executed. */
11066 int thread;
11067
11068 /* The breakpoint set at the destination location. */
11069 struct breakpoint *location_breakpoint;
11070
11071 /* Breakpoint set at the return address in the caller frame. May be
11072 NULL. */
11073 struct breakpoint *caller_breakpoint;
bfec99b2
PA
11074};
11075
8980e177
PA
11076static void until_break_fsm_clean_up (struct thread_fsm *self,
11077 struct thread_info *thread);
11078static int until_break_fsm_should_stop (struct thread_fsm *self,
11079 struct thread_info *thread);
cfc31633
PA
11080static enum async_reply_reason
11081 until_break_fsm_async_reply_reason (struct thread_fsm *self);
11082
11083/* until_break_fsm's vtable. */
11084
11085static struct thread_fsm_ops until_break_fsm_ops =
11086{
11087 NULL, /* dtor */
11088 until_break_fsm_clean_up,
11089 until_break_fsm_should_stop,
11090 NULL, /* return_value */
11091 until_break_fsm_async_reply_reason,
11092};
11093
11094/* Allocate a new until_break_command_fsm. */
11095
11096static struct until_break_fsm *
8980e177 11097new_until_break_fsm (struct interp *cmd_interp, int thread,
454dafbd
TT
11098 breakpoint_up &&location_breakpoint,
11099 breakpoint_up &&caller_breakpoint)
cfc31633
PA
11100{
11101 struct until_break_fsm *sm;
11102
11103 sm = XCNEW (struct until_break_fsm);
8980e177 11104 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops, cmd_interp);
cfc31633
PA
11105
11106 sm->thread = thread;
454dafbd
TT
11107 sm->location_breakpoint = location_breakpoint.release ();
11108 sm->caller_breakpoint = caller_breakpoint.release ();
cfc31633
PA
11109
11110 return sm;
11111}
11112
11113/* Implementation of the 'should_stop' FSM method for the
11114 until(location)/advance commands. */
11115
11116static int
8980e177
PA
11117until_break_fsm_should_stop (struct thread_fsm *self,
11118 struct thread_info *tp)
cfc31633
PA
11119{
11120 struct until_break_fsm *sm = (struct until_break_fsm *) self;
cfc31633
PA
11121
11122 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11123 sm->location_breakpoint) != NULL
11124 || (sm->caller_breakpoint != NULL
11125 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11126 sm->caller_breakpoint) != NULL))
11127 thread_fsm_set_finished (self);
11128
11129 return 1;
11130}
11131
11132/* Implementation of the 'clean_up' FSM method for the
11133 until(location)/advance commands. */
11134
c2c6d25f 11135static void
8980e177
PA
11136until_break_fsm_clean_up (struct thread_fsm *self,
11137 struct thread_info *thread)
43ff13b4 11138{
cfc31633 11139 struct until_break_fsm *sm = (struct until_break_fsm *) self;
bfec99b2 11140
cfc31633
PA
11141 /* Clean up our temporary breakpoints. */
11142 if (sm->location_breakpoint != NULL)
11143 {
11144 delete_breakpoint (sm->location_breakpoint);
11145 sm->location_breakpoint = NULL;
11146 }
11147 if (sm->caller_breakpoint != NULL)
11148 {
11149 delete_breakpoint (sm->caller_breakpoint);
11150 sm->caller_breakpoint = NULL;
11151 }
11152 delete_longjmp_breakpoint (sm->thread);
11153}
11154
11155/* Implementation of the 'async_reply_reason' FSM method for the
11156 until(location)/advance commands. */
11157
11158static enum async_reply_reason
11159until_break_fsm_async_reply_reason (struct thread_fsm *self)
11160{
11161 return EXEC_ASYNC_LOCATION_REACHED;
43ff13b4
JM
11162}
11163
c906108c 11164void
f2fc3015 11165until_break_command (const char *arg, int from_tty, int anywhere)
c906108c 11166{
8556afb4
PA
11167 struct frame_info *frame;
11168 struct gdbarch *frame_gdbarch;
11169 struct frame_id stack_frame_id;
11170 struct frame_id caller_frame_id;
ffc2605c 11171 struct cleanup *old_chain;
186c406b
TT
11172 int thread;
11173 struct thread_info *tp;
cfc31633 11174 struct until_break_fsm *sm;
c906108c 11175
70509625 11176 clear_proceed_status (0);
c906108c
SS
11177
11178 /* Set a breakpoint where the user wants it and at return from
4a64f543 11179 this function. */
c5aa993b 11180
ffc2605c 11181 event_location_up location = string_to_event_location (&arg, current_language);
f00aae0f 11182
6c5b2ebe
PA
11183 std::vector<symtab_and_line> sals
11184 = (last_displayed_sal_is_valid ()
11185 ? decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
11186 get_last_displayed_symtab (),
11187 get_last_displayed_line ())
11188 : decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE,
11189 NULL, (struct symtab *) NULL, 0));
c5aa993b 11190
6c5b2ebe 11191 if (sals.size () != 1)
8a3fe4f8 11192 error (_("Couldn't get information on specified line."));
c5aa993b 11193
6c5b2ebe 11194 symtab_and_line &sal = sals[0];
c5aa993b 11195
c906108c 11196 if (*arg)
8a3fe4f8 11197 error (_("Junk at end of arguments."));
c5aa993b 11198
c906108c 11199 resolve_sal_pc (&sal);
c5aa993b 11200
186c406b 11201 tp = inferior_thread ();
5d5658a1 11202 thread = tp->global_num;
186c406b 11203
883bc8d1
PA
11204 old_chain = make_cleanup (null_cleanup, NULL);
11205
8556afb4
PA
11206 /* Note linespec handling above invalidates the frame chain.
11207 Installing a breakpoint also invalidates the frame chain (as it
11208 may need to switch threads), so do any frame handling before
11209 that. */
11210
11211 frame = get_selected_frame (NULL);
11212 frame_gdbarch = get_frame_arch (frame);
11213 stack_frame_id = get_stack_frame_id (frame);
11214 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11215
ae66c1fc
EZ
11216 /* Keep within the current frame, or in frames called by the current
11217 one. */
edb3359d 11218
454dafbd 11219 breakpoint_up caller_breakpoint;
883bc8d1 11220 if (frame_id_p (caller_frame_id))
c906108c 11221 {
883bc8d1 11222 struct symtab_and_line sal2;
cfc31633 11223 struct gdbarch *caller_gdbarch;
883bc8d1
PA
11224
11225 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11226 sal2.pc = frame_unwind_caller_pc (frame);
cfc31633
PA
11227 caller_gdbarch = frame_unwind_caller_arch (frame);
11228 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11229 sal2,
11230 caller_frame_id,
11231 bp_until);
186c406b 11232
883bc8d1 11233 set_longjmp_breakpoint (tp, caller_frame_id);
186c406b 11234 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 11235 }
c5aa993b 11236
c70a6932
JK
11237 /* set_momentary_breakpoint could invalidate FRAME. */
11238 frame = NULL;
11239
454dafbd 11240 breakpoint_up location_breakpoint;
883bc8d1
PA
11241 if (anywhere)
11242 /* If the user told us to continue until a specified location,
11243 we don't specify a frame at which we need to stop. */
cfc31633
PA
11244 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11245 null_frame_id, bp_until);
883bc8d1
PA
11246 else
11247 /* Otherwise, specify the selected frame, because we want to stop
11248 only at the very same frame. */
cfc31633
PA
11249 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11250 stack_frame_id, bp_until);
883bc8d1 11251
8980e177 11252 sm = new_until_break_fsm (command_interp (), tp->global_num,
454dafbd
TT
11253 std::move (location_breakpoint),
11254 std::move (caller_breakpoint));
cfc31633 11255 tp->thread_fsm = &sm->thread_fsm;
f107f563 11256
cfc31633 11257 discard_cleanups (old_chain);
f107f563 11258
cfc31633 11259 proceed (-1, GDB_SIGNAL_DEFAULT);
c906108c 11260}
ae66c1fc 11261
c906108c
SS
11262/* This function attempts to parse an optional "if <cond>" clause
11263 from the arg string. If one is not found, it returns NULL.
c5aa993b 11264
c906108c
SS
11265 Else, it returns a pointer to the condition string. (It does not
11266 attempt to evaluate the string against a particular block.) And,
11267 it updates arg to point to the first character following the parsed
4a64f543 11268 if clause in the arg string. */
53a5351d 11269
63160a43
PA
11270const char *
11271ep_parse_optional_if_clause (const char **arg)
c906108c 11272{
63160a43 11273 const char *cond_string;
c5aa993b
JM
11274
11275 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11276 return NULL;
c5aa993b 11277
4a64f543 11278 /* Skip the "if" keyword. */
c906108c 11279 (*arg) += 2;
c5aa993b 11280
c906108c 11281 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11282 condition string. */
f1735a53 11283 *arg = skip_spaces (*arg);
c906108c 11284 cond_string = *arg;
c5aa993b 11285
4a64f543
MS
11286 /* Assume that the condition occupies the remainder of the arg
11287 string. */
c906108c 11288 (*arg) += strlen (cond_string);
c5aa993b 11289
c906108c
SS
11290 return cond_string;
11291}
c5aa993b 11292
c906108c
SS
11293/* Commands to deal with catching events, such as signals, exceptions,
11294 process start/exit, etc. */
c5aa993b
JM
11295
11296typedef enum
11297{
44feb3ce
TT
11298 catch_fork_temporary, catch_vfork_temporary,
11299 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11300}
11301catch_fork_kind;
11302
c906108c 11303static void
eb4c3f4a 11304catch_fork_command_1 (const char *arg, int from_tty,
cc59ec59 11305 struct cmd_list_element *command)
c906108c 11306{
a6d9a66e 11307 struct gdbarch *gdbarch = get_current_arch ();
63160a43 11308 const char *cond_string = NULL;
44feb3ce
TT
11309 catch_fork_kind fork_kind;
11310 int tempflag;
11311
11312 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11313 tempflag = (fork_kind == catch_fork_temporary
11314 || fork_kind == catch_vfork_temporary);
c5aa993b 11315
44feb3ce
TT
11316 if (!arg)
11317 arg = "";
f1735a53 11318 arg = skip_spaces (arg);
c5aa993b 11319
c906108c 11320 /* The allowed syntax is:
c5aa993b
JM
11321 catch [v]fork
11322 catch [v]fork if <cond>
11323
4a64f543 11324 First, check if there's an if clause. */
c906108c 11325 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 11326
c906108c 11327 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11328 error (_("Junk at end of arguments."));
c5aa993b 11329
c906108c 11330 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 11331 and enable reporting of such events. */
c5aa993b
JM
11332 switch (fork_kind)
11333 {
44feb3ce
TT
11334 case catch_fork_temporary:
11335 case catch_fork_permanent:
a6d9a66e 11336 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11337 &catch_fork_breakpoint_ops);
c906108c 11338 break;
44feb3ce
TT
11339 case catch_vfork_temporary:
11340 case catch_vfork_permanent:
a6d9a66e 11341 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11342 &catch_vfork_breakpoint_ops);
c906108c 11343 break;
c5aa993b 11344 default:
8a3fe4f8 11345 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 11346 break;
c5aa993b 11347 }
c906108c
SS
11348}
11349
11350static void
eb4c3f4a 11351catch_exec_command_1 (const char *arg, int from_tty,
cc59ec59 11352 struct cmd_list_element *command)
c906108c 11353{
a6d9a66e 11354 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 11355 int tempflag;
63160a43 11356 const char *cond_string = NULL;
c906108c 11357
44feb3ce
TT
11358 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11359
11360 if (!arg)
11361 arg = "";
f1735a53 11362 arg = skip_spaces (arg);
c906108c
SS
11363
11364 /* The allowed syntax is:
c5aa993b
JM
11365 catch exec
11366 catch exec if <cond>
c906108c 11367
4a64f543 11368 First, check if there's an if clause. */
c906108c
SS
11369 cond_string = ep_parse_optional_if_clause (&arg);
11370
11371 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11372 error (_("Junk at end of arguments."));
c906108c 11373
b270e6f9
TT
11374 std::unique_ptr<exec_catchpoint> c (new exec_catchpoint ());
11375 init_catchpoint (c.get (), gdbarch, tempflag, cond_string,
b4d90040
PA
11376 &catch_exec_breakpoint_ops);
11377 c->exec_pathname = NULL;
11378
b270e6f9 11379 install_breakpoint (0, std::move (c), 1);
c906108c 11380}
c5aa993b 11381
9ac4176b 11382void
28010a5d
PA
11383init_ada_exception_breakpoint (struct breakpoint *b,
11384 struct gdbarch *gdbarch,
11385 struct symtab_and_line sal,
f2fc3015 11386 const char *addr_string,
c0a91b2b 11387 const struct breakpoint_ops *ops,
28010a5d 11388 int tempflag,
349774ef 11389 int enabled,
28010a5d 11390 int from_tty)
f7f9143b 11391{
f7f9143b
JB
11392 if (from_tty)
11393 {
5af949e3
UW
11394 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11395 if (!loc_gdbarch)
11396 loc_gdbarch = gdbarch;
11397
6c95b8df
PA
11398 describe_other_breakpoints (loc_gdbarch,
11399 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
11400 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11401 version for exception catchpoints, because two catchpoints
11402 used for different exception names will use the same address.
11403 In this case, a "breakpoint ... also set at..." warning is
4a64f543 11404 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 11405 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
11406 the user what type of catchpoint it is. The above is good
11407 enough for now, though. */
11408 }
11409
28010a5d 11410 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b 11411
349774ef 11412 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 11413 b->disposition = tempflag ? disp_del : disp_donttouch;
d28cd78a
TT
11414 b->location = string_to_event_location (&addr_string,
11415 language_def (language_ada));
f7f9143b 11416 b->language = language_ada;
f7f9143b
JB
11417}
11418
c906108c 11419static void
981a3fb3 11420catch_command (const char *arg, int from_tty)
c906108c 11421{
44feb3ce 11422 error (_("Catch requires an event name."));
c906108c
SS
11423}
11424\f
11425
11426static void
981a3fb3 11427tcatch_command (const char *arg, int from_tty)
c906108c 11428{
44feb3ce 11429 error (_("Catch requires an event name."));
c906108c
SS
11430}
11431
81b1e71c 11432/* Compare two breakpoints and return a strcmp-like result. */
8a2c437b
TT
11433
11434static int
81b1e71c 11435compare_breakpoints (const breakpoint *a, const breakpoint *b)
8a2c437b 11436{
81b1e71c
TT
11437 uintptr_t ua = (uintptr_t) a;
11438 uintptr_t ub = (uintptr_t) b;
8a2c437b 11439
81b1e71c 11440 if (a->number < b->number)
8a2c437b 11441 return -1;
81b1e71c 11442 else if (a->number > b->number)
8a2c437b
TT
11443 return 1;
11444
11445 /* Now sort by address, in case we see, e..g, two breakpoints with
11446 the number 0. */
11447 if (ua < ub)
11448 return -1;
94b0e70d 11449 return ua > ub ? 1 : 0;
8a2c437b
TT
11450}
11451
80f8a6eb 11452/* Delete breakpoints by address or line. */
c906108c
SS
11453
11454static void
0b39b52e 11455clear_command (const char *arg, int from_tty)
c906108c 11456{
81b1e71c 11457 struct breakpoint *b;
c906108c 11458 int default_match;
c906108c 11459
6c5b2ebe
PA
11460 std::vector<symtab_and_line> decoded_sals;
11461 symtab_and_line last_sal;
11462 gdb::array_view<symtab_and_line> sals;
c906108c
SS
11463 if (arg)
11464 {
6c5b2ebe
PA
11465 decoded_sals
11466 = decode_line_with_current_source (arg,
11467 (DECODE_LINE_FUNFIRSTLINE
11468 | DECODE_LINE_LIST_MODE));
c906108c 11469 default_match = 0;
6c5b2ebe 11470 sals = decoded_sals;
c906108c
SS
11471 }
11472 else
11473 {
1bfeeb0f
JL
11474 /* Set sal's line, symtab, pc, and pspace to the values
11475 corresponding to the last call to print_frame_info. If the
11476 codepoint is not valid, this will set all the fields to 0. */
51abb421 11477 last_sal = get_last_displayed_sal ();
6c5b2ebe 11478 if (last_sal.symtab == 0)
8a3fe4f8 11479 error (_("No source file specified."));
c906108c 11480
c906108c 11481 default_match = 1;
6c5b2ebe 11482 sals = last_sal;
c906108c
SS
11483 }
11484
4a64f543
MS
11485 /* We don't call resolve_sal_pc here. That's not as bad as it
11486 seems, because all existing breakpoints typically have both
11487 file/line and pc set. So, if clear is given file/line, we can
11488 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
11489
11490 We only support clearing given the address explicitly
11491 present in breakpoint table. Say, we've set breakpoint
4a64f543 11492 at file:line. There were several PC values for that file:line,
ed0616c6 11493 due to optimization, all in one block.
4a64f543
MS
11494
11495 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
11496 PC corresponding to the same file:line, the breakpoint won't
11497 be cleared. We probably can still clear the breakpoint, but
11498 since the other PC value is never presented to user, user
11499 can only find it by guessing, and it does not seem important
11500 to support that. */
11501
4a64f543
MS
11502 /* For each line spec given, delete bps which correspond to it. Do
11503 it in two passes, solely to preserve the current behavior that
11504 from_tty is forced true if we delete more than one
11505 breakpoint. */
c906108c 11506
81b1e71c 11507 std::vector<struct breakpoint *> found;
6c5b2ebe 11508 for (const auto &sal : sals)
c906108c 11509 {
05cba821
JK
11510 const char *sal_fullname;
11511
c906108c 11512 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
11513 If line given (pc == 0), clear all bpts on specified line.
11514 If defaulting, clear all bpts on default line
c906108c 11515 or at default pc.
c5aa993b
JM
11516
11517 defaulting sal.pc != 0 tests to do
11518
11519 0 1 pc
11520 1 1 pc _and_ line
11521 0 0 line
11522 1 0 <can't happen> */
c906108c 11523
05cba821
JK
11524 sal_fullname = (sal.symtab == NULL
11525 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 11526
4a64f543 11527 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 11528 ALL_BREAKPOINTS (b)
c5aa993b 11529 {
0d381245 11530 int match = 0;
4a64f543 11531 /* Are we going to delete b? */
cc60f2e3 11532 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
11533 {
11534 struct bp_location *loc = b->loc;
11535 for (; loc; loc = loc->next)
11536 {
f8eba3c6
TT
11537 /* If the user specified file:line, don't allow a PC
11538 match. This matches historical gdb behavior. */
11539 int pc_match = (!sal.explicit_line
11540 && sal.pc
11541 && (loc->pspace == sal.pspace)
11542 && (loc->address == sal.pc)
11543 && (!section_is_overlay (loc->section)
11544 || loc->section == sal.section));
4aac40c8
TT
11545 int line_match = 0;
11546
11547 if ((default_match || sal.explicit_line)
2f202fde 11548 && loc->symtab != NULL
05cba821 11549 && sal_fullname != NULL
4aac40c8 11550 && sal.pspace == loc->pspace
05cba821
JK
11551 && loc->line_number == sal.line
11552 && filename_cmp (symtab_to_fullname (loc->symtab),
11553 sal_fullname) == 0)
11554 line_match = 1;
4aac40c8 11555
0d381245
VP
11556 if (pc_match || line_match)
11557 {
11558 match = 1;
11559 break;
11560 }
11561 }
11562 }
11563
11564 if (match)
81b1e71c 11565 found.push_back (b);
c906108c 11566 }
80f8a6eb 11567 }
8a2c437b 11568
80f8a6eb 11569 /* Now go thru the 'found' chain and delete them. */
81b1e71c 11570 if (found.empty ())
80f8a6eb
MS
11571 {
11572 if (arg)
8a3fe4f8 11573 error (_("No breakpoint at %s."), arg);
80f8a6eb 11574 else
8a3fe4f8 11575 error (_("No breakpoint at this line."));
80f8a6eb 11576 }
c906108c 11577
8a2c437b 11578 /* Remove duplicates from the vec. */
81b1e71c
TT
11579 std::sort (found.begin (), found.end (),
11580 [] (const breakpoint *a, const breakpoint *b)
11581 {
11582 return compare_breakpoints (a, b) < 0;
11583 });
11584 found.erase (std::unique (found.begin (), found.end (),
11585 [] (const breakpoint *a, const breakpoint *b)
11586 {
11587 return compare_breakpoints (a, b) == 0;
11588 }),
11589 found.end ());
8a2c437b 11590
81b1e71c 11591 if (found.size () > 1)
4a64f543 11592 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 11593 if (from_tty)
a3f17187 11594 {
81b1e71c 11595 if (found.size () == 1)
a3f17187
AC
11596 printf_unfiltered (_("Deleted breakpoint "));
11597 else
11598 printf_unfiltered (_("Deleted breakpoints "));
11599 }
d6e956e5 11600
81b1e71c 11601 for (breakpoint *iter : found)
80f8a6eb 11602 {
c5aa993b 11603 if (from_tty)
81b1e71c
TT
11604 printf_unfiltered ("%d ", iter->number);
11605 delete_breakpoint (iter);
c906108c 11606 }
80f8a6eb
MS
11607 if (from_tty)
11608 putchar_unfiltered ('\n');
c906108c
SS
11609}
11610\f
11611/* Delete breakpoint in BS if they are `delete' breakpoints and
11612 all breakpoints that are marked for deletion, whether hit or not.
11613 This is called after any breakpoint is hit, or after errors. */
11614
11615void
fba45db2 11616breakpoint_auto_delete (bpstat bs)
c906108c 11617{
35df4500 11618 struct breakpoint *b, *b_tmp;
c906108c
SS
11619
11620 for (; bs; bs = bs->next)
f431efe5
PA
11621 if (bs->breakpoint_at
11622 && bs->breakpoint_at->disposition == disp_del
c906108c 11623 && bs->stop)
f431efe5 11624 delete_breakpoint (bs->breakpoint_at);
c906108c 11625
35df4500 11626 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 11627 {
b5de0fa7 11628 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
11629 delete_breakpoint (b);
11630 }
c906108c
SS
11631}
11632
4a64f543
MS
11633/* A comparison function for bp_location AP and BP being interfaced to
11634 qsort. Sort elements primarily by their ADDRESS (no matter what
11635 does breakpoint_address_is_meaningful say for its OWNER),
1a853c52 11636 secondarily by ordering first permanent elements and
4a64f543 11637 terciarily just ensuring the array is sorted stable way despite
e5dd4106 11638 qsort being an unstable algorithm. */
876fa593
JK
11639
11640static int
f5336ca5 11641bp_locations_compare (const void *ap, const void *bp)
876fa593 11642{
9a3c8263
SM
11643 const struct bp_location *a = *(const struct bp_location **) ap;
11644 const struct bp_location *b = *(const struct bp_location **) bp;
876fa593
JK
11645
11646 if (a->address != b->address)
11647 return (a->address > b->address) - (a->address < b->address);
11648
dea2aa5f
LM
11649 /* Sort locations at the same address by their pspace number, keeping
11650 locations of the same inferior (in a multi-inferior environment)
11651 grouped. */
11652
11653 if (a->pspace->num != b->pspace->num)
11654 return ((a->pspace->num > b->pspace->num)
11655 - (a->pspace->num < b->pspace->num));
11656
876fa593 11657 /* Sort permanent breakpoints first. */
1a853c52
PA
11658 if (a->permanent != b->permanent)
11659 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
876fa593 11660
c56a97f9
JK
11661 /* Make the internal GDB representation stable across GDB runs
11662 where A and B memory inside GDB can differ. Breakpoint locations of
11663 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
11664
11665 if (a->owner->number != b->owner->number)
c56a97f9
JK
11666 return ((a->owner->number > b->owner->number)
11667 - (a->owner->number < b->owner->number));
876fa593
JK
11668
11669 return (a > b) - (a < b);
11670}
11671
f5336ca5
PA
11672/* Set bp_locations_placed_address_before_address_max and
11673 bp_locations_shadow_len_after_address_max according to the current
11674 content of the bp_locations array. */
f7545552
TT
11675
11676static void
f5336ca5 11677bp_locations_target_extensions_update (void)
f7545552 11678{
876fa593
JK
11679 struct bp_location *bl, **blp_tmp;
11680
f5336ca5
PA
11681 bp_locations_placed_address_before_address_max = 0;
11682 bp_locations_shadow_len_after_address_max = 0;
876fa593
JK
11683
11684 ALL_BP_LOCATIONS (bl, blp_tmp)
11685 {
11686 CORE_ADDR start, end, addr;
11687
11688 if (!bp_location_has_shadow (bl))
11689 continue;
11690
11691 start = bl->target_info.placed_address;
11692 end = start + bl->target_info.shadow_len;
11693
11694 gdb_assert (bl->address >= start);
11695 addr = bl->address - start;
f5336ca5
PA
11696 if (addr > bp_locations_placed_address_before_address_max)
11697 bp_locations_placed_address_before_address_max = addr;
876fa593
JK
11698
11699 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
11700
11701 gdb_assert (bl->address < end);
11702 addr = end - bl->address;
f5336ca5
PA
11703 if (addr > bp_locations_shadow_len_after_address_max)
11704 bp_locations_shadow_len_after_address_max = addr;
876fa593 11705 }
f7545552
TT
11706}
11707
1e4d1764
YQ
11708/* Download tracepoint locations if they haven't been. */
11709
11710static void
11711download_tracepoint_locations (void)
11712{
7ed2c994 11713 struct breakpoint *b;
dd2e65cc 11714 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
1e4d1764 11715
5ed8105e 11716 scoped_restore_current_pspace_and_thread restore_pspace_thread;
1e4d1764 11717
7ed2c994 11718 ALL_TRACEPOINTS (b)
1e4d1764 11719 {
7ed2c994 11720 struct bp_location *bl;
1e4d1764 11721 struct tracepoint *t;
f2a8bc8a 11722 int bp_location_downloaded = 0;
1e4d1764 11723
7ed2c994 11724 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
11725 ? !may_insert_fast_tracepoints
11726 : !may_insert_tracepoints))
11727 continue;
11728
dd2e65cc
YQ
11729 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
11730 {
11731 if (target_can_download_tracepoint ())
11732 can_download_tracepoint = TRIBOOL_TRUE;
11733 else
11734 can_download_tracepoint = TRIBOOL_FALSE;
11735 }
11736
11737 if (can_download_tracepoint == TRIBOOL_FALSE)
11738 break;
11739
7ed2c994
YQ
11740 for (bl = b->loc; bl; bl = bl->next)
11741 {
11742 /* In tracepoint, locations are _never_ duplicated, so
11743 should_be_inserted is equivalent to
11744 unduplicated_should_be_inserted. */
11745 if (!should_be_inserted (bl) || bl->inserted)
11746 continue;
1e4d1764 11747
7ed2c994 11748 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 11749
7ed2c994 11750 target_download_tracepoint (bl);
1e4d1764 11751
7ed2c994 11752 bl->inserted = 1;
f2a8bc8a 11753 bp_location_downloaded = 1;
7ed2c994
YQ
11754 }
11755 t = (struct tracepoint *) b;
11756 t->number_on_target = b->number;
f2a8bc8a
YQ
11757 if (bp_location_downloaded)
11758 observer_notify_breakpoint_modified (b);
1e4d1764 11759 }
1e4d1764
YQ
11760}
11761
934709f0
PW
11762/* Swap the insertion/duplication state between two locations. */
11763
11764static void
11765swap_insertion (struct bp_location *left, struct bp_location *right)
11766{
11767 const int left_inserted = left->inserted;
11768 const int left_duplicate = left->duplicate;
b775012e 11769 const int left_needs_update = left->needs_update;
934709f0
PW
11770 const struct bp_target_info left_target_info = left->target_info;
11771
1e4d1764
YQ
11772 /* Locations of tracepoints can never be duplicated. */
11773 if (is_tracepoint (left->owner))
11774 gdb_assert (!left->duplicate);
11775 if (is_tracepoint (right->owner))
11776 gdb_assert (!right->duplicate);
11777
934709f0
PW
11778 left->inserted = right->inserted;
11779 left->duplicate = right->duplicate;
b775012e 11780 left->needs_update = right->needs_update;
934709f0
PW
11781 left->target_info = right->target_info;
11782 right->inserted = left_inserted;
11783 right->duplicate = left_duplicate;
b775012e 11784 right->needs_update = left_needs_update;
934709f0
PW
11785 right->target_info = left_target_info;
11786}
11787
b775012e
LM
11788/* Force the re-insertion of the locations at ADDRESS. This is called
11789 once a new/deleted/modified duplicate location is found and we are evaluating
11790 conditions on the target's side. Such conditions need to be updated on
11791 the target. */
11792
11793static void
11794force_breakpoint_reinsertion (struct bp_location *bl)
11795{
11796 struct bp_location **locp = NULL, **loc2p;
11797 struct bp_location *loc;
11798 CORE_ADDR address = 0;
11799 int pspace_num;
11800
11801 address = bl->address;
11802 pspace_num = bl->pspace->num;
11803
11804 /* This is only meaningful if the target is
11805 evaluating conditions and if the user has
11806 opted for condition evaluation on the target's
11807 side. */
11808 if (gdb_evaluates_breakpoint_condition_p ()
11809 || !target_supports_evaluation_of_breakpoint_conditions ())
11810 return;
11811
11812 /* Flag all breakpoint locations with this address and
11813 the same program space as the location
11814 as "its condition has changed". We need to
11815 update the conditions on the target's side. */
11816 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
11817 {
11818 loc = *loc2p;
11819
11820 if (!is_breakpoint (loc->owner)
11821 || pspace_num != loc->pspace->num)
11822 continue;
11823
11824 /* Flag the location appropriately. We use a different state to
11825 let everyone know that we already updated the set of locations
11826 with addr bl->address and program space bl->pspace. This is so
11827 we don't have to keep calling these functions just to mark locations
11828 that have already been marked. */
11829 loc->condition_changed = condition_updated;
11830
11831 /* Free the agent expression bytecode as well. We will compute
11832 it later on. */
833177a4 11833 loc->cond_bytecode.reset ();
b775012e
LM
11834 }
11835}
44702360
PA
11836/* Called whether new breakpoints are created, or existing breakpoints
11837 deleted, to update the global location list and recompute which
11838 locations are duplicate of which.
b775012e 11839
04086b45
PA
11840 The INSERT_MODE flag determines whether locations may not, may, or
11841 shall be inserted now. See 'enum ugll_insert_mode' for more
11842 info. */
b60e7edf 11843
0d381245 11844static void
44702360 11845update_global_location_list (enum ugll_insert_mode insert_mode)
0d381245 11846{
74960c60 11847 struct breakpoint *b;
876fa593 11848 struct bp_location **locp, *loc;
b775012e
LM
11849 /* Last breakpoint location address that was marked for update. */
11850 CORE_ADDR last_addr = 0;
11851 /* Last breakpoint location program space that was marked for update. */
11852 int last_pspace_num = -1;
f7545552 11853
2d134ed3
PA
11854 /* Used in the duplicates detection below. When iterating over all
11855 bp_locations, points to the first bp_location of a given address.
11856 Breakpoints and watchpoints of different types are never
11857 duplicates of each other. Keep one pointer for each type of
11858 breakpoint/watchpoint, so we only need to loop over all locations
11859 once. */
11860 struct bp_location *bp_loc_first; /* breakpoint */
11861 struct bp_location *wp_loc_first; /* hardware watchpoint */
11862 struct bp_location *awp_loc_first; /* access watchpoint */
11863 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 11864
f5336ca5
PA
11865 /* Saved former bp_locations array which we compare against the newly
11866 built bp_locations from the current state of ALL_BREAKPOINTS. */
81b1e71c 11867 struct bp_location **old_locp;
f5336ca5 11868 unsigned old_locations_count;
81b1e71c 11869 gdb::unique_xmalloc_ptr<struct bp_location *> old_locations (bp_locations);
876fa593 11870
f5336ca5
PA
11871 old_locations_count = bp_locations_count;
11872 bp_locations = NULL;
11873 bp_locations_count = 0;
0d381245 11874
74960c60 11875 ALL_BREAKPOINTS (b)
876fa593 11876 for (loc = b->loc; loc; loc = loc->next)
f5336ca5 11877 bp_locations_count++;
876fa593 11878
f5336ca5
PA
11879 bp_locations = XNEWVEC (struct bp_location *, bp_locations_count);
11880 locp = bp_locations;
876fa593
JK
11881 ALL_BREAKPOINTS (b)
11882 for (loc = b->loc; loc; loc = loc->next)
11883 *locp++ = loc;
f5336ca5
PA
11884 qsort (bp_locations, bp_locations_count, sizeof (*bp_locations),
11885 bp_locations_compare);
876fa593 11886
f5336ca5 11887 bp_locations_target_extensions_update ();
74960c60 11888
4a64f543
MS
11889 /* Identify bp_location instances that are no longer present in the
11890 new list, and therefore should be freed. Note that it's not
11891 necessary that those locations should be removed from inferior --
11892 if there's another location at the same address (previously
11893 marked as duplicate), we don't need to remove/insert the
11894 location.
876fa593 11895
4a64f543
MS
11896 LOCP is kept in sync with OLD_LOCP, each pointing to the current
11897 and former bp_location array state respectively. */
876fa593 11898
f5336ca5 11899 locp = bp_locations;
81b1e71c
TT
11900 for (old_locp = old_locations.get ();
11901 old_locp < old_locations.get () + old_locations_count;
876fa593 11902 old_locp++)
74960c60 11903 {
876fa593 11904 struct bp_location *old_loc = *old_locp;
c7d46a38 11905 struct bp_location **loc2p;
876fa593 11906
e5dd4106 11907 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 11908 not, we have to free it. */
c7d46a38 11909 int found_object = 0;
20874c92
VP
11910 /* Tells if the location should remain inserted in the target. */
11911 int keep_in_target = 0;
11912 int removed = 0;
876fa593 11913
4a64f543
MS
11914 /* Skip LOCP entries which will definitely never be needed.
11915 Stop either at or being the one matching OLD_LOC. */
f5336ca5 11916 while (locp < bp_locations + bp_locations_count
c7d46a38 11917 && (*locp)->address < old_loc->address)
876fa593 11918 locp++;
c7d46a38
PA
11919
11920 for (loc2p = locp;
f5336ca5 11921 (loc2p < bp_locations + bp_locations_count
c7d46a38
PA
11922 && (*loc2p)->address == old_loc->address);
11923 loc2p++)
11924 {
b775012e
LM
11925 /* Check if this is a new/duplicated location or a duplicated
11926 location that had its condition modified. If so, we want to send
11927 its condition to the target if evaluation of conditions is taking
11928 place there. */
11929 if ((*loc2p)->condition_changed == condition_modified
11930 && (last_addr != old_loc->address
11931 || last_pspace_num != old_loc->pspace->num))
c7d46a38 11932 {
b775012e
LM
11933 force_breakpoint_reinsertion (*loc2p);
11934 last_pspace_num = old_loc->pspace->num;
c7d46a38 11935 }
b775012e
LM
11936
11937 if (*loc2p == old_loc)
11938 found_object = 1;
c7d46a38 11939 }
74960c60 11940
b775012e
LM
11941 /* We have already handled this address, update it so that we don't
11942 have to go through updates again. */
11943 last_addr = old_loc->address;
11944
11945 /* Target-side condition evaluation: Handle deleted locations. */
11946 if (!found_object)
11947 force_breakpoint_reinsertion (old_loc);
11948
4a64f543
MS
11949 /* If this location is no longer present, and inserted, look if
11950 there's maybe a new location at the same address. If so,
11951 mark that one inserted, and don't remove this one. This is
11952 needed so that we don't have a time window where a breakpoint
11953 at certain location is not inserted. */
74960c60 11954
876fa593 11955 if (old_loc->inserted)
0d381245 11956 {
4a64f543
MS
11957 /* If the location is inserted now, we might have to remove
11958 it. */
74960c60 11959
876fa593 11960 if (found_object && should_be_inserted (old_loc))
74960c60 11961 {
4a64f543
MS
11962 /* The location is still present in the location list,
11963 and still should be inserted. Don't do anything. */
20874c92 11964 keep_in_target = 1;
74960c60
VP
11965 }
11966 else
11967 {
b775012e
LM
11968 /* This location still exists, but it won't be kept in the
11969 target since it may have been disabled. We proceed to
11970 remove its target-side condition. */
11971
4a64f543
MS
11972 /* The location is either no longer present, or got
11973 disabled. See if there's another location at the
11974 same address, in which case we don't need to remove
11975 this one from the target. */
876fa593 11976
2bdf28a0 11977 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
11978 if (breakpoint_address_is_meaningful (old_loc->owner))
11979 {
876fa593 11980 for (loc2p = locp;
f5336ca5 11981 (loc2p < bp_locations + bp_locations_count
c7d46a38 11982 && (*loc2p)->address == old_loc->address);
876fa593
JK
11983 loc2p++)
11984 {
11985 struct bp_location *loc2 = *loc2p;
11986
2d134ed3 11987 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 11988 {
85d721b8
PA
11989 /* Read watchpoint locations are switched to
11990 access watchpoints, if the former are not
11991 supported, but the latter are. */
11992 if (is_hardware_watchpoint (old_loc->owner))
11993 {
11994 gdb_assert (is_hardware_watchpoint (loc2->owner));
11995 loc2->watchpoint_type = old_loc->watchpoint_type;
11996 }
11997
934709f0
PW
11998 /* loc2 is a duplicated location. We need to check
11999 if it should be inserted in case it will be
12000 unduplicated. */
12001 if (loc2 != old_loc
12002 && unduplicated_should_be_inserted (loc2))
c7d46a38 12003 {
934709f0 12004 swap_insertion (old_loc, loc2);
c7d46a38
PA
12005 keep_in_target = 1;
12006 break;
12007 }
876fa593
JK
12008 }
12009 }
12010 }
74960c60
VP
12011 }
12012
20874c92
VP
12013 if (!keep_in_target)
12014 {
834c0d03 12015 if (remove_breakpoint (old_loc))
20874c92 12016 {
4a64f543
MS
12017 /* This is just about all we can do. We could keep
12018 this location on the global list, and try to
12019 remove it next time, but there's no particular
12020 reason why we will succeed next time.
20874c92 12021
4a64f543
MS
12022 Note that at this point, old_loc->owner is still
12023 valid, as delete_breakpoint frees the breakpoint
12024 only after calling us. */
3e43a32a
MS
12025 printf_filtered (_("warning: Error removing "
12026 "breakpoint %d\n"),
876fa593 12027 old_loc->owner->number);
20874c92
VP
12028 }
12029 removed = 1;
12030 }
0d381245 12031 }
74960c60
VP
12032
12033 if (!found_object)
1c5cfe86 12034 {
fbea99ea 12035 if (removed && target_is_non_stop_p ()
1cf4d951 12036 && need_moribund_for_location_type (old_loc))
20874c92 12037 {
db82e815
PA
12038 /* This location was removed from the target. In
12039 non-stop mode, a race condition is possible where
12040 we've removed a breakpoint, but stop events for that
12041 breakpoint are already queued and will arrive later.
12042 We apply an heuristic to be able to distinguish such
12043 SIGTRAPs from other random SIGTRAPs: we keep this
12044 breakpoint location for a bit, and will retire it
12045 after we see some number of events. The theory here
12046 is that reporting of events should, "on the average",
12047 be fair, so after a while we'll see events from all
12048 threads that have anything of interest, and no longer
12049 need to keep this breakpoint location around. We
12050 don't hold locations forever so to reduce chances of
12051 mistaking a non-breakpoint SIGTRAP for a breakpoint
12052 SIGTRAP.
12053
12054 The heuristic failing can be disastrous on
12055 decr_pc_after_break targets.
12056
12057 On decr_pc_after_break targets, like e.g., x86-linux,
12058 if we fail to recognize a late breakpoint SIGTRAP,
12059 because events_till_retirement has reached 0 too
12060 soon, we'll fail to do the PC adjustment, and report
12061 a random SIGTRAP to the user. When the user resumes
12062 the inferior, it will most likely immediately crash
2dec564e 12063 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
12064 corrupted, because of being resumed e.g., in the
12065 middle of a multi-byte instruction, or skipped a
12066 one-byte instruction. This was actually seen happen
12067 on native x86-linux, and should be less rare on
12068 targets that do not support new thread events, like
12069 remote, due to the heuristic depending on
12070 thread_count.
12071
12072 Mistaking a random SIGTRAP for a breakpoint trap
12073 causes similar symptoms (PC adjustment applied when
12074 it shouldn't), but then again, playing with SIGTRAPs
12075 behind the debugger's back is asking for trouble.
12076
12077 Since hardware watchpoint traps are always
12078 distinguishable from other traps, so we don't need to
12079 apply keep hardware watchpoint moribund locations
12080 around. We simply always ignore hardware watchpoint
12081 traps we can no longer explain. */
12082
876fa593
JK
12083 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12084 old_loc->owner = NULL;
20874c92 12085
876fa593 12086 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
12087 }
12088 else
f431efe5
PA
12089 {
12090 old_loc->owner = NULL;
12091 decref_bp_location (&old_loc);
12092 }
20874c92 12093 }
74960c60 12094 }
1c5cfe86 12095
348d480f
PA
12096 /* Rescan breakpoints at the same address and section, marking the
12097 first one as "first" and any others as "duplicates". This is so
12098 that the bpt instruction is only inserted once. If we have a
12099 permanent breakpoint at the same place as BPT, make that one the
12100 official one, and the rest as duplicates. Permanent breakpoints
12101 are sorted first for the same address.
12102
12103 Do the same for hardware watchpoints, but also considering the
12104 watchpoint's type (regular/access/read) and length. */
12105
12106 bp_loc_first = NULL;
12107 wp_loc_first = NULL;
12108 awp_loc_first = NULL;
12109 rwp_loc_first = NULL;
12110 ALL_BP_LOCATIONS (loc, locp)
12111 {
12112 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12113 non-NULL. */
348d480f 12114 struct bp_location **loc_first_p;
d3fbdd86 12115 b = loc->owner;
348d480f 12116
6f380991 12117 if (!unduplicated_should_be_inserted (loc)
348d480f 12118 || !breakpoint_address_is_meaningful (b)
1e4d1764
YQ
12119 /* Don't detect duplicate for tracepoint locations because they are
12120 never duplicated. See the comments in field `duplicate' of
12121 `struct bp_location'. */
348d480f 12122 || is_tracepoint (b))
b775012e
LM
12123 {
12124 /* Clear the condition modification flag. */
12125 loc->condition_changed = condition_unchanged;
12126 continue;
12127 }
348d480f 12128
348d480f
PA
12129 if (b->type == bp_hardware_watchpoint)
12130 loc_first_p = &wp_loc_first;
12131 else if (b->type == bp_read_watchpoint)
12132 loc_first_p = &rwp_loc_first;
12133 else if (b->type == bp_access_watchpoint)
12134 loc_first_p = &awp_loc_first;
12135 else
12136 loc_first_p = &bp_loc_first;
12137
12138 if (*loc_first_p == NULL
12139 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12140 || !breakpoint_locations_match (loc, *loc_first_p))
12141 {
12142 *loc_first_p = loc;
12143 loc->duplicate = 0;
b775012e
LM
12144
12145 if (is_breakpoint (loc->owner) && loc->condition_changed)
12146 {
12147 loc->needs_update = 1;
12148 /* Clear the condition modification flag. */
12149 loc->condition_changed = condition_unchanged;
12150 }
348d480f
PA
12151 continue;
12152 }
12153
934709f0
PW
12154
12155 /* This and the above ensure the invariant that the first location
12156 is not duplicated, and is the inserted one.
12157 All following are marked as duplicated, and are not inserted. */
12158 if (loc->inserted)
12159 swap_insertion (loc, *loc_first_p);
348d480f
PA
12160 loc->duplicate = 1;
12161
b775012e
LM
12162 /* Clear the condition modification flag. */
12163 loc->condition_changed = condition_unchanged;
348d480f
PA
12164 }
12165
a25a5a45 12166 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
b775012e 12167 {
04086b45 12168 if (insert_mode != UGLL_DONT_INSERT)
b775012e
LM
12169 insert_breakpoint_locations ();
12170 else
12171 {
44702360
PA
12172 /* Even though the caller told us to not insert new
12173 locations, we may still need to update conditions on the
12174 target's side of breakpoints that were already inserted
12175 if the target is evaluating breakpoint conditions. We
b775012e
LM
12176 only update conditions for locations that are marked
12177 "needs_update". */
12178 update_inserted_breakpoint_locations ();
12179 }
12180 }
348d480f 12181
04086b45 12182 if (insert_mode != UGLL_DONT_INSERT)
1e4d1764 12183 download_tracepoint_locations ();
348d480f
PA
12184}
12185
12186void
12187breakpoint_retire_moribund (void)
12188{
12189 struct bp_location *loc;
12190 int ix;
12191
12192 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12193 if (--(loc->events_till_retirement) == 0)
12194 {
12195 decref_bp_location (&loc);
12196 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12197 --ix;
12198 }
12199}
12200
12201static void
44702360 12202update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
348d480f 12203{
348d480f 12204
492d29ea
PA
12205 TRY
12206 {
12207 update_global_location_list (insert_mode);
12208 }
12209 CATCH (e, RETURN_MASK_ERROR)
12210 {
12211 }
12212 END_CATCH
348d480f
PA
12213}
12214
12215/* Clear BKP from a BPS. */
12216
12217static void
12218bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12219{
12220 bpstat bs;
12221
12222 for (bs = bps; bs; bs = bs->next)
12223 if (bs->breakpoint_at == bpt)
12224 {
12225 bs->breakpoint_at = NULL;
12226 bs->old_val = NULL;
12227 /* bs->commands will be freed later. */
12228 }
12229}
12230
12231/* Callback for iterate_over_threads. */
12232static int
12233bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12234{
9a3c8263 12235 struct breakpoint *bpt = (struct breakpoint *) data;
348d480f
PA
12236
12237 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12238 return 0;
12239}
12240
12241/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12242 callbacks. */
12243
12244static void
12245say_where (struct breakpoint *b)
12246{
12247 struct value_print_options opts;
12248
12249 get_user_print_options (&opts);
12250
12251 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12252 single string. */
12253 if (b->loc == NULL)
12254 {
f00aae0f
KS
12255 /* For pending locations, the output differs slightly based
12256 on b->extra_string. If this is non-NULL, it contains either
12257 a condition or dprintf arguments. */
12258 if (b->extra_string == NULL)
12259 {
12260 printf_filtered (_(" (%s) pending."),
d28cd78a 12261 event_location_to_string (b->location.get ()));
f00aae0f
KS
12262 }
12263 else if (b->type == bp_dprintf)
12264 {
12265 printf_filtered (_(" (%s,%s) pending."),
d28cd78a 12266 event_location_to_string (b->location.get ()),
f00aae0f
KS
12267 b->extra_string);
12268 }
12269 else
12270 {
12271 printf_filtered (_(" (%s %s) pending."),
d28cd78a 12272 event_location_to_string (b->location.get ()),
f00aae0f
KS
12273 b->extra_string);
12274 }
348d480f
PA
12275 }
12276 else
12277 {
2f202fde 12278 if (opts.addressprint || b->loc->symtab == NULL)
348d480f
PA
12279 {
12280 printf_filtered (" at ");
12281 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12282 gdb_stdout);
12283 }
2f202fde 12284 if (b->loc->symtab != NULL)
f8eba3c6
TT
12285 {
12286 /* If there is a single location, we can print the location
12287 more nicely. */
12288 if (b->loc->next == NULL)
12289 printf_filtered (": file %s, line %d.",
05cba821
JK
12290 symtab_to_filename_for_display (b->loc->symtab),
12291 b->loc->line_number);
f8eba3c6
TT
12292 else
12293 /* This is not ideal, but each location may have a
12294 different file name, and this at least reflects the
12295 real situation somewhat. */
f00aae0f 12296 printf_filtered (": %s.",
d28cd78a 12297 event_location_to_string (b->location.get ()));
f8eba3c6 12298 }
348d480f
PA
12299
12300 if (b->loc->next)
12301 {
12302 struct bp_location *loc = b->loc;
12303 int n = 0;
12304 for (; loc; loc = loc->next)
12305 ++n;
12306 printf_filtered (" (%d locations)", n);
12307 }
12308 }
12309}
12310
348d480f
PA
12311/* Default bp_location_ops methods. */
12312
12313static void
12314bp_location_dtor (struct bp_location *self)
12315{
348d480f
PA
12316 xfree (self->function_name);
12317}
12318
12319static const struct bp_location_ops bp_location_ops =
12320{
12321 bp_location_dtor
12322};
12323
c1fc2657 12324/* Destructor for the breakpoint base class. */
348d480f 12325
c1fc2657 12326breakpoint::~breakpoint ()
348d480f 12327{
c1fc2657
SM
12328 xfree (this->cond_string);
12329 xfree (this->extra_string);
12330 xfree (this->filter);
348d480f
PA
12331}
12332
2060206e
PA
12333static struct bp_location *
12334base_breakpoint_allocate_location (struct breakpoint *self)
348d480f 12335{
5625a286 12336 return new bp_location (&bp_location_ops, self);
348d480f
PA
12337}
12338
2060206e
PA
12339static void
12340base_breakpoint_re_set (struct breakpoint *b)
12341{
12342 /* Nothing to re-set. */
12343}
12344
12345#define internal_error_pure_virtual_called() \
12346 gdb_assert_not_reached ("pure virtual function called")
12347
12348static int
12349base_breakpoint_insert_location (struct bp_location *bl)
12350{
12351 internal_error_pure_virtual_called ();
12352}
12353
12354static int
73971819
PA
12355base_breakpoint_remove_location (struct bp_location *bl,
12356 enum remove_bp_reason reason)
2060206e
PA
12357{
12358 internal_error_pure_virtual_called ();
12359}
12360
12361static int
12362base_breakpoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12363 const address_space *aspace,
09ac7c10
TT
12364 CORE_ADDR bp_addr,
12365 const struct target_waitstatus *ws)
2060206e
PA
12366{
12367 internal_error_pure_virtual_called ();
12368}
12369
12370static void
12371base_breakpoint_check_status (bpstat bs)
12372{
12373 /* Always stop. */
12374}
12375
12376/* A "works_in_software_mode" breakpoint_ops method that just internal
12377 errors. */
12378
12379static int
12380base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12381{
12382 internal_error_pure_virtual_called ();
12383}
12384
12385/* A "resources_needed" breakpoint_ops method that just internal
12386 errors. */
12387
12388static int
12389base_breakpoint_resources_needed (const struct bp_location *bl)
12390{
12391 internal_error_pure_virtual_called ();
12392}
12393
12394static enum print_stop_action
12395base_breakpoint_print_it (bpstat bs)
12396{
12397 internal_error_pure_virtual_called ();
12398}
12399
12400static void
12401base_breakpoint_print_one_detail (const struct breakpoint *self,
12402 struct ui_out *uiout)
12403{
12404 /* nothing */
12405}
12406
12407static void
12408base_breakpoint_print_mention (struct breakpoint *b)
12409{
12410 internal_error_pure_virtual_called ();
12411}
12412
12413static void
12414base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12415{
12416 internal_error_pure_virtual_called ();
12417}
12418
983af33b 12419static void
f00aae0f
KS
12420base_breakpoint_create_sals_from_location
12421 (const struct event_location *location,
12422 struct linespec_result *canonical,
12423 enum bptype type_wanted)
983af33b
SDJ
12424{
12425 internal_error_pure_virtual_called ();
12426}
12427
12428static void
12429base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12430 struct linespec_result *c,
e1e01040
PA
12431 gdb::unique_xmalloc_ptr<char> cond_string,
12432 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12433 enum bptype type_wanted,
12434 enum bpdisp disposition,
12435 int thread,
12436 int task, int ignore_count,
12437 const struct breakpoint_ops *o,
12438 int from_tty, int enabled,
44f238bb 12439 int internal, unsigned flags)
983af33b
SDJ
12440{
12441 internal_error_pure_virtual_called ();
12442}
12443
6c5b2ebe 12444static std::vector<symtab_and_line>
f00aae0f
KS
12445base_breakpoint_decode_location (struct breakpoint *b,
12446 const struct event_location *location,
6c5b2ebe 12447 struct program_space *search_pspace)
983af33b
SDJ
12448{
12449 internal_error_pure_virtual_called ();
12450}
12451
ab04a2af
TT
12452/* The default 'explains_signal' method. */
12453
47591c29 12454static int
427cd150 12455base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 12456{
47591c29 12457 return 1;
ab04a2af
TT
12458}
12459
9d6e6e84
HZ
12460/* The default "after_condition_true" method. */
12461
12462static void
12463base_breakpoint_after_condition_true (struct bpstats *bs)
12464{
12465 /* Nothing to do. */
12466}
12467
ab04a2af 12468struct breakpoint_ops base_breakpoint_ops =
2060206e 12469{
2060206e
PA
12470 base_breakpoint_allocate_location,
12471 base_breakpoint_re_set,
12472 base_breakpoint_insert_location,
12473 base_breakpoint_remove_location,
12474 base_breakpoint_breakpoint_hit,
12475 base_breakpoint_check_status,
12476 base_breakpoint_resources_needed,
12477 base_breakpoint_works_in_software_mode,
12478 base_breakpoint_print_it,
12479 NULL,
12480 base_breakpoint_print_one_detail,
12481 base_breakpoint_print_mention,
983af33b 12482 base_breakpoint_print_recreate,
5f700d83 12483 base_breakpoint_create_sals_from_location,
983af33b 12484 base_breakpoint_create_breakpoints_sal,
5f700d83 12485 base_breakpoint_decode_location,
9d6e6e84
HZ
12486 base_breakpoint_explains_signal,
12487 base_breakpoint_after_condition_true,
2060206e
PA
12488};
12489
12490/* Default breakpoint_ops methods. */
12491
12492static void
348d480f
PA
12493bkpt_re_set (struct breakpoint *b)
12494{
06edf0c0 12495 /* FIXME: is this still reachable? */
9ef9e6a6 12496 if (breakpoint_event_location_empty_p (b))
06edf0c0 12497 {
f00aae0f 12498 /* Anything without a location can't be re-set. */
348d480f 12499 delete_breakpoint (b);
06edf0c0 12500 return;
348d480f 12501 }
06edf0c0
PA
12502
12503 breakpoint_re_set_default (b);
348d480f
PA
12504}
12505
2060206e 12506static int
348d480f
PA
12507bkpt_insert_location (struct bp_location *bl)
12508{
cd6c3b4f
YQ
12509 CORE_ADDR addr = bl->target_info.reqstd_address;
12510
579c6ad9 12511 bl->target_info.kind = breakpoint_kind (bl, &addr);
cd6c3b4f
YQ
12512 bl->target_info.placed_address = addr;
12513
348d480f 12514 if (bl->loc_type == bp_loc_hardware_breakpoint)
7c16b83e 12515 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
348d480f 12516 else
7c16b83e 12517 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
348d480f
PA
12518}
12519
2060206e 12520static int
73971819 12521bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
348d480f
PA
12522{
12523 if (bl->loc_type == bp_loc_hardware_breakpoint)
12524 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12525 else
73971819 12526 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
348d480f
PA
12527}
12528
2060206e 12529static int
348d480f 12530bkpt_breakpoint_hit (const struct bp_location *bl,
bd522513 12531 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12532 const struct target_waitstatus *ws)
348d480f 12533{
09ac7c10 12534 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 12535 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
12536 return 0;
12537
348d480f
PA
12538 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12539 aspace, bp_addr))
12540 return 0;
12541
12542 if (overlay_debugging /* unmapped overlay section */
12543 && section_is_overlay (bl->section)
12544 && !section_is_mapped (bl->section))
12545 return 0;
12546
12547 return 1;
12548}
12549
cd1608cc
PA
12550static int
12551dprintf_breakpoint_hit (const struct bp_location *bl,
bd522513 12552 const address_space *aspace, CORE_ADDR bp_addr,
cd1608cc
PA
12553 const struct target_waitstatus *ws)
12554{
12555 if (dprintf_style == dprintf_style_agent
12556 && target_can_run_breakpoint_commands ())
12557 {
12558 /* An agent-style dprintf never causes a stop. If we see a trap
12559 for this address it must be for a breakpoint that happens to
12560 be set at the same address. */
12561 return 0;
12562 }
12563
12564 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
12565}
12566
2060206e 12567static int
348d480f
PA
12568bkpt_resources_needed (const struct bp_location *bl)
12569{
12570 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12571
12572 return 1;
12573}
12574
2060206e 12575static enum print_stop_action
348d480f
PA
12576bkpt_print_it (bpstat bs)
12577{
348d480f
PA
12578 struct breakpoint *b;
12579 const struct bp_location *bl;
001c8c33 12580 int bp_temp;
79a45e25 12581 struct ui_out *uiout = current_uiout;
348d480f
PA
12582
12583 gdb_assert (bs->bp_location_at != NULL);
12584
12585 bl = bs->bp_location_at;
12586 b = bs->breakpoint_at;
12587
001c8c33
PA
12588 bp_temp = b->disposition == disp_del;
12589 if (bl->address != bl->requested_address)
12590 breakpoint_adjustment_warning (bl->requested_address,
12591 bl->address,
12592 b->number, 1);
12593 annotate_breakpoint (b->number);
f303dbd6
PA
12594 maybe_print_thread_hit_breakpoint (uiout);
12595
001c8c33 12596 if (bp_temp)
112e8700 12597 uiout->text ("Temporary breakpoint ");
001c8c33 12598 else
112e8700
SM
12599 uiout->text ("Breakpoint ");
12600 if (uiout->is_mi_like_p ())
348d480f 12601 {
112e8700 12602 uiout->field_string ("reason",
001c8c33 12603 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 12604 uiout->field_string ("disp", bpdisp_text (b->disposition));
06edf0c0 12605 }
112e8700
SM
12606 uiout->field_int ("bkptno", b->number);
12607 uiout->text (", ");
06edf0c0 12608
001c8c33 12609 return PRINT_SRC_AND_LOC;
06edf0c0
PA
12610}
12611
2060206e 12612static void
06edf0c0
PA
12613bkpt_print_mention (struct breakpoint *b)
12614{
112e8700 12615 if (current_uiout->is_mi_like_p ())
06edf0c0
PA
12616 return;
12617
12618 switch (b->type)
12619 {
12620 case bp_breakpoint:
12621 case bp_gnu_ifunc_resolver:
12622 if (b->disposition == disp_del)
12623 printf_filtered (_("Temporary breakpoint"));
12624 else
12625 printf_filtered (_("Breakpoint"));
12626 printf_filtered (_(" %d"), b->number);
12627 if (b->type == bp_gnu_ifunc_resolver)
12628 printf_filtered (_(" at gnu-indirect-function resolver"));
12629 break;
12630 case bp_hardware_breakpoint:
12631 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
12632 break;
e7e0cddf
SS
12633 case bp_dprintf:
12634 printf_filtered (_("Dprintf %d"), b->number);
12635 break;
06edf0c0
PA
12636 }
12637
12638 say_where (b);
12639}
12640
2060206e 12641static void
06edf0c0
PA
12642bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12643{
12644 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12645 fprintf_unfiltered (fp, "tbreak");
12646 else if (tp->type == bp_breakpoint)
12647 fprintf_unfiltered (fp, "break");
12648 else if (tp->type == bp_hardware_breakpoint
12649 && tp->disposition == disp_del)
12650 fprintf_unfiltered (fp, "thbreak");
12651 else if (tp->type == bp_hardware_breakpoint)
12652 fprintf_unfiltered (fp, "hbreak");
12653 else
12654 internal_error (__FILE__, __LINE__,
12655 _("unhandled breakpoint type %d"), (int) tp->type);
12656
f00aae0f 12657 fprintf_unfiltered (fp, " %s",
d28cd78a 12658 event_location_to_string (tp->location.get ()));
f00aae0f
KS
12659
12660 /* Print out extra_string if this breakpoint is pending. It might
12661 contain, for example, conditions that were set by the user. */
12662 if (tp->loc == NULL && tp->extra_string != NULL)
12663 fprintf_unfiltered (fp, " %s", tp->extra_string);
12664
dd11a36c 12665 print_recreate_thread (tp, fp);
06edf0c0
PA
12666}
12667
983af33b 12668static void
f00aae0f
KS
12669bkpt_create_sals_from_location (const struct event_location *location,
12670 struct linespec_result *canonical,
12671 enum bptype type_wanted)
983af33b 12672{
f00aae0f 12673 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12674}
12675
12676static void
12677bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
12678 struct linespec_result *canonical,
e1e01040
PA
12679 gdb::unique_xmalloc_ptr<char> cond_string,
12680 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12681 enum bptype type_wanted,
12682 enum bpdisp disposition,
12683 int thread,
12684 int task, int ignore_count,
12685 const struct breakpoint_ops *ops,
12686 int from_tty, int enabled,
44f238bb 12687 int internal, unsigned flags)
983af33b 12688{
023fa29b 12689 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
12690 std::move (cond_string),
12691 std::move (extra_string),
e7e0cddf 12692 type_wanted,
983af33b
SDJ
12693 disposition, thread, task,
12694 ignore_count, ops, from_tty,
44f238bb 12695 enabled, internal, flags);
983af33b
SDJ
12696}
12697
6c5b2ebe 12698static std::vector<symtab_and_line>
f00aae0f
KS
12699bkpt_decode_location (struct breakpoint *b,
12700 const struct event_location *location,
6c5b2ebe 12701 struct program_space *search_pspace)
983af33b 12702{
6c5b2ebe 12703 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
12704}
12705
06edf0c0
PA
12706/* Virtual table for internal breakpoints. */
12707
12708static void
12709internal_bkpt_re_set (struct breakpoint *b)
12710{
12711 switch (b->type)
12712 {
12713 /* Delete overlay event and longjmp master breakpoints; they
12714 will be reset later by breakpoint_re_set. */
12715 case bp_overlay_event:
12716 case bp_longjmp_master:
12717 case bp_std_terminate_master:
12718 case bp_exception_master:
12719 delete_breakpoint (b);
12720 break;
12721
12722 /* This breakpoint is special, it's set up when the inferior
12723 starts and we really don't want to touch it. */
12724 case bp_shlib_event:
12725
12726 /* Like bp_shlib_event, this breakpoint type is special. Once
12727 it is set up, we do not want to touch it. */
12728 case bp_thread_event:
12729 break;
12730 }
12731}
12732
12733static void
12734internal_bkpt_check_status (bpstat bs)
12735{
a9b3a50f
PA
12736 if (bs->breakpoint_at->type == bp_shlib_event)
12737 {
12738 /* If requested, stop when the dynamic linker notifies GDB of
12739 events. This allows the user to get control and place
12740 breakpoints in initializer routines for dynamically loaded
12741 objects (among other things). */
12742 bs->stop = stop_on_solib_events;
12743 bs->print = stop_on_solib_events;
12744 }
12745 else
12746 bs->stop = 0;
06edf0c0
PA
12747}
12748
12749static enum print_stop_action
12750internal_bkpt_print_it (bpstat bs)
12751{
06edf0c0 12752 struct breakpoint *b;
06edf0c0 12753
06edf0c0
PA
12754 b = bs->breakpoint_at;
12755
06edf0c0
PA
12756 switch (b->type)
12757 {
348d480f
PA
12758 case bp_shlib_event:
12759 /* Did we stop because the user set the stop_on_solib_events
12760 variable? (If so, we report this as a generic, "Stopped due
12761 to shlib event" message.) */
edcc5120 12762 print_solib_event (0);
348d480f
PA
12763 break;
12764
12765 case bp_thread_event:
12766 /* Not sure how we will get here.
12767 GDB should not stop for these breakpoints. */
12768 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12769 break;
12770
12771 case bp_overlay_event:
12772 /* By analogy with the thread event, GDB should not stop for these. */
12773 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
12774 break;
12775
12776 case bp_longjmp_master:
12777 /* These should never be enabled. */
12778 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
12779 break;
12780
12781 case bp_std_terminate_master:
12782 /* These should never be enabled. */
12783 printf_filtered (_("std::terminate Master Breakpoint: "
12784 "gdb should not stop!\n"));
348d480f
PA
12785 break;
12786
12787 case bp_exception_master:
12788 /* These should never be enabled. */
12789 printf_filtered (_("Exception Master Breakpoint: "
12790 "gdb should not stop!\n"));
06edf0c0
PA
12791 break;
12792 }
12793
001c8c33 12794 return PRINT_NOTHING;
06edf0c0
PA
12795}
12796
12797static void
12798internal_bkpt_print_mention (struct breakpoint *b)
12799{
12800 /* Nothing to mention. These breakpoints are internal. */
12801}
12802
06edf0c0
PA
12803/* Virtual table for momentary breakpoints */
12804
12805static void
12806momentary_bkpt_re_set (struct breakpoint *b)
12807{
12808 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 12809 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
12810 Otherwise these should have been blown away via the cleanup chain
12811 or by breakpoint_init_inferior when we rerun the executable. */
12812}
12813
12814static void
12815momentary_bkpt_check_status (bpstat bs)
12816{
12817 /* Nothing. The point of these breakpoints is causing a stop. */
12818}
12819
12820static enum print_stop_action
12821momentary_bkpt_print_it (bpstat bs)
12822{
001c8c33 12823 return PRINT_UNKNOWN;
348d480f
PA
12824}
12825
06edf0c0
PA
12826static void
12827momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 12828{
06edf0c0 12829 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
12830}
12831
e2e4d78b
JK
12832/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
12833
12834 It gets cleared already on the removal of the first one of such placed
12835 breakpoints. This is OK as they get all removed altogether. */
12836
c1fc2657 12837longjmp_breakpoint::~longjmp_breakpoint ()
e2e4d78b 12838{
c1fc2657 12839 thread_info *tp = find_thread_global_id (this->thread);
e2e4d78b 12840
c1fc2657 12841 if (tp != NULL)
e2e4d78b 12842 tp->initiating_frame = null_frame_id;
e2e4d78b
JK
12843}
12844
55aa24fb
SDJ
12845/* Specific methods for probe breakpoints. */
12846
12847static int
12848bkpt_probe_insert_location (struct bp_location *bl)
12849{
12850 int v = bkpt_insert_location (bl);
12851
12852 if (v == 0)
12853 {
12854 /* The insertion was successful, now let's set the probe's semaphore
12855 if needed. */
935676c9 12856 bl->probe.prob->set_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb
SDJ
12857 }
12858
12859 return v;
12860}
12861
12862static int
73971819
PA
12863bkpt_probe_remove_location (struct bp_location *bl,
12864 enum remove_bp_reason reason)
55aa24fb
SDJ
12865{
12866 /* Let's clear the semaphore before removing the location. */
935676c9 12867 bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch);
55aa24fb 12868
73971819 12869 return bkpt_remove_location (bl, reason);
55aa24fb
SDJ
12870}
12871
12872static void
f00aae0f 12873bkpt_probe_create_sals_from_location (const struct event_location *location,
5f700d83 12874 struct linespec_result *canonical,
f00aae0f 12875 enum bptype type_wanted)
55aa24fb
SDJ
12876{
12877 struct linespec_sals lsal;
12878
c2f4122d 12879 lsal.sals = parse_probes (location, NULL, canonical);
8e9e35b1
TT
12880 lsal.canonical
12881 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 12882 canonical->lsals.push_back (std::move (lsal));
55aa24fb
SDJ
12883}
12884
6c5b2ebe 12885static std::vector<symtab_and_line>
f00aae0f
KS
12886bkpt_probe_decode_location (struct breakpoint *b,
12887 const struct event_location *location,
6c5b2ebe 12888 struct program_space *search_pspace)
55aa24fb 12889{
6c5b2ebe
PA
12890 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL);
12891 if (sals.empty ())
55aa24fb 12892 error (_("probe not found"));
6c5b2ebe 12893 return sals;
55aa24fb
SDJ
12894}
12895
348d480f 12896/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 12897
348d480f
PA
12898static void
12899tracepoint_re_set (struct breakpoint *b)
12900{
12901 breakpoint_re_set_default (b);
12902}
876fa593 12903
348d480f
PA
12904static int
12905tracepoint_breakpoint_hit (const struct bp_location *bl,
bd522513 12906 const address_space *aspace, CORE_ADDR bp_addr,
09ac7c10 12907 const struct target_waitstatus *ws)
348d480f
PA
12908{
12909 /* By definition, the inferior does not report stops at
12910 tracepoints. */
12911 return 0;
74960c60
VP
12912}
12913
12914static void
348d480f
PA
12915tracepoint_print_one_detail (const struct breakpoint *self,
12916 struct ui_out *uiout)
74960c60 12917{
d9b3f62e
PA
12918 struct tracepoint *tp = (struct tracepoint *) self;
12919 if (tp->static_trace_marker_id)
348d480f
PA
12920 {
12921 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 12922
112e8700
SM
12923 uiout->text ("\tmarker id is ");
12924 uiout->field_string ("static-tracepoint-marker-string-id",
d9b3f62e 12925 tp->static_trace_marker_id);
112e8700 12926 uiout->text ("\n");
348d480f 12927 }
0d381245
VP
12928}
12929
a474d7c2 12930static void
348d480f 12931tracepoint_print_mention (struct breakpoint *b)
a474d7c2 12932{
112e8700 12933 if (current_uiout->is_mi_like_p ())
348d480f 12934 return;
cc59ec59 12935
348d480f
PA
12936 switch (b->type)
12937 {
12938 case bp_tracepoint:
12939 printf_filtered (_("Tracepoint"));
12940 printf_filtered (_(" %d"), b->number);
12941 break;
12942 case bp_fast_tracepoint:
12943 printf_filtered (_("Fast tracepoint"));
12944 printf_filtered (_(" %d"), b->number);
12945 break;
12946 case bp_static_tracepoint:
12947 printf_filtered (_("Static tracepoint"));
12948 printf_filtered (_(" %d"), b->number);
12949 break;
12950 default:
12951 internal_error (__FILE__, __LINE__,
12952 _("unhandled tracepoint type %d"), (int) b->type);
12953 }
12954
12955 say_where (b);
a474d7c2
PA
12956}
12957
348d480f 12958static void
d9b3f62e 12959tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 12960{
d9b3f62e
PA
12961 struct tracepoint *tp = (struct tracepoint *) self;
12962
12963 if (self->type == bp_fast_tracepoint)
348d480f 12964 fprintf_unfiltered (fp, "ftrace");
c93e8391 12965 else if (self->type == bp_static_tracepoint)
348d480f 12966 fprintf_unfiltered (fp, "strace");
d9b3f62e 12967 else if (self->type == bp_tracepoint)
348d480f
PA
12968 fprintf_unfiltered (fp, "trace");
12969 else
12970 internal_error (__FILE__, __LINE__,
d9b3f62e 12971 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 12972
f00aae0f 12973 fprintf_unfiltered (fp, " %s",
d28cd78a 12974 event_location_to_string (self->location.get ()));
d9b3f62e
PA
12975 print_recreate_thread (self, fp);
12976
12977 if (tp->pass_count)
12978 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
12979}
12980
983af33b 12981static void
f00aae0f
KS
12982tracepoint_create_sals_from_location (const struct event_location *location,
12983 struct linespec_result *canonical,
12984 enum bptype type_wanted)
983af33b 12985{
f00aae0f 12986 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
12987}
12988
12989static void
12990tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12991 struct linespec_result *canonical,
e1e01040
PA
12992 gdb::unique_xmalloc_ptr<char> cond_string,
12993 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
12994 enum bptype type_wanted,
12995 enum bpdisp disposition,
12996 int thread,
12997 int task, int ignore_count,
12998 const struct breakpoint_ops *ops,
12999 int from_tty, int enabled,
44f238bb 13000 int internal, unsigned flags)
983af33b 13001{
023fa29b 13002 create_breakpoints_sal_default (gdbarch, canonical,
e1e01040
PA
13003 std::move (cond_string),
13004 std::move (extra_string),
e7e0cddf 13005 type_wanted,
983af33b
SDJ
13006 disposition, thread, task,
13007 ignore_count, ops, from_tty,
44f238bb 13008 enabled, internal, flags);
983af33b
SDJ
13009}
13010
6c5b2ebe 13011static std::vector<symtab_and_line>
f00aae0f
KS
13012tracepoint_decode_location (struct breakpoint *b,
13013 const struct event_location *location,
6c5b2ebe 13014 struct program_space *search_pspace)
983af33b 13015{
6c5b2ebe 13016 return decode_location_default (b, location, search_pspace);
983af33b
SDJ
13017}
13018
2060206e 13019struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 13020
55aa24fb
SDJ
13021/* The breakpoint_ops structure to be use on tracepoints placed in a
13022 static probe. */
13023
13024static void
f00aae0f
KS
13025tracepoint_probe_create_sals_from_location
13026 (const struct event_location *location,
13027 struct linespec_result *canonical,
13028 enum bptype type_wanted)
55aa24fb
SDJ
13029{
13030 /* We use the same method for breakpoint on probes. */
f00aae0f 13031 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
55aa24fb
SDJ
13032}
13033
6c5b2ebe 13034static std::vector<symtab_and_line>
f00aae0f
KS
13035tracepoint_probe_decode_location (struct breakpoint *b,
13036 const struct event_location *location,
6c5b2ebe 13037 struct program_space *search_pspace)
55aa24fb
SDJ
13038{
13039 /* We use the same method for breakpoint on probes. */
6c5b2ebe 13040 return bkpt_probe_decode_location (b, location, search_pspace);
55aa24fb
SDJ
13041}
13042
13043static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13044
5c2b4418
HZ
13045/* Dprintf breakpoint_ops methods. */
13046
13047static void
13048dprintf_re_set (struct breakpoint *b)
13049{
13050 breakpoint_re_set_default (b);
13051
f00aae0f
KS
13052 /* extra_string should never be non-NULL for dprintf. */
13053 gdb_assert (b->extra_string != NULL);
5c2b4418
HZ
13054
13055 /* 1 - connect to target 1, that can run breakpoint commands.
13056 2 - create a dprintf, which resolves fine.
13057 3 - disconnect from target 1
13058 4 - connect to target 2, that can NOT run breakpoint commands.
13059
13060 After steps #3/#4, you'll want the dprintf command list to
13061 be updated, because target 1 and 2 may well return different
13062 answers for target_can_run_breakpoint_commands().
13063 Given absence of finer grained resetting, we get to do
13064 it all the time. */
13065 if (b->extra_string != NULL)
13066 update_dprintf_command_list (b);
13067}
13068
2d9442cc
HZ
13069/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13070
13071static void
13072dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13073{
f00aae0f 13074 fprintf_unfiltered (fp, "dprintf %s,%s",
d28cd78a 13075 event_location_to_string (tp->location.get ()),
2d9442cc
HZ
13076 tp->extra_string);
13077 print_recreate_thread (tp, fp);
13078}
13079
9d6e6e84
HZ
13080/* Implement the "after_condition_true" breakpoint_ops method for
13081 dprintf.
13082
13083 dprintf's are implemented with regular commands in their command
13084 list, but we run the commands here instead of before presenting the
13085 stop to the user, as dprintf's don't actually cause a stop. This
13086 also makes it so that the commands of multiple dprintfs at the same
13087 address are all handled. */
13088
13089static void
13090dprintf_after_condition_true (struct bpstats *bs)
13091{
04afa70c 13092 struct bpstats tmp_bs;
9d6e6e84
HZ
13093 struct bpstats *tmp_bs_p = &tmp_bs;
13094
13095 /* dprintf's never cause a stop. This wasn't set in the
13096 check_status hook instead because that would make the dprintf's
13097 condition not be evaluated. */
13098 bs->stop = 0;
13099
13100 /* Run the command list here. Take ownership of it instead of
13101 copying. We never want these commands to run later in
13102 bpstat_do_actions, if a breakpoint that causes a stop happens to
13103 be set at same address as this dprintf, or even if running the
13104 commands here throws. */
13105 tmp_bs.commands = bs->commands;
13106 bs->commands = NULL;
9d6e6e84
HZ
13107
13108 bpstat_do_actions_1 (&tmp_bs_p);
13109
13110 /* 'tmp_bs.commands' will usually be NULL by now, but
13111 bpstat_do_actions_1 may return early without processing the whole
13112 list. */
9d6e6e84
HZ
13113}
13114
983af33b
SDJ
13115/* The breakpoint_ops structure to be used on static tracepoints with
13116 markers (`-m'). */
13117
13118static void
f00aae0f 13119strace_marker_create_sals_from_location (const struct event_location *location,
5f700d83 13120 struct linespec_result *canonical,
f00aae0f 13121 enum bptype type_wanted)
983af33b
SDJ
13122{
13123 struct linespec_sals lsal;
f00aae0f 13124 const char *arg_start, *arg;
983af33b 13125
a20714ff 13126 arg = arg_start = get_linespec_location (location)->spec_string;
f00aae0f 13127 lsal.sals = decode_static_tracepoint_spec (&arg);
983af33b 13128
f2fc3015
TT
13129 std::string str (arg_start, arg - arg_start);
13130 const char *ptr = str.c_str ();
a20714ff
PA
13131 canonical->location
13132 = new_linespec_location (&ptr, symbol_name_match_type::FULL);
983af33b 13133
8e9e35b1
TT
13134 lsal.canonical
13135 = xstrdup (event_location_to_string (canonical->location.get ()));
6c5b2ebe 13136 canonical->lsals.push_back (std::move (lsal));
983af33b
SDJ
13137}
13138
13139static void
13140strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13141 struct linespec_result *canonical,
e1e01040
PA
13142 gdb::unique_xmalloc_ptr<char> cond_string,
13143 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
13144 enum bptype type_wanted,
13145 enum bpdisp disposition,
13146 int thread,
13147 int task, int ignore_count,
13148 const struct breakpoint_ops *ops,
13149 int from_tty, int enabled,
44f238bb 13150 int internal, unsigned flags)
983af33b 13151{
6c5b2ebe 13152 const linespec_sals &lsal = canonical->lsals[0];
983af33b
SDJ
13153
13154 /* If the user is creating a static tracepoint by marker id
13155 (strace -m MARKER_ID), then store the sals index, so that
13156 breakpoint_re_set can try to match up which of the newly
13157 found markers corresponds to this one, and, don't try to
13158 expand multiple locations for each sal, given than SALS
13159 already should contain all sals for MARKER_ID. */
13160
6c5b2ebe 13161 for (size_t i = 0; i < lsal.sals.size (); i++)
983af33b 13162 {
6c5b2ebe
PA
13163 event_location_up location
13164 = copy_event_location (canonical->location.get ());
983af33b 13165
b270e6f9 13166 std::unique_ptr<tracepoint> tp (new tracepoint ());
6c5b2ebe 13167 init_breakpoint_sal (tp.get (), gdbarch, lsal.sals[i],
ffc2605c 13168 std::move (location), NULL,
e1e01040
PA
13169 std::move (cond_string),
13170 std::move (extra_string),
e7e0cddf 13171 type_wanted, disposition,
983af33b 13172 thread, task, ignore_count, ops,
44f238bb 13173 from_tty, enabled, internal, flags,
983af33b
SDJ
13174 canonical->special_display);
13175 /* Given that its possible to have multiple markers with
13176 the same string id, if the user is creating a static
13177 tracepoint by marker id ("strace -m MARKER_ID"), then
13178 store the sals index, so that breakpoint_re_set can
13179 try to match up which of the newly found markers
13180 corresponds to this one */
13181 tp->static_trace_marker_id_idx = i;
13182
b270e6f9 13183 install_breakpoint (internal, std::move (tp), 0);
983af33b
SDJ
13184 }
13185}
13186
6c5b2ebe 13187static std::vector<symtab_and_line>
f00aae0f
KS
13188strace_marker_decode_location (struct breakpoint *b,
13189 const struct event_location *location,
6c5b2ebe 13190 struct program_space *search_pspace)
983af33b
SDJ
13191{
13192 struct tracepoint *tp = (struct tracepoint *) b;
a20714ff 13193 const char *s = get_linespec_location (location)->spec_string;
983af33b 13194
6c5b2ebe
PA
13195 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s);
13196 if (sals.size () > tp->static_trace_marker_id_idx)
983af33b 13197 {
6c5b2ebe
PA
13198 sals[0] = sals[tp->static_trace_marker_id_idx];
13199 sals.resize (1);
13200 return sals;
983af33b
SDJ
13201 }
13202 else
13203 error (_("marker %s not found"), tp->static_trace_marker_id);
13204}
13205
13206static struct breakpoint_ops strace_marker_breakpoint_ops;
13207
13208static int
13209strace_marker_p (struct breakpoint *b)
13210{
13211 return b->ops == &strace_marker_breakpoint_ops;
13212}
13213
53a5351d 13214/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 13215 structures. */
c906108c
SS
13216
13217void
fba45db2 13218delete_breakpoint (struct breakpoint *bpt)
c906108c 13219{
52f0bd74 13220 struct breakpoint *b;
c906108c 13221
8a3fe4f8 13222 gdb_assert (bpt != NULL);
c906108c 13223
4a64f543
MS
13224 /* Has this bp already been deleted? This can happen because
13225 multiple lists can hold pointers to bp's. bpstat lists are
13226 especial culprits.
13227
13228 One example of this happening is a watchpoint's scope bp. When
13229 the scope bp triggers, we notice that the watchpoint is out of
13230 scope, and delete it. We also delete its scope bp. But the
13231 scope bp is marked "auto-deleting", and is already on a bpstat.
13232 That bpstat is then checked for auto-deleting bp's, which are
13233 deleted.
13234
13235 A real solution to this problem might involve reference counts in
13236 bp's, and/or giving them pointers back to their referencing
13237 bpstat's, and teaching delete_breakpoint to only free a bp's
13238 storage when no more references were extent. A cheaper bandaid
13239 was chosen. */
c906108c
SS
13240 if (bpt->type == bp_none)
13241 return;
13242
4a64f543
MS
13243 /* At least avoid this stale reference until the reference counting
13244 of breakpoints gets resolved. */
d0fb5eae 13245 if (bpt->related_breakpoint != bpt)
e5a0a904 13246 {
d0fb5eae 13247 struct breakpoint *related;
3a5c3e22 13248 struct watchpoint *w;
d0fb5eae
JK
13249
13250 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 13251 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 13252 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
13253 w = (struct watchpoint *) bpt;
13254 else
13255 w = NULL;
13256 if (w != NULL)
13257 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
13258
13259 /* Unlink bpt from the bpt->related_breakpoint ring. */
13260 for (related = bpt; related->related_breakpoint != bpt;
13261 related = related->related_breakpoint);
13262 related->related_breakpoint = bpt->related_breakpoint;
13263 bpt->related_breakpoint = bpt;
e5a0a904
JK
13264 }
13265
a9634178
TJB
13266 /* watch_command_1 creates a watchpoint but only sets its number if
13267 update_watchpoint succeeds in creating its bp_locations. If there's
13268 a problem in that process, we'll be asked to delete the half-created
13269 watchpoint. In that case, don't announce the deletion. */
13270 if (bpt->number)
13271 observer_notify_breakpoint_deleted (bpt);
c906108c 13272
c906108c
SS
13273 if (breakpoint_chain == bpt)
13274 breakpoint_chain = bpt->next;
13275
c906108c
SS
13276 ALL_BREAKPOINTS (b)
13277 if (b->next == bpt)
c5aa993b
JM
13278 {
13279 b->next = bpt->next;
13280 break;
13281 }
c906108c 13282
f431efe5
PA
13283 /* Be sure no bpstat's are pointing at the breakpoint after it's
13284 been freed. */
13285 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 13286 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
13287 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13288 commands are associated with the bpstat; if we remove it here,
13289 then the later call to bpstat_do_actions (&stop_bpstat); in
13290 event-top.c won't do anything, and temporary breakpoints with
13291 commands won't work. */
13292
13293 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13294
4a64f543
MS
13295 /* Now that breakpoint is removed from breakpoint list, update the
13296 global location list. This will remove locations that used to
13297 belong to this breakpoint. Do this before freeing the breakpoint
13298 itself, since remove_breakpoint looks at location's owner. It
13299 might be better design to have location completely
13300 self-contained, but it's not the case now. */
44702360 13301 update_global_location_list (UGLL_DONT_INSERT);
74960c60 13302
4a64f543
MS
13303 /* On the chance that someone will soon try again to delete this
13304 same bp, we mark it as deleted before freeing its storage. */
c906108c 13305 bpt->type = bp_none;
4d01a485 13306 delete bpt;
c906108c
SS
13307}
13308
51be5b68
PA
13309/* Iterator function to call a user-provided callback function once
13310 for each of B and its related breakpoints. */
13311
13312static void
13313iterate_over_related_breakpoints (struct breakpoint *b,
48649e1b 13314 gdb::function_view<void (breakpoint *)> function)
51be5b68
PA
13315{
13316 struct breakpoint *related;
13317
13318 related = b;
13319 do
13320 {
13321 struct breakpoint *next;
13322
13323 /* FUNCTION may delete RELATED. */
13324 next = related->related_breakpoint;
13325
13326 if (next == related)
13327 {
13328 /* RELATED is the last ring entry. */
48649e1b 13329 function (related);
51be5b68
PA
13330
13331 /* FUNCTION may have deleted it, so we'd never reach back to
13332 B. There's nothing left to do anyway, so just break
13333 out. */
13334 break;
13335 }
13336 else
48649e1b 13337 function (related);
51be5b68
PA
13338
13339 related = next;
13340 }
13341 while (related != b);
13342}
95a42b64 13343
4495129a 13344static void
981a3fb3 13345delete_command (const char *arg, int from_tty)
c906108c 13346{
35df4500 13347 struct breakpoint *b, *b_tmp;
c906108c 13348
ea9365bb
TT
13349 dont_repeat ();
13350
c906108c
SS
13351 if (arg == 0)
13352 {
13353 int breaks_to_delete = 0;
13354
46c6471b
PA
13355 /* Delete all breakpoints if no argument. Do not delete
13356 internal breakpoints, these have to be deleted with an
13357 explicit breakpoint number argument. */
c5aa993b 13358 ALL_BREAKPOINTS (b)
46c6471b 13359 if (user_breakpoint_p (b))
973d738b
DJ
13360 {
13361 breaks_to_delete = 1;
13362 break;
13363 }
c906108c
SS
13364
13365 /* Ask user only if there are some breakpoints to delete. */
13366 if (!from_tty
e2e0b3e5 13367 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 13368 {
35df4500 13369 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 13370 if (user_breakpoint_p (b))
c5aa993b 13371 delete_breakpoint (b);
c906108c
SS
13372 }
13373 }
13374 else
48649e1b
TT
13375 map_breakpoint_numbers
13376 (arg, [&] (breakpoint *b)
13377 {
13378 iterate_over_related_breakpoints (b, delete_breakpoint);
13379 });
c906108c
SS
13380}
13381
c2f4122d
PA
13382/* Return true if all locations of B bound to PSPACE are pending. If
13383 PSPACE is NULL, all locations of all program spaces are
13384 considered. */
13385
0d381245 13386static int
c2f4122d 13387all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
fe3f5fa8 13388{
c2f4122d
PA
13389 struct bp_location *loc;
13390
13391 for (loc = b->loc; loc != NULL; loc = loc->next)
13392 if ((pspace == NULL
13393 || loc->pspace == pspace)
13394 && !loc->shlib_disabled
8645ff69 13395 && !loc->pspace->executing_startup)
0d381245
VP
13396 return 0;
13397 return 1;
fe3f5fa8
VP
13398}
13399
776592bf
DE
13400/* Subroutine of update_breakpoint_locations to simplify it.
13401 Return non-zero if multiple fns in list LOC have the same name.
13402 Null names are ignored. */
13403
13404static int
13405ambiguous_names_p (struct bp_location *loc)
13406{
13407 struct bp_location *l;
13408 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
13409 (int (*) (const void *,
13410 const void *)) streq,
776592bf
DE
13411 NULL, xcalloc, xfree);
13412
13413 for (l = loc; l != NULL; l = l->next)
13414 {
13415 const char **slot;
13416 const char *name = l->function_name;
13417
13418 /* Allow for some names to be NULL, ignore them. */
13419 if (name == NULL)
13420 continue;
13421
13422 slot = (const char **) htab_find_slot (htab, (const void *) name,
13423 INSERT);
4a64f543
MS
13424 /* NOTE: We can assume slot != NULL here because xcalloc never
13425 returns NULL. */
776592bf
DE
13426 if (*slot != NULL)
13427 {
13428 htab_delete (htab);
13429 return 1;
13430 }
13431 *slot = name;
13432 }
13433
13434 htab_delete (htab);
13435 return 0;
13436}
13437
0fb4aa4b
PA
13438/* When symbols change, it probably means the sources changed as well,
13439 and it might mean the static tracepoint markers are no longer at
13440 the same address or line numbers they used to be at last we
13441 checked. Losing your static tracepoints whenever you rebuild is
13442 undesirable. This function tries to resync/rematch gdb static
13443 tracepoints with the markers on the target, for static tracepoints
13444 that have not been set by marker id. Static tracepoint that have
13445 been set by marker id are reset by marker id in breakpoint_re_set.
13446 The heuristic is:
13447
13448 1) For a tracepoint set at a specific address, look for a marker at
13449 the old PC. If one is found there, assume to be the same marker.
13450 If the name / string id of the marker found is different from the
13451 previous known name, assume that means the user renamed the marker
13452 in the sources, and output a warning.
13453
13454 2) For a tracepoint set at a given line number, look for a marker
13455 at the new address of the old line number. If one is found there,
13456 assume to be the same marker. If the name / string id of the
13457 marker found is different from the previous known name, assume that
13458 means the user renamed the marker in the sources, and output a
13459 warning.
13460
13461 3) If a marker is no longer found at the same address or line, it
13462 may mean the marker no longer exists. But it may also just mean
13463 the code changed a bit. Maybe the user added a few lines of code
13464 that made the marker move up or down (in line number terms). Ask
13465 the target for info about the marker with the string id as we knew
13466 it. If found, update line number and address in the matching
13467 static tracepoint. This will get confused if there's more than one
13468 marker with the same ID (possible in UST, although unadvised
13469 precisely because it confuses tools). */
13470
13471static struct symtab_and_line
13472update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13473{
d9b3f62e 13474 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
13475 struct static_tracepoint_marker marker;
13476 CORE_ADDR pc;
0fb4aa4b
PA
13477
13478 pc = sal.pc;
13479 if (sal.line)
13480 find_line_pc (sal.symtab, sal.line, &pc);
13481
13482 if (target_static_tracepoint_marker_at (pc, &marker))
13483 {
d9b3f62e 13484 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
0fb4aa4b
PA
13485 warning (_("static tracepoint %d changed probed marker from %s to %s"),
13486 b->number,
d9b3f62e 13487 tp->static_trace_marker_id, marker.str_id);
0fb4aa4b 13488
d9b3f62e
PA
13489 xfree (tp->static_trace_marker_id);
13490 tp->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
13491 release_static_tracepoint_marker (&marker);
13492
13493 return sal;
13494 }
13495
13496 /* Old marker wasn't found on target at lineno. Try looking it up
13497 by string ID. */
13498 if (!sal.explicit_pc
13499 && sal.line != 0
13500 && sal.symtab != NULL
d9b3f62e 13501 && tp->static_trace_marker_id != NULL)
0fb4aa4b
PA
13502 {
13503 VEC(static_tracepoint_marker_p) *markers;
13504
13505 markers
d9b3f62e 13506 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
0fb4aa4b
PA
13507
13508 if (!VEC_empty(static_tracepoint_marker_p, markers))
13509 {
0fb4aa4b 13510 struct symbol *sym;
80e1d417 13511 struct static_tracepoint_marker *tpmarker;
79a45e25 13512 struct ui_out *uiout = current_uiout;
67994074 13513 struct explicit_location explicit_loc;
0fb4aa4b 13514
80e1d417 13515 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
0fb4aa4b 13516
d9b3f62e 13517 xfree (tp->static_trace_marker_id);
80e1d417 13518 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
0fb4aa4b
PA
13519
13520 warning (_("marker for static tracepoint %d (%s) not "
13521 "found at previous line number"),
d9b3f62e 13522 b->number, tp->static_trace_marker_id);
0fb4aa4b 13523
51abb421 13524 symtab_and_line sal2 = find_pc_line (tpmarker->address, 0);
80e1d417 13525 sym = find_pc_sect_function (tpmarker->address, NULL);
112e8700 13526 uiout->text ("Now in ");
0fb4aa4b
PA
13527 if (sym)
13528 {
112e8700
SM
13529 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
13530 uiout->text (" at ");
0fb4aa4b 13531 }
112e8700 13532 uiout->field_string ("file",
05cba821 13533 symtab_to_filename_for_display (sal2.symtab));
112e8700 13534 uiout->text (":");
0fb4aa4b 13535
112e8700 13536 if (uiout->is_mi_like_p ())
0fb4aa4b 13537 {
0b0865da 13538 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 13539
112e8700 13540 uiout->field_string ("fullname", fullname);
0fb4aa4b
PA
13541 }
13542
112e8700
SM
13543 uiout->field_int ("line", sal2.line);
13544 uiout->text ("\n");
0fb4aa4b 13545
80e1d417 13546 b->loc->line_number = sal2.line;
2f202fde 13547 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b 13548
d28cd78a 13549 b->location.reset (NULL);
67994074
KS
13550 initialize_explicit_location (&explicit_loc);
13551 explicit_loc.source_filename
00e52e53 13552 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
67994074
KS
13553 explicit_loc.line_offset.offset = b->loc->line_number;
13554 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
d28cd78a 13555 b->location = new_explicit_location (&explicit_loc);
0fb4aa4b
PA
13556
13557 /* Might be nice to check if function changed, and warn if
13558 so. */
13559
80e1d417 13560 release_static_tracepoint_marker (tpmarker);
0fb4aa4b
PA
13561 }
13562 }
13563 return sal;
13564}
13565
8d3788bd
VP
13566/* Returns 1 iff locations A and B are sufficiently same that
13567 we don't need to report breakpoint as changed. */
13568
13569static int
13570locations_are_equal (struct bp_location *a, struct bp_location *b)
13571{
13572 while (a && b)
13573 {
13574 if (a->address != b->address)
13575 return 0;
13576
13577 if (a->shlib_disabled != b->shlib_disabled)
13578 return 0;
13579
13580 if (a->enabled != b->enabled)
13581 return 0;
13582
13583 a = a->next;
13584 b = b->next;
13585 }
13586
13587 if ((a == NULL) != (b == NULL))
13588 return 0;
13589
13590 return 1;
13591}
13592
c2f4122d
PA
13593/* Split all locations of B that are bound to PSPACE out of B's
13594 location list to a separate list and return that list's head. If
13595 PSPACE is NULL, hoist out all locations of B. */
13596
13597static struct bp_location *
13598hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
13599{
13600 struct bp_location head;
13601 struct bp_location *i = b->loc;
13602 struct bp_location **i_link = &b->loc;
13603 struct bp_location *hoisted = &head;
13604
13605 if (pspace == NULL)
13606 {
13607 i = b->loc;
13608 b->loc = NULL;
13609 return i;
13610 }
13611
13612 head.next = NULL;
13613
13614 while (i != NULL)
13615 {
13616 if (i->pspace == pspace)
13617 {
13618 *i_link = i->next;
13619 i->next = NULL;
13620 hoisted->next = i;
13621 hoisted = i;
13622 }
13623 else
13624 i_link = &i->next;
13625 i = *i_link;
13626 }
13627
13628 return head.next;
13629}
13630
13631/* Create new breakpoint locations for B (a hardware or software
13632 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
13633 zero, then B is a ranged breakpoint. Only recreates locations for
13634 FILTER_PSPACE. Locations of other program spaces are left
13635 untouched. */
f1310107 13636
0e30163f 13637void
0d381245 13638update_breakpoint_locations (struct breakpoint *b,
c2f4122d 13639 struct program_space *filter_pspace,
6c5b2ebe
PA
13640 gdb::array_view<const symtab_and_line> sals,
13641 gdb::array_view<const symtab_and_line> sals_end)
fe3f5fa8 13642{
c2f4122d 13643 struct bp_location *existing_locations;
0d381245 13644
6c5b2ebe 13645 if (!sals_end.empty () && (sals.size () != 1 || sals_end.size () != 1))
f8eba3c6
TT
13646 {
13647 /* Ranged breakpoints have only one start location and one end
13648 location. */
13649 b->enable_state = bp_disabled;
f8eba3c6
TT
13650 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
13651 "multiple locations found\n"),
13652 b->number);
13653 return;
13654 }
f1310107 13655
4a64f543
MS
13656 /* If there's no new locations, and all existing locations are
13657 pending, don't do anything. This optimizes the common case where
13658 all locations are in the same shared library, that was unloaded.
13659 We'd like to retain the location, so that when the library is
13660 loaded again, we don't loose the enabled/disabled status of the
13661 individual locations. */
6c5b2ebe 13662 if (all_locations_are_pending (b, filter_pspace) && sals.empty ())
fe3f5fa8
VP
13663 return;
13664
c2f4122d 13665 existing_locations = hoist_existing_locations (b, filter_pspace);
fe3f5fa8 13666
6c5b2ebe 13667 for (const auto &sal : sals)
fe3f5fa8 13668 {
f8eba3c6
TT
13669 struct bp_location *new_loc;
13670
6c5b2ebe 13671 switch_to_program_space_and_thread (sal.pspace);
f8eba3c6 13672
6c5b2ebe 13673 new_loc = add_location_to_breakpoint (b, &sal);
fe3f5fa8 13674
0d381245
VP
13675 /* Reparse conditions, they might contain references to the
13676 old symtab. */
13677 if (b->cond_string != NULL)
13678 {
bbc13ae3 13679 const char *s;
fe3f5fa8 13680
0d381245 13681 s = b->cond_string;
492d29ea 13682 TRY
0d381245 13683 {
6c5b2ebe
PA
13684 new_loc->cond = parse_exp_1 (&s, sal.pc,
13685 block_for_pc (sal.pc),
0d381245
VP
13686 0);
13687 }
492d29ea 13688 CATCH (e, RETURN_MASK_ERROR)
0d381245 13689 {
3e43a32a
MS
13690 warning (_("failed to reevaluate condition "
13691 "for breakpoint %d: %s"),
0d381245
VP
13692 b->number, e.message);
13693 new_loc->enabled = 0;
13694 }
492d29ea 13695 END_CATCH
0d381245 13696 }
fe3f5fa8 13697
6c5b2ebe 13698 if (!sals_end.empty ())
f1310107 13699 {
6c5b2ebe 13700 CORE_ADDR end = find_breakpoint_range_end (sals_end[0]);
f1310107 13701
6c5b2ebe 13702 new_loc->length = end - sals[0].pc + 1;
f1310107 13703 }
0d381245 13704 }
fe3f5fa8 13705
4a64f543
MS
13706 /* If possible, carry over 'disable' status from existing
13707 breakpoints. */
0d381245
VP
13708 {
13709 struct bp_location *e = existing_locations;
776592bf
DE
13710 /* If there are multiple breakpoints with the same function name,
13711 e.g. for inline functions, comparing function names won't work.
13712 Instead compare pc addresses; this is just a heuristic as things
13713 may have moved, but in practice it gives the correct answer
13714 often enough until a better solution is found. */
13715 int have_ambiguous_names = ambiguous_names_p (b->loc);
13716
0d381245
VP
13717 for (; e; e = e->next)
13718 {
13719 if (!e->enabled && e->function_name)
13720 {
13721 struct bp_location *l = b->loc;
776592bf
DE
13722 if (have_ambiguous_names)
13723 {
13724 for (; l; l = l->next)
f1310107 13725 if (breakpoint_locations_match (e, l))
776592bf
DE
13726 {
13727 l->enabled = 0;
13728 break;
13729 }
13730 }
13731 else
13732 {
13733 for (; l; l = l->next)
13734 if (l->function_name
13735 && strcmp (e->function_name, l->function_name) == 0)
13736 {
13737 l->enabled = 0;
13738 break;
13739 }
13740 }
0d381245
VP
13741 }
13742 }
13743 }
fe3f5fa8 13744
8d3788bd
VP
13745 if (!locations_are_equal (existing_locations, b->loc))
13746 observer_notify_breakpoint_modified (b);
fe3f5fa8
VP
13747}
13748
f00aae0f 13749/* Find the SaL locations corresponding to the given LOCATION.
ef23e705
TJB
13750 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
13751
6c5b2ebe 13752static std::vector<symtab_and_line>
f00aae0f 13753location_to_sals (struct breakpoint *b, struct event_location *location,
c2f4122d 13754 struct program_space *search_pspace, int *found)
ef23e705 13755{
492d29ea 13756 struct gdb_exception exception = exception_none;
ef23e705 13757
983af33b 13758 gdb_assert (b->ops != NULL);
ef23e705 13759
6c5b2ebe
PA
13760 std::vector<symtab_and_line> sals;
13761
492d29ea 13762 TRY
ef23e705 13763 {
6c5b2ebe 13764 sals = b->ops->decode_location (b, location, search_pspace);
ef23e705 13765 }
492d29ea 13766 CATCH (e, RETURN_MASK_ERROR)
ef23e705
TJB
13767 {
13768 int not_found_and_ok = 0;
492d29ea
PA
13769
13770 exception = e;
13771
ef23e705
TJB
13772 /* For pending breakpoints, it's expected that parsing will
13773 fail until the right shared library is loaded. User has
13774 already told to create pending breakpoints and don't need
13775 extra messages. If breakpoint is in bp_shlib_disabled
13776 state, then user already saw the message about that
13777 breakpoint being disabled, and don't want to see more
13778 errors. */
58438ac1 13779 if (e.error == NOT_FOUND_ERROR
c2f4122d
PA
13780 && (b->condition_not_parsed
13781 || (b->loc != NULL
13782 && search_pspace != NULL
13783 && b->loc->pspace != search_pspace)
ef23e705 13784 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 13785 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
13786 || b->enable_state == bp_disabled))
13787 not_found_and_ok = 1;
13788
13789 if (!not_found_and_ok)
13790 {
13791 /* We surely don't want to warn about the same breakpoint
13792 10 times. One solution, implemented here, is disable
13793 the breakpoint on error. Another solution would be to
13794 have separate 'warning emitted' flag. Since this
13795 happens only when a binary has changed, I don't know
13796 which approach is better. */
13797 b->enable_state = bp_disabled;
13798 throw_exception (e);
13799 }
13800 }
492d29ea 13801 END_CATCH
ef23e705 13802
492d29ea 13803 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
ef23e705 13804 {
6c5b2ebe
PA
13805 for (auto &sal : sals)
13806 resolve_sal_pc (&sal);
f00aae0f 13807 if (b->condition_not_parsed && b->extra_string != NULL)
ef23e705 13808 {
ed1d1739
KS
13809 char *cond_string, *extra_string;
13810 int thread, task;
ef23e705 13811
6c5b2ebe 13812 find_condition_and_thread (b->extra_string, sals[0].pc,
e7e0cddf
SS
13813 &cond_string, &thread, &task,
13814 &extra_string);
f00aae0f 13815 gdb_assert (b->cond_string == NULL);
ef23e705
TJB
13816 if (cond_string)
13817 b->cond_string = cond_string;
13818 b->thread = thread;
13819 b->task = task;
e7e0cddf 13820 if (extra_string)
f00aae0f
KS
13821 {
13822 xfree (b->extra_string);
13823 b->extra_string = extra_string;
13824 }
ef23e705
TJB
13825 b->condition_not_parsed = 0;
13826 }
13827
983af33b 13828 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
6c5b2ebe 13829 sals[0] = update_static_tracepoint (b, sals[0]);
ef23e705 13830
58438ac1
TT
13831 *found = 1;
13832 }
13833 else
13834 *found = 0;
ef23e705
TJB
13835
13836 return sals;
13837}
13838
348d480f
PA
13839/* The default re_set method, for typical hardware or software
13840 breakpoints. Reevaluate the breakpoint and recreate its
13841 locations. */
13842
13843static void
28010a5d 13844breakpoint_re_set_default (struct breakpoint *b)
ef23e705 13845{
c2f4122d 13846 struct program_space *filter_pspace = current_program_space;
6c5b2ebe 13847 std::vector<symtab_and_line> expanded, expanded_end;
ef23e705 13848
6c5b2ebe
PA
13849 int found;
13850 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (),
13851 filter_pspace, &found);
ef23e705 13852 if (found)
6c5b2ebe 13853 expanded = std::move (sals);
ef23e705 13854
f00aae0f 13855 if (b->location_range_end != NULL)
f1310107 13856 {
6c5b2ebe
PA
13857 std::vector<symtab_and_line> sals_end
13858 = location_to_sals (b, b->location_range_end.get (),
13859 filter_pspace, &found);
f1310107 13860 if (found)
6c5b2ebe 13861 expanded_end = std::move (sals_end);
f1310107
TJB
13862 }
13863
c2f4122d 13864 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
28010a5d
PA
13865}
13866
983af33b
SDJ
13867/* Default method for creating SALs from an address string. It basically
13868 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
13869
13870static void
f00aae0f
KS
13871create_sals_from_location_default (const struct event_location *location,
13872 struct linespec_result *canonical,
13873 enum bptype type_wanted)
983af33b 13874{
f00aae0f 13875 parse_breakpoint_sals (location, canonical);
983af33b
SDJ
13876}
13877
13878/* Call create_breakpoints_sal for the given arguments. This is the default
13879 function for the `create_breakpoints_sal' method of
13880 breakpoint_ops. */
13881
13882static void
13883create_breakpoints_sal_default (struct gdbarch *gdbarch,
13884 struct linespec_result *canonical,
e1e01040
PA
13885 gdb::unique_xmalloc_ptr<char> cond_string,
13886 gdb::unique_xmalloc_ptr<char> extra_string,
983af33b
SDJ
13887 enum bptype type_wanted,
13888 enum bpdisp disposition,
13889 int thread,
13890 int task, int ignore_count,
13891 const struct breakpoint_ops *ops,
13892 int from_tty, int enabled,
44f238bb 13893 int internal, unsigned flags)
983af33b 13894{
e1e01040
PA
13895 create_breakpoints_sal (gdbarch, canonical,
13896 std::move (cond_string),
13897 std::move (extra_string),
983af33b
SDJ
13898 type_wanted, disposition,
13899 thread, task, ignore_count, ops, from_tty,
44f238bb 13900 enabled, internal, flags);
983af33b
SDJ
13901}
13902
13903/* Decode the line represented by S by calling decode_line_full. This is the
5f700d83 13904 default function for the `decode_location' method of breakpoint_ops. */
983af33b 13905
6c5b2ebe 13906static std::vector<symtab_and_line>
f00aae0f
KS
13907decode_location_default (struct breakpoint *b,
13908 const struct event_location *location,
6c5b2ebe 13909 struct program_space *search_pspace)
983af33b
SDJ
13910{
13911 struct linespec_result canonical;
13912
c2f4122d 13913 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
983af33b
SDJ
13914 (struct symtab *) NULL, 0,
13915 &canonical, multiple_symbols_all,
13916 b->filter);
13917
13918 /* We should get 0 or 1 resulting SALs. */
6c5b2ebe 13919 gdb_assert (canonical.lsals.size () < 2);
983af33b 13920
6c5b2ebe 13921 if (!canonical.lsals.empty ())
983af33b 13922 {
6c5b2ebe
PA
13923 const linespec_sals &lsal = canonical.lsals[0];
13924 return std::move (lsal.sals);
983af33b 13925 }
6c5b2ebe 13926 return {};
983af33b
SDJ
13927}
13928
bf469271 13929/* Reset a breakpoint. */
c906108c 13930
bf469271
PA
13931static void
13932breakpoint_re_set_one (breakpoint *b)
c906108c 13933{
fdf44873
TT
13934 input_radix = b->input_radix;
13935 set_language (b->language);
c906108c 13936
348d480f 13937 b->ops->re_set (b);
c906108c
SS
13938}
13939
c2f4122d
PA
13940/* Re-set breakpoint locations for the current program space.
13941 Locations bound to other program spaces are left untouched. */
13942
c906108c 13943void
69de3c6a 13944breakpoint_re_set (void)
c906108c 13945{
35df4500 13946 struct breakpoint *b, *b_tmp;
2a7f3dff 13947
c5aa993b 13948 {
fdf44873
TT
13949 scoped_restore_current_language save_language;
13950 scoped_restore save_input_radix = make_scoped_restore (&input_radix);
5ed8105e 13951 scoped_restore_current_pspace_and_thread restore_pspace_thread;
e62c965a 13952
5ed8105e
PA
13953 /* Note: we must not try to insert locations until after all
13954 breakpoints have been re-set. Otherwise, e.g., when re-setting
13955 breakpoint 1, we'd insert the locations of breakpoint 2, which
13956 hadn't been re-set yet, and thus may have stale locations. */
4efc6507 13957
5ed8105e
PA
13958 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13959 {
bf469271
PA
13960 TRY
13961 {
13962 breakpoint_re_set_one (b);
13963 }
13964 CATCH (ex, RETURN_MASK_ALL)
13965 {
13966 exception_fprintf (gdb_stderr, ex,
13967 "Error in re-setting breakpoint %d: ",
13968 b->number);
13969 }
13970 END_CATCH
5ed8105e 13971 }
5ed8105e
PA
13972
13973 jit_breakpoint_re_set ();
13974 }
6c95b8df 13975
af02033e
PP
13976 create_overlay_event_breakpoint ();
13977 create_longjmp_master_breakpoint ();
13978 create_std_terminate_master_breakpoint ();
186c406b 13979 create_exception_master_breakpoint ();
2a7f3dff
PA
13980
13981 /* Now we can insert. */
13982 update_global_location_list (UGLL_MAY_INSERT);
c906108c
SS
13983}
13984\f
c906108c
SS
13985/* Reset the thread number of this breakpoint:
13986
13987 - If the breakpoint is for all threads, leave it as-is.
4a64f543 13988 - Else, reset it to the current thread for inferior_ptid. */
c906108c 13989void
fba45db2 13990breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
13991{
13992 if (b->thread != -1)
13993 {
39f77062 13994 if (in_thread_list (inferior_ptid))
5d5658a1 13995 b->thread = ptid_to_global_thread_id (inferior_ptid);
6c95b8df
PA
13996
13997 /* We're being called after following a fork. The new fork is
13998 selected as current, and unless this was a vfork will have a
13999 different program space from the original thread. Reset that
14000 as well. */
14001 b->loc->pspace = current_program_space;
c906108c
SS
14002 }
14003}
14004
03ac34d5
MS
14005/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14006 If from_tty is nonzero, it prints a message to that effect,
14007 which ends with a period (no newline). */
14008
c906108c 14009void
fba45db2 14010set_ignore_count (int bptnum, int count, int from_tty)
c906108c 14011{
52f0bd74 14012 struct breakpoint *b;
c906108c
SS
14013
14014 if (count < 0)
14015 count = 0;
14016
14017 ALL_BREAKPOINTS (b)
14018 if (b->number == bptnum)
c5aa993b 14019 {
d77f58be
SS
14020 if (is_tracepoint (b))
14021 {
14022 if (from_tty && count != 0)
14023 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14024 bptnum);
14025 return;
14026 }
14027
c5aa993b 14028 b->ignore_count = count;
221ea385
KS
14029 if (from_tty)
14030 {
14031 if (count == 0)
3e43a32a
MS
14032 printf_filtered (_("Will stop next time "
14033 "breakpoint %d is reached."),
221ea385
KS
14034 bptnum);
14035 else if (count == 1)
a3f17187 14036 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
14037 bptnum);
14038 else
3e43a32a
MS
14039 printf_filtered (_("Will ignore next %d "
14040 "crossings of breakpoint %d."),
221ea385
KS
14041 count, bptnum);
14042 }
8d3788bd 14043 observer_notify_breakpoint_modified (b);
c5aa993b
JM
14044 return;
14045 }
c906108c 14046
8a3fe4f8 14047 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
14048}
14049
c906108c
SS
14050/* Command to set ignore-count of breakpoint N to COUNT. */
14051
14052static void
0b39b52e 14053ignore_command (const char *args, int from_tty)
c906108c 14054{
0b39b52e 14055 const char *p = args;
52f0bd74 14056 int num;
c906108c
SS
14057
14058 if (p == 0)
e2e0b3e5 14059 error_no_arg (_("a breakpoint number"));
c5aa993b 14060
c906108c 14061 num = get_number (&p);
5c44784c 14062 if (num == 0)
8a3fe4f8 14063 error (_("bad breakpoint number: '%s'"), args);
c906108c 14064 if (*p == 0)
8a3fe4f8 14065 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
14066
14067 set_ignore_count (num,
14068 longest_to_int (value_as_long (parse_and_eval (p))),
14069 from_tty);
221ea385
KS
14070 if (from_tty)
14071 printf_filtered ("\n");
c906108c
SS
14072}
14073\f
d0fe4701
XR
14074
14075/* Call FUNCTION on each of the breakpoints with numbers in the range
14076 defined by BP_NUM_RANGE (an inclusive range). */
c906108c
SS
14077
14078static void
d0fe4701
XR
14079map_breakpoint_number_range (std::pair<int, int> bp_num_range,
14080 gdb::function_view<void (breakpoint *)> function)
c906108c 14081{
d0fe4701
XR
14082 if (bp_num_range.first == 0)
14083 {
14084 warning (_("bad breakpoint number at or near '%d'"),
14085 bp_num_range.first);
14086 }
14087 else
c906108c 14088 {
d0fe4701 14089 struct breakpoint *b, *tmp;
197f0a60 14090
d0fe4701 14091 for (int i = bp_num_range.first; i <= bp_num_range.second; i++)
5c44784c 14092 {
d0fe4701
XR
14093 bool match = false;
14094
5c44784c 14095 ALL_BREAKPOINTS_SAFE (b, tmp)
d0fe4701 14096 if (b->number == i)
5c44784c 14097 {
bfd28288 14098 match = true;
48649e1b 14099 function (b);
11cf8741 14100 break;
5c44784c 14101 }
bfd28288 14102 if (!match)
d0fe4701 14103 printf_unfiltered (_("No breakpoint number %d.\n"), i);
c5aa993b 14104 }
c906108c
SS
14105 }
14106}
14107
d0fe4701
XR
14108/* Call FUNCTION on each of the breakpoints whose numbers are given in
14109 ARGS. */
14110
14111static void
14112map_breakpoint_numbers (const char *args,
14113 gdb::function_view<void (breakpoint *)> function)
14114{
14115 if (args == NULL || *args == '\0')
14116 error_no_arg (_("one or more breakpoint numbers"));
14117
14118 number_or_range_parser parser (args);
14119
14120 while (!parser.finished ())
14121 {
14122 int num = parser.get_number ();
14123 map_breakpoint_number_range (std::make_pair (num, num), function);
14124 }
14125}
14126
14127/* Return the breakpoint location structure corresponding to the
14128 BP_NUM and LOC_NUM values. */
14129
0d381245 14130static struct bp_location *
d0fe4701 14131find_location_by_number (int bp_num, int loc_num)
0d381245 14132{
0d381245 14133 struct breakpoint *b;
0d381245
VP
14134
14135 ALL_BREAKPOINTS (b)
14136 if (b->number == bp_num)
14137 {
14138 break;
14139 }
14140
14141 if (!b || b->number != bp_num)
d0fe4701 14142 error (_("Bad breakpoint number '%d'"), bp_num);
0d381245 14143
0d381245 14144 if (loc_num == 0)
d0fe4701 14145 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245 14146
d0fe4701
XR
14147 int n = 0;
14148 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next)
14149 if (++n == loc_num)
14150 return loc;
14151
14152 error (_("Bad breakpoint location number '%d'"), loc_num);
0d381245
VP
14153}
14154
95e95a6d
PA
14155/* Modes of operation for extract_bp_num. */
14156enum class extract_bp_kind
14157{
14158 /* Extracting a breakpoint number. */
14159 bp,
14160
14161 /* Extracting a location number. */
14162 loc,
14163};
14164
14165/* Extract a breakpoint or location number (as determined by KIND)
14166 from the string starting at START. TRAILER is a character which
14167 can be found after the number. If you don't want a trailer, use
14168 '\0'. If END_OUT is not NULL, it is set to point after the parsed
14169 string. This always returns a positive integer. */
14170
14171static int
14172extract_bp_num (extract_bp_kind kind, const char *start,
14173 int trailer, const char **end_out = NULL)
14174{
14175 const char *end = start;
14176 int num = get_number_trailer (&end, trailer);
14177 if (num < 0)
14178 error (kind == extract_bp_kind::bp
14179 ? _("Negative breakpoint number '%.*s'")
14180 : _("Negative breakpoint location number '%.*s'"),
14181 int (end - start), start);
14182 if (num == 0)
14183 error (kind == extract_bp_kind::bp
14184 ? _("Bad breakpoint number '%.*s'")
14185 : _("Bad breakpoint location number '%.*s'"),
14186 int (end - start), start);
14187
14188 if (end_out != NULL)
14189 *end_out = end;
14190 return num;
14191}
14192
14193/* Extract a breakpoint or location range (as determined by KIND) in
14194 the form NUM1-NUM2 stored at &ARG[arg_offset]. Returns a std::pair
14195 representing the (inclusive) range. The returned pair's elements
14196 are always positive integers. */
14197
14198static std::pair<int, int>
14199extract_bp_or_bp_range (extract_bp_kind kind,
14200 const std::string &arg,
14201 std::string::size_type arg_offset)
14202{
14203 std::pair<int, int> range;
14204 const char *bp_loc = &arg[arg_offset];
14205 std::string::size_type dash = arg.find ('-', arg_offset);
14206 if (dash != std::string::npos)
14207 {
14208 /* bp_loc is a range (x-z). */
14209 if (arg.length () == dash + 1)
14210 error (kind == extract_bp_kind::bp
14211 ? _("Bad breakpoint number at or near: '%s'")
14212 : _("Bad breakpoint location number at or near: '%s'"),
14213 bp_loc);
14214
14215 const char *end;
14216 const char *start_first = bp_loc;
14217 const char *start_second = &arg[dash + 1];
14218 range.first = extract_bp_num (kind, start_first, '-');
14219 range.second = extract_bp_num (kind, start_second, '\0', &end);
14220
14221 if (range.first > range.second)
14222 error (kind == extract_bp_kind::bp
14223 ? _("Inverted breakpoint range at '%.*s'")
14224 : _("Inverted breakpoint location range at '%.*s'"),
14225 int (end - start_first), start_first);
14226 }
14227 else
14228 {
14229 /* bp_loc is a single value. */
14230 range.first = extract_bp_num (kind, bp_loc, '\0');
14231 range.second = range.first;
14232 }
14233 return range;
14234}
14235
d0fe4701
XR
14236/* Extract the breakpoint/location range specified by ARG. Returns
14237 the breakpoint range in BP_NUM_RANGE, and the location range in
14238 BP_LOC_RANGE.
14239
14240 ARG may be in any of the following forms:
14241
14242 x where 'x' is a breakpoint number.
14243 x-y where 'x' and 'y' specify a breakpoint numbers range.
14244 x.y where 'x' is a breakpoint number and 'y' a location number.
14245 x.y-z where 'x' is a breakpoint number and 'y' and 'z' specify a
14246 location number range.
14247*/
14248
cc638e86 14249static void
d0fe4701
XR
14250extract_bp_number_and_location (const std::string &arg,
14251 std::pair<int, int> &bp_num_range,
14252 std::pair<int, int> &bp_loc_range)
14253{
14254 std::string::size_type dot = arg.find ('.');
14255
14256 if (dot != std::string::npos)
14257 {
14258 /* Handle 'x.y' and 'x.y-z' cases. */
14259
14260 if (arg.length () == dot + 1 || dot == 0)
95e95a6d 14261 error (_("Bad breakpoint number at or near: '%s'"), arg.c_str ());
d0fe4701 14262
95e95a6d
PA
14263 bp_num_range.first
14264 = extract_bp_num (extract_bp_kind::bp, arg.c_str (), '.');
14265 bp_num_range.second = bp_num_range.first;
d0fe4701 14266
95e95a6d
PA
14267 bp_loc_range = extract_bp_or_bp_range (extract_bp_kind::loc,
14268 arg, dot + 1);
d0fe4701
XR
14269 }
14270 else
14271 {
14272 /* Handle x and x-y cases. */
d0fe4701 14273
95e95a6d 14274 bp_num_range = extract_bp_or_bp_range (extract_bp_kind::bp, arg, 0);
d0fe4701
XR
14275 bp_loc_range.first = 0;
14276 bp_loc_range.second = 0;
14277 }
d0fe4701
XR
14278}
14279
14280/* Enable or disable a breakpoint location BP_NUM.LOC_NUM. ENABLE
14281 specifies whether to enable or disable. */
14282
14283static void
14284enable_disable_bp_num_loc (int bp_num, int loc_num, bool enable)
14285{
14286 struct bp_location *loc = find_location_by_number (bp_num, loc_num);
14287 if (loc != NULL)
14288 {
14289 if (loc->enabled != enable)
14290 {
14291 loc->enabled = enable;
14292 mark_breakpoint_location_modified (loc);
14293 }
14294 if (target_supports_enable_disable_tracepoint ()
14295 && current_trace_status ()->running && loc->owner
14296 && is_tracepoint (loc->owner))
14297 target_disable_tracepoint (loc);
14298 }
14299 update_global_location_list (UGLL_DONT_INSERT);
14300}
14301
14302/* Enable or disable a range of breakpoint locations. BP_NUM is the
14303 number of the breakpoint, and BP_LOC_RANGE specifies the
14304 (inclusive) range of location numbers of that breakpoint to
14305 enable/disable. ENABLE specifies whether to enable or disable the
14306 location. */
14307
14308static void
14309enable_disable_breakpoint_location_range (int bp_num,
14310 std::pair<int, int> &bp_loc_range,
14311 bool enable)
14312{
14313 for (int i = bp_loc_range.first; i <= bp_loc_range.second; i++)
14314 enable_disable_bp_num_loc (bp_num, i, enable);
14315}
0d381245 14316
1900040c
MS
14317/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14318 If from_tty is nonzero, it prints a message to that effect,
14319 which ends with a period (no newline). */
14320
c906108c 14321void
fba45db2 14322disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
14323{
14324 /* Never disable a watchpoint scope breakpoint; we want to
14325 hit them when we leave scope so we can delete both the
14326 watchpoint and its scope breakpoint at that time. */
14327 if (bpt->type == bp_watchpoint_scope)
14328 return;
14329
b5de0fa7 14330 bpt->enable_state = bp_disabled;
c906108c 14331
b775012e
LM
14332 /* Mark breakpoint locations modified. */
14333 mark_breakpoint_modified (bpt);
14334
d248b706
KY
14335 if (target_supports_enable_disable_tracepoint ()
14336 && current_trace_status ()->running && is_tracepoint (bpt))
14337 {
14338 struct bp_location *location;
14339
14340 for (location = bpt->loc; location; location = location->next)
14341 target_disable_tracepoint (location);
14342 }
14343
44702360 14344 update_global_location_list (UGLL_DONT_INSERT);
c906108c 14345
8d3788bd 14346 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14347}
14348
d0fe4701
XR
14349/* Enable or disable the breakpoint(s) or breakpoint location(s)
14350 specified in ARGS. ARGS may be in any of the formats handled by
14351 extract_bp_number_and_location. ENABLE specifies whether to enable
14352 or disable the breakpoints/locations. */
14353
c906108c 14354static void
d0fe4701 14355enable_disable_command (const char *args, int from_tty, bool enable)
c906108c 14356{
c906108c 14357 if (args == 0)
46c6471b
PA
14358 {
14359 struct breakpoint *bpt;
14360
14361 ALL_BREAKPOINTS (bpt)
14362 if (user_breakpoint_p (bpt))
d0fe4701
XR
14363 {
14364 if (enable)
14365 enable_breakpoint (bpt);
14366 else
14367 disable_breakpoint (bpt);
14368 }
46c6471b 14369 }
9eaabc75 14370 else
0d381245 14371 {
cb791d59 14372 std::string num = extract_arg (&args);
9eaabc75 14373
cb791d59 14374 while (!num.empty ())
d248b706 14375 {
d0fe4701 14376 std::pair<int, int> bp_num_range, bp_loc_range;
9eaabc75 14377
cc638e86
PA
14378 extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
14379
14380 if (bp_loc_range.first == bp_loc_range.second
14381 && bp_loc_range.first == 0)
d0fe4701 14382 {
cc638e86
PA
14383 /* Handle breakpoint ids with formats 'x' or 'x-z'. */
14384 map_breakpoint_number_range (bp_num_range,
14385 enable
14386 ? enable_breakpoint
14387 : disable_breakpoint);
14388 }
14389 else
14390 {
14391 /* Handle breakpoint ids with formats 'x.y' or
14392 'x.y-z'. */
14393 enable_disable_breakpoint_location_range
14394 (bp_num_range.first, bp_loc_range, enable);
b775012e 14395 }
9eaabc75 14396 num = extract_arg (&args);
d248b706 14397 }
0d381245 14398 }
c906108c
SS
14399}
14400
d0fe4701
XR
14401/* The disable command disables the specified breakpoints/locations
14402 (or all defined breakpoints) so they're no longer effective in
14403 stopping the inferior. ARGS may be in any of the forms defined in
14404 extract_bp_number_and_location. */
14405
14406static void
14407disable_command (const char *args, int from_tty)
14408{
14409 enable_disable_command (args, from_tty, false);
14410}
14411
c906108c 14412static void
816338b5
SS
14413enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14414 int count)
c906108c 14415{
afe38095 14416 int target_resources_ok;
c906108c
SS
14417
14418 if (bpt->type == bp_hardware_breakpoint)
14419 {
14420 int i;
c5aa993b 14421 i = hw_breakpoint_used_count ();
53a5351d 14422 target_resources_ok =
d92524f1 14423 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 14424 i + 1, 0);
c906108c 14425 if (target_resources_ok == 0)
8a3fe4f8 14426 error (_("No hardware breakpoint support in the target."));
c906108c 14427 else if (target_resources_ok < 0)
8a3fe4f8 14428 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
14429 }
14430
cc60f2e3 14431 if (is_watchpoint (bpt))
c906108c 14432 {
d07205c2 14433 /* Initialize it just to avoid a GCC false warning. */
f486487f 14434 enum enable_state orig_enable_state = bp_disabled;
dde02812 14435
492d29ea 14436 TRY
c906108c 14437 {
3a5c3e22
PA
14438 struct watchpoint *w = (struct watchpoint *) bpt;
14439
1e718ff1
TJB
14440 orig_enable_state = bpt->enable_state;
14441 bpt->enable_state = bp_enabled;
3a5c3e22 14442 update_watchpoint (w, 1 /* reparse */);
c906108c 14443 }
492d29ea 14444 CATCH (e, RETURN_MASK_ALL)
c5aa993b 14445 {
1e718ff1 14446 bpt->enable_state = orig_enable_state;
dde02812
ES
14447 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14448 bpt->number);
14449 return;
c5aa993b 14450 }
492d29ea 14451 END_CATCH
c906108c 14452 }
0101ce28 14453
b775012e
LM
14454 bpt->enable_state = bp_enabled;
14455
14456 /* Mark breakpoint locations modified. */
14457 mark_breakpoint_modified (bpt);
14458
d248b706
KY
14459 if (target_supports_enable_disable_tracepoint ()
14460 && current_trace_status ()->running && is_tracepoint (bpt))
14461 {
14462 struct bp_location *location;
14463
14464 for (location = bpt->loc; location; location = location->next)
14465 target_enable_tracepoint (location);
14466 }
14467
b4c291bb 14468 bpt->disposition = disposition;
816338b5 14469 bpt->enable_count = count;
44702360 14470 update_global_location_list (UGLL_MAY_INSERT);
9c97429f 14471
8d3788bd 14472 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14473}
14474
fe3f5fa8 14475
c906108c 14476void
fba45db2 14477enable_breakpoint (struct breakpoint *bpt)
c906108c 14478{
816338b5 14479 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
14480}
14481
d0fe4701
XR
14482/* The enable command enables the specified breakpoints/locations (or
14483 all defined breakpoints) so they once again become (or continue to
14484 be) effective in stopping the inferior. ARGS may be in any of the
14485 forms defined in extract_bp_number_and_location. */
c906108c 14486
c906108c 14487static void
981a3fb3 14488enable_command (const char *args, int from_tty)
c906108c 14489{
d0fe4701 14490 enable_disable_command (args, from_tty, true);
c906108c
SS
14491}
14492
c906108c 14493static void
4495129a 14494enable_once_command (const char *args, int from_tty)
c906108c 14495{
48649e1b
TT
14496 map_breakpoint_numbers
14497 (args, [&] (breakpoint *b)
14498 {
14499 iterate_over_related_breakpoints
14500 (b, [&] (breakpoint *bpt)
14501 {
14502 enable_breakpoint_disp (bpt, disp_disable, 1);
14503 });
14504 });
816338b5
SS
14505}
14506
14507static void
4495129a 14508enable_count_command (const char *args, int from_tty)
816338b5 14509{
b9d61307
SM
14510 int count;
14511
14512 if (args == NULL)
14513 error_no_arg (_("hit count"));
14514
14515 count = get_number (&args);
816338b5 14516
48649e1b
TT
14517 map_breakpoint_numbers
14518 (args, [&] (breakpoint *b)
14519 {
14520 iterate_over_related_breakpoints
14521 (b, [&] (breakpoint *bpt)
14522 {
14523 enable_breakpoint_disp (bpt, disp_disable, count);
14524 });
14525 });
c906108c
SS
14526}
14527
c906108c 14528static void
4495129a 14529enable_delete_command (const char *args, int from_tty)
c906108c 14530{
48649e1b
TT
14531 map_breakpoint_numbers
14532 (args, [&] (breakpoint *b)
14533 {
14534 iterate_over_related_breakpoints
14535 (b, [&] (breakpoint *bpt)
14536 {
14537 enable_breakpoint_disp (bpt, disp_del, 1);
14538 });
14539 });
c906108c
SS
14540}
14541\f
fa8d40ab 14542static void
981a3fb3 14543set_breakpoint_cmd (const char *args, int from_tty)
fa8d40ab
JJ
14544{
14545}
14546
14547static void
981a3fb3 14548show_breakpoint_cmd (const char *args, int from_tty)
fa8d40ab
JJ
14549{
14550}
14551
1f3b5d1b
PP
14552/* Invalidate last known value of any hardware watchpoint if
14553 the memory which that value represents has been written to by
14554 GDB itself. */
14555
14556static void
8de0566d
YQ
14557invalidate_bp_value_on_memory_change (struct inferior *inferior,
14558 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
14559 const bfd_byte *data)
14560{
14561 struct breakpoint *bp;
14562
14563 ALL_BREAKPOINTS (bp)
14564 if (bp->enable_state == bp_enabled
3a5c3e22 14565 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 14566 {
3a5c3e22 14567 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 14568
3a5c3e22
PA
14569 if (wp->val_valid && wp->val)
14570 {
14571 struct bp_location *loc;
14572
14573 for (loc = bp->loc; loc != NULL; loc = loc->next)
14574 if (loc->loc_type == bp_loc_hardware_watchpoint
14575 && loc->address + loc->length > addr
14576 && addr + len > loc->address)
14577 {
14578 value_free (wp->val);
14579 wp->val = NULL;
14580 wp->val_valid = 0;
14581 }
14582 }
1f3b5d1b
PP
14583 }
14584}
14585
8181d85f
DJ
14586/* Create and insert a breakpoint for software single step. */
14587
14588void
6c95b8df 14589insert_single_step_breakpoint (struct gdbarch *gdbarch,
accd0bcd 14590 const address_space *aspace,
4a64f543 14591 CORE_ADDR next_pc)
8181d85f 14592{
7c16b83e
PA
14593 struct thread_info *tp = inferior_thread ();
14594 struct symtab_and_line sal;
14595 CORE_ADDR pc = next_pc;
8181d85f 14596
34b7e8a6
PA
14597 if (tp->control.single_step_breakpoints == NULL)
14598 {
14599 tp->control.single_step_breakpoints
5d5658a1 14600 = new_single_step_breakpoint (tp->global_num, gdbarch);
34b7e8a6 14601 }
8181d85f 14602
7c16b83e
PA
14603 sal = find_pc_line (pc, 0);
14604 sal.pc = pc;
14605 sal.section = find_pc_overlay (pc);
14606 sal.explicit_pc = 1;
34b7e8a6 14607 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
8181d85f 14608
7c16b83e 14609 update_global_location_list (UGLL_INSERT);
8181d85f
DJ
14610}
14611
93f9a11f
YQ
14612/* Insert single step breakpoints according to the current state. */
14613
14614int
14615insert_single_step_breakpoints (struct gdbarch *gdbarch)
14616{
f5ea389a 14617 struct regcache *regcache = get_current_regcache ();
a0ff9e1a 14618 std::vector<CORE_ADDR> next_pcs;
93f9a11f 14619
f5ea389a 14620 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
93f9a11f 14621
a0ff9e1a 14622 if (!next_pcs.empty ())
93f9a11f 14623 {
f5ea389a 14624 struct frame_info *frame = get_current_frame ();
8b86c959 14625 const address_space *aspace = get_frame_address_space (frame);
93f9a11f 14626
a0ff9e1a 14627 for (CORE_ADDR pc : next_pcs)
93f9a11f
YQ
14628 insert_single_step_breakpoint (gdbarch, aspace, pc);
14629
93f9a11f
YQ
14630 return 1;
14631 }
14632 else
14633 return 0;
14634}
14635
34b7e8a6 14636/* See breakpoint.h. */
f02253f1
HZ
14637
14638int
7c16b83e 14639breakpoint_has_location_inserted_here (struct breakpoint *bp,
accd0bcd 14640 const address_space *aspace,
7c16b83e 14641 CORE_ADDR pc)
1aafd4da 14642{
7c16b83e 14643 struct bp_location *loc;
1aafd4da 14644
7c16b83e
PA
14645 for (loc = bp->loc; loc != NULL; loc = loc->next)
14646 if (loc->inserted
14647 && breakpoint_location_address_match (loc, aspace, pc))
14648 return 1;
1aafd4da 14649
7c16b83e 14650 return 0;
ef370185
JB
14651}
14652
14653/* Check whether a software single-step breakpoint is inserted at
14654 PC. */
14655
14656int
accd0bcd 14657single_step_breakpoint_inserted_here_p (const address_space *aspace,
ef370185
JB
14658 CORE_ADDR pc)
14659{
34b7e8a6
PA
14660 struct breakpoint *bpt;
14661
14662 ALL_BREAKPOINTS (bpt)
14663 {
14664 if (bpt->type == bp_single_step
14665 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
14666 return 1;
14667 }
14668 return 0;
1aafd4da
UW
14669}
14670
1042e4c0
SS
14671/* Tracepoint-specific operations. */
14672
14673/* Set tracepoint count to NUM. */
14674static void
14675set_tracepoint_count (int num)
14676{
14677 tracepoint_count = num;
4fa62494 14678 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
14679}
14680
70221824 14681static void
0b39b52e 14682trace_command (const char *arg, int from_tty)
1042e4c0 14683{
55aa24fb 14684 struct breakpoint_ops *ops;
55aa24fb 14685
ffc2605c
TT
14686 event_location_up location = string_to_event_location (&arg,
14687 current_language);
5b56227b 14688 if (location != NULL
ffc2605c 14689 && event_location_type (location.get ()) == PROBE_LOCATION)
55aa24fb
SDJ
14690 ops = &tracepoint_probe_breakpoint_ops;
14691 else
14692 ops = &tracepoint_breakpoint_ops;
14693
558a9d82 14694 create_breakpoint (get_current_arch (),
ffc2605c 14695 location.get (),
f00aae0f 14696 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14697 0 /* tempflag */,
14698 bp_tracepoint /* type_wanted */,
14699 0 /* Ignore count */,
14700 pending_break_support,
14701 ops,
14702 from_tty,
14703 1 /* enabled */,
14704 0 /* internal */, 0);
1042e4c0
SS
14705}
14706
70221824 14707static void
0b39b52e 14708ftrace_command (const char *arg, int from_tty)
7a697b8d 14709{
ffc2605c
TT
14710 event_location_up location = string_to_event_location (&arg,
14711 current_language);
558a9d82 14712 create_breakpoint (get_current_arch (),
ffc2605c 14713 location.get (),
f00aae0f 14714 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14715 0 /* tempflag */,
14716 bp_fast_tracepoint /* type_wanted */,
14717 0 /* Ignore count */,
14718 pending_break_support,
14719 &tracepoint_breakpoint_ops,
14720 from_tty,
14721 1 /* enabled */,
14722 0 /* internal */, 0);
0fb4aa4b
PA
14723}
14724
14725/* strace command implementation. Creates a static tracepoint. */
14726
70221824 14727static void
0b39b52e 14728strace_command (const char *arg, int from_tty)
0fb4aa4b 14729{
983af33b 14730 struct breakpoint_ops *ops;
ffc2605c 14731 event_location_up location;
983af33b
SDJ
14732
14733 /* Decide if we are dealing with a static tracepoint marker (`-m'),
14734 or with a normal static tracepoint. */
61012eef 14735 if (arg && startswith (arg, "-m") && isspace (arg[2]))
f00aae0f
KS
14736 {
14737 ops = &strace_marker_breakpoint_ops;
a20714ff 14738 location = new_linespec_location (&arg, symbol_name_match_type::FULL);
f00aae0f 14739 }
983af33b 14740 else
f00aae0f
KS
14741 {
14742 ops = &tracepoint_breakpoint_ops;
14743 location = string_to_event_location (&arg, current_language);
14744 }
983af33b 14745
558a9d82 14746 create_breakpoint (get_current_arch (),
ffc2605c 14747 location.get (),
f00aae0f 14748 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
14749 0 /* tempflag */,
14750 bp_static_tracepoint /* type_wanted */,
14751 0 /* Ignore count */,
14752 pending_break_support,
14753 ops,
14754 from_tty,
14755 1 /* enabled */,
14756 0 /* internal */, 0);
7a697b8d
SS
14757}
14758
409873ef
SS
14759/* Set up a fake reader function that gets command lines from a linked
14760 list that was acquired during tracepoint uploading. */
14761
14762static struct uploaded_tp *this_utp;
3149d8c1 14763static int next_cmd;
409873ef
SS
14764
14765static char *
14766read_uploaded_action (void)
14767{
14768 char *rslt;
14769
3149d8c1 14770 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 14771
3149d8c1 14772 next_cmd++;
409873ef
SS
14773
14774 return rslt;
14775}
14776
00bf0b85
SS
14777/* Given information about a tracepoint as recorded on a target (which
14778 can be either a live system or a trace file), attempt to create an
14779 equivalent GDB tracepoint. This is not a reliable process, since
14780 the target does not necessarily have all the information used when
14781 the tracepoint was originally defined. */
14782
d9b3f62e 14783struct tracepoint *
00bf0b85 14784create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 14785{
f2fc3015
TT
14786 const char *addr_str;
14787 char small_buf[100];
d9b3f62e 14788 struct tracepoint *tp;
fd9b8c24 14789
409873ef
SS
14790 if (utp->at_string)
14791 addr_str = utp->at_string;
14792 else
14793 {
14794 /* In the absence of a source location, fall back to raw
14795 address. Since there is no way to confirm that the address
14796 means the same thing as when the trace was started, warn the
14797 user. */
3e43a32a
MS
14798 warning (_("Uploaded tracepoint %d has no "
14799 "source location, using raw address"),
409873ef 14800 utp->number);
8c042590 14801 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
14802 addr_str = small_buf;
14803 }
14804
14805 /* There's not much we can do with a sequence of bytecodes. */
14806 if (utp->cond && !utp->cond_string)
3e43a32a
MS
14807 warning (_("Uploaded tracepoint %d condition "
14808 "has no source form, ignoring it"),
409873ef 14809 utp->number);
d5551862 14810
ffc2605c
TT
14811 event_location_up location = string_to_event_location (&addr_str,
14812 current_language);
8cdf0e15 14813 if (!create_breakpoint (get_current_arch (),
ffc2605c 14814 location.get (),
f00aae0f 14815 utp->cond_string, -1, addr_str,
e7e0cddf 14816 0 /* parse cond/thread */,
8cdf0e15 14817 0 /* tempflag */,
0fb4aa4b 14818 utp->type /* type_wanted */,
8cdf0e15
VP
14819 0 /* Ignore count */,
14820 pending_break_support,
348d480f 14821 &tracepoint_breakpoint_ops,
8cdf0e15 14822 0 /* from_tty */,
84f4c1fe 14823 utp->enabled /* enabled */,
44f238bb
PA
14824 0 /* internal */,
14825 CREATE_BREAKPOINT_FLAGS_INSERTED))
ffc2605c 14826 return NULL;
fd9b8c24 14827
409873ef 14828 /* Get the tracepoint we just created. */
fd9b8c24
PA
14829 tp = get_tracepoint (tracepoint_count);
14830 gdb_assert (tp != NULL);
d5551862 14831
00bf0b85
SS
14832 if (utp->pass > 0)
14833 {
8c042590 14834 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
c1fc2657 14835 tp->number);
00bf0b85 14836
409873ef 14837 trace_pass_command (small_buf, 0);
00bf0b85
SS
14838 }
14839
409873ef
SS
14840 /* If we have uploaded versions of the original commands, set up a
14841 special-purpose "reader" function and call the usual command line
14842 reader, then pass the result to the breakpoint command-setting
14843 function. */
3149d8c1 14844 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 14845 {
93921405 14846 command_line_up cmd_list;
00bf0b85 14847
409873ef 14848 this_utp = utp;
3149d8c1 14849 next_cmd = 0;
d5551862 14850
409873ef
SS
14851 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
14852
c1fc2657 14853 breakpoint_set_commands (tp, std::move (cmd_list));
00bf0b85 14854 }
3149d8c1
SS
14855 else if (!VEC_empty (char_ptr, utp->actions)
14856 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
14857 warning (_("Uploaded tracepoint %d actions "
14858 "have no source form, ignoring them"),
409873ef 14859 utp->number);
00bf0b85 14860
f196051f 14861 /* Copy any status information that might be available. */
c1fc2657 14862 tp->hit_count = utp->hit_count;
f196051f
SS
14863 tp->traceframe_usage = utp->traceframe_usage;
14864
00bf0b85 14865 return tp;
d9b3f62e 14866}
00bf0b85 14867
1042e4c0
SS
14868/* Print information on tracepoint number TPNUM_EXP, or all if
14869 omitted. */
14870
14871static void
1d12d88f 14872info_tracepoints_command (const char *args, int from_tty)
1042e4c0 14873{
79a45e25 14874 struct ui_out *uiout = current_uiout;
e5a67952 14875 int num_printed;
1042e4c0 14876
e5a67952 14877 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
14878
14879 if (num_printed == 0)
1042e4c0 14880 {
e5a67952 14881 if (args == NULL || *args == '\0')
112e8700 14882 uiout->message ("No tracepoints.\n");
d77f58be 14883 else
112e8700 14884 uiout->message ("No tracepoint matching '%s'.\n", args);
1042e4c0 14885 }
ad443146
SS
14886
14887 default_collect_info ();
1042e4c0
SS
14888}
14889
4a64f543 14890/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
14891 Not supported by all targets. */
14892static void
5fed81ff 14893enable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14894{
14895 enable_command (args, from_tty);
14896}
14897
4a64f543 14898/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
14899 Not supported by all targets. */
14900static void
5fed81ff 14901disable_trace_command (const char *args, int from_tty)
1042e4c0
SS
14902{
14903 disable_command (args, from_tty);
14904}
14905
4a64f543 14906/* Remove a tracepoint (or all if no argument). */
1042e4c0 14907static void
4495129a 14908delete_trace_command (const char *arg, int from_tty)
1042e4c0 14909{
35df4500 14910 struct breakpoint *b, *b_tmp;
1042e4c0
SS
14911
14912 dont_repeat ();
14913
14914 if (arg == 0)
14915 {
14916 int breaks_to_delete = 0;
14917
14918 /* Delete all breakpoints if no argument.
14919 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
14920 have to be deleted with an explicit breakpoint number
14921 argument. */
1042e4c0 14922 ALL_TRACEPOINTS (b)
46c6471b 14923 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
14924 {
14925 breaks_to_delete = 1;
14926 break;
14927 }
1042e4c0
SS
14928
14929 /* Ask user only if there are some breakpoints to delete. */
14930 if (!from_tty
14931 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
14932 {
35df4500 14933 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 14934 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 14935 delete_breakpoint (b);
1042e4c0
SS
14936 }
14937 }
14938 else
48649e1b
TT
14939 map_breakpoint_numbers
14940 (arg, [&] (breakpoint *b)
14941 {
14942 iterate_over_related_breakpoints (b, delete_breakpoint);
14943 });
1042e4c0
SS
14944}
14945
197f0a60
TT
14946/* Helper function for trace_pass_command. */
14947
14948static void
d9b3f62e 14949trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 14950{
d9b3f62e 14951 tp->pass_count = count;
c1fc2657 14952 observer_notify_breakpoint_modified (tp);
197f0a60
TT
14953 if (from_tty)
14954 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
c1fc2657 14955 tp->number, count);
197f0a60
TT
14956}
14957
1042e4c0
SS
14958/* Set passcount for tracepoint.
14959
14960 First command argument is passcount, second is tracepoint number.
14961 If tracepoint number omitted, apply to most recently defined.
14962 Also accepts special argument "all". */
14963
14964static void
0b39b52e 14965trace_pass_command (const char *args, int from_tty)
1042e4c0 14966{
d9b3f62e 14967 struct tracepoint *t1;
0b39b52e 14968 ULONGEST count;
1042e4c0
SS
14969
14970 if (args == 0 || *args == 0)
3e43a32a
MS
14971 error (_("passcount command requires an "
14972 "argument (count + optional TP num)"));
1042e4c0 14973
0b39b52e 14974 count = strtoulst (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 14975
529480d0 14976 args = skip_spaces (args);
1042e4c0
SS
14977 if (*args && strncasecmp (args, "all", 3) == 0)
14978 {
d9b3f62e
PA
14979 struct breakpoint *b;
14980
1042e4c0 14981 args += 3; /* Skip special argument "all". */
1042e4c0
SS
14982 if (*args)
14983 error (_("Junk at end of arguments."));
1042e4c0 14984
d9b3f62e 14985 ALL_TRACEPOINTS (b)
197f0a60 14986 {
d9b3f62e 14987 t1 = (struct tracepoint *) b;
197f0a60
TT
14988 trace_pass_set_count (t1, count, from_tty);
14989 }
14990 }
14991 else if (*args == '\0')
1042e4c0 14992 {
5fa1d40e 14993 t1 = get_tracepoint_by_number (&args, NULL);
1042e4c0 14994 if (t1)
197f0a60
TT
14995 trace_pass_set_count (t1, count, from_tty);
14996 }
14997 else
14998 {
bfd28288
PA
14999 number_or_range_parser parser (args);
15000 while (!parser.finished ())
1042e4c0 15001 {
bfd28288 15002 t1 = get_tracepoint_by_number (&args, &parser);
197f0a60
TT
15003 if (t1)
15004 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
15005 }
15006 }
1042e4c0
SS
15007}
15008
d9b3f62e 15009struct tracepoint *
1042e4c0
SS
15010get_tracepoint (int num)
15011{
15012 struct breakpoint *t;
15013
15014 ALL_TRACEPOINTS (t)
15015 if (t->number == num)
d9b3f62e 15016 return (struct tracepoint *) t;
1042e4c0
SS
15017
15018 return NULL;
15019}
15020
d5551862
SS
15021/* Find the tracepoint with the given target-side number (which may be
15022 different from the tracepoint number after disconnecting and
15023 reconnecting). */
15024
d9b3f62e 15025struct tracepoint *
d5551862
SS
15026get_tracepoint_by_number_on_target (int num)
15027{
d9b3f62e 15028 struct breakpoint *b;
d5551862 15029
d9b3f62e
PA
15030 ALL_TRACEPOINTS (b)
15031 {
15032 struct tracepoint *t = (struct tracepoint *) b;
15033
15034 if (t->number_on_target == num)
15035 return t;
15036 }
d5551862
SS
15037
15038 return NULL;
15039}
15040
1042e4c0 15041/* Utility: parse a tracepoint number and look it up in the list.
197f0a60 15042 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
5fa1d40e
YQ
15043 If the argument is missing, the most recent tracepoint
15044 (tracepoint_count) is returned. */
15045
d9b3f62e 15046struct tracepoint *
0b39b52e 15047get_tracepoint_by_number (const char **arg,
bfd28288 15048 number_or_range_parser *parser)
1042e4c0 15049{
1042e4c0
SS
15050 struct breakpoint *t;
15051 int tpnum;
0b39b52e 15052 const char *instring = arg == NULL ? NULL : *arg;
1042e4c0 15053
bfd28288 15054 if (parser != NULL)
197f0a60 15055 {
bfd28288
PA
15056 gdb_assert (!parser->finished ());
15057 tpnum = parser->get_number ();
197f0a60
TT
15058 }
15059 else if (arg == NULL || *arg == NULL || ! **arg)
5fa1d40e 15060 tpnum = tracepoint_count;
1042e4c0 15061 else
197f0a60 15062 tpnum = get_number (arg);
1042e4c0
SS
15063
15064 if (tpnum <= 0)
15065 {
15066 if (instring && *instring)
15067 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
15068 instring);
15069 else
5fa1d40e 15070 printf_filtered (_("No previous tracepoint\n"));
1042e4c0
SS
15071 return NULL;
15072 }
15073
15074 ALL_TRACEPOINTS (t)
15075 if (t->number == tpnum)
15076 {
d9b3f62e 15077 return (struct tracepoint *) t;
1042e4c0
SS
15078 }
15079
1042e4c0
SS
15080 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15081 return NULL;
15082}
15083
d9b3f62e
PA
15084void
15085print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15086{
15087 if (b->thread != -1)
15088 fprintf_unfiltered (fp, " thread %d", b->thread);
15089
15090 if (b->task != 0)
15091 fprintf_unfiltered (fp, " task %d", b->task);
15092
15093 fprintf_unfiltered (fp, "\n");
15094}
15095
6149aea9
PA
15096/* Save information on user settable breakpoints (watchpoints, etc) to
15097 a new script file named FILENAME. If FILTER is non-NULL, call it
15098 on each breakpoint and only include the ones for which it returns
15099 non-zero. */
15100
1042e4c0 15101static void
4495129a 15102save_breakpoints (const char *filename, int from_tty,
6149aea9 15103 int (*filter) (const struct breakpoint *))
1042e4c0
SS
15104{
15105 struct breakpoint *tp;
6149aea9 15106 int any = 0;
6149aea9 15107 int extra_trace_bits = 0;
1042e4c0 15108
6149aea9
PA
15109 if (filename == 0 || *filename == 0)
15110 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
15111
15112 /* See if we have anything to save. */
6149aea9 15113 ALL_BREAKPOINTS (tp)
1042e4c0 15114 {
6149aea9 15115 /* Skip internal and momentary breakpoints. */
09d682a4 15116 if (!user_breakpoint_p (tp))
6149aea9
PA
15117 continue;
15118
15119 /* If we have a filter, only save the breakpoints it accepts. */
15120 if (filter && !filter (tp))
15121 continue;
15122
15123 any = 1;
15124
15125 if (is_tracepoint (tp))
15126 {
15127 extra_trace_bits = 1;
15128
15129 /* We can stop searching. */
15130 break;
15131 }
1042e4c0 15132 }
6149aea9
PA
15133
15134 if (!any)
1042e4c0 15135 {
6149aea9 15136 warning (_("Nothing to save."));
1042e4c0
SS
15137 return;
15138 }
15139
ee0c3293 15140 gdb::unique_xmalloc_ptr<char> expanded_filename (tilde_expand (filename));
d7e74731
PA
15141
15142 stdio_file fp;
15143
ee0c3293 15144 if (!fp.open (expanded_filename.get (), "w"))
6149aea9 15145 error (_("Unable to open file '%s' for saving (%s)"),
ee0c3293 15146 expanded_filename.get (), safe_strerror (errno));
8bf6485c 15147
6149aea9 15148 if (extra_trace_bits)
d7e74731 15149 save_trace_state_variables (&fp);
8bf6485c 15150
6149aea9 15151 ALL_BREAKPOINTS (tp)
1042e4c0 15152 {
6149aea9 15153 /* Skip internal and momentary breakpoints. */
09d682a4 15154 if (!user_breakpoint_p (tp))
6149aea9 15155 continue;
8bf6485c 15156
6149aea9
PA
15157 /* If we have a filter, only save the breakpoints it accepts. */
15158 if (filter && !filter (tp))
15159 continue;
15160
d7e74731 15161 tp->ops->print_recreate (tp, &fp);
1042e4c0 15162
6149aea9
PA
15163 /* Note, we can't rely on tp->number for anything, as we can't
15164 assume the recreated breakpoint numbers will match. Use $bpnum
15165 instead. */
15166
15167 if (tp->cond_string)
d7e74731 15168 fp.printf (" condition $bpnum %s\n", tp->cond_string);
6149aea9
PA
15169
15170 if (tp->ignore_count)
d7e74731 15171 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
6149aea9 15172
2d9442cc 15173 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 15174 {
d7e74731 15175 fp.puts (" commands\n");
a7bdde9e 15176
d7e74731 15177 current_uiout->redirect (&fp);
492d29ea 15178 TRY
1042e4c0 15179 {
d1b0a7bf 15180 print_command_lines (current_uiout, tp->commands.get (), 2);
a7bdde9e 15181 }
492d29ea
PA
15182 CATCH (ex, RETURN_MASK_ALL)
15183 {
112e8700 15184 current_uiout->redirect (NULL);
492d29ea
PA
15185 throw_exception (ex);
15186 }
15187 END_CATCH
1042e4c0 15188
112e8700 15189 current_uiout->redirect (NULL);
d7e74731 15190 fp.puts (" end\n");
1042e4c0 15191 }
6149aea9
PA
15192
15193 if (tp->enable_state == bp_disabled)
d7e74731 15194 fp.puts ("disable $bpnum\n");
6149aea9
PA
15195
15196 /* If this is a multi-location breakpoint, check if the locations
15197 should be individually disabled. Watchpoint locations are
15198 special, and not user visible. */
15199 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15200 {
15201 struct bp_location *loc;
15202 int n = 1;
15203
15204 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15205 if (!loc->enabled)
d7e74731 15206 fp.printf ("disable $bpnum.%d\n", n);
6149aea9 15207 }
1042e4c0 15208 }
8bf6485c 15209
6149aea9 15210 if (extra_trace_bits && *default_collect)
d7e74731 15211 fp.printf ("set default-collect %s\n", default_collect);
8bf6485c 15212
1042e4c0 15213 if (from_tty)
ee0c3293 15214 printf_filtered (_("Saved to file '%s'.\n"), expanded_filename.get ());
6149aea9
PA
15215}
15216
15217/* The `save breakpoints' command. */
15218
15219static void
4495129a 15220save_breakpoints_command (const char *args, int from_tty)
6149aea9
PA
15221{
15222 save_breakpoints (args, from_tty, NULL);
15223}
15224
15225/* The `save tracepoints' command. */
15226
15227static void
4495129a 15228save_tracepoints_command (const char *args, int from_tty)
6149aea9
PA
15229{
15230 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
15231}
15232
15233/* Create a vector of all tracepoints. */
15234
15235VEC(breakpoint_p) *
eeae04df 15236all_tracepoints (void)
1042e4c0
SS
15237{
15238 VEC(breakpoint_p) *tp_vec = 0;
15239 struct breakpoint *tp;
15240
15241 ALL_TRACEPOINTS (tp)
15242 {
15243 VEC_safe_push (breakpoint_p, tp_vec, tp);
15244 }
15245
15246 return tp_vec;
15247}
15248
c906108c 15249\f
629500fa
KS
15250/* This help string is used to consolidate all the help string for specifying
15251 locations used by several commands. */
15252
15253#define LOCATION_HELP_STRING \
15254"Linespecs are colon-separated lists of location parameters, such as\n\
15255source filename, function name, label name, and line number.\n\
15256Example: To specify the start of a label named \"the_top\" in the\n\
15257function \"fact\" in the file \"factorial.c\", use\n\
15258\"factorial.c:fact:the_top\".\n\
15259\n\
15260Address locations begin with \"*\" and specify an exact address in the\n\
15261program. Example: To specify the fourth byte past the start function\n\
15262\"main\", use \"*main + 4\".\n\
15263\n\
15264Explicit locations are similar to linespecs but use an option/argument\n\
15265syntax to specify location parameters.\n\
15266Example: To specify the start of the label named \"the_top\" in the\n\
15267function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
a20714ff
PA
15268-function fact -label the_top\".\n\
15269\n\
15270By default, a specified function is matched against the program's\n\
15271functions in all scopes. For C++, this means in all namespaces and\n\
15272classes. For Ada, this means in all packages. E.g., in C++,\n\
15273\"func()\" matches \"A::func()\", \"A::B::func()\", etc. The\n\
15274\"-qualified\" flag overrides this behavior, making GDB interpret the\n\
15275specified name as a complete fully-qualified name instead.\n"
629500fa 15276
4a64f543
MS
15277/* This help string is used for the break, hbreak, tbreak and thbreak
15278 commands. It is defined as a macro to prevent duplication.
15279 COMMAND should be a string constant containing the name of the
15280 command. */
629500fa 15281
31e2b00f 15282#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
15283command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15284PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15285probe point. Accepted values are `-probe' (for a generic, automatically\n\
d4777acb
JM
15286guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15287`-probe-dtrace' (for a DTrace probe).\n\
629500fa
KS
15288LOCATION may be a linespec, address, or explicit location as described\n\
15289below.\n\
15290\n\
dc10affe
PA
15291With no LOCATION, uses current execution address of the selected\n\
15292stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
15293\n\
15294THREADNUM is the number from \"info threads\".\n\
15295CONDITION is a boolean expression.\n\
629500fa 15296\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
15297Multiple breakpoints at one place are permitted, and useful if their\n\
15298conditions are different.\n\
31e2b00f
AS
15299\n\
15300Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15301
44feb3ce
TT
15302/* List of subcommands for "catch". */
15303static struct cmd_list_element *catch_cmdlist;
15304
15305/* List of subcommands for "tcatch". */
15306static struct cmd_list_element *tcatch_cmdlist;
15307
9ac4176b 15308void
a121b7c1 15309add_catch_command (const char *name, const char *docstring,
eb4c3f4a 15310 cmd_const_sfunc_ftype *sfunc,
625e8578 15311 completer_ftype *completer,
44feb3ce
TT
15312 void *user_data_catch,
15313 void *user_data_tcatch)
15314{
15315 struct cmd_list_element *command;
15316
0450cc4c 15317 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15318 &catch_cmdlist);
15319 set_cmd_sfunc (command, sfunc);
15320 set_cmd_context (command, user_data_catch);
a96d9b2e 15321 set_cmd_completer (command, completer);
44feb3ce 15322
0450cc4c 15323 command = add_cmd (name, class_breakpoint, docstring,
44feb3ce
TT
15324 &tcatch_cmdlist);
15325 set_cmd_sfunc (command, sfunc);
15326 set_cmd_context (command, user_data_tcatch);
a96d9b2e 15327 set_cmd_completer (command, completer);
44feb3ce
TT
15328}
15329
6149aea9 15330static void
981a3fb3 15331save_command (const char *arg, int from_tty)
6149aea9 15332{
3e43a32a
MS
15333 printf_unfiltered (_("\"save\" must be followed by "
15334 "the name of a save subcommand.\n"));
635c7e8a 15335 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
6149aea9
PA
15336}
15337
84f4c1fe
PM
15338struct breakpoint *
15339iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15340 void *data)
15341{
35df4500 15342 struct breakpoint *b, *b_tmp;
84f4c1fe 15343
35df4500 15344 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
15345 {
15346 if ((*callback) (b, data))
15347 return b;
15348 }
15349
15350 return NULL;
15351}
15352
0574c78f
GB
15353/* Zero if any of the breakpoint's locations could be a location where
15354 functions have been inlined, nonzero otherwise. */
15355
15356static int
15357is_non_inline_function (struct breakpoint *b)
15358{
15359 /* The shared library event breakpoint is set on the address of a
15360 non-inline function. */
15361 if (b->type == bp_shlib_event)
15362 return 1;
15363
15364 return 0;
15365}
15366
15367/* Nonzero if the specified PC cannot be a location where functions
15368 have been inlined. */
15369
15370int
accd0bcd 15371pc_at_non_inline_function (const address_space *aspace, CORE_ADDR pc,
09ac7c10 15372 const struct target_waitstatus *ws)
0574c78f
GB
15373{
15374 struct breakpoint *b;
15375 struct bp_location *bl;
15376
15377 ALL_BREAKPOINTS (b)
15378 {
15379 if (!is_non_inline_function (b))
15380 continue;
15381
15382 for (bl = b->loc; bl != NULL; bl = bl->next)
15383 {
15384 if (!bl->shlib_disabled
09ac7c10 15385 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
15386 return 1;
15387 }
15388 }
15389
15390 return 0;
15391}
15392
2f202fde
JK
15393/* Remove any references to OBJFILE which is going to be freed. */
15394
15395void
15396breakpoint_free_objfile (struct objfile *objfile)
15397{
15398 struct bp_location **locp, *loc;
15399
15400 ALL_BP_LOCATIONS (loc, locp)
eb822aa6 15401 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
2f202fde
JK
15402 loc->symtab = NULL;
15403}
15404
2060206e
PA
15405void
15406initialize_breakpoint_ops (void)
15407{
15408 static int initialized = 0;
15409
15410 struct breakpoint_ops *ops;
15411
15412 if (initialized)
15413 return;
15414 initialized = 1;
15415
15416 /* The breakpoint_ops structure to be inherit by all kinds of
15417 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15418 internal and momentary breakpoints, etc.). */
15419 ops = &bkpt_base_breakpoint_ops;
15420 *ops = base_breakpoint_ops;
15421 ops->re_set = bkpt_re_set;
15422 ops->insert_location = bkpt_insert_location;
15423 ops->remove_location = bkpt_remove_location;
15424 ops->breakpoint_hit = bkpt_breakpoint_hit;
5f700d83 15425 ops->create_sals_from_location = bkpt_create_sals_from_location;
983af33b 15426 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
5f700d83 15427 ops->decode_location = bkpt_decode_location;
2060206e
PA
15428
15429 /* The breakpoint_ops structure to be used in regular breakpoints. */
15430 ops = &bkpt_breakpoint_ops;
15431 *ops = bkpt_base_breakpoint_ops;
15432 ops->re_set = bkpt_re_set;
15433 ops->resources_needed = bkpt_resources_needed;
15434 ops->print_it = bkpt_print_it;
15435 ops->print_mention = bkpt_print_mention;
15436 ops->print_recreate = bkpt_print_recreate;
15437
15438 /* Ranged breakpoints. */
15439 ops = &ranged_breakpoint_ops;
15440 *ops = bkpt_breakpoint_ops;
15441 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15442 ops->resources_needed = resources_needed_ranged_breakpoint;
15443 ops->print_it = print_it_ranged_breakpoint;
15444 ops->print_one = print_one_ranged_breakpoint;
15445 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15446 ops->print_mention = print_mention_ranged_breakpoint;
15447 ops->print_recreate = print_recreate_ranged_breakpoint;
15448
15449 /* Internal breakpoints. */
15450 ops = &internal_breakpoint_ops;
15451 *ops = bkpt_base_breakpoint_ops;
15452 ops->re_set = internal_bkpt_re_set;
15453 ops->check_status = internal_bkpt_check_status;
15454 ops->print_it = internal_bkpt_print_it;
15455 ops->print_mention = internal_bkpt_print_mention;
15456
15457 /* Momentary breakpoints. */
15458 ops = &momentary_breakpoint_ops;
15459 *ops = bkpt_base_breakpoint_ops;
15460 ops->re_set = momentary_bkpt_re_set;
15461 ops->check_status = momentary_bkpt_check_status;
15462 ops->print_it = momentary_bkpt_print_it;
15463 ops->print_mention = momentary_bkpt_print_mention;
15464
55aa24fb
SDJ
15465 /* Probe breakpoints. */
15466 ops = &bkpt_probe_breakpoint_ops;
15467 *ops = bkpt_breakpoint_ops;
15468 ops->insert_location = bkpt_probe_insert_location;
15469 ops->remove_location = bkpt_probe_remove_location;
5f700d83
KS
15470 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
15471 ops->decode_location = bkpt_probe_decode_location;
55aa24fb 15472
2060206e
PA
15473 /* Watchpoints. */
15474 ops = &watchpoint_breakpoint_ops;
15475 *ops = base_breakpoint_ops;
15476 ops->re_set = re_set_watchpoint;
15477 ops->insert_location = insert_watchpoint;
15478 ops->remove_location = remove_watchpoint;
15479 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15480 ops->check_status = check_status_watchpoint;
15481 ops->resources_needed = resources_needed_watchpoint;
15482 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15483 ops->print_it = print_it_watchpoint;
15484 ops->print_mention = print_mention_watchpoint;
15485 ops->print_recreate = print_recreate_watchpoint;
427cd150 15486 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
15487
15488 /* Masked watchpoints. */
15489 ops = &masked_watchpoint_breakpoint_ops;
15490 *ops = watchpoint_breakpoint_ops;
15491 ops->insert_location = insert_masked_watchpoint;
15492 ops->remove_location = remove_masked_watchpoint;
15493 ops->resources_needed = resources_needed_masked_watchpoint;
15494 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15495 ops->print_it = print_it_masked_watchpoint;
15496 ops->print_one_detail = print_one_detail_masked_watchpoint;
15497 ops->print_mention = print_mention_masked_watchpoint;
15498 ops->print_recreate = print_recreate_masked_watchpoint;
15499
15500 /* Tracepoints. */
15501 ops = &tracepoint_breakpoint_ops;
15502 *ops = base_breakpoint_ops;
15503 ops->re_set = tracepoint_re_set;
15504 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15505 ops->print_one_detail = tracepoint_print_one_detail;
15506 ops->print_mention = tracepoint_print_mention;
15507 ops->print_recreate = tracepoint_print_recreate;
5f700d83 15508 ops->create_sals_from_location = tracepoint_create_sals_from_location;
983af33b 15509 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
5f700d83 15510 ops->decode_location = tracepoint_decode_location;
983af33b 15511
55aa24fb
SDJ
15512 /* Probe tracepoints. */
15513 ops = &tracepoint_probe_breakpoint_ops;
15514 *ops = tracepoint_breakpoint_ops;
5f700d83
KS
15515 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
15516 ops->decode_location = tracepoint_probe_decode_location;
55aa24fb 15517
983af33b
SDJ
15518 /* Static tracepoints with marker (`-m'). */
15519 ops = &strace_marker_breakpoint_ops;
15520 *ops = tracepoint_breakpoint_ops;
5f700d83 15521 ops->create_sals_from_location = strace_marker_create_sals_from_location;
983af33b 15522 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
5f700d83 15523 ops->decode_location = strace_marker_decode_location;
2060206e
PA
15524
15525 /* Fork catchpoints. */
15526 ops = &catch_fork_breakpoint_ops;
15527 *ops = base_breakpoint_ops;
15528 ops->insert_location = insert_catch_fork;
15529 ops->remove_location = remove_catch_fork;
15530 ops->breakpoint_hit = breakpoint_hit_catch_fork;
15531 ops->print_it = print_it_catch_fork;
15532 ops->print_one = print_one_catch_fork;
15533 ops->print_mention = print_mention_catch_fork;
15534 ops->print_recreate = print_recreate_catch_fork;
15535
15536 /* Vfork catchpoints. */
15537 ops = &catch_vfork_breakpoint_ops;
15538 *ops = base_breakpoint_ops;
15539 ops->insert_location = insert_catch_vfork;
15540 ops->remove_location = remove_catch_vfork;
15541 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
15542 ops->print_it = print_it_catch_vfork;
15543 ops->print_one = print_one_catch_vfork;
15544 ops->print_mention = print_mention_catch_vfork;
15545 ops->print_recreate = print_recreate_catch_vfork;
15546
15547 /* Exec catchpoints. */
15548 ops = &catch_exec_breakpoint_ops;
15549 *ops = base_breakpoint_ops;
2060206e
PA
15550 ops->insert_location = insert_catch_exec;
15551 ops->remove_location = remove_catch_exec;
15552 ops->breakpoint_hit = breakpoint_hit_catch_exec;
15553 ops->print_it = print_it_catch_exec;
15554 ops->print_one = print_one_catch_exec;
15555 ops->print_mention = print_mention_catch_exec;
15556 ops->print_recreate = print_recreate_catch_exec;
15557
edcc5120
TT
15558 /* Solib-related catchpoints. */
15559 ops = &catch_solib_breakpoint_ops;
15560 *ops = base_breakpoint_ops;
edcc5120
TT
15561 ops->insert_location = insert_catch_solib;
15562 ops->remove_location = remove_catch_solib;
15563 ops->breakpoint_hit = breakpoint_hit_catch_solib;
15564 ops->check_status = check_status_catch_solib;
15565 ops->print_it = print_it_catch_solib;
15566 ops->print_one = print_one_catch_solib;
15567 ops->print_mention = print_mention_catch_solib;
15568 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
15569
15570 ops = &dprintf_breakpoint_ops;
15571 *ops = bkpt_base_breakpoint_ops;
5c2b4418 15572 ops->re_set = dprintf_re_set;
e7e0cddf
SS
15573 ops->resources_needed = bkpt_resources_needed;
15574 ops->print_it = bkpt_print_it;
15575 ops->print_mention = bkpt_print_mention;
2d9442cc 15576 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 15577 ops->after_condition_true = dprintf_after_condition_true;
cd1608cc 15578 ops->breakpoint_hit = dprintf_breakpoint_hit;
2060206e
PA
15579}
15580
8bfd80db
YQ
15581/* Chain containing all defined "enable breakpoint" subcommands. */
15582
15583static struct cmd_list_element *enablebreaklist = NULL;
15584
c906108c 15585void
fba45db2 15586_initialize_breakpoint (void)
c906108c
SS
15587{
15588 struct cmd_list_element *c;
15589
2060206e
PA
15590 initialize_breakpoint_ops ();
15591
84acb35a 15592 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
63644780 15593 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
1f3b5d1b 15594 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 15595
55aa24fb 15596 breakpoint_objfile_key
43dce439 15597 = register_objfile_data_with_cleanup (NULL, free_breakpoint_objfile_data);
17450429 15598
c906108c
SS
15599 breakpoint_chain = 0;
15600 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
15601 before a breakpoint is set. */
15602 breakpoint_count = 0;
15603
1042e4c0
SS
15604 tracepoint_count = 0;
15605
1bedd215
AC
15606 add_com ("ignore", class_breakpoint, ignore_command, _("\
15607Set ignore-count of breakpoint number N to COUNT.\n\
15608Usage is `ignore N COUNT'."));
c906108c 15609
1bedd215 15610 add_com ("commands", class_breakpoint, commands_command, _("\
18da0c51
MG
15611Set commands to be executed when the given breakpoints are hit.\n\
15612Give a space-separated breakpoint list as argument after \"commands\".\n\
15613A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
15614(e.g. `5-7').\n\
c906108c
SS
15615With no argument, the targeted breakpoint is the last one set.\n\
15616The commands themselves follow starting on the next line.\n\
15617Type a line containing \"end\" to indicate the end of them.\n\
15618Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 15619then no output is printed when it is hit, except what the commands print."));
c906108c 15620
d55637df 15621 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 15622Specify breakpoint number N to break only if COND is true.\n\
c906108c 15623Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 15624expression to be evaluated whenever breakpoint N is reached."));
d55637df 15625 set_cmd_completer (c, condition_completer);
c906108c 15626
1bedd215 15627 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 15628Set a temporary breakpoint.\n\
c906108c
SS
15629Like \"break\" except the breakpoint is only temporary,\n\
15630so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
15631by using \"enable delete\" on the breakpoint number.\n\
15632\n"
15633BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 15634 set_cmd_completer (c, location_completer);
c94fdfd0 15635
1bedd215 15636 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 15637Set a hardware assisted breakpoint.\n\
c906108c 15638Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
15639some target hardware may not have this support.\n\
15640\n"
15641BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 15642 set_cmd_completer (c, location_completer);
c906108c 15643
1bedd215 15644 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 15645Set a temporary hardware assisted breakpoint.\n\
c906108c 15646Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
15647so it will be deleted when hit.\n\
15648\n"
15649BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 15650 set_cmd_completer (c, location_completer);
c906108c 15651
1bedd215
AC
15652 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
15653Enable some breakpoints.\n\
c906108c
SS
15654Give breakpoint numbers (separated by spaces) as arguments.\n\
15655With no subcommand, breakpoints are enabled until you command otherwise.\n\
15656This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 15657With a subcommand you can enable temporarily."),
c906108c 15658 &enablelist, "enable ", 1, &cmdlist);
c906108c
SS
15659
15660 add_com_alias ("en", "enable", class_breakpoint, 1);
15661
84951ab5 15662 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 15663Enable some breakpoints.\n\
c906108c
SS
15664Give breakpoint numbers (separated by spaces) as arguments.\n\
15665This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 15666May be abbreviated to simply \"enable\".\n"),
c5aa993b 15667 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 15668
1a966eab
AC
15669 add_cmd ("once", no_class, enable_once_command, _("\
15670Enable breakpoints for one hit. Give breakpoint numbers.\n\
15671If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
15672 &enablebreaklist);
15673
1a966eab
AC
15674 add_cmd ("delete", no_class, enable_delete_command, _("\
15675Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15676If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15677 &enablebreaklist);
15678
816338b5
SS
15679 add_cmd ("count", no_class, enable_count_command, _("\
15680Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15681If a breakpoint is hit while enabled in this fashion,\n\
15682the count is decremented; when it reaches zero, the breakpoint is disabled."),
15683 &enablebreaklist);
15684
1a966eab
AC
15685 add_cmd ("delete", no_class, enable_delete_command, _("\
15686Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15687If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
15688 &enablelist);
15689
1a966eab
AC
15690 add_cmd ("once", no_class, enable_once_command, _("\
15691Enable breakpoints for one hit. Give breakpoint numbers.\n\
15692If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
15693 &enablelist);
15694
15695 add_cmd ("count", no_class, enable_count_command, _("\
15696Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15697If a breakpoint is hit while enabled in this fashion,\n\
15698the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
15699 &enablelist);
15700
1bedd215
AC
15701 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
15702Disable some breakpoints.\n\
c906108c
SS
15703Arguments are breakpoint numbers with spaces in between.\n\
15704To disable all breakpoints, give no argument.\n\
64b9b334 15705A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
15706 &disablelist, "disable ", 1, &cmdlist);
15707 add_com_alias ("dis", "disable", class_breakpoint, 1);
15708 add_com_alias ("disa", "disable", class_breakpoint, 1);
c906108c 15709
1a966eab
AC
15710 add_cmd ("breakpoints", class_alias, disable_command, _("\
15711Disable some breakpoints.\n\
c906108c
SS
15712Arguments are breakpoint numbers with spaces in between.\n\
15713To disable all breakpoints, give no argument.\n\
64b9b334 15714A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 15715This command may be abbreviated \"disable\"."),
c906108c
SS
15716 &disablelist);
15717
1bedd215
AC
15718 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
15719Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
15720Arguments are breakpoint numbers with spaces in between.\n\
15721To delete all breakpoints, give no argument.\n\
15722\n\
15723Also a prefix command for deletion of other GDB objects.\n\
1bedd215 15724The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
15725 &deletelist, "delete ", 1, &cmdlist);
15726 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 15727 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 15728
1a966eab
AC
15729 add_cmd ("breakpoints", class_alias, delete_command, _("\
15730Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
15731Arguments are breakpoint numbers with spaces in between.\n\
15732To delete all breakpoints, give no argument.\n\
1a966eab 15733This command may be abbreviated \"delete\"."),
c906108c
SS
15734 &deletelist);
15735
1bedd215 15736 add_com ("clear", class_breakpoint, clear_command, _("\
629500fa
KS
15737Clear breakpoint at specified location.\n\
15738Argument may be a linespec, explicit, or address location as described below.\n\
1bedd215
AC
15739\n\
15740With no argument, clears all breakpoints in the line that the selected frame\n\
629500fa
KS
15741is executing in.\n"
15742"\n" LOCATION_HELP_STRING "\n\
1bedd215 15743See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 15744 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 15745
1bedd215 15746 c = add_com ("break", class_breakpoint, break_command, _("\
629500fa 15747Set breakpoint at specified location.\n"
31e2b00f 15748BREAK_ARGS_HELP ("break")));
5ba2abeb 15749 set_cmd_completer (c, location_completer);
c94fdfd0 15750
c906108c
SS
15751 add_com_alias ("b", "break", class_run, 1);
15752 add_com_alias ("br", "break", class_run, 1);
15753 add_com_alias ("bre", "break", class_run, 1);
15754 add_com_alias ("brea", "break", class_run, 1);
15755
c906108c
SS
15756 if (dbx_commands)
15757 {
1bedd215
AC
15758 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
15759Break in function/address or break at a line in the current file."),
c5aa993b
JM
15760 &stoplist, "stop ", 1, &cmdlist);
15761 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 15762 _("Break in function or address."), &stoplist);
c5aa993b 15763 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 15764 _("Break at a line in the current file."), &stoplist);
11db9430 15765 add_com ("status", class_info, info_breakpoints_command, _("\
1bedd215 15766Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15767The \"Type\" column indicates one of:\n\
15768\tbreakpoint - normal breakpoint\n\
15769\twatchpoint - watchpoint\n\
15770The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15771the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15772breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15773address and file/line number respectively.\n\
15774\n\
15775Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15776are set to the address of the last breakpoint listed unless the command\n\
15777is prefixed with \"server \".\n\n\
c906108c 15778Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15779breakpoint set."));
c906108c
SS
15780 }
15781
11db9430 15782 add_info ("breakpoints", info_breakpoints_command, _("\
e5a67952 15783Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
15784The \"Type\" column indicates one of:\n\
15785\tbreakpoint - normal breakpoint\n\
15786\twatchpoint - watchpoint\n\
15787The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15788the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15789breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
15790address and file/line number respectively.\n\
15791\n\
15792Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15793are set to the address of the last breakpoint listed unless the command\n\
15794is prefixed with \"server \".\n\n\
c906108c 15795Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 15796breakpoint set."));
c906108c 15797
6b04bdb7
MS
15798 add_info_alias ("b", "breakpoints", 1);
15799
1a966eab
AC
15800 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
15801Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
15802The \"Type\" column indicates one of:\n\
15803\tbreakpoint - normal breakpoint\n\
15804\twatchpoint - watchpoint\n\
15805\tlongjmp - internal breakpoint used to step through longjmp()\n\
15806\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
15807\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
15808\tfinish - internal breakpoint used by the \"finish\" command\n\
15809The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
15810the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15811breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
15812address and file/line number respectively.\n\
15813\n\
15814Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
15815are set to the address of the last breakpoint listed unless the command\n\
15816is prefixed with \"server \".\n\n\
c906108c 15817Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 15818breakpoint set."),
c906108c
SS
15819 &maintenanceinfolist);
15820
44feb3ce
TT
15821 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
15822Set catchpoints to catch events."),
15823 &catch_cmdlist, "catch ",
15824 0/*allow-unknown*/, &cmdlist);
15825
15826 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
15827Set temporary catchpoints to catch events."),
15828 &tcatch_cmdlist, "tcatch ",
15829 0/*allow-unknown*/, &cmdlist);
15830
44feb3ce
TT
15831 add_catch_command ("fork", _("Catch calls to fork."),
15832 catch_fork_command_1,
a96d9b2e 15833 NULL,
44feb3ce
TT
15834 (void *) (uintptr_t) catch_fork_permanent,
15835 (void *) (uintptr_t) catch_fork_temporary);
15836 add_catch_command ("vfork", _("Catch calls to vfork."),
15837 catch_fork_command_1,
a96d9b2e 15838 NULL,
44feb3ce
TT
15839 (void *) (uintptr_t) catch_vfork_permanent,
15840 (void *) (uintptr_t) catch_vfork_temporary);
15841 add_catch_command ("exec", _("Catch calls to exec."),
15842 catch_exec_command_1,
a96d9b2e
SDJ
15843 NULL,
15844 CATCH_PERMANENT,
15845 CATCH_TEMPORARY);
edcc5120
TT
15846 add_catch_command ("load", _("Catch loads of shared libraries.\n\
15847Usage: catch load [REGEX]\n\
15848If REGEX is given, only stop for libraries matching the regular expression."),
15849 catch_load_command_1,
15850 NULL,
15851 CATCH_PERMANENT,
15852 CATCH_TEMPORARY);
15853 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
15854Usage: catch unload [REGEX]\n\
15855If REGEX is given, only stop for libraries matching the regular expression."),
15856 catch_unload_command_1,
15857 NULL,
15858 CATCH_PERMANENT,
15859 CATCH_TEMPORARY);
c5aa993b 15860
1bedd215
AC
15861 c = add_com ("watch", class_breakpoint, watch_command, _("\
15862Set a watchpoint for an expression.\n\
06a64a0b 15863Usage: watch [-l|-location] EXPRESSION\n\
c906108c 15864A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15865an expression changes.\n\
15866If -l or -location is given, this evaluates EXPRESSION and watches\n\
15867the memory to which it refers."));
65d12d83 15868 set_cmd_completer (c, expression_completer);
c906108c 15869
1bedd215
AC
15870 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
15871Set a read watchpoint for an expression.\n\
06a64a0b 15872Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 15873A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15874an expression is read.\n\
15875If -l or -location is given, this evaluates EXPRESSION and watches\n\
15876the memory to which it refers."));
65d12d83 15877 set_cmd_completer (c, expression_completer);
c906108c 15878
1bedd215
AC
15879 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
15880Set a watchpoint for an expression.\n\
06a64a0b 15881Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 15882A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
15883an expression is either read or written.\n\
15884If -l or -location is given, this evaluates EXPRESSION and watches\n\
15885the memory to which it refers."));
65d12d83 15886 set_cmd_completer (c, expression_completer);
c906108c 15887
11db9430 15888 add_info ("watchpoints", info_watchpoints_command, _("\
e5a67952 15889Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 15890
920d2a44
AC
15891 /* XXX: cagney/2005-02-23: This should be a boolean, and should
15892 respond to changes - contrary to the description. */
85c07804
AC
15893 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
15894 &can_use_hw_watchpoints, _("\
15895Set debugger's willingness to use watchpoint hardware."), _("\
15896Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
15897If zero, gdb will not use hardware for new watchpoints, even if\n\
15898such is available. (However, any hardware watchpoints that were\n\
15899created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
15900hardware.)"),
15901 NULL,
920d2a44 15902 show_can_use_hw_watchpoints,
85c07804 15903 &setlist, &showlist);
c906108c
SS
15904
15905 can_use_hw_watchpoints = 1;
fa8d40ab 15906
1042e4c0
SS
15907 /* Tracepoint manipulation commands. */
15908
15909 c = add_com ("trace", class_breakpoint, trace_command, _("\
629500fa 15910Set a tracepoint at specified location.\n\
1042e4c0
SS
15911\n"
15912BREAK_ARGS_HELP ("trace") "\n\
15913Do \"help tracepoints\" for info on other tracepoint commands."));
15914 set_cmd_completer (c, location_completer);
15915
15916 add_com_alias ("tp", "trace", class_alias, 0);
15917 add_com_alias ("tr", "trace", class_alias, 1);
15918 add_com_alias ("tra", "trace", class_alias, 1);
15919 add_com_alias ("trac", "trace", class_alias, 1);
15920
7a697b8d 15921 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
629500fa 15922Set a fast tracepoint at specified location.\n\
7a697b8d
SS
15923\n"
15924BREAK_ARGS_HELP ("ftrace") "\n\
15925Do \"help tracepoints\" for info on other tracepoint commands."));
15926 set_cmd_completer (c, location_completer);
15927
0fb4aa4b 15928 c = add_com ("strace", class_breakpoint, strace_command, _("\
629500fa 15929Set a static tracepoint at location or marker.\n\
0fb4aa4b
PA
15930\n\
15931strace [LOCATION] [if CONDITION]\n\
629500fa
KS
15932LOCATION may be a linespec, explicit, or address location (described below) \n\
15933or -m MARKER_ID.\n\n\
15934If a marker id is specified, probe the marker with that name. With\n\
15935no LOCATION, uses current execution address of the selected stack frame.\n\
0fb4aa4b
PA
15936Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
15937This collects arbitrary user data passed in the probe point call to the\n\
15938tracing library. You can inspect it when analyzing the trace buffer,\n\
15939by printing the $_sdata variable like any other convenience variable.\n\
15940\n\
15941CONDITION is a boolean expression.\n\
629500fa 15942\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
15943Multiple tracepoints at one place are permitted, and useful if their\n\
15944conditions are different.\n\
0fb4aa4b
PA
15945\n\
15946Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
15947Do \"help tracepoints\" for info on other tracepoint commands."));
15948 set_cmd_completer (c, location_completer);
15949
11db9430 15950 add_info ("tracepoints", info_tracepoints_command, _("\
e5a67952 15951Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
15952Convenience variable \"$tpnum\" contains the number of the\n\
15953last tracepoint set."));
15954
15955 add_info_alias ("tp", "tracepoints", 1);
15956
15957 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
15958Delete specified tracepoints.\n\
15959Arguments are tracepoint numbers, separated by spaces.\n\
15960No argument means delete all tracepoints."),
15961 &deletelist);
7e20dfcd 15962 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
15963
15964 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
15965Disable specified tracepoints.\n\
15966Arguments are tracepoint numbers, separated by spaces.\n\
15967No argument means disable all tracepoints."),
15968 &disablelist);
15969 deprecate_cmd (c, "disable");
15970
15971 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
15972Enable specified tracepoints.\n\
15973Arguments are tracepoint numbers, separated by spaces.\n\
15974No argument means enable all tracepoints."),
15975 &enablelist);
15976 deprecate_cmd (c, "enable");
15977
15978 add_com ("passcount", class_trace, trace_pass_command, _("\
15979Set the passcount for a tracepoint.\n\
15980The trace will end when the tracepoint has been passed 'count' times.\n\
15981Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
15982if TPNUM is omitted, passcount refers to the last tracepoint defined."));
15983
6149aea9
PA
15984 add_prefix_cmd ("save", class_breakpoint, save_command,
15985 _("Save breakpoint definitions as a script."),
15986 &save_cmdlist, "save ",
15987 0/*allow-unknown*/, &cmdlist);
15988
15989 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
15990Save current breakpoint definitions as a script.\n\
cce7e648 15991This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
15992catchpoints, tracepoints). Use the 'source' command in another debug\n\
15993session to restore them."),
15994 &save_cmdlist);
15995 set_cmd_completer (c, filename_completer);
15996
15997 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 15998Save current tracepoint definitions as a script.\n\
6149aea9
PA
15999Use the 'source' command in another debug session to restore them."),
16000 &save_cmdlist);
1042e4c0
SS
16001 set_cmd_completer (c, filename_completer);
16002
6149aea9
PA
16003 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
16004 deprecate_cmd (c, "save tracepoints");
16005
1bedd215 16006 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
16007Breakpoint specific settings\n\
16008Configure various breakpoint-specific variables such as\n\
1bedd215 16009pending breakpoint behavior"),
fa8d40ab
JJ
16010 &breakpoint_set_cmdlist, "set breakpoint ",
16011 0/*allow-unknown*/, &setlist);
1bedd215 16012 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
16013Breakpoint specific settings\n\
16014Configure various breakpoint-specific variables such as\n\
1bedd215 16015pending breakpoint behavior"),
fa8d40ab
JJ
16016 &breakpoint_show_cmdlist, "show breakpoint ",
16017 0/*allow-unknown*/, &showlist);
16018
7915a72c
AC
16019 add_setshow_auto_boolean_cmd ("pending", no_class,
16020 &pending_break_support, _("\
16021Set debugger's behavior regarding pending breakpoints."), _("\
16022Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
16023If on, an unrecognized breakpoint location will cause gdb to create a\n\
16024pending breakpoint. If off, an unrecognized breakpoint location results in\n\
16025an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 16026user-query to see if a pending breakpoint should be created."),
2c5b56ce 16027 NULL,
920d2a44 16028 show_pending_break_support,
6e1d7d6c
AC
16029 &breakpoint_set_cmdlist,
16030 &breakpoint_show_cmdlist);
fa8d40ab
JJ
16031
16032 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
16033
16034 add_setshow_boolean_cmd ("auto-hw", no_class,
16035 &automatic_hardware_breakpoints, _("\
16036Set automatic usage of hardware breakpoints."), _("\
16037Show automatic usage of hardware breakpoints."), _("\
16038If set, the debugger will automatically use hardware breakpoints for\n\
16039breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
16040a warning will be emitted for such breakpoints."),
16041 NULL,
16042 show_automatic_hardware_breakpoints,
16043 &breakpoint_set_cmdlist,
16044 &breakpoint_show_cmdlist);
74960c60 16045
a25a5a45
PA
16046 add_setshow_boolean_cmd ("always-inserted", class_support,
16047 &always_inserted_mode, _("\
74960c60
VP
16048Set mode for inserting breakpoints."), _("\
16049Show mode for inserting breakpoints."), _("\
a25a5a45
PA
16050When this mode is on, breakpoints are inserted immediately as soon as\n\
16051they're created, kept inserted even when execution stops, and removed\n\
16052only when the user deletes them. When this mode is off (the default),\n\
16053breakpoints are inserted only when execution continues, and removed\n\
16054when execution stops."),
72d0e2c5
YQ
16055 NULL,
16056 &show_always_inserted_mode,
16057 &breakpoint_set_cmdlist,
16058 &breakpoint_show_cmdlist);
f1310107 16059
b775012e
LM
16060 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
16061 condition_evaluation_enums,
16062 &condition_evaluation_mode_1, _("\
16063Set mode of breakpoint condition evaluation."), _("\
16064Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 16065When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
16066evaluated on the host's side by GDB. When it is set to \"target\",\n\
16067breakpoint conditions will be downloaded to the target (if the target\n\
16068supports such feature) and conditions will be evaluated on the target's side.\n\
16069If this is set to \"auto\" (default), this will be automatically set to\n\
16070\"target\" if it supports condition evaluation, otherwise it will\n\
16071be set to \"gdb\""),
16072 &set_condition_evaluation_mode,
16073 &show_condition_evaluation_mode,
16074 &breakpoint_set_cmdlist,
16075 &breakpoint_show_cmdlist);
16076
f1310107
TJB
16077 add_com ("break-range", class_breakpoint, break_range_command, _("\
16078Set a breakpoint for an address range.\n\
16079break-range START-LOCATION, END-LOCATION\n\
16080where START-LOCATION and END-LOCATION can be one of the following:\n\
16081 LINENUM, for that line in the current file,\n\
16082 FILE:LINENUM, for that line in that file,\n\
16083 +OFFSET, for that number of lines after the current line\n\
16084 or the start of the range\n\
16085 FUNCTION, for the first line in that function,\n\
16086 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16087 *ADDRESS, for the instruction at that address.\n\
16088\n\
16089The breakpoint will stop execution of the inferior whenever it executes\n\
16090an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16091range (including START-LOCATION and END-LOCATION)."));
16092
e7e0cddf 16093 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
629500fa 16094Set a dynamic printf at specified location.\n\
e7e0cddf 16095dprintf location,format string,arg1,arg2,...\n\
629500fa
KS
16096location may be a linespec, explicit, or address location.\n"
16097"\n" LOCATION_HELP_STRING));
e7e0cddf
SS
16098 set_cmd_completer (c, location_completer);
16099
16100 add_setshow_enum_cmd ("dprintf-style", class_support,
16101 dprintf_style_enums, &dprintf_style, _("\
16102Set the style of usage for dynamic printf."), _("\
16103Show the style of usage for dynamic printf."), _("\
16104This setting chooses how GDB will do a dynamic printf.\n\
16105If the value is \"gdb\", then the printing is done by GDB to its own\n\
16106console, as with the \"printf\" command.\n\
16107If the value is \"call\", the print is done by calling a function in your\n\
16108program; by default printf(), but you can choose a different function or\n\
16109output stream by setting dprintf-function and dprintf-channel."),
16110 update_dprintf_commands, NULL,
16111 &setlist, &showlist);
16112
16113 dprintf_function = xstrdup ("printf");
16114 add_setshow_string_cmd ("dprintf-function", class_support,
16115 &dprintf_function, _("\
16116Set the function to use for dynamic printf"), _("\
16117Show the function to use for dynamic printf"), NULL,
16118 update_dprintf_commands, NULL,
16119 &setlist, &showlist);
16120
16121 dprintf_channel = xstrdup ("");
16122 add_setshow_string_cmd ("dprintf-channel", class_support,
16123 &dprintf_channel, _("\
16124Set the channel to use for dynamic printf"), _("\
16125Show the channel to use for dynamic printf"), NULL,
16126 update_dprintf_commands, NULL,
16127 &setlist, &showlist);
16128
d3ce09f5
SS
16129 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16130 &disconnected_dprintf, _("\
16131Set whether dprintf continues after GDB disconnects."), _("\
16132Show whether dprintf continues after GDB disconnects."), _("\
16133Use this to let dprintf commands continue to hit and produce output\n\
16134even if GDB disconnects or detaches from the target."),
16135 NULL,
16136 NULL,
16137 &setlist, &showlist);
16138
16139 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16140agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16141(target agent only) This is useful for formatted output in user-defined commands."));
16142
765dc015 16143 automatic_hardware_breakpoints = 1;
f3b1572e
PA
16144
16145 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
49fa26b0 16146 observer_attach_thread_exit (remove_threaded_breakpoints);
c906108c 16147}