gdb: Move DJGPP/go32 bits to their own tdep file
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
61baf725 3 Copyright (C) 1986-2017 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"
5b7f31a4 47#include "gdb.h"
8b93c638 48#include "ui-out.h"
e1507482 49#include "cli/cli-script.h"
fe898f56 50#include "block.h"
a77053c2 51#include "solib.h"
84acb35a
JJ
52#include "solist.h"
53#include "observer.h"
765dc015 54#include "memattr.h"
f7f9143b 55#include "ada-lang.h"
d1aa2f50 56#include "top.h"
79a45b7d 57#include "valprint.h"
4efc6507 58#include "jit.h"
65d79d4b 59#include "parser-defs.h"
55aa24fb
SDJ
60#include "gdb_regex.h"
61#include "probe.h"
e9cafbcc 62#include "cli/cli-utils.h"
be34f849 63#include "continuations.h"
1bfeeb0f
JL
64#include "stack.h"
65#include "skip.h"
b775012e 66#include "ax-gdb.h"
e2e4d78b 67#include "dummy-frame.h"
5589af0e 68#include "interps.h"
d3ce09f5 69#include "format.h"
f00aae0f 70#include "location.h"
cfc31633 71#include "thread-fsm.h"
5d5658a1 72#include "tid-parse.h"
d3ce09f5 73
1042e4c0
SS
74/* readline include files */
75#include "readline/readline.h"
76#include "readline/history.h"
77
78/* readline defines this. */
79#undef savestring
80
034dad6f 81#include "mi/mi-common.h"
6dddc817 82#include "extension.h"
325fac50 83#include <algorithm>
104c1213 84
e7e8980f
YQ
85/* Enums for exception-handling support. */
86enum exception_event_kind
87{
88 EX_EVENT_THROW,
591f19e8 89 EX_EVENT_RETHROW,
e7e8980f
YQ
90 EX_EVENT_CATCH
91};
92
4a64f543 93/* Prototypes for local functions. */
c906108c 94
a14ed312 95static void enable_delete_command (char *, int);
c906108c 96
a14ed312 97static void enable_once_command (char *, int);
c906108c 98
816338b5
SS
99static void enable_count_command (char *, int);
100
a14ed312 101static void disable_command (char *, int);
c906108c 102
a14ed312 103static void enable_command (char *, int);
c906108c 104
896b6bda
PA
105static void map_breakpoint_numbers (const char *,
106 void (*) (struct breakpoint *,
107 void *),
95a42b64 108 void *);
c906108c 109
a14ed312 110static void ignore_command (char *, int);
c906108c 111
4efb68b1 112static int breakpoint_re_set_one (void *);
c906108c 113
348d480f
PA
114static void breakpoint_re_set_default (struct breakpoint *);
115
f00aae0f
KS
116static void
117 create_sals_from_location_default (const struct event_location *location,
118 struct linespec_result *canonical,
119 enum bptype type_wanted);
983af33b
SDJ
120
121static void create_breakpoints_sal_default (struct gdbarch *,
122 struct linespec_result *,
e7e0cddf 123 char *, char *, enum bptype,
983af33b
SDJ
124 enum bpdisp, int, int,
125 int,
126 const struct breakpoint_ops *,
44f238bb 127 int, int, int, unsigned);
983af33b 128
f00aae0f
KS
129static void decode_location_default (struct breakpoint *b,
130 const struct event_location *location,
c2f4122d 131 struct program_space *search_pspace,
f00aae0f 132 struct symtabs_and_lines *sals);
983af33b 133
a14ed312 134static void clear_command (char *, int);
c906108c 135
a14ed312 136static void catch_command (char *, int);
c906108c 137
a9634178 138static int can_use_hardware_watchpoint (struct value *);
c906108c 139
98deb0da 140static void break_command_1 (char *, int, int);
c906108c 141
a14ed312 142static void mention (struct breakpoint *);
c906108c 143
348d480f
PA
144static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
145 enum bptype,
c0a91b2b 146 const struct breakpoint_ops *);
3742cc8b
YQ
147static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
148 const struct symtab_and_line *);
149
4a64f543
MS
150/* This function is used in gdbtk sources and thus can not be made
151 static. */
63c252f8 152struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 153 struct symtab_and_line,
c0a91b2b
TT
154 enum bptype,
155 const struct breakpoint_ops *);
c906108c 156
06edf0c0
PA
157static struct breakpoint *
158 momentary_breakpoint_from_master (struct breakpoint *orig,
159 enum bptype type,
a1aa2221
LM
160 const struct breakpoint_ops *ops,
161 int loc_enabled);
06edf0c0 162
76897487
KB
163static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
164
a6d9a66e
UW
165static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
166 CORE_ADDR bpaddr,
88f7da05 167 enum bptype bptype);
76897487 168
6c95b8df
PA
169static void describe_other_breakpoints (struct gdbarch *,
170 struct program_space *, CORE_ADDR,
5af949e3 171 struct obj_section *, int);
c906108c 172
85d721b8
PA
173static int watchpoint_locations_match (struct bp_location *loc1,
174 struct bp_location *loc2);
175
f1310107
TJB
176static int breakpoint_location_address_match (struct bp_location *bl,
177 struct address_space *aspace,
178 CORE_ADDR addr);
179
d35ae833
PA
180static int breakpoint_location_address_range_overlap (struct bp_location *,
181 struct address_space *,
182 CORE_ADDR, int);
183
a14ed312 184static void breakpoints_info (char *, int);
c906108c 185
d77f58be
SS
186static void watchpoints_info (char *, int);
187
e5a67952
MS
188static int breakpoint_1 (char *, int,
189 int (*) (const struct breakpoint *));
c906108c 190
4efb68b1 191static int breakpoint_cond_eval (void *);
c906108c 192
4efb68b1 193static void cleanup_executing_breakpoints (void *);
c906108c 194
a14ed312 195static void commands_command (char *, int);
c906108c 196
a14ed312 197static void condition_command (char *, int);
c906108c 198
834c0d03 199static int remove_breakpoint (struct bp_location *);
b2b6a7da 200static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
c906108c 201
e514a9d6 202static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 203
4efb68b1 204static int watchpoint_check (void *);
c906108c 205
a14ed312 206static void maintenance_info_breakpoints (char *, int);
c906108c 207
a14ed312 208static int hw_breakpoint_used_count (void);
c906108c 209
a1398e0c
PA
210static int hw_watchpoint_use_count (struct breakpoint *);
211
212static int hw_watchpoint_used_count_others (struct breakpoint *except,
213 enum bptype type,
214 int *other_type_used);
c906108c 215
a14ed312 216static void hbreak_command (char *, int);
c906108c 217
a14ed312 218static void thbreak_command (char *, int);
c906108c 219
816338b5
SS
220static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
221 int count);
c906108c 222
a14ed312 223static void stop_command (char *arg, int from_tty);
7a292a7a 224
a14ed312 225static void stopin_command (char *arg, int from_tty);
7a292a7a 226
a14ed312 227static void stopat_command (char *arg, int from_tty);
7a292a7a 228
a14ed312 229static void tcatch_command (char *arg, int from_tty);
7a292a7a 230
fe3f5fa8 231static void free_bp_location (struct bp_location *loc);
f431efe5
PA
232static void incref_bp_location (struct bp_location *loc);
233static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 234
39d61571 235static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 236
44702360
PA
237/* update_global_location_list's modes of operation wrt to whether to
238 insert locations now. */
239enum ugll_insert_mode
240{
241 /* Don't insert any breakpoint locations into the inferior, only
242 remove already-inserted locations that no longer should be
243 inserted. Functions that delete a breakpoint or breakpoints
244 should specify this mode, so that deleting a breakpoint doesn't
245 have the side effect of inserting the locations of other
246 breakpoints that are marked not-inserted, but should_be_inserted
247 returns true on them.
248
249 This behavior is useful is situations close to tear-down -- e.g.,
250 after an exec, while the target still has execution, but
251 breakpoint shadows of the previous executable image should *NOT*
252 be restored to the new image; or before detaching, where the
253 target still has execution and wants to delete breakpoints from
254 GDB's lists, and all breakpoints had already been removed from
255 the inferior. */
256 UGLL_DONT_INSERT,
257
a25a5a45
PA
258 /* May insert breakpoints iff breakpoints_should_be_inserted_now
259 claims breakpoints should be inserted now. */
04086b45
PA
260 UGLL_MAY_INSERT,
261
a25a5a45
PA
262 /* Insert locations now, irrespective of
263 breakpoints_should_be_inserted_now. E.g., say all threads are
264 stopped right now, and the user did "continue". We need to
265 insert breakpoints _before_ resuming the target, but
266 UGLL_MAY_INSERT wouldn't insert them, because
267 breakpoints_should_be_inserted_now returns false at that point,
268 as no thread is running yet. */
04086b45 269 UGLL_INSERT
44702360
PA
270};
271
272static void update_global_location_list (enum ugll_insert_mode);
a5606eee 273
44702360 274static void update_global_location_list_nothrow (enum ugll_insert_mode);
74960c60 275
d77f58be 276static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60
VP
277
278static void insert_breakpoint_locations (void);
a5606eee 279
1042e4c0
SS
280static void tracepoints_info (char *, int);
281
282static void delete_trace_command (char *, int);
283
284static void enable_trace_command (char *, int);
285
286static void disable_trace_command (char *, int);
287
288static void trace_pass_command (char *, int);
289
558a9d82
YQ
290static void set_tracepoint_count (int num);
291
9c06b0b4
TJB
292static int is_masked_watchpoint (const struct breakpoint *b);
293
b775012e
LM
294static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
295
983af33b
SDJ
296/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
297 otherwise. */
298
299static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 300
2060206e
PA
301/* The breakpoint_ops structure to be inherited by all breakpoint_ops
302 that are implemented on top of software or hardware breakpoints
303 (user breakpoints, internal and momentary breakpoints, etc.). */
304static struct breakpoint_ops bkpt_base_breakpoint_ops;
305
306/* Internal breakpoints class type. */
06edf0c0 307static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
308
309/* Momentary breakpoints class type. */
06edf0c0
PA
310static struct breakpoint_ops momentary_breakpoint_ops;
311
e2e4d78b
JK
312/* Momentary breakpoints for bp_longjmp and bp_exception class type. */
313static struct breakpoint_ops longjmp_breakpoint_ops;
314
2060206e
PA
315/* The breakpoint_ops structure to be used in regular user created
316 breakpoints. */
317struct breakpoint_ops bkpt_breakpoint_ops;
318
55aa24fb
SDJ
319/* Breakpoints set on probes. */
320static struct breakpoint_ops bkpt_probe_breakpoint_ops;
321
e7e0cddf 322/* Dynamic printf class type. */
c5867ab6 323struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 324
d3ce09f5
SS
325/* The style in which to perform a dynamic printf. This is a user
326 option because different output options have different tradeoffs;
327 if GDB does the printing, there is better error handling if there
328 is a problem with any of the arguments, but using an inferior
329 function lets you have special-purpose printers and sending of
330 output to the same place as compiled-in print functions. */
331
332static const char dprintf_style_gdb[] = "gdb";
333static const char dprintf_style_call[] = "call";
334static const char dprintf_style_agent[] = "agent";
335static const char *const dprintf_style_enums[] = {
336 dprintf_style_gdb,
337 dprintf_style_call,
338 dprintf_style_agent,
339 NULL
340};
341static const char *dprintf_style = dprintf_style_gdb;
342
343/* The function to use for dynamic printf if the preferred style is to
344 call into the inferior. The value is simply a string that is
345 copied into the command, so it can be anything that GDB can
346 evaluate to a callable address, not necessarily a function name. */
347
bde6261a 348static char *dprintf_function;
d3ce09f5
SS
349
350/* The channel to use for dynamic printf if the preferred style is to
351 call into the inferior; if a nonempty string, it will be passed to
352 the call as the first argument, with the format string as the
353 second. As with the dprintf function, this can be anything that
354 GDB knows how to evaluate, so in addition to common choices like
355 "stderr", this could be an app-specific expression like
356 "mystreams[curlogger]". */
357
bde6261a 358static char *dprintf_channel;
d3ce09f5
SS
359
360/* True if dprintf commands should continue to operate even if GDB
361 has disconnected. */
362static int disconnected_dprintf = 1;
363
5cea2a26
PA
364/* A reference-counted struct command_line. This lets multiple
365 breakpoints share a single command list. */
366struct counted_command_line
367{
368 /* The reference count. */
369 int refc;
370
371 /* The command list. */
372 struct command_line *commands;
373};
374
375struct command_line *
376breakpoint_commands (struct breakpoint *b)
377{
378 return b->commands ? b->commands->commands : NULL;
379}
3daf8fe5 380
f3b1572e
PA
381/* Flag indicating that a command has proceeded the inferior past the
382 current breakpoint. */
383
384static int breakpoint_proceeded;
385
956a9fb9 386const char *
2cec12e5
AR
387bpdisp_text (enum bpdisp disp)
388{
4a64f543
MS
389 /* NOTE: the following values are a part of MI protocol and
390 represent values of 'disp' field returned when inferior stops at
391 a breakpoint. */
bc043ef3 392 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 393
2cec12e5
AR
394 return bpdisps[(int) disp];
395}
c906108c 396
4a64f543 397/* Prototypes for exported functions. */
c906108c 398/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 399 if such is available. */
c906108c
SS
400static int can_use_hw_watchpoints;
401
920d2a44
AC
402static void
403show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
404 struct cmd_list_element *c,
405 const char *value)
406{
3e43a32a
MS
407 fprintf_filtered (file,
408 _("Debugger's willingness to use "
409 "watchpoint hardware is %s.\n"),
920d2a44
AC
410 value);
411}
412
fa8d40ab
JJ
413/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
414 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 415 for unrecognized breakpoint locations.
fa8d40ab
JJ
416 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
417static enum auto_boolean pending_break_support;
920d2a44
AC
418static void
419show_pending_break_support (struct ui_file *file, int from_tty,
420 struct cmd_list_element *c,
421 const char *value)
422{
3e43a32a
MS
423 fprintf_filtered (file,
424 _("Debugger's behavior regarding "
425 "pending breakpoints is %s.\n"),
920d2a44
AC
426 value);
427}
fa8d40ab 428
765dc015 429/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 430 set with "break" but falling in read-only memory.
765dc015
VP
431 If 0, gdb will warn about such breakpoints, but won't automatically
432 use hardware breakpoints. */
433static int automatic_hardware_breakpoints;
434static void
435show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
436 struct cmd_list_element *c,
437 const char *value)
438{
3e43a32a
MS
439 fprintf_filtered (file,
440 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
441 value);
442}
443
a25a5a45
PA
444/* If on, GDB keeps breakpoints inserted even if the inferior is
445 stopped, and immediately inserts any new breakpoints as soon as
446 they're created. If off (default), GDB keeps breakpoints off of
447 the target as long as possible. That is, it delays inserting
448 breakpoints until the next resume, and removes them again when the
449 target fully stops. This is a bit safer in case GDB crashes while
450 processing user input. */
451static int always_inserted_mode = 0;
72d0e2c5 452
33e5cbd6 453static void
74960c60 454show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 455 struct cmd_list_element *c, const char *value)
74960c60 456{
a25a5a45
PA
457 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
458 value);
74960c60
VP
459}
460
b57bacec
PA
461/* See breakpoint.h. */
462
33e5cbd6 463int
a25a5a45 464breakpoints_should_be_inserted_now (void)
33e5cbd6 465{
a25a5a45
PA
466 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
467 {
468 /* If breakpoints are global, they should be inserted even if no
469 thread under gdb's control is running, or even if there are
470 no threads under GDB's control yet. */
471 return 1;
472 }
473 else if (target_has_execution)
474 {
372316f1
PA
475 struct thread_info *tp;
476
a25a5a45
PA
477 if (always_inserted_mode)
478 {
479 /* The user wants breakpoints inserted even if all threads
480 are stopped. */
481 return 1;
482 }
483
b57bacec
PA
484 if (threads_are_executing ())
485 return 1;
372316f1
PA
486
487 /* Don't remove breakpoints yet if, even though all threads are
488 stopped, we still have events to process. */
489 ALL_NON_EXITED_THREADS (tp)
490 if (tp->resumed
491 && tp->suspend.waitstatus_pending_p)
492 return 1;
a25a5a45
PA
493 }
494 return 0;
33e5cbd6 495}
765dc015 496
b775012e
LM
497static const char condition_evaluation_both[] = "host or target";
498
499/* Modes for breakpoint condition evaluation. */
500static const char condition_evaluation_auto[] = "auto";
501static const char condition_evaluation_host[] = "host";
502static const char condition_evaluation_target[] = "target";
503static const char *const condition_evaluation_enums[] = {
504 condition_evaluation_auto,
505 condition_evaluation_host,
506 condition_evaluation_target,
507 NULL
508};
509
510/* Global that holds the current mode for breakpoint condition evaluation. */
511static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
512
513/* Global that we use to display information to the user (gets its value from
514 condition_evaluation_mode_1. */
515static const char *condition_evaluation_mode = condition_evaluation_auto;
516
517/* Translate a condition evaluation mode MODE into either "host"
518 or "target". This is used mostly to translate from "auto" to the
519 real setting that is being used. It returns the translated
520 evaluation mode. */
521
522static const char *
523translate_condition_evaluation_mode (const char *mode)
524{
525 if (mode == condition_evaluation_auto)
526 {
527 if (target_supports_evaluation_of_breakpoint_conditions ())
528 return condition_evaluation_target;
529 else
530 return condition_evaluation_host;
531 }
532 else
533 return mode;
534}
535
536/* Discovers what condition_evaluation_auto translates to. */
537
538static const char *
539breakpoint_condition_evaluation_mode (void)
540{
541 return translate_condition_evaluation_mode (condition_evaluation_mode);
542}
543
544/* Return true if GDB should evaluate breakpoint conditions or false
545 otherwise. */
546
547static int
548gdb_evaluates_breakpoint_condition_p (void)
549{
550 const char *mode = breakpoint_condition_evaluation_mode ();
551
552 return (mode == condition_evaluation_host);
553}
554
a14ed312 555void _initialize_breakpoint (void);
c906108c 556
c906108c
SS
557/* Are we executing breakpoint commands? */
558static int executing_breakpoint_commands;
559
c02f5703
MS
560/* Are overlay event breakpoints enabled? */
561static int overlay_events_enabled;
562
e09342b5
TJB
563/* See description in breakpoint.h. */
564int target_exact_watchpoints = 0;
565
c906108c 566/* Walk the following statement or block through all breakpoints.
e5dd4106 567 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 568 current breakpoint. */
c906108c 569
5c44784c 570#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 571
5c44784c
JM
572#define ALL_BREAKPOINTS_SAFE(B,TMP) \
573 for (B = breakpoint_chain; \
574 B ? (TMP=B->next, 1): 0; \
575 B = TMP)
c906108c 576
4a64f543
MS
577/* Similar iterator for the low-level breakpoints. SAFE variant is
578 not provided so update_global_location_list must not be called
579 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 580
876fa593
JK
581#define ALL_BP_LOCATIONS(B,BP_TMP) \
582 for (BP_TMP = bp_location; \
583 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
584 BP_TMP++)
7cc221ef 585
b775012e
LM
586/* Iterates through locations with address ADDRESS for the currently selected
587 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
588 to where the loop should start from.
589 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
590 appropriate location to start with. */
591
592#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
593 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
594 BP_LOCP_TMP = BP_LOCP_START; \
595 BP_LOCP_START \
596 && (BP_LOCP_TMP < bp_location + bp_location_count \
597 && (*BP_LOCP_TMP)->address == ADDRESS); \
598 BP_LOCP_TMP++)
599
1042e4c0
SS
600/* Iterator for tracepoints only. */
601
602#define ALL_TRACEPOINTS(B) \
603 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 604 if (is_tracepoint (B))
1042e4c0 605
7cc221ef 606/* Chains of all breakpoints defined. */
c906108c
SS
607
608struct breakpoint *breakpoint_chain;
609
876fa593
JK
610/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
611
612static struct bp_location **bp_location;
613
614/* Number of elements of BP_LOCATION. */
615
616static unsigned bp_location_count;
617
4a64f543
MS
618/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
619 ADDRESS for the current elements of BP_LOCATION which get a valid
620 result from bp_location_has_shadow. You can use it for roughly
621 limiting the subrange of BP_LOCATION to scan for shadow bytes for
622 an address you need to read. */
876fa593
JK
623
624static CORE_ADDR bp_location_placed_address_before_address_max;
625
4a64f543
MS
626/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
627 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
628 BP_LOCATION which get a valid result from bp_location_has_shadow.
629 You can use it for roughly limiting the subrange of BP_LOCATION to
630 scan for shadow bytes for an address you need to read. */
876fa593
JK
631
632static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 633
4a64f543
MS
634/* The locations that no longer correspond to any breakpoint, unlinked
635 from bp_location array, but for which a hit may still be reported
636 by a target. */
20874c92
VP
637VEC(bp_location_p) *moribund_locations = NULL;
638
c906108c
SS
639/* Number of last breakpoint made. */
640
95a42b64
TT
641static int breakpoint_count;
642
86b17b60
PA
643/* The value of `breakpoint_count' before the last command that
644 created breakpoints. If the last (break-like) command created more
645 than one breakpoint, then the difference between BREAKPOINT_COUNT
646 and PREV_BREAKPOINT_COUNT is more than one. */
647static int prev_breakpoint_count;
c906108c 648
1042e4c0
SS
649/* Number of last tracepoint made. */
650
95a42b64 651static int tracepoint_count;
1042e4c0 652
6149aea9
PA
653static struct cmd_list_element *breakpoint_set_cmdlist;
654static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 655struct cmd_list_element *save_cmdlist;
6149aea9 656
badd37ce
SDJ
657/* See declaration at breakpoint.h. */
658
659struct breakpoint *
660breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
661 void *user_data)
662{
663 struct breakpoint *b = NULL;
664
665 ALL_BREAKPOINTS (b)
666 {
667 if (func (b, user_data) != 0)
668 break;
669 }
670
671 return b;
672}
673
468d015d
JJ
674/* Return whether a breakpoint is an active enabled breakpoint. */
675static int
676breakpoint_enabled (struct breakpoint *b)
677{
0d381245 678 return (b->enable_state == bp_enabled);
468d015d
JJ
679}
680
c906108c
SS
681/* Set breakpoint count to NUM. */
682
95a42b64 683static void
fba45db2 684set_breakpoint_count (int num)
c906108c 685{
86b17b60 686 prev_breakpoint_count = breakpoint_count;
c906108c 687 breakpoint_count = num;
4fa62494 688 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
689}
690
86b17b60
PA
691/* Used by `start_rbreak_breakpoints' below, to record the current
692 breakpoint count before "rbreak" creates any breakpoint. */
693static int rbreak_start_breakpoint_count;
694
95a42b64
TT
695/* Called at the start an "rbreak" command to record the first
696 breakpoint made. */
86b17b60 697
95a42b64
TT
698void
699start_rbreak_breakpoints (void)
700{
86b17b60 701 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
702}
703
704/* Called at the end of an "rbreak" command to record the last
705 breakpoint made. */
86b17b60 706
95a42b64
TT
707void
708end_rbreak_breakpoints (void)
709{
86b17b60 710 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
711}
712
4a64f543 713/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
714
715void
fba45db2 716clear_breakpoint_hit_counts (void)
c906108c
SS
717{
718 struct breakpoint *b;
719
720 ALL_BREAKPOINTS (b)
721 b->hit_count = 0;
722}
723
9add0f1b
TT
724/* Allocate a new counted_command_line with reference count of 1.
725 The new structure owns COMMANDS. */
726
727static struct counted_command_line *
728alloc_counted_command_line (struct command_line *commands)
729{
8d749320 730 struct counted_command_line *result = XNEW (struct counted_command_line);
cc59ec59 731
9add0f1b
TT
732 result->refc = 1;
733 result->commands = commands;
8d749320 734
9add0f1b
TT
735 return result;
736}
737
738/* Increment reference count. This does nothing if CMD is NULL. */
739
740static void
741incref_counted_command_line (struct counted_command_line *cmd)
742{
743 if (cmd)
744 ++cmd->refc;
745}
746
747/* Decrement reference count. If the reference count reaches 0,
748 destroy the counted_command_line. Sets *CMDP to NULL. This does
749 nothing if *CMDP is NULL. */
750
751static void
752decref_counted_command_line (struct counted_command_line **cmdp)
753{
754 if (*cmdp)
755 {
756 if (--(*cmdp)->refc == 0)
757 {
758 free_command_lines (&(*cmdp)->commands);
759 xfree (*cmdp);
760 }
761 *cmdp = NULL;
762 }
763}
764
765/* A cleanup function that calls decref_counted_command_line. */
766
767static void
768do_cleanup_counted_command_line (void *arg)
769{
9a3c8263 770 decref_counted_command_line ((struct counted_command_line **) arg);
9add0f1b
TT
771}
772
773/* Create a cleanup that calls decref_counted_command_line on the
774 argument. */
775
776static struct cleanup *
777make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
778{
779 return make_cleanup (do_cleanup_counted_command_line, cmdp);
780}
781
c906108c 782\f
48cb2d85
VP
783/* Return the breakpoint with the specified number, or NULL
784 if the number does not refer to an existing breakpoint. */
785
786struct breakpoint *
787get_breakpoint (int num)
788{
789 struct breakpoint *b;
790
791 ALL_BREAKPOINTS (b)
792 if (b->number == num)
793 return b;
794
795 return NULL;
796}
5c44784c 797
c906108c 798\f
adc36818 799
b775012e
LM
800/* Mark locations as "conditions have changed" in case the target supports
801 evaluating conditions on its side. */
802
803static void
804mark_breakpoint_modified (struct breakpoint *b)
805{
806 struct bp_location *loc;
807
808 /* This is only meaningful if the target is
809 evaluating conditions and if the user has
810 opted for condition evaluation on the target's
811 side. */
812 if (gdb_evaluates_breakpoint_condition_p ()
813 || !target_supports_evaluation_of_breakpoint_conditions ())
814 return;
815
816 if (!is_breakpoint (b))
817 return;
818
819 for (loc = b->loc; loc; loc = loc->next)
820 loc->condition_changed = condition_modified;
821}
822
823/* Mark location as "conditions have changed" in case the target supports
824 evaluating conditions on its side. */
825
826static void
827mark_breakpoint_location_modified (struct bp_location *loc)
828{
829 /* This is only meaningful if the target is
830 evaluating conditions and if the user has
831 opted for condition evaluation on the target's
832 side. */
833 if (gdb_evaluates_breakpoint_condition_p ()
834 || !target_supports_evaluation_of_breakpoint_conditions ())
835
836 return;
837
838 if (!is_breakpoint (loc->owner))
839 return;
840
841 loc->condition_changed = condition_modified;
842}
843
844/* Sets the condition-evaluation mode using the static global
845 condition_evaluation_mode. */
846
847static void
848set_condition_evaluation_mode (char *args, int from_tty,
849 struct cmd_list_element *c)
850{
b775012e
LM
851 const char *old_mode, *new_mode;
852
853 if ((condition_evaluation_mode_1 == condition_evaluation_target)
854 && !target_supports_evaluation_of_breakpoint_conditions ())
855 {
856 condition_evaluation_mode_1 = condition_evaluation_mode;
857 warning (_("Target does not support breakpoint condition evaluation.\n"
858 "Using host evaluation mode instead."));
859 return;
860 }
861
862 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
863 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
864
abf1152a
JK
865 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
866 settings was "auto". */
867 condition_evaluation_mode = condition_evaluation_mode_1;
868
b775012e
LM
869 /* Only update the mode if the user picked a different one. */
870 if (new_mode != old_mode)
871 {
872 struct bp_location *loc, **loc_tmp;
873 /* If the user switched to a different evaluation mode, we
874 need to synch the changes with the target as follows:
875
876 "host" -> "target": Send all (valid) conditions to the target.
877 "target" -> "host": Remove all the conditions from the target.
878 */
879
b775012e
LM
880 if (new_mode == condition_evaluation_target)
881 {
882 /* Mark everything modified and synch conditions with the
883 target. */
884 ALL_BP_LOCATIONS (loc, loc_tmp)
885 mark_breakpoint_location_modified (loc);
886 }
887 else
888 {
889 /* Manually mark non-duplicate locations to synch conditions
890 with the target. We do this to remove all the conditions the
891 target knows about. */
892 ALL_BP_LOCATIONS (loc, loc_tmp)
893 if (is_breakpoint (loc->owner) && loc->inserted)
894 loc->needs_update = 1;
895 }
896
897 /* Do the update. */
44702360 898 update_global_location_list (UGLL_MAY_INSERT);
b775012e
LM
899 }
900
901 return;
902}
903
904/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
905 what "auto" is translating to. */
906
907static void
908show_condition_evaluation_mode (struct ui_file *file, int from_tty,
909 struct cmd_list_element *c, const char *value)
910{
911 if (condition_evaluation_mode == condition_evaluation_auto)
912 fprintf_filtered (file,
913 _("Breakpoint condition evaluation "
914 "mode is %s (currently %s).\n"),
915 value,
916 breakpoint_condition_evaluation_mode ());
917 else
918 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
919 value);
920}
921
922/* A comparison function for bp_location AP and BP that is used by
923 bsearch. This comparison function only cares about addresses, unlike
924 the more general bp_location_compare function. */
925
926static int
927bp_location_compare_addrs (const void *ap, const void *bp)
928{
9a3c8263
SM
929 const struct bp_location *a = *(const struct bp_location **) ap;
930 const struct bp_location *b = *(const struct bp_location **) bp;
b775012e
LM
931
932 if (a->address == b->address)
933 return 0;
934 else
935 return ((a->address > b->address) - (a->address < b->address));
936}
937
938/* Helper function to skip all bp_locations with addresses
939 less than ADDRESS. It returns the first bp_location that
940 is greater than or equal to ADDRESS. If none is found, just
941 return NULL. */
942
943static struct bp_location **
944get_first_locp_gte_addr (CORE_ADDR address)
945{
946 struct bp_location dummy_loc;
947 struct bp_location *dummy_locp = &dummy_loc;
948 struct bp_location **locp_found = NULL;
949
950 /* Initialize the dummy location's address field. */
951 memset (&dummy_loc, 0, sizeof (struct bp_location));
952 dummy_loc.address = address;
953
954 /* Find a close match to the first location at ADDRESS. */
9a3c8263
SM
955 locp_found = ((struct bp_location **)
956 bsearch (&dummy_locp, bp_location, bp_location_count,
957 sizeof (struct bp_location **),
958 bp_location_compare_addrs));
b775012e
LM
959
960 /* Nothing was found, nothing left to do. */
961 if (locp_found == NULL)
962 return NULL;
963
964 /* We may have found a location that is at ADDRESS but is not the first in the
965 location's list. Go backwards (if possible) and locate the first one. */
966 while ((locp_found - 1) >= bp_location
967 && (*(locp_found - 1))->address == address)
968 locp_found--;
969
970 return locp_found;
971}
972
adc36818 973void
7a26bd4d 974set_breakpoint_condition (struct breakpoint *b, const char *exp,
adc36818
PM
975 int from_tty)
976{
3a5c3e22
PA
977 xfree (b->cond_string);
978 b->cond_string = NULL;
adc36818 979
3a5c3e22 980 if (is_watchpoint (b))
adc36818 981 {
3a5c3e22
PA
982 struct watchpoint *w = (struct watchpoint *) b;
983
4d01a485 984 w->cond_exp.reset ();
3a5c3e22
PA
985 }
986 else
987 {
988 struct bp_location *loc;
989
990 for (loc = b->loc; loc; loc = loc->next)
991 {
4d01a485 992 loc->cond.reset ();
b775012e
LM
993
994 /* No need to free the condition agent expression
995 bytecode (if we have one). We will handle this
996 when we go through update_global_location_list. */
3a5c3e22 997 }
adc36818 998 }
adc36818
PM
999
1000 if (*exp == 0)
1001 {
1002 if (from_tty)
1003 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
1004 }
1005 else
1006 {
bbc13ae3 1007 const char *arg = exp;
cc59ec59 1008
adc36818
PM
1009 /* I don't know if it matters whether this is the string the user
1010 typed in or the decompiled expression. */
1011 b->cond_string = xstrdup (arg);
1012 b->condition_not_parsed = 0;
1013
1014 if (is_watchpoint (b))
1015 {
3a5c3e22
PA
1016 struct watchpoint *w = (struct watchpoint *) b;
1017
adc36818
PM
1018 innermost_block = NULL;
1019 arg = exp;
1bb9788d 1020 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
adc36818
PM
1021 if (*arg)
1022 error (_("Junk at end of expression"));
3a5c3e22 1023 w->cond_exp_valid_block = innermost_block;
adc36818
PM
1024 }
1025 else
1026 {
3a5c3e22
PA
1027 struct bp_location *loc;
1028
adc36818
PM
1029 for (loc = b->loc; loc; loc = loc->next)
1030 {
1031 arg = exp;
1032 loc->cond =
1bb9788d
TT
1033 parse_exp_1 (&arg, loc->address,
1034 block_for_pc (loc->address), 0);
adc36818
PM
1035 if (*arg)
1036 error (_("Junk at end of expression"));
1037 }
1038 }
1039 }
b775012e
LM
1040 mark_breakpoint_modified (b);
1041
8d3788bd 1042 observer_notify_breakpoint_modified (b);
adc36818
PM
1043}
1044
d55637df
TT
1045/* Completion for the "condition" command. */
1046
1047static VEC (char_ptr) *
6f937416
PA
1048condition_completer (struct cmd_list_element *cmd,
1049 const char *text, const char *word)
d55637df 1050{
6f937416 1051 const char *space;
d55637df 1052
6f937416
PA
1053 text = skip_spaces_const (text);
1054 space = skip_to_space_const (text);
d55637df
TT
1055 if (*space == '\0')
1056 {
1057 int len;
1058 struct breakpoint *b;
1059 VEC (char_ptr) *result = NULL;
1060
1061 if (text[0] == '$')
1062 {
1063 /* We don't support completion of history indices. */
1064 if (isdigit (text[1]))
1065 return NULL;
1066 return complete_internalvar (&text[1]);
1067 }
1068
1069 /* We're completing the breakpoint number. */
1070 len = strlen (text);
1071
1072 ALL_BREAKPOINTS (b)
58ce7251
SDJ
1073 {
1074 char number[50];
1075
1076 xsnprintf (number, sizeof (number), "%d", b->number);
1077
1078 if (strncmp (number, text, len) == 0)
1079 VEC_safe_push (char_ptr, result, xstrdup (number));
1080 }
d55637df
TT
1081
1082 return result;
1083 }
1084
1085 /* We're completing the expression part. */
6f937416 1086 text = skip_spaces_const (space);
d55637df
TT
1087 return expression_completer (cmd, text, word);
1088}
1089
c906108c
SS
1090/* condition N EXP -- set break condition of breakpoint N to EXP. */
1091
1092static void
fba45db2 1093condition_command (char *arg, int from_tty)
c906108c 1094{
52f0bd74 1095 struct breakpoint *b;
c906108c 1096 char *p;
52f0bd74 1097 int bnum;
c906108c
SS
1098
1099 if (arg == 0)
e2e0b3e5 1100 error_no_arg (_("breakpoint number"));
c906108c
SS
1101
1102 p = arg;
1103 bnum = get_number (&p);
5c44784c 1104 if (bnum == 0)
8a3fe4f8 1105 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
1106
1107 ALL_BREAKPOINTS (b)
1108 if (b->number == bnum)
2f069f6f 1109 {
6dddc817
DE
1110 /* Check if this breakpoint has a "stop" method implemented in an
1111 extension language. This method and conditions entered into GDB
1112 from the CLI are mutually exclusive. */
1113 const struct extension_language_defn *extlang
1114 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
1115
1116 if (extlang != NULL)
1117 {
1118 error (_("Only one stop condition allowed. There is currently"
1119 " a %s stop condition defined for this breakpoint."),
1120 ext_lang_capitalized_name (extlang));
1121 }
2566ad2d 1122 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
1123
1124 if (is_breakpoint (b))
44702360 1125 update_global_location_list (UGLL_MAY_INSERT);
b775012e 1126
2f069f6f
JB
1127 return;
1128 }
c906108c 1129
8a3fe4f8 1130 error (_("No breakpoint number %d."), bnum);
c906108c
SS
1131}
1132
a7bdde9e
VP
1133/* Check that COMMAND do not contain commands that are suitable
1134 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
1135 Throw if any such commands is found. */
1136
a7bdde9e
VP
1137static void
1138check_no_tracepoint_commands (struct command_line *commands)
1139{
1140 struct command_line *c;
cc59ec59 1141
a7bdde9e
VP
1142 for (c = commands; c; c = c->next)
1143 {
1144 int i;
1145
1146 if (c->control_type == while_stepping_control)
3e43a32a
MS
1147 error (_("The 'while-stepping' command can "
1148 "only be used for tracepoints"));
a7bdde9e
VP
1149
1150 for (i = 0; i < c->body_count; ++i)
1151 check_no_tracepoint_commands ((c->body_list)[i]);
1152
1153 /* Not that command parsing removes leading whitespace and comment
4a64f543 1154 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1155 command directly. */
1156 if (strstr (c->line, "collect ") == c->line)
1157 error (_("The 'collect' command can only be used for tracepoints"));
1158
51661e93
VP
1159 if (strstr (c->line, "teval ") == c->line)
1160 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1161 }
1162}
1163
d77f58be
SS
1164/* Encapsulate tests for different types of tracepoints. */
1165
d9b3f62e
PA
1166static int
1167is_tracepoint_type (enum bptype type)
1168{
1169 return (type == bp_tracepoint
1170 || type == bp_fast_tracepoint
1171 || type == bp_static_tracepoint);
1172}
1173
a7bdde9e 1174int
d77f58be 1175is_tracepoint (const struct breakpoint *b)
a7bdde9e 1176{
d9b3f62e 1177 return is_tracepoint_type (b->type);
a7bdde9e 1178}
d9b3f62e 1179
e5dd4106 1180/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1181 breakpoint. This function will throw an exception if a problem is
1182 found. */
48cb2d85 1183
95a42b64
TT
1184static void
1185validate_commands_for_breakpoint (struct breakpoint *b,
1186 struct command_line *commands)
48cb2d85 1187{
d77f58be 1188 if (is_tracepoint (b))
a7bdde9e 1189 {
c9a6ce02 1190 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1191 struct command_line *c;
1192 struct command_line *while_stepping = 0;
c9a6ce02
PA
1193
1194 /* Reset the while-stepping step count. The previous commands
1195 might have included a while-stepping action, while the new
1196 ones might not. */
1197 t->step_count = 0;
1198
1199 /* We need to verify that each top-level element of commands is
1200 valid for tracepoints, that there's at most one
1201 while-stepping element, and that the while-stepping's body
1202 has valid tracing commands excluding nested while-stepping.
1203 We also need to validate the tracepoint action line in the
1204 context of the tracepoint --- validate_actionline actually
1205 has side effects, like setting the tracepoint's
1206 while-stepping STEP_COUNT, in addition to checking if the
1207 collect/teval actions parse and make sense in the
1208 tracepoint's context. */
a7bdde9e
VP
1209 for (c = commands; c; c = c->next)
1210 {
a7bdde9e
VP
1211 if (c->control_type == while_stepping_control)
1212 {
1213 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1214 error (_("The 'while-stepping' command "
1215 "cannot be used for fast tracepoint"));
0fb4aa4b 1216 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1217 error (_("The 'while-stepping' command "
1218 "cannot be used for static tracepoint"));
a7bdde9e
VP
1219
1220 if (while_stepping)
3e43a32a
MS
1221 error (_("The 'while-stepping' command "
1222 "can be used only once"));
a7bdde9e
VP
1223 else
1224 while_stepping = c;
1225 }
c9a6ce02
PA
1226
1227 validate_actionline (c->line, b);
a7bdde9e
VP
1228 }
1229 if (while_stepping)
1230 {
1231 struct command_line *c2;
1232
1233 gdb_assert (while_stepping->body_count == 1);
1234 c2 = while_stepping->body_list[0];
1235 for (; c2; c2 = c2->next)
1236 {
a7bdde9e
VP
1237 if (c2->control_type == while_stepping_control)
1238 error (_("The 'while-stepping' command cannot be nested"));
1239 }
1240 }
1241 }
1242 else
1243 {
1244 check_no_tracepoint_commands (commands);
1245 }
95a42b64
TT
1246}
1247
0fb4aa4b
PA
1248/* Return a vector of all the static tracepoints set at ADDR. The
1249 caller is responsible for releasing the vector. */
1250
1251VEC(breakpoint_p) *
1252static_tracepoints_here (CORE_ADDR addr)
1253{
1254 struct breakpoint *b;
1255 VEC(breakpoint_p) *found = 0;
1256 struct bp_location *loc;
1257
1258 ALL_BREAKPOINTS (b)
1259 if (b->type == bp_static_tracepoint)
1260 {
1261 for (loc = b->loc; loc; loc = loc->next)
1262 if (loc->address == addr)
1263 VEC_safe_push(breakpoint_p, found, b);
1264 }
1265
1266 return found;
1267}
1268
95a42b64 1269/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1270 validate that only allowed commands are included. */
95a42b64
TT
1271
1272void
4a64f543
MS
1273breakpoint_set_commands (struct breakpoint *b,
1274 struct command_line *commands)
95a42b64
TT
1275{
1276 validate_commands_for_breakpoint (b, commands);
a7bdde9e 1277
9add0f1b
TT
1278 decref_counted_command_line (&b->commands);
1279 b->commands = alloc_counted_command_line (commands);
8d3788bd 1280 observer_notify_breakpoint_modified (b);
48cb2d85
VP
1281}
1282
45a43567
TT
1283/* Set the internal `silent' flag on the breakpoint. Note that this
1284 is not the same as the "silent" that may appear in the breakpoint's
1285 commands. */
1286
1287void
1288breakpoint_set_silent (struct breakpoint *b, int silent)
1289{
1290 int old_silent = b->silent;
1291
1292 b->silent = silent;
1293 if (old_silent != silent)
8d3788bd 1294 observer_notify_breakpoint_modified (b);
45a43567
TT
1295}
1296
1297/* Set the thread for this breakpoint. If THREAD is -1, make the
1298 breakpoint work for any thread. */
1299
1300void
1301breakpoint_set_thread (struct breakpoint *b, int thread)
1302{
1303 int old_thread = b->thread;
1304
1305 b->thread = thread;
1306 if (old_thread != thread)
8d3788bd 1307 observer_notify_breakpoint_modified (b);
45a43567
TT
1308}
1309
1310/* Set the task for this breakpoint. If TASK is 0, make the
1311 breakpoint work for any task. */
1312
1313void
1314breakpoint_set_task (struct breakpoint *b, int task)
1315{
1316 int old_task = b->task;
1317
1318 b->task = task;
1319 if (old_task != task)
8d3788bd 1320 observer_notify_breakpoint_modified (b);
45a43567
TT
1321}
1322
95a42b64
TT
1323void
1324check_tracepoint_command (char *line, void *closure)
a7bdde9e 1325{
9a3c8263 1326 struct breakpoint *b = (struct breakpoint *) closure;
cc59ec59 1327
6f937416 1328 validate_actionline (line, b);
a7bdde9e
VP
1329}
1330
95a42b64
TT
1331/* A structure used to pass information through
1332 map_breakpoint_numbers. */
1333
1334struct commands_info
1335{
1336 /* True if the command was typed at a tty. */
1337 int from_tty;
86b17b60
PA
1338
1339 /* The breakpoint range spec. */
896b6bda 1340 const char *arg;
86b17b60 1341
95a42b64
TT
1342 /* Non-NULL if the body of the commands are being read from this
1343 already-parsed command. */
1344 struct command_line *control;
86b17b60 1345
95a42b64
TT
1346 /* The command lines read from the user, or NULL if they have not
1347 yet been read. */
1348 struct counted_command_line *cmd;
1349};
1350
1351/* A callback for map_breakpoint_numbers that sets the commands for
1352 commands_command. */
1353
c906108c 1354static void
95a42b64 1355do_map_commands_command (struct breakpoint *b, void *data)
c906108c 1356{
9a3c8263 1357 struct commands_info *info = (struct commands_info *) data;
c906108c 1358
95a42b64
TT
1359 if (info->cmd == NULL)
1360 {
1361 struct command_line *l;
5c44784c 1362
95a42b64
TT
1363 if (info->control != NULL)
1364 l = copy_command_lines (info->control->body_list[0]);
1365 else
86b17b60
PA
1366 {
1367 struct cleanup *old_chain;
1368 char *str;
c5aa993b 1369
3e43a32a
MS
1370 str = xstrprintf (_("Type commands for breakpoint(s) "
1371 "%s, one per line."),
86b17b60
PA
1372 info->arg);
1373
1374 old_chain = make_cleanup (xfree, str);
1375
1376 l = read_command_lines (str,
1377 info->from_tty, 1,
d77f58be 1378 (is_tracepoint (b)
86b17b60
PA
1379 ? check_tracepoint_command : 0),
1380 b);
1381
1382 do_cleanups (old_chain);
1383 }
a7bdde9e 1384
95a42b64
TT
1385 info->cmd = alloc_counted_command_line (l);
1386 }
1387
1388 /* If a breakpoint was on the list more than once, we don't need to
1389 do anything. */
1390 if (b->commands != info->cmd)
1391 {
1392 validate_commands_for_breakpoint (b, info->cmd->commands);
1393 incref_counted_command_line (info->cmd);
1394 decref_counted_command_line (&b->commands);
1395 b->commands = info->cmd;
8d3788bd 1396 observer_notify_breakpoint_modified (b);
c5aa993b 1397 }
95a42b64
TT
1398}
1399
1400static void
896b6bda 1401commands_command_1 (const char *arg, int from_tty,
4a64f543 1402 struct command_line *control)
95a42b64
TT
1403{
1404 struct cleanup *cleanups;
1405 struct commands_info info;
1406
1407 info.from_tty = from_tty;
1408 info.control = control;
1409 info.cmd = NULL;
1410 /* If we read command lines from the user, then `info' will hold an
1411 extra reference to the commands that we must clean up. */
1412 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
1413
896b6bda
PA
1414 std::string new_arg;
1415
95a42b64
TT
1416 if (arg == NULL || !*arg)
1417 {
86b17b60 1418 if (breakpoint_count - prev_breakpoint_count > 1)
896b6bda
PA
1419 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1420 breakpoint_count);
95a42b64 1421 else if (breakpoint_count > 0)
896b6bda 1422 new_arg = string_printf ("%d", breakpoint_count);
95a42b64 1423 }
9766ced4 1424 else
896b6bda 1425 new_arg = arg;
86b17b60 1426
896b6bda 1427 info.arg = new_arg.c_str ();
95a42b64 1428
896b6bda 1429 map_breakpoint_numbers (info.arg, do_map_commands_command, &info);
95a42b64
TT
1430
1431 if (info.cmd == NULL)
1432 error (_("No breakpoints specified."));
1433
1434 do_cleanups (cleanups);
1435}
1436
1437static void
1438commands_command (char *arg, int from_tty)
1439{
1440 commands_command_1 (arg, from_tty, NULL);
c906108c 1441}
40c03ae8
EZ
1442
1443/* Like commands_command, but instead of reading the commands from
1444 input stream, takes them from an already parsed command structure.
1445
1446 This is used by cli-script.c to DTRT with breakpoint commands
1447 that are part of if and while bodies. */
1448enum command_control_type
896b6bda 1449commands_from_control_command (const char *arg, struct command_line *cmd)
40c03ae8 1450{
95a42b64
TT
1451 commands_command_1 (arg, 0, cmd);
1452 return simple_control;
40c03ae8 1453}
876fa593
JK
1454
1455/* Return non-zero if BL->TARGET_INFO contains valid information. */
1456
1457static int
1458bp_location_has_shadow (struct bp_location *bl)
1459{
1460 if (bl->loc_type != bp_loc_software_breakpoint)
1461 return 0;
1462 if (!bl->inserted)
1463 return 0;
1464 if (bl->target_info.shadow_len == 0)
e5dd4106 1465 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1466 return 0;
1467 return 1;
1468}
1469
9d497a19
PA
1470/* Update BUF, which is LEN bytes read from the target address
1471 MEMADDR, by replacing a memory breakpoint with its shadowed
1472 contents.
1473
1474 If READBUF is not NULL, this buffer must not overlap with the of
1475 the breakpoint location's shadow_contents buffer. Otherwise, a
1476 failed assertion internal error will be raised. */
1477
1478static void
1479one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1480 const gdb_byte *writebuf_org,
1481 ULONGEST memaddr, LONGEST len,
1482 struct bp_target_info *target_info,
1483 struct gdbarch *gdbarch)
1484{
1485 /* Now do full processing of the found relevant range of elements. */
1486 CORE_ADDR bp_addr = 0;
1487 int bp_size = 0;
1488 int bptoffset = 0;
1489
1490 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1491 current_program_space->aspace, 0))
1492 {
1493 /* The breakpoint is inserted in a different address space. */
1494 return;
1495 }
1496
1497 /* Addresses and length of the part of the breakpoint that
1498 we need to copy. */
1499 bp_addr = target_info->placed_address;
1500 bp_size = target_info->shadow_len;
1501
1502 if (bp_addr + bp_size <= memaddr)
1503 {
1504 /* The breakpoint is entirely before the chunk of memory we are
1505 reading. */
1506 return;
1507 }
1508
1509 if (bp_addr >= memaddr + len)
1510 {
1511 /* The breakpoint is entirely after the chunk of memory we are
1512 reading. */
1513 return;
1514 }
1515
1516 /* Offset within shadow_contents. */
1517 if (bp_addr < memaddr)
1518 {
1519 /* Only copy the second part of the breakpoint. */
1520 bp_size -= memaddr - bp_addr;
1521 bptoffset = memaddr - bp_addr;
1522 bp_addr = memaddr;
1523 }
1524
1525 if (bp_addr + bp_size > memaddr + len)
1526 {
1527 /* Only copy the first part of the breakpoint. */
1528 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1529 }
1530
1531 if (readbuf != NULL)
1532 {
1533 /* Verify that the readbuf buffer does not overlap with the
1534 shadow_contents buffer. */
1535 gdb_assert (target_info->shadow_contents >= readbuf + len
1536 || readbuf >= (target_info->shadow_contents
1537 + target_info->shadow_len));
1538
1539 /* Update the read buffer with this inserted breakpoint's
1540 shadow. */
1541 memcpy (readbuf + bp_addr - memaddr,
1542 target_info->shadow_contents + bptoffset, bp_size);
1543 }
1544 else
1545 {
1546 const unsigned char *bp;
0d5ed153
MR
1547 CORE_ADDR addr = target_info->reqstd_address;
1548 int placed_size;
9d497a19
PA
1549
1550 /* Update the shadow with what we want to write to memory. */
1551 memcpy (target_info->shadow_contents + bptoffset,
1552 writebuf_org + bp_addr - memaddr, bp_size);
1553
1554 /* Determine appropriate breakpoint contents and size for this
1555 address. */
0d5ed153 1556 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
9d497a19
PA
1557
1558 /* Update the final write buffer with this inserted
1559 breakpoint's INSN. */
1560 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1561 }
1562}
1563
8defab1a 1564/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1565 by replacing any memory breakpoints with their shadowed contents.
1566
35c63cd8
JB
1567 If READBUF is not NULL, this buffer must not overlap with any of
1568 the breakpoint location's shadow_contents buffers. Otherwise,
1569 a failed assertion internal error will be raised.
1570
876fa593 1571 The range of shadowed area by each bp_location is:
35df4500
TJB
1572 bl->address - bp_location_placed_address_before_address_max
1573 up to bl->address + bp_location_shadow_len_after_address_max
876fa593
JK
1574 The range we were requested to resolve shadows for is:
1575 memaddr ... memaddr + len
1576 Thus the safe cutoff boundaries for performance optimization are
35df4500
TJB
1577 memaddr + len <= (bl->address
1578 - bp_location_placed_address_before_address_max)
876fa593 1579 and:
35df4500 1580 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1581
8defab1a 1582void
f0ba3972
PA
1583breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1584 const gdb_byte *writebuf_org,
1585 ULONGEST memaddr, LONGEST len)
c906108c 1586{
4a64f543
MS
1587 /* Left boundary, right boundary and median element of our binary
1588 search. */
876fa593
JK
1589 unsigned bc_l, bc_r, bc;
1590
4a64f543
MS
1591 /* Find BC_L which is a leftmost element which may affect BUF
1592 content. It is safe to report lower value but a failure to
1593 report higher one. */
876fa593
JK
1594
1595 bc_l = 0;
1596 bc_r = bp_location_count;
1597 while (bc_l + 1 < bc_r)
1598 {
35df4500 1599 struct bp_location *bl;
876fa593
JK
1600
1601 bc = (bc_l + bc_r) / 2;
35df4500 1602 bl = bp_location[bc];
876fa593 1603
4a64f543
MS
1604 /* Check first BL->ADDRESS will not overflow due to the added
1605 constant. Then advance the left boundary only if we are sure
1606 the BC element can in no way affect the BUF content (MEMADDR
1607 to MEMADDR + LEN range).
876fa593 1608
4a64f543
MS
1609 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1610 offset so that we cannot miss a breakpoint with its shadow
1611 range tail still reaching MEMADDR. */
c5aa993b 1612
35df4500
TJB
1613 if ((bl->address + bp_location_shadow_len_after_address_max
1614 >= bl->address)
1615 && (bl->address + bp_location_shadow_len_after_address_max
1616 <= memaddr))
876fa593
JK
1617 bc_l = bc;
1618 else
1619 bc_r = bc;
1620 }
1621
128070bb
PA
1622 /* Due to the binary search above, we need to make sure we pick the
1623 first location that's at BC_L's address. E.g., if there are
1624 multiple locations at the same address, BC_L may end up pointing
1625 at a duplicate location, and miss the "master"/"inserted"
1626 location. Say, given locations L1, L2 and L3 at addresses A and
1627 B:
1628
1629 L1@A, L2@A, L3@B, ...
1630
1631 BC_L could end up pointing at location L2, while the "master"
1632 location could be L1. Since the `loc->inserted' flag is only set
1633 on "master" locations, we'd forget to restore the shadow of L1
1634 and L2. */
1635 while (bc_l > 0
1636 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1637 bc_l--;
1638
876fa593
JK
1639 /* Now do full processing of the found relevant range of elements. */
1640
1641 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1642 {
35df4500 1643 struct bp_location *bl = bp_location[bc];
876fa593 1644
35df4500
TJB
1645 /* bp_location array has BL->OWNER always non-NULL. */
1646 if (bl->owner->type == bp_none)
8a3fe4f8 1647 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1648 bl->owner->number);
ffce0d52 1649
e5dd4106 1650 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1651 content. */
1652
35df4500
TJB
1653 if (bl->address >= bp_location_placed_address_before_address_max
1654 && memaddr + len <= (bl->address
1655 - bp_location_placed_address_before_address_max))
876fa593
JK
1656 break;
1657
35df4500 1658 if (!bp_location_has_shadow (bl))
c5aa993b 1659 continue;
6c95b8df 1660
9d497a19
PA
1661 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1662 memaddr, len, &bl->target_info, bl->gdbarch);
1663 }
c906108c 1664}
9d497a19 1665
c906108c 1666\f
c5aa993b 1667
b775012e
LM
1668/* Return true if BPT is either a software breakpoint or a hardware
1669 breakpoint. */
1670
1671int
1672is_breakpoint (const struct breakpoint *bpt)
1673{
1674 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1675 || bpt->type == bp_hardware_breakpoint
1676 || bpt->type == bp_dprintf);
b775012e
LM
1677}
1678
60e1c644
PA
1679/* Return true if BPT is of any hardware watchpoint kind. */
1680
a5606eee 1681static int
d77f58be 1682is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1683{
1684 return (bpt->type == bp_hardware_watchpoint
1685 || bpt->type == bp_read_watchpoint
1686 || bpt->type == bp_access_watchpoint);
1687}
7270d8f2 1688
60e1c644
PA
1689/* Return true if BPT is of any watchpoint kind, hardware or
1690 software. */
1691
3a5c3e22 1692int
d77f58be 1693is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1694{
1695 return (is_hardware_watchpoint (bpt)
1696 || bpt->type == bp_watchpoint);
1697}
1698
3a5c3e22
PA
1699/* Returns true if the current thread and its running state are safe
1700 to evaluate or update watchpoint B. Watchpoints on local
1701 expressions need to be evaluated in the context of the thread that
1702 was current when the watchpoint was created, and, that thread needs
1703 to be stopped to be able to select the correct frame context.
1704 Watchpoints on global expressions can be evaluated on any thread,
1705 and in any state. It is presently left to the target allowing
1706 memory accesses when threads are running. */
f6bc2008
PA
1707
1708static int
3a5c3e22 1709watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1710{
d0d8b0c6
JK
1711 return (b->base.pspace == current_program_space
1712 && (ptid_equal (b->watchpoint_thread, null_ptid)
1713 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1714 && !is_executing (inferior_ptid))));
f6bc2008
PA
1715}
1716
d0fb5eae
JK
1717/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1718 associated bp_watchpoint_scope breakpoint. */
1719
1720static void
3a5c3e22 1721watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1722{
3a5c3e22 1723 struct breakpoint *b = &w->base;
d0fb5eae
JK
1724
1725 if (b->related_breakpoint != b)
1726 {
1727 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1728 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1729 b->related_breakpoint->disposition = disp_del_at_next_stop;
1730 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1731 b->related_breakpoint = b;
1732 }
1733 b->disposition = disp_del_at_next_stop;
1734}
1735
bb9d5f81
PP
1736/* Extract a bitfield value from value VAL using the bit parameters contained in
1737 watchpoint W. */
1738
1739static struct value *
1740extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1741{
1742 struct value *bit_val;
1743
1744 if (val == NULL)
1745 return NULL;
1746
1747 bit_val = allocate_value (value_type (val));
1748
1749 unpack_value_bitfield (bit_val,
1750 w->val_bitpos,
1751 w->val_bitsize,
1752 value_contents_for_printing (val),
1753 value_offset (val),
1754 val);
1755
1756 return bit_val;
1757}
1758
c6d81124
PA
1759/* Allocate a dummy location and add it to B, which must be a software
1760 watchpoint. This is required because even if a software watchpoint
1761 is not watching any memory, bpstat_stop_status requires a location
1762 to be able to report stops. */
1763
1764static void
1765software_watchpoint_add_no_memory_location (struct breakpoint *b,
1766 struct program_space *pspace)
1767{
1768 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1769
1770 b->loc = allocate_bp_location (b);
1771 b->loc->pspace = pspace;
1772 b->loc->address = -1;
1773 b->loc->length = -1;
1774}
1775
1776/* Returns true if B is a software watchpoint that is not watching any
1777 memory (e.g., "watch $pc"). */
1778
1779static int
1780is_no_memory_software_watchpoint (struct breakpoint *b)
1781{
1782 return (b->type == bp_watchpoint
1783 && b->loc != NULL
1784 && b->loc->next == NULL
1785 && b->loc->address == -1
1786 && b->loc->length == -1);
1787}
1788
567e1b4e
JB
1789/* Assuming that B is a watchpoint:
1790 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1791 - Evaluate expression and store the result in B->val
567e1b4e
JB
1792 - Evaluate the condition if there is one, and store the result
1793 in b->loc->cond.
a5606eee
VP
1794 - Update the list of values that must be watched in B->loc.
1795
4a64f543
MS
1796 If the watchpoint disposition is disp_del_at_next_stop, then do
1797 nothing. If this is local watchpoint that is out of scope, delete
1798 it.
1799
1800 Even with `set breakpoint always-inserted on' the watchpoints are
1801 removed + inserted on each stop here. Normal breakpoints must
1802 never be removed because they might be missed by a running thread
1803 when debugging in non-stop mode. On the other hand, hardware
1804 watchpoints (is_hardware_watchpoint; processed here) are specific
1805 to each LWP since they are stored in each LWP's hardware debug
1806 registers. Therefore, such LWP must be stopped first in order to
1807 be able to modify its hardware watchpoints.
1808
1809 Hardware watchpoints must be reset exactly once after being
1810 presented to the user. It cannot be done sooner, because it would
1811 reset the data used to present the watchpoint hit to the user. And
1812 it must not be done later because it could display the same single
1813 watchpoint hit during multiple GDB stops. Note that the latter is
1814 relevant only to the hardware watchpoint types bp_read_watchpoint
1815 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1816 not user-visible - its hit is suppressed if the memory content has
1817 not changed.
1818
1819 The following constraints influence the location where we can reset
1820 hardware watchpoints:
1821
1822 * target_stopped_by_watchpoint and target_stopped_data_address are
1823 called several times when GDB stops.
1824
1825 [linux]
1826 * Multiple hardware watchpoints can be hit at the same time,
1827 causing GDB to stop. GDB only presents one hardware watchpoint
1828 hit at a time as the reason for stopping, and all the other hits
1829 are presented later, one after the other, each time the user
1830 requests the execution to be resumed. Execution is not resumed
1831 for the threads still having pending hit event stored in
1832 LWP_INFO->STATUS. While the watchpoint is already removed from
1833 the inferior on the first stop the thread hit event is kept being
1834 reported from its cached value by linux_nat_stopped_data_address
1835 until the real thread resume happens after the watchpoint gets
1836 presented and thus its LWP_INFO->STATUS gets reset.
1837
1838 Therefore the hardware watchpoint hit can get safely reset on the
1839 watchpoint removal from inferior. */
a79d3c27 1840
b40ce68a 1841static void
3a5c3e22 1842update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1843{
a5606eee 1844 int within_current_scope;
a5606eee 1845 struct frame_id saved_frame_id;
66076460 1846 int frame_saved;
a5606eee 1847
f6bc2008
PA
1848 /* If this is a local watchpoint, we only want to check if the
1849 watchpoint frame is in scope if the current thread is the thread
1850 that was used to create the watchpoint. */
1851 if (!watchpoint_in_thread_scope (b))
1852 return;
1853
3a5c3e22 1854 if (b->base.disposition == disp_del_at_next_stop)
a5606eee
VP
1855 return;
1856
66076460 1857 frame_saved = 0;
a5606eee
VP
1858
1859 /* Determine if the watchpoint is within scope. */
1860 if (b->exp_valid_block == NULL)
1861 within_current_scope = 1;
1862 else
1863 {
b5db5dfc
UW
1864 struct frame_info *fi = get_current_frame ();
1865 struct gdbarch *frame_arch = get_frame_arch (fi);
1866 CORE_ADDR frame_pc = get_frame_pc (fi);
1867
c9cf6e20
MG
1868 /* If we're at a point where the stack has been destroyed
1869 (e.g. in a function epilogue), unwinding may not work
1870 properly. Do not attempt to recreate locations at this
b5db5dfc 1871 point. See similar comments in watchpoint_check. */
c9cf6e20 1872 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
b5db5dfc 1873 return;
66076460
DJ
1874
1875 /* Save the current frame's ID so we can restore it after
1876 evaluating the watchpoint expression on its own frame. */
1877 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1878 took a frame parameter, so that we didn't have to change the
1879 selected frame. */
1880 frame_saved = 1;
1881 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1882
a5606eee
VP
1883 fi = frame_find_by_id (b->watchpoint_frame);
1884 within_current_scope = (fi != NULL);
1885 if (within_current_scope)
1886 select_frame (fi);
1887 }
1888
b5db5dfc
UW
1889 /* We don't free locations. They are stored in the bp_location array
1890 and update_global_location_list will eventually delete them and
1891 remove breakpoints if needed. */
3a5c3e22 1892 b->base.loc = NULL;
b5db5dfc 1893
a5606eee
VP
1894 if (within_current_scope && reparse)
1895 {
bbc13ae3 1896 const char *s;
d63d0675 1897
4d01a485 1898 b->exp.reset ();
d63d0675 1899 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1900 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1901 /* If the meaning of expression itself changed, the old value is
1902 no longer relevant. We don't want to report a watchpoint hit
1903 to the user when the old value and the new value may actually
1904 be completely different objects. */
1905 value_free (b->val);
fa4727a6
DJ
1906 b->val = NULL;
1907 b->val_valid = 0;
60e1c644
PA
1908
1909 /* Note that unlike with breakpoints, the watchpoint's condition
1910 expression is stored in the breakpoint object, not in the
1911 locations (re)created below. */
3a5c3e22 1912 if (b->base.cond_string != NULL)
60e1c644 1913 {
4d01a485 1914 b->cond_exp.reset ();
60e1c644 1915
3a5c3e22 1916 s = b->base.cond_string;
1bb9788d 1917 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1918 }
a5606eee 1919 }
a5606eee
VP
1920
1921 /* If we failed to parse the expression, for example because
1922 it refers to a global variable in a not-yet-loaded shared library,
1923 don't try to insert watchpoint. We don't automatically delete
1924 such watchpoint, though, since failure to parse expression
1925 is different from out-of-scope watchpoint. */
e8369a73 1926 if (!target_has_execution)
2d134ed3
PA
1927 {
1928 /* Without execution, memory can't change. No use to try and
1929 set watchpoint locations. The watchpoint will be reset when
1930 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1931 if (!can_use_hw_watchpoints)
1932 {
1933 if (b->base.ops->works_in_software_mode (&b->base))
1934 b->base.type = bp_watchpoint;
1935 else
638aa5a1
AB
1936 error (_("Can't set read/access watchpoint when "
1937 "hardware watchpoints are disabled."));
e8369a73 1938 }
2d134ed3
PA
1939 }
1940 else if (within_current_scope && b->exp)
a5606eee 1941 {
0cf6dd15 1942 int pc = 0;
fa4727a6 1943 struct value *val_chain, *v, *result, *next;
2d134ed3 1944 struct program_space *frame_pspace;
a5606eee 1945
4d01a485 1946 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
a5606eee 1947
a5606eee
VP
1948 /* Avoid setting b->val if it's already set. The meaning of
1949 b->val is 'the last value' user saw, and we should update
1950 it only if we reported that last value to user. As it
9c06b0b4
TJB
1951 happens, the code that reports it updates b->val directly.
1952 We don't keep track of the memory value for masked
1953 watchpoints. */
3a5c3e22 1954 if (!b->val_valid && !is_masked_watchpoint (&b->base))
fa4727a6 1955 {
bb9d5f81
PP
1956 if (b->val_bitsize != 0)
1957 {
1958 v = extract_bitfield_from_watchpoint_value (b, v);
1959 if (v != NULL)
1960 release_value (v);
1961 }
fa4727a6
DJ
1962 b->val = v;
1963 b->val_valid = 1;
1964 }
a5606eee 1965
2d134ed3
PA
1966 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1967
a5606eee 1968 /* Look at each value on the value chain. */
9fa40276 1969 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1970 {
1971 /* If it's a memory location, and GDB actually needed
1972 its contents to evaluate the expression, then we
fa4727a6
DJ
1973 must watch it. If the first value returned is
1974 still lazy, that means an error occurred reading it;
1975 watch it anyway in case it becomes readable. */
a5606eee 1976 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1977 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1978 {
1979 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1980
a5606eee
VP
1981 /* We only watch structs and arrays if user asked
1982 for it explicitly, never if they just happen to
1983 appear in the middle of some value chain. */
fa4727a6 1984 if (v == result
a5606eee
VP
1985 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1986 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1987 {
1988 CORE_ADDR addr;
f486487f 1989 enum target_hw_bp_type type;
a5606eee 1990 struct bp_location *loc, **tmp;
bb9d5f81
PP
1991 int bitpos = 0, bitsize = 0;
1992
1993 if (value_bitsize (v) != 0)
1994 {
1995 /* Extract the bit parameters out from the bitfield
1996 sub-expression. */
1997 bitpos = value_bitpos (v);
1998 bitsize = value_bitsize (v);
1999 }
2000 else if (v == result && b->val_bitsize != 0)
2001 {
2002 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
2003 lvalue whose bit parameters are saved in the fields
2004 VAL_BITPOS and VAL_BITSIZE. */
2005 bitpos = b->val_bitpos;
2006 bitsize = b->val_bitsize;
2007 }
a5606eee 2008
42ae5230 2009 addr = value_address (v);
bb9d5f81
PP
2010 if (bitsize != 0)
2011 {
2012 /* Skip the bytes that don't contain the bitfield. */
2013 addr += bitpos / 8;
2014 }
2015
a5606eee 2016 type = hw_write;
3a5c3e22 2017 if (b->base.type == bp_read_watchpoint)
a5606eee 2018 type = hw_read;
3a5c3e22 2019 else if (b->base.type == bp_access_watchpoint)
a5606eee 2020 type = hw_access;
3a5c3e22
PA
2021
2022 loc = allocate_bp_location (&b->base);
2023 for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
2024 ;
2025 *tmp = loc;
a6d9a66e 2026 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
2027
2028 loc->pspace = frame_pspace;
a5606eee 2029 loc->address = addr;
bb9d5f81
PP
2030
2031 if (bitsize != 0)
2032 {
2033 /* Just cover the bytes that make up the bitfield. */
2034 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
2035 }
2036 else
2037 loc->length = TYPE_LENGTH (value_type (v));
2038
a5606eee
VP
2039 loc->watchpoint_type = type;
2040 }
2041 }
9fa40276
TJB
2042 }
2043
2044 /* Change the type of breakpoint between hardware assisted or
2045 an ordinary watchpoint depending on the hardware support
2046 and free hardware slots. REPARSE is set when the inferior
2047 is started. */
a9634178 2048 if (reparse)
9fa40276 2049 {
e09342b5 2050 int reg_cnt;
9fa40276
TJB
2051 enum bp_loc_type loc_type;
2052 struct bp_location *bl;
a5606eee 2053
a9634178 2054 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
2055
2056 if (reg_cnt)
9fa40276
TJB
2057 {
2058 int i, target_resources_ok, other_type_used;
a1398e0c 2059 enum bptype type;
9fa40276 2060
a9634178
TJB
2061 /* Use an exact watchpoint when there's only one memory region to be
2062 watched, and only one debug register is needed to watch it. */
2063 b->exact = target_exact_watchpoints && reg_cnt == 1;
2064
9fa40276 2065 /* We need to determine how many resources are already
e09342b5
TJB
2066 used for all other hardware watchpoints plus this one
2067 to see if we still have enough resources to also fit
a1398e0c
PA
2068 this watchpoint in as well. */
2069
2070 /* If this is a software watchpoint, we try to turn it
2071 to a hardware one -- count resources as if B was of
2072 hardware watchpoint type. */
2073 type = b->base.type;
2074 if (type == bp_watchpoint)
2075 type = bp_hardware_watchpoint;
2076
2077 /* This watchpoint may or may not have been placed on
2078 the list yet at this point (it won't be in the list
2079 if we're trying to create it for the first time,
2080 through watch_command), so always account for it
2081 manually. */
2082
2083 /* Count resources used by all watchpoints except B. */
2084 i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used);
2085
2086 /* Add in the resources needed for B. */
2087 i += hw_watchpoint_use_count (&b->base);
2088
2089 target_resources_ok
2090 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 2091 if (target_resources_ok <= 0)
a9634178 2092 {
3a5c3e22 2093 int sw_mode = b->base.ops->works_in_software_mode (&b->base);
9c06b0b4
TJB
2094
2095 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
2096 error (_("Target does not support this type of "
2097 "hardware watchpoint."));
9c06b0b4
TJB
2098 else if (target_resources_ok < 0 && !sw_mode)
2099 error (_("There are not enough available hardware "
2100 "resources for this watchpoint."));
a1398e0c
PA
2101
2102 /* Downgrade to software watchpoint. */
2103 b->base.type = bp_watchpoint;
2104 }
2105 else
2106 {
2107 /* If this was a software watchpoint, we've just
2108 found we have enough resources to turn it to a
2109 hardware watchpoint. Otherwise, this is a
2110 nop. */
2111 b->base.type = type;
a9634178 2112 }
9fa40276 2113 }
3a5c3e22 2114 else if (!b->base.ops->works_in_software_mode (&b->base))
638aa5a1
AB
2115 {
2116 if (!can_use_hw_watchpoints)
2117 error (_("Can't set read/access watchpoint when "
2118 "hardware watchpoints are disabled."));
2119 else
2120 error (_("Expression cannot be implemented with "
2121 "read/access watchpoint."));
2122 }
9fa40276 2123 else
3a5c3e22 2124 b->base.type = bp_watchpoint;
9fa40276 2125
3a5c3e22 2126 loc_type = (b->base.type == bp_watchpoint? bp_loc_other
9fa40276 2127 : bp_loc_hardware_watchpoint);
3a5c3e22 2128 for (bl = b->base.loc; bl; bl = bl->next)
9fa40276
TJB
2129 bl->loc_type = loc_type;
2130 }
2131
2132 for (v = val_chain; v; v = next)
2133 {
a5606eee
VP
2134 next = value_next (v);
2135 if (v != b->val)
2136 value_free (v);
2137 }
2138
c7437ca6
PA
2139 /* If a software watchpoint is not watching any memory, then the
2140 above left it without any location set up. But,
2141 bpstat_stop_status requires a location to be able to report
2142 stops, so make sure there's at least a dummy one. */
3a5c3e22 2143 if (b->base.type == bp_watchpoint && b->base.loc == NULL)
c6d81124 2144 software_watchpoint_add_no_memory_location (&b->base, frame_pspace);
a5606eee
VP
2145 }
2146 else if (!within_current_scope)
7270d8f2 2147 {
ac74f770
MS
2148 printf_filtered (_("\
2149Watchpoint %d deleted because the program has left the block\n\
2150in which its expression is valid.\n"),
3a5c3e22 2151 b->base.number);
d0fb5eae 2152 watchpoint_del_at_next_stop (b);
7270d8f2 2153 }
a5606eee
VP
2154
2155 /* Restore the selected frame. */
66076460
DJ
2156 if (frame_saved)
2157 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
2158}
2159
a5606eee 2160
74960c60 2161/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
2162 inserted in the inferior. We don't differentiate the type of BL's owner
2163 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2164 breakpoint_ops is not defined, because in insert_bp_location,
2165 tracepoint's insert_location will not be called. */
74960c60 2166static int
35df4500 2167should_be_inserted (struct bp_location *bl)
74960c60 2168{
35df4500 2169 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
2170 return 0;
2171
35df4500 2172 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
2173 return 0;
2174
35df4500 2175 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
2176 return 0;
2177
f8eba3c6
TT
2178 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2179 return 0;
2180
56710373
PA
2181 /* This is set for example, when we're attached to the parent of a
2182 vfork, and have detached from the child. The child is running
2183 free, and we expect it to do an exec or exit, at which point the
2184 OS makes the parent schedulable again (and the target reports
2185 that the vfork is done). Until the child is done with the shared
2186 memory region, do not insert breakpoints in the parent, otherwise
2187 the child could still trip on the parent's breakpoints. Since
2188 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2189 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2190 return 0;
2191
31e77af2 2192 /* Don't insert a breakpoint if we're trying to step past its
21edc42f
YQ
2193 location, except if the breakpoint is a single-step breakpoint,
2194 and the breakpoint's thread is the thread which is stepping past
2195 a breakpoint. */
31e77af2
PA
2196 if ((bl->loc_type == bp_loc_software_breakpoint
2197 || bl->loc_type == bp_loc_hardware_breakpoint)
2198 && stepping_past_instruction_at (bl->pspace->aspace,
21edc42f
YQ
2199 bl->address)
2200 /* The single-step breakpoint may be inserted at the location
2201 we're trying to step if the instruction branches to itself.
2202 However, the instruction won't be executed at all and it may
2203 break the semantics of the instruction, for example, the
2204 instruction is a conditional branch or updates some flags.
2205 We can't fix it unless GDB is able to emulate the instruction
2206 or switch to displaced stepping. */
2207 && !(bl->owner->type == bp_single_step
2208 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
e558d7c1
PA
2209 {
2210 if (debug_infrun)
2211 {
2212 fprintf_unfiltered (gdb_stdlog,
2213 "infrun: skipping breakpoint: "
2214 "stepping past insn at: %s\n",
2215 paddress (bl->gdbarch, bl->address));
2216 }
2217 return 0;
2218 }
31e77af2 2219
963f9c80
PA
2220 /* Don't insert watchpoints if we're trying to step past the
2221 instruction that triggered one. */
2222 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2223 && stepping_past_nonsteppable_watchpoint ())
2224 {
2225 if (debug_infrun)
2226 {
2227 fprintf_unfiltered (gdb_stdlog,
2228 "infrun: stepping past non-steppable watchpoint. "
2229 "skipping watchpoint at %s:%d\n",
2230 paddress (bl->gdbarch, bl->address),
2231 bl->length);
2232 }
2233 return 0;
2234 }
2235
74960c60
VP
2236 return 1;
2237}
2238
934709f0
PW
2239/* Same as should_be_inserted but does the check assuming
2240 that the location is not duplicated. */
2241
2242static int
2243unduplicated_should_be_inserted (struct bp_location *bl)
2244{
2245 int result;
2246 const int save_duplicate = bl->duplicate;
2247
2248 bl->duplicate = 0;
2249 result = should_be_inserted (bl);
2250 bl->duplicate = save_duplicate;
2251 return result;
2252}
2253
b775012e
LM
2254/* Parses a conditional described by an expression COND into an
2255 agent expression bytecode suitable for evaluation
2256 by the bytecode interpreter. Return NULL if there was
2257 any error during parsing. */
2258
833177a4 2259static agent_expr_up
b775012e
LM
2260parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2261{
833177a4 2262 if (cond == NULL)
b775012e
LM
2263 return NULL;
2264
833177a4
PA
2265 agent_expr_up aexpr;
2266
b775012e
LM
2267 /* We don't want to stop processing, so catch any errors
2268 that may show up. */
492d29ea 2269 TRY
b775012e 2270 {
036e657b 2271 aexpr = gen_eval_for_expr (scope, cond);
b775012e
LM
2272 }
2273
492d29ea 2274 CATCH (ex, RETURN_MASK_ERROR)
b775012e
LM
2275 {
2276 /* If we got here, it means the condition could not be parsed to a valid
2277 bytecode expression and thus can't be evaluated on the target's side.
2278 It's no use iterating through the conditions. */
b775012e 2279 }
492d29ea 2280 END_CATCH
b775012e
LM
2281
2282 /* We have a valid agent expression. */
2283 return aexpr;
2284}
2285
2286/* Based on location BL, create a list of breakpoint conditions to be
2287 passed on to the target. If we have duplicated locations with different
2288 conditions, we will add such conditions to the list. The idea is that the
2289 target will evaluate the list of conditions and will only notify GDB when
2290 one of them is true. */
2291
2292static void
2293build_target_condition_list (struct bp_location *bl)
2294{
2295 struct bp_location **locp = NULL, **loc2p;
2296 int null_condition_or_parse_error = 0;
2297 int modified = bl->needs_update;
2298 struct bp_location *loc;
2299
8b4f3082 2300 /* Release conditions left over from a previous insert. */
3cde5c42 2301 bl->target_info.conditions.clear ();
8b4f3082 2302
b775012e
LM
2303 /* This is only meaningful if the target is
2304 evaluating conditions and if the user has
2305 opted for condition evaluation on the target's
2306 side. */
2307 if (gdb_evaluates_breakpoint_condition_p ()
2308 || !target_supports_evaluation_of_breakpoint_conditions ())
2309 return;
2310
2311 /* Do a first pass to check for locations with no assigned
2312 conditions or conditions that fail to parse to a valid agent expression
2313 bytecode. If any of these happen, then it's no use to send conditions
2314 to the target since this location will always trigger and generate a
2315 response back to GDB. */
2316 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2317 {
2318 loc = (*loc2p);
2319 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2320 {
2321 if (modified)
2322 {
b775012e
LM
2323 /* Re-parse the conditions since something changed. In that
2324 case we already freed the condition bytecodes (see
2325 force_breakpoint_reinsertion). We just
2326 need to parse the condition to bytecodes again. */
833177a4
PA
2327 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2328 loc->cond.get ());
b775012e
LM
2329 }
2330
2331 /* If we have a NULL bytecode expression, it means something
2332 went wrong or we have a null condition expression. */
2333 if (!loc->cond_bytecode)
2334 {
2335 null_condition_or_parse_error = 1;
2336 break;
2337 }
2338 }
2339 }
2340
2341 /* If any of these happened, it means we will have to evaluate the conditions
2342 for the location's address on gdb's side. It is no use keeping bytecodes
2343 for all the other duplicate locations, thus we free all of them here.
2344
2345 This is so we have a finer control over which locations' conditions are
2346 being evaluated by GDB or the remote stub. */
2347 if (null_condition_or_parse_error)
2348 {
2349 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2350 {
2351 loc = (*loc2p);
2352 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2353 {
2354 /* Only go as far as the first NULL bytecode is
2355 located. */
2356 if (!loc->cond_bytecode)
2357 return;
2358
833177a4 2359 loc->cond_bytecode.reset ();
b775012e
LM
2360 }
2361 }
2362 }
2363
2364 /* No NULL conditions or failed bytecode generation. Build a condition list
2365 for this location's address. */
2366 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2367 {
2368 loc = (*loc2p);
2369 if (loc->cond
2370 && is_breakpoint (loc->owner)
2371 && loc->pspace->num == bl->pspace->num
2372 && loc->owner->enable_state == bp_enabled
2373 && loc->enabled)
3cde5c42
PA
2374 {
2375 /* Add the condition to the vector. This will be used later
2376 to send the conditions to the target. */
2377 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2378 }
b775012e
LM
2379 }
2380
2381 return;
2382}
2383
d3ce09f5
SS
2384/* Parses a command described by string CMD into an agent expression
2385 bytecode suitable for evaluation by the bytecode interpreter.
2386 Return NULL if there was any error during parsing. */
2387
833177a4 2388static agent_expr_up
d3ce09f5
SS
2389parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2390{
2391 struct cleanup *old_cleanups = 0;
4d01a485 2392 struct expression **argvec;
bbc13ae3
KS
2393 const char *cmdrest;
2394 const char *format_start, *format_end;
d3ce09f5
SS
2395 struct format_piece *fpieces;
2396 int nargs;
2397 struct gdbarch *gdbarch = get_current_arch ();
2398
833177a4 2399 if (cmd == NULL)
d3ce09f5
SS
2400 return NULL;
2401
2402 cmdrest = cmd;
2403
2404 if (*cmdrest == ',')
2405 ++cmdrest;
bbc13ae3 2406 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2407
2408 if (*cmdrest++ != '"')
2409 error (_("No format string following the location"));
2410
2411 format_start = cmdrest;
2412
2413 fpieces = parse_format_string (&cmdrest);
2414
2415 old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces);
2416
2417 format_end = cmdrest;
2418
2419 if (*cmdrest++ != '"')
2420 error (_("Bad format string, non-terminated '\"'."));
2421
bbc13ae3 2422 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2423
2424 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2425 error (_("Invalid argument syntax"));
2426
2427 if (*cmdrest == ',')
2428 cmdrest++;
bbc13ae3 2429 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2430
2431 /* For each argument, make an expression. */
2432
2433 argvec = (struct expression **) alloca (strlen (cmd)
2434 * sizeof (struct expression *));
2435
2436 nargs = 0;
2437 while (*cmdrest != '\0')
2438 {
bbc13ae3 2439 const char *cmd1;
d3ce09f5
SS
2440
2441 cmd1 = cmdrest;
4d01a485
PA
2442 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2443 argvec[nargs++] = expr.release ();
d3ce09f5
SS
2444 cmdrest = cmd1;
2445 if (*cmdrest == ',')
2446 ++cmdrest;
2447 }
2448
833177a4
PA
2449 agent_expr_up aexpr;
2450
d3ce09f5
SS
2451 /* We don't want to stop processing, so catch any errors
2452 that may show up. */
492d29ea 2453 TRY
d3ce09f5 2454 {
036e657b
JB
2455 aexpr = gen_printf (scope, gdbarch, 0, 0,
2456 format_start, format_end - format_start,
2457 fpieces, nargs, argvec);
d3ce09f5 2458 }
492d29ea 2459 CATCH (ex, RETURN_MASK_ERROR)
d3ce09f5
SS
2460 {
2461 /* If we got here, it means the command could not be parsed to a valid
2462 bytecode expression and thus can't be evaluated on the target's side.
2463 It's no use iterating through the other commands. */
d3ce09f5 2464 }
492d29ea
PA
2465 END_CATCH
2466
2467 do_cleanups (old_cleanups);
d3ce09f5 2468
d3ce09f5
SS
2469 /* We have a valid agent expression, return it. */
2470 return aexpr;
2471}
2472
2473/* Based on location BL, create a list of breakpoint commands to be
2474 passed on to the target. If we have duplicated locations with
2475 different commands, we will add any such to the list. */
2476
2477static void
2478build_target_command_list (struct bp_location *bl)
2479{
2480 struct bp_location **locp = NULL, **loc2p;
2481 int null_command_or_parse_error = 0;
2482 int modified = bl->needs_update;
2483 struct bp_location *loc;
2484
3cde5c42
PA
2485 /* Clear commands left over from a previous insert. */
2486 bl->target_info.tcommands.clear ();
8b4f3082 2487
41fac0cf 2488 if (!target_can_run_breakpoint_commands ())
d3ce09f5
SS
2489 return;
2490
41fac0cf
PA
2491 /* For now, limit to agent-style dprintf breakpoints. */
2492 if (dprintf_style != dprintf_style_agent)
d3ce09f5
SS
2493 return;
2494
41fac0cf
PA
2495 /* For now, if we have any duplicate location that isn't a dprintf,
2496 don't install the target-side commands, as that would make the
2497 breakpoint not be reported to the core, and we'd lose
2498 control. */
2499 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2500 {
2501 loc = (*loc2p);
2502 if (is_breakpoint (loc->owner)
2503 && loc->pspace->num == bl->pspace->num
2504 && loc->owner->type != bp_dprintf)
2505 return;
2506 }
2507
d3ce09f5
SS
2508 /* Do a first pass to check for locations with no assigned
2509 conditions or conditions that fail to parse to a valid agent expression
2510 bytecode. If any of these happen, then it's no use to send conditions
2511 to the target since this location will always trigger and generate a
2512 response back to GDB. */
2513 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2514 {
2515 loc = (*loc2p);
2516 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2517 {
2518 if (modified)
2519 {
d3ce09f5
SS
2520 /* Re-parse the commands since something changed. In that
2521 case we already freed the command bytecodes (see
2522 force_breakpoint_reinsertion). We just
2523 need to parse the command to bytecodes again. */
833177a4
PA
2524 loc->cmd_bytecode
2525 = parse_cmd_to_aexpr (bl->address,
2526 loc->owner->extra_string);
d3ce09f5
SS
2527 }
2528
2529 /* If we have a NULL bytecode expression, it means something
2530 went wrong or we have a null command expression. */
2531 if (!loc->cmd_bytecode)
2532 {
2533 null_command_or_parse_error = 1;
2534 break;
2535 }
2536 }
2537 }
2538
2539 /* If anything failed, then we're not doing target-side commands,
2540 and so clean up. */
2541 if (null_command_or_parse_error)
2542 {
2543 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2544 {
2545 loc = (*loc2p);
2546 if (is_breakpoint (loc->owner)
2547 && loc->pspace->num == bl->pspace->num)
2548 {
2549 /* Only go as far as the first NULL bytecode is
2550 located. */
40fb6c5e 2551 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2552 return;
2553
833177a4 2554 loc->cmd_bytecode.reset ();
d3ce09f5
SS
2555 }
2556 }
2557 }
2558
2559 /* No NULL commands or failed bytecode generation. Build a command list
2560 for this location's address. */
2561 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2562 {
2563 loc = (*loc2p);
2564 if (loc->owner->extra_string
2565 && is_breakpoint (loc->owner)
2566 && loc->pspace->num == bl->pspace->num
2567 && loc->owner->enable_state == bp_enabled
2568 && loc->enabled)
3cde5c42
PA
2569 {
2570 /* Add the command to the vector. This will be used later
2571 to send the commands to the target. */
2572 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2573 }
d3ce09f5
SS
2574 }
2575
2576 bl->target_info.persist = 0;
2577 /* Maybe flag this location as persistent. */
2578 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2579 bl->target_info.persist = 1;
2580}
2581
833b7ab5
YQ
2582/* Return the kind of breakpoint on address *ADDR. Get the kind
2583 of breakpoint according to ADDR except single-step breakpoint.
2584 Get the kind of single-step breakpoint according to the current
2585 registers state. */
cd6c3b4f
YQ
2586
2587static int
2588breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2589{
833b7ab5
YQ
2590 if (bl->owner->type == bp_single_step)
2591 {
2592 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2593 struct regcache *regcache;
2594
2595 regcache = get_thread_regcache (thr->ptid);
2596
2597 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2598 regcache, addr);
2599 }
2600 else
2601 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
cd6c3b4f
YQ
2602}
2603
35df4500
TJB
2604/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2605 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2606 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2607 Returns 0 for success, 1 if the bp_location type is not supported or
2608 -1 for failure.
879bfdc2 2609
4a64f543
MS
2610 NOTE drow/2003-09-09: This routine could be broken down to an
2611 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2612static int
35df4500 2613insert_bp_location (struct bp_location *bl,
26bb91f3 2614 struct ui_file *tmp_error_stream,
3fbb6ffa 2615 int *disabled_breaks,
dd61ec5c
MW
2616 int *hw_breakpoint_error,
2617 int *hw_bp_error_explained_already)
879bfdc2 2618{
0000e5cc
PA
2619 enum errors bp_err = GDB_NO_ERROR;
2620 const char *bp_err_message = NULL;
879bfdc2 2621
b775012e 2622 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2623 return 0;
2624
35c63cd8
JB
2625 /* Note we don't initialize bl->target_info, as that wipes out
2626 the breakpoint location's shadow_contents if the breakpoint
2627 is still inserted at that location. This in turn breaks
2628 target_read_memory which depends on these buffers when
2629 a memory read is requested at the breakpoint location:
2630 Once the target_info has been wiped, we fail to see that
2631 we have a breakpoint inserted at that address and thus
2632 read the breakpoint instead of returning the data saved in
2633 the breakpoint location's shadow contents. */
0d5ed153 2634 bl->target_info.reqstd_address = bl->address;
35df4500 2635 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2636 bl->target_info.length = bl->length;
8181d85f 2637
b775012e
LM
2638 /* When working with target-side conditions, we must pass all the conditions
2639 for the same breakpoint address down to the target since GDB will not
2640 insert those locations. With a list of breakpoint conditions, the target
2641 can decide when to stop and notify GDB. */
2642
2643 if (is_breakpoint (bl->owner))
2644 {
2645 build_target_condition_list (bl);
d3ce09f5
SS
2646 build_target_command_list (bl);
2647 /* Reset the modification marker. */
b775012e
LM
2648 bl->needs_update = 0;
2649 }
2650
35df4500
TJB
2651 if (bl->loc_type == bp_loc_software_breakpoint
2652 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2653 {
35df4500 2654 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2655 {
2656 /* If the explicitly specified breakpoint type
2657 is not hardware breakpoint, check the memory map to see
2658 if the breakpoint address is in read only memory or not.
4a64f543 2659
765dc015
VP
2660 Two important cases are:
2661 - location type is not hardware breakpoint, memory
2662 is readonly. We change the type of the location to
2663 hardware breakpoint.
4a64f543
MS
2664 - location type is hardware breakpoint, memory is
2665 read-write. This means we've previously made the
2666 location hardware one, but then the memory map changed,
2667 so we undo.
765dc015 2668
4a64f543
MS
2669 When breakpoints are removed, remove_breakpoints will use
2670 location types we've just set here, the only possible
2671 problem is that memory map has changed during running
2672 program, but it's not going to work anyway with current
2673 gdb. */
765dc015 2674 struct mem_region *mr
0d5ed153 2675 = lookup_mem_region (bl->target_info.reqstd_address);
765dc015
VP
2676
2677 if (mr)
2678 {
2679 if (automatic_hardware_breakpoints)
2680 {
765dc015
VP
2681 enum bp_loc_type new_type;
2682
2683 if (mr->attrib.mode != MEM_RW)
2684 new_type = bp_loc_hardware_breakpoint;
2685 else
2686 new_type = bp_loc_software_breakpoint;
2687
35df4500 2688 if (new_type != bl->loc_type)
765dc015
VP
2689 {
2690 static int said = 0;
cc59ec59 2691
35df4500 2692 bl->loc_type = new_type;
765dc015
VP
2693 if (!said)
2694 {
3e43a32a
MS
2695 fprintf_filtered (gdb_stdout,
2696 _("Note: automatically using "
2697 "hardware breakpoints for "
2698 "read-only addresses.\n"));
765dc015
VP
2699 said = 1;
2700 }
2701 }
2702 }
35df4500 2703 else if (bl->loc_type == bp_loc_software_breakpoint
0fec99e8
PA
2704 && mr->attrib.mode != MEM_RW)
2705 {
2706 fprintf_unfiltered (tmp_error_stream,
2707 _("Cannot insert breakpoint %d.\n"
2708 "Cannot set software breakpoint "
2709 "at read-only address %s\n"),
2710 bl->owner->number,
2711 paddress (bl->gdbarch, bl->address));
2712 return 1;
2713 }
765dc015
VP
2714 }
2715 }
2716
879bfdc2
DJ
2717 /* First check to see if we have to handle an overlay. */
2718 if (overlay_debugging == ovly_off
35df4500
TJB
2719 || bl->section == NULL
2720 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2721 {
2722 /* No overlay handling: just set the breakpoint. */
492d29ea 2723 TRY
dd61ec5c 2724 {
0000e5cc
PA
2725 int val;
2726
dd61ec5c 2727 val = bl->owner->ops->insert_location (bl);
0000e5cc
PA
2728 if (val)
2729 bp_err = GENERIC_ERROR;
dd61ec5c 2730 }
492d29ea 2731 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2732 {
0000e5cc
PA
2733 bp_err = e.error;
2734 bp_err_message = e.message;
dd61ec5c 2735 }
492d29ea 2736 END_CATCH
879bfdc2
DJ
2737 }
2738 else
2739 {
4a64f543 2740 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2741 Shall we set a breakpoint at the LMA? */
2742 if (!overlay_events_enabled)
2743 {
2744 /* Yes -- overlay event support is not active,
2745 so we must try to set a breakpoint at the LMA.
2746 This will not work for a hardware breakpoint. */
35df4500 2747 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2748 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2749 bl->owner->number);
879bfdc2
DJ
2750 else
2751 {
35df4500
TJB
2752 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2753 bl->section);
879bfdc2 2754 /* Set a software (trap) breakpoint at the LMA. */
35df4500 2755 bl->overlay_target_info = bl->target_info;
0d5ed153 2756 bl->overlay_target_info.reqstd_address = addr;
0000e5cc
PA
2757
2758 /* No overlay handling: just set the breakpoint. */
492d29ea 2759 TRY
0000e5cc
PA
2760 {
2761 int val;
2762
579c6ad9 2763 bl->overlay_target_info.kind
cd6c3b4f
YQ
2764 = breakpoint_kind (bl, &addr);
2765 bl->overlay_target_info.placed_address = addr;
0000e5cc
PA
2766 val = target_insert_breakpoint (bl->gdbarch,
2767 &bl->overlay_target_info);
2768 if (val)
2769 bp_err = GENERIC_ERROR;
2770 }
492d29ea 2771 CATCH (e, RETURN_MASK_ALL)
0000e5cc
PA
2772 {
2773 bp_err = e.error;
2774 bp_err_message = e.message;
2775 }
492d29ea 2776 END_CATCH
0000e5cc
PA
2777
2778 if (bp_err != GDB_NO_ERROR)
99361f52 2779 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2780 "Overlay breakpoint %d "
2781 "failed: in ROM?\n",
35df4500 2782 bl->owner->number);
879bfdc2
DJ
2783 }
2784 }
2785 /* Shall we set a breakpoint at the VMA? */
35df4500 2786 if (section_is_mapped (bl->section))
879bfdc2
DJ
2787 {
2788 /* Yes. This overlay section is mapped into memory. */
492d29ea 2789 TRY
dd61ec5c 2790 {
0000e5cc
PA
2791 int val;
2792
dd61ec5c 2793 val = bl->owner->ops->insert_location (bl);
0000e5cc
PA
2794 if (val)
2795 bp_err = GENERIC_ERROR;
dd61ec5c 2796 }
492d29ea 2797 CATCH (e, RETURN_MASK_ALL)
dd61ec5c 2798 {
0000e5cc
PA
2799 bp_err = e.error;
2800 bp_err_message = e.message;
dd61ec5c 2801 }
492d29ea 2802 END_CATCH
879bfdc2
DJ
2803 }
2804 else
2805 {
2806 /* No. This breakpoint will not be inserted.
2807 No error, but do not mark the bp as 'inserted'. */
2808 return 0;
2809 }
2810 }
2811
0000e5cc 2812 if (bp_err != GDB_NO_ERROR)
879bfdc2
DJ
2813 {
2814 /* Can't set the breakpoint. */
0000e5cc
PA
2815
2816 /* In some cases, we might not be able to insert a
2817 breakpoint in a shared library that has already been
2818 removed, but we have not yet processed the shlib unload
2819 event. Unfortunately, some targets that implement
076855f9
PA
2820 breakpoint insertion themselves can't tell why the
2821 breakpoint insertion failed (e.g., the remote target
2822 doesn't define error codes), so we must treat generic
2823 errors as memory errors. */
0000e5cc 2824 if ((bp_err == GENERIC_ERROR || bp_err == MEMORY_ERROR)
076855f9 2825 && bl->loc_type == bp_loc_software_breakpoint
08351840 2826 && (solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
2827 || shared_objfile_contains_address_p (bl->pspace,
2828 bl->address)))
879bfdc2 2829 {
4a64f543 2830 /* See also: disable_breakpoints_in_shlibs. */
35df4500 2831 bl->shlib_disabled = 1;
8d3788bd 2832 observer_notify_breakpoint_modified (bl->owner);
3fbb6ffa
TJB
2833 if (!*disabled_breaks)
2834 {
2835 fprintf_unfiltered (tmp_error_stream,
2836 "Cannot insert breakpoint %d.\n",
2837 bl->owner->number);
2838 fprintf_unfiltered (tmp_error_stream,
2839 "Temporarily disabling shared "
2840 "library breakpoints:\n");
2841 }
2842 *disabled_breaks = 1;
879bfdc2 2843 fprintf_unfiltered (tmp_error_stream,
35df4500 2844 "breakpoint #%d\n", bl->owner->number);
0000e5cc 2845 return 0;
879bfdc2
DJ
2846 }
2847 else
879bfdc2 2848 {
35df4500 2849 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2850 {
0000e5cc
PA
2851 *hw_breakpoint_error = 1;
2852 *hw_bp_error_explained_already = bp_err_message != NULL;
dd61ec5c
MW
2853 fprintf_unfiltered (tmp_error_stream,
2854 "Cannot insert hardware breakpoint %d%s",
0000e5cc
PA
2855 bl->owner->number, bp_err_message ? ":" : ".\n");
2856 if (bp_err_message != NULL)
2857 fprintf_unfiltered (tmp_error_stream, "%s.\n", bp_err_message);
879bfdc2
DJ
2858 }
2859 else
2860 {
0000e5cc
PA
2861 if (bp_err_message == NULL)
2862 {
2863 char *message
2864 = memory_error_message (TARGET_XFER_E_IO,
2865 bl->gdbarch, bl->address);
2866 struct cleanup *old_chain = make_cleanup (xfree, message);
2867
2868 fprintf_unfiltered (tmp_error_stream,
2869 "Cannot insert breakpoint %d.\n"
2870 "%s\n",
2871 bl->owner->number, message);
2872 do_cleanups (old_chain);
2873 }
2874 else
2875 {
2876 fprintf_unfiltered (tmp_error_stream,
2877 "Cannot insert breakpoint %d: %s\n",
2878 bl->owner->number,
2879 bp_err_message);
2880 }
879bfdc2 2881 }
0000e5cc 2882 return 1;
879bfdc2
DJ
2883
2884 }
2885 }
2886 else
35df4500 2887 bl->inserted = 1;
879bfdc2 2888
0000e5cc 2889 return 0;
879bfdc2
DJ
2890 }
2891
35df4500 2892 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2893 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2894 watchpoints. It's not clear that it's necessary... */
35df4500 2895 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2896 {
0000e5cc
PA
2897 int val;
2898
77b06cd7
TJB
2899 gdb_assert (bl->owner->ops != NULL
2900 && bl->owner->ops->insert_location != NULL);
2901
2902 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2903
2904 /* If trying to set a read-watchpoint, and it turns out it's not
2905 supported, try emulating one with an access watchpoint. */
35df4500 2906 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2907 {
2908 struct bp_location *loc, **loc_temp;
2909
2910 /* But don't try to insert it, if there's already another
2911 hw_access location that would be considered a duplicate
2912 of this one. */
2913 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2914 if (loc != bl
85d721b8 2915 && loc->watchpoint_type == hw_access
35df4500 2916 && watchpoint_locations_match (bl, loc))
85d721b8 2917 {
35df4500
TJB
2918 bl->duplicate = 1;
2919 bl->inserted = 1;
2920 bl->target_info = loc->target_info;
2921 bl->watchpoint_type = hw_access;
85d721b8
PA
2922 val = 0;
2923 break;
2924 }
2925
2926 if (val == 1)
2927 {
77b06cd7
TJB
2928 bl->watchpoint_type = hw_access;
2929 val = bl->owner->ops->insert_location (bl);
2930
2931 if (val)
2932 /* Back to the original value. */
2933 bl->watchpoint_type = hw_read;
85d721b8
PA
2934 }
2935 }
2936
35df4500 2937 bl->inserted = (val == 0);
879bfdc2
DJ
2938 }
2939
35df4500 2940 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2941 {
0000e5cc
PA
2942 int val;
2943
77b06cd7
TJB
2944 gdb_assert (bl->owner->ops != NULL
2945 && bl->owner->ops->insert_location != NULL);
2946
2947 val = bl->owner->ops->insert_location (bl);
2948 if (val)
2949 {
2950 bl->owner->enable_state = bp_disabled;
2951
2952 if (val == 1)
2953 warning (_("\
2954Error inserting catchpoint %d: Your system does not support this type\n\
2955of catchpoint."), bl->owner->number);
2956 else
2957 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2958 }
2959
2960 bl->inserted = (val == 0);
1640b821
DJ
2961
2962 /* We've already printed an error message if there was a problem
2963 inserting this catchpoint, and we've disabled the catchpoint,
2964 so just return success. */
2965 return 0;
879bfdc2
DJ
2966 }
2967
2968 return 0;
2969}
2970
6c95b8df
PA
2971/* This function is called when program space PSPACE is about to be
2972 deleted. It takes care of updating breakpoints to not reference
2973 PSPACE anymore. */
2974
2975void
2976breakpoint_program_space_exit (struct program_space *pspace)
2977{
2978 struct breakpoint *b, *b_temp;
876fa593 2979 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2980
2981 /* Remove any breakpoint that was set through this program space. */
2982 ALL_BREAKPOINTS_SAFE (b, b_temp)
2983 {
2984 if (b->pspace == pspace)
2985 delete_breakpoint (b);
2986 }
2987
2988 /* Breakpoints set through other program spaces could have locations
2989 bound to PSPACE as well. Remove those. */
876fa593 2990 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2991 {
2992 struct bp_location *tmp;
2993
2994 if (loc->pspace == pspace)
2995 {
2bdf28a0 2996 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2997 if (loc->owner->loc == loc)
2998 loc->owner->loc = loc->next;
2999 else
3000 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
3001 if (tmp->next == loc)
3002 {
3003 tmp->next = loc->next;
3004 break;
3005 }
3006 }
3007 }
3008
3009 /* Now update the global location list to permanently delete the
3010 removed locations above. */
44702360 3011 update_global_location_list (UGLL_DONT_INSERT);
6c95b8df
PA
3012}
3013
74960c60
VP
3014/* Make sure all breakpoints are inserted in inferior.
3015 Throws exception on any error.
3016 A breakpoint that is already inserted won't be inserted
3017 again, so calling this function twice is safe. */
3018void
3019insert_breakpoints (void)
3020{
3021 struct breakpoint *bpt;
3022
3023 ALL_BREAKPOINTS (bpt)
3024 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
3025 {
3026 struct watchpoint *w = (struct watchpoint *) bpt;
3027
3028 update_watchpoint (w, 0 /* don't reparse. */);
3029 }
74960c60 3030
04086b45
PA
3031 /* Updating watchpoints creates new locations, so update the global
3032 location list. Explicitly tell ugll to insert locations and
3033 ignore breakpoints_always_inserted_mode. */
3034 update_global_location_list (UGLL_INSERT);
74960c60
VP
3035}
3036
20388dd6
YQ
3037/* Invoke CALLBACK for each of bp_location. */
3038
3039void
3040iterate_over_bp_locations (walk_bp_location_callback callback)
3041{
3042 struct bp_location *loc, **loc_tmp;
3043
3044 ALL_BP_LOCATIONS (loc, loc_tmp)
3045 {
3046 callback (loc, NULL);
3047 }
3048}
3049
b775012e
LM
3050/* This is used when we need to synch breakpoint conditions between GDB and the
3051 target. It is the case with deleting and disabling of breakpoints when using
3052 always-inserted mode. */
3053
3054static void
3055update_inserted_breakpoint_locations (void)
3056{
3057 struct bp_location *bl, **blp_tmp;
3058 int error_flag = 0;
3059 int val = 0;
3060 int disabled_breaks = 0;
3061 int hw_breakpoint_error = 0;
dd61ec5c 3062 int hw_bp_details_reported = 0;
b775012e 3063
d7e74731 3064 string_file tmp_error_stream;
b775012e
LM
3065
3066 /* Explicitly mark the warning -- this will only be printed if
3067 there was an error. */
d7e74731 3068 tmp_error_stream.puts ("Warning:\n");
b775012e 3069
d7e74731 3070 struct cleanup *cleanups = save_current_space_and_thread ();
b775012e
LM
3071
3072 ALL_BP_LOCATIONS (bl, blp_tmp)
3073 {
3074 /* We only want to update software breakpoints and hardware
3075 breakpoints. */
3076 if (!is_breakpoint (bl->owner))
3077 continue;
3078
3079 /* We only want to update locations that are already inserted
3080 and need updating. This is to avoid unwanted insertion during
3081 deletion of breakpoints. */
3082 if (!bl->inserted || (bl->inserted && !bl->needs_update))
3083 continue;
3084
3085 switch_to_program_space_and_thread (bl->pspace);
3086
3087 /* For targets that support global breakpoints, there's no need
3088 to select an inferior to insert breakpoint to. In fact, even
3089 if we aren't attached to any process yet, we should still
3090 insert breakpoints. */
f5656ead 3091 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
b775012e
LM
3092 && ptid_equal (inferior_ptid, null_ptid))
3093 continue;
3094
d7e74731 3095 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 3096 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
3097 if (val)
3098 error_flag = val;
3099 }
3100
3101 if (error_flag)
3102 {
3103 target_terminal_ours_for_output ();
3104 error_stream (tmp_error_stream);
3105 }
3106
3107 do_cleanups (cleanups);
3108}
3109
c30eee59 3110/* Used when starting or continuing the program. */
c906108c 3111
74960c60
VP
3112static void
3113insert_breakpoint_locations (void)
c906108c 3114{
a5606eee 3115 struct breakpoint *bpt;
35df4500 3116 struct bp_location *bl, **blp_tmp;
eacd795a 3117 int error_flag = 0;
c906108c 3118 int val = 0;
3fbb6ffa 3119 int disabled_breaks = 0;
81d0cc19 3120 int hw_breakpoint_error = 0;
dd61ec5c 3121 int hw_bp_error_explained_already = 0;
c906108c 3122
d7e74731
PA
3123 string_file tmp_error_stream;
3124
81d0cc19
GS
3125 /* Explicitly mark the warning -- this will only be printed if
3126 there was an error. */
d7e74731 3127 tmp_error_stream.puts ("Warning:\n");
6c95b8df 3128
d7e74731 3129 struct cleanup *cleanups = save_current_space_and_thread ();
6c95b8df 3130
35df4500 3131 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 3132 {
b775012e 3133 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
3134 continue;
3135
4a64f543
MS
3136 /* There is no point inserting thread-specific breakpoints if
3137 the thread no longer exists. ALL_BP_LOCATIONS bp_location
3138 has BL->OWNER always non-NULL. */
35df4500 3139 if (bl->owner->thread != -1
5d5658a1 3140 && !valid_global_thread_id (bl->owner->thread))
f365de73
AS
3141 continue;
3142
35df4500 3143 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
3144
3145 /* For targets that support global breakpoints, there's no need
3146 to select an inferior to insert breakpoint to. In fact, even
3147 if we aren't attached to any process yet, we should still
3148 insert breakpoints. */
f5656ead 3149 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
3150 && ptid_equal (inferior_ptid, null_ptid))
3151 continue;
3152
d7e74731 3153 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
dd61ec5c 3154 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 3155 if (val)
eacd795a 3156 error_flag = val;
879bfdc2 3157 }
c906108c 3158
4a64f543
MS
3159 /* If we failed to insert all locations of a watchpoint, remove
3160 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
3161 ALL_BREAKPOINTS (bpt)
3162 {
3163 int some_failed = 0;
3164 struct bp_location *loc;
3165
3166 if (!is_hardware_watchpoint (bpt))
3167 continue;
3168
d6b74ac4 3169 if (!breakpoint_enabled (bpt))
a5606eee 3170 continue;
74960c60
VP
3171
3172 if (bpt->disposition == disp_del_at_next_stop)
3173 continue;
a5606eee
VP
3174
3175 for (loc = bpt->loc; loc; loc = loc->next)
56710373 3176 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
3177 {
3178 some_failed = 1;
3179 break;
3180 }
3181 if (some_failed)
3182 {
3183 for (loc = bpt->loc; loc; loc = loc->next)
3184 if (loc->inserted)
834c0d03 3185 remove_breakpoint (loc);
a5606eee
VP
3186
3187 hw_breakpoint_error = 1;
d7e74731
PA
3188 tmp_error_stream.printf ("Could not insert "
3189 "hardware watchpoint %d.\n",
3190 bpt->number);
eacd795a 3191 error_flag = -1;
a5606eee
VP
3192 }
3193 }
3194
eacd795a 3195 if (error_flag)
81d0cc19
GS
3196 {
3197 /* If a hardware breakpoint or watchpoint was inserted, add a
3198 message about possibly exhausted resources. */
dd61ec5c 3199 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 3200 {
d7e74731 3201 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
c6510018 3202You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 3203 }
81d0cc19
GS
3204 target_terminal_ours_for_output ();
3205 error_stream (tmp_error_stream);
3206 }
f7545552
TT
3207
3208 do_cleanups (cleanups);
c906108c
SS
3209}
3210
c30eee59
TJB
3211/* Used when the program stops.
3212 Returns zero if successful, or non-zero if there was a problem
3213 removing a breakpoint location. */
3214
c906108c 3215int
fba45db2 3216remove_breakpoints (void)
c906108c 3217{
35df4500 3218 struct bp_location *bl, **blp_tmp;
3a1bae8e 3219 int val = 0;
c906108c 3220
35df4500 3221 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3222 {
1e4d1764 3223 if (bl->inserted && !is_tracepoint (bl->owner))
834c0d03 3224 val |= remove_breakpoint (bl);
c5aa993b 3225 }
3a1bae8e 3226 return val;
c906108c
SS
3227}
3228
49fa26b0
PA
3229/* When a thread exits, remove breakpoints that are related to
3230 that thread. */
3231
3232static void
3233remove_threaded_breakpoints (struct thread_info *tp, int silent)
3234{
3235 struct breakpoint *b, *b_tmp;
3236
3237 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3238 {
5d5658a1 3239 if (b->thread == tp->global_num && user_breakpoint_p (b))
49fa26b0
PA
3240 {
3241 b->disposition = disp_del_at_next_stop;
3242
3243 printf_filtered (_("\
43792cf0
PA
3244Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3245 b->number, print_thread_id (tp));
49fa26b0
PA
3246
3247 /* Hide it from the user. */
3248 b->number = 0;
3249 }
3250 }
3251}
3252
6c95b8df
PA
3253/* Remove breakpoints of process PID. */
3254
3255int
3256remove_breakpoints_pid (int pid)
3257{
35df4500 3258 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
3259 int val;
3260 struct inferior *inf = find_inferior_pid (pid);
3261
35df4500 3262 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3263 {
35df4500 3264 if (bl->pspace != inf->pspace)
6c95b8df
PA
3265 continue;
3266
fc126975 3267 if (bl->inserted && !bl->target_info.persist)
6c95b8df 3268 {
834c0d03 3269 val = remove_breakpoint (bl);
6c95b8df
PA
3270 if (val != 0)
3271 return val;
3272 }
3273 }
3274 return 0;
3275}
3276
c906108c 3277int
fba45db2 3278reattach_breakpoints (int pid)
c906108c 3279{
6c95b8df 3280 struct cleanup *old_chain;
35df4500 3281 struct bp_location *bl, **blp_tmp;
c906108c 3282 int val;
dd61ec5c 3283 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
6c95b8df
PA
3284 struct inferior *inf;
3285 struct thread_info *tp;
3286
3287 tp = any_live_thread_of_process (pid);
3288 if (tp == NULL)
3289 return 1;
3290
3291 inf = find_inferior_pid (pid);
3292 old_chain = save_inferior_ptid ();
3293
3294 inferior_ptid = tp->ptid;
a4954f26 3295
d7e74731 3296 string_file tmp_error_stream;
c906108c 3297
35df4500 3298 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3299 {
35df4500 3300 if (bl->pspace != inf->pspace)
6c95b8df
PA
3301 continue;
3302
35df4500 3303 if (bl->inserted)
c5aa993b 3304 {
35df4500 3305 bl->inserted = 0;
d7e74731 3306 val = insert_bp_location (bl, &tmp_error_stream, &dummy1, &dummy2, &dummy3);
c5aa993b
JM
3307 if (val != 0)
3308 {
ce696e05 3309 do_cleanups (old_chain);
c5aa993b
JM
3310 return val;
3311 }
3312 }
3313 }
ce696e05 3314 do_cleanups (old_chain);
c906108c
SS
3315 return 0;
3316}
3317
e58b0e63
PA
3318static int internal_breakpoint_number = -1;
3319
84f4c1fe
PM
3320/* Set the breakpoint number of B, depending on the value of INTERNAL.
3321 If INTERNAL is non-zero, the breakpoint number will be populated
3322 from internal_breakpoint_number and that variable decremented.
e5dd4106 3323 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3324 breakpoint_count and that value incremented. Internal breakpoints
3325 do not set the internal var bpnum. */
3326static void
3327set_breakpoint_number (int internal, struct breakpoint *b)
3328{
3329 if (internal)
3330 b->number = internal_breakpoint_number--;
3331 else
3332 {
3333 set_breakpoint_count (breakpoint_count + 1);
3334 b->number = breakpoint_count;
3335 }
3336}
3337
e62c965a 3338static struct breakpoint *
a6d9a66e 3339create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3340 CORE_ADDR address, enum bptype type,
c0a91b2b 3341 const struct breakpoint_ops *ops)
e62c965a 3342{
e62c965a
PP
3343 struct symtab_and_line sal;
3344 struct breakpoint *b;
3345
4a64f543 3346 init_sal (&sal); /* Initialize to zeroes. */
e62c965a
PP
3347
3348 sal.pc = address;
3349 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3350 sal.pspace = current_program_space;
e62c965a 3351
06edf0c0 3352 b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3353 b->number = internal_breakpoint_number--;
3354 b->disposition = disp_donttouch;
3355
3356 return b;
3357}
3358
17450429
PP
3359static const char *const longjmp_names[] =
3360 {
3361 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3362 };
3363#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3364
3365/* Per-objfile data private to breakpoint.c. */
3366struct breakpoint_objfile_data
3367{
3368 /* Minimal symbol for "_ovly_debug_event" (if any). */
3b7344d5 3369 struct bound_minimal_symbol overlay_msym;
17450429
PP
3370
3371 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3b7344d5 3372 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES];
17450429 3373
28106bc2
SDJ
3374 /* True if we have looked for longjmp probes. */
3375 int longjmp_searched;
3376
3377 /* SystemTap probe points for longjmp (if any). */
3378 VEC (probe_p) *longjmp_probes;
3379
17450429 3380 /* Minimal symbol for "std::terminate()" (if any). */
3b7344d5 3381 struct bound_minimal_symbol terminate_msym;
17450429
PP
3382
3383 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3b7344d5 3384 struct bound_minimal_symbol exception_msym;
28106bc2
SDJ
3385
3386 /* True if we have looked for exception probes. */
3387 int exception_searched;
3388
3389 /* SystemTap probe points for unwinding (if any). */
3390 VEC (probe_p) *exception_probes;
17450429
PP
3391};
3392
3393static const struct objfile_data *breakpoint_objfile_key;
3394
3395/* Minimal symbol not found sentinel. */
3396static struct minimal_symbol msym_not_found;
3397
3398/* Returns TRUE if MSYM point to the "not found" sentinel. */
3399
3400static int
3401msym_not_found_p (const struct minimal_symbol *msym)
3402{
3403 return msym == &msym_not_found;
3404}
3405
3406/* Return per-objfile data needed by breakpoint.c.
3407 Allocate the data if necessary. */
3408
3409static struct breakpoint_objfile_data *
3410get_breakpoint_objfile_data (struct objfile *objfile)
3411{
3412 struct breakpoint_objfile_data *bp_objfile_data;
3413
9a3c8263
SM
3414 bp_objfile_data = ((struct breakpoint_objfile_data *)
3415 objfile_data (objfile, breakpoint_objfile_key));
17450429
PP
3416 if (bp_objfile_data == NULL)
3417 {
8d749320
SM
3418 bp_objfile_data =
3419 XOBNEW (&objfile->objfile_obstack, struct breakpoint_objfile_data);
17450429
PP
3420
3421 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
3422 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3423 }
3424 return bp_objfile_data;
3425}
3426
28106bc2
SDJ
3427static void
3428free_breakpoint_probes (struct objfile *obj, void *data)
3429{
9a3c8263
SM
3430 struct breakpoint_objfile_data *bp_objfile_data
3431 = (struct breakpoint_objfile_data *) data;
28106bc2
SDJ
3432
3433 VEC_free (probe_p, bp_objfile_data->longjmp_probes);
3434 VEC_free (probe_p, bp_objfile_data->exception_probes);
3435}
3436
e62c965a 3437static void
af02033e 3438create_overlay_event_breakpoint (void)
e62c965a 3439{
69de3c6a 3440 struct objfile *objfile;
af02033e 3441 const char *const func_name = "_ovly_debug_event";
e62c965a 3442
69de3c6a
PP
3443 ALL_OBJFILES (objfile)
3444 {
3445 struct breakpoint *b;
17450429
PP
3446 struct breakpoint_objfile_data *bp_objfile_data;
3447 CORE_ADDR addr;
67994074 3448 struct explicit_location explicit_loc;
69de3c6a 3449
17450429
PP
3450 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3451
3b7344d5 3452 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
17450429
PP
3453 continue;
3454
3b7344d5 3455 if (bp_objfile_data->overlay_msym.minsym == NULL)
17450429 3456 {
3b7344d5 3457 struct bound_minimal_symbol m;
17450429
PP
3458
3459 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3460 if (m.minsym == NULL)
17450429
PP
3461 {
3462 /* Avoid future lookups in this objfile. */
3b7344d5 3463 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
17450429
PP
3464 continue;
3465 }
3466 bp_objfile_data->overlay_msym = m;
3467 }
e62c965a 3468
77e371c0 3469 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
17450429 3470 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3471 bp_overlay_event,
3472 &internal_breakpoint_ops);
67994074
KS
3473 initialize_explicit_location (&explicit_loc);
3474 explicit_loc.function_name = ASTRDUP (func_name);
3475 b->location = new_explicit_location (&explicit_loc);
e62c965a 3476
69de3c6a
PP
3477 if (overlay_debugging == ovly_auto)
3478 {
3479 b->enable_state = bp_enabled;
3480 overlay_events_enabled = 1;
3481 }
3482 else
3483 {
3484 b->enable_state = bp_disabled;
3485 overlay_events_enabled = 0;
3486 }
e62c965a 3487 }
e62c965a
PP
3488}
3489
0fd8e87f 3490static void
af02033e 3491create_longjmp_master_breakpoint (void)
0fd8e87f 3492{
6c95b8df 3493 struct program_space *pspace;
6c95b8df
PA
3494 struct cleanup *old_chain;
3495
3496 old_chain = save_current_program_space ();
0fd8e87f 3497
6c95b8df 3498 ALL_PSPACES (pspace)
af02033e
PP
3499 {
3500 struct objfile *objfile;
3501
3502 set_current_program_space (pspace);
3503
3504 ALL_OBJFILES (objfile)
0fd8e87f 3505 {
af02033e
PP
3506 int i;
3507 struct gdbarch *gdbarch;
17450429 3508 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3509
af02033e 3510 gdbarch = get_objfile_arch (objfile);
0fd8e87f 3511
17450429
PP
3512 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3513
28106bc2
SDJ
3514 if (!bp_objfile_data->longjmp_searched)
3515 {
25f9533e
SDJ
3516 VEC (probe_p) *ret;
3517
3518 ret = find_probes_in_objfile (objfile, "libc", "longjmp");
3519 if (ret != NULL)
3520 {
3521 /* We are only interested in checking one element. */
3522 struct probe *p = VEC_index (probe_p, ret, 0);
3523
3524 if (!can_evaluate_probe_arguments (p))
3525 {
3526 /* We cannot use the probe interface here, because it does
3527 not know how to evaluate arguments. */
3528 VEC_free (probe_p, ret);
3529 ret = NULL;
3530 }
3531 }
3532 bp_objfile_data->longjmp_probes = ret;
28106bc2
SDJ
3533 bp_objfile_data->longjmp_searched = 1;
3534 }
3535
3536 if (bp_objfile_data->longjmp_probes != NULL)
3537 {
3538 int i;
3539 struct probe *probe;
3540 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3541
3542 for (i = 0;
3543 VEC_iterate (probe_p,
3544 bp_objfile_data->longjmp_probes,
3545 i, probe);
3546 ++i)
3547 {
3548 struct breakpoint *b;
3549
729662a5
TT
3550 b = create_internal_breakpoint (gdbarch,
3551 get_probe_address (probe,
3552 objfile),
28106bc2
SDJ
3553 bp_longjmp_master,
3554 &internal_breakpoint_ops);
5b56227b
KS
3555 b->location
3556 = new_probe_location ("-probe-stap libc:longjmp");
28106bc2
SDJ
3557 b->enable_state = bp_disabled;
3558 }
3559
3560 continue;
3561 }
3562
0569175e
TSD
3563 if (!gdbarch_get_longjmp_target_p (gdbarch))
3564 continue;
3565
17450429 3566 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
3567 {
3568 struct breakpoint *b;
af02033e 3569 const char *func_name;
17450429 3570 CORE_ADDR addr;
67994074 3571 struct explicit_location explicit_loc;
6c95b8df 3572
3b7344d5 3573 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
af02033e 3574 continue;
0fd8e87f 3575
17450429 3576 func_name = longjmp_names[i];
3b7344d5 3577 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
17450429 3578 {
3b7344d5 3579 struct bound_minimal_symbol m;
17450429
PP
3580
3581 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3582 if (m.minsym == NULL)
17450429
PP
3583 {
3584 /* Prevent future lookups in this objfile. */
3b7344d5 3585 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
17450429
PP
3586 continue;
3587 }
3588 bp_objfile_data->longjmp_msym[i] = m;
3589 }
3590
77e371c0 3591 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
06edf0c0
PA
3592 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3593 &internal_breakpoint_ops);
67994074
KS
3594 initialize_explicit_location (&explicit_loc);
3595 explicit_loc.function_name = ASTRDUP (func_name);
3596 b->location = new_explicit_location (&explicit_loc);
af02033e
PP
3597 b->enable_state = bp_disabled;
3598 }
0fd8e87f 3599 }
af02033e 3600 }
6c95b8df
PA
3601
3602 do_cleanups (old_chain);
0fd8e87f
UW
3603}
3604
af02033e 3605/* Create a master std::terminate breakpoint. */
aa7d318d 3606static void
af02033e 3607create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3608{
3609 struct program_space *pspace;
aa7d318d 3610 struct cleanup *old_chain;
af02033e 3611 const char *const func_name = "std::terminate()";
aa7d318d
TT
3612
3613 old_chain = save_current_program_space ();
3614
3615 ALL_PSPACES (pspace)
17450429
PP
3616 {
3617 struct objfile *objfile;
3618 CORE_ADDR addr;
3619
3620 set_current_program_space (pspace);
3621
aa7d318d
TT
3622 ALL_OBJFILES (objfile)
3623 {
3624 struct breakpoint *b;
17450429 3625 struct breakpoint_objfile_data *bp_objfile_data;
67994074 3626 struct explicit_location explicit_loc;
aa7d318d 3627
17450429 3628 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3629
3b7344d5 3630 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
17450429
PP
3631 continue;
3632
3b7344d5 3633 if (bp_objfile_data->terminate_msym.minsym == NULL)
17450429 3634 {
3b7344d5 3635 struct bound_minimal_symbol m;
17450429
PP
3636
3637 m = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5
TT
3638 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3639 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
17450429
PP
3640 {
3641 /* Prevent future lookups in this objfile. */
3b7344d5 3642 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
17450429
PP
3643 continue;
3644 }
3645 bp_objfile_data->terminate_msym = m;
3646 }
aa7d318d 3647
77e371c0 3648 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
17450429 3649 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3650 bp_std_terminate_master,
3651 &internal_breakpoint_ops);
67994074
KS
3652 initialize_explicit_location (&explicit_loc);
3653 explicit_loc.function_name = ASTRDUP (func_name);
3654 b->location = new_explicit_location (&explicit_loc);
aa7d318d
TT
3655 b->enable_state = bp_disabled;
3656 }
17450429
PP
3657 }
3658
aa7d318d
TT
3659 do_cleanups (old_chain);
3660}
3661
186c406b
TT
3662/* Install a master breakpoint on the unwinder's debug hook. */
3663
70221824 3664static void
186c406b
TT
3665create_exception_master_breakpoint (void)
3666{
3667 struct objfile *objfile;
17450429 3668 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
3669
3670 ALL_OBJFILES (objfile)
3671 {
17450429
PP
3672 struct breakpoint *b;
3673 struct gdbarch *gdbarch;
3674 struct breakpoint_objfile_data *bp_objfile_data;
3675 CORE_ADDR addr;
67994074 3676 struct explicit_location explicit_loc;
17450429
PP
3677
3678 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3679
28106bc2
SDJ
3680 /* We prefer the SystemTap probe point if it exists. */
3681 if (!bp_objfile_data->exception_searched)
3682 {
25f9533e
SDJ
3683 VEC (probe_p) *ret;
3684
3685 ret = find_probes_in_objfile (objfile, "libgcc", "unwind");
3686
3687 if (ret != NULL)
3688 {
3689 /* We are only interested in checking one element. */
3690 struct probe *p = VEC_index (probe_p, ret, 0);
3691
3692 if (!can_evaluate_probe_arguments (p))
3693 {
3694 /* We cannot use the probe interface here, because it does
3695 not know how to evaluate arguments. */
3696 VEC_free (probe_p, ret);
3697 ret = NULL;
3698 }
3699 }
3700 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3701 bp_objfile_data->exception_searched = 1;
3702 }
3703
3704 if (bp_objfile_data->exception_probes != NULL)
3705 {
3706 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3707 int i;
3708 struct probe *probe;
3709
3710 for (i = 0;
3711 VEC_iterate (probe_p,
3712 bp_objfile_data->exception_probes,
3713 i, probe);
3714 ++i)
3715 {
3716 struct breakpoint *b;
3717
729662a5
TT
3718 b = create_internal_breakpoint (gdbarch,
3719 get_probe_address (probe,
3720 objfile),
28106bc2
SDJ
3721 bp_exception_master,
3722 &internal_breakpoint_ops);
5b56227b
KS
3723 b->location
3724 = new_probe_location ("-probe-stap libgcc:unwind");
28106bc2
SDJ
3725 b->enable_state = bp_disabled;
3726 }
3727
3728 continue;
3729 }
3730
3731 /* Otherwise, try the hook function. */
3732
3b7344d5 3733 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
17450429
PP
3734 continue;
3735
3736 gdbarch = get_objfile_arch (objfile);
186c406b 3737
3b7344d5 3738 if (bp_objfile_data->exception_msym.minsym == NULL)
186c406b 3739 {
3b7344d5 3740 struct bound_minimal_symbol debug_hook;
186c406b 3741
17450429 3742 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5 3743 if (debug_hook.minsym == NULL)
17450429 3744 {
3b7344d5 3745 bp_objfile_data->exception_msym.minsym = &msym_not_found;
17450429
PP
3746 continue;
3747 }
3748
3749 bp_objfile_data->exception_msym = debug_hook;
186c406b 3750 }
17450429 3751
77e371c0 3752 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
17450429
PP
3753 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3754 &current_target);
06edf0c0
PA
3755 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3756 &internal_breakpoint_ops);
67994074
KS
3757 initialize_explicit_location (&explicit_loc);
3758 explicit_loc.function_name = ASTRDUP (func_name);
3759 b->location = new_explicit_location (&explicit_loc);
17450429 3760 b->enable_state = bp_disabled;
186c406b 3761 }
186c406b
TT
3762}
3763
9ef9e6a6
KS
3764/* Does B have a location spec? */
3765
3766static int
3767breakpoint_event_location_empty_p (const struct breakpoint *b)
3768{
3769 return b->location != NULL && event_location_empty_p (b->location);
3770}
3771
c906108c 3772void
fba45db2 3773update_breakpoints_after_exec (void)
c906108c 3774{
35df4500 3775 struct breakpoint *b, *b_tmp;
876fa593 3776 struct bp_location *bploc, **bplocp_tmp;
c906108c 3777
25b22b0a
PA
3778 /* We're about to delete breakpoints from GDB's lists. If the
3779 INSERTED flag is true, GDB will try to lift the breakpoints by
3780 writing the breakpoints' "shadow contents" back into memory. The
3781 "shadow contents" are NOT valid after an exec, so GDB should not
3782 do that. Instead, the target is responsible from marking
3783 breakpoints out as soon as it detects an exec. We don't do that
3784 here instead, because there may be other attempts to delete
3785 breakpoints after detecting an exec and before reaching here. */
876fa593 3786 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3787 if (bploc->pspace == current_program_space)
3788 gdb_assert (!bploc->inserted);
c906108c 3789
35df4500 3790 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3791 {
6c95b8df
PA
3792 if (b->pspace != current_program_space)
3793 continue;
3794
4a64f543 3795 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3796 if (b->type == bp_shlib_event)
3797 {
3798 delete_breakpoint (b);
3799 continue;
3800 }
c906108c 3801
4a64f543 3802 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3803 if (b->type == bp_jit_event)
3804 {
3805 delete_breakpoint (b);
3806 continue;
3807 }
3808
1900040c 3809 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3810 as must overlay event and longjmp master breakpoints. */
3811 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3812 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3813 || b->type == bp_exception_master)
c4093a6a
JM
3814 {
3815 delete_breakpoint (b);
3816 continue;
3817 }
3818
4a64f543 3819 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3820 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3821 {
3822 delete_breakpoint (b);
3823 continue;
3824 }
3825
7c16b83e
PA
3826 /* Just like single-step breakpoints. */
3827 if (b->type == bp_single_step)
3828 {
3829 delete_breakpoint (b);
3830 continue;
3831 }
3832
611c83ae
PA
3833 /* Longjmp and longjmp-resume breakpoints are also meaningless
3834 after an exec. */
186c406b 3835 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3836 || b->type == bp_longjmp_call_dummy
186c406b 3837 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3838 {
3839 delete_breakpoint (b);
3840 continue;
3841 }
3842
ce78b96d
JB
3843 if (b->type == bp_catchpoint)
3844 {
3845 /* For now, none of the bp_catchpoint breakpoints need to
3846 do anything at this point. In the future, if some of
3847 the catchpoints need to something, we will need to add
3848 a new method, and call this method from here. */
3849 continue;
3850 }
3851
c5aa993b
JM
3852 /* bp_finish is a special case. The only way we ought to be able
3853 to see one of these when an exec() has happened, is if the user
3854 caught a vfork, and then said "finish". Ordinarily a finish just
3855 carries them to the call-site of the current callee, by setting
3856 a temporary bp there and resuming. But in this case, the finish
3857 will carry them entirely through the vfork & exec.
3858
3859 We don't want to allow a bp_finish to remain inserted now. But
3860 we can't safely delete it, 'cause finish_command has a handle to
3861 the bp on a bpstat, and will later want to delete it. There's a
3862 chance (and I've seen it happen) that if we delete the bp_finish
3863 here, that its storage will get reused by the time finish_command
3864 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3865 We really must allow finish_command to delete a bp_finish.
3866
e5dd4106 3867 In the absence of a general solution for the "how do we know
53a5351d
JM
3868 it's safe to delete something others may have handles to?"
3869 problem, what we'll do here is just uninsert the bp_finish, and
3870 let finish_command delete it.
3871
3872 (We know the bp_finish is "doomed" in the sense that it's
3873 momentary, and will be deleted as soon as finish_command sees
3874 the inferior stopped. So it doesn't matter that the bp's
3875 address is probably bogus in the new a.out, unlike e.g., the
3876 solib breakpoints.) */
c5aa993b 3877
c5aa993b
JM
3878 if (b->type == bp_finish)
3879 {
3880 continue;
3881 }
3882
3883 /* Without a symbolic address, we have little hope of the
3884 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3885 a.out. */
9ef9e6a6 3886 if (breakpoint_event_location_empty_p (b))
c5aa993b
JM
3887 {
3888 delete_breakpoint (b);
3889 continue;
3890 }
c5aa993b 3891 }
c906108c
SS
3892}
3893
3894int
d80ee84f 3895detach_breakpoints (ptid_t ptid)
c906108c 3896{
35df4500 3897 struct bp_location *bl, **blp_tmp;
3a1bae8e 3898 int val = 0;
ce696e05 3899 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 3900 struct inferior *inf = current_inferior ();
c5aa993b 3901
dfd4cc63 3902 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
8a3fe4f8 3903 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3904
6c95b8df 3905 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3906 inferior_ptid = ptid;
35df4500 3907 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3908 {
35df4500 3909 if (bl->pspace != inf->pspace)
6c95b8df
PA
3910 continue;
3911
bd9673a4
PW
3912 /* This function must physically remove breakpoints locations
3913 from the specified ptid, without modifying the breakpoint
3914 package's state. Locations of type bp_loc_other are only
3915 maintained at GDB side. So, there is no need to remove
3916 these bp_loc_other locations. Moreover, removing these
3917 would modify the breakpoint package's state. */
3918 if (bl->loc_type == bp_loc_other)
3919 continue;
3920
35df4500 3921 if (bl->inserted)
b2b6a7da 3922 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
c5aa993b 3923 }
d03285ec 3924
ce696e05 3925 do_cleanups (old_chain);
3a1bae8e 3926 return val;
c906108c
SS
3927}
3928
35df4500 3929/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3930 Note that this is used to detach breakpoints from a child fork.
3931 When we get here, the child isn't in the inferior list, and neither
3932 do we have objects to represent its address space --- we should
35df4500 3933 *not* look at bl->pspace->aspace here. */
6c95b8df 3934
c906108c 3935static int
b2b6a7da 3936remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
c906108c
SS
3937{
3938 int val;
c5aa993b 3939
35df4500
TJB
3940 /* BL is never in moribund_locations by our callers. */
3941 gdb_assert (bl->owner != NULL);
2bdf28a0 3942
74960c60
VP
3943 /* The type of none suggests that owner is actually deleted.
3944 This should not ever happen. */
35df4500 3945 gdb_assert (bl->owner->type != bp_none);
0bde7532 3946
35df4500
TJB
3947 if (bl->loc_type == bp_loc_software_breakpoint
3948 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3949 {
c02f5703
MS
3950 /* "Normal" instruction breakpoint: either the standard
3951 trap-instruction bp (bp_breakpoint), or a
3952 bp_hardware_breakpoint. */
3953
3954 /* First check to see if we have to handle an overlay. */
3955 if (overlay_debugging == ovly_off
35df4500
TJB
3956 || bl->section == NULL
3957 || !(section_is_overlay (bl->section)))
c02f5703
MS
3958 {
3959 /* No overlay handling: just remove the breakpoint. */
08351840
PA
3960
3961 /* If we're trying to uninsert a memory breakpoint that we
3962 know is set in a dynamic object that is marked
3963 shlib_disabled, then either the dynamic object was
3964 removed with "remove-symbol-file" or with
3965 "nosharedlibrary". In the former case, we don't know
3966 whether another dynamic object might have loaded over the
3967 breakpoint's address -- the user might well let us know
3968 about it next with add-symbol-file (the whole point of
d03de421 3969 add-symbol-file is letting the user manually maintain a
08351840
PA
3970 list of dynamically loaded objects). If we have the
3971 breakpoint's shadow memory, that is, this is a software
3972 breakpoint managed by GDB, check whether the breakpoint
3973 is still inserted in memory, to avoid overwriting wrong
3974 code with stale saved shadow contents. Note that HW
3975 breakpoints don't have shadow memory, as they're
3976 implemented using a mechanism that is not dependent on
3977 being able to modify the target's memory, and as such
3978 they should always be removed. */
3979 if (bl->shlib_disabled
3980 && bl->target_info.shadow_len != 0
3981 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3982 val = 0;
3983 else
73971819 3984 val = bl->owner->ops->remove_location (bl, reason);
c02f5703 3985 }
c906108c
SS
3986 else
3987 {
4a64f543 3988 /* This breakpoint is in an overlay section.
c02f5703
MS
3989 Did we set a breakpoint at the LMA? */
3990 if (!overlay_events_enabled)
3991 {
3992 /* Yes -- overlay event support is not active, so we
3993 should have set a breakpoint at the LMA. Remove it.
3994 */
c02f5703
MS
3995 /* Ignore any failures: if the LMA is in ROM, we will
3996 have already warned when we failed to insert it. */
35df4500
TJB
3997 if (bl->loc_type == bp_loc_hardware_breakpoint)
3998 target_remove_hw_breakpoint (bl->gdbarch,
3999 &bl->overlay_target_info);
c02f5703 4000 else
35df4500 4001 target_remove_breakpoint (bl->gdbarch,
73971819
PA
4002 &bl->overlay_target_info,
4003 reason);
c02f5703
MS
4004 }
4005 /* Did we set a breakpoint at the VMA?
4006 If so, we will have marked the breakpoint 'inserted'. */
35df4500 4007 if (bl->inserted)
c906108c 4008 {
c02f5703
MS
4009 /* Yes -- remove it. Previously we did not bother to
4010 remove the breakpoint if the section had been
4011 unmapped, but let's not rely on that being safe. We
4012 don't know what the overlay manager might do. */
aa67235e
UW
4013
4014 /* However, we should remove *software* breakpoints only
4015 if the section is still mapped, or else we overwrite
4016 wrong code with the saved shadow contents. */
348d480f
PA
4017 if (bl->loc_type == bp_loc_hardware_breakpoint
4018 || section_is_mapped (bl->section))
73971819 4019 val = bl->owner->ops->remove_location (bl, reason);
aa67235e
UW
4020 else
4021 val = 0;
c906108c 4022 }
c02f5703
MS
4023 else
4024 {
4025 /* No -- not inserted, so no need to remove. No error. */
4026 val = 0;
4027 }
c906108c 4028 }
879d1e6b 4029
08351840
PA
4030 /* In some cases, we might not be able to remove a breakpoint in
4031 a shared library that has already been removed, but we have
4032 not yet processed the shlib unload event. Similarly for an
4033 unloaded add-symbol-file object - the user might not yet have
4034 had the chance to remove-symbol-file it. shlib_disabled will
4035 be set if the library/object has already been removed, but
4036 the breakpoint hasn't been uninserted yet, e.g., after
4037 "nosharedlibrary" or "remove-symbol-file" with breakpoints
4038 always-inserted mode. */
076855f9 4039 if (val
08351840
PA
4040 && (bl->loc_type == bp_loc_software_breakpoint
4041 && (bl->shlib_disabled
4042 || solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
4043 || shared_objfile_contains_address_p (bl->pspace,
4044 bl->address))))
879d1e6b
UW
4045 val = 0;
4046
c906108c
SS
4047 if (val)
4048 return val;
b2b6a7da 4049 bl->inserted = (reason == DETACH_BREAKPOINT);
c906108c 4050 }
35df4500 4051 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 4052 {
77b06cd7
TJB
4053 gdb_assert (bl->owner->ops != NULL
4054 && bl->owner->ops->remove_location != NULL);
4055
b2b6a7da 4056 bl->inserted = (reason == DETACH_BREAKPOINT);
73971819 4057 bl->owner->ops->remove_location (bl, reason);
2e70b7b9 4058
c906108c 4059 /* Failure to remove any of the hardware watchpoints comes here. */
b2b6a7da 4060 if (reason == REMOVE_BREAKPOINT && bl->inserted)
8a3fe4f8 4061 warning (_("Could not remove hardware watchpoint %d."),
35df4500 4062 bl->owner->number);
c906108c 4063 }
35df4500
TJB
4064 else if (bl->owner->type == bp_catchpoint
4065 && breakpoint_enabled (bl->owner)
4066 && !bl->duplicate)
ce78b96d 4067 {
77b06cd7
TJB
4068 gdb_assert (bl->owner->ops != NULL
4069 && bl->owner->ops->remove_location != NULL);
ce78b96d 4070
73971819 4071 val = bl->owner->ops->remove_location (bl, reason);
ce78b96d
JB
4072 if (val)
4073 return val;
77b06cd7 4074
b2b6a7da 4075 bl->inserted = (reason == DETACH_BREAKPOINT);
ce78b96d 4076 }
c906108c
SS
4077
4078 return 0;
4079}
4080
6c95b8df 4081static int
834c0d03 4082remove_breakpoint (struct bp_location *bl)
6c95b8df
PA
4083{
4084 int ret;
4085 struct cleanup *old_chain;
4086
35df4500
TJB
4087 /* BL is never in moribund_locations by our callers. */
4088 gdb_assert (bl->owner != NULL);
2bdf28a0 4089
6c95b8df
PA
4090 /* The type of none suggests that owner is actually deleted.
4091 This should not ever happen. */
35df4500 4092 gdb_assert (bl->owner->type != bp_none);
6c95b8df
PA
4093
4094 old_chain = save_current_space_and_thread ();
4095
35df4500 4096 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 4097
b2b6a7da 4098 ret = remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
6c95b8df
PA
4099
4100 do_cleanups (old_chain);
4101 return ret;
4102}
4103
c906108c
SS
4104/* Clear the "inserted" flag in all breakpoints. */
4105
25b22b0a 4106void
fba45db2 4107mark_breakpoints_out (void)
c906108c 4108{
35df4500 4109 struct bp_location *bl, **blp_tmp;
c906108c 4110
35df4500 4111 ALL_BP_LOCATIONS (bl, blp_tmp)
66c4b3e8 4112 if (bl->pspace == current_program_space)
35df4500 4113 bl->inserted = 0;
c906108c
SS
4114}
4115
53a5351d
JM
4116/* Clear the "inserted" flag in all breakpoints and delete any
4117 breakpoints which should go away between runs of the program.
c906108c
SS
4118
4119 Plus other such housekeeping that has to be done for breakpoints
4120 between runs.
4121
53a5351d
JM
4122 Note: this function gets called at the end of a run (by
4123 generic_mourn_inferior) and when a run begins (by
4a64f543 4124 init_wait_for_inferior). */
c906108c
SS
4125
4126
4127
4128void
fba45db2 4129breakpoint_init_inferior (enum inf_context context)
c906108c 4130{
35df4500 4131 struct breakpoint *b, *b_tmp;
870f88f7 4132 struct bp_location *bl;
1c5cfe86 4133 int ix;
6c95b8df 4134 struct program_space *pspace = current_program_space;
c906108c 4135
50c71eaf
PA
4136 /* If breakpoint locations are shared across processes, then there's
4137 nothing to do. */
f5656ead 4138 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
4139 return;
4140
1a853c52 4141 mark_breakpoints_out ();
075f6582 4142
35df4500 4143 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 4144 {
6c95b8df
PA
4145 if (b->loc && b->loc->pspace != pspace)
4146 continue;
4147
c5aa993b
JM
4148 switch (b->type)
4149 {
4150 case bp_call_dummy:
e2e4d78b 4151 case bp_longjmp_call_dummy:
c906108c 4152
c5aa993b 4153 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
4154 cause problems when the inferior is rerun, so we better get
4155 rid of it. */
4156
4157 case bp_watchpoint_scope:
4158
4159 /* Also get rid of scope breakpoints. */
4160
4161 case bp_shlib_event:
4162
4163 /* Also remove solib event breakpoints. Their addresses may
4164 have changed since the last time we ran the program.
4165 Actually we may now be debugging against different target;
4166 and so the solib backend that installed this breakpoint may
4167 not be used in by the target. E.g.,
4168
4169 (gdb) file prog-linux
4170 (gdb) run # native linux target
4171 ...
4172 (gdb) kill
4173 (gdb) file prog-win.exe
4174 (gdb) tar rem :9999 # remote Windows gdbserver.
4175 */
c906108c 4176
f59f708a
PA
4177 case bp_step_resume:
4178
4179 /* Also remove step-resume breakpoints. */
4180
7c16b83e
PA
4181 case bp_single_step:
4182
4183 /* Also remove single-step breakpoints. */
4184
c5aa993b
JM
4185 delete_breakpoint (b);
4186 break;
c906108c 4187
c5aa993b
JM
4188 case bp_watchpoint:
4189 case bp_hardware_watchpoint:
4190 case bp_read_watchpoint:
4191 case bp_access_watchpoint:
3a5c3e22
PA
4192 {
4193 struct watchpoint *w = (struct watchpoint *) b;
c906108c 4194
3a5c3e22
PA
4195 /* Likewise for watchpoints on local expressions. */
4196 if (w->exp_valid_block != NULL)
4197 delete_breakpoint (b);
63000888 4198 else
3a5c3e22 4199 {
63000888
PA
4200 /* Get rid of existing locations, which are no longer
4201 valid. New ones will be created in
4202 update_watchpoint, when the inferior is restarted.
4203 The next update_global_location_list call will
4204 garbage collect them. */
4205 b->loc = NULL;
4206
4207 if (context == inf_starting)
4208 {
4209 /* Reset val field to force reread of starting value in
4210 insert_breakpoints. */
4211 if (w->val)
4212 value_free (w->val);
4213 w->val = NULL;
4214 w->val_valid = 0;
4215 }
4216 }
3a5c3e22 4217 }
c5aa993b
JM
4218 break;
4219 default:
c5aa993b
JM
4220 break;
4221 }
4222 }
1c5cfe86
PA
4223
4224 /* Get rid of the moribund locations. */
35df4500
TJB
4225 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
4226 decref_bp_location (&bl);
1c5cfe86 4227 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
4228}
4229
6c95b8df
PA
4230/* These functions concern about actual breakpoints inserted in the
4231 target --- to e.g. check if we need to do decr_pc adjustment or if
4232 we need to hop over the bkpt --- so we check for address space
4233 match, not program space. */
4234
c2c6d25f
JM
4235/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
4236 exists at PC. It returns ordinary_breakpoint_here if it's an
4237 ordinary breakpoint, or permanent_breakpoint_here if it's a
4238 permanent breakpoint.
4239 - When continuing from a location with an ordinary breakpoint, we
4240 actually single step once before calling insert_breakpoints.
e5dd4106 4241 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
4242 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
4243 the target, to advance the PC past the breakpoint. */
c906108c 4244
c2c6d25f 4245enum breakpoint_here
6c95b8df 4246breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 4247{
35df4500 4248 struct bp_location *bl, **blp_tmp;
c2c6d25f 4249 int any_breakpoint_here = 0;
c906108c 4250
35df4500 4251 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 4252 {
35df4500
TJB
4253 if (bl->loc_type != bp_loc_software_breakpoint
4254 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4255 continue;
4256
f1310107 4257 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500 4258 if ((breakpoint_enabled (bl->owner)
1a853c52 4259 || bl->permanent)
f1310107 4260 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
4261 {
4262 if (overlay_debugging
35df4500
TJB
4263 && section_is_overlay (bl->section)
4264 && !section_is_mapped (bl->section))
075f6582 4265 continue; /* unmapped overlay -- can't be a match */
1a853c52 4266 else if (bl->permanent)
075f6582
DJ
4267 return permanent_breakpoint_here;
4268 else
4269 any_breakpoint_here = 1;
4270 }
4271 }
c906108c 4272
f486487f 4273 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
c906108c
SS
4274}
4275
d35ae833
PA
4276/* See breakpoint.h. */
4277
4278int
4279breakpoint_in_range_p (struct address_space *aspace,
4280 CORE_ADDR addr, ULONGEST len)
4281{
4282 struct bp_location *bl, **blp_tmp;
4283
4284 ALL_BP_LOCATIONS (bl, blp_tmp)
4285 {
4286 if (bl->loc_type != bp_loc_software_breakpoint
4287 && bl->loc_type != bp_loc_hardware_breakpoint)
4288 continue;
4289
4290 if ((breakpoint_enabled (bl->owner)
4291 || bl->permanent)
4292 && breakpoint_location_address_range_overlap (bl, aspace,
4293 addr, len))
4294 {
4295 if (overlay_debugging
4296 && section_is_overlay (bl->section)
4297 && !section_is_mapped (bl->section))
4298 {
4299 /* Unmapped overlay -- can't be a match. */
4300 continue;
4301 }
4302
4303 return 1;
4304 }
4305 }
4306
4307 return 0;
4308}
4309
1c5cfe86
PA
4310/* Return true if there's a moribund breakpoint at PC. */
4311
4312int
6c95b8df 4313moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
4314{
4315 struct bp_location *loc;
4316 int ix;
4317
4318 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 4319 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
4320 return 1;
4321
4322 return 0;
4323}
c2c6d25f 4324
f7ce857f
PA
4325/* Returns non-zero iff BL is inserted at PC, in address space
4326 ASPACE. */
4327
4328static int
4329bp_location_inserted_here_p (struct bp_location *bl,
4330 struct address_space *aspace, CORE_ADDR pc)
4331{
4332 if (bl->inserted
4333 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4334 aspace, pc))
4335 {
4336 if (overlay_debugging
4337 && section_is_overlay (bl->section)
4338 && !section_is_mapped (bl->section))
4339 return 0; /* unmapped overlay -- can't be a match */
4340 else
4341 return 1;
4342 }
4343 return 0;
4344}
4345
a1fd2fa5 4346/* Returns non-zero iff there's a breakpoint inserted at PC. */
c906108c
SS
4347
4348int
a1fd2fa5 4349breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 4350{
f7ce857f 4351 struct bp_location **blp, **blp_tmp = NULL;
c906108c 4352
f7ce857f 4353 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
c5aa993b 4354 {
f7ce857f
PA
4355 struct bp_location *bl = *blp;
4356
35df4500
TJB
4357 if (bl->loc_type != bp_loc_software_breakpoint
4358 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4359 continue;
4360
f7ce857f
PA
4361 if (bp_location_inserted_here_p (bl, aspace, pc))
4362 return 1;
c5aa993b 4363 }
c36b740a
VP
4364 return 0;
4365}
4366
a1fd2fa5
PA
4367/* This function returns non-zero iff there is a software breakpoint
4368 inserted at PC. */
c36b740a
VP
4369
4370int
a1fd2fa5
PA
4371software_breakpoint_inserted_here_p (struct address_space *aspace,
4372 CORE_ADDR pc)
4fa8626c 4373{
f7ce857f 4374 struct bp_location **blp, **blp_tmp = NULL;
4fa8626c 4375
f7ce857f 4376 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4fa8626c 4377 {
f7ce857f
PA
4378 struct bp_location *bl = *blp;
4379
35df4500 4380 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4381 continue;
4382
f7ce857f
PA
4383 if (bp_location_inserted_here_p (bl, aspace, pc))
4384 return 1;
4fa8626c
DJ
4385 }
4386
4387 return 0;
9c02b525
PA
4388}
4389
4390/* See breakpoint.h. */
4391
4392int
4393hardware_breakpoint_inserted_here_p (struct address_space *aspace,
4394 CORE_ADDR pc)
4395{
4396 struct bp_location **blp, **blp_tmp = NULL;
9c02b525
PA
4397
4398 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4399 {
4400 struct bp_location *bl = *blp;
4401
4402 if (bl->loc_type != bp_loc_hardware_breakpoint)
4403 continue;
4404
4405 if (bp_location_inserted_here_p (bl, aspace, pc))
4406 return 1;
4407 }
4408
4409 return 0;
4fa8626c
DJ
4410}
4411
9093389c
PA
4412int
4413hardware_watchpoint_inserted_in_range (struct address_space *aspace,
4414 CORE_ADDR addr, ULONGEST len)
4415{
4416 struct breakpoint *bpt;
4417
4418 ALL_BREAKPOINTS (bpt)
4419 {
4420 struct bp_location *loc;
4421
4422 if (bpt->type != bp_hardware_watchpoint
4423 && bpt->type != bp_access_watchpoint)
4424 continue;
4425
4426 if (!breakpoint_enabled (bpt))
4427 continue;
4428
4429 for (loc = bpt->loc; loc; loc = loc->next)
4430 if (loc->pspace->aspace == aspace && loc->inserted)
4431 {
4432 CORE_ADDR l, h;
4433
4434 /* Check for intersection. */
768adc05
PA
4435 l = std::max<CORE_ADDR> (loc->address, addr);
4436 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
9093389c
PA
4437 if (l < h)
4438 return 1;
4439 }
4440 }
4441 return 0;
4442}
c906108c 4443\f
c5aa993b 4444
c906108c
SS
4445/* bpstat stuff. External routines' interfaces are documented
4446 in breakpoint.h. */
4447
4448int
c326b90e 4449is_catchpoint (struct breakpoint *ep)
c906108c 4450{
533be4dd 4451 return (ep->type == bp_catchpoint);
c906108c
SS
4452}
4453
f431efe5
PA
4454/* Frees any storage that is part of a bpstat. Does not walk the
4455 'next' chain. */
4456
4457static void
198757a8
VP
4458bpstat_free (bpstat bs)
4459{
4460 if (bs->old_val != NULL)
4461 value_free (bs->old_val);
9add0f1b 4462 decref_counted_command_line (&bs->commands);
f431efe5 4463 decref_bp_location (&bs->bp_location_at);
198757a8
VP
4464 xfree (bs);
4465}
4466
c906108c
SS
4467/* Clear a bpstat so that it says we are not at any breakpoint.
4468 Also free any storage that is part of a bpstat. */
4469
4470void
fba45db2 4471bpstat_clear (bpstat *bsp)
c906108c
SS
4472{
4473 bpstat p;
4474 bpstat q;
4475
4476 if (bsp == 0)
4477 return;
4478 p = *bsp;
4479 while (p != NULL)
4480 {
4481 q = p->next;
198757a8 4482 bpstat_free (p);
c906108c
SS
4483 p = q;
4484 }
4485 *bsp = NULL;
4486}
4487
4488/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4489 is part of the bpstat is copied as well. */
4490
4491bpstat
fba45db2 4492bpstat_copy (bpstat bs)
c906108c
SS
4493{
4494 bpstat p = NULL;
4495 bpstat tmp;
4496 bpstat retval = NULL;
4497
4498 if (bs == NULL)
4499 return bs;
4500
4501 for (; bs != NULL; bs = bs->next)
4502 {
4503 tmp = (bpstat) xmalloc (sizeof (*tmp));
4504 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 4505 incref_counted_command_line (tmp->commands);
f431efe5 4506 incref_bp_location (tmp->bp_location_at);
31cc81e9 4507 if (bs->old_val != NULL)
3c3185ac
JK
4508 {
4509 tmp->old_val = value_copy (bs->old_val);
4510 release_value (tmp->old_val);
4511 }
31cc81e9 4512
c906108c
SS
4513 if (p == NULL)
4514 /* This is the first thing in the chain. */
4515 retval = tmp;
4516 else
4517 p->next = tmp;
4518 p = tmp;
4519 }
4520 p->next = NULL;
4521 return retval;
4522}
4523
4a64f543 4524/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4525
4526bpstat
fba45db2 4527bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4528{
c5aa993b
JM
4529 if (bsp == NULL)
4530 return NULL;
c906108c 4531
c5aa993b
JM
4532 for (; bsp != NULL; bsp = bsp->next)
4533 {
f431efe5 4534 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4535 return bsp;
4536 }
c906108c
SS
4537 return NULL;
4538}
4539
ab04a2af
TT
4540/* See breakpoint.h. */
4541
47591c29 4542int
427cd150 4543bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4544{
ab04a2af
TT
4545 for (; bsp != NULL; bsp = bsp->next)
4546 {
427cd150
TT
4547 if (bsp->breakpoint_at == NULL)
4548 {
4549 /* A moribund location can never explain a signal other than
4550 GDB_SIGNAL_TRAP. */
4551 if (sig == GDB_SIGNAL_TRAP)
47591c29 4552 return 1;
427cd150
TT
4553 }
4554 else
47591c29
PA
4555 {
4556 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4557 sig))
4558 return 1;
4559 }
ab04a2af
TT
4560 }
4561
47591c29 4562 return 0;
ab04a2af
TT
4563}
4564
4a64f543
MS
4565/* Put in *NUM the breakpoint number of the first breakpoint we are
4566 stopped at. *BSP upon return is a bpstat which points to the
4567 remaining breakpoints stopped at (but which is not guaranteed to be
4568 good for anything but further calls to bpstat_num).
4569
8671a17b
PA
4570 Return 0 if passed a bpstat which does not indicate any breakpoints.
4571 Return -1 if stopped at a breakpoint that has been deleted since
4572 we set it.
4573 Return 1 otherwise. */
c906108c
SS
4574
4575int
8671a17b 4576bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4577{
4578 struct breakpoint *b;
4579
4580 if ((*bsp) == NULL)
4581 return 0; /* No more breakpoint values */
8671a17b 4582
4a64f543
MS
4583 /* We assume we'll never have several bpstats that correspond to a
4584 single breakpoint -- otherwise, this function might return the
4585 same number more than once and this will look ugly. */
f431efe5 4586 b = (*bsp)->breakpoint_at;
8671a17b
PA
4587 *bsp = (*bsp)->next;
4588 if (b == NULL)
4589 return -1; /* breakpoint that's been deleted since */
4590
4591 *num = b->number; /* We have its number */
4592 return 1;
c906108c
SS
4593}
4594
e93ca019 4595/* See breakpoint.h. */
c906108c
SS
4596
4597void
e93ca019 4598bpstat_clear_actions (void)
c906108c 4599{
e93ca019
JK
4600 struct thread_info *tp;
4601 bpstat bs;
4602
4603 if (ptid_equal (inferior_ptid, null_ptid))
4604 return;
4605
4606 tp = find_thread_ptid (inferior_ptid);
4607 if (tp == NULL)
4608 return;
4609
4610 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4611 {
9add0f1b 4612 decref_counted_command_line (&bs->commands);
abf85f46 4613
c906108c
SS
4614 if (bs->old_val != NULL)
4615 {
4616 value_free (bs->old_val);
4617 bs->old_val = NULL;
4618 }
4619 }
4620}
4621
f3b1572e
PA
4622/* Called when a command is about to proceed the inferior. */
4623
4624static void
4625breakpoint_about_to_proceed (void)
4626{
4627 if (!ptid_equal (inferior_ptid, null_ptid))
4628 {
4629 struct thread_info *tp = inferior_thread ();
4630
4631 /* Allow inferior function calls in breakpoint commands to not
4632 interrupt the command list. When the call finishes
4633 successfully, the inferior will be standing at the same
4634 breakpoint as if nothing happened. */
16c381f0 4635 if (tp->control.in_infcall)
f3b1572e
PA
4636 return;
4637 }
4638
4639 breakpoint_proceeded = 1;
4640}
4641
4a64f543
MS
4642/* Stub for cleaning up our state if we error-out of a breakpoint
4643 command. */
c906108c 4644static void
4efb68b1 4645cleanup_executing_breakpoints (void *ignore)
c906108c
SS
4646{
4647 executing_breakpoint_commands = 0;
4648}
4649
abf85f46
JK
4650/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4651 or its equivalent. */
4652
4653static int
4654command_line_is_silent (struct command_line *cmd)
4655{
4f45d445 4656 return cmd && (strcmp ("silent", cmd->line) == 0);
abf85f46
JK
4657}
4658
4a64f543
MS
4659/* Execute all the commands associated with all the breakpoints at
4660 this location. Any of these commands could cause the process to
4661 proceed beyond this point, etc. We look out for such changes by
4662 checking the global "breakpoint_proceeded" after each command.
c906108c 4663
347bddb7
PA
4664 Returns true if a breakpoint command resumed the inferior. In that
4665 case, it is the caller's responsibility to recall it again with the
4666 bpstat of the current thread. */
4667
4668static int
4669bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4670{
4671 bpstat bs;
4672 struct cleanup *old_chain;
347bddb7 4673 int again = 0;
c906108c
SS
4674
4675 /* Avoid endless recursion if a `source' command is contained
4676 in bs->commands. */
4677 if (executing_breakpoint_commands)
347bddb7 4678 return 0;
c906108c
SS
4679
4680 executing_breakpoint_commands = 1;
4681 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
4682
1ac32117 4683 scoped_restore preventer = prevent_dont_repeat ();
cf6c5ffb 4684
4a64f543 4685 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4686 bs = *bsp;
4687
4688 breakpoint_proceeded = 0;
4689 for (; bs != NULL; bs = bs->next)
4690 {
9add0f1b 4691 struct counted_command_line *ccmd;
6c50ab1c
JB
4692 struct command_line *cmd;
4693 struct cleanup *this_cmd_tree_chain;
4694
4695 /* Take ownership of the BSP's command tree, if it has one.
4696
4697 The command tree could legitimately contain commands like
4698 'step' and 'next', which call clear_proceed_status, which
4699 frees stop_bpstat's command tree. To make sure this doesn't
4700 free the tree we're executing out from under us, we need to
4701 take ownership of the tree ourselves. Since a given bpstat's
4702 commands are only executed once, we don't need to copy it; we
4703 can clear the pointer in the bpstat, and make sure we free
4704 the tree when we're done. */
9add0f1b
TT
4705 ccmd = bs->commands;
4706 bs->commands = NULL;
abf85f46
JK
4707 this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd);
4708 cmd = ccmd ? ccmd->commands : NULL;
4709 if (command_line_is_silent (cmd))
4710 {
4711 /* The action has been already done by bpstat_stop_status. */
4712 cmd = cmd->next;
4713 }
6c50ab1c 4714
c906108c
SS
4715 while (cmd != NULL)
4716 {
4717 execute_control_command (cmd);
4718
4719 if (breakpoint_proceeded)
4720 break;
4721 else
4722 cmd = cmd->next;
4723 }
6c50ab1c
JB
4724
4725 /* We can free this command tree now. */
4726 do_cleanups (this_cmd_tree_chain);
4727
c906108c 4728 if (breakpoint_proceeded)
32c1e744 4729 {
cb814510 4730 if (current_ui->async)
347bddb7
PA
4731 /* If we are in async mode, then the target might be still
4732 running, not stopped at any breakpoint, so nothing for
4733 us to do here -- just return to the event loop. */
4734 ;
32c1e744
VP
4735 else
4736 /* In sync mode, when execute_control_command returns
4737 we're already standing on the next breakpoint.
347bddb7
PA
4738 Breakpoint commands for that stop were not run, since
4739 execute_command does not run breakpoint commands --
4740 only command_line_handler does, but that one is not
4741 involved in execution of breakpoint commands. So, we
4742 can now execute breakpoint commands. It should be
4743 noted that making execute_command do bpstat actions is
4744 not an option -- in this case we'll have recursive
4745 invocation of bpstat for each breakpoint with a
4746 command, and can easily blow up GDB stack. Instead, we
4747 return true, which will trigger the caller to recall us
4748 with the new stop_bpstat. */
4749 again = 1;
4750 break;
32c1e744 4751 }
c906108c 4752 }
c2b8ed2c 4753 do_cleanups (old_chain);
347bddb7
PA
4754 return again;
4755}
4756
4757void
4758bpstat_do_actions (void)
4759{
353d1d73
JK
4760 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4761
347bddb7
PA
4762 /* Do any commands attached to breakpoint we are stopped at. */
4763 while (!ptid_equal (inferior_ptid, null_ptid)
4764 && target_has_execution
4765 && !is_exited (inferior_ptid)
4766 && !is_executing (inferior_ptid))
4767 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4768 and only return when it is stopped at the next breakpoint, we
4769 keep doing breakpoint actions until it returns false to
4770 indicate the inferior was not resumed. */
16c381f0 4771 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 4772 break;
353d1d73
JK
4773
4774 discard_cleanups (cleanup_if_error);
c906108c
SS
4775}
4776
fa4727a6
DJ
4777/* Print out the (old or new) value associated with a watchpoint. */
4778
4779static void
4780watchpoint_value_print (struct value *val, struct ui_file *stream)
4781{
4782 if (val == NULL)
4783 fprintf_unfiltered (stream, _("<unreadable>"));
4784 else
79a45b7d
TT
4785 {
4786 struct value_print_options opts;
4787 get_user_print_options (&opts);
4788 value_print (val, stream, &opts);
4789 }
fa4727a6
DJ
4790}
4791
f303dbd6
PA
4792/* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4793 debugging multiple threads. */
4794
4795void
4796maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4797{
112e8700 4798 if (uiout->is_mi_like_p ())
f303dbd6
PA
4799 return;
4800
112e8700 4801 uiout->text ("\n");
f303dbd6
PA
4802
4803 if (show_thread_that_caused_stop ())
4804 {
4805 const char *name;
4806 struct thread_info *thr = inferior_thread ();
4807
112e8700
SM
4808 uiout->text ("Thread ");
4809 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
f303dbd6
PA
4810
4811 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4812 if (name != NULL)
4813 {
112e8700
SM
4814 uiout->text (" \"");
4815 uiout->field_fmt ("name", "%s", name);
4816 uiout->text ("\"");
f303dbd6
PA
4817 }
4818
112e8700 4819 uiout->text (" hit ");
f303dbd6
PA
4820 }
4821}
4822
e514a9d6 4823/* Generic routine for printing messages indicating why we
4a64f543 4824 stopped. The behavior of this function depends on the value
e514a9d6
JM
4825 'print_it' in the bpstat structure. Under some circumstances we
4826 may decide not to print anything here and delegate the task to
4a64f543 4827 normal_stop(). */
e514a9d6
JM
4828
4829static enum print_stop_action
4830print_bp_stop_message (bpstat bs)
4831{
4832 switch (bs->print_it)
4833 {
4834 case print_it_noop:
4a64f543 4835 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4836 return PRINT_UNKNOWN;
4837 break;
4838
4839 case print_it_done:
4840 /* We still want to print the frame, but we already printed the
4a64f543 4841 relevant messages. */
e514a9d6
JM
4842 return PRINT_SRC_AND_LOC;
4843 break;
4844
4845 case print_it_normal:
4f8d1dc6 4846 {
f431efe5
PA
4847 struct breakpoint *b = bs->breakpoint_at;
4848
1a6a67de
TJB
4849 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4850 which has since been deleted. */
4851 if (b == NULL)
4852 return PRINT_UNKNOWN;
4853
348d480f
PA
4854 /* Normal case. Call the breakpoint's print_it method. */
4855 return b->ops->print_it (bs);
4f8d1dc6 4856 }
348d480f 4857 break;
3086aeae 4858
e514a9d6 4859 default:
8e65ff28 4860 internal_error (__FILE__, __LINE__,
e2e0b3e5 4861 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4862 break;
c906108c 4863 }
c906108c
SS
4864}
4865
edcc5120
TT
4866/* A helper function that prints a shared library stopped event. */
4867
4868static void
4869print_solib_event (int is_catchpoint)
4870{
4871 int any_deleted
4872 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4873 int any_added
4874 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4875
4876 if (!is_catchpoint)
4877 {
4878 if (any_added || any_deleted)
112e8700 4879 current_uiout->text (_("Stopped due to shared library event:\n"));
edcc5120 4880 else
112e8700
SM
4881 current_uiout->text (_("Stopped due to shared library event (no "
4882 "libraries added or removed)\n"));
edcc5120
TT
4883 }
4884
112e8700
SM
4885 if (current_uiout->is_mi_like_p ())
4886 current_uiout->field_string ("reason",
4887 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
edcc5120
TT
4888
4889 if (any_deleted)
4890 {
4891 struct cleanup *cleanup;
4892 char *name;
4893 int ix;
4894
112e8700 4895 current_uiout->text (_(" Inferior unloaded "));
edcc5120
TT
4896 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4897 "removed");
4898 for (ix = 0;
4899 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4900 ix, name);
4901 ++ix)
4902 {
4903 if (ix > 0)
112e8700
SM
4904 current_uiout->text (" ");
4905 current_uiout->field_string ("library", name);
4906 current_uiout->text ("\n");
edcc5120
TT
4907 }
4908
4909 do_cleanups (cleanup);
4910 }
4911
4912 if (any_added)
4913 {
4914 struct so_list *iter;
4915 int ix;
4916 struct cleanup *cleanup;
4917
112e8700 4918 current_uiout->text (_(" Inferior loaded "));
edcc5120
TT
4919 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4920 "added");
4921 for (ix = 0;
4922 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4923 ix, iter);
4924 ++ix)
4925 {
4926 if (ix > 0)
112e8700
SM
4927 current_uiout->text (" ");
4928 current_uiout->field_string ("library", iter->so_name);
4929 current_uiout->text ("\n");
edcc5120
TT
4930 }
4931
4932 do_cleanups (cleanup);
4933 }
4934}
4935
e514a9d6
JM
4936/* Print a message indicating what happened. This is called from
4937 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4938 list - a list of the eventpoints that caused this stop. KIND is
4939 the target_waitkind for the stopping event. This
e514a9d6
JM
4940 routine calls the generic print routine for printing a message
4941 about reasons for stopping. This will print (for example) the
4942 "Breakpoint n," part of the output. The return value of this
4943 routine is one of:
c906108c 4944
4a64f543 4945 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4946 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4947 code to print the location. An example is
c5aa993b
JM
4948 "Breakpoint 1, " which should be followed by
4949 the location.
917317f4 4950 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4951 to also print the location part of the message.
4952 An example is the catch/throw messages, which
4a64f543 4953 don't require a location appended to the end.
917317f4 4954 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4955 further info to be printed. */
c906108c 4956
917317f4 4957enum print_stop_action
36dfb11c 4958bpstat_print (bpstat bs, int kind)
c906108c 4959{
f486487f 4960 enum print_stop_action val;
c5aa993b 4961
c906108c 4962 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4963 (Currently all watchpoints go on the bpstat whether hit or not.
4964 That probably could (should) be changed, provided care is taken
c906108c 4965 with respect to bpstat_explains_signal). */
e514a9d6
JM
4966 for (; bs; bs = bs->next)
4967 {
4968 val = print_bp_stop_message (bs);
4969 if (val == PRINT_SRC_ONLY
4970 || val == PRINT_SRC_AND_LOC
4971 || val == PRINT_NOTHING)
4972 return val;
4973 }
c906108c 4974
36dfb11c
TT
4975 /* If we had hit a shared library event breakpoint,
4976 print_bp_stop_message would print out this message. If we hit an
4977 OS-level shared library event, do the same thing. */
4978 if (kind == TARGET_WAITKIND_LOADED)
4979 {
edcc5120 4980 print_solib_event (0);
36dfb11c
TT
4981 return PRINT_NOTHING;
4982 }
4983
e514a9d6 4984 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4985 with and nothing was printed. */
917317f4 4986 return PRINT_UNKNOWN;
c906108c
SS
4987}
4988
c42bd95a
DE
4989/* Evaluate the expression EXP and return 1 if value is zero.
4990 This returns the inverse of the condition because it is called
4991 from catch_errors which returns 0 if an exception happened, and if an
4992 exception happens we want execution to stop.
4a64f543 4993 The argument is a "struct expression *" that has been cast to a
c42bd95a 4994 "void *" to make it pass through catch_errors. */
c906108c
SS
4995
4996static int
4efb68b1 4997breakpoint_cond_eval (void *exp)
c906108c 4998{
278cd55f 4999 struct value *mark = value_mark ();
c5aa993b 5000 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 5001
c906108c
SS
5002 value_free_to_mark (mark);
5003 return i;
5004}
5005
5760d0ab 5006/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c
SS
5007
5008static bpstat
5760d0ab 5009bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
c906108c
SS
5010{
5011 bpstat bs;
5012
5013 bs = (bpstat) xmalloc (sizeof (*bs));
5760d0ab
JK
5014 bs->next = NULL;
5015 **bs_link_pointer = bs;
5016 *bs_link_pointer = &bs->next;
f431efe5
PA
5017 bs->breakpoint_at = bl->owner;
5018 bs->bp_location_at = bl;
5019 incref_bp_location (bl);
c906108c
SS
5020 /* If the condition is false, etc., don't do the commands. */
5021 bs->commands = NULL;
5022 bs->old_val = NULL;
5023 bs->print_it = print_it_normal;
5024 return bs;
5025}
5026\f
d983da9c
DJ
5027/* The target has stopped with waitstatus WS. Check if any hardware
5028 watchpoints have triggered, according to the target. */
5029
5030int
5031watchpoints_triggered (struct target_waitstatus *ws)
5032{
d92524f1 5033 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
5034 CORE_ADDR addr;
5035 struct breakpoint *b;
5036
5037 if (!stopped_by_watchpoint)
5038 {
5039 /* We were not stopped by a watchpoint. Mark all watchpoints
5040 as not triggered. */
5041 ALL_BREAKPOINTS (b)
cc60f2e3 5042 if (is_hardware_watchpoint (b))
3a5c3e22
PA
5043 {
5044 struct watchpoint *w = (struct watchpoint *) b;
5045
5046 w->watchpoint_triggered = watch_triggered_no;
5047 }
d983da9c
DJ
5048
5049 return 0;
5050 }
5051
5052 if (!target_stopped_data_address (&current_target, &addr))
5053 {
5054 /* We were stopped by a watchpoint, but we don't know where.
5055 Mark all watchpoints as unknown. */
5056 ALL_BREAKPOINTS (b)
cc60f2e3 5057 if (is_hardware_watchpoint (b))
3a5c3e22
PA
5058 {
5059 struct watchpoint *w = (struct watchpoint *) b;
5060
5061 w->watchpoint_triggered = watch_triggered_unknown;
5062 }
d983da9c 5063
3c4797ba 5064 return 1;
d983da9c
DJ
5065 }
5066
5067 /* The target could report the data address. Mark watchpoints
5068 affected by this data address as triggered, and all others as not
5069 triggered. */
5070
5071 ALL_BREAKPOINTS (b)
cc60f2e3 5072 if (is_hardware_watchpoint (b))
d983da9c 5073 {
3a5c3e22 5074 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 5075 struct bp_location *loc;
d983da9c 5076
3a5c3e22 5077 w->watchpoint_triggered = watch_triggered_no;
a5606eee 5078 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 5079 {
3a5c3e22 5080 if (is_masked_watchpoint (b))
9c06b0b4 5081 {
3a5c3e22
PA
5082 CORE_ADDR newaddr = addr & w->hw_wp_mask;
5083 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
5084
5085 if (newaddr == start)
5086 {
3a5c3e22 5087 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
5088 break;
5089 }
5090 }
5091 /* Exact match not required. Within range is sufficient. */
5092 else if (target_watchpoint_addr_within_range (&current_target,
5093 addr, loc->address,
5094 loc->length))
5095 {
3a5c3e22 5096 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
5097 break;
5098 }
5099 }
d983da9c
DJ
5100 }
5101
5102 return 1;
5103}
5104
c906108c
SS
5105/* Possible return values for watchpoint_check (this can't be an enum
5106 because of check_errors). */
5107/* The watchpoint has been deleted. */
5108#define WP_DELETED 1
5109/* The value has changed. */
5110#define WP_VALUE_CHANGED 2
5111/* The value has not changed. */
5112#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
5113/* Ignore this watchpoint, no matter if the value changed or not. */
5114#define WP_IGNORE 4
c906108c
SS
5115
5116#define BP_TEMPFLAG 1
5117#define BP_HARDWAREFLAG 2
5118
4a64f543
MS
5119/* Evaluate watchpoint condition expression and check if its value
5120 changed.
553e4c11
JB
5121
5122 P should be a pointer to struct bpstat, but is defined as a void *
5123 in order for this function to be usable with catch_errors. */
c906108c
SS
5124
5125static int
4efb68b1 5126watchpoint_check (void *p)
c906108c
SS
5127{
5128 bpstat bs = (bpstat) p;
3a5c3e22 5129 struct watchpoint *b;
c906108c
SS
5130 struct frame_info *fr;
5131 int within_current_scope;
5132
f431efe5 5133 /* BS is built from an existing struct breakpoint. */
2bdf28a0 5134 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 5135 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 5136
f6bc2008
PA
5137 /* If this is a local watchpoint, we only want to check if the
5138 watchpoint frame is in scope if the current thread is the thread
5139 that was used to create the watchpoint. */
5140 if (!watchpoint_in_thread_scope (b))
60e1c644 5141 return WP_IGNORE;
f6bc2008 5142
c906108c
SS
5143 if (b->exp_valid_block == NULL)
5144 within_current_scope = 1;
5145 else
5146 {
edb3359d
DJ
5147 struct frame_info *frame = get_current_frame ();
5148 struct gdbarch *frame_arch = get_frame_arch (frame);
5149 CORE_ADDR frame_pc = get_frame_pc (frame);
5150
c9cf6e20 5151 /* stack_frame_destroyed_p() returns a non-zero value if we're
4a64f543
MS
5152 still in the function but the stack frame has already been
5153 invalidated. Since we can't rely on the values of local
5154 variables after the stack has been destroyed, we are treating
5155 the watchpoint in that state as `not changed' without further
5156 checking. Don't mark watchpoints as changed if the current
5157 frame is in an epilogue - even if they are in some other
5158 frame, our view of the stack is likely to be wrong and
5159 frame_find_by_id could error out. */
c9cf6e20 5160 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
60e1c644 5161 return WP_IGNORE;
a0f49112 5162
101dcfbe 5163 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 5164 within_current_scope = (fr != NULL);
69fbadd5
DJ
5165
5166 /* If we've gotten confused in the unwinder, we might have
5167 returned a frame that can't describe this variable. */
edb3359d
DJ
5168 if (within_current_scope)
5169 {
5170 struct symbol *function;
5171
5172 function = get_frame_function (fr);
5173 if (function == NULL
5174 || !contained_in (b->exp_valid_block,
5175 SYMBOL_BLOCK_VALUE (function)))
5176 within_current_scope = 0;
5177 }
69fbadd5 5178
edb3359d 5179 if (within_current_scope)
c906108c
SS
5180 /* If we end up stopping, the current frame will get selected
5181 in normal_stop. So this call to select_frame won't affect
5182 the user. */
0f7d239c 5183 select_frame (fr);
c906108c 5184 }
c5aa993b 5185
c906108c
SS
5186 if (within_current_scope)
5187 {
4a64f543
MS
5188 /* We use value_{,free_to_}mark because it could be a *long*
5189 time before we return to the command level and call
5190 free_all_values. We can't call free_all_values because we
5191 might be in the middle of evaluating a function call. */
c906108c 5192
0cf6dd15 5193 int pc = 0;
9c06b0b4 5194 struct value *mark;
fa4727a6
DJ
5195 struct value *new_val;
5196
3a5c3e22 5197 if (is_masked_watchpoint (&b->base))
9c06b0b4
TJB
5198 /* Since we don't know the exact trigger address (from
5199 stopped_data_address), just tell the user we've triggered
5200 a mask watchpoint. */
5201 return WP_VALUE_CHANGED;
5202
5203 mark = value_mark ();
4d01a485 5204 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
218d2fc6 5205
bb9d5f81
PP
5206 if (b->val_bitsize != 0)
5207 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
5208
4a64f543
MS
5209 /* We use value_equal_contents instead of value_equal because
5210 the latter coerces an array to a pointer, thus comparing just
5211 the address of the array instead of its contents. This is
5212 not what we want. */
fa4727a6 5213 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 5214 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 5215 {
fa4727a6
DJ
5216 if (new_val != NULL)
5217 {
5218 release_value (new_val);
5219 value_free_to_mark (mark);
5220 }
c906108c
SS
5221 bs->old_val = b->val;
5222 b->val = new_val;
fa4727a6 5223 b->val_valid = 1;
c906108c
SS
5224 return WP_VALUE_CHANGED;
5225 }
5226 else
5227 {
60e1c644 5228 /* Nothing changed. */
c906108c 5229 value_free_to_mark (mark);
c906108c
SS
5230 return WP_VALUE_NOT_CHANGED;
5231 }
5232 }
5233 else
5234 {
5235 /* This seems like the only logical thing to do because
c5aa993b
JM
5236 if we temporarily ignored the watchpoint, then when
5237 we reenter the block in which it is valid it contains
5238 garbage (in the case of a function, it may have two
5239 garbage values, one before and one after the prologue).
5240 So we can't even detect the first assignment to it and
5241 watch after that (since the garbage may or may not equal
5242 the first value assigned). */
348d480f
PA
5243 /* We print all the stop information in
5244 breakpoint_ops->print_it, but in this case, by the time we
5245 call breakpoint_ops->print_it this bp will be deleted
5246 already. So we have no choice but print the information
5247 here. */
468afe6c 5248
0e454242 5249 SWITCH_THRU_ALL_UIS ()
468afe6c
PA
5250 {
5251 struct ui_out *uiout = current_uiout;
5252
112e8700
SM
5253 if (uiout->is_mi_like_p ())
5254 uiout->field_string
5255 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
5256 uiout->text ("\nWatchpoint ");
5257 uiout->field_int ("wpnum", b->base.number);
5258 uiout->text (" deleted because the program has left the block in\n"
468afe6c
PA
5259 "which its expression is valid.\n");
5260 }
4ce44c66 5261
cdac0397 5262 /* Make sure the watchpoint's commands aren't executed. */
3a5c3e22 5263 decref_counted_command_line (&b->base.commands);
d0fb5eae 5264 watchpoint_del_at_next_stop (b);
c906108c
SS
5265
5266 return WP_DELETED;
5267 }
5268}
5269
18a18393 5270/* Return true if it looks like target has stopped due to hitting
348d480f
PA
5271 breakpoint location BL. This function does not check if we should
5272 stop, only if BL explains the stop. */
5273
18a18393 5274static int
6c95b8df 5275bpstat_check_location (const struct bp_location *bl,
09ac7c10
TT
5276 struct address_space *aspace, CORE_ADDR bp_addr,
5277 const struct target_waitstatus *ws)
18a18393
VP
5278{
5279 struct breakpoint *b = bl->owner;
5280
348d480f 5281 /* BL is from an existing breakpoint. */
2bdf28a0
JK
5282 gdb_assert (b != NULL);
5283
09ac7c10 5284 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
5285}
5286
3a5c3e22
PA
5287/* Determine if the watched values have actually changed, and we
5288 should stop. If not, set BS->stop to 0. */
5289
18a18393
VP
5290static void
5291bpstat_check_watchpoint (bpstat bs)
5292{
2bdf28a0 5293 const struct bp_location *bl;
3a5c3e22 5294 struct watchpoint *b;
2bdf28a0
JK
5295
5296 /* BS is built for existing struct breakpoint. */
f431efe5 5297 bl = bs->bp_location_at;
2bdf28a0 5298 gdb_assert (bl != NULL);
3a5c3e22 5299 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 5300 gdb_assert (b != NULL);
18a18393 5301
18a18393 5302 {
18a18393
VP
5303 int must_check_value = 0;
5304
3a5c3e22 5305 if (b->base.type == bp_watchpoint)
18a18393
VP
5306 /* For a software watchpoint, we must always check the
5307 watched value. */
5308 must_check_value = 1;
5309 else if (b->watchpoint_triggered == watch_triggered_yes)
5310 /* We have a hardware watchpoint (read, write, or access)
5311 and the target earlier reported an address watched by
5312 this watchpoint. */
5313 must_check_value = 1;
5314 else if (b->watchpoint_triggered == watch_triggered_unknown
3a5c3e22 5315 && b->base.type == bp_hardware_watchpoint)
18a18393
VP
5316 /* We were stopped by a hardware watchpoint, but the target could
5317 not report the data address. We must check the watchpoint's
5318 value. Access and read watchpoints are out of luck; without
5319 a data address, we can't figure it out. */
5320 must_check_value = 1;
3a5c3e22 5321
18a18393
VP
5322 if (must_check_value)
5323 {
3e43a32a
MS
5324 char *message
5325 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3a5c3e22 5326 b->base.number);
18a18393
VP
5327 struct cleanup *cleanups = make_cleanup (xfree, message);
5328 int e = catch_errors (watchpoint_check, bs, message,
5329 RETURN_MASK_ALL);
5330 do_cleanups (cleanups);
5331 switch (e)
5332 {
5333 case WP_DELETED:
5334 /* We've already printed what needs to be printed. */
5335 bs->print_it = print_it_done;
5336 /* Stop. */
5337 break;
60e1c644
PA
5338 case WP_IGNORE:
5339 bs->print_it = print_it_noop;
5340 bs->stop = 0;
5341 break;
18a18393 5342 case WP_VALUE_CHANGED:
3a5c3e22 5343 if (b->base.type == bp_read_watchpoint)
18a18393 5344 {
85d721b8
PA
5345 /* There are two cases to consider here:
5346
4a64f543 5347 1. We're watching the triggered memory for reads.
85d721b8
PA
5348 In that case, trust the target, and always report
5349 the watchpoint hit to the user. Even though
5350 reads don't cause value changes, the value may
5351 have changed since the last time it was read, and
5352 since we're not trapping writes, we will not see
5353 those, and as such we should ignore our notion of
5354 old value.
5355
4a64f543 5356 2. We're watching the triggered memory for both
85d721b8
PA
5357 reads and writes. There are two ways this may
5358 happen:
5359
4a64f543 5360 2.1. This is a target that can't break on data
85d721b8
PA
5361 reads only, but can break on accesses (reads or
5362 writes), such as e.g., x86. We detect this case
5363 at the time we try to insert read watchpoints.
5364
4a64f543 5365 2.2. Otherwise, the target supports read
85d721b8
PA
5366 watchpoints, but, the user set an access or write
5367 watchpoint watching the same memory as this read
5368 watchpoint.
5369
5370 If we're watching memory writes as well as reads,
5371 ignore watchpoint hits when we find that the
5372 value hasn't changed, as reads don't cause
5373 changes. This still gives false positives when
5374 the program writes the same value to memory as
5375 what there was already in memory (we will confuse
5376 it for a read), but it's much better than
5377 nothing. */
5378
5379 int other_write_watchpoint = 0;
5380
5381 if (bl->watchpoint_type == hw_read)
5382 {
5383 struct breakpoint *other_b;
5384
5385 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5386 if (other_b->type == bp_hardware_watchpoint
5387 || other_b->type == bp_access_watchpoint)
85d721b8 5388 {
3a5c3e22
PA
5389 struct watchpoint *other_w =
5390 (struct watchpoint *) other_b;
5391
5392 if (other_w->watchpoint_triggered
5393 == watch_triggered_yes)
5394 {
5395 other_write_watchpoint = 1;
5396 break;
5397 }
85d721b8
PA
5398 }
5399 }
5400
5401 if (other_write_watchpoint
5402 || bl->watchpoint_type == hw_access)
5403 {
5404 /* We're watching the same memory for writes,
5405 and the value changed since the last time we
5406 updated it, so this trap must be for a write.
5407 Ignore it. */
5408 bs->print_it = print_it_noop;
5409 bs->stop = 0;
5410 }
18a18393
VP
5411 }
5412 break;
5413 case WP_VALUE_NOT_CHANGED:
3a5c3e22
PA
5414 if (b->base.type == bp_hardware_watchpoint
5415 || b->base.type == bp_watchpoint)
18a18393
VP
5416 {
5417 /* Don't stop: write watchpoints shouldn't fire if
5418 the value hasn't changed. */
5419 bs->print_it = print_it_noop;
5420 bs->stop = 0;
5421 }
5422 /* Stop. */
5423 break;
5424 default:
5425 /* Can't happen. */
5426 case 0:
5427 /* Error from catch_errors. */
468afe6c 5428 {
0e454242 5429 SWITCH_THRU_ALL_UIS ()
468afe6c
PA
5430 {
5431 printf_filtered (_("Watchpoint %d deleted.\n"),
5432 b->base.number);
5433 }
5434 watchpoint_del_at_next_stop (b);
5435 /* We've already printed what needs to be printed. */
5436 bs->print_it = print_it_done;
5437 }
18a18393
VP
5438 break;
5439 }
5440 }
5441 else /* must_check_value == 0 */
5442 {
5443 /* This is a case where some watchpoint(s) triggered, but
5444 not at the address of this watchpoint, or else no
5445 watchpoint triggered after all. So don't print
5446 anything for this watchpoint. */
5447 bs->print_it = print_it_noop;
5448 bs->stop = 0;
5449 }
5450 }
5451}
5452
7d4df6a4
DE
5453/* For breakpoints that are currently marked as telling gdb to stop,
5454 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5455 of breakpoint referred to by BS. If we should not stop for this
5456 breakpoint, set BS->stop to 0. */
f431efe5 5457
18a18393
VP
5458static void
5459bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5460{
2bdf28a0
JK
5461 const struct bp_location *bl;
5462 struct breakpoint *b;
7d4df6a4
DE
5463 int value_is_zero = 0;
5464 struct expression *cond;
5465
5466 gdb_assert (bs->stop);
2bdf28a0
JK
5467
5468 /* BS is built for existing struct breakpoint. */
f431efe5 5469 bl = bs->bp_location_at;
2bdf28a0 5470 gdb_assert (bl != NULL);
f431efe5 5471 b = bs->breakpoint_at;
2bdf28a0 5472 gdb_assert (b != NULL);
18a18393 5473
b775012e
LM
5474 /* Even if the target evaluated the condition on its end and notified GDB, we
5475 need to do so again since GDB does not know if we stopped due to a
5476 breakpoint or a single step breakpoint. */
5477
18a18393 5478 if (frame_id_p (b->frame_id)
edb3359d 5479 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5480 {
7d4df6a4
DE
5481 bs->stop = 0;
5482 return;
5483 }
60e1c644 5484
12ab52e9
PA
5485 /* If this is a thread/task-specific breakpoint, don't waste cpu
5486 evaluating the condition if this isn't the specified
5487 thread/task. */
5d5658a1 5488 if ((b->thread != -1 && b->thread != ptid_to_global_thread_id (ptid))
12ab52e9
PA
5489 || (b->task != 0 && b->task != ada_get_task_number (ptid)))
5490
6c1b0f7b
DE
5491 {
5492 bs->stop = 0;
5493 return;
5494 }
5495
6dddc817
DE
5496 /* Evaluate extension language breakpoints that have a "stop" method
5497 implemented. */
5498 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
7371cf6d 5499
7d4df6a4
DE
5500 if (is_watchpoint (b))
5501 {
5502 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5503
4d01a485 5504 cond = w->cond_exp.get ();
7d4df6a4
DE
5505 }
5506 else
4d01a485 5507 cond = bl->cond.get ();
60e1c644 5508
7d4df6a4
DE
5509 if (cond && b->disposition != disp_del_at_next_stop)
5510 {
5511 int within_current_scope = 1;
5512 struct watchpoint * w;
60e1c644 5513
7d4df6a4
DE
5514 /* We use value_mark and value_free_to_mark because it could
5515 be a long time before we return to the command level and
5516 call free_all_values. We can't call free_all_values
5517 because we might be in the middle of evaluating a
5518 function call. */
5519 struct value *mark = value_mark ();
5520
5521 if (is_watchpoint (b))
5522 w = (struct watchpoint *) b;
5523 else
5524 w = NULL;
5525
5526 /* Need to select the frame, with all that implies so that
5527 the conditions will have the right context. Because we
5528 use the frame, we will not see an inlined function's
5529 variables when we arrive at a breakpoint at the start
5530 of the inlined function; the current frame will be the
5531 call site. */
5532 if (w == NULL || w->cond_exp_valid_block == NULL)
5533 select_frame (get_current_frame ());
5534 else
18a18393 5535 {
7d4df6a4
DE
5536 struct frame_info *frame;
5537
5538 /* For local watchpoint expressions, which particular
5539 instance of a local is being watched matters, so we
5540 keep track of the frame to evaluate the expression
5541 in. To evaluate the condition however, it doesn't
5542 really matter which instantiation of the function
5543 where the condition makes sense triggers the
5544 watchpoint. This allows an expression like "watch
5545 global if q > 10" set in `func', catch writes to
5546 global on all threads that call `func', or catch
5547 writes on all recursive calls of `func' by a single
5548 thread. We simply always evaluate the condition in
5549 the innermost frame that's executing where it makes
5550 sense to evaluate the condition. It seems
5551 intuitive. */
5552 frame = block_innermost_frame (w->cond_exp_valid_block);
5553 if (frame != NULL)
5554 select_frame (frame);
5555 else
5556 within_current_scope = 0;
18a18393 5557 }
7d4df6a4
DE
5558 if (within_current_scope)
5559 value_is_zero
5560 = catch_errors (breakpoint_cond_eval, cond,
5561 "Error in testing breakpoint condition:\n",
5562 RETURN_MASK_ALL);
5563 else
18a18393 5564 {
7d4df6a4
DE
5565 warning (_("Watchpoint condition cannot be tested "
5566 "in the current scope"));
5567 /* If we failed to set the right context for this
5568 watchpoint, unconditionally report it. */
5569 value_is_zero = 0;
18a18393 5570 }
7d4df6a4
DE
5571 /* FIXME-someday, should give breakpoint #. */
5572 value_free_to_mark (mark);
18a18393 5573 }
7d4df6a4
DE
5574
5575 if (cond && value_is_zero)
5576 {
5577 bs->stop = 0;
5578 }
7d4df6a4
DE
5579 else if (b->ignore_count > 0)
5580 {
5581 b->ignore_count--;
5582 bs->stop = 0;
5583 /* Increase the hit count even though we don't stop. */
5584 ++(b->hit_count);
5585 observer_notify_breakpoint_modified (b);
5586 }
18a18393
VP
5587}
5588
1cf4d951
PA
5589/* Returns true if we need to track moribund locations of LOC's type
5590 on the current target. */
5591
5592static int
5593need_moribund_for_location_type (struct bp_location *loc)
5594{
5595 return ((loc->loc_type == bp_loc_software_breakpoint
5596 && !target_supports_stopped_by_sw_breakpoint ())
5597 || (loc->loc_type == bp_loc_hardware_breakpoint
5598 && !target_supports_stopped_by_hw_breakpoint ()));
5599}
5600
18a18393 5601
9709f61c 5602/* Get a bpstat associated with having just stopped at address
d983da9c 5603 BP_ADDR in thread PTID.
c906108c 5604
d983da9c 5605 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
5606 don't understand this stop. Result is a chain of bpstat's such
5607 that:
c906108c 5608
c5aa993b 5609 if we don't understand the stop, the result is a null pointer.
c906108c 5610
c5aa993b 5611 if we understand why we stopped, the result is not null.
c906108c 5612
c5aa993b
JM
5613 Each element of the chain refers to a particular breakpoint or
5614 watchpoint at which we have stopped. (We may have stopped for
5615 several reasons concurrently.)
c906108c 5616
c5aa993b
JM
5617 Each element of the chain has valid next, breakpoint_at,
5618 commands, FIXME??? fields. */
c906108c
SS
5619
5620bpstat
6c95b8df 5621bpstat_stop_status (struct address_space *aspace,
09ac7c10
TT
5622 CORE_ADDR bp_addr, ptid_t ptid,
5623 const struct target_waitstatus *ws)
c906108c 5624{
0d381245 5625 struct breakpoint *b = NULL;
afe38095 5626 struct bp_location *bl;
20874c92 5627 struct bp_location *loc;
5760d0ab
JK
5628 /* First item of allocated bpstat's. */
5629 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 5630 /* Pointer to the last thing in the chain currently. */
5760d0ab 5631 bpstat bs;
20874c92 5632 int ix;
429374b8 5633 int need_remove_insert;
f431efe5 5634 int removed_any;
c906108c 5635
f431efe5
PA
5636 /* First, build the bpstat chain with locations that explain a
5637 target stop, while being careful to not set the target running,
5638 as that may invalidate locations (in particular watchpoint
5639 locations are recreated). Resuming will happen here with
5640 breakpoint conditions or watchpoint expressions that include
5641 inferior function calls. */
c5aa993b 5642
429374b8
JK
5643 ALL_BREAKPOINTS (b)
5644 {
1a853c52 5645 if (!breakpoint_enabled (b))
429374b8 5646 continue;
a5606eee 5647
429374b8
JK
5648 for (bl = b->loc; bl != NULL; bl = bl->next)
5649 {
4a64f543
MS
5650 /* For hardware watchpoints, we look only at the first
5651 location. The watchpoint_check function will work on the
5652 entire expression, not the individual locations. For
5653 read watchpoints, the watchpoints_triggered function has
5654 checked all locations already. */
429374b8
JK
5655 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5656 break;
18a18393 5657
f6592439 5658 if (!bl->enabled || bl->shlib_disabled)
429374b8 5659 continue;
c5aa993b 5660
09ac7c10 5661 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5662 continue;
c5aa993b 5663
4a64f543
MS
5664 /* Come here if it's a watchpoint, or if the break address
5665 matches. */
c5aa993b 5666
4a64f543
MS
5667 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
5668 explain stop. */
c5aa993b 5669
f431efe5
PA
5670 /* Assume we stop. Should we find a watchpoint that is not
5671 actually triggered, or if the condition of the breakpoint
5672 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5673 bs->stop = 1;
5674 bs->print = 1;
d983da9c 5675
f431efe5
PA
5676 /* If this is a scope breakpoint, mark the associated
5677 watchpoint as triggered so that we will handle the
5678 out-of-scope event. We'll get to the watchpoint next
5679 iteration. */
d0fb5eae 5680 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5681 {
5682 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5683
5684 w->watchpoint_triggered = watch_triggered_yes;
5685 }
f431efe5
PA
5686 }
5687 }
5688
7c16b83e 5689 /* Check if a moribund breakpoint explains the stop. */
1cf4d951
PA
5690 if (!target_supports_stopped_by_sw_breakpoint ()
5691 || !target_supports_stopped_by_hw_breakpoint ())
f431efe5 5692 {
1cf4d951 5693 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f431efe5 5694 {
1cf4d951
PA
5695 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5696 && need_moribund_for_location_type (loc))
5697 {
5698 bs = bpstat_alloc (loc, &bs_link);
5699 /* For hits of moribund locations, we should just proceed. */
5700 bs->stop = 0;
5701 bs->print = 0;
5702 bs->print_it = print_it_noop;
5703 }
f431efe5
PA
5704 }
5705 }
5706
edcc5120
TT
5707 /* A bit of special processing for shlib breakpoints. We need to
5708 process solib loading here, so that the lists of loaded and
5709 unloaded libraries are correct before we handle "catch load" and
5710 "catch unload". */
5711 for (bs = bs_head; bs != NULL; bs = bs->next)
5712 {
5d268276 5713 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5714 {
5715 handle_solib_event ();
5716 break;
5717 }
5718 }
5719
f431efe5
PA
5720 /* Now go through the locations that caused the target to stop, and
5721 check whether we're interested in reporting this stop to higher
5722 layers, or whether we should resume the target transparently. */
5723
5724 removed_any = 0;
5725
5760d0ab 5726 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5727 {
5728 if (!bs->stop)
5729 continue;
5730
f431efe5 5731 b = bs->breakpoint_at;
348d480f
PA
5732 b->ops->check_status (bs);
5733 if (bs->stop)
28010a5d 5734 {
348d480f 5735 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 5736
429374b8
JK
5737 if (bs->stop)
5738 {
5739 ++(b->hit_count);
8d3788bd 5740 observer_notify_breakpoint_modified (b);
c906108c 5741
4a64f543 5742 /* We will stop here. */
429374b8
JK
5743 if (b->disposition == disp_disable)
5744 {
816338b5 5745 --(b->enable_count);
1a853c52 5746 if (b->enable_count <= 0)
429374b8 5747 b->enable_state = bp_disabled;
f431efe5 5748 removed_any = 1;
429374b8
JK
5749 }
5750 if (b->silent)
5751 bs->print = 0;
5752 bs->commands = b->commands;
9add0f1b 5753 incref_counted_command_line (bs->commands);
abf85f46
JK
5754 if (command_line_is_silent (bs->commands
5755 ? bs->commands->commands : NULL))
5756 bs->print = 0;
9d6e6e84
HZ
5757
5758 b->ops->after_condition_true (bs);
429374b8
JK
5759 }
5760
348d480f 5761 }
a9b3a50f
PA
5762
5763 /* Print nothing for this entry if we don't stop or don't
5764 print. */
5765 if (!bs->stop || !bs->print)
5766 bs->print_it = print_it_noop;
429374b8 5767 }
876fa593 5768
d983da9c
DJ
5769 /* If we aren't stopping, the value of some hardware watchpoint may
5770 not have changed, but the intermediate memory locations we are
5771 watching may have. Don't bother if we're stopping; this will get
5772 done later. */
d832cb68 5773 need_remove_insert = 0;
5760d0ab
JK
5774 if (! bpstat_causes_stop (bs_head))
5775 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5776 if (!bs->stop
f431efe5
PA
5777 && bs->breakpoint_at
5778 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5779 {
3a5c3e22
PA
5780 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5781
5782 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5783 need_remove_insert = 1;
d983da9c
DJ
5784 }
5785
d832cb68 5786 if (need_remove_insert)
44702360 5787 update_global_location_list (UGLL_MAY_INSERT);
f431efe5 5788 else if (removed_any)
44702360 5789 update_global_location_list (UGLL_DONT_INSERT);
d832cb68 5790
5760d0ab 5791 return bs_head;
c906108c 5792}
628fe4e4
JK
5793
5794static void
5795handle_jit_event (void)
5796{
5797 struct frame_info *frame;
5798 struct gdbarch *gdbarch;
5799
243a9253
PA
5800 if (debug_infrun)
5801 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5802
628fe4e4
JK
5803 /* Switch terminal for any messages produced by
5804 breakpoint_re_set. */
5805 target_terminal_ours_for_output ();
5806
5807 frame = get_current_frame ();
5808 gdbarch = get_frame_arch (frame);
5809
5810 jit_event_handler (gdbarch);
5811
5812 target_terminal_inferior ();
5813}
5814
5815/* Prepare WHAT final decision for infrun. */
5816
5817/* Decide what infrun needs to do with this bpstat. */
5818
c906108c 5819struct bpstat_what
0e30163f 5820bpstat_what (bpstat bs_head)
c906108c 5821{
c906108c 5822 struct bpstat_what retval;
0e30163f 5823 bpstat bs;
c906108c 5824
628fe4e4 5825 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5826 retval.call_dummy = STOP_NONE;
186c406b 5827 retval.is_longjmp = 0;
628fe4e4 5828
0e30163f 5829 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5830 {
628fe4e4
JK
5831 /* Extract this BS's action. After processing each BS, we check
5832 if its action overrides all we've seem so far. */
5833 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5834 enum bptype bptype;
5835
c906108c 5836 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5837 {
5838 /* I suspect this can happen if it was a momentary
5839 breakpoint which has since been deleted. */
5840 bptype = bp_none;
5841 }
20874c92 5842 else
f431efe5 5843 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5844
5845 switch (bptype)
c906108c
SS
5846 {
5847 case bp_none:
628fe4e4 5848 break;
c906108c
SS
5849 case bp_breakpoint:
5850 case bp_hardware_breakpoint:
7c16b83e 5851 case bp_single_step:
c906108c
SS
5852 case bp_until:
5853 case bp_finish:
a9b3a50f 5854 case bp_shlib_event:
c906108c
SS
5855 if (bs->stop)
5856 {
5857 if (bs->print)
628fe4e4 5858 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5859 else
628fe4e4 5860 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5861 }
5862 else
628fe4e4 5863 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5864 break;
5865 case bp_watchpoint:
5866 case bp_hardware_watchpoint:
5867 case bp_read_watchpoint:
5868 case bp_access_watchpoint:
5869 if (bs->stop)
5870 {
5871 if (bs->print)
628fe4e4 5872 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5873 else
628fe4e4 5874 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5875 }
5876 else
628fe4e4
JK
5877 {
5878 /* There was a watchpoint, but we're not stopping.
5879 This requires no further action. */
5880 }
c906108c
SS
5881 break;
5882 case bp_longjmp:
e2e4d78b 5883 case bp_longjmp_call_dummy:
186c406b 5884 case bp_exception:
0a39bb32
PA
5885 if (bs->stop)
5886 {
5887 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5888 retval.is_longjmp = bptype != bp_exception;
5889 }
5890 else
5891 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5892 break;
5893 case bp_longjmp_resume:
186c406b 5894 case bp_exception_resume:
0a39bb32
PA
5895 if (bs->stop)
5896 {
5897 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5898 retval.is_longjmp = bptype == bp_longjmp_resume;
5899 }
5900 else
5901 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5902 break;
5903 case bp_step_resume:
5904 if (bs->stop)
628fe4e4
JK
5905 this_action = BPSTAT_WHAT_STEP_RESUME;
5906 else
c906108c 5907 {
628fe4e4
JK
5908 /* It is for the wrong frame. */
5909 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5910 }
c906108c 5911 break;
2c03e5be
PA
5912 case bp_hp_step_resume:
5913 if (bs->stop)
5914 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5915 else
5916 {
5917 /* It is for the wrong frame. */
5918 this_action = BPSTAT_WHAT_SINGLE;
5919 }
5920 break;
c906108c 5921 case bp_watchpoint_scope:
c4093a6a 5922 case bp_thread_event:
1900040c 5923 case bp_overlay_event:
0fd8e87f 5924 case bp_longjmp_master:
aa7d318d 5925 case bp_std_terminate_master:
186c406b 5926 case bp_exception_master:
628fe4e4 5927 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5928 break;
ce78b96d 5929 case bp_catchpoint:
c5aa993b
JM
5930 if (bs->stop)
5931 {
5932 if (bs->print)
628fe4e4 5933 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5934 else
628fe4e4 5935 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5936 }
5937 else
628fe4e4
JK
5938 {
5939 /* There was a catchpoint, but we're not stopping.
5940 This requires no further action. */
5941 }
5942 break;
628fe4e4 5943 case bp_jit_event:
628fe4e4 5944 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5945 break;
c906108c 5946 case bp_call_dummy:
53a5351d
JM
5947 /* Make sure the action is stop (silent or noisy),
5948 so infrun.c pops the dummy frame. */
aa7d318d 5949 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5950 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5951 break;
5952 case bp_std_terminate:
5953 /* Make sure the action is stop (silent or noisy),
5954 so infrun.c pops the dummy frame. */
aa7d318d 5955 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5956 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5957 break;
1042e4c0 5958 case bp_tracepoint:
7a697b8d 5959 case bp_fast_tracepoint:
0fb4aa4b 5960 case bp_static_tracepoint:
1042e4c0
SS
5961 /* Tracepoint hits should not be reported back to GDB, and
5962 if one got through somehow, it should have been filtered
5963 out already. */
5964 internal_error (__FILE__, __LINE__,
7a697b8d 5965 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5966 break;
5967 case bp_gnu_ifunc_resolver:
5968 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5969 this_action = BPSTAT_WHAT_SINGLE;
5970 break;
5971 case bp_gnu_ifunc_resolver_return:
5972 /* The breakpoint will be removed, execution will restart from the
5973 PC of the former breakpoint. */
5974 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5975 break;
e7e0cddf
SS
5976
5977 case bp_dprintf:
a11cfd87
HZ
5978 if (bs->stop)
5979 this_action = BPSTAT_WHAT_STOP_SILENT;
5980 else
5981 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5982 break;
5983
628fe4e4
JK
5984 default:
5985 internal_error (__FILE__, __LINE__,
5986 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5987 }
628fe4e4 5988
325fac50 5989 retval.main_action = std::max (retval.main_action, this_action);
c906108c 5990 }
628fe4e4 5991
243a9253
PA
5992 return retval;
5993}
628fe4e4 5994
243a9253
PA
5995void
5996bpstat_run_callbacks (bpstat bs_head)
5997{
5998 bpstat bs;
628fe4e4 5999
0e30163f
JK
6000 for (bs = bs_head; bs != NULL; bs = bs->next)
6001 {
6002 struct breakpoint *b = bs->breakpoint_at;
6003
6004 if (b == NULL)
6005 continue;
6006 switch (b->type)
6007 {
243a9253
PA
6008 case bp_jit_event:
6009 handle_jit_event ();
6010 break;
0e30163f
JK
6011 case bp_gnu_ifunc_resolver:
6012 gnu_ifunc_resolver_stop (b);
6013 break;
6014 case bp_gnu_ifunc_resolver_return:
6015 gnu_ifunc_resolver_return_stop (b);
6016 break;
6017 }
6018 }
c906108c
SS
6019}
6020
6021/* Nonzero if we should step constantly (e.g. watchpoints on machines
6022 without hardware support). This isn't related to a specific bpstat,
6023 just to things like whether watchpoints are set. */
6024
c5aa993b 6025int
fba45db2 6026bpstat_should_step (void)
c906108c
SS
6027{
6028 struct breakpoint *b;
cc59ec59 6029
c906108c 6030 ALL_BREAKPOINTS (b)
717a8278 6031 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 6032 return 1;
c906108c
SS
6033 return 0;
6034}
6035
67822962
PA
6036int
6037bpstat_causes_stop (bpstat bs)
6038{
6039 for (; bs != NULL; bs = bs->next)
6040 if (bs->stop)
6041 return 1;
6042
6043 return 0;
6044}
6045
c906108c 6046\f
c5aa993b 6047
170b53b2
UW
6048/* Compute a string of spaces suitable to indent the next line
6049 so it starts at the position corresponding to the table column
6050 named COL_NAME in the currently active table of UIOUT. */
6051
6052static char *
6053wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
6054{
6055 static char wrap_indent[80];
6056 int i, total_width, width, align;
c5209615 6057 const char *text;
170b53b2
UW
6058
6059 total_width = 0;
112e8700 6060 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
170b53b2
UW
6061 {
6062 if (strcmp (text, col_name) == 0)
6063 {
6064 gdb_assert (total_width < sizeof wrap_indent);
6065 memset (wrap_indent, ' ', total_width);
6066 wrap_indent[total_width] = 0;
6067
6068 return wrap_indent;
6069 }
6070
6071 total_width += width + 1;
6072 }
6073
6074 return NULL;
6075}
6076
b775012e
LM
6077/* Determine if the locations of this breakpoint will have their conditions
6078 evaluated by the target, host or a mix of both. Returns the following:
6079
6080 "host": Host evals condition.
6081 "host or target": Host or Target evals condition.
6082 "target": Target evals condition.
6083*/
6084
6085static const char *
6086bp_condition_evaluator (struct breakpoint *b)
6087{
6088 struct bp_location *bl;
6089 char host_evals = 0;
6090 char target_evals = 0;
6091
6092 if (!b)
6093 return NULL;
6094
6095 if (!is_breakpoint (b))
6096 return NULL;
6097
6098 if (gdb_evaluates_breakpoint_condition_p ()
6099 || !target_supports_evaluation_of_breakpoint_conditions ())
6100 return condition_evaluation_host;
6101
6102 for (bl = b->loc; bl; bl = bl->next)
6103 {
6104 if (bl->cond_bytecode)
6105 target_evals++;
6106 else
6107 host_evals++;
6108 }
6109
6110 if (host_evals && target_evals)
6111 return condition_evaluation_both;
6112 else if (target_evals)
6113 return condition_evaluation_target;
6114 else
6115 return condition_evaluation_host;
6116}
6117
6118/* Determine the breakpoint location's condition evaluator. This is
6119 similar to bp_condition_evaluator, but for locations. */
6120
6121static const char *
6122bp_location_condition_evaluator (struct bp_location *bl)
6123{
6124 if (bl && !is_breakpoint (bl->owner))
6125 return NULL;
6126
6127 if (gdb_evaluates_breakpoint_condition_p ()
6128 || !target_supports_evaluation_of_breakpoint_conditions ())
6129 return condition_evaluation_host;
6130
6131 if (bl && bl->cond_bytecode)
6132 return condition_evaluation_target;
6133 else
6134 return condition_evaluation_host;
6135}
6136
859825b8
JK
6137/* Print the LOC location out of the list of B->LOC locations. */
6138
170b53b2
UW
6139static void
6140print_breakpoint_location (struct breakpoint *b,
6141 struct bp_location *loc)
0d381245 6142{
79a45e25 6143 struct ui_out *uiout = current_uiout;
6c95b8df
PA
6144 struct cleanup *old_chain = save_current_program_space ();
6145
859825b8
JK
6146 if (loc != NULL && loc->shlib_disabled)
6147 loc = NULL;
6148
6c95b8df
PA
6149 if (loc != NULL)
6150 set_current_program_space (loc->pspace);
6151
56435ebe 6152 if (b->display_canonical)
112e8700 6153 uiout->field_string ("what", event_location_to_string (b->location));
2f202fde 6154 else if (loc && loc->symtab)
0d381245
VP
6155 {
6156 struct symbol *sym
6157 = find_pc_sect_function (loc->address, loc->section);
6158 if (sym)
6159 {
112e8700
SM
6160 uiout->text ("in ");
6161 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
6162 uiout->text (" ");
6163 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
6164 uiout->text ("at ");
0d381245 6165 }
112e8700 6166 uiout->field_string ("file",
05cba821 6167 symtab_to_filename_for_display (loc->symtab));
112e8700 6168 uiout->text (":");
05cba821 6169
112e8700
SM
6170 if (uiout->is_mi_like_p ())
6171 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
0d381245 6172
112e8700 6173 uiout->field_int ("line", loc->line_number);
0d381245 6174 }
859825b8 6175 else if (loc)
0d381245 6176 {
d7e74731 6177 string_file stb;
170b53b2 6178
d7e74731 6179 print_address_symbolic (loc->gdbarch, loc->address, &stb,
22e722e1 6180 demangle, "");
112e8700 6181 uiout->field_stream ("at", stb);
0d381245 6182 }
859825b8 6183 else
f00aae0f 6184 {
112e8700 6185 uiout->field_string ("pending", event_location_to_string (b->location));
f00aae0f
KS
6186 /* If extra_string is available, it could be holding a condition
6187 or dprintf arguments. In either case, make sure it is printed,
6188 too, but only for non-MI streams. */
112e8700 6189 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
f00aae0f
KS
6190 {
6191 if (b->type == bp_dprintf)
112e8700 6192 uiout->text (",");
f00aae0f 6193 else
112e8700
SM
6194 uiout->text (" ");
6195 uiout->text (b->extra_string);
f00aae0f
KS
6196 }
6197 }
6c95b8df 6198
b775012e
LM
6199 if (loc && is_breakpoint (b)
6200 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
6201 && bp_condition_evaluator (b) == condition_evaluation_both)
6202 {
112e8700
SM
6203 uiout->text (" (");
6204 uiout->field_string ("evaluated-by",
b775012e 6205 bp_location_condition_evaluator (loc));
112e8700 6206 uiout->text (")");
b775012e
LM
6207 }
6208
6c95b8df 6209 do_cleanups (old_chain);
0d381245
VP
6210}
6211
269b11a2
PA
6212static const char *
6213bptype_string (enum bptype type)
c906108c 6214{
c4093a6a
JM
6215 struct ep_type_description
6216 {
6217 enum bptype type;
a121b7c1 6218 const char *description;
c4093a6a
JM
6219 };
6220 static struct ep_type_description bptypes[] =
c906108c 6221 {
c5aa993b
JM
6222 {bp_none, "?deleted?"},
6223 {bp_breakpoint, "breakpoint"},
c906108c 6224 {bp_hardware_breakpoint, "hw breakpoint"},
7c16b83e 6225 {bp_single_step, "sw single-step"},
c5aa993b
JM
6226 {bp_until, "until"},
6227 {bp_finish, "finish"},
6228 {bp_watchpoint, "watchpoint"},
c906108c 6229 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
6230 {bp_read_watchpoint, "read watchpoint"},
6231 {bp_access_watchpoint, "acc watchpoint"},
6232 {bp_longjmp, "longjmp"},
6233 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 6234 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
6235 {bp_exception, "exception"},
6236 {bp_exception_resume, "exception resume"},
c5aa993b 6237 {bp_step_resume, "step resume"},
2c03e5be 6238 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
6239 {bp_watchpoint_scope, "watchpoint scope"},
6240 {bp_call_dummy, "call dummy"},
aa7d318d 6241 {bp_std_terminate, "std::terminate"},
c5aa993b 6242 {bp_shlib_event, "shlib events"},
c4093a6a 6243 {bp_thread_event, "thread events"},
1900040c 6244 {bp_overlay_event, "overlay events"},
0fd8e87f 6245 {bp_longjmp_master, "longjmp master"},
aa7d318d 6246 {bp_std_terminate_master, "std::terminate master"},
186c406b 6247 {bp_exception_master, "exception master"},
ce78b96d 6248 {bp_catchpoint, "catchpoint"},
1042e4c0 6249 {bp_tracepoint, "tracepoint"},
7a697b8d 6250 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 6251 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 6252 {bp_dprintf, "dprintf"},
4efc6507 6253 {bp_jit_event, "jit events"},
0e30163f
JK
6254 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
6255 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 6256 };
269b11a2
PA
6257
6258 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
6259 || ((int) type != bptypes[(int) type].type))
6260 internal_error (__FILE__, __LINE__,
6261 _("bptypes table does not describe type #%d."),
6262 (int) type);
6263
6264 return bptypes[(int) type].description;
6265}
6266
998580f1
MK
6267/* For MI, output a field named 'thread-groups' with a list as the value.
6268 For CLI, prefix the list with the string 'inf'. */
6269
6270static void
6271output_thread_groups (struct ui_out *uiout,
6272 const char *field_name,
6273 VEC(int) *inf_num,
6274 int mi_only)
6275{
752eb8b4 6276 struct cleanup *back_to;
112e8700 6277 int is_mi = uiout->is_mi_like_p ();
998580f1
MK
6278 int inf;
6279 int i;
6280
6281 /* For backward compatibility, don't display inferiors in CLI unless
6282 there are several. Always display them for MI. */
6283 if (!is_mi && mi_only)
6284 return;
6285
752eb8b4
TT
6286 back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name);
6287
998580f1
MK
6288 for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i)
6289 {
6290 if (is_mi)
6291 {
6292 char mi_group[10];
6293
6294 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf);
112e8700 6295 uiout->field_string (NULL, mi_group);
998580f1
MK
6296 }
6297 else
6298 {
6299 if (i == 0)
112e8700 6300 uiout->text (" inf ");
998580f1 6301 else
112e8700 6302 uiout->text (", ");
998580f1 6303
112e8700 6304 uiout->text (plongest (inf));
998580f1
MK
6305 }
6306 }
6307
6308 do_cleanups (back_to);
6309}
6310
269b11a2
PA
6311/* Print B to gdb_stdout. */
6312
6313static void
6314print_one_breakpoint_location (struct breakpoint *b,
6315 struct bp_location *loc,
6316 int loc_number,
6317 struct bp_location **last_loc,
269b11a2
PA
6318 int allflag)
6319{
6320 struct command_line *l;
c2c6d25f 6321 static char bpenables[] = "nynny";
c906108c 6322
79a45e25 6323 struct ui_out *uiout = current_uiout;
0d381245
VP
6324 int header_of_multiple = 0;
6325 int part_of_multiple = (loc != NULL);
79a45b7d
TT
6326 struct value_print_options opts;
6327
6328 get_user_print_options (&opts);
0d381245
VP
6329
6330 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
6331 /* See comment in print_one_breakpoint concerning treatment of
6332 breakpoints with single disabled location. */
0d381245
VP
6333 if (loc == NULL
6334 && (b->loc != NULL
6335 && (b->loc->next != NULL || !b->loc->enabled)))
6336 header_of_multiple = 1;
6337 if (loc == NULL)
6338 loc = b->loc;
6339
c4093a6a
JM
6340 annotate_record ();
6341
6342 /* 1 */
6343 annotate_field (0);
0d381245
VP
6344 if (part_of_multiple)
6345 {
6346 char *formatted;
0c6773c1 6347 formatted = xstrprintf ("%d.%d", b->number, loc_number);
112e8700 6348 uiout->field_string ("number", formatted);
0d381245
VP
6349 xfree (formatted);
6350 }
6351 else
6352 {
112e8700 6353 uiout->field_int ("number", b->number);
0d381245 6354 }
c4093a6a
JM
6355
6356 /* 2 */
6357 annotate_field (1);
0d381245 6358 if (part_of_multiple)
112e8700 6359 uiout->field_skip ("type");
269b11a2 6360 else
112e8700 6361 uiout->field_string ("type", bptype_string (b->type));
c4093a6a
JM
6362
6363 /* 3 */
6364 annotate_field (2);
0d381245 6365 if (part_of_multiple)
112e8700 6366 uiout->field_skip ("disp");
0d381245 6367 else
112e8700 6368 uiout->field_string ("disp", bpdisp_text (b->disposition));
0d381245 6369
c4093a6a
JM
6370
6371 /* 4 */
6372 annotate_field (3);
0d381245 6373 if (part_of_multiple)
112e8700 6374 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
0d381245 6375 else
112e8700
SM
6376 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
6377 uiout->spaces (2);
0d381245 6378
c4093a6a
JM
6379
6380 /* 5 and 6 */
3086aeae 6381 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 6382 {
4a64f543
MS
6383 /* Although the print_one can possibly print all locations,
6384 calling it here is not likely to get any nice result. So,
6385 make sure there's just one location. */
0d381245 6386 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 6387 b->ops->print_one (b, last_loc);
0d381245 6388 }
3086aeae
DJ
6389 else
6390 switch (b->type)
6391 {
6392 case bp_none:
6393 internal_error (__FILE__, __LINE__,
e2e0b3e5 6394 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 6395 break;
c906108c 6396
3086aeae
DJ
6397 case bp_watchpoint:
6398 case bp_hardware_watchpoint:
6399 case bp_read_watchpoint:
6400 case bp_access_watchpoint:
3a5c3e22
PA
6401 {
6402 struct watchpoint *w = (struct watchpoint *) b;
6403
6404 /* Field 4, the address, is omitted (which makes the columns
6405 not line up too nicely with the headers, but the effect
6406 is relatively readable). */
6407 if (opts.addressprint)
112e8700 6408 uiout->field_skip ("addr");
3a5c3e22 6409 annotate_field (5);
112e8700 6410 uiout->field_string ("what", w->exp_string);
3a5c3e22 6411 }
3086aeae
DJ
6412 break;
6413
3086aeae
DJ
6414 case bp_breakpoint:
6415 case bp_hardware_breakpoint:
7c16b83e 6416 case bp_single_step:
3086aeae
DJ
6417 case bp_until:
6418 case bp_finish:
6419 case bp_longjmp:
6420 case bp_longjmp_resume:
e2e4d78b 6421 case bp_longjmp_call_dummy:
186c406b
TT
6422 case bp_exception:
6423 case bp_exception_resume:
3086aeae 6424 case bp_step_resume:
2c03e5be 6425 case bp_hp_step_resume:
3086aeae
DJ
6426 case bp_watchpoint_scope:
6427 case bp_call_dummy:
aa7d318d 6428 case bp_std_terminate:
3086aeae
DJ
6429 case bp_shlib_event:
6430 case bp_thread_event:
6431 case bp_overlay_event:
0fd8e87f 6432 case bp_longjmp_master:
aa7d318d 6433 case bp_std_terminate_master:
186c406b 6434 case bp_exception_master:
1042e4c0 6435 case bp_tracepoint:
7a697b8d 6436 case bp_fast_tracepoint:
0fb4aa4b 6437 case bp_static_tracepoint:
e7e0cddf 6438 case bp_dprintf:
4efc6507 6439 case bp_jit_event:
0e30163f
JK
6440 case bp_gnu_ifunc_resolver:
6441 case bp_gnu_ifunc_resolver_return:
79a45b7d 6442 if (opts.addressprint)
3086aeae
DJ
6443 {
6444 annotate_field (4);
54e52265 6445 if (header_of_multiple)
112e8700 6446 uiout->field_string ("addr", "<MULTIPLE>");
e9bbd7c5 6447 else if (b->loc == NULL || loc->shlib_disabled)
112e8700 6448 uiout->field_string ("addr", "<PENDING>");
0101ce28 6449 else
112e8700 6450 uiout->field_core_addr ("addr",
5af949e3 6451 loc->gdbarch, loc->address);
3086aeae
DJ
6452 }
6453 annotate_field (5);
0d381245 6454 if (!header_of_multiple)
170b53b2 6455 print_breakpoint_location (b, loc);
0d381245 6456 if (b->loc)
a6d9a66e 6457 *last_loc = b->loc;
3086aeae
DJ
6458 break;
6459 }
c906108c 6460
6c95b8df 6461
998580f1 6462 if (loc != NULL && !header_of_multiple)
6c95b8df
PA
6463 {
6464 struct inferior *inf;
998580f1
MK
6465 VEC(int) *inf_num = NULL;
6466 int mi_only = 1;
6c95b8df 6467
998580f1 6468 ALL_INFERIORS (inf)
6c95b8df
PA
6469 {
6470 if (inf->pspace == loc->pspace)
998580f1 6471 VEC_safe_push (int, inf_num, inf->num);
6c95b8df 6472 }
998580f1
MK
6473
6474 /* For backward compatibility, don't display inferiors in CLI unless
6475 there are several. Always display for MI. */
6476 if (allflag
6477 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6478 && (number_of_program_spaces () > 1
6479 || number_of_inferiors () > 1)
6480 /* LOC is for existing B, it cannot be in
6481 moribund_locations and thus having NULL OWNER. */
6482 && loc->owner->type != bp_catchpoint))
6483 mi_only = 0;
6484 output_thread_groups (uiout, "thread-groups", inf_num, mi_only);
6485 VEC_free (int, inf_num);
6c95b8df
PA
6486 }
6487
4a306c9a 6488 if (!part_of_multiple)
c4093a6a 6489 {
4a306c9a
JB
6490 if (b->thread != -1)
6491 {
6492 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6493 "stop only in" line a little further down. */
112e8700
SM
6494 uiout->text (" thread ");
6495 uiout->field_int ("thread", b->thread);
4a306c9a
JB
6496 }
6497 else if (b->task != 0)
6498 {
112e8700
SM
6499 uiout->text (" task ");
6500 uiout->field_int ("task", b->task);
4a306c9a 6501 }
c4093a6a 6502 }
f1310107 6503
112e8700 6504 uiout->text ("\n");
f1310107 6505
348d480f 6506 if (!part_of_multiple)
f1310107
TJB
6507 b->ops->print_one_detail (b, uiout);
6508
0d381245 6509 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6510 {
6511 annotate_field (6);
112e8700 6512 uiout->text ("\tstop only in stack frame at ");
e5dd4106 6513 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6514 the frame ID. */
112e8700 6515 uiout->field_core_addr ("frame",
5af949e3 6516 b->gdbarch, b->frame_id.stack_addr);
112e8700 6517 uiout->text ("\n");
c4093a6a
JM
6518 }
6519
28010a5d 6520 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6521 {
6522 annotate_field (7);
d77f58be 6523 if (is_tracepoint (b))
112e8700 6524 uiout->text ("\ttrace only if ");
1042e4c0 6525 else
112e8700
SM
6526 uiout->text ("\tstop only if ");
6527 uiout->field_string ("cond", b->cond_string);
b775012e
LM
6528
6529 /* Print whether the target is doing the breakpoint's condition
6530 evaluation. If GDB is doing the evaluation, don't print anything. */
6531 if (is_breakpoint (b)
6532 && breakpoint_condition_evaluation_mode ()
6533 == condition_evaluation_target)
6534 {
112e8700
SM
6535 uiout->text (" (");
6536 uiout->field_string ("evaluated-by",
b775012e 6537 bp_condition_evaluator (b));
112e8700 6538 uiout->text (" evals)");
b775012e 6539 }
112e8700 6540 uiout->text ("\n");
0101ce28
JJ
6541 }
6542
0d381245 6543 if (!part_of_multiple && b->thread != -1)
c4093a6a 6544 {
4a64f543 6545 /* FIXME should make an annotation for this. */
112e8700
SM
6546 uiout->text ("\tstop only in thread ");
6547 if (uiout->is_mi_like_p ())
6548 uiout->field_int ("thread", b->thread);
5d5658a1
PA
6549 else
6550 {
6551 struct thread_info *thr = find_thread_global_id (b->thread);
6552
112e8700 6553 uiout->field_string ("thread", print_thread_id (thr));
5d5658a1 6554 }
112e8700 6555 uiout->text ("\n");
c4093a6a
JM
6556 }
6557
556ec64d
YQ
6558 if (!part_of_multiple)
6559 {
6560 if (b->hit_count)
31f56a27
YQ
6561 {
6562 /* FIXME should make an annotation for this. */
6563 if (is_catchpoint (b))
112e8700 6564 uiout->text ("\tcatchpoint");
31f56a27 6565 else if (is_tracepoint (b))
112e8700 6566 uiout->text ("\ttracepoint");
31f56a27 6567 else
112e8700
SM
6568 uiout->text ("\tbreakpoint");
6569 uiout->text (" already hit ");
6570 uiout->field_int ("times", b->hit_count);
31f56a27 6571 if (b->hit_count == 1)
112e8700 6572 uiout->text (" time\n");
31f56a27 6573 else
112e8700 6574 uiout->text (" times\n");
31f56a27 6575 }
556ec64d
YQ
6576 else
6577 {
31f56a27 6578 /* Output the count also if it is zero, but only if this is mi. */
112e8700
SM
6579 if (uiout->is_mi_like_p ())
6580 uiout->field_int ("times", b->hit_count);
556ec64d
YQ
6581 }
6582 }
8b93c638 6583
0d381245 6584 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6585 {
6586 annotate_field (8);
112e8700
SM
6587 uiout->text ("\tignore next ");
6588 uiout->field_int ("ignore", b->ignore_count);
6589 uiout->text (" hits\n");
c4093a6a 6590 }
059fb39f 6591
816338b5
SS
6592 /* Note that an enable count of 1 corresponds to "enable once"
6593 behavior, which is reported by the combination of enablement and
6594 disposition, so we don't need to mention it here. */
6595 if (!part_of_multiple && b->enable_count > 1)
6596 {
6597 annotate_field (8);
112e8700 6598 uiout->text ("\tdisable after ");
816338b5
SS
6599 /* Tweak the wording to clarify that ignore and enable counts
6600 are distinct, and have additive effect. */
6601 if (b->ignore_count)
112e8700 6602 uiout->text ("additional ");
816338b5 6603 else
112e8700
SM
6604 uiout->text ("next ");
6605 uiout->field_int ("enable", b->enable_count);
6606 uiout->text (" hits\n");
816338b5
SS
6607 }
6608
f196051f
SS
6609 if (!part_of_multiple && is_tracepoint (b))
6610 {
6611 struct tracepoint *tp = (struct tracepoint *) b;
6612
6613 if (tp->traceframe_usage)
6614 {
112e8700
SM
6615 uiout->text ("\ttrace buffer usage ");
6616 uiout->field_int ("traceframe-usage", tp->traceframe_usage);
6617 uiout->text (" bytes\n");
f196051f
SS
6618 }
6619 }
d3ce09f5 6620
9add0f1b 6621 l = b->commands ? b->commands->commands : NULL;
059fb39f 6622 if (!part_of_multiple && l)
c4093a6a 6623 {
3b31d625
EZ
6624 struct cleanup *script_chain;
6625
c4093a6a 6626 annotate_field (9);
3b31d625 6627 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 6628 print_command_lines (uiout, l, 4);
3b31d625 6629 do_cleanups (script_chain);
c4093a6a 6630 }
d24317b4 6631
d9b3f62e 6632 if (is_tracepoint (b))
1042e4c0 6633 {
d9b3f62e
PA
6634 struct tracepoint *t = (struct tracepoint *) b;
6635
6636 if (!part_of_multiple && t->pass_count)
6637 {
6638 annotate_field (10);
112e8700
SM
6639 uiout->text ("\tpass count ");
6640 uiout->field_int ("pass", t->pass_count);
6641 uiout->text (" \n");
d9b3f62e 6642 }
f2a8bc8a
YQ
6643
6644 /* Don't display it when tracepoint or tracepoint location is
6645 pending. */
6646 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6647 {
6648 annotate_field (11);
6649
112e8700
SM
6650 if (uiout->is_mi_like_p ())
6651 uiout->field_string ("installed",
f2a8bc8a
YQ
6652 loc->inserted ? "y" : "n");
6653 else
6654 {
6655 if (loc->inserted)
112e8700 6656 uiout->text ("\t");
f2a8bc8a 6657 else
112e8700
SM
6658 uiout->text ("\tnot ");
6659 uiout->text ("installed on target\n");
f2a8bc8a
YQ
6660 }
6661 }
1042e4c0
SS
6662 }
6663
112e8700 6664 if (uiout->is_mi_like_p () && !part_of_multiple)
d24317b4 6665 {
3a5c3e22
PA
6666 if (is_watchpoint (b))
6667 {
6668 struct watchpoint *w = (struct watchpoint *) b;
6669
112e8700 6670 uiout->field_string ("original-location", w->exp_string);
3a5c3e22 6671 }
f00aae0f
KS
6672 else if (b->location != NULL
6673 && event_location_to_string (b->location) != NULL)
112e8700 6674 uiout->field_string ("original-location",
f00aae0f 6675 event_location_to_string (b->location));
d24317b4 6676 }
c4093a6a 6677}
c5aa993b 6678
0d381245
VP
6679static void
6680print_one_breakpoint (struct breakpoint *b,
4a64f543 6681 struct bp_location **last_loc,
6c95b8df 6682 int allflag)
0d381245 6683{
8d3788bd 6684 struct cleanup *bkpt_chain;
79a45e25 6685 struct ui_out *uiout = current_uiout;
8d3788bd
VP
6686
6687 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
6688
12c5a436 6689 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
8d3788bd 6690 do_cleanups (bkpt_chain);
0d381245
VP
6691
6692 /* If this breakpoint has custom print function,
6693 it's already printed. Otherwise, print individual
6694 locations, if any. */
6695 if (b->ops == NULL || b->ops->print_one == NULL)
6696 {
4a64f543
MS
6697 /* If breakpoint has a single location that is disabled, we
6698 print it as if it had several locations, since otherwise it's
6699 hard to represent "breakpoint enabled, location disabled"
6700 situation.
6701
6702 Note that while hardware watchpoints have several locations
a3be7890 6703 internally, that's not a property exposed to user. */
0d381245 6704 if (b->loc
a5606eee 6705 && !is_hardware_watchpoint (b)
8d3788bd 6706 && (b->loc->next || !b->loc->enabled))
0d381245
VP
6707 {
6708 struct bp_location *loc;
6709 int n = 1;
8d3788bd 6710
0d381245 6711 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd
VP
6712 {
6713 struct cleanup *inner2 =
6714 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
6715 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6716 do_cleanups (inner2);
6717 }
0d381245
VP
6718 }
6719 }
6720}
6721
a6d9a66e
UW
6722static int
6723breakpoint_address_bits (struct breakpoint *b)
6724{
6725 int print_address_bits = 0;
6726 struct bp_location *loc;
6727
c6d81124
PA
6728 /* Software watchpoints that aren't watching memory don't have an
6729 address to print. */
6730 if (is_no_memory_software_watchpoint (b))
6731 return 0;
6732
a6d9a66e
UW
6733 for (loc = b->loc; loc; loc = loc->next)
6734 {
c7437ca6
PA
6735 int addr_bit;
6736
c7437ca6 6737 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6738 if (addr_bit > print_address_bits)
6739 print_address_bits = addr_bit;
6740 }
6741
6742 return print_address_bits;
6743}
0d381245 6744
c4093a6a
JM
6745struct captured_breakpoint_query_args
6746 {
6747 int bnum;
6748 };
c5aa993b 6749
c4093a6a 6750static int
2b65245e 6751do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a 6752{
9a3c8263
SM
6753 struct captured_breakpoint_query_args *args
6754 = (struct captured_breakpoint_query_args *) data;
52f0bd74 6755 struct breakpoint *b;
a6d9a66e 6756 struct bp_location *dummy_loc = NULL;
cc59ec59 6757
c4093a6a
JM
6758 ALL_BREAKPOINTS (b)
6759 {
6760 if (args->bnum == b->number)
c5aa993b 6761 {
12c5a436 6762 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6763 return GDB_RC_OK;
c5aa993b 6764 }
c4093a6a
JM
6765 }
6766 return GDB_RC_NONE;
6767}
c5aa993b 6768
c4093a6a 6769enum gdb_rc
4a64f543
MS
6770gdb_breakpoint_query (struct ui_out *uiout, int bnum,
6771 char **error_message)
c4093a6a
JM
6772{
6773 struct captured_breakpoint_query_args args;
cc59ec59 6774
c4093a6a
JM
6775 args.bnum = bnum;
6776 /* For the moment we don't trust print_one_breakpoint() to not throw
4a64f543 6777 an error. */
b0b13bb4
DJ
6778 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
6779 error_message, RETURN_MASK_ALL) < 0)
6780 return GDB_RC_FAIL;
6781 else
6782 return GDB_RC_OK;
c4093a6a 6783}
c5aa993b 6784
09d682a4
TT
6785/* Return true if this breakpoint was set by the user, false if it is
6786 internal or momentary. */
6787
6788int
6789user_breakpoint_p (struct breakpoint *b)
6790{
46c6471b 6791 return b->number > 0;
09d682a4
TT
6792}
6793
93daf339
TT
6794/* See breakpoint.h. */
6795
6796int
6797pending_breakpoint_p (struct breakpoint *b)
6798{
6799 return b->loc == NULL;
6800}
6801
7f3b0473 6802/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
6803 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6804 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6805 FILTER is non-NULL, call it on each breakpoint and only include the
6806 ones for which it returns non-zero. Return the total number of
6807 breakpoints listed. */
c906108c 6808
d77f58be 6809static int
e5a67952 6810breakpoint_1 (char *args, int allflag,
4a64f543 6811 int (*filter) (const struct breakpoint *))
c4093a6a 6812{
52f0bd74 6813 struct breakpoint *b;
a6d9a66e 6814 struct bp_location *last_loc = NULL;
7f3b0473 6815 int nr_printable_breakpoints;
3b31d625 6816 struct cleanup *bkpttbl_chain;
79a45b7d 6817 struct value_print_options opts;
a6d9a66e 6818 int print_address_bits = 0;
269b11a2 6819 int print_type_col_width = 14;
79a45e25 6820 struct ui_out *uiout = current_uiout;
269b11a2 6821
79a45b7d
TT
6822 get_user_print_options (&opts);
6823
4a64f543
MS
6824 /* Compute the number of rows in the table, as well as the size
6825 required for address fields. */
7f3b0473
AC
6826 nr_printable_breakpoints = 0;
6827 ALL_BREAKPOINTS (b)
e5a67952
MS
6828 {
6829 /* If we have a filter, only list the breakpoints it accepts. */
6830 if (filter && !filter (b))
6831 continue;
6832
6833 /* If we have an "args" string, it is a list of breakpoints to
6834 accept. Skip the others. */
6835 if (args != NULL && *args != '\0')
6836 {
6837 if (allflag && parse_and_eval_long (args) != b->number)
6838 continue;
6839 if (!allflag && !number_is_in_list (args, b->number))
6840 continue;
6841 }
269b11a2 6842
e5a67952
MS
6843 if (allflag || user_breakpoint_p (b))
6844 {
6845 int addr_bit, type_len;
a6d9a66e 6846
e5a67952
MS
6847 addr_bit = breakpoint_address_bits (b);
6848 if (addr_bit > print_address_bits)
6849 print_address_bits = addr_bit;
269b11a2 6850
e5a67952
MS
6851 type_len = strlen (bptype_string (b->type));
6852 if (type_len > print_type_col_width)
6853 print_type_col_width = type_len;
6854
6855 nr_printable_breakpoints++;
6856 }
6857 }
7f3b0473 6858
79a45b7d 6859 if (opts.addressprint)
3b31d625 6860 bkpttbl_chain
3e43a32a
MS
6861 = make_cleanup_ui_out_table_begin_end (uiout, 6,
6862 nr_printable_breakpoints,
3b31d625 6863 "BreakpointTable");
8b93c638 6864 else
3b31d625 6865 bkpttbl_chain
3e43a32a
MS
6866 = make_cleanup_ui_out_table_begin_end (uiout, 5,
6867 nr_printable_breakpoints,
3b31d625 6868 "BreakpointTable");
8b93c638 6869
7f3b0473 6870 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
6871 annotate_breakpoints_headers ();
6872 if (nr_printable_breakpoints > 0)
6873 annotate_field (0);
112e8700 6874 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
6875 if (nr_printable_breakpoints > 0)
6876 annotate_field (1);
112e8700 6877 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
d7faa9e7
AC
6878 if (nr_printable_breakpoints > 0)
6879 annotate_field (2);
112e8700 6880 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
d7faa9e7
AC
6881 if (nr_printable_breakpoints > 0)
6882 annotate_field (3);
112e8700 6883 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 6884 if (opts.addressprint)
e5a67952
MS
6885 {
6886 if (nr_printable_breakpoints > 0)
6887 annotate_field (4);
6888 if (print_address_bits <= 32)
112e8700 6889 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
e5a67952 6890 else
112e8700 6891 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
e5a67952 6892 }
d7faa9e7
AC
6893 if (nr_printable_breakpoints > 0)
6894 annotate_field (5);
112e8700
SM
6895 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6896 uiout->table_body ();
d7faa9e7
AC
6897 if (nr_printable_breakpoints > 0)
6898 annotate_breakpoints_table ();
7f3b0473 6899
c4093a6a 6900 ALL_BREAKPOINTS (b)
e5a67952
MS
6901 {
6902 QUIT;
6903 /* If we have a filter, only list the breakpoints it accepts. */
6904 if (filter && !filter (b))
6905 continue;
6906
6907 /* If we have an "args" string, it is a list of breakpoints to
6908 accept. Skip the others. */
6909
6910 if (args != NULL && *args != '\0')
6911 {
6912 if (allflag) /* maintenance info breakpoint */
6913 {
6914 if (parse_and_eval_long (args) != b->number)
6915 continue;
6916 }
6917 else /* all others */
6918 {
6919 if (!number_is_in_list (args, b->number))
6920 continue;
6921 }
6922 }
6923 /* We only print out user settable breakpoints unless the
6924 allflag is set. */
6925 if (allflag || user_breakpoint_p (b))
12c5a436 6926 print_one_breakpoint (b, &last_loc, allflag);
e5a67952
MS
6927 }
6928
3b31d625 6929 do_cleanups (bkpttbl_chain);
698384cd 6930
7f3b0473 6931 if (nr_printable_breakpoints == 0)
c906108c 6932 {
4a64f543
MS
6933 /* If there's a filter, let the caller decide how to report
6934 empty list. */
d77f58be
SS
6935 if (!filter)
6936 {
e5a67952 6937 if (args == NULL || *args == '\0')
112e8700 6938 uiout->message ("No breakpoints or watchpoints.\n");
d77f58be 6939 else
112e8700 6940 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
e5a67952 6941 args);
d77f58be 6942 }
c906108c
SS
6943 }
6944 else
c4093a6a 6945 {
a6d9a66e
UW
6946 if (last_loc && !server_command)
6947 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6948 }
c906108c 6949
4a64f543 6950 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6951 there have been breakpoints? */
c906108c 6952 annotate_breakpoints_table_end ();
d77f58be
SS
6953
6954 return nr_printable_breakpoints;
c906108c
SS
6955}
6956
ad443146
SS
6957/* Display the value of default-collect in a way that is generally
6958 compatible with the breakpoint list. */
6959
6960static void
6961default_collect_info (void)
6962{
79a45e25
PA
6963 struct ui_out *uiout = current_uiout;
6964
ad443146
SS
6965 /* If it has no value (which is frequently the case), say nothing; a
6966 message like "No default-collect." gets in user's face when it's
6967 not wanted. */
6968 if (!*default_collect)
6969 return;
6970
6971 /* The following phrase lines up nicely with per-tracepoint collect
6972 actions. */
112e8700
SM
6973 uiout->text ("default collect ");
6974 uiout->field_string ("default-collect", default_collect);
6975 uiout->text (" \n");
ad443146
SS
6976}
6977
c906108c 6978static void
e5a67952 6979breakpoints_info (char *args, int from_tty)
c906108c 6980{
e5a67952 6981 breakpoint_1 (args, 0, NULL);
ad443146
SS
6982
6983 default_collect_info ();
d77f58be
SS
6984}
6985
6986static void
e5a67952 6987watchpoints_info (char *args, int from_tty)
d77f58be 6988{
e5a67952 6989 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
79a45e25 6990 struct ui_out *uiout = current_uiout;
d77f58be
SS
6991
6992 if (num_printed == 0)
6993 {
e5a67952 6994 if (args == NULL || *args == '\0')
112e8700 6995 uiout->message ("No watchpoints.\n");
d77f58be 6996 else
112e8700 6997 uiout->message ("No watchpoint matching '%s'.\n", args);
d77f58be 6998 }
c906108c
SS
6999}
7000
7a292a7a 7001static void
e5a67952 7002maintenance_info_breakpoints (char *args, int from_tty)
c906108c 7003{
e5a67952 7004 breakpoint_1 (args, 1, NULL);
ad443146
SS
7005
7006 default_collect_info ();
c906108c
SS
7007}
7008
0d381245 7009static int
714835d5 7010breakpoint_has_pc (struct breakpoint *b,
6c95b8df 7011 struct program_space *pspace,
714835d5 7012 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
7013{
7014 struct bp_location *bl = b->loc;
cc59ec59 7015
0d381245
VP
7016 for (; bl; bl = bl->next)
7017 {
6c95b8df
PA
7018 if (bl->pspace == pspace
7019 && bl->address == pc
0d381245
VP
7020 && (!overlay_debugging || bl->section == section))
7021 return 1;
7022 }
7023 return 0;
7024}
7025
672f9b60 7026/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
7027 concerns with logical breakpoints, so we match program spaces, not
7028 address spaces. */
c906108c
SS
7029
7030static void
6c95b8df
PA
7031describe_other_breakpoints (struct gdbarch *gdbarch,
7032 struct program_space *pspace, CORE_ADDR pc,
5af949e3 7033 struct obj_section *section, int thread)
c906108c 7034{
52f0bd74
AC
7035 int others = 0;
7036 struct breakpoint *b;
c906108c
SS
7037
7038 ALL_BREAKPOINTS (b)
672f9b60
KP
7039 others += (user_breakpoint_p (b)
7040 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
7041 if (others > 0)
7042 {
a3f17187
AC
7043 if (others == 1)
7044 printf_filtered (_("Note: breakpoint "));
7045 else /* if (others == ???) */
7046 printf_filtered (_("Note: breakpoints "));
c906108c 7047 ALL_BREAKPOINTS (b)
672f9b60 7048 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
7049 {
7050 others--;
7051 printf_filtered ("%d", b->number);
7052 if (b->thread == -1 && thread != -1)
7053 printf_filtered (" (all threads)");
7054 else if (b->thread != -1)
7055 printf_filtered (" (thread %d)", b->thread);
7056 printf_filtered ("%s%s ",
059fb39f 7057 ((b->enable_state == bp_disabled
f8eba3c6 7058 || b->enable_state == bp_call_disabled)
0d381245 7059 ? " (disabled)"
0d381245
VP
7060 : ""),
7061 (others > 1) ? ","
7062 : ((others == 1) ? " and" : ""));
7063 }
a3f17187 7064 printf_filtered (_("also set at pc "));
5af949e3 7065 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
7066 printf_filtered (".\n");
7067 }
7068}
7069\f
c906108c 7070
e4f237da 7071/* Return true iff it is meaningful to use the address member of
244558af
LM
7072 BPT locations. For some breakpoint types, the locations' address members
7073 are irrelevant and it makes no sense to attempt to compare them to other
7074 addresses (or use them for any other purpose either).
e4f237da 7075
4a64f543 7076 More specifically, each of the following breakpoint types will
244558af 7077 always have a zero valued location address and we don't want to mark
4a64f543 7078 breakpoints of any of these types to be a duplicate of an actual
244558af 7079 breakpoint location at address zero:
e4f237da
KB
7080
7081 bp_watchpoint
2d134ed3
PA
7082 bp_catchpoint
7083
7084*/
e4f237da
KB
7085
7086static int
7087breakpoint_address_is_meaningful (struct breakpoint *bpt)
7088{
7089 enum bptype type = bpt->type;
7090
2d134ed3
PA
7091 return (type != bp_watchpoint && type != bp_catchpoint);
7092}
7093
7094/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
7095 true if LOC1 and LOC2 represent the same watchpoint location. */
7096
7097static int
4a64f543
MS
7098watchpoint_locations_match (struct bp_location *loc1,
7099 struct bp_location *loc2)
2d134ed3 7100{
3a5c3e22
PA
7101 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
7102 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
7103
7104 /* Both of them must exist. */
7105 gdb_assert (w1 != NULL);
7106 gdb_assert (w2 != NULL);
2bdf28a0 7107
4a64f543
MS
7108 /* If the target can evaluate the condition expression in hardware,
7109 then we we need to insert both watchpoints even if they are at
7110 the same place. Otherwise the watchpoint will only trigger when
7111 the condition of whichever watchpoint was inserted evaluates to
7112 true, not giving a chance for GDB to check the condition of the
7113 other watchpoint. */
3a5c3e22 7114 if ((w1->cond_exp
4a64f543
MS
7115 && target_can_accel_watchpoint_condition (loc1->address,
7116 loc1->length,
0cf6dd15 7117 loc1->watchpoint_type,
4d01a485 7118 w1->cond_exp.get ()))
3a5c3e22 7119 || (w2->cond_exp
4a64f543
MS
7120 && target_can_accel_watchpoint_condition (loc2->address,
7121 loc2->length,
0cf6dd15 7122 loc2->watchpoint_type,
4d01a485 7123 w2->cond_exp.get ())))
0cf6dd15
TJB
7124 return 0;
7125
85d721b8
PA
7126 /* Note that this checks the owner's type, not the location's. In
7127 case the target does not support read watchpoints, but does
7128 support access watchpoints, we'll have bp_read_watchpoint
7129 watchpoints with hw_access locations. Those should be considered
7130 duplicates of hw_read locations. The hw_read locations will
7131 become hw_access locations later. */
2d134ed3
PA
7132 return (loc1->owner->type == loc2->owner->type
7133 && loc1->pspace->aspace == loc2->pspace->aspace
7134 && loc1->address == loc2->address
7135 && loc1->length == loc2->length);
e4f237da
KB
7136}
7137
31e77af2 7138/* See breakpoint.h. */
6c95b8df 7139
31e77af2 7140int
6c95b8df
PA
7141breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
7142 struct address_space *aspace2, CORE_ADDR addr2)
7143{
f5656ead 7144 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
7145 || aspace1 == aspace2)
7146 && addr1 == addr2);
7147}
7148
f1310107
TJB
7149/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
7150 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
7151 matches ASPACE2. On targets that have global breakpoints, the address
7152 space doesn't really matter. */
7153
7154static int
7155breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
7156 int len1, struct address_space *aspace2,
7157 CORE_ADDR addr2)
7158{
f5656ead 7159 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
7160 || aspace1 == aspace2)
7161 && addr2 >= addr1 && addr2 < addr1 + len1);
7162}
7163
7164/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
7165 a ranged breakpoint. In most targets, a match happens only if ASPACE
7166 matches the breakpoint's address space. On targets that have global
7167 breakpoints, the address space doesn't really matter. */
7168
7169static int
7170breakpoint_location_address_match (struct bp_location *bl,
7171 struct address_space *aspace,
7172 CORE_ADDR addr)
7173{
7174 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
7175 aspace, addr)
7176 || (bl->length
7177 && breakpoint_address_match_range (bl->pspace->aspace,
7178 bl->address, bl->length,
7179 aspace, addr)));
7180}
7181
d35ae833
PA
7182/* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
7183 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
7184 match happens only if ASPACE matches the breakpoint's address
7185 space. On targets that have global breakpoints, the address space
7186 doesn't really matter. */
7187
7188static int
7189breakpoint_location_address_range_overlap (struct bp_location *bl,
7190 struct address_space *aspace,
7191 CORE_ADDR addr, int len)
7192{
7193 if (gdbarch_has_global_breakpoints (target_gdbarch ())
7194 || bl->pspace->aspace == aspace)
7195 {
7196 int bl_len = bl->length != 0 ? bl->length : 1;
7197
7198 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
7199 return 1;
7200 }
7201 return 0;
7202}
7203
1e4d1764
YQ
7204/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
7205 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
7206 true, otherwise returns false. */
7207
7208static int
7209tracepoint_locations_match (struct bp_location *loc1,
7210 struct bp_location *loc2)
7211{
7212 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
7213 /* Since tracepoint locations are never duplicated with others', tracepoint
7214 locations at the same address of different tracepoints are regarded as
7215 different locations. */
7216 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
7217 else
7218 return 0;
7219}
7220
2d134ed3
PA
7221/* Assuming LOC1 and LOC2's types' have meaningful target addresses
7222 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
7223 represent the same location. */
7224
7225static int
4a64f543
MS
7226breakpoint_locations_match (struct bp_location *loc1,
7227 struct bp_location *loc2)
2d134ed3 7228{
2bdf28a0
JK
7229 int hw_point1, hw_point2;
7230
7231 /* Both of them must not be in moribund_locations. */
7232 gdb_assert (loc1->owner != NULL);
7233 gdb_assert (loc2->owner != NULL);
7234
7235 hw_point1 = is_hardware_watchpoint (loc1->owner);
7236 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
7237
7238 if (hw_point1 != hw_point2)
7239 return 0;
7240 else if (hw_point1)
7241 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
7242 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
7243 return tracepoint_locations_match (loc1, loc2);
2d134ed3 7244 else
f1310107
TJB
7245 /* We compare bp_location.length in order to cover ranged breakpoints. */
7246 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
7247 loc2->pspace->aspace, loc2->address)
7248 && loc1->length == loc2->length);
2d134ed3
PA
7249}
7250
76897487
KB
7251static void
7252breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
7253 int bnum, int have_bnum)
7254{
f63fbe86
MS
7255 /* The longest string possibly returned by hex_string_custom
7256 is 50 chars. These must be at least that big for safety. */
7257 char astr1[64];
7258 char astr2[64];
76897487 7259
bb599908
PH
7260 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
7261 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 7262 if (have_bnum)
8a3fe4f8 7263 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
7264 bnum, astr1, astr2);
7265 else
8a3fe4f8 7266 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
7267}
7268
4a64f543
MS
7269/* Adjust a breakpoint's address to account for architectural
7270 constraints on breakpoint placement. Return the adjusted address.
7271 Note: Very few targets require this kind of adjustment. For most
7272 targets, this function is simply the identity function. */
76897487
KB
7273
7274static CORE_ADDR
a6d9a66e
UW
7275adjust_breakpoint_address (struct gdbarch *gdbarch,
7276 CORE_ADDR bpaddr, enum bptype bptype)
76897487 7277{
a6d9a66e 7278 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
7279 {
7280 /* Very few targets need any kind of breakpoint adjustment. */
7281 return bpaddr;
7282 }
88f7da05
KB
7283 else if (bptype == bp_watchpoint
7284 || bptype == bp_hardware_watchpoint
7285 || bptype == bp_read_watchpoint
7286 || bptype == bp_access_watchpoint
fe798b75 7287 || bptype == bp_catchpoint)
88f7da05
KB
7288 {
7289 /* Watchpoints and the various bp_catch_* eventpoints should not
7290 have their addresses modified. */
7291 return bpaddr;
7292 }
7c16b83e
PA
7293 else if (bptype == bp_single_step)
7294 {
7295 /* Single-step breakpoints should not have their addresses
7296 modified. If there's any architectural constrain that
7297 applies to this address, then it should have already been
7298 taken into account when the breakpoint was created in the
7299 first place. If we didn't do this, stepping through e.g.,
7300 Thumb-2 IT blocks would break. */
7301 return bpaddr;
7302 }
76897487
KB
7303 else
7304 {
7305 CORE_ADDR adjusted_bpaddr;
7306
7307 /* Some targets have architectural constraints on the placement
7308 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 7309 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
7310
7311 /* An adjusted breakpoint address can significantly alter
7312 a user's expectations. Print a warning if an adjustment
7313 is required. */
7314 if (adjusted_bpaddr != bpaddr)
7315 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
7316
7317 return adjusted_bpaddr;
7318 }
7319}
7320
28010a5d
PA
7321void
7322init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
7323 struct breakpoint *owner)
7cc221ef 7324{
7cc221ef
DJ
7325 memset (loc, 0, sizeof (*loc));
7326
348d480f
PA
7327 gdb_assert (ops != NULL);
7328
28010a5d
PA
7329 loc->ops = ops;
7330 loc->owner = owner;
b775012e 7331 loc->cond_bytecode = NULL;
0d381245
VP
7332 loc->shlib_disabled = 0;
7333 loc->enabled = 1;
e049a4b5 7334
28010a5d 7335 switch (owner->type)
e049a4b5
DJ
7336 {
7337 case bp_breakpoint:
7c16b83e 7338 case bp_single_step:
e049a4b5
DJ
7339 case bp_until:
7340 case bp_finish:
7341 case bp_longjmp:
7342 case bp_longjmp_resume:
e2e4d78b 7343 case bp_longjmp_call_dummy:
186c406b
TT
7344 case bp_exception:
7345 case bp_exception_resume:
e049a4b5 7346 case bp_step_resume:
2c03e5be 7347 case bp_hp_step_resume:
e049a4b5
DJ
7348 case bp_watchpoint_scope:
7349 case bp_call_dummy:
aa7d318d 7350 case bp_std_terminate:
e049a4b5
DJ
7351 case bp_shlib_event:
7352 case bp_thread_event:
7353 case bp_overlay_event:
4efc6507 7354 case bp_jit_event:
0fd8e87f 7355 case bp_longjmp_master:
aa7d318d 7356 case bp_std_terminate_master:
186c406b 7357 case bp_exception_master:
0e30163f
JK
7358 case bp_gnu_ifunc_resolver:
7359 case bp_gnu_ifunc_resolver_return:
e7e0cddf 7360 case bp_dprintf:
e049a4b5 7361 loc->loc_type = bp_loc_software_breakpoint;
b775012e 7362 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7363 break;
7364 case bp_hardware_breakpoint:
7365 loc->loc_type = bp_loc_hardware_breakpoint;
b775012e 7366 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7367 break;
7368 case bp_hardware_watchpoint:
7369 case bp_read_watchpoint:
7370 case bp_access_watchpoint:
7371 loc->loc_type = bp_loc_hardware_watchpoint;
7372 break;
7373 case bp_watchpoint:
ce78b96d 7374 case bp_catchpoint:
15c3d785
PA
7375 case bp_tracepoint:
7376 case bp_fast_tracepoint:
0fb4aa4b 7377 case bp_static_tracepoint:
e049a4b5
DJ
7378 loc->loc_type = bp_loc_other;
7379 break;
7380 default:
e2e0b3e5 7381 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
7382 }
7383
f431efe5 7384 loc->refc = 1;
28010a5d
PA
7385}
7386
7387/* Allocate a struct bp_location. */
7388
7389static struct bp_location *
7390allocate_bp_location (struct breakpoint *bpt)
7391{
348d480f
PA
7392 return bpt->ops->allocate_location (bpt);
7393}
7cc221ef 7394
f431efe5
PA
7395static void
7396free_bp_location (struct bp_location *loc)
fe3f5fa8 7397{
348d480f 7398 loc->ops->dtor (loc);
4d01a485 7399 delete loc;
fe3f5fa8
VP
7400}
7401
f431efe5
PA
7402/* Increment reference count. */
7403
7404static void
7405incref_bp_location (struct bp_location *bl)
7406{
7407 ++bl->refc;
7408}
7409
7410/* Decrement reference count. If the reference count reaches 0,
7411 destroy the bp_location. Sets *BLP to NULL. */
7412
7413static void
7414decref_bp_location (struct bp_location **blp)
7415{
0807b50c
PA
7416 gdb_assert ((*blp)->refc > 0);
7417
f431efe5
PA
7418 if (--(*blp)->refc == 0)
7419 free_bp_location (*blp);
7420 *blp = NULL;
7421}
7422
346774a9 7423/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 7424
346774a9
PA
7425static void
7426add_to_breakpoint_chain (struct breakpoint *b)
c906108c 7427{
346774a9 7428 struct breakpoint *b1;
c906108c 7429
346774a9
PA
7430 /* Add this breakpoint to the end of the chain so that a list of
7431 breakpoints will come out in order of increasing numbers. */
7432
7433 b1 = breakpoint_chain;
7434 if (b1 == 0)
7435 breakpoint_chain = b;
7436 else
7437 {
7438 while (b1->next)
7439 b1 = b1->next;
7440 b1->next = b;
7441 }
7442}
7443
7444/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7445
7446static void
7447init_raw_breakpoint_without_location (struct breakpoint *b,
7448 struct gdbarch *gdbarch,
28010a5d 7449 enum bptype bptype,
c0a91b2b 7450 const struct breakpoint_ops *ops)
346774a9 7451{
c906108c 7452 memset (b, 0, sizeof (*b));
2219d63c 7453
348d480f
PA
7454 gdb_assert (ops != NULL);
7455
28010a5d 7456 b->ops = ops;
4d28f7a8 7457 b->type = bptype;
a6d9a66e 7458 b->gdbarch = gdbarch;
c906108c
SS
7459 b->language = current_language->la_language;
7460 b->input_radix = input_radix;
7461 b->thread = -1;
b5de0fa7 7462 b->enable_state = bp_enabled;
c906108c
SS
7463 b->next = 0;
7464 b->silent = 0;
7465 b->ignore_count = 0;
7466 b->commands = NULL;
818dd999 7467 b->frame_id = null_frame_id;
0d381245 7468 b->condition_not_parsed = 0;
84f4c1fe 7469 b->py_bp_object = NULL;
d0fb5eae 7470 b->related_breakpoint = b;
f00aae0f 7471 b->location = NULL;
346774a9
PA
7472}
7473
7474/* Helper to set_raw_breakpoint below. Creates a breakpoint
7475 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7476
7477static struct breakpoint *
7478set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7479 enum bptype bptype,
c0a91b2b 7480 const struct breakpoint_ops *ops)
346774a9 7481{
4d01a485 7482 struct breakpoint *b = new breakpoint ();
346774a9 7483
348d480f 7484 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
c56053d2 7485 add_to_breakpoint_chain (b);
0d381245
VP
7486 return b;
7487}
7488
0e30163f
JK
7489/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7490 resolutions should be made as the user specified the location explicitly
7491 enough. */
7492
0d381245 7493static void
0e30163f 7494set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 7495{
2bdf28a0
JK
7496 gdb_assert (loc->owner != NULL);
7497
0d381245 7498 if (loc->owner->type == bp_breakpoint
1042e4c0 7499 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7500 || is_tracepoint (loc->owner))
0d381245 7501 {
0e30163f 7502 int is_gnu_ifunc;
2c02bd72 7503 const char *function_name;
6a3a010b 7504 CORE_ADDR func_addr;
0e30163f 7505
2c02bd72 7506 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
6a3a010b 7507 &func_addr, NULL, &is_gnu_ifunc);
0e30163f
JK
7508
7509 if (is_gnu_ifunc && !explicit_loc)
7510 {
7511 struct breakpoint *b = loc->owner;
7512
7513 gdb_assert (loc->pspace == current_program_space);
2c02bd72 7514 if (gnu_ifunc_resolve_name (function_name,
0e30163f
JK
7515 &loc->requested_address))
7516 {
7517 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7518 loc->address = adjust_breakpoint_address (loc->gdbarch,
7519 loc->requested_address,
7520 b->type);
7521 }
7522 else if (b->type == bp_breakpoint && b->loc == loc
7523 && loc->next == NULL && b->related_breakpoint == b)
7524 {
7525 /* Create only the whole new breakpoint of this type but do not
7526 mess more complicated breakpoints with multiple locations. */
7527 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7528 /* Remember the resolver's address for use by the return
7529 breakpoint. */
7530 loc->related_address = func_addr;
0e30163f
JK
7531 }
7532 }
7533
2c02bd72
DE
7534 if (function_name)
7535 loc->function_name = xstrdup (function_name);
0d381245
VP
7536 }
7537}
7538
a6d9a66e 7539/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7540struct gdbarch *
a6d9a66e
UW
7541get_sal_arch (struct symtab_and_line sal)
7542{
7543 if (sal.section)
7544 return get_objfile_arch (sal.section->objfile);
7545 if (sal.symtab)
eb822aa6 7546 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
a6d9a66e
UW
7547
7548 return NULL;
7549}
7550
346774a9
PA
7551/* Low level routine for partially initializing a breakpoint of type
7552 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7553 file name, and line number are provided by SAL.
0d381245
VP
7554
7555 It is expected that the caller will complete the initialization of
7556 the newly created breakpoint struct as well as output any status
c56053d2 7557 information regarding the creation of a new breakpoint. */
0d381245 7558
346774a9
PA
7559static void
7560init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7561 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7562 const struct breakpoint_ops *ops)
0d381245 7563{
28010a5d 7564 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7565
3742cc8b 7566 add_location_to_breakpoint (b, &sal);
0d381245 7567
6c95b8df
PA
7568 if (bptype != bp_catchpoint)
7569 gdb_assert (sal.pspace != NULL);
7570
f8eba3c6
TT
7571 /* Store the program space that was used to set the breakpoint,
7572 except for ordinary breakpoints, which are independent of the
7573 program space. */
7574 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7575 b->pspace = sal.pspace;
346774a9 7576}
c906108c 7577
346774a9
PA
7578/* set_raw_breakpoint is a low level routine for allocating and
7579 partially initializing a breakpoint of type BPTYPE. The newly
7580 created breakpoint's address, section, source file name, and line
7581 number are provided by SAL. The newly created and partially
7582 initialized breakpoint is added to the breakpoint chain and
7583 is also returned as the value of this function.
7584
7585 It is expected that the caller will complete the initialization of
7586 the newly created breakpoint struct as well as output any status
7587 information regarding the creation of a new breakpoint. In
7588 particular, set_raw_breakpoint does NOT set the breakpoint
7589 number! Care should be taken to not allow an error to occur
7590 prior to completing the initialization of the breakpoint. If this
7591 should happen, a bogus breakpoint will be left on the chain. */
7592
7593struct breakpoint *
7594set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7595 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7596 const struct breakpoint_ops *ops)
346774a9 7597{
4d01a485 7598 struct breakpoint *b = new breakpoint ();
346774a9 7599
348d480f 7600 init_raw_breakpoint (b, gdbarch, sal, bptype, ops);
c56053d2 7601 add_to_breakpoint_chain (b);
c906108c
SS
7602 return b;
7603}
7604
53a5351d 7605/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7606 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7607 initiated the operation. */
c906108c
SS
7608
7609void
186c406b 7610set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7611{
35df4500 7612 struct breakpoint *b, *b_tmp;
5d5658a1 7613 int thread = tp->global_num;
0fd8e87f
UW
7614
7615 /* To avoid having to rescan all objfile symbols at every step,
7616 we maintain a list of continually-inserted but always disabled
7617 longjmp "master" breakpoints. Here, we simply create momentary
7618 clones of those and enable them for the requested thread. */
35df4500 7619 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7620 if (b->pspace == current_program_space
186c406b
TT
7621 && (b->type == bp_longjmp_master
7622 || b->type == bp_exception_master))
0fd8e87f 7623 {
06edf0c0
PA
7624 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7625 struct breakpoint *clone;
cc59ec59 7626
e2e4d78b
JK
7627 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7628 after their removal. */
06edf0c0 7629 clone = momentary_breakpoint_from_master (b, type,
a1aa2221 7630 &longjmp_breakpoint_ops, 1);
0fd8e87f
UW
7631 clone->thread = thread;
7632 }
186c406b
TT
7633
7634 tp->initiating_frame = frame;
c906108c
SS
7635}
7636
611c83ae 7637/* Delete all longjmp breakpoints from THREAD. */
c906108c 7638void
611c83ae 7639delete_longjmp_breakpoint (int thread)
c906108c 7640{
35df4500 7641 struct breakpoint *b, *b_tmp;
c906108c 7642
35df4500 7643 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7644 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7645 {
7646 if (b->thread == thread)
7647 delete_breakpoint (b);
7648 }
c906108c
SS
7649}
7650
f59f708a
PA
7651void
7652delete_longjmp_breakpoint_at_next_stop (int thread)
7653{
7654 struct breakpoint *b, *b_tmp;
7655
7656 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7657 if (b->type == bp_longjmp || b->type == bp_exception)
7658 {
7659 if (b->thread == thread)
7660 b->disposition = disp_del_at_next_stop;
7661 }
7662}
7663
e2e4d78b
JK
7664/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7665 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7666 pointer to any of them. Return NULL if this system cannot place longjmp
7667 breakpoints. */
7668
7669struct breakpoint *
7670set_longjmp_breakpoint_for_call_dummy (void)
7671{
7672 struct breakpoint *b, *retval = NULL;
7673
7674 ALL_BREAKPOINTS (b)
7675 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7676 {
7677 struct breakpoint *new_b;
7678
7679 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
a1aa2221
LM
7680 &momentary_breakpoint_ops,
7681 1);
5d5658a1 7682 new_b->thread = ptid_to_global_thread_id (inferior_ptid);
e2e4d78b
JK
7683
7684 /* Link NEW_B into the chain of RETVAL breakpoints. */
7685
7686 gdb_assert (new_b->related_breakpoint == new_b);
7687 if (retval == NULL)
7688 retval = new_b;
7689 new_b->related_breakpoint = retval;
7690 while (retval->related_breakpoint != new_b->related_breakpoint)
7691 retval = retval->related_breakpoint;
7692 retval->related_breakpoint = new_b;
7693 }
7694
7695 return retval;
7696}
7697
7698/* Verify all existing dummy frames and their associated breakpoints for
b67a2c6f 7699 TP. Remove those which can no longer be found in the current frame
e2e4d78b
JK
7700 stack.
7701
7702 You should call this function only at places where it is safe to currently
7703 unwind the whole stack. Failed stack unwind would discard live dummy
7704 frames. */
7705
7706void
b67a2c6f 7707check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
e2e4d78b
JK
7708{
7709 struct breakpoint *b, *b_tmp;
7710
7711 ALL_BREAKPOINTS_SAFE (b, b_tmp)
5d5658a1 7712 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
e2e4d78b
JK
7713 {
7714 struct breakpoint *dummy_b = b->related_breakpoint;
7715
7716 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7717 dummy_b = dummy_b->related_breakpoint;
7718 if (dummy_b->type != bp_call_dummy
7719 || frame_find_by_id (dummy_b->frame_id) != NULL)
7720 continue;
7721
b67a2c6f 7722 dummy_frame_discard (dummy_b->frame_id, tp->ptid);
e2e4d78b
JK
7723
7724 while (b->related_breakpoint != b)
7725 {
7726 if (b_tmp == b->related_breakpoint)
7727 b_tmp = b->related_breakpoint->next;
7728 delete_breakpoint (b->related_breakpoint);
7729 }
7730 delete_breakpoint (b);
7731 }
7732}
7733
1900040c
MS
7734void
7735enable_overlay_breakpoints (void)
7736{
52f0bd74 7737 struct breakpoint *b;
1900040c
MS
7738
7739 ALL_BREAKPOINTS (b)
7740 if (b->type == bp_overlay_event)
7741 {
7742 b->enable_state = bp_enabled;
44702360 7743 update_global_location_list (UGLL_MAY_INSERT);
c02f5703 7744 overlay_events_enabled = 1;
1900040c
MS
7745 }
7746}
7747
7748void
7749disable_overlay_breakpoints (void)
7750{
52f0bd74 7751 struct breakpoint *b;
1900040c
MS
7752
7753 ALL_BREAKPOINTS (b)
7754 if (b->type == bp_overlay_event)
7755 {
7756 b->enable_state = bp_disabled;
44702360 7757 update_global_location_list (UGLL_DONT_INSERT);
c02f5703 7758 overlay_events_enabled = 0;
1900040c
MS
7759 }
7760}
7761
aa7d318d
TT
7762/* Set an active std::terminate breakpoint for each std::terminate
7763 master breakpoint. */
7764void
7765set_std_terminate_breakpoint (void)
7766{
35df4500 7767 struct breakpoint *b, *b_tmp;
aa7d318d 7768
35df4500 7769 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7770 if (b->pspace == current_program_space
7771 && b->type == bp_std_terminate_master)
7772 {
06edf0c0 7773 momentary_breakpoint_from_master (b, bp_std_terminate,
a1aa2221 7774 &momentary_breakpoint_ops, 1);
aa7d318d
TT
7775 }
7776}
7777
7778/* Delete all the std::terminate breakpoints. */
7779void
7780delete_std_terminate_breakpoint (void)
7781{
35df4500 7782 struct breakpoint *b, *b_tmp;
aa7d318d 7783
35df4500 7784 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7785 if (b->type == bp_std_terminate)
7786 delete_breakpoint (b);
7787}
7788
c4093a6a 7789struct breakpoint *
a6d9a66e 7790create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7791{
7792 struct breakpoint *b;
c4093a6a 7793
06edf0c0
PA
7794 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7795 &internal_breakpoint_ops);
7796
b5de0fa7 7797 b->enable_state = bp_enabled;
f00aae0f 7798 /* location has to be used or breakpoint_re_set will delete me. */
305e13e6 7799 b->location = new_address_location (b->loc->address, NULL, 0);
c4093a6a 7800
44702360 7801 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 7802
c4093a6a
JM
7803 return b;
7804}
7805
0101ce28
JJ
7806struct lang_and_radix
7807 {
7808 enum language lang;
7809 int radix;
7810 };
7811
4efc6507
DE
7812/* Create a breakpoint for JIT code registration and unregistration. */
7813
7814struct breakpoint *
7815create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7816{
2a7f3dff
PA
7817 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7818 &internal_breakpoint_ops);
4efc6507 7819}
0101ce28 7820
03673fc7
PP
7821/* Remove JIT code registration and unregistration breakpoint(s). */
7822
7823void
7824remove_jit_event_breakpoints (void)
7825{
7826 struct breakpoint *b, *b_tmp;
7827
7828 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7829 if (b->type == bp_jit_event
7830 && b->loc->pspace == current_program_space)
7831 delete_breakpoint (b);
7832}
7833
cae688ec
JJ
7834void
7835remove_solib_event_breakpoints (void)
7836{
35df4500 7837 struct breakpoint *b, *b_tmp;
cae688ec 7838
35df4500 7839 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7840 if (b->type == bp_shlib_event
7841 && b->loc->pspace == current_program_space)
cae688ec
JJ
7842 delete_breakpoint (b);
7843}
7844
f37f681c
PA
7845/* See breakpoint.h. */
7846
7847void
7848remove_solib_event_breakpoints_at_next_stop (void)
7849{
7850 struct breakpoint *b, *b_tmp;
7851
7852 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7853 if (b->type == bp_shlib_event
7854 && b->loc->pspace == current_program_space)
7855 b->disposition = disp_del_at_next_stop;
7856}
7857
04086b45
PA
7858/* Helper for create_solib_event_breakpoint /
7859 create_and_insert_solib_event_breakpoint. Allows specifying which
7860 INSERT_MODE to pass through to update_global_location_list. */
7861
7862static struct breakpoint *
7863create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7864 enum ugll_insert_mode insert_mode)
cae688ec
JJ
7865{
7866 struct breakpoint *b;
7867
06edf0c0
PA
7868 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7869 &internal_breakpoint_ops);
04086b45 7870 update_global_location_list_nothrow (insert_mode);
cae688ec
JJ
7871 return b;
7872}
7873
04086b45
PA
7874struct breakpoint *
7875create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7876{
7877 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7878}
7879
f37f681c
PA
7880/* See breakpoint.h. */
7881
7882struct breakpoint *
7883create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7884{
7885 struct breakpoint *b;
7886
04086b45
PA
7887 /* Explicitly tell update_global_location_list to insert
7888 locations. */
7889 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
f37f681c
PA
7890 if (!b->loc->inserted)
7891 {
7892 delete_breakpoint (b);
7893 return NULL;
7894 }
7895 return b;
7896}
7897
cae688ec
JJ
7898/* Disable any breakpoints that are on code in shared libraries. Only
7899 apply to enabled breakpoints, disabled ones can just stay disabled. */
7900
7901void
cb851954 7902disable_breakpoints_in_shlibs (void)
cae688ec 7903{
876fa593 7904 struct bp_location *loc, **locp_tmp;
cae688ec 7905
876fa593 7906 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7907 {
2bdf28a0 7908 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7909 struct breakpoint *b = loc->owner;
2bdf28a0 7910
4a64f543
MS
7911 /* We apply the check to all breakpoints, including disabled for
7912 those with loc->duplicate set. This is so that when breakpoint
7913 becomes enabled, or the duplicate is removed, gdb will try to
7914 insert all breakpoints. If we don't set shlib_disabled here,
7915 we'll try to insert those breakpoints and fail. */
1042e4c0 7916 if (((b->type == bp_breakpoint)
508ccb1f 7917 || (b->type == bp_jit_event)
1042e4c0 7918 || (b->type == bp_hardware_breakpoint)
d77f58be 7919 || (is_tracepoint (b)))
6c95b8df 7920 && loc->pspace == current_program_space
0d381245 7921 && !loc->shlib_disabled
6c95b8df 7922 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7923 )
0d381245
VP
7924 {
7925 loc->shlib_disabled = 1;
7926 }
cae688ec
JJ
7927 }
7928}
7929
63644780
NB
7930/* Disable any breakpoints and tracepoints that are in SOLIB upon
7931 notification of unloaded_shlib. Only apply to enabled breakpoints,
7932 disabled ones can just stay disabled. */
84acb35a 7933
75149521 7934static void
84acb35a
JJ
7935disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7936{
876fa593 7937 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7938 int disabled_shlib_breaks = 0;
7939
876fa593 7940 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7941 {
2bdf28a0 7942 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7943 struct breakpoint *b = loc->owner;
cc59ec59 7944
1e4d1764 7945 if (solib->pspace == loc->pspace
e2dd7057 7946 && !loc->shlib_disabled
1e4d1764
YQ
7947 && (((b->type == bp_breakpoint
7948 || b->type == bp_jit_event
7949 || b->type == bp_hardware_breakpoint)
7950 && (loc->loc_type == bp_loc_hardware_breakpoint
7951 || loc->loc_type == bp_loc_software_breakpoint))
7952 || is_tracepoint (b))
e2dd7057 7953 && solib_contains_address_p (solib, loc->address))
84acb35a 7954 {
e2dd7057
PP
7955 loc->shlib_disabled = 1;
7956 /* At this point, we cannot rely on remove_breakpoint
7957 succeeding so we must mark the breakpoint as not inserted
7958 to prevent future errors occurring in remove_breakpoints. */
7959 loc->inserted = 0;
8d3788bd
VP
7960
7961 /* This may cause duplicate notifications for the same breakpoint. */
7962 observer_notify_breakpoint_modified (b);
7963
e2dd7057
PP
7964 if (!disabled_shlib_breaks)
7965 {
7966 target_terminal_ours_for_output ();
3e43a32a
MS
7967 warning (_("Temporarily disabling breakpoints "
7968 "for unloaded shared library \"%s\""),
e2dd7057 7969 solib->so_name);
84acb35a 7970 }
e2dd7057 7971 disabled_shlib_breaks = 1;
84acb35a
JJ
7972 }
7973 }
84acb35a
JJ
7974}
7975
63644780
NB
7976/* Disable any breakpoints and tracepoints in OBJFILE upon
7977 notification of free_objfile. Only apply to enabled breakpoints,
7978 disabled ones can just stay disabled. */
7979
7980static void
7981disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7982{
7983 struct breakpoint *b;
7984
7985 if (objfile == NULL)
7986 return;
7987
d03de421
PA
7988 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7989 managed by the user with add-symbol-file/remove-symbol-file.
7990 Similarly to how breakpoints in shared libraries are handled in
7991 response to "nosharedlibrary", mark breakpoints in such modules
08351840
PA
7992 shlib_disabled so they end up uninserted on the next global
7993 location list update. Shared libraries not loaded by the user
7994 aren't handled here -- they're already handled in
7995 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7996 solib_unloaded observer. We skip objfiles that are not
d03de421
PA
7997 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7998 main objfile). */
7999 if ((objfile->flags & OBJF_SHARED) == 0
8000 || (objfile->flags & OBJF_USERLOADED) == 0)
63644780
NB
8001 return;
8002
8003 ALL_BREAKPOINTS (b)
8004 {
8005 struct bp_location *loc;
8006 int bp_modified = 0;
8007
8008 if (!is_breakpoint (b) && !is_tracepoint (b))
8009 continue;
8010
8011 for (loc = b->loc; loc != NULL; loc = loc->next)
8012 {
8013 CORE_ADDR loc_addr = loc->address;
8014
8015 if (loc->loc_type != bp_loc_hardware_breakpoint
8016 && loc->loc_type != bp_loc_software_breakpoint)
8017 continue;
8018
8019 if (loc->shlib_disabled != 0)
8020 continue;
8021
8022 if (objfile->pspace != loc->pspace)
8023 continue;
8024
8025 if (loc->loc_type != bp_loc_hardware_breakpoint
8026 && loc->loc_type != bp_loc_software_breakpoint)
8027 continue;
8028
8029 if (is_addr_in_objfile (loc_addr, objfile))
8030 {
8031 loc->shlib_disabled = 1;
08351840
PA
8032 /* At this point, we don't know whether the object was
8033 unmapped from the inferior or not, so leave the
8034 inserted flag alone. We'll handle failure to
8035 uninsert quietly, in case the object was indeed
8036 unmapped. */
63644780
NB
8037
8038 mark_breakpoint_location_modified (loc);
8039
8040 bp_modified = 1;
8041 }
8042 }
8043
8044 if (bp_modified)
8045 observer_notify_breakpoint_modified (b);
8046 }
8047}
8048
ce78b96d
JB
8049/* FORK & VFORK catchpoints. */
8050
e29a4733
PA
8051/* An instance of this type is used to represent a fork or vfork
8052 catchpoint. It includes a "struct breakpoint" as a kind of base
8053 class; users downcast to "struct breakpoint *" when needed. A
8054 breakpoint is really of this type iff its ops pointer points to
8055 CATCH_FORK_BREAKPOINT_OPS. */
8056
8057struct fork_catchpoint
8058{
8059 /* The base class. */
8060 struct breakpoint base;
8061
8062 /* Process id of a child process whose forking triggered this
8063 catchpoint. This field is only valid immediately after this
8064 catchpoint has triggered. */
8065 ptid_t forked_inferior_pid;
8066};
8067
4a64f543
MS
8068/* Implement the "insert" breakpoint_ops method for fork
8069 catchpoints. */
ce78b96d 8070
77b06cd7
TJB
8071static int
8072insert_catch_fork (struct bp_location *bl)
ce78b96d 8073{
dfd4cc63 8074 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8075}
8076
4a64f543
MS
8077/* Implement the "remove" breakpoint_ops method for fork
8078 catchpoints. */
ce78b96d
JB
8079
8080static int
73971819 8081remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 8082{
dfd4cc63 8083 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8084}
8085
8086/* Implement the "breakpoint_hit" breakpoint_ops method for fork
8087 catchpoints. */
8088
8089static int
f1310107 8090breakpoint_hit_catch_fork (const struct bp_location *bl,
09ac7c10
TT
8091 struct address_space *aspace, CORE_ADDR bp_addr,
8092 const struct target_waitstatus *ws)
ce78b96d 8093{
e29a4733
PA
8094 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8095
f90263c1
TT
8096 if (ws->kind != TARGET_WAITKIND_FORKED)
8097 return 0;
8098
8099 c->forked_inferior_pid = ws->value.related_pid;
8100 return 1;
ce78b96d
JB
8101}
8102
4a64f543
MS
8103/* Implement the "print_it" breakpoint_ops method for fork
8104 catchpoints. */
ce78b96d
JB
8105
8106static enum print_stop_action
348d480f 8107print_it_catch_fork (bpstat bs)
ce78b96d 8108{
36dfb11c 8109 struct ui_out *uiout = current_uiout;
348d480f
PA
8110 struct breakpoint *b = bs->breakpoint_at;
8111 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 8112
ce78b96d 8113 annotate_catchpoint (b->number);
f303dbd6 8114 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8115 if (b->disposition == disp_del)
112e8700 8116 uiout->text ("Temporary catchpoint ");
36dfb11c 8117 else
112e8700
SM
8118 uiout->text ("Catchpoint ");
8119 if (uiout->is_mi_like_p ())
36dfb11c 8120 {
112e8700
SM
8121 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
8122 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8123 }
112e8700
SM
8124 uiout->field_int ("bkptno", b->number);
8125 uiout->text (" (forked process ");
8126 uiout->field_int ("newpid", ptid_get_pid (c->forked_inferior_pid));
8127 uiout->text ("), ");
ce78b96d
JB
8128 return PRINT_SRC_AND_LOC;
8129}
8130
4a64f543
MS
8131/* Implement the "print_one" breakpoint_ops method for fork
8132 catchpoints. */
ce78b96d
JB
8133
8134static void
a6d9a66e 8135print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 8136{
e29a4733 8137 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 8138 struct value_print_options opts;
79a45e25 8139 struct ui_out *uiout = current_uiout;
79a45b7d
TT
8140
8141 get_user_print_options (&opts);
8142
4a64f543
MS
8143 /* Field 4, the address, is omitted (which makes the columns not
8144 line up too nicely with the headers, but the effect is relatively
8145 readable). */
79a45b7d 8146 if (opts.addressprint)
112e8700 8147 uiout->field_skip ("addr");
ce78b96d 8148 annotate_field (5);
112e8700 8149 uiout->text ("fork");
e29a4733 8150 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d 8151 {
112e8700
SM
8152 uiout->text (", process ");
8153 uiout->field_int ("what", ptid_get_pid (c->forked_inferior_pid));
8154 uiout->spaces (1);
ce78b96d 8155 }
8ac3646f 8156
112e8700
SM
8157 if (uiout->is_mi_like_p ())
8158 uiout->field_string ("catch-type", "fork");
ce78b96d
JB
8159}
8160
8161/* Implement the "print_mention" breakpoint_ops method for fork
8162 catchpoints. */
8163
8164static void
8165print_mention_catch_fork (struct breakpoint *b)
8166{
8167 printf_filtered (_("Catchpoint %d (fork)"), b->number);
8168}
8169
6149aea9
PA
8170/* Implement the "print_recreate" breakpoint_ops method for fork
8171 catchpoints. */
8172
8173static void
8174print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
8175{
8176 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 8177 print_recreate_thread (b, fp);
6149aea9
PA
8178}
8179
ce78b96d
JB
8180/* The breakpoint_ops structure to be used in fork catchpoints. */
8181
2060206e 8182static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 8183
4a64f543
MS
8184/* Implement the "insert" breakpoint_ops method for vfork
8185 catchpoints. */
ce78b96d 8186
77b06cd7
TJB
8187static int
8188insert_catch_vfork (struct bp_location *bl)
ce78b96d 8189{
dfd4cc63 8190 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8191}
8192
4a64f543
MS
8193/* Implement the "remove" breakpoint_ops method for vfork
8194 catchpoints. */
ce78b96d
JB
8195
8196static int
73971819 8197remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
ce78b96d 8198{
dfd4cc63 8199 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8200}
8201
8202/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
8203 catchpoints. */
8204
8205static int
f1310107 8206breakpoint_hit_catch_vfork (const struct bp_location *bl,
09ac7c10
TT
8207 struct address_space *aspace, CORE_ADDR bp_addr,
8208 const struct target_waitstatus *ws)
ce78b96d 8209{
e29a4733
PA
8210 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8211
f90263c1
TT
8212 if (ws->kind != TARGET_WAITKIND_VFORKED)
8213 return 0;
8214
8215 c->forked_inferior_pid = ws->value.related_pid;
8216 return 1;
ce78b96d
JB
8217}
8218
4a64f543
MS
8219/* Implement the "print_it" breakpoint_ops method for vfork
8220 catchpoints. */
ce78b96d
JB
8221
8222static enum print_stop_action
348d480f 8223print_it_catch_vfork (bpstat bs)
ce78b96d 8224{
36dfb11c 8225 struct ui_out *uiout = current_uiout;
348d480f 8226 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
8227 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8228
ce78b96d 8229 annotate_catchpoint (b->number);
f303dbd6 8230 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8231 if (b->disposition == disp_del)
112e8700 8232 uiout->text ("Temporary catchpoint ");
36dfb11c 8233 else
112e8700
SM
8234 uiout->text ("Catchpoint ");
8235 if (uiout->is_mi_like_p ())
36dfb11c 8236 {
112e8700
SM
8237 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
8238 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8239 }
112e8700
SM
8240 uiout->field_int ("bkptno", b->number);
8241 uiout->text (" (vforked process ");
8242 uiout->field_int ("newpid", ptid_get_pid (c->forked_inferior_pid));
8243 uiout->text ("), ");
ce78b96d
JB
8244 return PRINT_SRC_AND_LOC;
8245}
8246
4a64f543
MS
8247/* Implement the "print_one" breakpoint_ops method for vfork
8248 catchpoints. */
ce78b96d
JB
8249
8250static void
a6d9a66e 8251print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 8252{
e29a4733 8253 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 8254 struct value_print_options opts;
79a45e25 8255 struct ui_out *uiout = current_uiout;
79a45b7d
TT
8256
8257 get_user_print_options (&opts);
4a64f543
MS
8258 /* Field 4, the address, is omitted (which makes the columns not
8259 line up too nicely with the headers, but the effect is relatively
8260 readable). */
79a45b7d 8261 if (opts.addressprint)
112e8700 8262 uiout->field_skip ("addr");
ce78b96d 8263 annotate_field (5);
112e8700 8264 uiout->text ("vfork");
e29a4733 8265 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d 8266 {
112e8700
SM
8267 uiout->text (", process ");
8268 uiout->field_int ("what", ptid_get_pid (c->forked_inferior_pid));
8269 uiout->spaces (1);
ce78b96d 8270 }
8ac3646f 8271
112e8700
SM
8272 if (uiout->is_mi_like_p ())
8273 uiout->field_string ("catch-type", "vfork");
ce78b96d
JB
8274}
8275
8276/* Implement the "print_mention" breakpoint_ops method for vfork
8277 catchpoints. */
8278
8279static void
8280print_mention_catch_vfork (struct breakpoint *b)
8281{
8282 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
8283}
8284
6149aea9
PA
8285/* Implement the "print_recreate" breakpoint_ops method for vfork
8286 catchpoints. */
8287
8288static void
8289print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
8290{
8291 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 8292 print_recreate_thread (b, fp);
6149aea9
PA
8293}
8294
ce78b96d
JB
8295/* The breakpoint_ops structure to be used in vfork catchpoints. */
8296
2060206e 8297static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 8298
edcc5120
TT
8299/* An instance of this type is used to represent an solib catchpoint.
8300 It includes a "struct breakpoint" as a kind of base class; users
8301 downcast to "struct breakpoint *" when needed. A breakpoint is
8302 really of this type iff its ops pointer points to
8303 CATCH_SOLIB_BREAKPOINT_OPS. */
8304
8305struct solib_catchpoint
8306{
8307 /* The base class. */
8308 struct breakpoint base;
8309
8310 /* True for "catch load", false for "catch unload". */
8311 unsigned char is_load;
8312
8313 /* Regular expression to match, if any. COMPILED is only valid when
8314 REGEX is non-NULL. */
8315 char *regex;
8316 regex_t compiled;
8317};
8318
8319static void
8320dtor_catch_solib (struct breakpoint *b)
8321{
8322 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8323
8324 if (self->regex)
8325 regfree (&self->compiled);
8326 xfree (self->regex);
8327
8328 base_breakpoint_ops.dtor (b);
8329}
8330
8331static int
8332insert_catch_solib (struct bp_location *ignore)
8333{
8334 return 0;
8335}
8336
8337static int
73971819 8338remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
edcc5120
TT
8339{
8340 return 0;
8341}
8342
8343static int
8344breakpoint_hit_catch_solib (const struct bp_location *bl,
8345 struct address_space *aspace,
8346 CORE_ADDR bp_addr,
8347 const struct target_waitstatus *ws)
8348{
8349 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
8350 struct breakpoint *other;
8351
8352 if (ws->kind == TARGET_WAITKIND_LOADED)
8353 return 1;
8354
8355 ALL_BREAKPOINTS (other)
8356 {
8357 struct bp_location *other_bl;
8358
8359 if (other == bl->owner)
8360 continue;
8361
8362 if (other->type != bp_shlib_event)
8363 continue;
8364
8365 if (self->base.pspace != NULL && other->pspace != self->base.pspace)
8366 continue;
8367
8368 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
8369 {
8370 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
8371 return 1;
8372 }
8373 }
8374
8375 return 0;
8376}
8377
8378static void
8379check_status_catch_solib (struct bpstats *bs)
8380{
8381 struct solib_catchpoint *self
8382 = (struct solib_catchpoint *) bs->breakpoint_at;
8383 int ix;
8384
8385 if (self->is_load)
8386 {
8387 struct so_list *iter;
8388
8389 for (ix = 0;
8390 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
8391 ix, iter);
8392 ++ix)
8393 {
8394 if (!self->regex
8395 || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0)
8396 return;
8397 }
8398 }
8399 else
8400 {
8401 char *iter;
8402
8403 for (ix = 0;
8404 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
8405 ix, iter);
8406 ++ix)
8407 {
8408 if (!self->regex
8409 || regexec (&self->compiled, iter, 0, NULL, 0) == 0)
8410 return;
8411 }
8412 }
8413
8414 bs->stop = 0;
8415 bs->print_it = print_it_noop;
8416}
8417
8418static enum print_stop_action
8419print_it_catch_solib (bpstat bs)
8420{
8421 struct breakpoint *b = bs->breakpoint_at;
8422 struct ui_out *uiout = current_uiout;
8423
8424 annotate_catchpoint (b->number);
f303dbd6 8425 maybe_print_thread_hit_breakpoint (uiout);
edcc5120 8426 if (b->disposition == disp_del)
112e8700 8427 uiout->text ("Temporary catchpoint ");
edcc5120 8428 else
112e8700
SM
8429 uiout->text ("Catchpoint ");
8430 uiout->field_int ("bkptno", b->number);
8431 uiout->text ("\n");
8432 if (uiout->is_mi_like_p ())
8433 uiout->field_string ("disp", bpdisp_text (b->disposition));
edcc5120
TT
8434 print_solib_event (1);
8435 return PRINT_SRC_AND_LOC;
8436}
8437
8438static void
8439print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8440{
8441 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8442 struct value_print_options opts;
8443 struct ui_out *uiout = current_uiout;
8444 char *msg;
8445
8446 get_user_print_options (&opts);
8447 /* Field 4, the address, is omitted (which makes the columns not
8448 line up too nicely with the headers, but the effect is relatively
8449 readable). */
8450 if (opts.addressprint)
8451 {
8452 annotate_field (4);
112e8700 8453 uiout->field_skip ("addr");
edcc5120
TT
8454 }
8455
8456 annotate_field (5);
8457 if (self->is_load)
8458 {
8459 if (self->regex)
8460 msg = xstrprintf (_("load of library matching %s"), self->regex);
8461 else
8462 msg = xstrdup (_("load of library"));
8463 }
8464 else
8465 {
8466 if (self->regex)
8467 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8468 else
8469 msg = xstrdup (_("unload of library"));
8470 }
112e8700 8471 uiout->field_string ("what", msg);
edcc5120 8472 xfree (msg);
8ac3646f 8473
112e8700
SM
8474 if (uiout->is_mi_like_p ())
8475 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
edcc5120
TT
8476}
8477
8478static void
8479print_mention_catch_solib (struct breakpoint *b)
8480{
8481 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8482
8483 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8484 self->is_load ? "load" : "unload");
8485}
8486
8487static void
8488print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8489{
8490 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8491
8492 fprintf_unfiltered (fp, "%s %s",
8493 b->disposition == disp_del ? "tcatch" : "catch",
8494 self->is_load ? "load" : "unload");
8495 if (self->regex)
8496 fprintf_unfiltered (fp, " %s", self->regex);
8497 fprintf_unfiltered (fp, "\n");
8498}
8499
8500static struct breakpoint_ops catch_solib_breakpoint_ops;
8501
91985142
MG
8502/* Shared helper function (MI and CLI) for creating and installing
8503 a shared object event catchpoint. If IS_LOAD is non-zero then
8504 the events to be caught are load events, otherwise they are
8505 unload events. If IS_TEMP is non-zero the catchpoint is a
8506 temporary one. If ENABLED is non-zero the catchpoint is
8507 created in an enabled state. */
edcc5120 8508
91985142 8509void
a121b7c1 8510add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
edcc5120
TT
8511{
8512 struct solib_catchpoint *c;
8513 struct gdbarch *gdbarch = get_current_arch ();
edcc5120
TT
8514 struct cleanup *cleanup;
8515
edcc5120
TT
8516 if (!arg)
8517 arg = "";
a121b7c1 8518 arg = skip_spaces_const (arg);
edcc5120 8519
4d01a485 8520 c = new solib_catchpoint ();
edcc5120
TT
8521 cleanup = make_cleanup (xfree, c);
8522
8523 if (*arg != '\0')
8524 {
8525 int errcode;
8526
8527 errcode = regcomp (&c->compiled, arg, REG_NOSUB);
8528 if (errcode != 0)
8529 {
8530 char *err = get_regcomp_error (errcode, &c->compiled);
8531
8532 make_cleanup (xfree, err);
8533 error (_("Invalid regexp (%s): %s"), err, arg);
8534 }
8535 c->regex = xstrdup (arg);
8536 }
8537
8538 c->is_load = is_load;
91985142 8539 init_catchpoint (&c->base, gdbarch, is_temp, NULL,
edcc5120
TT
8540 &catch_solib_breakpoint_ops);
8541
91985142
MG
8542 c->base.enable_state = enabled ? bp_enabled : bp_disabled;
8543
edcc5120
TT
8544 discard_cleanups (cleanup);
8545 install_breakpoint (0, &c->base, 1);
8546}
8547
91985142
MG
8548/* A helper function that does all the work for "catch load" and
8549 "catch unload". */
8550
8551static void
8552catch_load_or_unload (char *arg, int from_tty, int is_load,
8553 struct cmd_list_element *command)
8554{
8555 int tempflag;
8556 const int enabled = 1;
8557
8558 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8559
8560 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8561}
8562
edcc5120
TT
8563static void
8564catch_load_command_1 (char *arg, int from_tty,
8565 struct cmd_list_element *command)
8566{
8567 catch_load_or_unload (arg, from_tty, 1, command);
8568}
8569
8570static void
8571catch_unload_command_1 (char *arg, int from_tty,
8572 struct cmd_list_element *command)
8573{
8574 catch_load_or_unload (arg, from_tty, 0, command);
8575}
8576
346774a9
PA
8577/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8578 is non-zero, then make the breakpoint temporary. If COND_STRING is
8579 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8580 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8581
ab04a2af 8582void
346774a9
PA
8583init_catchpoint (struct breakpoint *b,
8584 struct gdbarch *gdbarch, int tempflag,
63160a43 8585 const char *cond_string,
c0a91b2b 8586 const struct breakpoint_ops *ops)
c906108c 8587{
c5aa993b 8588 struct symtab_and_line sal;
346774a9 8589
fe39c653 8590 init_sal (&sal);
6c95b8df 8591 sal.pspace = current_program_space;
c5aa993b 8592
28010a5d 8593 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8594
1b36a34b 8595 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8596 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8597}
8598
28010a5d 8599void
3ea46bff 8600install_breakpoint (int internal, struct breakpoint *b, int update_gll)
c56053d2
PA
8601{
8602 add_to_breakpoint_chain (b);
3a5c3e22 8603 set_breakpoint_number (internal, b);
558a9d82
YQ
8604 if (is_tracepoint (b))
8605 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8606 if (!internal)
8607 mention (b);
c56053d2 8608 observer_notify_breakpoint_created (b);
3ea46bff
YQ
8609
8610 if (update_gll)
44702360 8611 update_global_location_list (UGLL_MAY_INSERT);
c56053d2
PA
8612}
8613
9b70b993 8614static void
a6d9a66e 8615create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
63160a43 8616 int tempflag, const char *cond_string,
c0a91b2b 8617 const struct breakpoint_ops *ops)
c906108c 8618{
4d01a485 8619 struct fork_catchpoint *c = new fork_catchpoint ();
ce78b96d 8620
e29a4733
PA
8621 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
8622
8623 c->forked_inferior_pid = null_ptid;
8624
3ea46bff 8625 install_breakpoint (0, &c->base, 1);
c906108c
SS
8626}
8627
fe798b75
JB
8628/* Exec catchpoints. */
8629
b4d90040
PA
8630/* An instance of this type is used to represent an exec catchpoint.
8631 It includes a "struct breakpoint" as a kind of base class; users
8632 downcast to "struct breakpoint *" when needed. A breakpoint is
8633 really of this type iff its ops pointer points to
8634 CATCH_EXEC_BREAKPOINT_OPS. */
8635
8636struct exec_catchpoint
8637{
8638 /* The base class. */
8639 struct breakpoint base;
8640
8641 /* Filename of a program whose exec triggered this catchpoint.
8642 This field is only valid immediately after this catchpoint has
8643 triggered. */
8644 char *exec_pathname;
8645};
8646
8647/* Implement the "dtor" breakpoint_ops method for exec
8648 catchpoints. */
8649
8650static void
8651dtor_catch_exec (struct breakpoint *b)
8652{
8653 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8654
8655 xfree (c->exec_pathname);
348d480f 8656
2060206e 8657 base_breakpoint_ops.dtor (b);
b4d90040
PA
8658}
8659
77b06cd7
TJB
8660static int
8661insert_catch_exec (struct bp_location *bl)
c906108c 8662{
dfd4cc63 8663 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8664}
c906108c 8665
fe798b75 8666static int
73971819 8667remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
fe798b75 8668{
dfd4cc63 8669 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8670}
c906108c 8671
fe798b75 8672static int
f1310107 8673breakpoint_hit_catch_exec (const struct bp_location *bl,
09ac7c10
TT
8674 struct address_space *aspace, CORE_ADDR bp_addr,
8675 const struct target_waitstatus *ws)
fe798b75 8676{
b4d90040
PA
8677 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8678
f90263c1
TT
8679 if (ws->kind != TARGET_WAITKIND_EXECD)
8680 return 0;
8681
8682 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8683 return 1;
fe798b75 8684}
c906108c 8685
fe798b75 8686static enum print_stop_action
348d480f 8687print_it_catch_exec (bpstat bs)
fe798b75 8688{
36dfb11c 8689 struct ui_out *uiout = current_uiout;
348d480f 8690 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8691 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8692
fe798b75 8693 annotate_catchpoint (b->number);
f303dbd6 8694 maybe_print_thread_hit_breakpoint (uiout);
36dfb11c 8695 if (b->disposition == disp_del)
112e8700 8696 uiout->text ("Temporary catchpoint ");
36dfb11c 8697 else
112e8700
SM
8698 uiout->text ("Catchpoint ");
8699 if (uiout->is_mi_like_p ())
36dfb11c 8700 {
112e8700
SM
8701 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8702 uiout->field_string ("disp", bpdisp_text (b->disposition));
36dfb11c 8703 }
112e8700
SM
8704 uiout->field_int ("bkptno", b->number);
8705 uiout->text (" (exec'd ");
8706 uiout->field_string ("new-exec", c->exec_pathname);
8707 uiout->text ("), ");
36dfb11c 8708
fe798b75 8709 return PRINT_SRC_AND_LOC;
c906108c
SS
8710}
8711
fe798b75 8712static void
a6d9a66e 8713print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 8714{
b4d90040 8715 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 8716 struct value_print_options opts;
79a45e25 8717 struct ui_out *uiout = current_uiout;
fe798b75
JB
8718
8719 get_user_print_options (&opts);
8720
8721 /* Field 4, the address, is omitted (which makes the columns
8722 not line up too nicely with the headers, but the effect
8723 is relatively readable). */
8724 if (opts.addressprint)
112e8700 8725 uiout->field_skip ("addr");
fe798b75 8726 annotate_field (5);
112e8700 8727 uiout->text ("exec");
b4d90040 8728 if (c->exec_pathname != NULL)
fe798b75 8729 {
112e8700
SM
8730 uiout->text (", program \"");
8731 uiout->field_string ("what", c->exec_pathname);
8732 uiout->text ("\" ");
fe798b75 8733 }
8ac3646f 8734
112e8700
SM
8735 if (uiout->is_mi_like_p ())
8736 uiout->field_string ("catch-type", "exec");
fe798b75
JB
8737}
8738
8739static void
8740print_mention_catch_exec (struct breakpoint *b)
8741{
8742 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8743}
8744
6149aea9
PA
8745/* Implement the "print_recreate" breakpoint_ops method for exec
8746 catchpoints. */
8747
8748static void
8749print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8750{
8751 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 8752 print_recreate_thread (b, fp);
6149aea9
PA
8753}
8754
2060206e 8755static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 8756
c906108c 8757static int
fba45db2 8758hw_breakpoint_used_count (void)
c906108c 8759{
c906108c 8760 int i = 0;
f1310107
TJB
8761 struct breakpoint *b;
8762 struct bp_location *bl;
c906108c
SS
8763
8764 ALL_BREAKPOINTS (b)
c5aa993b 8765 {
d6b74ac4 8766 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
8767 for (bl = b->loc; bl; bl = bl->next)
8768 {
8769 /* Special types of hardware breakpoints may use more than
8770 one register. */
348d480f 8771 i += b->ops->resources_needed (bl);
f1310107 8772 }
c5aa993b 8773 }
c906108c
SS
8774
8775 return i;
8776}
8777
a1398e0c
PA
8778/* Returns the resources B would use if it were a hardware
8779 watchpoint. */
8780
c906108c 8781static int
a1398e0c 8782hw_watchpoint_use_count (struct breakpoint *b)
c906108c 8783{
c906108c 8784 int i = 0;
e09342b5 8785 struct bp_location *bl;
c906108c 8786
a1398e0c
PA
8787 if (!breakpoint_enabled (b))
8788 return 0;
8789
8790 for (bl = b->loc; bl; bl = bl->next)
8791 {
8792 /* Special types of hardware watchpoints may use more than
8793 one register. */
8794 i += b->ops->resources_needed (bl);
8795 }
8796
8797 return i;
8798}
8799
8800/* Returns the sum the used resources of all hardware watchpoints of
8801 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8802 the sum of the used resources of all hardware watchpoints of other
8803 types _not_ TYPE. */
8804
8805static int
8806hw_watchpoint_used_count_others (struct breakpoint *except,
8807 enum bptype type, int *other_type_used)
8808{
8809 int i = 0;
8810 struct breakpoint *b;
8811
c906108c
SS
8812 *other_type_used = 0;
8813 ALL_BREAKPOINTS (b)
e09342b5 8814 {
a1398e0c
PA
8815 if (b == except)
8816 continue;
e09342b5
TJB
8817 if (!breakpoint_enabled (b))
8818 continue;
8819
a1398e0c
PA
8820 if (b->type == type)
8821 i += hw_watchpoint_use_count (b);
8822 else if (is_hardware_watchpoint (b))
8823 *other_type_used = 1;
e09342b5
TJB
8824 }
8825
c906108c
SS
8826 return i;
8827}
8828
c906108c 8829void
fba45db2 8830disable_watchpoints_before_interactive_call_start (void)
c906108c 8831{
c5aa993b 8832 struct breakpoint *b;
c906108c
SS
8833
8834 ALL_BREAKPOINTS (b)
c5aa993b 8835 {
cc60f2e3 8836 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 8837 {
b5de0fa7 8838 b->enable_state = bp_call_disabled;
44702360 8839 update_global_location_list (UGLL_DONT_INSERT);
c5aa993b
JM
8840 }
8841 }
c906108c
SS
8842}
8843
8844void
fba45db2 8845enable_watchpoints_after_interactive_call_stop (void)
c906108c 8846{
c5aa993b 8847 struct breakpoint *b;
c906108c
SS
8848
8849 ALL_BREAKPOINTS (b)
c5aa993b 8850 {
cc60f2e3 8851 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 8852 {
b5de0fa7 8853 b->enable_state = bp_enabled;
44702360 8854 update_global_location_list (UGLL_MAY_INSERT);
c5aa993b
JM
8855 }
8856 }
c906108c
SS
8857}
8858
8bea4e01
UW
8859void
8860disable_breakpoints_before_startup (void)
8861{
6c95b8df 8862 current_program_space->executing_startup = 1;
44702360 8863 update_global_location_list (UGLL_DONT_INSERT);
8bea4e01
UW
8864}
8865
8866void
8867enable_breakpoints_after_startup (void)
8868{
6c95b8df 8869 current_program_space->executing_startup = 0;
f8eba3c6 8870 breakpoint_re_set ();
8bea4e01
UW
8871}
8872
7c16b83e
PA
8873/* Create a new single-step breakpoint for thread THREAD, with no
8874 locations. */
c906108c 8875
7c16b83e
PA
8876static struct breakpoint *
8877new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8878{
4d01a485 8879 struct breakpoint *b = new breakpoint ();
7c16b83e
PA
8880
8881 init_raw_breakpoint_without_location (b, gdbarch, bp_single_step,
8882 &momentary_breakpoint_ops);
8883
8884 b->disposition = disp_donttouch;
8885 b->frame_id = null_frame_id;
8886
8887 b->thread = thread;
8888 gdb_assert (b->thread != 0);
8889
8890 add_to_breakpoint_chain (b);
8891
8892 return b;
8893}
8894
8895/* Set a momentary breakpoint of type TYPE at address specified by
8896 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8897 frame. */
c906108c
SS
8898
8899struct breakpoint *
a6d9a66e
UW
8900set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8901 struct frame_id frame_id, enum bptype type)
c906108c 8902{
52f0bd74 8903 struct breakpoint *b;
edb3359d 8904
193facb3
JK
8905 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8906 tail-called one. */
8907 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 8908
06edf0c0 8909 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
8910 b->enable_state = bp_enabled;
8911 b->disposition = disp_donttouch;
818dd999 8912 b->frame_id = frame_id;
c906108c 8913
4a64f543
MS
8914 /* If we're debugging a multi-threaded program, then we want
8915 momentary breakpoints to be active in only a single thread of
8916 control. */
39f77062 8917 if (in_thread_list (inferior_ptid))
5d5658a1 8918 b->thread = ptid_to_global_thread_id (inferior_ptid);
c906108c 8919
44702360 8920 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 8921
c906108c
SS
8922 return b;
8923}
611c83ae 8924
06edf0c0 8925/* Make a momentary breakpoint based on the master breakpoint ORIG.
a1aa2221
LM
8926 The new breakpoint will have type TYPE, use OPS as its
8927 breakpoint_ops, and will set enabled to LOC_ENABLED. */
e58b0e63 8928
06edf0c0
PA
8929static struct breakpoint *
8930momentary_breakpoint_from_master (struct breakpoint *orig,
8931 enum bptype type,
a1aa2221
LM
8932 const struct breakpoint_ops *ops,
8933 int loc_enabled)
e58b0e63
PA
8934{
8935 struct breakpoint *copy;
8936
06edf0c0 8937 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 8938 copy->loc = allocate_bp_location (copy);
0e30163f 8939 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 8940
a6d9a66e 8941 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
8942 copy->loc->requested_address = orig->loc->requested_address;
8943 copy->loc->address = orig->loc->address;
8944 copy->loc->section = orig->loc->section;
6c95b8df 8945 copy->loc->pspace = orig->loc->pspace;
55aa24fb 8946 copy->loc->probe = orig->loc->probe;
f8eba3c6 8947 copy->loc->line_number = orig->loc->line_number;
2f202fde 8948 copy->loc->symtab = orig->loc->symtab;
a1aa2221 8949 copy->loc->enabled = loc_enabled;
e58b0e63
PA
8950 copy->frame_id = orig->frame_id;
8951 copy->thread = orig->thread;
6c95b8df 8952 copy->pspace = orig->pspace;
e58b0e63
PA
8953
8954 copy->enable_state = bp_enabled;
8955 copy->disposition = disp_donttouch;
8956 copy->number = internal_breakpoint_number--;
8957
44702360 8958 update_global_location_list_nothrow (UGLL_DONT_INSERT);
e58b0e63
PA
8959 return copy;
8960}
8961
06edf0c0
PA
8962/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8963 ORIG is NULL. */
8964
8965struct breakpoint *
8966clone_momentary_breakpoint (struct breakpoint *orig)
8967{
8968 /* If there's nothing to clone, then return nothing. */
8969 if (orig == NULL)
8970 return NULL;
8971
a1aa2221 8972 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
06edf0c0
PA
8973}
8974
611c83ae 8975struct breakpoint *
a6d9a66e
UW
8976set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8977 enum bptype type)
611c83ae
PA
8978{
8979 struct symtab_and_line sal;
8980
8981 sal = find_pc_line (pc, 0);
8982 sal.pc = pc;
8983 sal.section = find_pc_overlay (pc);
8984 sal.explicit_pc = 1;
8985
a6d9a66e 8986 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 8987}
c906108c 8988\f
c5aa993b 8989
c906108c
SS
8990/* Tell the user we have just set a breakpoint B. */
8991
8992static void
fba45db2 8993mention (struct breakpoint *b)
c906108c 8994{
348d480f 8995 b->ops->print_mention (b);
112e8700 8996 if (current_uiout->is_mi_like_p ())
fb40c209 8997 return;
c906108c
SS
8998 printf_filtered ("\n");
8999}
c906108c 9000\f
c5aa993b 9001
1a853c52
PA
9002static int bp_loc_is_permanent (struct bp_location *loc);
9003
0d381245 9004static struct bp_location *
39d61571 9005add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
9006 const struct symtab_and_line *sal)
9007{
9008 struct bp_location *loc, **tmp;
3742cc8b
YQ
9009 CORE_ADDR adjusted_address;
9010 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
9011
9012 if (loc_gdbarch == NULL)
9013 loc_gdbarch = b->gdbarch;
9014
9015 /* Adjust the breakpoint's address prior to allocating a location.
9016 Once we call allocate_bp_location(), that mostly uninitialized
9017 location will be placed on the location chain. Adjustment of the
9018 breakpoint may cause target_read_memory() to be called and we do
9019 not want its scan of the location chain to find a breakpoint and
9020 location that's only been partially initialized. */
9021 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
9022 sal->pc, b->type);
0d381245 9023
d30113d4 9024 /* Sort the locations by their ADDRESS. */
39d61571 9025 loc = allocate_bp_location (b);
d30113d4
JK
9026 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
9027 tmp = &((*tmp)->next))
0d381245 9028 ;
d30113d4 9029 loc->next = *tmp;
0d381245 9030 *tmp = loc;
3742cc8b 9031
0d381245 9032 loc->requested_address = sal->pc;
3742cc8b 9033 loc->address = adjusted_address;
6c95b8df 9034 loc->pspace = sal->pspace;
729662a5
TT
9035 loc->probe.probe = sal->probe;
9036 loc->probe.objfile = sal->objfile;
6c95b8df 9037 gdb_assert (loc->pspace != NULL);
0d381245 9038 loc->section = sal->section;
3742cc8b 9039 loc->gdbarch = loc_gdbarch;
f8eba3c6 9040 loc->line_number = sal->line;
2f202fde 9041 loc->symtab = sal->symtab;
f8eba3c6 9042
0e30163f
JK
9043 set_breakpoint_location_function (loc,
9044 sal->explicit_pc || sal->explicit_line);
1a853c52 9045
6ae88661
LM
9046 /* While by definition, permanent breakpoints are already present in the
9047 code, we don't mark the location as inserted. Normally one would expect
9048 that GDB could rely on that breakpoint instruction to stop the program,
9049 thus removing the need to insert its own breakpoint, except that executing
9050 the breakpoint instruction can kill the target instead of reporting a
9051 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
9052 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
9053 with "Trap 0x02 while interrupts disabled, Error state". Letting the
9054 breakpoint be inserted normally results in QEMU knowing about the GDB
9055 breakpoint, and thus trap before the breakpoint instruction is executed.
9056 (If GDB later needs to continue execution past the permanent breakpoint,
9057 it manually increments the PC, thus avoiding executing the breakpoint
9058 instruction.) */
1a853c52 9059 if (bp_loc_is_permanent (loc))
6ae88661 9060 loc->permanent = 1;
1a853c52 9061
0d381245
VP
9062 return loc;
9063}
514f746b
AR
9064\f
9065
1cf4d951 9066/* See breakpoint.h. */
514f746b 9067
1cf4d951
PA
9068int
9069program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
514f746b
AR
9070{
9071 int len;
9072 CORE_ADDR addr;
1afeeb75 9073 const gdb_byte *bpoint;
514f746b 9074 gdb_byte *target_mem;
939c61fa
JK
9075 struct cleanup *cleanup;
9076 int retval = 0;
514f746b 9077
1cf4d951
PA
9078 addr = address;
9079 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
9080
9081 /* Software breakpoints unsupported? */
9082 if (bpoint == NULL)
9083 return 0;
9084
224c3ddb 9085 target_mem = (gdb_byte *) alloca (len);
1cf4d951
PA
9086
9087 /* Enable the automatic memory restoration from breakpoints while
9088 we read the memory. Otherwise we could say about our temporary
9089 breakpoints they are permanent. */
9090 cleanup = make_show_memory_breakpoints_cleanup (0);
9091
9092 if (target_read_memory (address, target_mem, len) == 0
9093 && memcmp (target_mem, bpoint, len) == 0)
9094 retval = 1;
9095
9096 do_cleanups (cleanup);
9097
9098 return retval;
9099}
9100
9101/* Return 1 if LOC is pointing to a permanent breakpoint,
9102 return 0 otherwise. */
9103
9104static int
9105bp_loc_is_permanent (struct bp_location *loc)
9106{
9107 struct cleanup *cleanup;
9108 int retval;
9109
514f746b
AR
9110 gdb_assert (loc != NULL);
9111
244558af
LM
9112 /* If we have a catchpoint or a watchpoint, just return 0. We should not
9113 attempt to read from the addresses the locations of these breakpoint types
9114 point to. program_breakpoint_here_p, below, will attempt to read
9115 memory. */
9116 if (!breakpoint_address_is_meaningful (loc->owner))
9117 return 0;
9118
6c95b8df 9119 cleanup = save_current_space_and_thread ();
6c95b8df 9120 switch_to_program_space_and_thread (loc->pspace);
939c61fa 9121
1cf4d951 9122 retval = program_breakpoint_here_p (loc->gdbarch, loc->address);
514f746b 9123
939c61fa
JK
9124 do_cleanups (cleanup);
9125
9126 return retval;
514f746b
AR
9127}
9128
e7e0cddf
SS
9129/* Build a command list for the dprintf corresponding to the current
9130 settings of the dprintf style options. */
9131
9132static void
9133update_dprintf_command_list (struct breakpoint *b)
9134{
9135 char *dprintf_args = b->extra_string;
9136 char *printf_line = NULL;
9137
9138 if (!dprintf_args)
9139 return;
9140
9141 dprintf_args = skip_spaces (dprintf_args);
9142
9143 /* Allow a comma, as it may have terminated a location, but don't
9144 insist on it. */
9145 if (*dprintf_args == ',')
9146 ++dprintf_args;
9147 dprintf_args = skip_spaces (dprintf_args);
9148
9149 if (*dprintf_args != '"')
9150 error (_("Bad format string, missing '\"'."));
9151
d3ce09f5 9152 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 9153 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 9154 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
9155 {
9156 if (!dprintf_function)
9157 error (_("No function supplied for dprintf call"));
9158
9159 if (dprintf_channel && strlen (dprintf_channel) > 0)
9160 printf_line = xstrprintf ("call (void) %s (%s,%s)",
9161 dprintf_function,
9162 dprintf_channel,
9163 dprintf_args);
9164 else
9165 printf_line = xstrprintf ("call (void) %s (%s)",
9166 dprintf_function,
9167 dprintf_args);
9168 }
d3ce09f5
SS
9169 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
9170 {
9171 if (target_can_run_breakpoint_commands ())
9172 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
9173 else
9174 {
9175 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
9176 printf_line = xstrprintf ("printf %s", dprintf_args);
9177 }
9178 }
e7e0cddf
SS
9179 else
9180 internal_error (__FILE__, __LINE__,
9181 _("Invalid dprintf style."));
9182
f28045c2 9183 gdb_assert (printf_line != NULL);
9d6e6e84 9184 /* Manufacture a printf sequence. */
f28045c2 9185 {
8d749320 9186 struct command_line *printf_cmd_line = XNEW (struct command_line);
e7e0cddf 9187
f28045c2
YQ
9188 printf_cmd_line->control_type = simple_control;
9189 printf_cmd_line->body_count = 0;
9190 printf_cmd_line->body_list = NULL;
9d6e6e84 9191 printf_cmd_line->next = NULL;
f28045c2 9192 printf_cmd_line->line = printf_line;
e7e0cddf 9193
f28045c2
YQ
9194 breakpoint_set_commands (b, printf_cmd_line);
9195 }
e7e0cddf
SS
9196}
9197
9198/* Update all dprintf commands, making their command lists reflect
9199 current style settings. */
9200
9201static void
9202update_dprintf_commands (char *args, int from_tty,
9203 struct cmd_list_element *c)
9204{
9205 struct breakpoint *b;
9206
9207 ALL_BREAKPOINTS (b)
9208 {
9209 if (b->type == bp_dprintf)
9210 update_dprintf_command_list (b);
9211 }
9212}
c3f6f71d 9213
f00aae0f
KS
9214/* Create a breakpoint with SAL as location. Use LOCATION
9215 as a description of the location, and COND_STRING
b35a8b2f
DE
9216 as condition expression. If LOCATION is NULL then create an
9217 "address location" from the address in the SAL. */
018d34a4
VP
9218
9219static void
d9b3f62e 9220init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
f00aae0f
KS
9221 struct symtabs_and_lines sals,
9222 struct event_location *location,
f8eba3c6 9223 char *filter, char *cond_string,
e7e0cddf 9224 char *extra_string,
d9b3f62e
PA
9225 enum bptype type, enum bpdisp disposition,
9226 int thread, int task, int ignore_count,
c0a91b2b 9227 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9228 int enabled, int internal, unsigned flags,
9229 int display_canonical)
018d34a4 9230{
0d381245 9231 int i;
018d34a4
VP
9232
9233 if (type == bp_hardware_breakpoint)
9234 {
fbbd034e
AS
9235 int target_resources_ok;
9236
9237 i = hw_breakpoint_used_count ();
9238 target_resources_ok =
9239 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
9240 i + 1, 0);
9241 if (target_resources_ok == 0)
9242 error (_("No hardware breakpoint support in the target."));
9243 else if (target_resources_ok < 0)
9244 error (_("Hardware breakpoints used exceeds limit."));
9245 }
9246
6c95b8df
PA
9247 gdb_assert (sals.nelts > 0);
9248
0d381245
VP
9249 for (i = 0; i < sals.nelts; ++i)
9250 {
9251 struct symtab_and_line sal = sals.sals[i];
9252 struct bp_location *loc;
9253
9254 if (from_tty)
5af949e3
UW
9255 {
9256 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9257 if (!loc_gdbarch)
9258 loc_gdbarch = gdbarch;
9259
9260 describe_other_breakpoints (loc_gdbarch,
6c95b8df 9261 sal.pspace, sal.pc, sal.section, thread);
5af949e3 9262 }
0d381245
VP
9263
9264 if (i == 0)
9265 {
d9b3f62e 9266 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 9267 b->thread = thread;
4a306c9a 9268 b->task = task;
855a6e68 9269
0d381245 9270 b->cond_string = cond_string;
e7e0cddf 9271 b->extra_string = extra_string;
0d381245 9272 b->ignore_count = ignore_count;
41447f92 9273 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 9274 b->disposition = disposition;
6c95b8df 9275
44f238bb
PA
9276 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9277 b->loc->inserted = 1;
9278
0fb4aa4b
PA
9279 if (type == bp_static_tracepoint)
9280 {
d9b3f62e 9281 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
9282 struct static_tracepoint_marker marker;
9283
983af33b 9284 if (strace_marker_p (b))
0fb4aa4b
PA
9285 {
9286 /* We already know the marker exists, otherwise, we
9287 wouldn't see a sal for it. */
f00aae0f
KS
9288 const char *p = &event_location_to_string (b->location)[3];
9289 const char *endp;
0fb4aa4b 9290 char *marker_str;
0fb4aa4b 9291
f00aae0f 9292 p = skip_spaces_const (p);
0fb4aa4b 9293
f00aae0f 9294 endp = skip_to_space_const (p);
0fb4aa4b
PA
9295
9296 marker_str = savestring (p, endp - p);
d9b3f62e 9297 t->static_trace_marker_id = marker_str;
0fb4aa4b 9298
3e43a32a
MS
9299 printf_filtered (_("Probed static tracepoint "
9300 "marker \"%s\"\n"),
d9b3f62e 9301 t->static_trace_marker_id);
0fb4aa4b
PA
9302 }
9303 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
9304 {
d9b3f62e 9305 t->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
9306 release_static_tracepoint_marker (&marker);
9307
3e43a32a
MS
9308 printf_filtered (_("Probed static tracepoint "
9309 "marker \"%s\"\n"),
d9b3f62e 9310 t->static_trace_marker_id);
0fb4aa4b
PA
9311 }
9312 else
3e43a32a
MS
9313 warning (_("Couldn't determine the static "
9314 "tracepoint marker to probe"));
0fb4aa4b
PA
9315 }
9316
0d381245
VP
9317 loc = b->loc;
9318 }
9319 else
018d34a4 9320 {
39d61571 9321 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
9322 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9323 loc->inserted = 1;
0d381245
VP
9324 }
9325
9326 if (b->cond_string)
9327 {
bbc13ae3
KS
9328 const char *arg = b->cond_string;
9329
1bb9788d
TT
9330 loc->cond = parse_exp_1 (&arg, loc->address,
9331 block_for_pc (loc->address), 0);
0d381245 9332 if (*arg)
588ae58c 9333 error (_("Garbage '%s' follows condition"), arg);
018d34a4 9334 }
e7e0cddf
SS
9335
9336 /* Dynamic printf requires and uses additional arguments on the
9337 command line, otherwise it's an error. */
9338 if (type == bp_dprintf)
9339 {
9340 if (b->extra_string)
9341 update_dprintf_command_list (b);
9342 else
9343 error (_("Format string required"));
9344 }
9345 else if (b->extra_string)
588ae58c 9346 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 9347 }
018d34a4 9348
56435ebe 9349 b->display_canonical = display_canonical;
f00aae0f
KS
9350 if (location != NULL)
9351 b->location = location;
018d34a4 9352 else
305e13e6
JB
9353 {
9354 const char *addr_string = NULL;
9355 int addr_string_len = 0;
9356
9357 if (location != NULL)
9358 addr_string = event_location_to_string (location);
9359 if (addr_string != NULL)
9360 addr_string_len = strlen (addr_string);
9361
9362 b->location = new_address_location (b->loc->address,
9363 addr_string, addr_string_len);
9364 }
f8eba3c6 9365 b->filter = filter;
d9b3f62e 9366}
018d34a4 9367
d9b3f62e
PA
9368static void
9369create_breakpoint_sal (struct gdbarch *gdbarch,
f00aae0f
KS
9370 struct symtabs_and_lines sals,
9371 struct event_location *location,
f8eba3c6 9372 char *filter, char *cond_string,
e7e0cddf 9373 char *extra_string,
d9b3f62e
PA
9374 enum bptype type, enum bpdisp disposition,
9375 int thread, int task, int ignore_count,
c0a91b2b 9376 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9377 int enabled, int internal, unsigned flags,
9378 int display_canonical)
d9b3f62e
PA
9379{
9380 struct breakpoint *b;
9381 struct cleanup *old_chain;
9382
9383 if (is_tracepoint_type (type))
9384 {
9385 struct tracepoint *t;
9386
4d01a485 9387 t = new tracepoint ();
d9b3f62e
PA
9388 b = &t->base;
9389 }
9390 else
4d01a485 9391 b = new breakpoint ();
d9b3f62e
PA
9392
9393 old_chain = make_cleanup (xfree, b);
9394
9395 init_breakpoint_sal (b, gdbarch,
f00aae0f 9396 sals, location,
e7e0cddf 9397 filter, cond_string, extra_string,
d9b3f62e
PA
9398 type, disposition,
9399 thread, task, ignore_count,
9400 ops, from_tty,
44f238bb
PA
9401 enabled, internal, flags,
9402 display_canonical);
d9b3f62e
PA
9403 discard_cleanups (old_chain);
9404
3ea46bff 9405 install_breakpoint (internal, b, 0);
018d34a4
VP
9406}
9407
9408/* Add SALS.nelts breakpoints to the breakpoint table. For each
9409 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9410 value. COND_STRING, if not NULL, specified the condition to be
9411 used for all breakpoints. Essentially the only case where
9412 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9413 function. In that case, it's still not possible to specify
9414 separate conditions for different overloaded functions, so
9415 we take just a single condition string.
9416
c3f6f71d 9417 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 9418 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
9419 array contents). If the function fails (error() is called), the
9420 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 9421 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
9422
9423static void
8cdf0e15 9424create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 9425 struct linespec_result *canonical,
e7e0cddf 9426 char *cond_string, char *extra_string,
8cdf0e15
VP
9427 enum bptype type, enum bpdisp disposition,
9428 int thread, int task, int ignore_count,
c0a91b2b 9429 const struct breakpoint_ops *ops, int from_tty,
44f238bb 9430 int enabled, int internal, unsigned flags)
c906108c 9431{
018d34a4 9432 int i;
f8eba3c6 9433 struct linespec_sals *lsal;
cc59ec59 9434
f8eba3c6
TT
9435 if (canonical->pre_expanded)
9436 gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1);
9437
9438 for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i)
c3f6f71d 9439 {
f00aae0f 9440 /* Note that 'location' can be NULL in the case of a plain
f8eba3c6 9441 'break', without arguments. */
f00aae0f
KS
9442 struct event_location *location
9443 = (canonical->location != NULL
9444 ? copy_event_location (canonical->location) : NULL);
f8eba3c6 9445 char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL;
f00aae0f 9446 struct cleanup *inner = make_cleanup_delete_event_location (location);
0d381245 9447
f8eba3c6
TT
9448 make_cleanup (xfree, filter_string);
9449 create_breakpoint_sal (gdbarch, lsal->sals,
f00aae0f 9450 location,
f8eba3c6 9451 filter_string,
e7e0cddf
SS
9452 cond_string, extra_string,
9453 type, disposition,
84f4c1fe 9454 thread, task, ignore_count, ops,
44f238bb 9455 from_tty, enabled, internal, flags,
56435ebe 9456 canonical->special_display);
f8eba3c6 9457 discard_cleanups (inner);
c3f6f71d 9458 }
c3f6f71d 9459}
c906108c 9460
f00aae0f 9461/* Parse LOCATION which is assumed to be a SAL specification possibly
c3f6f71d 9462 followed by conditionals. On return, SALS contains an array of SAL
f00aae0f
KS
9463 addresses found. LOCATION points to the end of the SAL (for
9464 linespec locations).
9998af43
TJB
9465
9466 The array and the line spec strings are allocated on the heap, it is
9467 the caller's responsibility to free them. */
c906108c 9468
b9362cc7 9469static void
f00aae0f 9470parse_breakpoint_sals (const struct event_location *location,
58438ac1 9471 struct linespec_result *canonical)
c3f6f71d 9472{
f00aae0f
KS
9473 struct symtab_and_line cursal;
9474
9475 if (event_location_type (location) == LINESPEC_LOCATION)
9476 {
9477 const char *address = get_linespec_location (location);
9478
9479 if (address == NULL)
9480 {
9481 /* The last displayed codepoint, if it's valid, is our default
9482 breakpoint address. */
9483 if (last_displayed_sal_is_valid ())
9484 {
9485 struct linespec_sals lsal;
9486 struct symtab_and_line sal;
9487 CORE_ADDR pc;
9488
9489 init_sal (&sal); /* Initialize to zeroes. */
8d749320 9490 lsal.sals.sals = XNEW (struct symtab_and_line);
f00aae0f
KS
9491
9492 /* Set sal's pspace, pc, symtab, and line to the values
9493 corresponding to the last call to print_frame_info.
9494 Be sure to reinitialize LINE with NOTCURRENT == 0
9495 as the breakpoint line number is inappropriate otherwise.
9496 find_pc_line would adjust PC, re-set it back. */
9497 get_last_displayed_sal (&sal);
9498 pc = sal.pc;
9499 sal = find_pc_line (pc, 0);
9500
9501 /* "break" without arguments is equivalent to "break *PC"
9502 where PC is the last displayed codepoint's address. So
9503 make sure to set sal.explicit_pc to prevent GDB from
9504 trying to expand the list of sals to include all other
9505 instances with the same symtab and line. */
9506 sal.pc = pc;
9507 sal.explicit_pc = 1;
9508
9509 lsal.sals.sals[0] = sal;
9510 lsal.sals.nelts = 1;
9511 lsal.canonical = NULL;
9512
9513 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
9514 return;
9515 }
9516 else
9517 error (_("No default breakpoint address now."));
c906108c 9518 }
c906108c 9519 }
f00aae0f
KS
9520
9521 /* Force almost all breakpoints to be in terms of the
9522 current_source_symtab (which is decode_line_1's default).
9523 This should produce the results we want almost all of the
9524 time while leaving default_breakpoint_* alone.
9525
9526 ObjC: However, don't match an Objective-C method name which
9527 may have a '+' or '-' succeeded by a '['. */
9528 cursal = get_current_source_symtab_and_line ();
9529 if (last_displayed_sal_is_valid ())
c906108c 9530 {
f00aae0f 9531 const char *address = NULL;
cc80f267 9532
f00aae0f
KS
9533 if (event_location_type (location) == LINESPEC_LOCATION)
9534 address = get_linespec_location (location);
cc80f267 9535
f00aae0f
KS
9536 if (!cursal.symtab
9537 || (address != NULL
9538 && strchr ("+-", address[0]) != NULL
9539 && address[1] != '['))
9540 {
c2f4122d 9541 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f
KS
9542 get_last_displayed_symtab (),
9543 get_last_displayed_line (),
9544 canonical, NULL, NULL);
9545 return;
9546 }
c906108c 9547 }
f00aae0f 9548
c2f4122d 9549 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
f00aae0f 9550 cursal.symtab, cursal.line, canonical, NULL, NULL);
c3f6f71d 9551}
c906108c 9552
c906108c 9553
c3f6f71d 9554/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 9555 inserted as a breakpoint. If it can't throw an error. */
c906108c 9556
b9362cc7 9557static void
23e7acfb 9558breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
9559{
9560 int i;
cc59ec59 9561
c3f6f71d 9562 for (i = 0; i < sals->nelts; i++)
ee53e872 9563 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
9564}
9565
7a697b8d
SS
9566/* Fast tracepoints may have restrictions on valid locations. For
9567 instance, a fast tracepoint using a jump instead of a trap will
9568 likely have to overwrite more bytes than a trap would, and so can
9569 only be placed where the instruction is longer than the jump, or a
9570 multi-instruction sequence does not have a jump into the middle of
9571 it, etc. */
9572
9573static void
9574check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9575 struct symtabs_and_lines *sals)
9576{
9577 int i, rslt;
9578 struct symtab_and_line *sal;
9579 char *msg;
9580 struct cleanup *old_chain;
9581
9582 for (i = 0; i < sals->nelts; i++)
9583 {
f8eba3c6
TT
9584 struct gdbarch *sarch;
9585
7a697b8d
SS
9586 sal = &sals->sals[i];
9587
f8eba3c6
TT
9588 sarch = get_sal_arch (*sal);
9589 /* We fall back to GDBARCH if there is no architecture
9590 associated with SAL. */
9591 if (sarch == NULL)
9592 sarch = gdbarch;
6b940e6a 9593 rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, &msg);
7a697b8d
SS
9594 old_chain = make_cleanup (xfree, msg);
9595
9596 if (!rslt)
53c3572a 9597 error (_("May not have a fast tracepoint at %s%s"),
f8eba3c6 9598 paddress (sarch, sal->pc), (msg ? msg : ""));
7a697b8d
SS
9599
9600 do_cleanups (old_chain);
9601 }
9602}
9603
018d34a4
VP
9604/* Given TOK, a string specification of condition and thread, as
9605 accepted by the 'break' command, extract the condition
9606 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9607 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9608 If no condition is found, *COND_STRING is set to NULL.
9609 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9610
9611static void
bbc13ae3 9612find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9613 char **cond_string, int *thread, int *task,
9614 char **rest)
018d34a4
VP
9615{
9616 *cond_string = NULL;
9617 *thread = -1;
ed1d1739
KS
9618 *task = 0;
9619 *rest = NULL;
9620
018d34a4
VP
9621 while (tok && *tok)
9622 {
bbc13ae3 9623 const char *end_tok;
018d34a4 9624 int toklen;
bbc13ae3
KS
9625 const char *cond_start = NULL;
9626 const char *cond_end = NULL;
cc59ec59 9627
bbc13ae3 9628 tok = skip_spaces_const (tok);
e7e0cddf
SS
9629
9630 if ((*tok == '"' || *tok == ',') && rest)
9631 {
9632 *rest = savestring (tok, strlen (tok));
9633 return;
9634 }
9635
bbc13ae3 9636 end_tok = skip_to_space_const (tok);
d634f2de 9637
018d34a4 9638 toklen = end_tok - tok;
d634f2de 9639
018d34a4
VP
9640 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9641 {
9642 tok = cond_start = end_tok + 1;
4d01a485 9643 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
018d34a4 9644 cond_end = tok;
d634f2de 9645 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9646 }
9647 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9648 {
5d5658a1
PA
9649 const char *tmptok;
9650 struct thread_info *thr;
d634f2de 9651
018d34a4 9652 tok = end_tok + 1;
5d5658a1 9653 thr = parse_thread_id (tok, &tmptok);
018d34a4
VP
9654 if (tok == tmptok)
9655 error (_("Junk after thread keyword."));
5d5658a1 9656 *thread = thr->global_num;
bbc13ae3 9657 tok = tmptok;
018d34a4 9658 }
4a306c9a
JB
9659 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9660 {
9661 char *tmptok;
9662
9663 tok = end_tok + 1;
bbc13ae3 9664 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9665 if (tok == tmptok)
9666 error (_("Junk after task keyword."));
9667 if (!valid_task_id (*task))
b6199126 9668 error (_("Unknown task %d."), *task);
bbc13ae3 9669 tok = tmptok;
4a306c9a 9670 }
e7e0cddf
SS
9671 else if (rest)
9672 {
9673 *rest = savestring (tok, strlen (tok));
ccab2054 9674 return;
e7e0cddf 9675 }
018d34a4
VP
9676 else
9677 error (_("Junk at end of arguments."));
9678 }
9679}
9680
0fb4aa4b
PA
9681/* Decode a static tracepoint marker spec. */
9682
9683static struct symtabs_and_lines
f00aae0f 9684decode_static_tracepoint_spec (const char **arg_p)
0fb4aa4b
PA
9685{
9686 VEC(static_tracepoint_marker_p) *markers = NULL;
9687 struct symtabs_and_lines sals;
0fb4aa4b 9688 struct cleanup *old_chain;
f00aae0f
KS
9689 const char *p = &(*arg_p)[3];
9690 const char *endp;
0fb4aa4b
PA
9691 char *marker_str;
9692 int i;
9693
f00aae0f 9694 p = skip_spaces_const (p);
0fb4aa4b 9695
f00aae0f 9696 endp = skip_to_space_const (p);
0fb4aa4b
PA
9697
9698 marker_str = savestring (p, endp - p);
9699 old_chain = make_cleanup (xfree, marker_str);
9700
9701 markers = target_static_tracepoint_markers_by_strid (marker_str);
9702 if (VEC_empty(static_tracepoint_marker_p, markers))
9703 error (_("No known static tracepoint marker named %s"), marker_str);
9704
9705 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
8d749320 9706 sals.sals = XNEWVEC (struct symtab_and_line, sals.nelts);
0fb4aa4b
PA
9707
9708 for (i = 0; i < sals.nelts; i++)
9709 {
9710 struct static_tracepoint_marker *marker;
9711
9712 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9713
9714 init_sal (&sals.sals[i]);
9715
9716 sals.sals[i] = find_pc_line (marker->address, 0);
9717 sals.sals[i].pc = marker->address;
9718
9719 release_static_tracepoint_marker (marker);
9720 }
9721
9722 do_cleanups (old_chain);
9723
9724 *arg_p = endp;
9725 return sals;
9726}
9727
f00aae0f 9728/* See breakpoint.h. */
0101ce28 9729
8cdf0e15
VP
9730int
9731create_breakpoint (struct gdbarch *gdbarch,
f00aae0f 9732 const struct event_location *location, char *cond_string,
e7e0cddf 9733 int thread, char *extra_string,
f00aae0f 9734 int parse_extra,
0fb4aa4b 9735 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9736 int ignore_count,
9737 enum auto_boolean pending_break_support,
c0a91b2b 9738 const struct breakpoint_ops *ops,
44f238bb
PA
9739 int from_tty, int enabled, int internal,
9740 unsigned flags)
c3f6f71d 9741{
7efd8fc2 9742 struct linespec_result canonical;
c3f6f71d 9743 struct cleanup *old_chain;
80c99de1 9744 struct cleanup *bkpt_chain = NULL;
0101ce28 9745 int pending = 0;
4a306c9a 9746 int task = 0;
86b17b60 9747 int prev_bkpt_count = breakpoint_count;
c3f6f71d 9748
348d480f
PA
9749 gdb_assert (ops != NULL);
9750
f00aae0f
KS
9751 /* If extra_string isn't useful, set it to NULL. */
9752 if (extra_string != NULL && *extra_string == '\0')
9753 extra_string = NULL;
9754
7efd8fc2 9755 init_linespec_result (&canonical);
c3f6f71d 9756
492d29ea 9757 TRY
b78a6381 9758 {
f00aae0f 9759 ops->create_sals_from_location (location, &canonical, type_wanted);
b78a6381 9760 }
492d29ea 9761 CATCH (e, RETURN_MASK_ERROR)
0101ce28 9762 {
492d29ea
PA
9763 /* If caller is interested in rc value from parse, set
9764 value. */
9765 if (e.error == NOT_FOUND_ERROR)
0101ce28 9766 {
05ff989b
AC
9767 /* If pending breakpoint support is turned off, throw
9768 error. */
fa8d40ab
JJ
9769
9770 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
9771 throw_exception (e);
9772
9773 exception_print (gdb_stderr, e);
fa8d40ab 9774
05ff989b
AC
9775 /* If pending breakpoint support is auto query and the user
9776 selects no, then simply return the error code. */
059fb39f 9777 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
9778 && !nquery (_("Make %s pending on future shared library load? "),
9779 bptype_string (type_wanted)))
fd9b8c24 9780 return 0;
fa8d40ab 9781
05ff989b
AC
9782 /* At this point, either the user was queried about setting
9783 a pending breakpoint and selected yes, or pending
9784 breakpoint behavior is on and thus a pending breakpoint
9785 is defaulted on behalf of the user. */
f00aae0f 9786 pending = 1;
0101ce28 9787 }
492d29ea
PA
9788 else
9789 throw_exception (e);
0101ce28 9790 }
492d29ea
PA
9791 END_CATCH
9792
f00aae0f 9793 if (!pending && VEC_empty (linespec_sals, canonical.sals))
492d29ea 9794 return 0;
c3f6f71d 9795
4a64f543 9796 /* Create a chain of things that always need to be cleaned up. */
f8eba3c6 9797 old_chain = make_cleanup_destroy_linespec_result (&canonical);
c3f6f71d 9798
c3f6f71d
JM
9799 /* ----------------------------- SNIP -----------------------------
9800 Anything added to the cleanup chain beyond this point is assumed
9801 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
9802 then the memory is not reclaimed. */
9803 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 9804
c3f6f71d
JM
9805 /* Resolve all line numbers to PC's and verify that the addresses
9806 are ok for the target. */
0101ce28 9807 if (!pending)
f8eba3c6
TT
9808 {
9809 int ix;
9810 struct linespec_sals *iter;
9811
9812 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9813 breakpoint_sals_to_pc (&iter->sals);
9814 }
c3f6f71d 9815
7a697b8d 9816 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 9817 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6
TT
9818 {
9819 int ix;
9820 struct linespec_sals *iter;
9821
9822 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9823 check_fast_tracepoint_sals (gdbarch, &iter->sals);
9824 }
7a697b8d 9825
c3f6f71d
JM
9826 /* Verify that condition can be parsed, before setting any
9827 breakpoints. Allocate a separate condition expression for each
4a64f543 9828 breakpoint. */
0101ce28 9829 if (!pending)
c3f6f71d 9830 {
f00aae0f 9831 if (parse_extra)
72b2ff0e 9832 {
0878d0fa 9833 char *rest;
52d361e1
YQ
9834 struct linespec_sals *lsal;
9835
9836 lsal = VEC_index (linespec_sals, canonical.sals, 0);
9837
0878d0fa
YQ
9838 /* Here we only parse 'arg' to separate condition
9839 from thread number, so parsing in context of first
9840 sal is OK. When setting the breakpoint we'll
9841 re-parse it in context of each sal. */
9842
f00aae0f
KS
9843 find_condition_and_thread (extra_string, lsal->sals.sals[0].pc,
9844 &cond_string, &thread, &task, &rest);
0878d0fa
YQ
9845 if (cond_string)
9846 make_cleanup (xfree, cond_string);
9847 if (rest)
9848 make_cleanup (xfree, rest);
9849 if (rest)
9850 extra_string = rest;
f00aae0f
KS
9851 else
9852 extra_string = NULL;
72b2ff0e 9853 }
2f069f6f 9854 else
72b2ff0e 9855 {
f00aae0f
KS
9856 if (type_wanted != bp_dprintf
9857 && extra_string != NULL && *extra_string != '\0')
9858 error (_("Garbage '%s' at end of location"), extra_string);
0878d0fa
YQ
9859
9860 /* Create a private copy of condition string. */
9861 if (cond_string)
9862 {
9863 cond_string = xstrdup (cond_string);
9864 make_cleanup (xfree, cond_string);
9865 }
9866 /* Create a private copy of any extra string. */
9867 if (extra_string)
9868 {
9869 extra_string = xstrdup (extra_string);
9870 make_cleanup (xfree, extra_string);
9871 }
72b2ff0e 9872 }
0fb4aa4b 9873
52d361e1 9874 ops->create_breakpoints_sal (gdbarch, &canonical,
e7e0cddf 9875 cond_string, extra_string, type_wanted,
d9b3f62e
PA
9876 tempflag ? disp_del : disp_donttouch,
9877 thread, task, ignore_count, ops,
44f238bb 9878 from_tty, enabled, internal, flags);
c906108c 9879 }
0101ce28
JJ
9880 else
9881 {
0101ce28
JJ
9882 struct breakpoint *b;
9883
bfccc43c
YQ
9884 if (is_tracepoint_type (type_wanted))
9885 {
9886 struct tracepoint *t;
9887
4d01a485 9888 t = new tracepoint ();
bfccc43c
YQ
9889 b = &t->base;
9890 }
9891 else
4d01a485 9892 b = new breakpoint ();
bfccc43c
YQ
9893
9894 init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops);
f00aae0f 9895 b->location = copy_event_location (location);
bfccc43c 9896
f00aae0f
KS
9897 if (parse_extra)
9898 b->cond_string = NULL;
e12c7713
MK
9899 else
9900 {
9901 /* Create a private copy of condition string. */
9902 if (cond_string)
9903 {
9904 cond_string = xstrdup (cond_string);
9905 make_cleanup (xfree, cond_string);
9906 }
9907 b->cond_string = cond_string;
15630549 9908 b->thread = thread;
e12c7713 9909 }
f00aae0f
KS
9910
9911 /* Create a private copy of any extra string. */
9912 if (extra_string != NULL)
9913 {
9914 extra_string = xstrdup (extra_string);
9915 make_cleanup (xfree, extra_string);
9916 }
9917 b->extra_string = extra_string;
0101ce28 9918 b->ignore_count = ignore_count;
0101ce28 9919 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 9920 b->condition_not_parsed = 1;
41447f92 9921 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
9922 if ((type_wanted != bp_breakpoint
9923 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 9924 b->pspace = current_program_space;
8bea4e01 9925
bfccc43c 9926 install_breakpoint (internal, b, 0);
0101ce28
JJ
9927 }
9928
f8eba3c6 9929 if (VEC_length (linespec_sals, canonical.sals) > 1)
95a42b64 9930 {
3e43a32a
MS
9931 warning (_("Multiple breakpoints were set.\nUse the "
9932 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 9933 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
9934 }
9935
80c99de1
PA
9936 /* That's it. Discard the cleanups for data inserted into the
9937 breakpoint. */
9938 discard_cleanups (bkpt_chain);
9939 /* But cleanup everything else. */
c3f6f71d 9940 do_cleanups (old_chain);
217dc9e2 9941
80c99de1 9942 /* error call may happen here - have BKPT_CHAIN already discarded. */
44702360 9943 update_global_location_list (UGLL_MAY_INSERT);
fd9b8c24
PA
9944
9945 return 1;
c3f6f71d 9946}
c906108c 9947
348d480f 9948/* Set a breakpoint.
72b2ff0e
VP
9949 ARG is a string describing breakpoint address,
9950 condition, and thread.
9951 FLAG specifies if a breakpoint is hardware on,
9952 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9953 and BP_TEMPFLAG. */
348d480f 9954
98deb0da 9955static void
72b2ff0e 9956break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 9957{
72b2ff0e 9958 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
9959 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9960 ? bp_hardware_breakpoint
9961 : bp_breakpoint);
55aa24fb 9962 struct breakpoint_ops *ops;
f00aae0f
KS
9963 struct event_location *location;
9964 struct cleanup *cleanup;
9965
9966 location = string_to_event_location (&arg, current_language);
9967 cleanup = make_cleanup_delete_event_location (location);
55aa24fb
SDJ
9968
9969 /* Matching breakpoints on probes. */
5b56227b
KS
9970 if (location != NULL
9971 && event_location_type (location) == PROBE_LOCATION)
55aa24fb
SDJ
9972 ops = &bkpt_probe_breakpoint_ops;
9973 else
9974 ops = &bkpt_breakpoint_ops;
c3f6f71d 9975
8cdf0e15 9976 create_breakpoint (get_current_arch (),
f00aae0f
KS
9977 location,
9978 NULL, 0, arg, 1 /* parse arg */,
0fb4aa4b 9979 tempflag, type_wanted,
8cdf0e15
VP
9980 0 /* Ignore count */,
9981 pending_break_support,
55aa24fb 9982 ops,
8cdf0e15 9983 from_tty,
84f4c1fe 9984 1 /* enabled */,
44f238bb
PA
9985 0 /* internal */,
9986 0);
f00aae0f 9987 do_cleanups (cleanup);
c906108c
SS
9988}
9989
c906108c
SS
9990/* Helper function for break_command_1 and disassemble_command. */
9991
9992void
fba45db2 9993resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
9994{
9995 CORE_ADDR pc;
9996
9997 if (sal->pc == 0 && sal->symtab != NULL)
9998 {
9999 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 10000 error (_("No line %d in file \"%s\"."),
05cba821 10001 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 10002 sal->pc = pc;
6a048695 10003
4a64f543
MS
10004 /* If this SAL corresponds to a breakpoint inserted using a line
10005 number, then skip the function prologue if necessary. */
6a048695 10006 if (sal->explicit_line)
059acae7 10007 skip_prologue_sal (sal);
c906108c
SS
10008 }
10009
10010 if (sal->section == 0 && sal->symtab != NULL)
10011 {
346d1dfe 10012 const struct blockvector *bv;
3977b71f 10013 const struct block *b;
c5aa993b 10014 struct symbol *sym;
c906108c 10015
43f3e411
DE
10016 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
10017 SYMTAB_COMPUNIT (sal->symtab));
c906108c
SS
10018 if (bv != NULL)
10019 {
7f0df278 10020 sym = block_linkage_function (b);
c906108c
SS
10021 if (sym != NULL)
10022 {
eb822aa6
DE
10023 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
10024 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
10025 sym);
c906108c
SS
10026 }
10027 else
10028 {
4a64f543
MS
10029 /* It really is worthwhile to have the section, so we'll
10030 just have to look harder. This case can be executed
10031 if we have line numbers but no functions (as can
10032 happen in assembly source). */
c906108c 10033
7cbd4a93 10034 struct bound_minimal_symbol msym;
6c95b8df
PA
10035 struct cleanup *old_chain = save_current_space_and_thread ();
10036
10037 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
10038
10039 msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 10040 if (msym.minsym)
efd66ac6 10041 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
6c95b8df
PA
10042
10043 do_cleanups (old_chain);
c906108c
SS
10044 }
10045 }
10046 }
10047}
10048
10049void
fba45db2 10050break_command (char *arg, int from_tty)
c906108c 10051{
db107f19 10052 break_command_1 (arg, 0, from_tty);
c906108c
SS
10053}
10054
c906108c 10055void
fba45db2 10056tbreak_command (char *arg, int from_tty)
c906108c 10057{
db107f19 10058 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
10059}
10060
c906108c 10061static void
fba45db2 10062hbreak_command (char *arg, int from_tty)
c906108c 10063{
db107f19 10064 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
10065}
10066
10067static void
fba45db2 10068thbreak_command (char *arg, int from_tty)
c906108c 10069{
db107f19 10070 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
10071}
10072
10073static void
fba45db2 10074stop_command (char *arg, int from_tty)
c906108c 10075{
a3f17187 10076 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 10077Usage: stop in <function | address>\n\
a3f17187 10078 stop at <line>\n"));
c906108c
SS
10079}
10080
10081static void
fba45db2 10082stopin_command (char *arg, int from_tty)
c906108c
SS
10083{
10084 int badInput = 0;
10085
c5aa993b 10086 if (arg == (char *) NULL)
c906108c
SS
10087 badInput = 1;
10088 else if (*arg != '*')
10089 {
10090 char *argptr = arg;
10091 int hasColon = 0;
10092
4a64f543 10093 /* Look for a ':'. If this is a line number specification, then
53a5351d 10094 say it is bad, otherwise, it should be an address or
4a64f543 10095 function/method name. */
c906108c 10096 while (*argptr && !hasColon)
c5aa993b
JM
10097 {
10098 hasColon = (*argptr == ':');
10099 argptr++;
10100 }
c906108c
SS
10101
10102 if (hasColon)
c5aa993b 10103 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 10104 else
c5aa993b 10105 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
10106 }
10107
10108 if (badInput)
a3f17187 10109 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 10110 else
db107f19 10111 break_command_1 (arg, 0, from_tty);
c906108c
SS
10112}
10113
10114static void
fba45db2 10115stopat_command (char *arg, int from_tty)
c906108c
SS
10116{
10117 int badInput = 0;
10118
c5aa993b 10119 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
10120 badInput = 1;
10121 else
10122 {
10123 char *argptr = arg;
10124 int hasColon = 0;
10125
4a64f543
MS
10126 /* Look for a ':'. If there is a '::' then get out, otherwise
10127 it is probably a line number. */
c906108c 10128 while (*argptr && !hasColon)
c5aa993b
JM
10129 {
10130 hasColon = (*argptr == ':');
10131 argptr++;
10132 }
c906108c
SS
10133
10134 if (hasColon)
c5aa993b 10135 badInput = (*argptr == ':'); /* we have class::method */
c906108c 10136 else
c5aa993b 10137 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
10138 }
10139
10140 if (badInput)
a3f17187 10141 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 10142 else
db107f19 10143 break_command_1 (arg, 0, from_tty);
c906108c
SS
10144}
10145
e7e0cddf
SS
10146/* The dynamic printf command is mostly like a regular breakpoint, but
10147 with a prewired command list consisting of a single output command,
10148 built from extra arguments supplied on the dprintf command
10149 line. */
10150
da821c7b 10151static void
e7e0cddf
SS
10152dprintf_command (char *arg, int from_tty)
10153{
f00aae0f
KS
10154 struct event_location *location;
10155 struct cleanup *cleanup;
10156
10157 location = string_to_event_location (&arg, current_language);
10158 cleanup = make_cleanup_delete_event_location (location);
10159
10160 /* If non-NULL, ARG should have been advanced past the location;
10161 the next character must be ','. */
10162 if (arg != NULL)
10163 {
10164 if (arg[0] != ',' || arg[1] == '\0')
10165 error (_("Format string required"));
10166 else
10167 {
10168 /* Skip the comma. */
10169 ++arg;
10170 }
10171 }
10172
e7e0cddf 10173 create_breakpoint (get_current_arch (),
f00aae0f
KS
10174 location,
10175 NULL, 0, arg, 1 /* parse arg */,
e7e0cddf
SS
10176 0, bp_dprintf,
10177 0 /* Ignore count */,
10178 pending_break_support,
10179 &dprintf_breakpoint_ops,
10180 from_tty,
10181 1 /* enabled */,
10182 0 /* internal */,
10183 0);
f00aae0f 10184 do_cleanups (cleanup);
e7e0cddf
SS
10185}
10186
d3ce09f5
SS
10187static void
10188agent_printf_command (char *arg, int from_tty)
10189{
10190 error (_("May only run agent-printf on the target"));
10191}
10192
f1310107
TJB
10193/* Implement the "breakpoint_hit" breakpoint_ops method for
10194 ranged breakpoints. */
10195
10196static int
10197breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
10198 struct address_space *aspace,
09ac7c10
TT
10199 CORE_ADDR bp_addr,
10200 const struct target_waitstatus *ws)
f1310107 10201{
09ac7c10 10202 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 10203 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
10204 return 0;
10205
f1310107
TJB
10206 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
10207 bl->length, aspace, bp_addr);
10208}
10209
10210/* Implement the "resources_needed" breakpoint_ops method for
10211 ranged breakpoints. */
10212
10213static int
10214resources_needed_ranged_breakpoint (const struct bp_location *bl)
10215{
10216 return target_ranged_break_num_registers ();
10217}
10218
10219/* Implement the "print_it" breakpoint_ops method for
10220 ranged breakpoints. */
10221
10222static enum print_stop_action
348d480f 10223print_it_ranged_breakpoint (bpstat bs)
f1310107 10224{
348d480f 10225 struct breakpoint *b = bs->breakpoint_at;
f1310107 10226 struct bp_location *bl = b->loc;
79a45e25 10227 struct ui_out *uiout = current_uiout;
f1310107
TJB
10228
10229 gdb_assert (b->type == bp_hardware_breakpoint);
10230
10231 /* Ranged breakpoints have only one location. */
10232 gdb_assert (bl && bl->next == NULL);
10233
10234 annotate_breakpoint (b->number);
f303dbd6
PA
10235
10236 maybe_print_thread_hit_breakpoint (uiout);
10237
f1310107 10238 if (b->disposition == disp_del)
112e8700 10239 uiout->text ("Temporary ranged breakpoint ");
f1310107 10240 else
112e8700
SM
10241 uiout->text ("Ranged breakpoint ");
10242 if (uiout->is_mi_like_p ())
f1310107 10243 {
112e8700 10244 uiout->field_string ("reason",
f1310107 10245 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 10246 uiout->field_string ("disp", bpdisp_text (b->disposition));
f1310107 10247 }
112e8700
SM
10248 uiout->field_int ("bkptno", b->number);
10249 uiout->text (", ");
f1310107
TJB
10250
10251 return PRINT_SRC_AND_LOC;
10252}
10253
10254/* Implement the "print_one" breakpoint_ops method for
10255 ranged breakpoints. */
10256
10257static void
10258print_one_ranged_breakpoint (struct breakpoint *b,
10259 struct bp_location **last_loc)
10260{
10261 struct bp_location *bl = b->loc;
10262 struct value_print_options opts;
79a45e25 10263 struct ui_out *uiout = current_uiout;
f1310107
TJB
10264
10265 /* Ranged breakpoints have only one location. */
10266 gdb_assert (bl && bl->next == NULL);
10267
10268 get_user_print_options (&opts);
10269
10270 if (opts.addressprint)
10271 /* We don't print the address range here, it will be printed later
10272 by print_one_detail_ranged_breakpoint. */
112e8700 10273 uiout->field_skip ("addr");
f1310107
TJB
10274 annotate_field (5);
10275 print_breakpoint_location (b, bl);
10276 *last_loc = bl;
10277}
10278
10279/* Implement the "print_one_detail" breakpoint_ops method for
10280 ranged breakpoints. */
10281
10282static void
10283print_one_detail_ranged_breakpoint (const struct breakpoint *b,
10284 struct ui_out *uiout)
10285{
10286 CORE_ADDR address_start, address_end;
10287 struct bp_location *bl = b->loc;
d7e74731 10288 string_file stb;
f1310107
TJB
10289
10290 gdb_assert (bl);
10291
10292 address_start = bl->address;
10293 address_end = address_start + bl->length - 1;
10294
112e8700 10295 uiout->text ("\taddress range: ");
d7e74731
PA
10296 stb.printf ("[%s, %s]",
10297 print_core_address (bl->gdbarch, address_start),
10298 print_core_address (bl->gdbarch, address_end));
112e8700
SM
10299 uiout->field_stream ("addr", stb);
10300 uiout->text ("\n");
f1310107
TJB
10301}
10302
10303/* Implement the "print_mention" breakpoint_ops method for
10304 ranged breakpoints. */
10305
10306static void
10307print_mention_ranged_breakpoint (struct breakpoint *b)
10308{
10309 struct bp_location *bl = b->loc;
79a45e25 10310 struct ui_out *uiout = current_uiout;
f1310107
TJB
10311
10312 gdb_assert (bl);
10313 gdb_assert (b->type == bp_hardware_breakpoint);
10314
112e8700 10315 if (uiout->is_mi_like_p ())
f1310107
TJB
10316 return;
10317
10318 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
10319 b->number, paddress (bl->gdbarch, bl->address),
10320 paddress (bl->gdbarch, bl->address + bl->length - 1));
10321}
10322
10323/* Implement the "print_recreate" breakpoint_ops method for
10324 ranged breakpoints. */
10325
10326static void
10327print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
10328{
f00aae0f
KS
10329 fprintf_unfiltered (fp, "break-range %s, %s",
10330 event_location_to_string (b->location),
10331 event_location_to_string (b->location_range_end));
d9b3f62e 10332 print_recreate_thread (b, fp);
f1310107
TJB
10333}
10334
10335/* The breakpoint_ops structure to be used in ranged breakpoints. */
10336
2060206e 10337static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
10338
10339/* Find the address where the end of the breakpoint range should be
10340 placed, given the SAL of the end of the range. This is so that if
10341 the user provides a line number, the end of the range is set to the
10342 last instruction of the given line. */
10343
10344static CORE_ADDR
10345find_breakpoint_range_end (struct symtab_and_line sal)
10346{
10347 CORE_ADDR end;
10348
10349 /* If the user provided a PC value, use it. Otherwise,
10350 find the address of the end of the given location. */
10351 if (sal.explicit_pc)
10352 end = sal.pc;
10353 else
10354 {
10355 int ret;
10356 CORE_ADDR start;
10357
10358 ret = find_line_pc_range (sal, &start, &end);
10359 if (!ret)
10360 error (_("Could not find location of the end of the range."));
10361
10362 /* find_line_pc_range returns the start of the next line. */
10363 end--;
10364 }
10365
10366 return end;
10367}
10368
10369/* Implement the "break-range" CLI command. */
10370
10371static void
10372break_range_command (char *arg, int from_tty)
10373{
870f88f7 10374 char *arg_start, *addr_string_start;
f1310107
TJB
10375 struct linespec_result canonical_start, canonical_end;
10376 int bp_count, can_use_bp, length;
10377 CORE_ADDR end;
10378 struct breakpoint *b;
10379 struct symtab_and_line sal_start, sal_end;
f1310107 10380 struct cleanup *cleanup_bkpt;
f8eba3c6 10381 struct linespec_sals *lsal_start, *lsal_end;
f00aae0f 10382 struct event_location *start_location, *end_location;
f1310107
TJB
10383
10384 /* We don't support software ranged breakpoints. */
10385 if (target_ranged_break_num_registers () < 0)
10386 error (_("This target does not support hardware ranged breakpoints."));
10387
10388 bp_count = hw_breakpoint_used_count ();
10389 bp_count += target_ranged_break_num_registers ();
10390 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
10391 bp_count, 0);
10392 if (can_use_bp < 0)
10393 error (_("Hardware breakpoints used exceeds limit."));
10394
f8eba3c6 10395 arg = skip_spaces (arg);
f1310107
TJB
10396 if (arg == NULL || arg[0] == '\0')
10397 error(_("No address range specified."));
10398
f1310107
TJB
10399 init_linespec_result (&canonical_start);
10400
f8eba3c6 10401 arg_start = arg;
f00aae0f
KS
10402 start_location = string_to_event_location (&arg, current_language);
10403 cleanup_bkpt = make_cleanup_delete_event_location (start_location);
10404 parse_breakpoint_sals (start_location, &canonical_start);
10405 make_cleanup_destroy_linespec_result (&canonical_start);
f1310107
TJB
10406
10407 if (arg[0] != ',')
10408 error (_("Too few arguments."));
f8eba3c6 10409 else if (VEC_empty (linespec_sals, canonical_start.sals))
f1310107 10410 error (_("Could not find location of the beginning of the range."));
f8eba3c6
TT
10411
10412 lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0);
10413
10414 if (VEC_length (linespec_sals, canonical_start.sals) > 1
10415 || lsal_start->sals.nelts != 1)
f1310107
TJB
10416 error (_("Cannot create a ranged breakpoint with multiple locations."));
10417
f8eba3c6
TT
10418 sal_start = lsal_start->sals.sals[0];
10419 addr_string_start = savestring (arg_start, arg - arg_start);
10420 make_cleanup (xfree, addr_string_start);
f1310107
TJB
10421
10422 arg++; /* Skip the comma. */
f8eba3c6 10423 arg = skip_spaces (arg);
f1310107
TJB
10424
10425 /* Parse the end location. */
10426
f1310107
TJB
10427 init_linespec_result (&canonical_end);
10428 arg_start = arg;
10429
f8eba3c6 10430 /* We call decode_line_full directly here instead of using
f1310107
TJB
10431 parse_breakpoint_sals because we need to specify the start location's
10432 symtab and line as the default symtab and line for the end of the
10433 range. This makes it possible to have ranges like "foo.c:27, +14",
10434 where +14 means 14 lines from the start location. */
f00aae0f
KS
10435 end_location = string_to_event_location (&arg, current_language);
10436 make_cleanup_delete_event_location (end_location);
c2f4122d 10437 decode_line_full (end_location, DECODE_LINE_FUNFIRSTLINE, NULL,
f8eba3c6
TT
10438 sal_start.symtab, sal_start.line,
10439 &canonical_end, NULL, NULL);
10440
10441 make_cleanup_destroy_linespec_result (&canonical_end);
f1310107 10442
f8eba3c6 10443 if (VEC_empty (linespec_sals, canonical_end.sals))
f1310107 10444 error (_("Could not find location of the end of the range."));
f8eba3c6
TT
10445
10446 lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0);
10447 if (VEC_length (linespec_sals, canonical_end.sals) > 1
10448 || lsal_end->sals.nelts != 1)
f1310107
TJB
10449 error (_("Cannot create a ranged breakpoint with multiple locations."));
10450
f8eba3c6 10451 sal_end = lsal_end->sals.sals[0];
f1310107
TJB
10452
10453 end = find_breakpoint_range_end (sal_end);
10454 if (sal_start.pc > end)
177b42fe 10455 error (_("Invalid address range, end precedes start."));
f1310107
TJB
10456
10457 length = end - sal_start.pc + 1;
10458 if (length < 0)
10459 /* Length overflowed. */
10460 error (_("Address range too large."));
10461 else if (length == 1)
10462 {
10463 /* This range is simple enough to be handled by
10464 the `hbreak' command. */
10465 hbreak_command (addr_string_start, 1);
10466
10467 do_cleanups (cleanup_bkpt);
10468
10469 return;
10470 }
10471
10472 /* Now set up the breakpoint. */
10473 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 10474 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
10475 set_breakpoint_count (breakpoint_count + 1);
10476 b->number = breakpoint_count;
10477 b->disposition = disp_donttouch;
f00aae0f
KS
10478 b->location = copy_event_location (start_location);
10479 b->location_range_end = copy_event_location (end_location);
f1310107
TJB
10480 b->loc->length = length;
10481
f8eba3c6 10482 do_cleanups (cleanup_bkpt);
f1310107
TJB
10483
10484 mention (b);
8d3788bd 10485 observer_notify_breakpoint_created (b);
44702360 10486 update_global_location_list (UGLL_MAY_INSERT);
f1310107
TJB
10487}
10488
4a64f543
MS
10489/* Return non-zero if EXP is verified as constant. Returned zero
10490 means EXP is variable. Also the constant detection may fail for
10491 some constant expressions and in such case still falsely return
10492 zero. */
2e6e3d9c 10493
65d79d4b
SDJ
10494static int
10495watchpoint_exp_is_const (const struct expression *exp)
10496{
10497 int i = exp->nelts;
10498
10499 while (i > 0)
10500 {
10501 int oplenp, argsp;
10502
10503 /* We are only interested in the descriptor of each element. */
10504 operator_length (exp, i, &oplenp, &argsp);
10505 i -= oplenp;
10506
10507 switch (exp->elts[i].opcode)
10508 {
10509 case BINOP_ADD:
10510 case BINOP_SUB:
10511 case BINOP_MUL:
10512 case BINOP_DIV:
10513 case BINOP_REM:
10514 case BINOP_MOD:
10515 case BINOP_LSH:
10516 case BINOP_RSH:
10517 case BINOP_LOGICAL_AND:
10518 case BINOP_LOGICAL_OR:
10519 case BINOP_BITWISE_AND:
10520 case BINOP_BITWISE_IOR:
10521 case BINOP_BITWISE_XOR:
10522 case BINOP_EQUAL:
10523 case BINOP_NOTEQUAL:
10524 case BINOP_LESS:
10525 case BINOP_GTR:
10526 case BINOP_LEQ:
10527 case BINOP_GEQ:
10528 case BINOP_REPEAT:
10529 case BINOP_COMMA:
10530 case BINOP_EXP:
10531 case BINOP_MIN:
10532 case BINOP_MAX:
10533 case BINOP_INTDIV:
10534 case BINOP_CONCAT:
65d79d4b
SDJ
10535 case TERNOP_COND:
10536 case TERNOP_SLICE:
65d79d4b
SDJ
10537
10538 case OP_LONG:
10539 case OP_DOUBLE:
10540 case OP_DECFLOAT:
10541 case OP_LAST:
10542 case OP_COMPLEX:
10543 case OP_STRING:
65d79d4b
SDJ
10544 case OP_ARRAY:
10545 case OP_TYPE:
608b4967
TT
10546 case OP_TYPEOF:
10547 case OP_DECLTYPE:
6e72ca20 10548 case OP_TYPEID:
65d79d4b
SDJ
10549 case OP_NAME:
10550 case OP_OBJC_NSSTRING:
10551
10552 case UNOP_NEG:
10553 case UNOP_LOGICAL_NOT:
10554 case UNOP_COMPLEMENT:
10555 case UNOP_ADDR:
10556 case UNOP_HIGH:
aeaa2474 10557 case UNOP_CAST:
9eaf6705
TT
10558
10559 case UNOP_CAST_TYPE:
10560 case UNOP_REINTERPRET_CAST:
10561 case UNOP_DYNAMIC_CAST:
4a64f543
MS
10562 /* Unary, binary and ternary operators: We have to check
10563 their operands. If they are constant, then so is the
10564 result of that operation. For instance, if A and B are
10565 determined to be constants, then so is "A + B".
10566
10567 UNOP_IND is one exception to the rule above, because the
10568 value of *ADDR is not necessarily a constant, even when
10569 ADDR is. */
65d79d4b
SDJ
10570 break;
10571
10572 case OP_VAR_VALUE:
10573 /* Check whether the associated symbol is a constant.
4a64f543 10574
65d79d4b 10575 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
10576 possible that a buggy compiler could mark a variable as
10577 constant even when it is not, and TYPE_CONST would return
10578 true in this case, while SYMBOL_CLASS wouldn't.
10579
10580 We also have to check for function symbols because they
10581 are always constant. */
65d79d4b
SDJ
10582 {
10583 struct symbol *s = exp->elts[i + 2].symbol;
10584
10585 if (SYMBOL_CLASS (s) != LOC_BLOCK
10586 && SYMBOL_CLASS (s) != LOC_CONST
10587 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10588 return 0;
10589 break;
10590 }
10591
10592 /* The default action is to return 0 because we are using
10593 the optimistic approach here: If we don't know something,
10594 then it is not a constant. */
10595 default:
10596 return 0;
10597 }
10598 }
10599
10600 return 1;
10601}
10602
3a5c3e22
PA
10603/* Implement the "dtor" breakpoint_ops method for watchpoints. */
10604
10605static void
10606dtor_watchpoint (struct breakpoint *self)
10607{
10608 struct watchpoint *w = (struct watchpoint *) self;
10609
3a5c3e22
PA
10610 xfree (w->exp_string);
10611 xfree (w->exp_string_reparse);
10612 value_free (w->val);
10613
10614 base_breakpoint_ops.dtor (self);
10615}
10616
348d480f
PA
10617/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10618
10619static void
10620re_set_watchpoint (struct breakpoint *b)
10621{
3a5c3e22
PA
10622 struct watchpoint *w = (struct watchpoint *) b;
10623
348d480f
PA
10624 /* Watchpoint can be either on expression using entirely global
10625 variables, or it can be on local variables.
10626
10627 Watchpoints of the first kind are never auto-deleted, and even
10628 persist across program restarts. Since they can use variables
10629 from shared libraries, we need to reparse expression as libraries
10630 are loaded and unloaded.
10631
10632 Watchpoints on local variables can also change meaning as result
10633 of solib event. For example, if a watchpoint uses both a local
10634 and a global variables in expression, it's a local watchpoint,
10635 but unloading of a shared library will make the expression
10636 invalid. This is not a very common use case, but we still
10637 re-evaluate expression, to avoid surprises to the user.
10638
10639 Note that for local watchpoints, we re-evaluate it only if
10640 watchpoints frame id is still valid. If it's not, it means the
10641 watchpoint is out of scope and will be deleted soon. In fact,
10642 I'm not sure we'll ever be called in this case.
10643
10644 If a local watchpoint's frame id is still valid, then
3a5c3e22 10645 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 10646
3a5c3e22
PA
10647 Don't do anything about disabled watchpoints, since they will be
10648 reevaluated again when enabled. */
10649 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
10650}
10651
77b06cd7
TJB
10652/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10653
10654static int
10655insert_watchpoint (struct bp_location *bl)
10656{
3a5c3e22
PA
10657 struct watchpoint *w = (struct watchpoint *) bl->owner;
10658 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10659
10660 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10661 w->cond_exp.get ());
77b06cd7
TJB
10662}
10663
10664/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10665
10666static int
73971819 10667remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
77b06cd7 10668{
3a5c3e22
PA
10669 struct watchpoint *w = (struct watchpoint *) bl->owner;
10670 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10671
10672 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
4d01a485 10673 w->cond_exp.get ());
e09342b5
TJB
10674}
10675
e09342b5 10676static int
348d480f 10677breakpoint_hit_watchpoint (const struct bp_location *bl,
09ac7c10
TT
10678 struct address_space *aspace, CORE_ADDR bp_addr,
10679 const struct target_waitstatus *ws)
e09342b5 10680{
348d480f 10681 struct breakpoint *b = bl->owner;
3a5c3e22 10682 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10683
348d480f
PA
10684 /* Continuable hardware watchpoints are treated as non-existent if the
10685 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10686 some data address). Otherwise gdb won't stop on a break instruction
10687 in the code (not from a breakpoint) when a hardware watchpoint has
10688 been defined. Also skip watchpoints which we know did not trigger
10689 (did not match the data address). */
10690 if (is_hardware_watchpoint (b)
3a5c3e22 10691 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10692 return 0;
9c06b0b4 10693
348d480f 10694 return 1;
9c06b0b4
TJB
10695}
10696
348d480f
PA
10697static void
10698check_status_watchpoint (bpstat bs)
9c06b0b4 10699{
348d480f 10700 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10701
348d480f 10702 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10703}
10704
10705/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10706 hardware watchpoints. */
9c06b0b4
TJB
10707
10708static int
348d480f 10709resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10710{
3a5c3e22
PA
10711 struct watchpoint *w = (struct watchpoint *) bl->owner;
10712 int length = w->exact? 1 : bl->length;
348d480f
PA
10713
10714 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10715}
10716
10717/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10718 hardware watchpoints. */
9c06b0b4
TJB
10719
10720static int
348d480f 10721works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10722{
efa80663
PA
10723 /* Read and access watchpoints only work with hardware support. */
10724 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10725}
10726
9c06b0b4 10727static enum print_stop_action
348d480f 10728print_it_watchpoint (bpstat bs)
9c06b0b4 10729{
348d480f
PA
10730 struct cleanup *old_chain;
10731 struct breakpoint *b;
348d480f 10732 enum print_stop_action result;
3a5c3e22 10733 struct watchpoint *w;
79a45e25 10734 struct ui_out *uiout = current_uiout;
348d480f
PA
10735
10736 gdb_assert (bs->bp_location_at != NULL);
10737
348d480f 10738 b = bs->breakpoint_at;
3a5c3e22 10739 w = (struct watchpoint *) b;
348d480f 10740
d7e74731 10741 old_chain = make_cleanup (null_cleanup, NULL);
9c06b0b4 10742
f303dbd6
PA
10743 annotate_watchpoint (b->number);
10744 maybe_print_thread_hit_breakpoint (uiout);
10745
d7e74731
PA
10746 string_file stb;
10747
9c06b0b4
TJB
10748 switch (b->type)
10749 {
348d480f 10750 case bp_watchpoint:
9c06b0b4 10751 case bp_hardware_watchpoint:
112e8700
SM
10752 if (uiout->is_mi_like_p ())
10753 uiout->field_string
10754 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10755 mention (b);
10756 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
112e8700 10757 uiout->text ("\nOld value = ");
d7e74731 10758 watchpoint_value_print (bs->old_val, &stb);
112e8700
SM
10759 uiout->field_stream ("old", stb);
10760 uiout->text ("\nNew value = ");
d7e74731 10761 watchpoint_value_print (w->val, &stb);
112e8700
SM
10762 uiout->field_stream ("new", stb);
10763 uiout->text ("\n");
348d480f
PA
10764 /* More than one watchpoint may have been triggered. */
10765 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10766 break;
10767
10768 case bp_read_watchpoint:
112e8700
SM
10769 if (uiout->is_mi_like_p ())
10770 uiout->field_string
10771 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10772 mention (b);
10773 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
112e8700 10774 uiout->text ("\nValue = ");
d7e74731 10775 watchpoint_value_print (w->val, &stb);
112e8700
SM
10776 uiout->field_stream ("value", stb);
10777 uiout->text ("\n");
348d480f 10778 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10779 break;
10780
10781 case bp_access_watchpoint:
348d480f
PA
10782 if (bs->old_val != NULL)
10783 {
112e8700
SM
10784 if (uiout->is_mi_like_p ())
10785 uiout->field_string
10786 ("reason",
348d480f
PA
10787 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10788 mention (b);
10789 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
112e8700 10790 uiout->text ("\nOld value = ");
d7e74731 10791 watchpoint_value_print (bs->old_val, &stb);
112e8700
SM
10792 uiout->field_stream ("old", stb);
10793 uiout->text ("\nNew value = ");
348d480f
PA
10794 }
10795 else
10796 {
10797 mention (b);
112e8700
SM
10798 if (uiout->is_mi_like_p ())
10799 uiout->field_string
10800 ("reason",
348d480f
PA
10801 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10802 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
112e8700 10803 uiout->text ("\nValue = ");
348d480f 10804 }
d7e74731 10805 watchpoint_value_print (w->val, &stb);
112e8700
SM
10806 uiout->field_stream ("new", stb);
10807 uiout->text ("\n");
348d480f 10808 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10809 break;
10810 default:
348d480f 10811 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10812 }
10813
348d480f
PA
10814 do_cleanups (old_chain);
10815 return result;
10816}
10817
10818/* Implement the "print_mention" breakpoint_ops method for hardware
10819 watchpoints. */
10820
10821static void
10822print_mention_watchpoint (struct breakpoint *b)
10823{
10824 struct cleanup *ui_out_chain;
3a5c3e22 10825 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10826 struct ui_out *uiout = current_uiout;
348d480f
PA
10827
10828 switch (b->type)
10829 {
10830 case bp_watchpoint:
112e8700 10831 uiout->text ("Watchpoint ");
348d480f
PA
10832 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10833 break;
10834 case bp_hardware_watchpoint:
112e8700 10835 uiout->text ("Hardware watchpoint ");
348d480f
PA
10836 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10837 break;
10838 case bp_read_watchpoint:
112e8700 10839 uiout->text ("Hardware read watchpoint ");
348d480f
PA
10840 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
10841 break;
10842 case bp_access_watchpoint:
112e8700 10843 uiout->text ("Hardware access (read/write) watchpoint ");
348d480f
PA
10844 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
10845 break;
10846 default:
10847 internal_error (__FILE__, __LINE__,
10848 _("Invalid hardware watchpoint type."));
10849 }
10850
112e8700
SM
10851 uiout->field_int ("number", b->number);
10852 uiout->text (": ");
10853 uiout->field_string ("exp", w->exp_string);
348d480f
PA
10854 do_cleanups (ui_out_chain);
10855}
10856
10857/* Implement the "print_recreate" breakpoint_ops method for
10858 watchpoints. */
10859
10860static void
10861print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10862{
3a5c3e22
PA
10863 struct watchpoint *w = (struct watchpoint *) b;
10864
348d480f
PA
10865 switch (b->type)
10866 {
10867 case bp_watchpoint:
10868 case bp_hardware_watchpoint:
10869 fprintf_unfiltered (fp, "watch");
10870 break;
10871 case bp_read_watchpoint:
10872 fprintf_unfiltered (fp, "rwatch");
10873 break;
10874 case bp_access_watchpoint:
10875 fprintf_unfiltered (fp, "awatch");
10876 break;
10877 default:
10878 internal_error (__FILE__, __LINE__,
10879 _("Invalid watchpoint type."));
10880 }
10881
3a5c3e22 10882 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 10883 print_recreate_thread (b, fp);
348d480f
PA
10884}
10885
427cd150
TT
10886/* Implement the "explains_signal" breakpoint_ops method for
10887 watchpoints. */
10888
47591c29 10889static int
427cd150
TT
10890explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10891{
10892 /* A software watchpoint cannot cause a signal other than
10893 GDB_SIGNAL_TRAP. */
10894 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 10895 return 0;
427cd150 10896
47591c29 10897 return 1;
427cd150
TT
10898}
10899
348d480f
PA
10900/* The breakpoint_ops structure to be used in hardware watchpoints. */
10901
2060206e 10902static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
10903
10904/* Implement the "insert" breakpoint_ops method for
10905 masked hardware watchpoints. */
10906
10907static int
10908insert_masked_watchpoint (struct bp_location *bl)
10909{
3a5c3e22
PA
10910 struct watchpoint *w = (struct watchpoint *) bl->owner;
10911
10912 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10913 bl->watchpoint_type);
10914}
10915
10916/* Implement the "remove" breakpoint_ops method for
10917 masked hardware watchpoints. */
10918
10919static int
73971819 10920remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
348d480f 10921{
3a5c3e22
PA
10922 struct watchpoint *w = (struct watchpoint *) bl->owner;
10923
10924 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10925 bl->watchpoint_type);
10926}
10927
10928/* Implement the "resources_needed" breakpoint_ops method for
10929 masked hardware watchpoints. */
10930
10931static int
10932resources_needed_masked_watchpoint (const struct bp_location *bl)
10933{
3a5c3e22
PA
10934 struct watchpoint *w = (struct watchpoint *) bl->owner;
10935
10936 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
10937}
10938
10939/* Implement the "works_in_software_mode" breakpoint_ops method for
10940 masked hardware watchpoints. */
10941
10942static int
10943works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10944{
10945 return 0;
10946}
10947
10948/* Implement the "print_it" breakpoint_ops method for
10949 masked hardware watchpoints. */
10950
10951static enum print_stop_action
10952print_it_masked_watchpoint (bpstat bs)
10953{
10954 struct breakpoint *b = bs->breakpoint_at;
79a45e25 10955 struct ui_out *uiout = current_uiout;
348d480f
PA
10956
10957 /* Masked watchpoints have only one location. */
10958 gdb_assert (b->loc && b->loc->next == NULL);
10959
f303dbd6
PA
10960 annotate_watchpoint (b->number);
10961 maybe_print_thread_hit_breakpoint (uiout);
10962
348d480f
PA
10963 switch (b->type)
10964 {
10965 case bp_hardware_watchpoint:
112e8700
SM
10966 if (uiout->is_mi_like_p ())
10967 uiout->field_string
10968 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10969 break;
10970
10971 case bp_read_watchpoint:
112e8700
SM
10972 if (uiout->is_mi_like_p ())
10973 uiout->field_string
10974 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10975 break;
10976
10977 case bp_access_watchpoint:
112e8700
SM
10978 if (uiout->is_mi_like_p ())
10979 uiout->field_string
10980 ("reason",
348d480f
PA
10981 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10982 break;
10983 default:
10984 internal_error (__FILE__, __LINE__,
10985 _("Invalid hardware watchpoint type."));
10986 }
10987
10988 mention (b);
112e8700 10989 uiout->text (_("\n\
9c06b0b4
TJB
10990Check the underlying instruction at PC for the memory\n\
10991address and value which triggered this watchpoint.\n"));
112e8700 10992 uiout->text ("\n");
9c06b0b4
TJB
10993
10994 /* More than one watchpoint may have been triggered. */
10995 return PRINT_UNKNOWN;
10996}
10997
10998/* Implement the "print_one_detail" breakpoint_ops method for
10999 masked hardware watchpoints. */
11000
11001static void
11002print_one_detail_masked_watchpoint (const struct breakpoint *b,
11003 struct ui_out *uiout)
11004{
3a5c3e22
PA
11005 struct watchpoint *w = (struct watchpoint *) b;
11006
9c06b0b4
TJB
11007 /* Masked watchpoints have only one location. */
11008 gdb_assert (b->loc && b->loc->next == NULL);
11009
112e8700
SM
11010 uiout->text ("\tmask ");
11011 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
11012 uiout->text ("\n");
9c06b0b4
TJB
11013}
11014
11015/* Implement the "print_mention" breakpoint_ops method for
11016 masked hardware watchpoints. */
11017
11018static void
11019print_mention_masked_watchpoint (struct breakpoint *b)
11020{
3a5c3e22 11021 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 11022 struct ui_out *uiout = current_uiout;
9c06b0b4
TJB
11023 struct cleanup *ui_out_chain;
11024
11025 switch (b->type)
11026 {
11027 case bp_hardware_watchpoint:
112e8700 11028 uiout->text ("Masked hardware watchpoint ");
9c06b0b4
TJB
11029 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11030 break;
11031 case bp_read_watchpoint:
112e8700 11032 uiout->text ("Masked hardware read watchpoint ");
9c06b0b4
TJB
11033 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
11034 break;
11035 case bp_access_watchpoint:
112e8700 11036 uiout->text ("Masked hardware access (read/write) watchpoint ");
9c06b0b4
TJB
11037 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
11038 break;
11039 default:
11040 internal_error (__FILE__, __LINE__,
11041 _("Invalid hardware watchpoint type."));
11042 }
11043
112e8700
SM
11044 uiout->field_int ("number", b->number);
11045 uiout->text (": ");
11046 uiout->field_string ("exp", w->exp_string);
9c06b0b4
TJB
11047 do_cleanups (ui_out_chain);
11048}
11049
11050/* Implement the "print_recreate" breakpoint_ops method for
11051 masked hardware watchpoints. */
11052
11053static void
11054print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
11055{
3a5c3e22 11056 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
11057 char tmp[40];
11058
11059 switch (b->type)
11060 {
11061 case bp_hardware_watchpoint:
11062 fprintf_unfiltered (fp, "watch");
11063 break;
11064 case bp_read_watchpoint:
11065 fprintf_unfiltered (fp, "rwatch");
11066 break;
11067 case bp_access_watchpoint:
11068 fprintf_unfiltered (fp, "awatch");
11069 break;
11070 default:
11071 internal_error (__FILE__, __LINE__,
11072 _("Invalid hardware watchpoint type."));
11073 }
11074
3a5c3e22
PA
11075 sprintf_vma (tmp, w->hw_wp_mask);
11076 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
d9b3f62e 11077 print_recreate_thread (b, fp);
9c06b0b4
TJB
11078}
11079
11080/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
11081
2060206e 11082static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
11083
11084/* Tell whether the given watchpoint is a masked hardware watchpoint. */
11085
11086static int
11087is_masked_watchpoint (const struct breakpoint *b)
11088{
11089 return b->ops == &masked_watchpoint_breakpoint_ops;
11090}
11091
53a5351d
JM
11092/* accessflag: hw_write: watch write,
11093 hw_read: watch read,
11094 hw_access: watch access (read or write) */
c906108c 11095static void
bbc13ae3 11096watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 11097 int just_location, int internal)
c906108c 11098{
d983da9c 11099 struct breakpoint *b, *scope_breakpoint = NULL;
270140bd 11100 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 11101 struct value *val, *mark, *result;
bb9d5f81 11102 int saved_bitpos = 0, saved_bitsize = 0;
c906108c 11103 struct frame_info *frame;
bbc13ae3
KS
11104 const char *exp_start = NULL;
11105 const char *exp_end = NULL;
11106 const char *tok, *end_tok;
9c06b0b4 11107 int toklen = -1;
bbc13ae3
KS
11108 const char *cond_start = NULL;
11109 const char *cond_end = NULL;
c906108c 11110 enum bptype bp_type;
37e4754d 11111 int thread = -1;
0cf6dd15 11112 int pc = 0;
9c06b0b4
TJB
11113 /* Flag to indicate whether we are going to use masks for
11114 the hardware watchpoint. */
11115 int use_mask = 0;
11116 CORE_ADDR mask = 0;
3a5c3e22 11117 struct watchpoint *w;
bbc13ae3
KS
11118 char *expression;
11119 struct cleanup *back_to;
c906108c 11120
37e4754d
LM
11121 /* Make sure that we actually have parameters to parse. */
11122 if (arg != NULL && arg[0] != '\0')
11123 {
bbc13ae3
KS
11124 const char *value_start;
11125
11126 exp_end = arg + strlen (arg);
37e4754d 11127
9c06b0b4
TJB
11128 /* Look for "parameter value" pairs at the end
11129 of the arguments string. */
bbc13ae3 11130 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
11131 {
11132 /* Skip whitespace at the end of the argument list. */
11133 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11134 tok--;
11135
11136 /* Find the beginning of the last token.
11137 This is the value of the parameter. */
11138 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11139 tok--;
11140 value_start = tok + 1;
11141
11142 /* Skip whitespace. */
11143 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11144 tok--;
11145
11146 end_tok = tok;
11147
11148 /* Find the beginning of the second to last token.
11149 This is the parameter itself. */
11150 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11151 tok--;
11152 tok++;
11153 toklen = end_tok - tok + 1;
11154
61012eef 11155 if (toklen == 6 && startswith (tok, "thread"))
9c06b0b4 11156 {
5d5658a1 11157 struct thread_info *thr;
9c06b0b4
TJB
11158 /* At this point we've found a "thread" token, which means
11159 the user is trying to set a watchpoint that triggers
11160 only in a specific thread. */
5d5658a1 11161 const char *endp;
37e4754d 11162
9c06b0b4
TJB
11163 if (thread != -1)
11164 error(_("You can specify only one thread."));
37e4754d 11165
9c06b0b4 11166 /* Extract the thread ID from the next token. */
5d5658a1 11167 thr = parse_thread_id (value_start, &endp);
37e4754d 11168
5d5658a1 11169 /* Check if the user provided a valid thread ID. */
9c06b0b4 11170 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
5d5658a1 11171 invalid_thread_id_error (value_start);
9c06b0b4 11172
5d5658a1 11173 thread = thr->global_num;
9c06b0b4 11174 }
61012eef 11175 else if (toklen == 4 && startswith (tok, "mask"))
9c06b0b4
TJB
11176 {
11177 /* We've found a "mask" token, which means the user wants to
11178 create a hardware watchpoint that is going to have the mask
11179 facility. */
11180 struct value *mask_value, *mark;
37e4754d 11181
9c06b0b4
TJB
11182 if (use_mask)
11183 error(_("You can specify only one mask."));
37e4754d 11184
9c06b0b4 11185 use_mask = just_location = 1;
37e4754d 11186
9c06b0b4
TJB
11187 mark = value_mark ();
11188 mask_value = parse_to_comma_and_eval (&value_start);
11189 mask = value_as_address (mask_value);
11190 value_free_to_mark (mark);
11191 }
11192 else
11193 /* We didn't recognize what we found. We should stop here. */
11194 break;
37e4754d 11195
9c06b0b4
TJB
11196 /* Truncate the string and get rid of the "parameter value" pair before
11197 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 11198 exp_end = tok;
9c06b0b4 11199 }
37e4754d 11200 }
bbc13ae3
KS
11201 else
11202 exp_end = arg;
37e4754d 11203
bbc13ae3
KS
11204 /* Parse the rest of the arguments. From here on out, everything
11205 is in terms of a newly allocated string instead of the original
11206 ARG. */
c906108c 11207 innermost_block = NULL;
bbc13ae3
KS
11208 expression = savestring (arg, exp_end - arg);
11209 back_to = make_cleanup (xfree, expression);
11210 exp_start = arg = expression;
4d01a485 11211 expression_up exp = parse_exp_1 (&arg, 0, 0, 0);
c906108c 11212 exp_end = arg;
fa8a61dc
TT
11213 /* Remove trailing whitespace from the expression before saving it.
11214 This makes the eventual display of the expression string a bit
11215 prettier. */
11216 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
11217 --exp_end;
11218
65d79d4b 11219 /* Checking if the expression is not constant. */
4d01a485 11220 if (watchpoint_exp_is_const (exp.get ()))
65d79d4b
SDJ
11221 {
11222 int len;
11223
11224 len = exp_end - exp_start;
11225 while (len > 0 && isspace (exp_start[len - 1]))
11226 len--;
11227 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
11228 }
11229
c906108c
SS
11230 exp_valid_block = innermost_block;
11231 mark = value_mark ();
4d01a485 11232 fetch_subexp_value (exp.get (), &pc, &val, &result, NULL, just_location);
06a64a0b 11233
bb9d5f81
PP
11234 if (val != NULL && just_location)
11235 {
11236 saved_bitpos = value_bitpos (val);
11237 saved_bitsize = value_bitsize (val);
11238 }
11239
06a64a0b
TT
11240 if (just_location)
11241 {
9c06b0b4
TJB
11242 int ret;
11243
06a64a0b 11244 exp_valid_block = NULL;
a1442452 11245 val = value_addr (result);
06a64a0b
TT
11246 release_value (val);
11247 value_free_to_mark (mark);
9c06b0b4
TJB
11248
11249 if (use_mask)
11250 {
11251 ret = target_masked_watch_num_registers (value_as_address (val),
11252 mask);
11253 if (ret == -1)
11254 error (_("This target does not support masked watchpoints."));
11255 else if (ret == -2)
11256 error (_("Invalid mask or memory region."));
11257 }
06a64a0b
TT
11258 }
11259 else if (val != NULL)
fa4727a6 11260 release_value (val);
c906108c 11261
bbc13ae3
KS
11262 tok = skip_spaces_const (arg);
11263 end_tok = skip_to_space_const (tok);
c906108c
SS
11264
11265 toklen = end_tok - tok;
11266 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
11267 {
60e1c644 11268 innermost_block = NULL;
c906108c 11269 tok = cond_start = end_tok + 1;
4d01a485 11270 parse_exp_1 (&tok, 0, 0, 0);
60e1c644
PA
11271
11272 /* The watchpoint expression may not be local, but the condition
11273 may still be. E.g.: `watch global if local > 0'. */
11274 cond_exp_valid_block = innermost_block;
11275
c906108c
SS
11276 cond_end = tok;
11277 }
11278 if (*tok)
8a3fe4f8 11279 error (_("Junk at end of command."));
c906108c 11280
d983da9c 11281 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
11282
11283 /* If the expression is "local", then set up a "watchpoint scope"
11284 breakpoint at the point where we've left the scope of the watchpoint
11285 expression. Create the scope breakpoint before the watchpoint, so
11286 that we will encounter it first in bpstat_stop_status. */
60e1c644 11287 if (exp_valid_block && frame)
d983da9c 11288 {
edb3359d
DJ
11289 if (frame_id_p (frame_unwind_caller_id (frame)))
11290 {
11291 scope_breakpoint
a6d9a66e
UW
11292 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
11293 frame_unwind_caller_pc (frame),
06edf0c0
PA
11294 bp_watchpoint_scope,
11295 &momentary_breakpoint_ops);
d983da9c 11296
edb3359d 11297 scope_breakpoint->enable_state = bp_enabled;
d983da9c 11298
edb3359d
DJ
11299 /* Automatically delete the breakpoint when it hits. */
11300 scope_breakpoint->disposition = disp_del;
d983da9c 11301
edb3359d
DJ
11302 /* Only break in the proper frame (help with recursion). */
11303 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 11304
edb3359d 11305 /* Set the address at which we will stop. */
a6d9a66e
UW
11306 scope_breakpoint->loc->gdbarch
11307 = frame_unwind_caller_arch (frame);
edb3359d
DJ
11308 scope_breakpoint->loc->requested_address
11309 = frame_unwind_caller_pc (frame);
11310 scope_breakpoint->loc->address
a6d9a66e
UW
11311 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
11312 scope_breakpoint->loc->requested_address,
edb3359d
DJ
11313 scope_breakpoint->type);
11314 }
d983da9c
DJ
11315 }
11316
e8369a73
AB
11317 /* Now set up the breakpoint. We create all watchpoints as hardware
11318 watchpoints here even if hardware watchpoints are turned off, a call
11319 to update_watchpoint later in this function will cause the type to
11320 drop back to bp_watchpoint (software watchpoint) if required. */
11321
11322 if (accessflag == hw_read)
11323 bp_type = bp_read_watchpoint;
11324 else if (accessflag == hw_access)
11325 bp_type = bp_access_watchpoint;
11326 else
11327 bp_type = bp_hardware_watchpoint;
3a5c3e22 11328
4d01a485 11329 w = new watchpoint ();
3a5c3e22 11330 b = &w->base;
348d480f 11331 if (use_mask)
3a5c3e22
PA
11332 init_raw_breakpoint_without_location (b, NULL, bp_type,
11333 &masked_watchpoint_breakpoint_ops);
348d480f 11334 else
3a5c3e22
PA
11335 init_raw_breakpoint_without_location (b, NULL, bp_type,
11336 &watchpoint_breakpoint_ops);
37e4754d 11337 b->thread = thread;
b5de0fa7 11338 b->disposition = disp_donttouch;
348d480f 11339 b->pspace = current_program_space;
b22e99fd 11340 w->exp = std::move (exp);
3a5c3e22
PA
11341 w->exp_valid_block = exp_valid_block;
11342 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
11343 if (just_location)
11344 {
11345 struct type *t = value_type (val);
11346 CORE_ADDR addr = value_as_address (val);
06a64a0b
TT
11347
11348 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
06a64a0b 11349
2f408ecb
PA
11350 std::string name = type_to_string (t);
11351
11352 w->exp_string_reparse = xstrprintf ("* (%s *) %s", name.c_str (),
d63d0675 11353 core_addr_to_string (addr));
06a64a0b 11354
3a5c3e22 11355 w->exp_string = xstrprintf ("-location %.*s",
d63d0675
JK
11356 (int) (exp_end - exp_start), exp_start);
11357
06a64a0b
TT
11358 /* The above expression is in C. */
11359 b->language = language_c;
11360 }
11361 else
3a5c3e22 11362 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
11363
11364 if (use_mask)
11365 {
3a5c3e22 11366 w->hw_wp_mask = mask;
9c06b0b4
TJB
11367 }
11368 else
11369 {
3a5c3e22 11370 w->val = val;
bb9d5f81
PP
11371 w->val_bitpos = saved_bitpos;
11372 w->val_bitsize = saved_bitsize;
3a5c3e22 11373 w->val_valid = 1;
9c06b0b4 11374 }
77b06cd7 11375
c906108c
SS
11376 if (cond_start)
11377 b->cond_string = savestring (cond_start, cond_end - cond_start);
11378 else
11379 b->cond_string = 0;
c5aa993b 11380
c906108c 11381 if (frame)
f6bc2008 11382 {
3a5c3e22
PA
11383 w->watchpoint_frame = get_frame_id (frame);
11384 w->watchpoint_thread = inferior_ptid;
f6bc2008 11385 }
c906108c 11386 else
f6bc2008 11387 {
3a5c3e22
PA
11388 w->watchpoint_frame = null_frame_id;
11389 w->watchpoint_thread = null_ptid;
f6bc2008 11390 }
c906108c 11391
d983da9c 11392 if (scope_breakpoint != NULL)
c906108c 11393 {
d983da9c
DJ
11394 /* The scope breakpoint is related to the watchpoint. We will
11395 need to act on them together. */
11396 b->related_breakpoint = scope_breakpoint;
11397 scope_breakpoint->related_breakpoint = b;
c906108c 11398 }
d983da9c 11399
06a64a0b
TT
11400 if (!just_location)
11401 value_free_to_mark (mark);
2d134ed3 11402
492d29ea 11403 TRY
a9634178
TJB
11404 {
11405 /* Finally update the new watchpoint. This creates the locations
11406 that should be inserted. */
3a5c3e22 11407 update_watchpoint (w, 1);
a9634178 11408 }
492d29ea 11409 CATCH (e, RETURN_MASK_ALL)
a9634178
TJB
11410 {
11411 delete_breakpoint (b);
11412 throw_exception (e);
11413 }
492d29ea 11414 END_CATCH
a9634178 11415
3ea46bff 11416 install_breakpoint (internal, b, 1);
bbc13ae3 11417 do_cleanups (back_to);
c906108c
SS
11418}
11419
e09342b5 11420/* Return count of debug registers needed to watch the given expression.
e09342b5 11421 If the watchpoint cannot be handled in hardware return zero. */
c906108c 11422
c906108c 11423static int
a9634178 11424can_use_hardware_watchpoint (struct value *v)
c906108c
SS
11425{
11426 int found_memory_cnt = 0;
2e70b7b9 11427 struct value *head = v;
c906108c
SS
11428
11429 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 11430 if (!can_use_hw_watchpoints)
c906108c 11431 return 0;
c5aa993b 11432
5c44784c
JM
11433 /* Make sure that the value of the expression depends only upon
11434 memory contents, and values computed from them within GDB. If we
11435 find any register references or function calls, we can't use a
11436 hardware watchpoint.
11437
11438 The idea here is that evaluating an expression generates a series
11439 of values, one holding the value of every subexpression. (The
11440 expression a*b+c has five subexpressions: a, b, a*b, c, and
11441 a*b+c.) GDB's values hold almost enough information to establish
11442 the criteria given above --- they identify memory lvalues,
11443 register lvalues, computed values, etcetera. So we can evaluate
11444 the expression, and then scan the chain of values that leaves
11445 behind to decide whether we can detect any possible change to the
11446 expression's final value using only hardware watchpoints.
11447
11448 However, I don't think that the values returned by inferior
11449 function calls are special in any way. So this function may not
11450 notice that an expression involving an inferior function call
11451 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 11452 for (; v; v = value_next (v))
c906108c 11453 {
5c44784c 11454 if (VALUE_LVAL (v) == lval_memory)
c906108c 11455 {
8464be76
DJ
11456 if (v != head && value_lazy (v))
11457 /* A lazy memory lvalue in the chain is one that GDB never
11458 needed to fetch; we either just used its address (e.g.,
11459 `a' in `a.b') or we never needed it at all (e.g., `a'
11460 in `a,b'). This doesn't apply to HEAD; if that is
11461 lazy then it was not readable, but watch it anyway. */
5c44784c 11462 ;
53a5351d 11463 else
5c44784c
JM
11464 {
11465 /* Ahh, memory we actually used! Check if we can cover
11466 it with hardware watchpoints. */
df407dfe 11467 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
11468
11469 /* We only watch structs and arrays if user asked for it
11470 explicitly, never if they just happen to appear in a
11471 middle of some value chain. */
11472 if (v == head
11473 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
11474 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
11475 {
42ae5230 11476 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
11477 int len;
11478 int num_regs;
11479
a9634178 11480 len = (target_exact_watchpoints
e09342b5
TJB
11481 && is_scalar_type_recursive (vtype))?
11482 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 11483
e09342b5
TJB
11484 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
11485 if (!num_regs)
2e70b7b9
MS
11486 return 0;
11487 else
e09342b5 11488 found_memory_cnt += num_regs;
2e70b7b9 11489 }
5c44784c 11490 }
c5aa993b 11491 }
5086187c
AC
11492 else if (VALUE_LVAL (v) != not_lval
11493 && deprecated_value_modifiable (v) == 0)
38b6c3b3 11494 return 0; /* These are values from the history (e.g., $1). */
5086187c 11495 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 11496 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
11497 }
11498
11499 /* The expression itself looks suitable for using a hardware
11500 watchpoint, but give the target machine a chance to reject it. */
11501 return found_memory_cnt;
11502}
11503
8b93c638 11504void
84f4c1fe 11505watch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11506{
84f4c1fe 11507 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
11508}
11509
06a64a0b
TT
11510/* A helper function that looks for the "-location" argument and then
11511 calls watch_command_1. */
11512
11513static void
11514watch_maybe_just_location (char *arg, int accessflag, int from_tty)
11515{
11516 int just_location = 0;
11517
11518 if (arg
11519 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11520 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11521 {
e9cafbcc 11522 arg = skip_spaces (arg);
06a64a0b
TT
11523 just_location = 1;
11524 }
11525
84f4c1fe 11526 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 11527}
8926118c 11528
c5aa993b 11529static void
fba45db2 11530watch_command (char *arg, int from_tty)
c906108c 11531{
06a64a0b 11532 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
11533}
11534
8b93c638 11535void
84f4c1fe 11536rwatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11537{
84f4c1fe 11538 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 11539}
8926118c 11540
c5aa993b 11541static void
fba45db2 11542rwatch_command (char *arg, int from_tty)
c906108c 11543{
06a64a0b 11544 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
11545}
11546
8b93c638 11547void
84f4c1fe 11548awatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11549{
84f4c1fe 11550 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 11551}
8926118c 11552
c5aa993b 11553static void
fba45db2 11554awatch_command (char *arg, int from_tty)
c906108c 11555{
06a64a0b 11556 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 11557}
c906108c 11558\f
c5aa993b 11559
cfc31633
PA
11560/* Data for the FSM that manages the until(location)/advance commands
11561 in infcmd.c. Here because it uses the mechanisms of
11562 breakpoints. */
c906108c 11563
cfc31633 11564struct until_break_fsm
bfec99b2 11565{
cfc31633
PA
11566 /* The base class. */
11567 struct thread_fsm thread_fsm;
11568
11569 /* The thread that as current when the command was executed. */
11570 int thread;
11571
11572 /* The breakpoint set at the destination location. */
11573 struct breakpoint *location_breakpoint;
11574
11575 /* Breakpoint set at the return address in the caller frame. May be
11576 NULL. */
11577 struct breakpoint *caller_breakpoint;
bfec99b2
PA
11578};
11579
8980e177
PA
11580static void until_break_fsm_clean_up (struct thread_fsm *self,
11581 struct thread_info *thread);
11582static int until_break_fsm_should_stop (struct thread_fsm *self,
11583 struct thread_info *thread);
cfc31633
PA
11584static enum async_reply_reason
11585 until_break_fsm_async_reply_reason (struct thread_fsm *self);
11586
11587/* until_break_fsm's vtable. */
11588
11589static struct thread_fsm_ops until_break_fsm_ops =
11590{
11591 NULL, /* dtor */
11592 until_break_fsm_clean_up,
11593 until_break_fsm_should_stop,
11594 NULL, /* return_value */
11595 until_break_fsm_async_reply_reason,
11596};
11597
11598/* Allocate a new until_break_command_fsm. */
11599
11600static struct until_break_fsm *
8980e177 11601new_until_break_fsm (struct interp *cmd_interp, int thread,
cfc31633
PA
11602 struct breakpoint *location_breakpoint,
11603 struct breakpoint *caller_breakpoint)
11604{
11605 struct until_break_fsm *sm;
11606
11607 sm = XCNEW (struct until_break_fsm);
8980e177 11608 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops, cmd_interp);
cfc31633
PA
11609
11610 sm->thread = thread;
11611 sm->location_breakpoint = location_breakpoint;
11612 sm->caller_breakpoint = caller_breakpoint;
11613
11614 return sm;
11615}
11616
11617/* Implementation of the 'should_stop' FSM method for the
11618 until(location)/advance commands. */
11619
11620static int
8980e177
PA
11621until_break_fsm_should_stop (struct thread_fsm *self,
11622 struct thread_info *tp)
cfc31633
PA
11623{
11624 struct until_break_fsm *sm = (struct until_break_fsm *) self;
cfc31633
PA
11625
11626 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11627 sm->location_breakpoint) != NULL
11628 || (sm->caller_breakpoint != NULL
11629 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11630 sm->caller_breakpoint) != NULL))
11631 thread_fsm_set_finished (self);
11632
11633 return 1;
11634}
11635
11636/* Implementation of the 'clean_up' FSM method for the
11637 until(location)/advance commands. */
11638
c2c6d25f 11639static void
8980e177
PA
11640until_break_fsm_clean_up (struct thread_fsm *self,
11641 struct thread_info *thread)
43ff13b4 11642{
cfc31633 11643 struct until_break_fsm *sm = (struct until_break_fsm *) self;
bfec99b2 11644
cfc31633
PA
11645 /* Clean up our temporary breakpoints. */
11646 if (sm->location_breakpoint != NULL)
11647 {
11648 delete_breakpoint (sm->location_breakpoint);
11649 sm->location_breakpoint = NULL;
11650 }
11651 if (sm->caller_breakpoint != NULL)
11652 {
11653 delete_breakpoint (sm->caller_breakpoint);
11654 sm->caller_breakpoint = NULL;
11655 }
11656 delete_longjmp_breakpoint (sm->thread);
11657}
11658
11659/* Implementation of the 'async_reply_reason' FSM method for the
11660 until(location)/advance commands. */
11661
11662static enum async_reply_reason
11663until_break_fsm_async_reply_reason (struct thread_fsm *self)
11664{
11665 return EXEC_ASYNC_LOCATION_REACHED;
43ff13b4
JM
11666}
11667
c906108c 11668void
ae66c1fc 11669until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
11670{
11671 struct symtabs_and_lines sals;
11672 struct symtab_and_line sal;
8556afb4
PA
11673 struct frame_info *frame;
11674 struct gdbarch *frame_gdbarch;
11675 struct frame_id stack_frame_id;
11676 struct frame_id caller_frame_id;
cfc31633
PA
11677 struct breakpoint *location_breakpoint;
11678 struct breakpoint *caller_breakpoint = NULL;
f00aae0f 11679 struct cleanup *old_chain, *cleanup;
186c406b
TT
11680 int thread;
11681 struct thread_info *tp;
f00aae0f 11682 struct event_location *location;
cfc31633 11683 struct until_break_fsm *sm;
c906108c 11684
70509625 11685 clear_proceed_status (0);
c906108c
SS
11686
11687 /* Set a breakpoint where the user wants it and at return from
4a64f543 11688 this function. */
c5aa993b 11689
f00aae0f
KS
11690 location = string_to_event_location (&arg, current_language);
11691 cleanup = make_cleanup_delete_event_location (location);
11692
1bfeeb0f 11693 if (last_displayed_sal_is_valid ())
c2f4122d 11694 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE, NULL,
1bfeeb0f 11695 get_last_displayed_symtab (),
f8eba3c6 11696 get_last_displayed_line ());
c906108c 11697 else
f00aae0f 11698 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE,
c2f4122d 11699 NULL, (struct symtab *) NULL, 0);
c5aa993b 11700
c906108c 11701 if (sals.nelts != 1)
8a3fe4f8 11702 error (_("Couldn't get information on specified line."));
c5aa993b 11703
c906108c 11704 sal = sals.sals[0];
4a64f543 11705 xfree (sals.sals); /* malloc'd, so freed. */
c5aa993b 11706
c906108c 11707 if (*arg)
8a3fe4f8 11708 error (_("Junk at end of arguments."));
c5aa993b 11709
c906108c 11710 resolve_sal_pc (&sal);
c5aa993b 11711
186c406b 11712 tp = inferior_thread ();
5d5658a1 11713 thread = tp->global_num;
186c406b 11714
883bc8d1
PA
11715 old_chain = make_cleanup (null_cleanup, NULL);
11716
8556afb4
PA
11717 /* Note linespec handling above invalidates the frame chain.
11718 Installing a breakpoint also invalidates the frame chain (as it
11719 may need to switch threads), so do any frame handling before
11720 that. */
11721
11722 frame = get_selected_frame (NULL);
11723 frame_gdbarch = get_frame_arch (frame);
11724 stack_frame_id = get_stack_frame_id (frame);
11725 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11726
ae66c1fc
EZ
11727 /* Keep within the current frame, or in frames called by the current
11728 one. */
edb3359d 11729
883bc8d1 11730 if (frame_id_p (caller_frame_id))
c906108c 11731 {
883bc8d1 11732 struct symtab_and_line sal2;
cfc31633 11733 struct gdbarch *caller_gdbarch;
883bc8d1
PA
11734
11735 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11736 sal2.pc = frame_unwind_caller_pc (frame);
cfc31633
PA
11737 caller_gdbarch = frame_unwind_caller_arch (frame);
11738 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11739 sal2,
11740 caller_frame_id,
11741 bp_until);
11742 make_cleanup_delete_breakpoint (caller_breakpoint);
186c406b 11743
883bc8d1 11744 set_longjmp_breakpoint (tp, caller_frame_id);
186c406b 11745 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 11746 }
c5aa993b 11747
c70a6932
JK
11748 /* set_momentary_breakpoint could invalidate FRAME. */
11749 frame = NULL;
11750
883bc8d1
PA
11751 if (anywhere)
11752 /* If the user told us to continue until a specified location,
11753 we don't specify a frame at which we need to stop. */
cfc31633
PA
11754 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11755 null_frame_id, bp_until);
883bc8d1
PA
11756 else
11757 /* Otherwise, specify the selected frame, because we want to stop
11758 only at the very same frame. */
cfc31633
PA
11759 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11760 stack_frame_id, bp_until);
11761 make_cleanup_delete_breakpoint (location_breakpoint);
883bc8d1 11762
8980e177 11763 sm = new_until_break_fsm (command_interp (), tp->global_num,
5d5658a1 11764 location_breakpoint, caller_breakpoint);
cfc31633 11765 tp->thread_fsm = &sm->thread_fsm;
f107f563 11766
cfc31633 11767 discard_cleanups (old_chain);
f107f563 11768
cfc31633 11769 proceed (-1, GDB_SIGNAL_DEFAULT);
f00aae0f
KS
11770
11771 do_cleanups (cleanup);
c906108c 11772}
ae66c1fc 11773
c906108c
SS
11774/* This function attempts to parse an optional "if <cond>" clause
11775 from the arg string. If one is not found, it returns NULL.
c5aa993b 11776
c906108c
SS
11777 Else, it returns a pointer to the condition string. (It does not
11778 attempt to evaluate the string against a particular block.) And,
11779 it updates arg to point to the first character following the parsed
4a64f543 11780 if clause in the arg string. */
53a5351d 11781
63160a43
PA
11782const char *
11783ep_parse_optional_if_clause (const char **arg)
c906108c 11784{
63160a43 11785 const char *cond_string;
c5aa993b
JM
11786
11787 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11788 return NULL;
c5aa993b 11789
4a64f543 11790 /* Skip the "if" keyword. */
c906108c 11791 (*arg) += 2;
c5aa993b 11792
c906108c 11793 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11794 condition string. */
63160a43 11795 *arg = skip_spaces_const (*arg);
c906108c 11796 cond_string = *arg;
c5aa993b 11797
4a64f543
MS
11798 /* Assume that the condition occupies the remainder of the arg
11799 string. */
c906108c 11800 (*arg) += strlen (cond_string);
c5aa993b 11801
c906108c
SS
11802 return cond_string;
11803}
c5aa993b 11804
c906108c
SS
11805/* Commands to deal with catching events, such as signals, exceptions,
11806 process start/exit, etc. */
c5aa993b
JM
11807
11808typedef enum
11809{
44feb3ce
TT
11810 catch_fork_temporary, catch_vfork_temporary,
11811 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11812}
11813catch_fork_kind;
11814
c906108c 11815static void
63160a43 11816catch_fork_command_1 (char *arg_entry, int from_tty,
cc59ec59 11817 struct cmd_list_element *command)
c906108c 11818{
63160a43 11819 const char *arg = arg_entry;
a6d9a66e 11820 struct gdbarch *gdbarch = get_current_arch ();
63160a43 11821 const char *cond_string = NULL;
44feb3ce
TT
11822 catch_fork_kind fork_kind;
11823 int tempflag;
11824
11825 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11826 tempflag = (fork_kind == catch_fork_temporary
11827 || fork_kind == catch_vfork_temporary);
c5aa993b 11828
44feb3ce
TT
11829 if (!arg)
11830 arg = "";
63160a43 11831 arg = skip_spaces_const (arg);
c5aa993b 11832
c906108c 11833 /* The allowed syntax is:
c5aa993b
JM
11834 catch [v]fork
11835 catch [v]fork if <cond>
11836
4a64f543 11837 First, check if there's an if clause. */
c906108c 11838 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 11839
c906108c 11840 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11841 error (_("Junk at end of arguments."));
c5aa993b 11842
c906108c 11843 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 11844 and enable reporting of such events. */
c5aa993b
JM
11845 switch (fork_kind)
11846 {
44feb3ce
TT
11847 case catch_fork_temporary:
11848 case catch_fork_permanent:
a6d9a66e 11849 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11850 &catch_fork_breakpoint_ops);
c906108c 11851 break;
44feb3ce
TT
11852 case catch_vfork_temporary:
11853 case catch_vfork_permanent:
a6d9a66e 11854 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11855 &catch_vfork_breakpoint_ops);
c906108c 11856 break;
c5aa993b 11857 default:
8a3fe4f8 11858 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 11859 break;
c5aa993b 11860 }
c906108c
SS
11861}
11862
11863static void
63160a43 11864catch_exec_command_1 (char *arg_entry, int from_tty,
cc59ec59 11865 struct cmd_list_element *command)
c906108c 11866{
63160a43 11867 const char *arg = arg_entry;
b4d90040 11868 struct exec_catchpoint *c;
a6d9a66e 11869 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 11870 int tempflag;
63160a43 11871 const char *cond_string = NULL;
c906108c 11872
44feb3ce
TT
11873 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11874
11875 if (!arg)
11876 arg = "";
63160a43 11877 arg = skip_spaces_const (arg);
c906108c
SS
11878
11879 /* The allowed syntax is:
c5aa993b
JM
11880 catch exec
11881 catch exec if <cond>
c906108c 11882
4a64f543 11883 First, check if there's an if clause. */
c906108c
SS
11884 cond_string = ep_parse_optional_if_clause (&arg);
11885
11886 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11887 error (_("Junk at end of arguments."));
c906108c 11888
4d01a485 11889 c = new exec_catchpoint ();
b4d90040
PA
11890 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
11891 &catch_exec_breakpoint_ops);
11892 c->exec_pathname = NULL;
11893
3ea46bff 11894 install_breakpoint (0, &c->base, 1);
c906108c 11895}
c5aa993b 11896
9ac4176b 11897void
28010a5d
PA
11898init_ada_exception_breakpoint (struct breakpoint *b,
11899 struct gdbarch *gdbarch,
11900 struct symtab_and_line sal,
11901 char *addr_string,
c0a91b2b 11902 const struct breakpoint_ops *ops,
28010a5d 11903 int tempflag,
349774ef 11904 int enabled,
28010a5d 11905 int from_tty)
f7f9143b 11906{
f7f9143b
JB
11907 if (from_tty)
11908 {
5af949e3
UW
11909 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11910 if (!loc_gdbarch)
11911 loc_gdbarch = gdbarch;
11912
6c95b8df
PA
11913 describe_other_breakpoints (loc_gdbarch,
11914 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
11915 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11916 version for exception catchpoints, because two catchpoints
11917 used for different exception names will use the same address.
11918 In this case, a "breakpoint ... also set at..." warning is
4a64f543 11919 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 11920 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
11921 the user what type of catchpoint it is. The above is good
11922 enough for now, though. */
11923 }
11924
28010a5d 11925 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b 11926
349774ef 11927 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 11928 b->disposition = tempflag ? disp_del : disp_donttouch;
f00aae0f
KS
11929 b->location = string_to_event_location (&addr_string,
11930 language_def (language_ada));
f7f9143b 11931 b->language = language_ada;
f7f9143b
JB
11932}
11933
c906108c 11934static void
fba45db2 11935catch_command (char *arg, int from_tty)
c906108c 11936{
44feb3ce 11937 error (_("Catch requires an event name."));
c906108c
SS
11938}
11939\f
11940
11941static void
fba45db2 11942tcatch_command (char *arg, int from_tty)
c906108c 11943{
44feb3ce 11944 error (_("Catch requires an event name."));
c906108c
SS
11945}
11946
8a2c437b
TT
11947/* A qsort comparison function that sorts breakpoints in order. */
11948
11949static int
11950compare_breakpoints (const void *a, const void *b)
11951{
9a3c8263 11952 const breakpoint_p *ba = (const breakpoint_p *) a;
8a2c437b 11953 uintptr_t ua = (uintptr_t) *ba;
9a3c8263 11954 const breakpoint_p *bb = (const breakpoint_p *) b;
8a2c437b
TT
11955 uintptr_t ub = (uintptr_t) *bb;
11956
11957 if ((*ba)->number < (*bb)->number)
11958 return -1;
11959 else if ((*ba)->number > (*bb)->number)
11960 return 1;
11961
11962 /* Now sort by address, in case we see, e..g, two breakpoints with
11963 the number 0. */
11964 if (ua < ub)
11965 return -1;
94b0e70d 11966 return ua > ub ? 1 : 0;
8a2c437b
TT
11967}
11968
80f8a6eb 11969/* Delete breakpoints by address or line. */
c906108c
SS
11970
11971static void
fba45db2 11972clear_command (char *arg, int from_tty)
c906108c 11973{
8a2c437b 11974 struct breakpoint *b, *prev;
d6e956e5
VP
11975 VEC(breakpoint_p) *found = 0;
11976 int ix;
c906108c
SS
11977 int default_match;
11978 struct symtabs_and_lines sals;
11979 struct symtab_and_line sal;
c906108c 11980 int i;
8a2c437b 11981 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
c906108c
SS
11982
11983 if (arg)
11984 {
39cf75f7
DE
11985 sals = decode_line_with_current_source (arg,
11986 (DECODE_LINE_FUNFIRSTLINE
11987 | DECODE_LINE_LIST_MODE));
cf4ded82 11988 make_cleanup (xfree, sals.sals);
c906108c
SS
11989 default_match = 0;
11990 }
11991 else
11992 {
8d749320 11993 sals.sals = XNEW (struct symtab_and_line);
80f8a6eb 11994 make_cleanup (xfree, sals.sals);
4a64f543 11995 init_sal (&sal); /* Initialize to zeroes. */
1bfeeb0f
JL
11996
11997 /* Set sal's line, symtab, pc, and pspace to the values
11998 corresponding to the last call to print_frame_info. If the
11999 codepoint is not valid, this will set all the fields to 0. */
12000 get_last_displayed_sal (&sal);
c906108c 12001 if (sal.symtab == 0)
8a3fe4f8 12002 error (_("No source file specified."));
c906108c
SS
12003
12004 sals.sals[0] = sal;
12005 sals.nelts = 1;
12006
12007 default_match = 1;
12008 }
12009
4a64f543
MS
12010 /* We don't call resolve_sal_pc here. That's not as bad as it
12011 seems, because all existing breakpoints typically have both
12012 file/line and pc set. So, if clear is given file/line, we can
12013 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
12014
12015 We only support clearing given the address explicitly
12016 present in breakpoint table. Say, we've set breakpoint
4a64f543 12017 at file:line. There were several PC values for that file:line,
ed0616c6 12018 due to optimization, all in one block.
4a64f543
MS
12019
12020 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
12021 PC corresponding to the same file:line, the breakpoint won't
12022 be cleared. We probably can still clear the breakpoint, but
12023 since the other PC value is never presented to user, user
12024 can only find it by guessing, and it does not seem important
12025 to support that. */
12026
4a64f543
MS
12027 /* For each line spec given, delete bps which correspond to it. Do
12028 it in two passes, solely to preserve the current behavior that
12029 from_tty is forced true if we delete more than one
12030 breakpoint. */
c906108c 12031
80f8a6eb 12032 found = NULL;
8a2c437b 12033 make_cleanup (VEC_cleanup (breakpoint_p), &found);
c906108c
SS
12034 for (i = 0; i < sals.nelts; i++)
12035 {
05cba821
JK
12036 const char *sal_fullname;
12037
c906108c 12038 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
12039 If line given (pc == 0), clear all bpts on specified line.
12040 If defaulting, clear all bpts on default line
c906108c 12041 or at default pc.
c5aa993b
JM
12042
12043 defaulting sal.pc != 0 tests to do
12044
12045 0 1 pc
12046 1 1 pc _and_ line
12047 0 0 line
12048 1 0 <can't happen> */
c906108c
SS
12049
12050 sal = sals.sals[i];
05cba821
JK
12051 sal_fullname = (sal.symtab == NULL
12052 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 12053
4a64f543 12054 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 12055 ALL_BREAKPOINTS (b)
c5aa993b 12056 {
0d381245 12057 int match = 0;
4a64f543 12058 /* Are we going to delete b? */
cc60f2e3 12059 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
12060 {
12061 struct bp_location *loc = b->loc;
12062 for (; loc; loc = loc->next)
12063 {
f8eba3c6
TT
12064 /* If the user specified file:line, don't allow a PC
12065 match. This matches historical gdb behavior. */
12066 int pc_match = (!sal.explicit_line
12067 && sal.pc
12068 && (loc->pspace == sal.pspace)
12069 && (loc->address == sal.pc)
12070 && (!section_is_overlay (loc->section)
12071 || loc->section == sal.section));
4aac40c8
TT
12072 int line_match = 0;
12073
12074 if ((default_match || sal.explicit_line)
2f202fde 12075 && loc->symtab != NULL
05cba821 12076 && sal_fullname != NULL
4aac40c8 12077 && sal.pspace == loc->pspace
05cba821
JK
12078 && loc->line_number == sal.line
12079 && filename_cmp (symtab_to_fullname (loc->symtab),
12080 sal_fullname) == 0)
12081 line_match = 1;
4aac40c8 12082
0d381245
VP
12083 if (pc_match || line_match)
12084 {
12085 match = 1;
12086 break;
12087 }
12088 }
12089 }
12090
12091 if (match)
d6e956e5 12092 VEC_safe_push(breakpoint_p, found, b);
c906108c 12093 }
80f8a6eb 12094 }
8a2c437b 12095
80f8a6eb 12096 /* Now go thru the 'found' chain and delete them. */
d6e956e5 12097 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
12098 {
12099 if (arg)
8a3fe4f8 12100 error (_("No breakpoint at %s."), arg);
80f8a6eb 12101 else
8a3fe4f8 12102 error (_("No breakpoint at this line."));
80f8a6eb 12103 }
c906108c 12104
8a2c437b
TT
12105 /* Remove duplicates from the vec. */
12106 qsort (VEC_address (breakpoint_p, found),
12107 VEC_length (breakpoint_p, found),
12108 sizeof (breakpoint_p),
12109 compare_breakpoints);
12110 prev = VEC_index (breakpoint_p, found, 0);
12111 for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix)
12112 {
12113 if (b == prev)
12114 {
12115 VEC_ordered_remove (breakpoint_p, found, ix);
12116 --ix;
12117 }
12118 }
12119
d6e956e5 12120 if (VEC_length(breakpoint_p, found) > 1)
4a64f543 12121 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 12122 if (from_tty)
a3f17187 12123 {
d6e956e5 12124 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
12125 printf_unfiltered (_("Deleted breakpoint "));
12126 else
12127 printf_unfiltered (_("Deleted breakpoints "));
12128 }
d6e956e5
VP
12129
12130 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 12131 {
c5aa993b 12132 if (from_tty)
d6e956e5
VP
12133 printf_unfiltered ("%d ", b->number);
12134 delete_breakpoint (b);
c906108c 12135 }
80f8a6eb
MS
12136 if (from_tty)
12137 putchar_unfiltered ('\n');
8a2c437b
TT
12138
12139 do_cleanups (cleanups);
c906108c
SS
12140}
12141\f
12142/* Delete breakpoint in BS if they are `delete' breakpoints and
12143 all breakpoints that are marked for deletion, whether hit or not.
12144 This is called after any breakpoint is hit, or after errors. */
12145
12146void
fba45db2 12147breakpoint_auto_delete (bpstat bs)
c906108c 12148{
35df4500 12149 struct breakpoint *b, *b_tmp;
c906108c
SS
12150
12151 for (; bs; bs = bs->next)
f431efe5
PA
12152 if (bs->breakpoint_at
12153 && bs->breakpoint_at->disposition == disp_del
c906108c 12154 && bs->stop)
f431efe5 12155 delete_breakpoint (bs->breakpoint_at);
c906108c 12156
35df4500 12157 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 12158 {
b5de0fa7 12159 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
12160 delete_breakpoint (b);
12161 }
c906108c
SS
12162}
12163
4a64f543
MS
12164/* A comparison function for bp_location AP and BP being interfaced to
12165 qsort. Sort elements primarily by their ADDRESS (no matter what
12166 does breakpoint_address_is_meaningful say for its OWNER),
1a853c52 12167 secondarily by ordering first permanent elements and
4a64f543 12168 terciarily just ensuring the array is sorted stable way despite
e5dd4106 12169 qsort being an unstable algorithm. */
876fa593
JK
12170
12171static int
494cfb0f 12172bp_location_compare (const void *ap, const void *bp)
876fa593 12173{
9a3c8263
SM
12174 const struct bp_location *a = *(const struct bp_location **) ap;
12175 const struct bp_location *b = *(const struct bp_location **) bp;
876fa593
JK
12176
12177 if (a->address != b->address)
12178 return (a->address > b->address) - (a->address < b->address);
12179
dea2aa5f
LM
12180 /* Sort locations at the same address by their pspace number, keeping
12181 locations of the same inferior (in a multi-inferior environment)
12182 grouped. */
12183
12184 if (a->pspace->num != b->pspace->num)
12185 return ((a->pspace->num > b->pspace->num)
12186 - (a->pspace->num < b->pspace->num));
12187
876fa593 12188 /* Sort permanent breakpoints first. */
1a853c52
PA
12189 if (a->permanent != b->permanent)
12190 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
876fa593 12191
c56a97f9
JK
12192 /* Make the internal GDB representation stable across GDB runs
12193 where A and B memory inside GDB can differ. Breakpoint locations of
12194 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
12195
12196 if (a->owner->number != b->owner->number)
c56a97f9
JK
12197 return ((a->owner->number > b->owner->number)
12198 - (a->owner->number < b->owner->number));
876fa593
JK
12199
12200 return (a > b) - (a < b);
12201}
12202
876fa593 12203/* Set bp_location_placed_address_before_address_max and
4a64f543
MS
12204 bp_location_shadow_len_after_address_max according to the current
12205 content of the bp_location array. */
f7545552
TT
12206
12207static void
876fa593 12208bp_location_target_extensions_update (void)
f7545552 12209{
876fa593
JK
12210 struct bp_location *bl, **blp_tmp;
12211
12212 bp_location_placed_address_before_address_max = 0;
12213 bp_location_shadow_len_after_address_max = 0;
12214
12215 ALL_BP_LOCATIONS (bl, blp_tmp)
12216 {
12217 CORE_ADDR start, end, addr;
12218
12219 if (!bp_location_has_shadow (bl))
12220 continue;
12221
12222 start = bl->target_info.placed_address;
12223 end = start + bl->target_info.shadow_len;
12224
12225 gdb_assert (bl->address >= start);
12226 addr = bl->address - start;
12227 if (addr > bp_location_placed_address_before_address_max)
12228 bp_location_placed_address_before_address_max = addr;
12229
12230 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
12231
12232 gdb_assert (bl->address < end);
12233 addr = end - bl->address;
12234 if (addr > bp_location_shadow_len_after_address_max)
12235 bp_location_shadow_len_after_address_max = addr;
12236 }
f7545552
TT
12237}
12238
1e4d1764
YQ
12239/* Download tracepoint locations if they haven't been. */
12240
12241static void
12242download_tracepoint_locations (void)
12243{
7ed2c994 12244 struct breakpoint *b;
1e4d1764 12245 struct cleanup *old_chain;
dd2e65cc 12246 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
1e4d1764
YQ
12247
12248 old_chain = save_current_space_and_thread ();
12249
7ed2c994 12250 ALL_TRACEPOINTS (b)
1e4d1764 12251 {
7ed2c994 12252 struct bp_location *bl;
1e4d1764 12253 struct tracepoint *t;
f2a8bc8a 12254 int bp_location_downloaded = 0;
1e4d1764 12255
7ed2c994 12256 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
12257 ? !may_insert_fast_tracepoints
12258 : !may_insert_tracepoints))
12259 continue;
12260
dd2e65cc
YQ
12261 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
12262 {
12263 if (target_can_download_tracepoint ())
12264 can_download_tracepoint = TRIBOOL_TRUE;
12265 else
12266 can_download_tracepoint = TRIBOOL_FALSE;
12267 }
12268
12269 if (can_download_tracepoint == TRIBOOL_FALSE)
12270 break;
12271
7ed2c994
YQ
12272 for (bl = b->loc; bl; bl = bl->next)
12273 {
12274 /* In tracepoint, locations are _never_ duplicated, so
12275 should_be_inserted is equivalent to
12276 unduplicated_should_be_inserted. */
12277 if (!should_be_inserted (bl) || bl->inserted)
12278 continue;
1e4d1764 12279
7ed2c994 12280 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 12281
7ed2c994 12282 target_download_tracepoint (bl);
1e4d1764 12283
7ed2c994 12284 bl->inserted = 1;
f2a8bc8a 12285 bp_location_downloaded = 1;
7ed2c994
YQ
12286 }
12287 t = (struct tracepoint *) b;
12288 t->number_on_target = b->number;
f2a8bc8a
YQ
12289 if (bp_location_downloaded)
12290 observer_notify_breakpoint_modified (b);
1e4d1764
YQ
12291 }
12292
12293 do_cleanups (old_chain);
12294}
12295
934709f0
PW
12296/* Swap the insertion/duplication state between two locations. */
12297
12298static void
12299swap_insertion (struct bp_location *left, struct bp_location *right)
12300{
12301 const int left_inserted = left->inserted;
12302 const int left_duplicate = left->duplicate;
b775012e 12303 const int left_needs_update = left->needs_update;
934709f0
PW
12304 const struct bp_target_info left_target_info = left->target_info;
12305
1e4d1764
YQ
12306 /* Locations of tracepoints can never be duplicated. */
12307 if (is_tracepoint (left->owner))
12308 gdb_assert (!left->duplicate);
12309 if (is_tracepoint (right->owner))
12310 gdb_assert (!right->duplicate);
12311
934709f0
PW
12312 left->inserted = right->inserted;
12313 left->duplicate = right->duplicate;
b775012e 12314 left->needs_update = right->needs_update;
934709f0
PW
12315 left->target_info = right->target_info;
12316 right->inserted = left_inserted;
12317 right->duplicate = left_duplicate;
b775012e 12318 right->needs_update = left_needs_update;
934709f0
PW
12319 right->target_info = left_target_info;
12320}
12321
b775012e
LM
12322/* Force the re-insertion of the locations at ADDRESS. This is called
12323 once a new/deleted/modified duplicate location is found and we are evaluating
12324 conditions on the target's side. Such conditions need to be updated on
12325 the target. */
12326
12327static void
12328force_breakpoint_reinsertion (struct bp_location *bl)
12329{
12330 struct bp_location **locp = NULL, **loc2p;
12331 struct bp_location *loc;
12332 CORE_ADDR address = 0;
12333 int pspace_num;
12334
12335 address = bl->address;
12336 pspace_num = bl->pspace->num;
12337
12338 /* This is only meaningful if the target is
12339 evaluating conditions and if the user has
12340 opted for condition evaluation on the target's
12341 side. */
12342 if (gdb_evaluates_breakpoint_condition_p ()
12343 || !target_supports_evaluation_of_breakpoint_conditions ())
12344 return;
12345
12346 /* Flag all breakpoint locations with this address and
12347 the same program space as the location
12348 as "its condition has changed". We need to
12349 update the conditions on the target's side. */
12350 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
12351 {
12352 loc = *loc2p;
12353
12354 if (!is_breakpoint (loc->owner)
12355 || pspace_num != loc->pspace->num)
12356 continue;
12357
12358 /* Flag the location appropriately. We use a different state to
12359 let everyone know that we already updated the set of locations
12360 with addr bl->address and program space bl->pspace. This is so
12361 we don't have to keep calling these functions just to mark locations
12362 that have already been marked. */
12363 loc->condition_changed = condition_updated;
12364
12365 /* Free the agent expression bytecode as well. We will compute
12366 it later on. */
833177a4 12367 loc->cond_bytecode.reset ();
b775012e
LM
12368 }
12369}
44702360
PA
12370/* Called whether new breakpoints are created, or existing breakpoints
12371 deleted, to update the global location list and recompute which
12372 locations are duplicate of which.
b775012e 12373
04086b45
PA
12374 The INSERT_MODE flag determines whether locations may not, may, or
12375 shall be inserted now. See 'enum ugll_insert_mode' for more
12376 info. */
b60e7edf 12377
0d381245 12378static void
44702360 12379update_global_location_list (enum ugll_insert_mode insert_mode)
0d381245 12380{
74960c60 12381 struct breakpoint *b;
876fa593 12382 struct bp_location **locp, *loc;
f7545552 12383 struct cleanup *cleanups;
b775012e
LM
12384 /* Last breakpoint location address that was marked for update. */
12385 CORE_ADDR last_addr = 0;
12386 /* Last breakpoint location program space that was marked for update. */
12387 int last_pspace_num = -1;
f7545552 12388
2d134ed3
PA
12389 /* Used in the duplicates detection below. When iterating over all
12390 bp_locations, points to the first bp_location of a given address.
12391 Breakpoints and watchpoints of different types are never
12392 duplicates of each other. Keep one pointer for each type of
12393 breakpoint/watchpoint, so we only need to loop over all locations
12394 once. */
12395 struct bp_location *bp_loc_first; /* breakpoint */
12396 struct bp_location *wp_loc_first; /* hardware watchpoint */
12397 struct bp_location *awp_loc_first; /* access watchpoint */
12398 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 12399
4a64f543
MS
12400 /* Saved former bp_location array which we compare against the newly
12401 built bp_location from the current state of ALL_BREAKPOINTS. */
876fa593
JK
12402 struct bp_location **old_location, **old_locp;
12403 unsigned old_location_count;
12404
12405 old_location = bp_location;
12406 old_location_count = bp_location_count;
12407 bp_location = NULL;
12408 bp_location_count = 0;
12409 cleanups = make_cleanup (xfree, old_location);
0d381245 12410
74960c60 12411 ALL_BREAKPOINTS (b)
876fa593
JK
12412 for (loc = b->loc; loc; loc = loc->next)
12413 bp_location_count++;
12414
8d749320 12415 bp_location = XNEWVEC (struct bp_location *, bp_location_count);
876fa593
JK
12416 locp = bp_location;
12417 ALL_BREAKPOINTS (b)
12418 for (loc = b->loc; loc; loc = loc->next)
12419 *locp++ = loc;
12420 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 12421 bp_location_compare);
876fa593
JK
12422
12423 bp_location_target_extensions_update ();
74960c60 12424
4a64f543
MS
12425 /* Identify bp_location instances that are no longer present in the
12426 new list, and therefore should be freed. Note that it's not
12427 necessary that those locations should be removed from inferior --
12428 if there's another location at the same address (previously
12429 marked as duplicate), we don't need to remove/insert the
12430 location.
876fa593 12431
4a64f543
MS
12432 LOCP is kept in sync with OLD_LOCP, each pointing to the current
12433 and former bp_location array state respectively. */
876fa593
JK
12434
12435 locp = bp_location;
12436 for (old_locp = old_location; old_locp < old_location + old_location_count;
12437 old_locp++)
74960c60 12438 {
876fa593 12439 struct bp_location *old_loc = *old_locp;
c7d46a38 12440 struct bp_location **loc2p;
876fa593 12441
e5dd4106 12442 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 12443 not, we have to free it. */
c7d46a38 12444 int found_object = 0;
20874c92
VP
12445 /* Tells if the location should remain inserted in the target. */
12446 int keep_in_target = 0;
12447 int removed = 0;
876fa593 12448
4a64f543
MS
12449 /* Skip LOCP entries which will definitely never be needed.
12450 Stop either at or being the one matching OLD_LOC. */
876fa593 12451 while (locp < bp_location + bp_location_count
c7d46a38 12452 && (*locp)->address < old_loc->address)
876fa593 12453 locp++;
c7d46a38
PA
12454
12455 for (loc2p = locp;
12456 (loc2p < bp_location + bp_location_count
12457 && (*loc2p)->address == old_loc->address);
12458 loc2p++)
12459 {
b775012e
LM
12460 /* Check if this is a new/duplicated location or a duplicated
12461 location that had its condition modified. If so, we want to send
12462 its condition to the target if evaluation of conditions is taking
12463 place there. */
12464 if ((*loc2p)->condition_changed == condition_modified
12465 && (last_addr != old_loc->address
12466 || last_pspace_num != old_loc->pspace->num))
c7d46a38 12467 {
b775012e
LM
12468 force_breakpoint_reinsertion (*loc2p);
12469 last_pspace_num = old_loc->pspace->num;
c7d46a38 12470 }
b775012e
LM
12471
12472 if (*loc2p == old_loc)
12473 found_object = 1;
c7d46a38 12474 }
74960c60 12475
b775012e
LM
12476 /* We have already handled this address, update it so that we don't
12477 have to go through updates again. */
12478 last_addr = old_loc->address;
12479
12480 /* Target-side condition evaluation: Handle deleted locations. */
12481 if (!found_object)
12482 force_breakpoint_reinsertion (old_loc);
12483
4a64f543
MS
12484 /* If this location is no longer present, and inserted, look if
12485 there's maybe a new location at the same address. If so,
12486 mark that one inserted, and don't remove this one. This is
12487 needed so that we don't have a time window where a breakpoint
12488 at certain location is not inserted. */
74960c60 12489
876fa593 12490 if (old_loc->inserted)
0d381245 12491 {
4a64f543
MS
12492 /* If the location is inserted now, we might have to remove
12493 it. */
74960c60 12494
876fa593 12495 if (found_object && should_be_inserted (old_loc))
74960c60 12496 {
4a64f543
MS
12497 /* The location is still present in the location list,
12498 and still should be inserted. Don't do anything. */
20874c92 12499 keep_in_target = 1;
74960c60
VP
12500 }
12501 else
12502 {
b775012e
LM
12503 /* This location still exists, but it won't be kept in the
12504 target since it may have been disabled. We proceed to
12505 remove its target-side condition. */
12506
4a64f543
MS
12507 /* The location is either no longer present, or got
12508 disabled. See if there's another location at the
12509 same address, in which case we don't need to remove
12510 this one from the target. */
876fa593 12511
2bdf28a0 12512 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
12513 if (breakpoint_address_is_meaningful (old_loc->owner))
12514 {
876fa593 12515 for (loc2p = locp;
c7d46a38
PA
12516 (loc2p < bp_location + bp_location_count
12517 && (*loc2p)->address == old_loc->address);
876fa593
JK
12518 loc2p++)
12519 {
12520 struct bp_location *loc2 = *loc2p;
12521
2d134ed3 12522 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 12523 {
85d721b8
PA
12524 /* Read watchpoint locations are switched to
12525 access watchpoints, if the former are not
12526 supported, but the latter are. */
12527 if (is_hardware_watchpoint (old_loc->owner))
12528 {
12529 gdb_assert (is_hardware_watchpoint (loc2->owner));
12530 loc2->watchpoint_type = old_loc->watchpoint_type;
12531 }
12532
934709f0
PW
12533 /* loc2 is a duplicated location. We need to check
12534 if it should be inserted in case it will be
12535 unduplicated. */
12536 if (loc2 != old_loc
12537 && unduplicated_should_be_inserted (loc2))
c7d46a38 12538 {
934709f0 12539 swap_insertion (old_loc, loc2);
c7d46a38
PA
12540 keep_in_target = 1;
12541 break;
12542 }
876fa593
JK
12543 }
12544 }
12545 }
74960c60
VP
12546 }
12547
20874c92
VP
12548 if (!keep_in_target)
12549 {
834c0d03 12550 if (remove_breakpoint (old_loc))
20874c92 12551 {
4a64f543
MS
12552 /* This is just about all we can do. We could keep
12553 this location on the global list, and try to
12554 remove it next time, but there's no particular
12555 reason why we will succeed next time.
20874c92 12556
4a64f543
MS
12557 Note that at this point, old_loc->owner is still
12558 valid, as delete_breakpoint frees the breakpoint
12559 only after calling us. */
3e43a32a
MS
12560 printf_filtered (_("warning: Error removing "
12561 "breakpoint %d\n"),
876fa593 12562 old_loc->owner->number);
20874c92
VP
12563 }
12564 removed = 1;
12565 }
0d381245 12566 }
74960c60
VP
12567
12568 if (!found_object)
1c5cfe86 12569 {
fbea99ea 12570 if (removed && target_is_non_stop_p ()
1cf4d951 12571 && need_moribund_for_location_type (old_loc))
20874c92 12572 {
db82e815
PA
12573 /* This location was removed from the target. In
12574 non-stop mode, a race condition is possible where
12575 we've removed a breakpoint, but stop events for that
12576 breakpoint are already queued and will arrive later.
12577 We apply an heuristic to be able to distinguish such
12578 SIGTRAPs from other random SIGTRAPs: we keep this
12579 breakpoint location for a bit, and will retire it
12580 after we see some number of events. The theory here
12581 is that reporting of events should, "on the average",
12582 be fair, so after a while we'll see events from all
12583 threads that have anything of interest, and no longer
12584 need to keep this breakpoint location around. We
12585 don't hold locations forever so to reduce chances of
12586 mistaking a non-breakpoint SIGTRAP for a breakpoint
12587 SIGTRAP.
12588
12589 The heuristic failing can be disastrous on
12590 decr_pc_after_break targets.
12591
12592 On decr_pc_after_break targets, like e.g., x86-linux,
12593 if we fail to recognize a late breakpoint SIGTRAP,
12594 because events_till_retirement has reached 0 too
12595 soon, we'll fail to do the PC adjustment, and report
12596 a random SIGTRAP to the user. When the user resumes
12597 the inferior, it will most likely immediately crash
2dec564e 12598 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
12599 corrupted, because of being resumed e.g., in the
12600 middle of a multi-byte instruction, or skipped a
12601 one-byte instruction. This was actually seen happen
12602 on native x86-linux, and should be less rare on
12603 targets that do not support new thread events, like
12604 remote, due to the heuristic depending on
12605 thread_count.
12606
12607 Mistaking a random SIGTRAP for a breakpoint trap
12608 causes similar symptoms (PC adjustment applied when
12609 it shouldn't), but then again, playing with SIGTRAPs
12610 behind the debugger's back is asking for trouble.
12611
12612 Since hardware watchpoint traps are always
12613 distinguishable from other traps, so we don't need to
12614 apply keep hardware watchpoint moribund locations
12615 around. We simply always ignore hardware watchpoint
12616 traps we can no longer explain. */
12617
876fa593
JK
12618 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12619 old_loc->owner = NULL;
20874c92 12620
876fa593 12621 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
12622 }
12623 else
f431efe5
PA
12624 {
12625 old_loc->owner = NULL;
12626 decref_bp_location (&old_loc);
12627 }
20874c92 12628 }
74960c60 12629 }
1c5cfe86 12630
348d480f
PA
12631 /* Rescan breakpoints at the same address and section, marking the
12632 first one as "first" and any others as "duplicates". This is so
12633 that the bpt instruction is only inserted once. If we have a
12634 permanent breakpoint at the same place as BPT, make that one the
12635 official one, and the rest as duplicates. Permanent breakpoints
12636 are sorted first for the same address.
12637
12638 Do the same for hardware watchpoints, but also considering the
12639 watchpoint's type (regular/access/read) and length. */
12640
12641 bp_loc_first = NULL;
12642 wp_loc_first = NULL;
12643 awp_loc_first = NULL;
12644 rwp_loc_first = NULL;
12645 ALL_BP_LOCATIONS (loc, locp)
12646 {
12647 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12648 non-NULL. */
348d480f 12649 struct bp_location **loc_first_p;
d3fbdd86 12650 b = loc->owner;
348d480f 12651
6f380991 12652 if (!unduplicated_should_be_inserted (loc)
348d480f 12653 || !breakpoint_address_is_meaningful (b)
1e4d1764
YQ
12654 /* Don't detect duplicate for tracepoint locations because they are
12655 never duplicated. See the comments in field `duplicate' of
12656 `struct bp_location'. */
348d480f 12657 || is_tracepoint (b))
b775012e
LM
12658 {
12659 /* Clear the condition modification flag. */
12660 loc->condition_changed = condition_unchanged;
12661 continue;
12662 }
348d480f 12663
348d480f
PA
12664 if (b->type == bp_hardware_watchpoint)
12665 loc_first_p = &wp_loc_first;
12666 else if (b->type == bp_read_watchpoint)
12667 loc_first_p = &rwp_loc_first;
12668 else if (b->type == bp_access_watchpoint)
12669 loc_first_p = &awp_loc_first;
12670 else
12671 loc_first_p = &bp_loc_first;
12672
12673 if (*loc_first_p == NULL
12674 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12675 || !breakpoint_locations_match (loc, *loc_first_p))
12676 {
12677 *loc_first_p = loc;
12678 loc->duplicate = 0;
b775012e
LM
12679
12680 if (is_breakpoint (loc->owner) && loc->condition_changed)
12681 {
12682 loc->needs_update = 1;
12683 /* Clear the condition modification flag. */
12684 loc->condition_changed = condition_unchanged;
12685 }
348d480f
PA
12686 continue;
12687 }
12688
934709f0
PW
12689
12690 /* This and the above ensure the invariant that the first location
12691 is not duplicated, and is the inserted one.
12692 All following are marked as duplicated, and are not inserted. */
12693 if (loc->inserted)
12694 swap_insertion (loc, *loc_first_p);
348d480f
PA
12695 loc->duplicate = 1;
12696
b775012e
LM
12697 /* Clear the condition modification flag. */
12698 loc->condition_changed = condition_unchanged;
348d480f
PA
12699 }
12700
a25a5a45 12701 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
b775012e 12702 {
04086b45 12703 if (insert_mode != UGLL_DONT_INSERT)
b775012e
LM
12704 insert_breakpoint_locations ();
12705 else
12706 {
44702360
PA
12707 /* Even though the caller told us to not insert new
12708 locations, we may still need to update conditions on the
12709 target's side of breakpoints that were already inserted
12710 if the target is evaluating breakpoint conditions. We
b775012e
LM
12711 only update conditions for locations that are marked
12712 "needs_update". */
12713 update_inserted_breakpoint_locations ();
12714 }
12715 }
348d480f 12716
04086b45 12717 if (insert_mode != UGLL_DONT_INSERT)
1e4d1764
YQ
12718 download_tracepoint_locations ();
12719
348d480f
PA
12720 do_cleanups (cleanups);
12721}
12722
12723void
12724breakpoint_retire_moribund (void)
12725{
12726 struct bp_location *loc;
12727 int ix;
12728
12729 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12730 if (--(loc->events_till_retirement) == 0)
12731 {
12732 decref_bp_location (&loc);
12733 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12734 --ix;
12735 }
12736}
12737
12738static void
44702360 12739update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
348d480f 12740{
348d480f 12741
492d29ea
PA
12742 TRY
12743 {
12744 update_global_location_list (insert_mode);
12745 }
12746 CATCH (e, RETURN_MASK_ERROR)
12747 {
12748 }
12749 END_CATCH
348d480f
PA
12750}
12751
12752/* Clear BKP from a BPS. */
12753
12754static void
12755bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12756{
12757 bpstat bs;
12758
12759 for (bs = bps; bs; bs = bs->next)
12760 if (bs->breakpoint_at == bpt)
12761 {
12762 bs->breakpoint_at = NULL;
12763 bs->old_val = NULL;
12764 /* bs->commands will be freed later. */
12765 }
12766}
12767
12768/* Callback for iterate_over_threads. */
12769static int
12770bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12771{
9a3c8263 12772 struct breakpoint *bpt = (struct breakpoint *) data;
348d480f
PA
12773
12774 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12775 return 0;
12776}
12777
12778/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12779 callbacks. */
12780
12781static void
12782say_where (struct breakpoint *b)
12783{
12784 struct value_print_options opts;
12785
12786 get_user_print_options (&opts);
12787
12788 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12789 single string. */
12790 if (b->loc == NULL)
12791 {
f00aae0f
KS
12792 /* For pending locations, the output differs slightly based
12793 on b->extra_string. If this is non-NULL, it contains either
12794 a condition or dprintf arguments. */
12795 if (b->extra_string == NULL)
12796 {
12797 printf_filtered (_(" (%s) pending."),
12798 event_location_to_string (b->location));
12799 }
12800 else if (b->type == bp_dprintf)
12801 {
12802 printf_filtered (_(" (%s,%s) pending."),
12803 event_location_to_string (b->location),
12804 b->extra_string);
12805 }
12806 else
12807 {
12808 printf_filtered (_(" (%s %s) pending."),
12809 event_location_to_string (b->location),
12810 b->extra_string);
12811 }
348d480f
PA
12812 }
12813 else
12814 {
2f202fde 12815 if (opts.addressprint || b->loc->symtab == NULL)
348d480f
PA
12816 {
12817 printf_filtered (" at ");
12818 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12819 gdb_stdout);
12820 }
2f202fde 12821 if (b->loc->symtab != NULL)
f8eba3c6
TT
12822 {
12823 /* If there is a single location, we can print the location
12824 more nicely. */
12825 if (b->loc->next == NULL)
12826 printf_filtered (": file %s, line %d.",
05cba821
JK
12827 symtab_to_filename_for_display (b->loc->symtab),
12828 b->loc->line_number);
f8eba3c6
TT
12829 else
12830 /* This is not ideal, but each location may have a
12831 different file name, and this at least reflects the
12832 real situation somewhat. */
f00aae0f
KS
12833 printf_filtered (": %s.",
12834 event_location_to_string (b->location));
f8eba3c6 12835 }
348d480f
PA
12836
12837 if (b->loc->next)
12838 {
12839 struct bp_location *loc = b->loc;
12840 int n = 0;
12841 for (; loc; loc = loc->next)
12842 ++n;
12843 printf_filtered (" (%d locations)", n);
12844 }
12845 }
12846}
12847
348d480f
PA
12848/* Default bp_location_ops methods. */
12849
12850static void
12851bp_location_dtor (struct bp_location *self)
12852{
348d480f
PA
12853 xfree (self->function_name);
12854}
12855
12856static const struct bp_location_ops bp_location_ops =
12857{
12858 bp_location_dtor
12859};
12860
2060206e
PA
12861/* Default breakpoint_ops methods all breakpoint_ops ultimately
12862 inherit from. */
348d480f 12863
2060206e
PA
12864static void
12865base_breakpoint_dtor (struct breakpoint *self)
348d480f
PA
12866{
12867 decref_counted_command_line (&self->commands);
12868 xfree (self->cond_string);
fb81d016 12869 xfree (self->extra_string);
f8eba3c6 12870 xfree (self->filter);
f00aae0f
KS
12871 delete_event_location (self->location);
12872 delete_event_location (self->location_range_end);
348d480f
PA
12873}
12874
2060206e
PA
12875static struct bp_location *
12876base_breakpoint_allocate_location (struct breakpoint *self)
348d480f
PA
12877{
12878 struct bp_location *loc;
12879
4d01a485 12880 loc = new struct bp_location ();
348d480f
PA
12881 init_bp_location (loc, &bp_location_ops, self);
12882 return loc;
12883}
12884
2060206e
PA
12885static void
12886base_breakpoint_re_set (struct breakpoint *b)
12887{
12888 /* Nothing to re-set. */
12889}
12890
12891#define internal_error_pure_virtual_called() \
12892 gdb_assert_not_reached ("pure virtual function called")
12893
12894static int
12895base_breakpoint_insert_location (struct bp_location *bl)
12896{
12897 internal_error_pure_virtual_called ();
12898}
12899
12900static int
73971819
PA
12901base_breakpoint_remove_location (struct bp_location *bl,
12902 enum remove_bp_reason reason)
2060206e
PA
12903{
12904 internal_error_pure_virtual_called ();
12905}
12906
12907static int
12908base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12909 struct address_space *aspace,
09ac7c10
TT
12910 CORE_ADDR bp_addr,
12911 const struct target_waitstatus *ws)
2060206e
PA
12912{
12913 internal_error_pure_virtual_called ();
12914}
12915
12916static void
12917base_breakpoint_check_status (bpstat bs)
12918{
12919 /* Always stop. */
12920}
12921
12922/* A "works_in_software_mode" breakpoint_ops method that just internal
12923 errors. */
12924
12925static int
12926base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12927{
12928 internal_error_pure_virtual_called ();
12929}
12930
12931/* A "resources_needed" breakpoint_ops method that just internal
12932 errors. */
12933
12934static int
12935base_breakpoint_resources_needed (const struct bp_location *bl)
12936{
12937 internal_error_pure_virtual_called ();
12938}
12939
12940static enum print_stop_action
12941base_breakpoint_print_it (bpstat bs)
12942{
12943 internal_error_pure_virtual_called ();
12944}
12945
12946static void
12947base_breakpoint_print_one_detail (const struct breakpoint *self,
12948 struct ui_out *uiout)
12949{
12950 /* nothing */
12951}
12952
12953static void
12954base_breakpoint_print_mention (struct breakpoint *b)
12955{
12956 internal_error_pure_virtual_called ();
12957}
12958
12959static void
12960base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12961{
12962 internal_error_pure_virtual_called ();
12963}
12964
983af33b 12965static void
f00aae0f
KS
12966base_breakpoint_create_sals_from_location
12967 (const struct event_location *location,
12968 struct linespec_result *canonical,
12969 enum bptype type_wanted)
983af33b
SDJ
12970{
12971 internal_error_pure_virtual_called ();
12972}
12973
12974static void
12975base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12976 struct linespec_result *c,
983af33b 12977 char *cond_string,
e7e0cddf 12978 char *extra_string,
983af33b
SDJ
12979 enum bptype type_wanted,
12980 enum bpdisp disposition,
12981 int thread,
12982 int task, int ignore_count,
12983 const struct breakpoint_ops *o,
12984 int from_tty, int enabled,
44f238bb 12985 int internal, unsigned flags)
983af33b
SDJ
12986{
12987 internal_error_pure_virtual_called ();
12988}
12989
12990static void
f00aae0f
KS
12991base_breakpoint_decode_location (struct breakpoint *b,
12992 const struct event_location *location,
c2f4122d 12993 struct program_space *search_pspace,
983af33b
SDJ
12994 struct symtabs_and_lines *sals)
12995{
12996 internal_error_pure_virtual_called ();
12997}
12998
ab04a2af
TT
12999/* The default 'explains_signal' method. */
13000
47591c29 13001static int
427cd150 13002base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 13003{
47591c29 13004 return 1;
ab04a2af
TT
13005}
13006
9d6e6e84
HZ
13007/* The default "after_condition_true" method. */
13008
13009static void
13010base_breakpoint_after_condition_true (struct bpstats *bs)
13011{
13012 /* Nothing to do. */
13013}
13014
ab04a2af 13015struct breakpoint_ops base_breakpoint_ops =
2060206e
PA
13016{
13017 base_breakpoint_dtor,
13018 base_breakpoint_allocate_location,
13019 base_breakpoint_re_set,
13020 base_breakpoint_insert_location,
13021 base_breakpoint_remove_location,
13022 base_breakpoint_breakpoint_hit,
13023 base_breakpoint_check_status,
13024 base_breakpoint_resources_needed,
13025 base_breakpoint_works_in_software_mode,
13026 base_breakpoint_print_it,
13027 NULL,
13028 base_breakpoint_print_one_detail,
13029 base_breakpoint_print_mention,
983af33b 13030 base_breakpoint_print_recreate,
5f700d83 13031 base_breakpoint_create_sals_from_location,
983af33b 13032 base_breakpoint_create_breakpoints_sal,
5f700d83 13033 base_breakpoint_decode_location,
9d6e6e84
HZ
13034 base_breakpoint_explains_signal,
13035 base_breakpoint_after_condition_true,
2060206e
PA
13036};
13037
13038/* Default breakpoint_ops methods. */
13039
13040static void
348d480f
PA
13041bkpt_re_set (struct breakpoint *b)
13042{
06edf0c0 13043 /* FIXME: is this still reachable? */
9ef9e6a6 13044 if (breakpoint_event_location_empty_p (b))
06edf0c0 13045 {
f00aae0f 13046 /* Anything without a location can't be re-set. */
348d480f 13047 delete_breakpoint (b);
06edf0c0 13048 return;
348d480f 13049 }
06edf0c0
PA
13050
13051 breakpoint_re_set_default (b);
348d480f
PA
13052}
13053
2060206e 13054static int
348d480f
PA
13055bkpt_insert_location (struct bp_location *bl)
13056{
cd6c3b4f
YQ
13057 CORE_ADDR addr = bl->target_info.reqstd_address;
13058
579c6ad9 13059 bl->target_info.kind = breakpoint_kind (bl, &addr);
cd6c3b4f
YQ
13060 bl->target_info.placed_address = addr;
13061
348d480f 13062 if (bl->loc_type == bp_loc_hardware_breakpoint)
7c16b83e 13063 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
348d480f 13064 else
7c16b83e 13065 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
348d480f
PA
13066}
13067
2060206e 13068static int
73971819 13069bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
348d480f
PA
13070{
13071 if (bl->loc_type == bp_loc_hardware_breakpoint)
13072 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
13073 else
73971819 13074 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
348d480f
PA
13075}
13076
2060206e 13077static int
348d480f 13078bkpt_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
13079 struct address_space *aspace, CORE_ADDR bp_addr,
13080 const struct target_waitstatus *ws)
348d480f 13081{
09ac7c10 13082 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 13083 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
13084 return 0;
13085
348d480f
PA
13086 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
13087 aspace, bp_addr))
13088 return 0;
13089
13090 if (overlay_debugging /* unmapped overlay section */
13091 && section_is_overlay (bl->section)
13092 && !section_is_mapped (bl->section))
13093 return 0;
13094
13095 return 1;
13096}
13097
cd1608cc
PA
13098static int
13099dprintf_breakpoint_hit (const struct bp_location *bl,
13100 struct address_space *aspace, CORE_ADDR bp_addr,
13101 const struct target_waitstatus *ws)
13102{
13103 if (dprintf_style == dprintf_style_agent
13104 && target_can_run_breakpoint_commands ())
13105 {
13106 /* An agent-style dprintf never causes a stop. If we see a trap
13107 for this address it must be for a breakpoint that happens to
13108 be set at the same address. */
13109 return 0;
13110 }
13111
13112 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
13113}
13114
2060206e 13115static int
348d480f
PA
13116bkpt_resources_needed (const struct bp_location *bl)
13117{
13118 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
13119
13120 return 1;
13121}
13122
2060206e 13123static enum print_stop_action
348d480f
PA
13124bkpt_print_it (bpstat bs)
13125{
348d480f
PA
13126 struct breakpoint *b;
13127 const struct bp_location *bl;
001c8c33 13128 int bp_temp;
79a45e25 13129 struct ui_out *uiout = current_uiout;
348d480f
PA
13130
13131 gdb_assert (bs->bp_location_at != NULL);
13132
13133 bl = bs->bp_location_at;
13134 b = bs->breakpoint_at;
13135
001c8c33
PA
13136 bp_temp = b->disposition == disp_del;
13137 if (bl->address != bl->requested_address)
13138 breakpoint_adjustment_warning (bl->requested_address,
13139 bl->address,
13140 b->number, 1);
13141 annotate_breakpoint (b->number);
f303dbd6
PA
13142 maybe_print_thread_hit_breakpoint (uiout);
13143
001c8c33 13144 if (bp_temp)
112e8700 13145 uiout->text ("Temporary breakpoint ");
001c8c33 13146 else
112e8700
SM
13147 uiout->text ("Breakpoint ");
13148 if (uiout->is_mi_like_p ())
348d480f 13149 {
112e8700 13150 uiout->field_string ("reason",
001c8c33 13151 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 13152 uiout->field_string ("disp", bpdisp_text (b->disposition));
06edf0c0 13153 }
112e8700
SM
13154 uiout->field_int ("bkptno", b->number);
13155 uiout->text (", ");
06edf0c0 13156
001c8c33 13157 return PRINT_SRC_AND_LOC;
06edf0c0
PA
13158}
13159
2060206e 13160static void
06edf0c0
PA
13161bkpt_print_mention (struct breakpoint *b)
13162{
112e8700 13163 if (current_uiout->is_mi_like_p ())
06edf0c0
PA
13164 return;
13165
13166 switch (b->type)
13167 {
13168 case bp_breakpoint:
13169 case bp_gnu_ifunc_resolver:
13170 if (b->disposition == disp_del)
13171 printf_filtered (_("Temporary breakpoint"));
13172 else
13173 printf_filtered (_("Breakpoint"));
13174 printf_filtered (_(" %d"), b->number);
13175 if (b->type == bp_gnu_ifunc_resolver)
13176 printf_filtered (_(" at gnu-indirect-function resolver"));
13177 break;
13178 case bp_hardware_breakpoint:
13179 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
13180 break;
e7e0cddf
SS
13181 case bp_dprintf:
13182 printf_filtered (_("Dprintf %d"), b->number);
13183 break;
06edf0c0
PA
13184 }
13185
13186 say_where (b);
13187}
13188
2060206e 13189static void
06edf0c0
PA
13190bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13191{
13192 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
13193 fprintf_unfiltered (fp, "tbreak");
13194 else if (tp->type == bp_breakpoint)
13195 fprintf_unfiltered (fp, "break");
13196 else if (tp->type == bp_hardware_breakpoint
13197 && tp->disposition == disp_del)
13198 fprintf_unfiltered (fp, "thbreak");
13199 else if (tp->type == bp_hardware_breakpoint)
13200 fprintf_unfiltered (fp, "hbreak");
13201 else
13202 internal_error (__FILE__, __LINE__,
13203 _("unhandled breakpoint type %d"), (int) tp->type);
13204
f00aae0f
KS
13205 fprintf_unfiltered (fp, " %s",
13206 event_location_to_string (tp->location));
13207
13208 /* Print out extra_string if this breakpoint is pending. It might
13209 contain, for example, conditions that were set by the user. */
13210 if (tp->loc == NULL && tp->extra_string != NULL)
13211 fprintf_unfiltered (fp, " %s", tp->extra_string);
13212
dd11a36c 13213 print_recreate_thread (tp, fp);
06edf0c0
PA
13214}
13215
983af33b 13216static void
f00aae0f
KS
13217bkpt_create_sals_from_location (const struct event_location *location,
13218 struct linespec_result *canonical,
13219 enum bptype type_wanted)
983af33b 13220{
f00aae0f 13221 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
13222}
13223
13224static void
13225bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
13226 struct linespec_result *canonical,
983af33b 13227 char *cond_string,
e7e0cddf 13228 char *extra_string,
983af33b
SDJ
13229 enum bptype type_wanted,
13230 enum bpdisp disposition,
13231 int thread,
13232 int task, int ignore_count,
13233 const struct breakpoint_ops *ops,
13234 int from_tty, int enabled,
44f238bb 13235 int internal, unsigned flags)
983af33b 13236{
023fa29b 13237 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13238 cond_string, extra_string,
13239 type_wanted,
983af33b
SDJ
13240 disposition, thread, task,
13241 ignore_count, ops, from_tty,
44f238bb 13242 enabled, internal, flags);
983af33b
SDJ
13243}
13244
13245static void
f00aae0f
KS
13246bkpt_decode_location (struct breakpoint *b,
13247 const struct event_location *location,
c2f4122d 13248 struct program_space *search_pspace,
983af33b
SDJ
13249 struct symtabs_and_lines *sals)
13250{
c2f4122d 13251 decode_location_default (b, location, search_pspace, sals);
983af33b
SDJ
13252}
13253
06edf0c0
PA
13254/* Virtual table for internal breakpoints. */
13255
13256static void
13257internal_bkpt_re_set (struct breakpoint *b)
13258{
13259 switch (b->type)
13260 {
13261 /* Delete overlay event and longjmp master breakpoints; they
13262 will be reset later by breakpoint_re_set. */
13263 case bp_overlay_event:
13264 case bp_longjmp_master:
13265 case bp_std_terminate_master:
13266 case bp_exception_master:
13267 delete_breakpoint (b);
13268 break;
13269
13270 /* This breakpoint is special, it's set up when the inferior
13271 starts and we really don't want to touch it. */
13272 case bp_shlib_event:
13273
13274 /* Like bp_shlib_event, this breakpoint type is special. Once
13275 it is set up, we do not want to touch it. */
13276 case bp_thread_event:
13277 break;
13278 }
13279}
13280
13281static void
13282internal_bkpt_check_status (bpstat bs)
13283{
a9b3a50f
PA
13284 if (bs->breakpoint_at->type == bp_shlib_event)
13285 {
13286 /* If requested, stop when the dynamic linker notifies GDB of
13287 events. This allows the user to get control and place
13288 breakpoints in initializer routines for dynamically loaded
13289 objects (among other things). */
13290 bs->stop = stop_on_solib_events;
13291 bs->print = stop_on_solib_events;
13292 }
13293 else
13294 bs->stop = 0;
06edf0c0
PA
13295}
13296
13297static enum print_stop_action
13298internal_bkpt_print_it (bpstat bs)
13299{
06edf0c0 13300 struct breakpoint *b;
06edf0c0 13301
06edf0c0
PA
13302 b = bs->breakpoint_at;
13303
06edf0c0
PA
13304 switch (b->type)
13305 {
348d480f
PA
13306 case bp_shlib_event:
13307 /* Did we stop because the user set the stop_on_solib_events
13308 variable? (If so, we report this as a generic, "Stopped due
13309 to shlib event" message.) */
edcc5120 13310 print_solib_event (0);
348d480f
PA
13311 break;
13312
13313 case bp_thread_event:
13314 /* Not sure how we will get here.
13315 GDB should not stop for these breakpoints. */
13316 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13317 break;
13318
13319 case bp_overlay_event:
13320 /* By analogy with the thread event, GDB should not stop for these. */
13321 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13322 break;
13323
13324 case bp_longjmp_master:
13325 /* These should never be enabled. */
13326 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
13327 break;
13328
13329 case bp_std_terminate_master:
13330 /* These should never be enabled. */
13331 printf_filtered (_("std::terminate Master Breakpoint: "
13332 "gdb should not stop!\n"));
348d480f
PA
13333 break;
13334
13335 case bp_exception_master:
13336 /* These should never be enabled. */
13337 printf_filtered (_("Exception Master Breakpoint: "
13338 "gdb should not stop!\n"));
06edf0c0
PA
13339 break;
13340 }
13341
001c8c33 13342 return PRINT_NOTHING;
06edf0c0
PA
13343}
13344
13345static void
13346internal_bkpt_print_mention (struct breakpoint *b)
13347{
13348 /* Nothing to mention. These breakpoints are internal. */
13349}
13350
06edf0c0
PA
13351/* Virtual table for momentary breakpoints */
13352
13353static void
13354momentary_bkpt_re_set (struct breakpoint *b)
13355{
13356 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 13357 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
13358 Otherwise these should have been blown away via the cleanup chain
13359 or by breakpoint_init_inferior when we rerun the executable. */
13360}
13361
13362static void
13363momentary_bkpt_check_status (bpstat bs)
13364{
13365 /* Nothing. The point of these breakpoints is causing a stop. */
13366}
13367
13368static enum print_stop_action
13369momentary_bkpt_print_it (bpstat bs)
13370{
001c8c33 13371 return PRINT_UNKNOWN;
348d480f
PA
13372}
13373
06edf0c0
PA
13374static void
13375momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 13376{
06edf0c0 13377 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
13378}
13379
e2e4d78b
JK
13380/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
13381
13382 It gets cleared already on the removal of the first one of such placed
13383 breakpoints. This is OK as they get all removed altogether. */
13384
13385static void
13386longjmp_bkpt_dtor (struct breakpoint *self)
13387{
5d5658a1 13388 struct thread_info *tp = find_thread_global_id (self->thread);
e2e4d78b
JK
13389
13390 if (tp)
13391 tp->initiating_frame = null_frame_id;
13392
13393 momentary_breakpoint_ops.dtor (self);
13394}
13395
55aa24fb
SDJ
13396/* Specific methods for probe breakpoints. */
13397
13398static int
13399bkpt_probe_insert_location (struct bp_location *bl)
13400{
13401 int v = bkpt_insert_location (bl);
13402
13403 if (v == 0)
13404 {
13405 /* The insertion was successful, now let's set the probe's semaphore
13406 if needed. */
0ea5cda8
SDJ
13407 if (bl->probe.probe->pops->set_semaphore != NULL)
13408 bl->probe.probe->pops->set_semaphore (bl->probe.probe,
13409 bl->probe.objfile,
13410 bl->gdbarch);
55aa24fb
SDJ
13411 }
13412
13413 return v;
13414}
13415
13416static int
73971819
PA
13417bkpt_probe_remove_location (struct bp_location *bl,
13418 enum remove_bp_reason reason)
55aa24fb
SDJ
13419{
13420 /* Let's clear the semaphore before removing the location. */
0ea5cda8
SDJ
13421 if (bl->probe.probe->pops->clear_semaphore != NULL)
13422 bl->probe.probe->pops->clear_semaphore (bl->probe.probe,
13423 bl->probe.objfile,
13424 bl->gdbarch);
55aa24fb 13425
73971819 13426 return bkpt_remove_location (bl, reason);
55aa24fb
SDJ
13427}
13428
13429static void
f00aae0f 13430bkpt_probe_create_sals_from_location (const struct event_location *location,
5f700d83 13431 struct linespec_result *canonical,
f00aae0f 13432 enum bptype type_wanted)
55aa24fb
SDJ
13433{
13434 struct linespec_sals lsal;
13435
c2f4122d 13436 lsal.sals = parse_probes (location, NULL, canonical);
f00aae0f 13437 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
55aa24fb
SDJ
13438 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13439}
13440
13441static void
f00aae0f
KS
13442bkpt_probe_decode_location (struct breakpoint *b,
13443 const struct event_location *location,
c2f4122d 13444 struct program_space *search_pspace,
55aa24fb
SDJ
13445 struct symtabs_and_lines *sals)
13446{
c2f4122d 13447 *sals = parse_probes (location, search_pspace, NULL);
55aa24fb
SDJ
13448 if (!sals->sals)
13449 error (_("probe not found"));
13450}
13451
348d480f 13452/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 13453
348d480f
PA
13454static void
13455tracepoint_re_set (struct breakpoint *b)
13456{
13457 breakpoint_re_set_default (b);
13458}
876fa593 13459
348d480f
PA
13460static int
13461tracepoint_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
13462 struct address_space *aspace, CORE_ADDR bp_addr,
13463 const struct target_waitstatus *ws)
348d480f
PA
13464{
13465 /* By definition, the inferior does not report stops at
13466 tracepoints. */
13467 return 0;
74960c60
VP
13468}
13469
13470static void
348d480f
PA
13471tracepoint_print_one_detail (const struct breakpoint *self,
13472 struct ui_out *uiout)
74960c60 13473{
d9b3f62e
PA
13474 struct tracepoint *tp = (struct tracepoint *) self;
13475 if (tp->static_trace_marker_id)
348d480f
PA
13476 {
13477 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 13478
112e8700
SM
13479 uiout->text ("\tmarker id is ");
13480 uiout->field_string ("static-tracepoint-marker-string-id",
d9b3f62e 13481 tp->static_trace_marker_id);
112e8700 13482 uiout->text ("\n");
348d480f 13483 }
0d381245
VP
13484}
13485
a474d7c2 13486static void
348d480f 13487tracepoint_print_mention (struct breakpoint *b)
a474d7c2 13488{
112e8700 13489 if (current_uiout->is_mi_like_p ())
348d480f 13490 return;
cc59ec59 13491
348d480f
PA
13492 switch (b->type)
13493 {
13494 case bp_tracepoint:
13495 printf_filtered (_("Tracepoint"));
13496 printf_filtered (_(" %d"), b->number);
13497 break;
13498 case bp_fast_tracepoint:
13499 printf_filtered (_("Fast tracepoint"));
13500 printf_filtered (_(" %d"), b->number);
13501 break;
13502 case bp_static_tracepoint:
13503 printf_filtered (_("Static tracepoint"));
13504 printf_filtered (_(" %d"), b->number);
13505 break;
13506 default:
13507 internal_error (__FILE__, __LINE__,
13508 _("unhandled tracepoint type %d"), (int) b->type);
13509 }
13510
13511 say_where (b);
a474d7c2
PA
13512}
13513
348d480f 13514static void
d9b3f62e 13515tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 13516{
d9b3f62e
PA
13517 struct tracepoint *tp = (struct tracepoint *) self;
13518
13519 if (self->type == bp_fast_tracepoint)
348d480f 13520 fprintf_unfiltered (fp, "ftrace");
c93e8391 13521 else if (self->type == bp_static_tracepoint)
348d480f 13522 fprintf_unfiltered (fp, "strace");
d9b3f62e 13523 else if (self->type == bp_tracepoint)
348d480f
PA
13524 fprintf_unfiltered (fp, "trace");
13525 else
13526 internal_error (__FILE__, __LINE__,
d9b3f62e 13527 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 13528
f00aae0f
KS
13529 fprintf_unfiltered (fp, " %s",
13530 event_location_to_string (self->location));
d9b3f62e
PA
13531 print_recreate_thread (self, fp);
13532
13533 if (tp->pass_count)
13534 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
13535}
13536
983af33b 13537static void
f00aae0f
KS
13538tracepoint_create_sals_from_location (const struct event_location *location,
13539 struct linespec_result *canonical,
13540 enum bptype type_wanted)
983af33b 13541{
f00aae0f 13542 create_sals_from_location_default (location, canonical, type_wanted);
983af33b
SDJ
13543}
13544
13545static void
13546tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13547 struct linespec_result *canonical,
983af33b 13548 char *cond_string,
e7e0cddf 13549 char *extra_string,
983af33b
SDJ
13550 enum bptype type_wanted,
13551 enum bpdisp disposition,
13552 int thread,
13553 int task, int ignore_count,
13554 const struct breakpoint_ops *ops,
13555 int from_tty, int enabled,
44f238bb 13556 int internal, unsigned flags)
983af33b 13557{
023fa29b 13558 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13559 cond_string, extra_string,
13560 type_wanted,
983af33b
SDJ
13561 disposition, thread, task,
13562 ignore_count, ops, from_tty,
44f238bb 13563 enabled, internal, flags);
983af33b
SDJ
13564}
13565
13566static void
f00aae0f
KS
13567tracepoint_decode_location (struct breakpoint *b,
13568 const struct event_location *location,
c2f4122d 13569 struct program_space *search_pspace,
983af33b
SDJ
13570 struct symtabs_and_lines *sals)
13571{
c2f4122d 13572 decode_location_default (b, location, search_pspace, sals);
983af33b
SDJ
13573}
13574
2060206e 13575struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 13576
55aa24fb
SDJ
13577/* The breakpoint_ops structure to be use on tracepoints placed in a
13578 static probe. */
13579
13580static void
f00aae0f
KS
13581tracepoint_probe_create_sals_from_location
13582 (const struct event_location *location,
13583 struct linespec_result *canonical,
13584 enum bptype type_wanted)
55aa24fb
SDJ
13585{
13586 /* We use the same method for breakpoint on probes. */
f00aae0f 13587 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
55aa24fb
SDJ
13588}
13589
13590static void
f00aae0f
KS
13591tracepoint_probe_decode_location (struct breakpoint *b,
13592 const struct event_location *location,
c2f4122d 13593 struct program_space *search_pspace,
55aa24fb
SDJ
13594 struct symtabs_and_lines *sals)
13595{
13596 /* We use the same method for breakpoint on probes. */
c2f4122d 13597 bkpt_probe_decode_location (b, location, search_pspace, sals);
55aa24fb
SDJ
13598}
13599
13600static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13601
5c2b4418
HZ
13602/* Dprintf breakpoint_ops methods. */
13603
13604static void
13605dprintf_re_set (struct breakpoint *b)
13606{
13607 breakpoint_re_set_default (b);
13608
f00aae0f
KS
13609 /* extra_string should never be non-NULL for dprintf. */
13610 gdb_assert (b->extra_string != NULL);
5c2b4418
HZ
13611
13612 /* 1 - connect to target 1, that can run breakpoint commands.
13613 2 - create a dprintf, which resolves fine.
13614 3 - disconnect from target 1
13615 4 - connect to target 2, that can NOT run breakpoint commands.
13616
13617 After steps #3/#4, you'll want the dprintf command list to
13618 be updated, because target 1 and 2 may well return different
13619 answers for target_can_run_breakpoint_commands().
13620 Given absence of finer grained resetting, we get to do
13621 it all the time. */
13622 if (b->extra_string != NULL)
13623 update_dprintf_command_list (b);
13624}
13625
2d9442cc
HZ
13626/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13627
13628static void
13629dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13630{
f00aae0f
KS
13631 fprintf_unfiltered (fp, "dprintf %s,%s",
13632 event_location_to_string (tp->location),
2d9442cc
HZ
13633 tp->extra_string);
13634 print_recreate_thread (tp, fp);
13635}
13636
9d6e6e84
HZ
13637/* Implement the "after_condition_true" breakpoint_ops method for
13638 dprintf.
13639
13640 dprintf's are implemented with regular commands in their command
13641 list, but we run the commands here instead of before presenting the
13642 stop to the user, as dprintf's don't actually cause a stop. This
13643 also makes it so that the commands of multiple dprintfs at the same
13644 address are all handled. */
13645
13646static void
13647dprintf_after_condition_true (struct bpstats *bs)
13648{
13649 struct cleanup *old_chain;
13650 struct bpstats tmp_bs = { NULL };
13651 struct bpstats *tmp_bs_p = &tmp_bs;
13652
13653 /* dprintf's never cause a stop. This wasn't set in the
13654 check_status hook instead because that would make the dprintf's
13655 condition not be evaluated. */
13656 bs->stop = 0;
13657
13658 /* Run the command list here. Take ownership of it instead of
13659 copying. We never want these commands to run later in
13660 bpstat_do_actions, if a breakpoint that causes a stop happens to
13661 be set at same address as this dprintf, or even if running the
13662 commands here throws. */
13663 tmp_bs.commands = bs->commands;
13664 bs->commands = NULL;
13665 old_chain = make_cleanup_decref_counted_command_line (&tmp_bs.commands);
13666
13667 bpstat_do_actions_1 (&tmp_bs_p);
13668
13669 /* 'tmp_bs.commands' will usually be NULL by now, but
13670 bpstat_do_actions_1 may return early without processing the whole
13671 list. */
13672 do_cleanups (old_chain);
13673}
13674
983af33b
SDJ
13675/* The breakpoint_ops structure to be used on static tracepoints with
13676 markers (`-m'). */
13677
13678static void
f00aae0f 13679strace_marker_create_sals_from_location (const struct event_location *location,
5f700d83 13680 struct linespec_result *canonical,
f00aae0f 13681 enum bptype type_wanted)
983af33b
SDJ
13682{
13683 struct linespec_sals lsal;
f00aae0f
KS
13684 const char *arg_start, *arg;
13685 char *str;
13686 struct cleanup *cleanup;
983af33b 13687
f00aae0f
KS
13688 arg = arg_start = get_linespec_location (location);
13689 lsal.sals = decode_static_tracepoint_spec (&arg);
983af33b 13690
f00aae0f
KS
13691 str = savestring (arg_start, arg - arg_start);
13692 cleanup = make_cleanup (xfree, str);
13693 canonical->location = new_linespec_location (&str);
13694 do_cleanups (cleanup);
983af33b 13695
f00aae0f 13696 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
983af33b
SDJ
13697 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13698}
13699
13700static void
13701strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13702 struct linespec_result *canonical,
983af33b 13703 char *cond_string,
e7e0cddf 13704 char *extra_string,
983af33b
SDJ
13705 enum bptype type_wanted,
13706 enum bpdisp disposition,
13707 int thread,
13708 int task, int ignore_count,
13709 const struct breakpoint_ops *ops,
13710 int from_tty, int enabled,
44f238bb 13711 int internal, unsigned flags)
983af33b
SDJ
13712{
13713 int i;
52d361e1
YQ
13714 struct linespec_sals *lsal = VEC_index (linespec_sals,
13715 canonical->sals, 0);
983af33b
SDJ
13716
13717 /* If the user is creating a static tracepoint by marker id
13718 (strace -m MARKER_ID), then store the sals index, so that
13719 breakpoint_re_set can try to match up which of the newly
13720 found markers corresponds to this one, and, don't try to
13721 expand multiple locations for each sal, given than SALS
13722 already should contain all sals for MARKER_ID. */
13723
13724 for (i = 0; i < lsal->sals.nelts; ++i)
13725 {
13726 struct symtabs_and_lines expanded;
13727 struct tracepoint *tp;
13728 struct cleanup *old_chain;
f00aae0f 13729 struct event_location *location;
983af33b
SDJ
13730
13731 expanded.nelts = 1;
13732 expanded.sals = &lsal->sals.sals[i];
13733
f00aae0f
KS
13734 location = copy_event_location (canonical->location);
13735 old_chain = make_cleanup_delete_event_location (location);
983af33b 13736
4d01a485 13737 tp = new tracepoint ();
983af33b 13738 init_breakpoint_sal (&tp->base, gdbarch, expanded,
f00aae0f 13739 location, NULL,
e7e0cddf
SS
13740 cond_string, extra_string,
13741 type_wanted, disposition,
983af33b 13742 thread, task, ignore_count, ops,
44f238bb 13743 from_tty, enabled, internal, flags,
983af33b
SDJ
13744 canonical->special_display);
13745 /* Given that its possible to have multiple markers with
13746 the same string id, if the user is creating a static
13747 tracepoint by marker id ("strace -m MARKER_ID"), then
13748 store the sals index, so that breakpoint_re_set can
13749 try to match up which of the newly found markers
13750 corresponds to this one */
13751 tp->static_trace_marker_id_idx = i;
13752
13753 install_breakpoint (internal, &tp->base, 0);
13754
13755 discard_cleanups (old_chain);
13756 }
13757}
13758
13759static void
f00aae0f
KS
13760strace_marker_decode_location (struct breakpoint *b,
13761 const struct event_location *location,
c2f4122d 13762 struct program_space *search_pspace,
983af33b
SDJ
13763 struct symtabs_and_lines *sals)
13764{
13765 struct tracepoint *tp = (struct tracepoint *) b;
f00aae0f 13766 const char *s = get_linespec_location (location);
983af33b 13767
f00aae0f 13768 *sals = decode_static_tracepoint_spec (&s);
983af33b
SDJ
13769 if (sals->nelts > tp->static_trace_marker_id_idx)
13770 {
13771 sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx];
13772 sals->nelts = 1;
13773 }
13774 else
13775 error (_("marker %s not found"), tp->static_trace_marker_id);
13776}
13777
13778static struct breakpoint_ops strace_marker_breakpoint_ops;
13779
13780static int
13781strace_marker_p (struct breakpoint *b)
13782{
13783 return b->ops == &strace_marker_breakpoint_ops;
13784}
13785
53a5351d 13786/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 13787 structures. */
c906108c
SS
13788
13789void
fba45db2 13790delete_breakpoint (struct breakpoint *bpt)
c906108c 13791{
52f0bd74 13792 struct breakpoint *b;
c906108c 13793
8a3fe4f8 13794 gdb_assert (bpt != NULL);
c906108c 13795
4a64f543
MS
13796 /* Has this bp already been deleted? This can happen because
13797 multiple lists can hold pointers to bp's. bpstat lists are
13798 especial culprits.
13799
13800 One example of this happening is a watchpoint's scope bp. When
13801 the scope bp triggers, we notice that the watchpoint is out of
13802 scope, and delete it. We also delete its scope bp. But the
13803 scope bp is marked "auto-deleting", and is already on a bpstat.
13804 That bpstat is then checked for auto-deleting bp's, which are
13805 deleted.
13806
13807 A real solution to this problem might involve reference counts in
13808 bp's, and/or giving them pointers back to their referencing
13809 bpstat's, and teaching delete_breakpoint to only free a bp's
13810 storage when no more references were extent. A cheaper bandaid
13811 was chosen. */
c906108c
SS
13812 if (bpt->type == bp_none)
13813 return;
13814
4a64f543
MS
13815 /* At least avoid this stale reference until the reference counting
13816 of breakpoints gets resolved. */
d0fb5eae 13817 if (bpt->related_breakpoint != bpt)
e5a0a904 13818 {
d0fb5eae 13819 struct breakpoint *related;
3a5c3e22 13820 struct watchpoint *w;
d0fb5eae
JK
13821
13822 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 13823 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 13824 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
13825 w = (struct watchpoint *) bpt;
13826 else
13827 w = NULL;
13828 if (w != NULL)
13829 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
13830
13831 /* Unlink bpt from the bpt->related_breakpoint ring. */
13832 for (related = bpt; related->related_breakpoint != bpt;
13833 related = related->related_breakpoint);
13834 related->related_breakpoint = bpt->related_breakpoint;
13835 bpt->related_breakpoint = bpt;
e5a0a904
JK
13836 }
13837
a9634178
TJB
13838 /* watch_command_1 creates a watchpoint but only sets its number if
13839 update_watchpoint succeeds in creating its bp_locations. If there's
13840 a problem in that process, we'll be asked to delete the half-created
13841 watchpoint. In that case, don't announce the deletion. */
13842 if (bpt->number)
13843 observer_notify_breakpoint_deleted (bpt);
c906108c 13844
c906108c
SS
13845 if (breakpoint_chain == bpt)
13846 breakpoint_chain = bpt->next;
13847
c906108c
SS
13848 ALL_BREAKPOINTS (b)
13849 if (b->next == bpt)
c5aa993b
JM
13850 {
13851 b->next = bpt->next;
13852 break;
13853 }
c906108c 13854
f431efe5
PA
13855 /* Be sure no bpstat's are pointing at the breakpoint after it's
13856 been freed. */
13857 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 13858 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
13859 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13860 commands are associated with the bpstat; if we remove it here,
13861 then the later call to bpstat_do_actions (&stop_bpstat); in
13862 event-top.c won't do anything, and temporary breakpoints with
13863 commands won't work. */
13864
13865 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13866
4a64f543
MS
13867 /* Now that breakpoint is removed from breakpoint list, update the
13868 global location list. This will remove locations that used to
13869 belong to this breakpoint. Do this before freeing the breakpoint
13870 itself, since remove_breakpoint looks at location's owner. It
13871 might be better design to have location completely
13872 self-contained, but it's not the case now. */
44702360 13873 update_global_location_list (UGLL_DONT_INSERT);
74960c60 13874
348d480f 13875 bpt->ops->dtor (bpt);
4a64f543
MS
13876 /* On the chance that someone will soon try again to delete this
13877 same bp, we mark it as deleted before freeing its storage. */
c906108c 13878 bpt->type = bp_none;
4d01a485 13879 delete bpt;
c906108c
SS
13880}
13881
4d6140d9
AC
13882static void
13883do_delete_breakpoint_cleanup (void *b)
13884{
9a3c8263 13885 delete_breakpoint ((struct breakpoint *) b);
4d6140d9
AC
13886}
13887
13888struct cleanup *
13889make_cleanup_delete_breakpoint (struct breakpoint *b)
13890{
13891 return make_cleanup (do_delete_breakpoint_cleanup, b);
13892}
13893
51be5b68
PA
13894/* Iterator function to call a user-provided callback function once
13895 for each of B and its related breakpoints. */
13896
13897static void
13898iterate_over_related_breakpoints (struct breakpoint *b,
13899 void (*function) (struct breakpoint *,
13900 void *),
13901 void *data)
13902{
13903 struct breakpoint *related;
13904
13905 related = b;
13906 do
13907 {
13908 struct breakpoint *next;
13909
13910 /* FUNCTION may delete RELATED. */
13911 next = related->related_breakpoint;
13912
13913 if (next == related)
13914 {
13915 /* RELATED is the last ring entry. */
13916 function (related, data);
13917
13918 /* FUNCTION may have deleted it, so we'd never reach back to
13919 B. There's nothing left to do anyway, so just break
13920 out. */
13921 break;
13922 }
13923 else
13924 function (related, data);
13925
13926 related = next;
13927 }
13928 while (related != b);
13929}
95a42b64
TT
13930
13931static void
13932do_delete_breakpoint (struct breakpoint *b, void *ignore)
13933{
13934 delete_breakpoint (b);
13935}
13936
51be5b68
PA
13937/* A callback for map_breakpoint_numbers that calls
13938 delete_breakpoint. */
13939
13940static void
13941do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
13942{
13943 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
13944}
13945
c906108c 13946void
fba45db2 13947delete_command (char *arg, int from_tty)
c906108c 13948{
35df4500 13949 struct breakpoint *b, *b_tmp;
c906108c 13950
ea9365bb
TT
13951 dont_repeat ();
13952
c906108c
SS
13953 if (arg == 0)
13954 {
13955 int breaks_to_delete = 0;
13956
46c6471b
PA
13957 /* Delete all breakpoints if no argument. Do not delete
13958 internal breakpoints, these have to be deleted with an
13959 explicit breakpoint number argument. */
c5aa993b 13960 ALL_BREAKPOINTS (b)
46c6471b 13961 if (user_breakpoint_p (b))
973d738b
DJ
13962 {
13963 breaks_to_delete = 1;
13964 break;
13965 }
c906108c
SS
13966
13967 /* Ask user only if there are some breakpoints to delete. */
13968 if (!from_tty
e2e0b3e5 13969 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 13970 {
35df4500 13971 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 13972 if (user_breakpoint_p (b))
c5aa993b 13973 delete_breakpoint (b);
c906108c
SS
13974 }
13975 }
13976 else
51be5b68 13977 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
c906108c
SS
13978}
13979
c2f4122d
PA
13980/* Return true if all locations of B bound to PSPACE are pending. If
13981 PSPACE is NULL, all locations of all program spaces are
13982 considered. */
13983
0d381245 13984static int
c2f4122d 13985all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
fe3f5fa8 13986{
c2f4122d
PA
13987 struct bp_location *loc;
13988
13989 for (loc = b->loc; loc != NULL; loc = loc->next)
13990 if ((pspace == NULL
13991 || loc->pspace == pspace)
13992 && !loc->shlib_disabled
8645ff69 13993 && !loc->pspace->executing_startup)
0d381245
VP
13994 return 0;
13995 return 1;
fe3f5fa8
VP
13996}
13997
776592bf
DE
13998/* Subroutine of update_breakpoint_locations to simplify it.
13999 Return non-zero if multiple fns in list LOC have the same name.
14000 Null names are ignored. */
14001
14002static int
14003ambiguous_names_p (struct bp_location *loc)
14004{
14005 struct bp_location *l;
14006 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
14007 (int (*) (const void *,
14008 const void *)) streq,
776592bf
DE
14009 NULL, xcalloc, xfree);
14010
14011 for (l = loc; l != NULL; l = l->next)
14012 {
14013 const char **slot;
14014 const char *name = l->function_name;
14015
14016 /* Allow for some names to be NULL, ignore them. */
14017 if (name == NULL)
14018 continue;
14019
14020 slot = (const char **) htab_find_slot (htab, (const void *) name,
14021 INSERT);
4a64f543
MS
14022 /* NOTE: We can assume slot != NULL here because xcalloc never
14023 returns NULL. */
776592bf
DE
14024 if (*slot != NULL)
14025 {
14026 htab_delete (htab);
14027 return 1;
14028 }
14029 *slot = name;
14030 }
14031
14032 htab_delete (htab);
14033 return 0;
14034}
14035
0fb4aa4b
PA
14036/* When symbols change, it probably means the sources changed as well,
14037 and it might mean the static tracepoint markers are no longer at
14038 the same address or line numbers they used to be at last we
14039 checked. Losing your static tracepoints whenever you rebuild is
14040 undesirable. This function tries to resync/rematch gdb static
14041 tracepoints with the markers on the target, for static tracepoints
14042 that have not been set by marker id. Static tracepoint that have
14043 been set by marker id are reset by marker id in breakpoint_re_set.
14044 The heuristic is:
14045
14046 1) For a tracepoint set at a specific address, look for a marker at
14047 the old PC. If one is found there, assume to be the same marker.
14048 If the name / string id of the marker found is different from the
14049 previous known name, assume that means the user renamed the marker
14050 in the sources, and output a warning.
14051
14052 2) For a tracepoint set at a given line number, look for a marker
14053 at the new address of the old line number. If one is found there,
14054 assume to be the same marker. If the name / string id of the
14055 marker found is different from the previous known name, assume that
14056 means the user renamed the marker in the sources, and output a
14057 warning.
14058
14059 3) If a marker is no longer found at the same address or line, it
14060 may mean the marker no longer exists. But it may also just mean
14061 the code changed a bit. Maybe the user added a few lines of code
14062 that made the marker move up or down (in line number terms). Ask
14063 the target for info about the marker with the string id as we knew
14064 it. If found, update line number and address in the matching
14065 static tracepoint. This will get confused if there's more than one
14066 marker with the same ID (possible in UST, although unadvised
14067 precisely because it confuses tools). */
14068
14069static struct symtab_and_line
14070update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
14071{
d9b3f62e 14072 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
14073 struct static_tracepoint_marker marker;
14074 CORE_ADDR pc;
0fb4aa4b
PA
14075
14076 pc = sal.pc;
14077 if (sal.line)
14078 find_line_pc (sal.symtab, sal.line, &pc);
14079
14080 if (target_static_tracepoint_marker_at (pc, &marker))
14081 {
d9b3f62e 14082 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
0fb4aa4b
PA
14083 warning (_("static tracepoint %d changed probed marker from %s to %s"),
14084 b->number,
d9b3f62e 14085 tp->static_trace_marker_id, marker.str_id);
0fb4aa4b 14086
d9b3f62e
PA
14087 xfree (tp->static_trace_marker_id);
14088 tp->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
14089 release_static_tracepoint_marker (&marker);
14090
14091 return sal;
14092 }
14093
14094 /* Old marker wasn't found on target at lineno. Try looking it up
14095 by string ID. */
14096 if (!sal.explicit_pc
14097 && sal.line != 0
14098 && sal.symtab != NULL
d9b3f62e 14099 && tp->static_trace_marker_id != NULL)
0fb4aa4b
PA
14100 {
14101 VEC(static_tracepoint_marker_p) *markers;
14102
14103 markers
d9b3f62e 14104 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
0fb4aa4b
PA
14105
14106 if (!VEC_empty(static_tracepoint_marker_p, markers))
14107 {
80e1d417 14108 struct symtab_and_line sal2;
0fb4aa4b 14109 struct symbol *sym;
80e1d417 14110 struct static_tracepoint_marker *tpmarker;
79a45e25 14111 struct ui_out *uiout = current_uiout;
67994074 14112 struct explicit_location explicit_loc;
0fb4aa4b 14113
80e1d417 14114 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
0fb4aa4b 14115
d9b3f62e 14116 xfree (tp->static_trace_marker_id);
80e1d417 14117 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
0fb4aa4b
PA
14118
14119 warning (_("marker for static tracepoint %d (%s) not "
14120 "found at previous line number"),
d9b3f62e 14121 b->number, tp->static_trace_marker_id);
0fb4aa4b 14122
80e1d417 14123 init_sal (&sal2);
0fb4aa4b 14124
80e1d417 14125 sal2.pc = tpmarker->address;
0fb4aa4b 14126
80e1d417
AS
14127 sal2 = find_pc_line (tpmarker->address, 0);
14128 sym = find_pc_sect_function (tpmarker->address, NULL);
112e8700 14129 uiout->text ("Now in ");
0fb4aa4b
PA
14130 if (sym)
14131 {
112e8700
SM
14132 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
14133 uiout->text (" at ");
0fb4aa4b 14134 }
112e8700 14135 uiout->field_string ("file",
05cba821 14136 symtab_to_filename_for_display (sal2.symtab));
112e8700 14137 uiout->text (":");
0fb4aa4b 14138
112e8700 14139 if (uiout->is_mi_like_p ())
0fb4aa4b 14140 {
0b0865da 14141 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 14142
112e8700 14143 uiout->field_string ("fullname", fullname);
0fb4aa4b
PA
14144 }
14145
112e8700
SM
14146 uiout->field_int ("line", sal2.line);
14147 uiout->text ("\n");
0fb4aa4b 14148
80e1d417 14149 b->loc->line_number = sal2.line;
2f202fde 14150 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b 14151
f00aae0f 14152 delete_event_location (b->location);
67994074
KS
14153 initialize_explicit_location (&explicit_loc);
14154 explicit_loc.source_filename
00e52e53 14155 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
67994074
KS
14156 explicit_loc.line_offset.offset = b->loc->line_number;
14157 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
14158 b->location = new_explicit_location (&explicit_loc);
0fb4aa4b
PA
14159
14160 /* Might be nice to check if function changed, and warn if
14161 so. */
14162
80e1d417 14163 release_static_tracepoint_marker (tpmarker);
0fb4aa4b
PA
14164 }
14165 }
14166 return sal;
14167}
14168
8d3788bd
VP
14169/* Returns 1 iff locations A and B are sufficiently same that
14170 we don't need to report breakpoint as changed. */
14171
14172static int
14173locations_are_equal (struct bp_location *a, struct bp_location *b)
14174{
14175 while (a && b)
14176 {
14177 if (a->address != b->address)
14178 return 0;
14179
14180 if (a->shlib_disabled != b->shlib_disabled)
14181 return 0;
14182
14183 if (a->enabled != b->enabled)
14184 return 0;
14185
14186 a = a->next;
14187 b = b->next;
14188 }
14189
14190 if ((a == NULL) != (b == NULL))
14191 return 0;
14192
14193 return 1;
14194}
14195
c2f4122d
PA
14196/* Split all locations of B that are bound to PSPACE out of B's
14197 location list to a separate list and return that list's head. If
14198 PSPACE is NULL, hoist out all locations of B. */
14199
14200static struct bp_location *
14201hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
14202{
14203 struct bp_location head;
14204 struct bp_location *i = b->loc;
14205 struct bp_location **i_link = &b->loc;
14206 struct bp_location *hoisted = &head;
14207
14208 if (pspace == NULL)
14209 {
14210 i = b->loc;
14211 b->loc = NULL;
14212 return i;
14213 }
14214
14215 head.next = NULL;
14216
14217 while (i != NULL)
14218 {
14219 if (i->pspace == pspace)
14220 {
14221 *i_link = i->next;
14222 i->next = NULL;
14223 hoisted->next = i;
14224 hoisted = i;
14225 }
14226 else
14227 i_link = &i->next;
14228 i = *i_link;
14229 }
14230
14231 return head.next;
14232}
14233
14234/* Create new breakpoint locations for B (a hardware or software
14235 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
14236 zero, then B is a ranged breakpoint. Only recreates locations for
14237 FILTER_PSPACE. Locations of other program spaces are left
14238 untouched. */
f1310107 14239
0e30163f 14240void
0d381245 14241update_breakpoint_locations (struct breakpoint *b,
c2f4122d 14242 struct program_space *filter_pspace,
f1310107
TJB
14243 struct symtabs_and_lines sals,
14244 struct symtabs_and_lines sals_end)
fe3f5fa8
VP
14245{
14246 int i;
c2f4122d 14247 struct bp_location *existing_locations;
0d381245 14248
f8eba3c6
TT
14249 if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1))
14250 {
14251 /* Ranged breakpoints have only one start location and one end
14252 location. */
14253 b->enable_state = bp_disabled;
f8eba3c6
TT
14254 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
14255 "multiple locations found\n"),
14256 b->number);
14257 return;
14258 }
f1310107 14259
4a64f543
MS
14260 /* If there's no new locations, and all existing locations are
14261 pending, don't do anything. This optimizes the common case where
14262 all locations are in the same shared library, that was unloaded.
14263 We'd like to retain the location, so that when the library is
14264 loaded again, we don't loose the enabled/disabled status of the
14265 individual locations. */
c2f4122d 14266 if (all_locations_are_pending (b, filter_pspace) && sals.nelts == 0)
fe3f5fa8
VP
14267 return;
14268
c2f4122d 14269 existing_locations = hoist_existing_locations (b, filter_pspace);
fe3f5fa8 14270
0d381245 14271 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 14272 {
f8eba3c6
TT
14273 struct bp_location *new_loc;
14274
14275 switch_to_program_space_and_thread (sals.sals[i].pspace);
14276
14277 new_loc = add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 14278
0d381245
VP
14279 /* Reparse conditions, they might contain references to the
14280 old symtab. */
14281 if (b->cond_string != NULL)
14282 {
bbc13ae3 14283 const char *s;
fe3f5fa8 14284
0d381245 14285 s = b->cond_string;
492d29ea 14286 TRY
0d381245 14287 {
1bb9788d
TT
14288 new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc,
14289 block_for_pc (sals.sals[i].pc),
0d381245
VP
14290 0);
14291 }
492d29ea 14292 CATCH (e, RETURN_MASK_ERROR)
0d381245 14293 {
3e43a32a
MS
14294 warning (_("failed to reevaluate condition "
14295 "for breakpoint %d: %s"),
0d381245
VP
14296 b->number, e.message);
14297 new_loc->enabled = 0;
14298 }
492d29ea 14299 END_CATCH
0d381245 14300 }
fe3f5fa8 14301
f1310107
TJB
14302 if (sals_end.nelts)
14303 {
14304 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
14305
14306 new_loc->length = end - sals.sals[0].pc + 1;
14307 }
0d381245 14308 }
fe3f5fa8 14309
4a64f543
MS
14310 /* If possible, carry over 'disable' status from existing
14311 breakpoints. */
0d381245
VP
14312 {
14313 struct bp_location *e = existing_locations;
776592bf
DE
14314 /* If there are multiple breakpoints with the same function name,
14315 e.g. for inline functions, comparing function names won't work.
14316 Instead compare pc addresses; this is just a heuristic as things
14317 may have moved, but in practice it gives the correct answer
14318 often enough until a better solution is found. */
14319 int have_ambiguous_names = ambiguous_names_p (b->loc);
14320
0d381245
VP
14321 for (; e; e = e->next)
14322 {
14323 if (!e->enabled && e->function_name)
14324 {
14325 struct bp_location *l = b->loc;
776592bf
DE
14326 if (have_ambiguous_names)
14327 {
14328 for (; l; l = l->next)
f1310107 14329 if (breakpoint_locations_match (e, l))
776592bf
DE
14330 {
14331 l->enabled = 0;
14332 break;
14333 }
14334 }
14335 else
14336 {
14337 for (; l; l = l->next)
14338 if (l->function_name
14339 && strcmp (e->function_name, l->function_name) == 0)
14340 {
14341 l->enabled = 0;
14342 break;
14343 }
14344 }
0d381245
VP
14345 }
14346 }
14347 }
fe3f5fa8 14348
8d3788bd
VP
14349 if (!locations_are_equal (existing_locations, b->loc))
14350 observer_notify_breakpoint_modified (b);
fe3f5fa8
VP
14351}
14352
f00aae0f 14353/* Find the SaL locations corresponding to the given LOCATION.
ef23e705
TJB
14354 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
14355
14356static struct symtabs_and_lines
f00aae0f 14357location_to_sals (struct breakpoint *b, struct event_location *location,
c2f4122d 14358 struct program_space *search_pspace, int *found)
ef23e705 14359{
02d20e4a 14360 struct symtabs_and_lines sals = {0};
492d29ea 14361 struct gdb_exception exception = exception_none;
ef23e705 14362
983af33b 14363 gdb_assert (b->ops != NULL);
ef23e705 14364
492d29ea 14365 TRY
ef23e705 14366 {
c2f4122d 14367 b->ops->decode_location (b, location, search_pspace, &sals);
ef23e705 14368 }
492d29ea 14369 CATCH (e, RETURN_MASK_ERROR)
ef23e705
TJB
14370 {
14371 int not_found_and_ok = 0;
492d29ea
PA
14372
14373 exception = e;
14374
ef23e705
TJB
14375 /* For pending breakpoints, it's expected that parsing will
14376 fail until the right shared library is loaded. User has
14377 already told to create pending breakpoints and don't need
14378 extra messages. If breakpoint is in bp_shlib_disabled
14379 state, then user already saw the message about that
14380 breakpoint being disabled, and don't want to see more
14381 errors. */
58438ac1 14382 if (e.error == NOT_FOUND_ERROR
c2f4122d
PA
14383 && (b->condition_not_parsed
14384 || (b->loc != NULL
14385 && search_pspace != NULL
14386 && b->loc->pspace != search_pspace)
ef23e705 14387 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 14388 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
14389 || b->enable_state == bp_disabled))
14390 not_found_and_ok = 1;
14391
14392 if (!not_found_and_ok)
14393 {
14394 /* We surely don't want to warn about the same breakpoint
14395 10 times. One solution, implemented here, is disable
14396 the breakpoint on error. Another solution would be to
14397 have separate 'warning emitted' flag. Since this
14398 happens only when a binary has changed, I don't know
14399 which approach is better. */
14400 b->enable_state = bp_disabled;
14401 throw_exception (e);
14402 }
14403 }
492d29ea 14404 END_CATCH
ef23e705 14405
492d29ea 14406 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
ef23e705 14407 {
f8eba3c6 14408 int i;
ef23e705 14409
f8eba3c6
TT
14410 for (i = 0; i < sals.nelts; ++i)
14411 resolve_sal_pc (&sals.sals[i]);
f00aae0f 14412 if (b->condition_not_parsed && b->extra_string != NULL)
ef23e705 14413 {
ed1d1739
KS
14414 char *cond_string, *extra_string;
14415 int thread, task;
ef23e705 14416
f00aae0f 14417 find_condition_and_thread (b->extra_string, sals.sals[0].pc,
e7e0cddf
SS
14418 &cond_string, &thread, &task,
14419 &extra_string);
f00aae0f 14420 gdb_assert (b->cond_string == NULL);
ef23e705
TJB
14421 if (cond_string)
14422 b->cond_string = cond_string;
14423 b->thread = thread;
14424 b->task = task;
e7e0cddf 14425 if (extra_string)
f00aae0f
KS
14426 {
14427 xfree (b->extra_string);
14428 b->extra_string = extra_string;
14429 }
ef23e705
TJB
14430 b->condition_not_parsed = 0;
14431 }
14432
983af33b 14433 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
ef23e705 14434 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
ef23e705 14435
58438ac1
TT
14436 *found = 1;
14437 }
14438 else
14439 *found = 0;
ef23e705
TJB
14440
14441 return sals;
14442}
14443
348d480f
PA
14444/* The default re_set method, for typical hardware or software
14445 breakpoints. Reevaluate the breakpoint and recreate its
14446 locations. */
14447
14448static void
28010a5d 14449breakpoint_re_set_default (struct breakpoint *b)
ef23e705
TJB
14450{
14451 int found;
f1310107 14452 struct symtabs_and_lines sals, sals_end;
ef23e705 14453 struct symtabs_and_lines expanded = {0};
f1310107 14454 struct symtabs_and_lines expanded_end = {0};
c2f4122d 14455 struct program_space *filter_pspace = current_program_space;
ef23e705 14456
c2f4122d 14457 sals = location_to_sals (b, b->location, filter_pspace, &found);
ef23e705
TJB
14458 if (found)
14459 {
14460 make_cleanup (xfree, sals.sals);
f8eba3c6 14461 expanded = sals;
ef23e705
TJB
14462 }
14463
f00aae0f 14464 if (b->location_range_end != NULL)
f1310107 14465 {
c2f4122d
PA
14466 sals_end = location_to_sals (b, b->location_range_end,
14467 filter_pspace, &found);
f1310107
TJB
14468 if (found)
14469 {
14470 make_cleanup (xfree, sals_end.sals);
f8eba3c6 14471 expanded_end = sals_end;
f1310107
TJB
14472 }
14473 }
14474
c2f4122d 14475 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
28010a5d
PA
14476}
14477
983af33b
SDJ
14478/* Default method for creating SALs from an address string. It basically
14479 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
14480
14481static void
f00aae0f
KS
14482create_sals_from_location_default (const struct event_location *location,
14483 struct linespec_result *canonical,
14484 enum bptype type_wanted)
983af33b 14485{
f00aae0f 14486 parse_breakpoint_sals (location, canonical);
983af33b
SDJ
14487}
14488
14489/* Call create_breakpoints_sal for the given arguments. This is the default
14490 function for the `create_breakpoints_sal' method of
14491 breakpoint_ops. */
14492
14493static void
14494create_breakpoints_sal_default (struct gdbarch *gdbarch,
14495 struct linespec_result *canonical,
983af33b 14496 char *cond_string,
e7e0cddf 14497 char *extra_string,
983af33b
SDJ
14498 enum bptype type_wanted,
14499 enum bpdisp disposition,
14500 int thread,
14501 int task, int ignore_count,
14502 const struct breakpoint_ops *ops,
14503 int from_tty, int enabled,
44f238bb 14504 int internal, unsigned flags)
983af33b
SDJ
14505{
14506 create_breakpoints_sal (gdbarch, canonical, cond_string,
e7e0cddf 14507 extra_string,
983af33b
SDJ
14508 type_wanted, disposition,
14509 thread, task, ignore_count, ops, from_tty,
44f238bb 14510 enabled, internal, flags);
983af33b
SDJ
14511}
14512
14513/* Decode the line represented by S by calling decode_line_full. This is the
5f700d83 14514 default function for the `decode_location' method of breakpoint_ops. */
983af33b
SDJ
14515
14516static void
f00aae0f
KS
14517decode_location_default (struct breakpoint *b,
14518 const struct event_location *location,
c2f4122d 14519 struct program_space *search_pspace,
983af33b
SDJ
14520 struct symtabs_and_lines *sals)
14521{
14522 struct linespec_result canonical;
14523
14524 init_linespec_result (&canonical);
c2f4122d 14525 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
983af33b
SDJ
14526 (struct symtab *) NULL, 0,
14527 &canonical, multiple_symbols_all,
14528 b->filter);
14529
14530 /* We should get 0 or 1 resulting SALs. */
14531 gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2);
14532
14533 if (VEC_length (linespec_sals, canonical.sals) > 0)
14534 {
14535 struct linespec_sals *lsal;
14536
14537 lsal = VEC_index (linespec_sals, canonical.sals, 0);
14538 *sals = lsal->sals;
14539 /* Arrange it so the destructor does not free the
14540 contents. */
14541 lsal->sals.sals = NULL;
14542 }
14543
14544 destroy_linespec_result (&canonical);
14545}
14546
28010a5d
PA
14547/* Prepare the global context for a re-set of breakpoint B. */
14548
14549static struct cleanup *
14550prepare_re_set_context (struct breakpoint *b)
14551{
28010a5d 14552 input_radix = b->input_radix;
28010a5d
PA
14553 set_language (b->language);
14554
c2f4122d 14555 return make_cleanup (null_cleanup, NULL);
ef23e705
TJB
14556}
14557
c906108c
SS
14558/* Reset a breakpoint given it's struct breakpoint * BINT.
14559 The value we return ends up being the return value from catch_errors.
14560 Unused in this case. */
14561
14562static int
4efb68b1 14563breakpoint_re_set_one (void *bint)
c906108c 14564{
4a64f543 14565 /* Get past catch_errs. */
53a5351d 14566 struct breakpoint *b = (struct breakpoint *) bint;
348d480f 14567 struct cleanup *cleanups;
c906108c 14568
348d480f
PA
14569 cleanups = prepare_re_set_context (b);
14570 b->ops->re_set (b);
14571 do_cleanups (cleanups);
c906108c
SS
14572 return 0;
14573}
14574
c2f4122d
PA
14575/* Re-set breakpoint locations for the current program space.
14576 Locations bound to other program spaces are left untouched. */
14577
c906108c 14578void
69de3c6a 14579breakpoint_re_set (void)
c906108c 14580{
35df4500 14581 struct breakpoint *b, *b_tmp;
c906108c
SS
14582 enum language save_language;
14583 int save_input_radix;
6c95b8df 14584 struct cleanup *old_chain;
c5aa993b 14585
c906108c
SS
14586 save_language = current_language->la_language;
14587 save_input_radix = input_radix;
c2f4122d 14588 old_chain = save_current_space_and_thread ();
6c95b8df 14589
2a7f3dff
PA
14590 /* Note: we must not try to insert locations until after all
14591 breakpoints have been re-set. Otherwise, e.g., when re-setting
14592 breakpoint 1, we'd insert the locations of breakpoint 2, which
14593 hadn't been re-set yet, and thus may have stale locations. */
14594
35df4500 14595 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 14596 {
4a64f543 14597 /* Format possible error msg. */
fe3f5fa8 14598 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
14599 b->number);
14600 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 14601 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 14602 do_cleanups (cleanups);
c5aa993b 14603 }
c906108c
SS
14604 set_language (save_language);
14605 input_radix = save_input_radix;
e62c965a 14606
0756c555 14607 jit_breakpoint_re_set ();
4efc6507 14608
6c95b8df
PA
14609 do_cleanups (old_chain);
14610
af02033e
PP
14611 create_overlay_event_breakpoint ();
14612 create_longjmp_master_breakpoint ();
14613 create_std_terminate_master_breakpoint ();
186c406b 14614 create_exception_master_breakpoint ();
2a7f3dff
PA
14615
14616 /* Now we can insert. */
14617 update_global_location_list (UGLL_MAY_INSERT);
c906108c
SS
14618}
14619\f
c906108c
SS
14620/* Reset the thread number of this breakpoint:
14621
14622 - If the breakpoint is for all threads, leave it as-is.
4a64f543 14623 - Else, reset it to the current thread for inferior_ptid. */
c906108c 14624void
fba45db2 14625breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
14626{
14627 if (b->thread != -1)
14628 {
39f77062 14629 if (in_thread_list (inferior_ptid))
5d5658a1 14630 b->thread = ptid_to_global_thread_id (inferior_ptid);
6c95b8df
PA
14631
14632 /* We're being called after following a fork. The new fork is
14633 selected as current, and unless this was a vfork will have a
14634 different program space from the original thread. Reset that
14635 as well. */
14636 b->loc->pspace = current_program_space;
c906108c
SS
14637 }
14638}
14639
03ac34d5
MS
14640/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14641 If from_tty is nonzero, it prints a message to that effect,
14642 which ends with a period (no newline). */
14643
c906108c 14644void
fba45db2 14645set_ignore_count (int bptnum, int count, int from_tty)
c906108c 14646{
52f0bd74 14647 struct breakpoint *b;
c906108c
SS
14648
14649 if (count < 0)
14650 count = 0;
14651
14652 ALL_BREAKPOINTS (b)
14653 if (b->number == bptnum)
c5aa993b 14654 {
d77f58be
SS
14655 if (is_tracepoint (b))
14656 {
14657 if (from_tty && count != 0)
14658 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14659 bptnum);
14660 return;
14661 }
14662
c5aa993b 14663 b->ignore_count = count;
221ea385
KS
14664 if (from_tty)
14665 {
14666 if (count == 0)
3e43a32a
MS
14667 printf_filtered (_("Will stop next time "
14668 "breakpoint %d is reached."),
221ea385
KS
14669 bptnum);
14670 else if (count == 1)
a3f17187 14671 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
14672 bptnum);
14673 else
3e43a32a
MS
14674 printf_filtered (_("Will ignore next %d "
14675 "crossings of breakpoint %d."),
221ea385
KS
14676 count, bptnum);
14677 }
8d3788bd 14678 observer_notify_breakpoint_modified (b);
c5aa993b
JM
14679 return;
14680 }
c906108c 14681
8a3fe4f8 14682 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
14683}
14684
c906108c
SS
14685/* Command to set ignore-count of breakpoint N to COUNT. */
14686
14687static void
fba45db2 14688ignore_command (char *args, int from_tty)
c906108c
SS
14689{
14690 char *p = args;
52f0bd74 14691 int num;
c906108c
SS
14692
14693 if (p == 0)
e2e0b3e5 14694 error_no_arg (_("a breakpoint number"));
c5aa993b 14695
c906108c 14696 num = get_number (&p);
5c44784c 14697 if (num == 0)
8a3fe4f8 14698 error (_("bad breakpoint number: '%s'"), args);
c906108c 14699 if (*p == 0)
8a3fe4f8 14700 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
14701
14702 set_ignore_count (num,
14703 longest_to_int (value_as_long (parse_and_eval (p))),
14704 from_tty);
221ea385
KS
14705 if (from_tty)
14706 printf_filtered ("\n");
c906108c
SS
14707}
14708\f
14709/* Call FUNCTION on each of the breakpoints
14710 whose numbers are given in ARGS. */
14711
14712static void
896b6bda
PA
14713map_breakpoint_numbers (const char *args,
14714 void (*function) (struct breakpoint *,
14715 void *),
95a42b64 14716 void *data)
c906108c 14717{
52f0bd74
AC
14718 int num;
14719 struct breakpoint *b, *tmp;
c906108c 14720
b9d61307 14721 if (args == 0 || *args == '\0')
e2e0b3e5 14722 error_no_arg (_("one or more breakpoint numbers"));
c906108c 14723
bfd28288 14724 number_or_range_parser parser (args);
197f0a60 14725
bfd28288 14726 while (!parser.finished ())
c906108c 14727 {
bfd28288
PA
14728 const char *p = parser.cur_tok ();
14729 bool match = false;
197f0a60 14730
bfd28288 14731 num = parser.get_number ();
5c44784c 14732 if (num == 0)
c5aa993b 14733 {
8a3fe4f8 14734 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
14735 }
14736 else
14737 {
14738 ALL_BREAKPOINTS_SAFE (b, tmp)
14739 if (b->number == num)
14740 {
bfd28288 14741 match = true;
cdac0397 14742 function (b, data);
11cf8741 14743 break;
5c44784c 14744 }
bfd28288 14745 if (!match)
a3f17187 14746 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 14747 }
c906108c
SS
14748 }
14749}
14750
0d381245
VP
14751static struct bp_location *
14752find_location_by_number (char *number)
14753{
14754 char *dot = strchr (number, '.');
14755 char *p1;
14756 int bp_num;
14757 int loc_num;
14758 struct breakpoint *b;
14759 struct bp_location *loc;
14760
14761 *dot = '\0';
14762
14763 p1 = number;
197f0a60 14764 bp_num = get_number (&p1);
0d381245
VP
14765 if (bp_num == 0)
14766 error (_("Bad breakpoint number '%s'"), number);
14767
14768 ALL_BREAKPOINTS (b)
14769 if (b->number == bp_num)
14770 {
14771 break;
14772 }
14773
14774 if (!b || b->number != bp_num)
14775 error (_("Bad breakpoint number '%s'"), number);
14776
14777 p1 = dot+1;
197f0a60 14778 loc_num = get_number (&p1);
0d381245
VP
14779 if (loc_num == 0)
14780 error (_("Bad breakpoint location number '%s'"), number);
14781
14782 --loc_num;
14783 loc = b->loc;
14784 for (;loc_num && loc; --loc_num, loc = loc->next)
14785 ;
14786 if (!loc)
14787 error (_("Bad breakpoint location number '%s'"), dot+1);
14788
14789 return loc;
14790}
14791
14792
1900040c
MS
14793/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14794 If from_tty is nonzero, it prints a message to that effect,
14795 which ends with a period (no newline). */
14796
c906108c 14797void
fba45db2 14798disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
14799{
14800 /* Never disable a watchpoint scope breakpoint; we want to
14801 hit them when we leave scope so we can delete both the
14802 watchpoint and its scope breakpoint at that time. */
14803 if (bpt->type == bp_watchpoint_scope)
14804 return;
14805
b5de0fa7 14806 bpt->enable_state = bp_disabled;
c906108c 14807
b775012e
LM
14808 /* Mark breakpoint locations modified. */
14809 mark_breakpoint_modified (bpt);
14810
d248b706
KY
14811 if (target_supports_enable_disable_tracepoint ()
14812 && current_trace_status ()->running && is_tracepoint (bpt))
14813 {
14814 struct bp_location *location;
14815
14816 for (location = bpt->loc; location; location = location->next)
14817 target_disable_tracepoint (location);
14818 }
14819
44702360 14820 update_global_location_list (UGLL_DONT_INSERT);
c906108c 14821
8d3788bd 14822 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14823}
14824
51be5b68
PA
14825/* A callback for iterate_over_related_breakpoints. */
14826
14827static void
14828do_disable_breakpoint (struct breakpoint *b, void *ignore)
14829{
14830 disable_breakpoint (b);
14831}
14832
95a42b64
TT
14833/* A callback for map_breakpoint_numbers that calls
14834 disable_breakpoint. */
14835
14836static void
14837do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
14838{
51be5b68 14839 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
95a42b64
TT
14840}
14841
c906108c 14842static void
fba45db2 14843disable_command (char *args, int from_tty)
c906108c 14844{
c906108c 14845 if (args == 0)
46c6471b
PA
14846 {
14847 struct breakpoint *bpt;
14848
14849 ALL_BREAKPOINTS (bpt)
14850 if (user_breakpoint_p (bpt))
14851 disable_breakpoint (bpt);
14852 }
9eaabc75 14853 else
0d381245 14854 {
9eaabc75
MW
14855 char *num = extract_arg (&args);
14856
14857 while (num)
d248b706 14858 {
9eaabc75 14859 if (strchr (num, '.'))
b775012e 14860 {
9eaabc75
MW
14861 struct bp_location *loc = find_location_by_number (num);
14862
14863 if (loc)
14864 {
14865 if (loc->enabled)
14866 {
14867 loc->enabled = 0;
14868 mark_breakpoint_location_modified (loc);
14869 }
14870 if (target_supports_enable_disable_tracepoint ()
14871 && current_trace_status ()->running && loc->owner
14872 && is_tracepoint (loc->owner))
14873 target_disable_tracepoint (loc);
14874 }
44702360 14875 update_global_location_list (UGLL_DONT_INSERT);
b775012e 14876 }
9eaabc75
MW
14877 else
14878 map_breakpoint_numbers (num, do_map_disable_breakpoint, NULL);
14879 num = extract_arg (&args);
d248b706 14880 }
0d381245 14881 }
c906108c
SS
14882}
14883
14884static void
816338b5
SS
14885enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14886 int count)
c906108c 14887{
afe38095 14888 int target_resources_ok;
c906108c
SS
14889
14890 if (bpt->type == bp_hardware_breakpoint)
14891 {
14892 int i;
c5aa993b 14893 i = hw_breakpoint_used_count ();
53a5351d 14894 target_resources_ok =
d92524f1 14895 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 14896 i + 1, 0);
c906108c 14897 if (target_resources_ok == 0)
8a3fe4f8 14898 error (_("No hardware breakpoint support in the target."));
c906108c 14899 else if (target_resources_ok < 0)
8a3fe4f8 14900 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
14901 }
14902
cc60f2e3 14903 if (is_watchpoint (bpt))
c906108c 14904 {
d07205c2 14905 /* Initialize it just to avoid a GCC false warning. */
f486487f 14906 enum enable_state orig_enable_state = bp_disabled;
dde02812 14907
492d29ea 14908 TRY
c906108c 14909 {
3a5c3e22
PA
14910 struct watchpoint *w = (struct watchpoint *) bpt;
14911
1e718ff1
TJB
14912 orig_enable_state = bpt->enable_state;
14913 bpt->enable_state = bp_enabled;
3a5c3e22 14914 update_watchpoint (w, 1 /* reparse */);
c906108c 14915 }
492d29ea 14916 CATCH (e, RETURN_MASK_ALL)
c5aa993b 14917 {
1e718ff1 14918 bpt->enable_state = orig_enable_state;
dde02812
ES
14919 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14920 bpt->number);
14921 return;
c5aa993b 14922 }
492d29ea 14923 END_CATCH
c906108c 14924 }
0101ce28 14925
b775012e
LM
14926 bpt->enable_state = bp_enabled;
14927
14928 /* Mark breakpoint locations modified. */
14929 mark_breakpoint_modified (bpt);
14930
d248b706
KY
14931 if (target_supports_enable_disable_tracepoint ()
14932 && current_trace_status ()->running && is_tracepoint (bpt))
14933 {
14934 struct bp_location *location;
14935
14936 for (location = bpt->loc; location; location = location->next)
14937 target_enable_tracepoint (location);
14938 }
14939
b4c291bb 14940 bpt->disposition = disposition;
816338b5 14941 bpt->enable_count = count;
44702360 14942 update_global_location_list (UGLL_MAY_INSERT);
9c97429f 14943
8d3788bd 14944 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14945}
14946
fe3f5fa8 14947
c906108c 14948void
fba45db2 14949enable_breakpoint (struct breakpoint *bpt)
c906108c 14950{
816338b5 14951 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
14952}
14953
14954static void
14955do_enable_breakpoint (struct breakpoint *bpt, void *arg)
14956{
14957 enable_breakpoint (bpt);
c906108c
SS
14958}
14959
95a42b64
TT
14960/* A callback for map_breakpoint_numbers that calls
14961 enable_breakpoint. */
14962
14963static void
14964do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
14965{
51be5b68 14966 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
95a42b64
TT
14967}
14968
c906108c
SS
14969/* The enable command enables the specified breakpoints (or all defined
14970 breakpoints) so they once again become (or continue to be) effective
1272ad14 14971 in stopping the inferior. */
c906108c 14972
c906108c 14973static void
fba45db2 14974enable_command (char *args, int from_tty)
c906108c 14975{
c906108c 14976 if (args == 0)
46c6471b
PA
14977 {
14978 struct breakpoint *bpt;
14979
14980 ALL_BREAKPOINTS (bpt)
14981 if (user_breakpoint_p (bpt))
14982 enable_breakpoint (bpt);
14983 }
9eaabc75 14984 else
0d381245 14985 {
9eaabc75
MW
14986 char *num = extract_arg (&args);
14987
14988 while (num)
d248b706 14989 {
9eaabc75 14990 if (strchr (num, '.'))
b775012e 14991 {
9eaabc75
MW
14992 struct bp_location *loc = find_location_by_number (num);
14993
14994 if (loc)
14995 {
14996 if (!loc->enabled)
14997 {
14998 loc->enabled = 1;
14999 mark_breakpoint_location_modified (loc);
15000 }
15001 if (target_supports_enable_disable_tracepoint ()
15002 && current_trace_status ()->running && loc->owner
15003 && is_tracepoint (loc->owner))
15004 target_enable_tracepoint (loc);
15005 }
44702360 15006 update_global_location_list (UGLL_MAY_INSERT);
b775012e 15007 }
9eaabc75
MW
15008 else
15009 map_breakpoint_numbers (num, do_map_enable_breakpoint, NULL);
15010 num = extract_arg (&args);
d248b706 15011 }
0d381245 15012 }
c906108c
SS
15013}
15014
816338b5
SS
15015/* This struct packages up disposition data for application to multiple
15016 breakpoints. */
15017
15018struct disp_data
15019{
15020 enum bpdisp disp;
15021 int count;
15022};
15023
c906108c 15024static void
51be5b68
PA
15025do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
15026{
816338b5 15027 struct disp_data disp_data = *(struct disp_data *) arg;
51be5b68 15028
816338b5 15029 enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count);
51be5b68
PA
15030}
15031
15032static void
15033do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 15034{
816338b5 15035 struct disp_data disp = { disp_disable, 1 };
51be5b68
PA
15036
15037 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
15038}
15039
c906108c 15040static void
fba45db2 15041enable_once_command (char *args, int from_tty)
c906108c 15042{
51be5b68 15043 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
c906108c
SS
15044}
15045
816338b5
SS
15046static void
15047do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr)
15048{
15049 struct disp_data disp = { disp_disable, *(int *) countptr };
15050
15051 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15052}
15053
15054static void
15055enable_count_command (char *args, int from_tty)
15056{
b9d61307
SM
15057 int count;
15058
15059 if (args == NULL)
15060 error_no_arg (_("hit count"));
15061
15062 count = get_number (&args);
816338b5
SS
15063
15064 map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count);
15065}
15066
c906108c 15067static void
51be5b68 15068do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 15069{
816338b5 15070 struct disp_data disp = { disp_del, 1 };
51be5b68
PA
15071
15072 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
15073}
15074
c906108c 15075static void
fba45db2 15076enable_delete_command (char *args, int from_tty)
c906108c 15077{
51be5b68 15078 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
c906108c
SS
15079}
15080\f
fa8d40ab
JJ
15081static void
15082set_breakpoint_cmd (char *args, int from_tty)
15083{
15084}
15085
15086static void
15087show_breakpoint_cmd (char *args, int from_tty)
15088{
15089}
15090
1f3b5d1b
PP
15091/* Invalidate last known value of any hardware watchpoint if
15092 the memory which that value represents has been written to by
15093 GDB itself. */
15094
15095static void
8de0566d
YQ
15096invalidate_bp_value_on_memory_change (struct inferior *inferior,
15097 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
15098 const bfd_byte *data)
15099{
15100 struct breakpoint *bp;
15101
15102 ALL_BREAKPOINTS (bp)
15103 if (bp->enable_state == bp_enabled
3a5c3e22 15104 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 15105 {
3a5c3e22 15106 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 15107
3a5c3e22
PA
15108 if (wp->val_valid && wp->val)
15109 {
15110 struct bp_location *loc;
15111
15112 for (loc = bp->loc; loc != NULL; loc = loc->next)
15113 if (loc->loc_type == bp_loc_hardware_watchpoint
15114 && loc->address + loc->length > addr
15115 && addr + len > loc->address)
15116 {
15117 value_free (wp->val);
15118 wp->val = NULL;
15119 wp->val_valid = 0;
15120 }
15121 }
1f3b5d1b
PP
15122 }
15123}
15124
8181d85f
DJ
15125/* Create and insert a breakpoint for software single step. */
15126
15127void
6c95b8df 15128insert_single_step_breakpoint (struct gdbarch *gdbarch,
4a64f543
MS
15129 struct address_space *aspace,
15130 CORE_ADDR next_pc)
8181d85f 15131{
7c16b83e
PA
15132 struct thread_info *tp = inferior_thread ();
15133 struct symtab_and_line sal;
15134 CORE_ADDR pc = next_pc;
8181d85f 15135
34b7e8a6
PA
15136 if (tp->control.single_step_breakpoints == NULL)
15137 {
15138 tp->control.single_step_breakpoints
5d5658a1 15139 = new_single_step_breakpoint (tp->global_num, gdbarch);
34b7e8a6 15140 }
8181d85f 15141
7c16b83e
PA
15142 sal = find_pc_line (pc, 0);
15143 sal.pc = pc;
15144 sal.section = find_pc_overlay (pc);
15145 sal.explicit_pc = 1;
34b7e8a6 15146 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
8181d85f 15147
7c16b83e 15148 update_global_location_list (UGLL_INSERT);
8181d85f
DJ
15149}
15150
93f9a11f
YQ
15151/* Insert single step breakpoints according to the current state. */
15152
15153int
15154insert_single_step_breakpoints (struct gdbarch *gdbarch)
15155{
f5ea389a 15156 struct regcache *regcache = get_current_regcache ();
93f9a11f
YQ
15157 VEC (CORE_ADDR) * next_pcs;
15158
f5ea389a 15159 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
93f9a11f
YQ
15160
15161 if (next_pcs != NULL)
15162 {
15163 int i;
15164 CORE_ADDR pc;
f5ea389a 15165 struct frame_info *frame = get_current_frame ();
93f9a11f
YQ
15166 struct address_space *aspace = get_frame_address_space (frame);
15167
15168 for (i = 0; VEC_iterate (CORE_ADDR, next_pcs, i, pc); i++)
15169 insert_single_step_breakpoint (gdbarch, aspace, pc);
15170
15171 VEC_free (CORE_ADDR, next_pcs);
15172
15173 return 1;
15174 }
15175 else
15176 return 0;
15177}
15178
34b7e8a6 15179/* See breakpoint.h. */
f02253f1
HZ
15180
15181int
7c16b83e
PA
15182breakpoint_has_location_inserted_here (struct breakpoint *bp,
15183 struct address_space *aspace,
15184 CORE_ADDR pc)
1aafd4da 15185{
7c16b83e 15186 struct bp_location *loc;
1aafd4da 15187
7c16b83e
PA
15188 for (loc = bp->loc; loc != NULL; loc = loc->next)
15189 if (loc->inserted
15190 && breakpoint_location_address_match (loc, aspace, pc))
15191 return 1;
1aafd4da 15192
7c16b83e 15193 return 0;
ef370185
JB
15194}
15195
15196/* Check whether a software single-step breakpoint is inserted at
15197 PC. */
15198
15199int
15200single_step_breakpoint_inserted_here_p (struct address_space *aspace,
15201 CORE_ADDR pc)
15202{
34b7e8a6
PA
15203 struct breakpoint *bpt;
15204
15205 ALL_BREAKPOINTS (bpt)
15206 {
15207 if (bpt->type == bp_single_step
15208 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
15209 return 1;
15210 }
15211 return 0;
1aafd4da
UW
15212}
15213
1042e4c0
SS
15214/* Tracepoint-specific operations. */
15215
15216/* Set tracepoint count to NUM. */
15217static void
15218set_tracepoint_count (int num)
15219{
15220 tracepoint_count = num;
4fa62494 15221 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
15222}
15223
70221824 15224static void
1042e4c0
SS
15225trace_command (char *arg, int from_tty)
15226{
55aa24fb 15227 struct breakpoint_ops *ops;
f00aae0f
KS
15228 struct event_location *location;
15229 struct cleanup *back_to;
55aa24fb 15230
f00aae0f
KS
15231 location = string_to_event_location (&arg, current_language);
15232 back_to = make_cleanup_delete_event_location (location);
5b56227b
KS
15233 if (location != NULL
15234 && event_location_type (location) == PROBE_LOCATION)
55aa24fb
SDJ
15235 ops = &tracepoint_probe_breakpoint_ops;
15236 else
15237 ops = &tracepoint_breakpoint_ops;
15238
558a9d82 15239 create_breakpoint (get_current_arch (),
f00aae0f
KS
15240 location,
15241 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
15242 0 /* tempflag */,
15243 bp_tracepoint /* type_wanted */,
15244 0 /* Ignore count */,
15245 pending_break_support,
15246 ops,
15247 from_tty,
15248 1 /* enabled */,
15249 0 /* internal */, 0);
f00aae0f 15250 do_cleanups (back_to);
1042e4c0
SS
15251}
15252
70221824 15253static void
7a697b8d
SS
15254ftrace_command (char *arg, int from_tty)
15255{
f00aae0f
KS
15256 struct event_location *location;
15257 struct cleanup *back_to;
15258
15259 location = string_to_event_location (&arg, current_language);
15260 back_to = make_cleanup_delete_event_location (location);
558a9d82 15261 create_breakpoint (get_current_arch (),
f00aae0f
KS
15262 location,
15263 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
15264 0 /* tempflag */,
15265 bp_fast_tracepoint /* type_wanted */,
15266 0 /* Ignore count */,
15267 pending_break_support,
15268 &tracepoint_breakpoint_ops,
15269 from_tty,
15270 1 /* enabled */,
15271 0 /* internal */, 0);
f00aae0f 15272 do_cleanups (back_to);
0fb4aa4b
PA
15273}
15274
15275/* strace command implementation. Creates a static tracepoint. */
15276
70221824 15277static void
0fb4aa4b
PA
15278strace_command (char *arg, int from_tty)
15279{
983af33b 15280 struct breakpoint_ops *ops;
f00aae0f
KS
15281 struct event_location *location;
15282 struct cleanup *back_to;
983af33b
SDJ
15283
15284 /* Decide if we are dealing with a static tracepoint marker (`-m'),
15285 or with a normal static tracepoint. */
61012eef 15286 if (arg && startswith (arg, "-m") && isspace (arg[2]))
f00aae0f
KS
15287 {
15288 ops = &strace_marker_breakpoint_ops;
15289 location = new_linespec_location (&arg);
15290 }
983af33b 15291 else
f00aae0f
KS
15292 {
15293 ops = &tracepoint_breakpoint_ops;
15294 location = string_to_event_location (&arg, current_language);
15295 }
983af33b 15296
f00aae0f 15297 back_to = make_cleanup_delete_event_location (location);
558a9d82 15298 create_breakpoint (get_current_arch (),
f00aae0f
KS
15299 location,
15300 NULL, 0, arg, 1 /* parse arg */,
558a9d82
YQ
15301 0 /* tempflag */,
15302 bp_static_tracepoint /* type_wanted */,
15303 0 /* Ignore count */,
15304 pending_break_support,
15305 ops,
15306 from_tty,
15307 1 /* enabled */,
15308 0 /* internal */, 0);
f00aae0f 15309 do_cleanups (back_to);
7a697b8d
SS
15310}
15311
409873ef
SS
15312/* Set up a fake reader function that gets command lines from a linked
15313 list that was acquired during tracepoint uploading. */
15314
15315static struct uploaded_tp *this_utp;
3149d8c1 15316static int next_cmd;
409873ef
SS
15317
15318static char *
15319read_uploaded_action (void)
15320{
15321 char *rslt;
15322
3149d8c1 15323 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 15324
3149d8c1 15325 next_cmd++;
409873ef
SS
15326
15327 return rslt;
15328}
15329
00bf0b85
SS
15330/* Given information about a tracepoint as recorded on a target (which
15331 can be either a live system or a trace file), attempt to create an
15332 equivalent GDB tracepoint. This is not a reliable process, since
15333 the target does not necessarily have all the information used when
15334 the tracepoint was originally defined. */
15335
d9b3f62e 15336struct tracepoint *
00bf0b85 15337create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 15338{
409873ef 15339 char *addr_str, small_buf[100];
d9b3f62e 15340 struct tracepoint *tp;
f00aae0f
KS
15341 struct event_location *location;
15342 struct cleanup *cleanup;
fd9b8c24 15343
409873ef
SS
15344 if (utp->at_string)
15345 addr_str = utp->at_string;
15346 else
15347 {
15348 /* In the absence of a source location, fall back to raw
15349 address. Since there is no way to confirm that the address
15350 means the same thing as when the trace was started, warn the
15351 user. */
3e43a32a
MS
15352 warning (_("Uploaded tracepoint %d has no "
15353 "source location, using raw address"),
409873ef 15354 utp->number);
8c042590 15355 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
15356 addr_str = small_buf;
15357 }
15358
15359 /* There's not much we can do with a sequence of bytecodes. */
15360 if (utp->cond && !utp->cond_string)
3e43a32a
MS
15361 warning (_("Uploaded tracepoint %d condition "
15362 "has no source form, ignoring it"),
409873ef 15363 utp->number);
d5551862 15364
f00aae0f
KS
15365 location = string_to_event_location (&addr_str, current_language);
15366 cleanup = make_cleanup_delete_event_location (location);
8cdf0e15 15367 if (!create_breakpoint (get_current_arch (),
f00aae0f
KS
15368 location,
15369 utp->cond_string, -1, addr_str,
e7e0cddf 15370 0 /* parse cond/thread */,
8cdf0e15 15371 0 /* tempflag */,
0fb4aa4b 15372 utp->type /* type_wanted */,
8cdf0e15
VP
15373 0 /* Ignore count */,
15374 pending_break_support,
348d480f 15375 &tracepoint_breakpoint_ops,
8cdf0e15 15376 0 /* from_tty */,
84f4c1fe 15377 utp->enabled /* enabled */,
44f238bb
PA
15378 0 /* internal */,
15379 CREATE_BREAKPOINT_FLAGS_INSERTED))
f00aae0f
KS
15380 {
15381 do_cleanups (cleanup);
15382 return NULL;
15383 }
15384
15385 do_cleanups (cleanup);
fd9b8c24 15386
409873ef 15387 /* Get the tracepoint we just created. */
fd9b8c24
PA
15388 tp = get_tracepoint (tracepoint_count);
15389 gdb_assert (tp != NULL);
d5551862 15390
00bf0b85
SS
15391 if (utp->pass > 0)
15392 {
8c042590
PM
15393 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
15394 tp->base.number);
00bf0b85 15395
409873ef 15396 trace_pass_command (small_buf, 0);
00bf0b85
SS
15397 }
15398
409873ef
SS
15399 /* If we have uploaded versions of the original commands, set up a
15400 special-purpose "reader" function and call the usual command line
15401 reader, then pass the result to the breakpoint command-setting
15402 function. */
3149d8c1 15403 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 15404 {
409873ef 15405 struct command_line *cmd_list;
00bf0b85 15406
409873ef 15407 this_utp = utp;
3149d8c1 15408 next_cmd = 0;
d5551862 15409
409873ef
SS
15410 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
15411
d9b3f62e 15412 breakpoint_set_commands (&tp->base, cmd_list);
00bf0b85 15413 }
3149d8c1
SS
15414 else if (!VEC_empty (char_ptr, utp->actions)
15415 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
15416 warning (_("Uploaded tracepoint %d actions "
15417 "have no source form, ignoring them"),
409873ef 15418 utp->number);
00bf0b85 15419
f196051f
SS
15420 /* Copy any status information that might be available. */
15421 tp->base.hit_count = utp->hit_count;
15422 tp->traceframe_usage = utp->traceframe_usage;
15423
00bf0b85 15424 return tp;
d9b3f62e 15425}
00bf0b85 15426
1042e4c0
SS
15427/* Print information on tracepoint number TPNUM_EXP, or all if
15428 omitted. */
15429
15430static void
e5a67952 15431tracepoints_info (char *args, int from_tty)
1042e4c0 15432{
79a45e25 15433 struct ui_out *uiout = current_uiout;
e5a67952 15434 int num_printed;
1042e4c0 15435
e5a67952 15436 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
15437
15438 if (num_printed == 0)
1042e4c0 15439 {
e5a67952 15440 if (args == NULL || *args == '\0')
112e8700 15441 uiout->message ("No tracepoints.\n");
d77f58be 15442 else
112e8700 15443 uiout->message ("No tracepoint matching '%s'.\n", args);
1042e4c0 15444 }
ad443146
SS
15445
15446 default_collect_info ();
1042e4c0
SS
15447}
15448
4a64f543 15449/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
15450 Not supported by all targets. */
15451static void
15452enable_trace_command (char *args, int from_tty)
15453{
15454 enable_command (args, from_tty);
15455}
15456
4a64f543 15457/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
15458 Not supported by all targets. */
15459static void
15460disable_trace_command (char *args, int from_tty)
15461{
15462 disable_command (args, from_tty);
15463}
15464
4a64f543 15465/* Remove a tracepoint (or all if no argument). */
1042e4c0
SS
15466static void
15467delete_trace_command (char *arg, int from_tty)
15468{
35df4500 15469 struct breakpoint *b, *b_tmp;
1042e4c0
SS
15470
15471 dont_repeat ();
15472
15473 if (arg == 0)
15474 {
15475 int breaks_to_delete = 0;
15476
15477 /* Delete all breakpoints if no argument.
15478 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
15479 have to be deleted with an explicit breakpoint number
15480 argument. */
1042e4c0 15481 ALL_TRACEPOINTS (b)
46c6471b 15482 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
15483 {
15484 breaks_to_delete = 1;
15485 break;
15486 }
1042e4c0
SS
15487
15488 /* Ask user only if there are some breakpoints to delete. */
15489 if (!from_tty
15490 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
15491 {
35df4500 15492 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 15493 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 15494 delete_breakpoint (b);
1042e4c0
SS
15495 }
15496 }
15497 else
51be5b68 15498 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
1042e4c0
SS
15499}
15500
197f0a60
TT
15501/* Helper function for trace_pass_command. */
15502
15503static void
d9b3f62e 15504trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 15505{
d9b3f62e 15506 tp->pass_count = count;
6f6484cd 15507 observer_notify_breakpoint_modified (&tp->base);
197f0a60
TT
15508 if (from_tty)
15509 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
d9b3f62e 15510 tp->base.number, count);
197f0a60
TT
15511}
15512
1042e4c0
SS
15513/* Set passcount for tracepoint.
15514
15515 First command argument is passcount, second is tracepoint number.
15516 If tracepoint number omitted, apply to most recently defined.
15517 Also accepts special argument "all". */
15518
15519static void
15520trace_pass_command (char *args, int from_tty)
15521{
d9b3f62e 15522 struct tracepoint *t1;
1042e4c0 15523 unsigned int count;
1042e4c0
SS
15524
15525 if (args == 0 || *args == 0)
3e43a32a
MS
15526 error (_("passcount command requires an "
15527 "argument (count + optional TP num)"));
1042e4c0 15528
4a64f543 15529 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 15530
529480d0 15531 args = skip_spaces (args);
1042e4c0
SS
15532 if (*args && strncasecmp (args, "all", 3) == 0)
15533 {
d9b3f62e
PA
15534 struct breakpoint *b;
15535
1042e4c0 15536 args += 3; /* Skip special argument "all". */
1042e4c0
SS
15537 if (*args)
15538 error (_("Junk at end of arguments."));
1042e4c0 15539
d9b3f62e 15540 ALL_TRACEPOINTS (b)
197f0a60 15541 {
d9b3f62e 15542 t1 = (struct tracepoint *) b;
197f0a60
TT
15543 trace_pass_set_count (t1, count, from_tty);
15544 }
15545 }
15546 else if (*args == '\0')
1042e4c0 15547 {
5fa1d40e 15548 t1 = get_tracepoint_by_number (&args, NULL);
1042e4c0 15549 if (t1)
197f0a60
TT
15550 trace_pass_set_count (t1, count, from_tty);
15551 }
15552 else
15553 {
bfd28288
PA
15554 number_or_range_parser parser (args);
15555 while (!parser.finished ())
1042e4c0 15556 {
bfd28288 15557 t1 = get_tracepoint_by_number (&args, &parser);
197f0a60
TT
15558 if (t1)
15559 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
15560 }
15561 }
1042e4c0
SS
15562}
15563
d9b3f62e 15564struct tracepoint *
1042e4c0
SS
15565get_tracepoint (int num)
15566{
15567 struct breakpoint *t;
15568
15569 ALL_TRACEPOINTS (t)
15570 if (t->number == num)
d9b3f62e 15571 return (struct tracepoint *) t;
1042e4c0
SS
15572
15573 return NULL;
15574}
15575
d5551862
SS
15576/* Find the tracepoint with the given target-side number (which may be
15577 different from the tracepoint number after disconnecting and
15578 reconnecting). */
15579
d9b3f62e 15580struct tracepoint *
d5551862
SS
15581get_tracepoint_by_number_on_target (int num)
15582{
d9b3f62e 15583 struct breakpoint *b;
d5551862 15584
d9b3f62e
PA
15585 ALL_TRACEPOINTS (b)
15586 {
15587 struct tracepoint *t = (struct tracepoint *) b;
15588
15589 if (t->number_on_target == num)
15590 return t;
15591 }
d5551862
SS
15592
15593 return NULL;
15594}
15595
1042e4c0 15596/* Utility: parse a tracepoint number and look it up in the list.
197f0a60 15597 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
5fa1d40e
YQ
15598 If the argument is missing, the most recent tracepoint
15599 (tracepoint_count) is returned. */
15600
d9b3f62e 15601struct tracepoint *
197f0a60 15602get_tracepoint_by_number (char **arg,
bfd28288 15603 number_or_range_parser *parser)
1042e4c0 15604{
1042e4c0
SS
15605 struct breakpoint *t;
15606 int tpnum;
15607 char *instring = arg == NULL ? NULL : *arg;
15608
bfd28288 15609 if (parser != NULL)
197f0a60 15610 {
bfd28288
PA
15611 gdb_assert (!parser->finished ());
15612 tpnum = parser->get_number ();
197f0a60
TT
15613 }
15614 else if (arg == NULL || *arg == NULL || ! **arg)
5fa1d40e 15615 tpnum = tracepoint_count;
1042e4c0 15616 else
197f0a60 15617 tpnum = get_number (arg);
1042e4c0
SS
15618
15619 if (tpnum <= 0)
15620 {
15621 if (instring && *instring)
15622 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
15623 instring);
15624 else
5fa1d40e 15625 printf_filtered (_("No previous tracepoint\n"));
1042e4c0
SS
15626 return NULL;
15627 }
15628
15629 ALL_TRACEPOINTS (t)
15630 if (t->number == tpnum)
15631 {
d9b3f62e 15632 return (struct tracepoint *) t;
1042e4c0
SS
15633 }
15634
1042e4c0
SS
15635 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15636 return NULL;
15637}
15638
d9b3f62e
PA
15639void
15640print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15641{
15642 if (b->thread != -1)
15643 fprintf_unfiltered (fp, " thread %d", b->thread);
15644
15645 if (b->task != 0)
15646 fprintf_unfiltered (fp, " task %d", b->task);
15647
15648 fprintf_unfiltered (fp, "\n");
15649}
15650
6149aea9
PA
15651/* Save information on user settable breakpoints (watchpoints, etc) to
15652 a new script file named FILENAME. If FILTER is non-NULL, call it
15653 on each breakpoint and only include the ones for which it returns
15654 non-zero. */
15655
1042e4c0 15656static void
6149aea9
PA
15657save_breakpoints (char *filename, int from_tty,
15658 int (*filter) (const struct breakpoint *))
1042e4c0
SS
15659{
15660 struct breakpoint *tp;
6149aea9 15661 int any = 0;
1042e4c0 15662 struct cleanup *cleanup;
6149aea9 15663 int extra_trace_bits = 0;
1042e4c0 15664
6149aea9
PA
15665 if (filename == 0 || *filename == 0)
15666 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
15667
15668 /* See if we have anything to save. */
6149aea9 15669 ALL_BREAKPOINTS (tp)
1042e4c0 15670 {
6149aea9 15671 /* Skip internal and momentary breakpoints. */
09d682a4 15672 if (!user_breakpoint_p (tp))
6149aea9
PA
15673 continue;
15674
15675 /* If we have a filter, only save the breakpoints it accepts. */
15676 if (filter && !filter (tp))
15677 continue;
15678
15679 any = 1;
15680
15681 if (is_tracepoint (tp))
15682 {
15683 extra_trace_bits = 1;
15684
15685 /* We can stop searching. */
15686 break;
15687 }
1042e4c0 15688 }
6149aea9
PA
15689
15690 if (!any)
1042e4c0 15691 {
6149aea9 15692 warning (_("Nothing to save."));
1042e4c0
SS
15693 return;
15694 }
15695
c718be47
PA
15696 filename = tilde_expand (filename);
15697 cleanup = make_cleanup (xfree, filename);
d7e74731
PA
15698
15699 stdio_file fp;
15700
15701 if (!fp.open (filename, "w"))
6149aea9
PA
15702 error (_("Unable to open file '%s' for saving (%s)"),
15703 filename, safe_strerror (errno));
8bf6485c 15704
6149aea9 15705 if (extra_trace_bits)
d7e74731 15706 save_trace_state_variables (&fp);
8bf6485c 15707
6149aea9 15708 ALL_BREAKPOINTS (tp)
1042e4c0 15709 {
6149aea9 15710 /* Skip internal and momentary breakpoints. */
09d682a4 15711 if (!user_breakpoint_p (tp))
6149aea9 15712 continue;
8bf6485c 15713
6149aea9
PA
15714 /* If we have a filter, only save the breakpoints it accepts. */
15715 if (filter && !filter (tp))
15716 continue;
15717
d7e74731 15718 tp->ops->print_recreate (tp, &fp);
1042e4c0 15719
6149aea9
PA
15720 /* Note, we can't rely on tp->number for anything, as we can't
15721 assume the recreated breakpoint numbers will match. Use $bpnum
15722 instead. */
15723
15724 if (tp->cond_string)
d7e74731 15725 fp.printf (" condition $bpnum %s\n", tp->cond_string);
6149aea9
PA
15726
15727 if (tp->ignore_count)
d7e74731 15728 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
6149aea9 15729
2d9442cc 15730 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 15731 {
d7e74731 15732 fp.puts (" commands\n");
a7bdde9e 15733
d7e74731 15734 current_uiout->redirect (&fp);
492d29ea 15735 TRY
1042e4c0 15736 {
79a45e25 15737 print_command_lines (current_uiout, tp->commands->commands, 2);
a7bdde9e 15738 }
492d29ea
PA
15739 CATCH (ex, RETURN_MASK_ALL)
15740 {
112e8700 15741 current_uiout->redirect (NULL);
492d29ea
PA
15742 throw_exception (ex);
15743 }
15744 END_CATCH
1042e4c0 15745
112e8700 15746 current_uiout->redirect (NULL);
d7e74731 15747 fp.puts (" end\n");
1042e4c0 15748 }
6149aea9
PA
15749
15750 if (tp->enable_state == bp_disabled)
d7e74731 15751 fp.puts ("disable $bpnum\n");
6149aea9
PA
15752
15753 /* If this is a multi-location breakpoint, check if the locations
15754 should be individually disabled. Watchpoint locations are
15755 special, and not user visible. */
15756 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15757 {
15758 struct bp_location *loc;
15759 int n = 1;
15760
15761 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15762 if (!loc->enabled)
d7e74731 15763 fp.printf ("disable $bpnum.%d\n", n);
6149aea9 15764 }
1042e4c0 15765 }
8bf6485c 15766
6149aea9 15767 if (extra_trace_bits && *default_collect)
d7e74731 15768 fp.printf ("set default-collect %s\n", default_collect);
8bf6485c 15769
1042e4c0 15770 if (from_tty)
6149aea9 15771 printf_filtered (_("Saved to file '%s'.\n"), filename);
c718be47 15772 do_cleanups (cleanup);
6149aea9
PA
15773}
15774
15775/* The `save breakpoints' command. */
15776
15777static void
15778save_breakpoints_command (char *args, int from_tty)
15779{
15780 save_breakpoints (args, from_tty, NULL);
15781}
15782
15783/* The `save tracepoints' command. */
15784
15785static void
15786save_tracepoints_command (char *args, int from_tty)
15787{
15788 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
15789}
15790
15791/* Create a vector of all tracepoints. */
15792
15793VEC(breakpoint_p) *
eeae04df 15794all_tracepoints (void)
1042e4c0
SS
15795{
15796 VEC(breakpoint_p) *tp_vec = 0;
15797 struct breakpoint *tp;
15798
15799 ALL_TRACEPOINTS (tp)
15800 {
15801 VEC_safe_push (breakpoint_p, tp_vec, tp);
15802 }
15803
15804 return tp_vec;
15805}
15806
c906108c 15807\f
629500fa
KS
15808/* This help string is used to consolidate all the help string for specifying
15809 locations used by several commands. */
15810
15811#define LOCATION_HELP_STRING \
15812"Linespecs are colon-separated lists of location parameters, such as\n\
15813source filename, function name, label name, and line number.\n\
15814Example: To specify the start of a label named \"the_top\" in the\n\
15815function \"fact\" in the file \"factorial.c\", use\n\
15816\"factorial.c:fact:the_top\".\n\
15817\n\
15818Address locations begin with \"*\" and specify an exact address in the\n\
15819program. Example: To specify the fourth byte past the start function\n\
15820\"main\", use \"*main + 4\".\n\
15821\n\
15822Explicit locations are similar to linespecs but use an option/argument\n\
15823syntax to specify location parameters.\n\
15824Example: To specify the start of the label named \"the_top\" in the\n\
15825function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
15826-function fact -label the_top\".\n"
15827
4a64f543
MS
15828/* This help string is used for the break, hbreak, tbreak and thbreak
15829 commands. It is defined as a macro to prevent duplication.
15830 COMMAND should be a string constant containing the name of the
15831 command. */
629500fa 15832
31e2b00f 15833#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
15834command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15835PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15836probe point. Accepted values are `-probe' (for a generic, automatically\n\
d4777acb
JM
15837guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15838`-probe-dtrace' (for a DTrace probe).\n\
629500fa
KS
15839LOCATION may be a linespec, address, or explicit location as described\n\
15840below.\n\
15841\n\
dc10affe
PA
15842With no LOCATION, uses current execution address of the selected\n\
15843stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
15844\n\
15845THREADNUM is the number from \"info threads\".\n\
15846CONDITION is a boolean expression.\n\
629500fa 15847\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
15848Multiple breakpoints at one place are permitted, and useful if their\n\
15849conditions are different.\n\
31e2b00f
AS
15850\n\
15851Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15852
44feb3ce
TT
15853/* List of subcommands for "catch". */
15854static struct cmd_list_element *catch_cmdlist;
15855
15856/* List of subcommands for "tcatch". */
15857static struct cmd_list_element *tcatch_cmdlist;
15858
9ac4176b 15859void
a121b7c1 15860add_catch_command (const char *name, const char *docstring,
82ae6c8d 15861 cmd_sfunc_ftype *sfunc,
625e8578 15862 completer_ftype *completer,
44feb3ce
TT
15863 void *user_data_catch,
15864 void *user_data_tcatch)
15865{
15866 struct cmd_list_element *command;
15867
15868 command = add_cmd (name, class_breakpoint, NULL, docstring,
15869 &catch_cmdlist);
15870 set_cmd_sfunc (command, sfunc);
15871 set_cmd_context (command, user_data_catch);
a96d9b2e 15872 set_cmd_completer (command, completer);
44feb3ce
TT
15873
15874 command = add_cmd (name, class_breakpoint, NULL, docstring,
15875 &tcatch_cmdlist);
15876 set_cmd_sfunc (command, sfunc);
15877 set_cmd_context (command, user_data_tcatch);
a96d9b2e 15878 set_cmd_completer (command, completer);
44feb3ce
TT
15879}
15880
6149aea9
PA
15881static void
15882save_command (char *arg, int from_tty)
15883{
3e43a32a
MS
15884 printf_unfiltered (_("\"save\" must be followed by "
15885 "the name of a save subcommand.\n"));
635c7e8a 15886 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
6149aea9
PA
15887}
15888
84f4c1fe
PM
15889struct breakpoint *
15890iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15891 void *data)
15892{
35df4500 15893 struct breakpoint *b, *b_tmp;
84f4c1fe 15894
35df4500 15895 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
15896 {
15897 if ((*callback) (b, data))
15898 return b;
15899 }
15900
15901 return NULL;
15902}
15903
0574c78f
GB
15904/* Zero if any of the breakpoint's locations could be a location where
15905 functions have been inlined, nonzero otherwise. */
15906
15907static int
15908is_non_inline_function (struct breakpoint *b)
15909{
15910 /* The shared library event breakpoint is set on the address of a
15911 non-inline function. */
15912 if (b->type == bp_shlib_event)
15913 return 1;
15914
15915 return 0;
15916}
15917
15918/* Nonzero if the specified PC cannot be a location where functions
15919 have been inlined. */
15920
15921int
09ac7c10
TT
15922pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc,
15923 const struct target_waitstatus *ws)
0574c78f
GB
15924{
15925 struct breakpoint *b;
15926 struct bp_location *bl;
15927
15928 ALL_BREAKPOINTS (b)
15929 {
15930 if (!is_non_inline_function (b))
15931 continue;
15932
15933 for (bl = b->loc; bl != NULL; bl = bl->next)
15934 {
15935 if (!bl->shlib_disabled
09ac7c10 15936 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
15937 return 1;
15938 }
15939 }
15940
15941 return 0;
15942}
15943
2f202fde
JK
15944/* Remove any references to OBJFILE which is going to be freed. */
15945
15946void
15947breakpoint_free_objfile (struct objfile *objfile)
15948{
15949 struct bp_location **locp, *loc;
15950
15951 ALL_BP_LOCATIONS (loc, locp)
eb822aa6 15952 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
2f202fde
JK
15953 loc->symtab = NULL;
15954}
15955
2060206e
PA
15956void
15957initialize_breakpoint_ops (void)
15958{
15959 static int initialized = 0;
15960
15961 struct breakpoint_ops *ops;
15962
15963 if (initialized)
15964 return;
15965 initialized = 1;
15966
15967 /* The breakpoint_ops structure to be inherit by all kinds of
15968 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15969 internal and momentary breakpoints, etc.). */
15970 ops = &bkpt_base_breakpoint_ops;
15971 *ops = base_breakpoint_ops;
15972 ops->re_set = bkpt_re_set;
15973 ops->insert_location = bkpt_insert_location;
15974 ops->remove_location = bkpt_remove_location;
15975 ops->breakpoint_hit = bkpt_breakpoint_hit;
5f700d83 15976 ops->create_sals_from_location = bkpt_create_sals_from_location;
983af33b 15977 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
5f700d83 15978 ops->decode_location = bkpt_decode_location;
2060206e
PA
15979
15980 /* The breakpoint_ops structure to be used in regular breakpoints. */
15981 ops = &bkpt_breakpoint_ops;
15982 *ops = bkpt_base_breakpoint_ops;
15983 ops->re_set = bkpt_re_set;
15984 ops->resources_needed = bkpt_resources_needed;
15985 ops->print_it = bkpt_print_it;
15986 ops->print_mention = bkpt_print_mention;
15987 ops->print_recreate = bkpt_print_recreate;
15988
15989 /* Ranged breakpoints. */
15990 ops = &ranged_breakpoint_ops;
15991 *ops = bkpt_breakpoint_ops;
15992 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15993 ops->resources_needed = resources_needed_ranged_breakpoint;
15994 ops->print_it = print_it_ranged_breakpoint;
15995 ops->print_one = print_one_ranged_breakpoint;
15996 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15997 ops->print_mention = print_mention_ranged_breakpoint;
15998 ops->print_recreate = print_recreate_ranged_breakpoint;
15999
16000 /* Internal breakpoints. */
16001 ops = &internal_breakpoint_ops;
16002 *ops = bkpt_base_breakpoint_ops;
16003 ops->re_set = internal_bkpt_re_set;
16004 ops->check_status = internal_bkpt_check_status;
16005 ops->print_it = internal_bkpt_print_it;
16006 ops->print_mention = internal_bkpt_print_mention;
16007
16008 /* Momentary breakpoints. */
16009 ops = &momentary_breakpoint_ops;
16010 *ops = bkpt_base_breakpoint_ops;
16011 ops->re_set = momentary_bkpt_re_set;
16012 ops->check_status = momentary_bkpt_check_status;
16013 ops->print_it = momentary_bkpt_print_it;
16014 ops->print_mention = momentary_bkpt_print_mention;
16015
e2e4d78b
JK
16016 /* Momentary breakpoints for bp_longjmp and bp_exception. */
16017 ops = &longjmp_breakpoint_ops;
16018 *ops = momentary_breakpoint_ops;
16019 ops->dtor = longjmp_bkpt_dtor;
16020
55aa24fb
SDJ
16021 /* Probe breakpoints. */
16022 ops = &bkpt_probe_breakpoint_ops;
16023 *ops = bkpt_breakpoint_ops;
16024 ops->insert_location = bkpt_probe_insert_location;
16025 ops->remove_location = bkpt_probe_remove_location;
5f700d83
KS
16026 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
16027 ops->decode_location = bkpt_probe_decode_location;
55aa24fb 16028
2060206e
PA
16029 /* Watchpoints. */
16030 ops = &watchpoint_breakpoint_ops;
16031 *ops = base_breakpoint_ops;
3a5c3e22 16032 ops->dtor = dtor_watchpoint;
2060206e
PA
16033 ops->re_set = re_set_watchpoint;
16034 ops->insert_location = insert_watchpoint;
16035 ops->remove_location = remove_watchpoint;
16036 ops->breakpoint_hit = breakpoint_hit_watchpoint;
16037 ops->check_status = check_status_watchpoint;
16038 ops->resources_needed = resources_needed_watchpoint;
16039 ops->works_in_software_mode = works_in_software_mode_watchpoint;
16040 ops->print_it = print_it_watchpoint;
16041 ops->print_mention = print_mention_watchpoint;
16042 ops->print_recreate = print_recreate_watchpoint;
427cd150 16043 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
16044
16045 /* Masked watchpoints. */
16046 ops = &masked_watchpoint_breakpoint_ops;
16047 *ops = watchpoint_breakpoint_ops;
16048 ops->insert_location = insert_masked_watchpoint;
16049 ops->remove_location = remove_masked_watchpoint;
16050 ops->resources_needed = resources_needed_masked_watchpoint;
16051 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
16052 ops->print_it = print_it_masked_watchpoint;
16053 ops->print_one_detail = print_one_detail_masked_watchpoint;
16054 ops->print_mention = print_mention_masked_watchpoint;
16055 ops->print_recreate = print_recreate_masked_watchpoint;
16056
16057 /* Tracepoints. */
16058 ops = &tracepoint_breakpoint_ops;
16059 *ops = base_breakpoint_ops;
16060 ops->re_set = tracepoint_re_set;
16061 ops->breakpoint_hit = tracepoint_breakpoint_hit;
16062 ops->print_one_detail = tracepoint_print_one_detail;
16063 ops->print_mention = tracepoint_print_mention;
16064 ops->print_recreate = tracepoint_print_recreate;
5f700d83 16065 ops->create_sals_from_location = tracepoint_create_sals_from_location;
983af33b 16066 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
5f700d83 16067 ops->decode_location = tracepoint_decode_location;
983af33b 16068
55aa24fb
SDJ
16069 /* Probe tracepoints. */
16070 ops = &tracepoint_probe_breakpoint_ops;
16071 *ops = tracepoint_breakpoint_ops;
5f700d83
KS
16072 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
16073 ops->decode_location = tracepoint_probe_decode_location;
55aa24fb 16074
983af33b
SDJ
16075 /* Static tracepoints with marker (`-m'). */
16076 ops = &strace_marker_breakpoint_ops;
16077 *ops = tracepoint_breakpoint_ops;
5f700d83 16078 ops->create_sals_from_location = strace_marker_create_sals_from_location;
983af33b 16079 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
5f700d83 16080 ops->decode_location = strace_marker_decode_location;
2060206e
PA
16081
16082 /* Fork catchpoints. */
16083 ops = &catch_fork_breakpoint_ops;
16084 *ops = base_breakpoint_ops;
16085 ops->insert_location = insert_catch_fork;
16086 ops->remove_location = remove_catch_fork;
16087 ops->breakpoint_hit = breakpoint_hit_catch_fork;
16088 ops->print_it = print_it_catch_fork;
16089 ops->print_one = print_one_catch_fork;
16090 ops->print_mention = print_mention_catch_fork;
16091 ops->print_recreate = print_recreate_catch_fork;
16092
16093 /* Vfork catchpoints. */
16094 ops = &catch_vfork_breakpoint_ops;
16095 *ops = base_breakpoint_ops;
16096 ops->insert_location = insert_catch_vfork;
16097 ops->remove_location = remove_catch_vfork;
16098 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
16099 ops->print_it = print_it_catch_vfork;
16100 ops->print_one = print_one_catch_vfork;
16101 ops->print_mention = print_mention_catch_vfork;
16102 ops->print_recreate = print_recreate_catch_vfork;
16103
16104 /* Exec catchpoints. */
16105 ops = &catch_exec_breakpoint_ops;
16106 *ops = base_breakpoint_ops;
16107 ops->dtor = dtor_catch_exec;
16108 ops->insert_location = insert_catch_exec;
16109 ops->remove_location = remove_catch_exec;
16110 ops->breakpoint_hit = breakpoint_hit_catch_exec;
16111 ops->print_it = print_it_catch_exec;
16112 ops->print_one = print_one_catch_exec;
16113 ops->print_mention = print_mention_catch_exec;
16114 ops->print_recreate = print_recreate_catch_exec;
16115
edcc5120
TT
16116 /* Solib-related catchpoints. */
16117 ops = &catch_solib_breakpoint_ops;
16118 *ops = base_breakpoint_ops;
16119 ops->dtor = dtor_catch_solib;
16120 ops->insert_location = insert_catch_solib;
16121 ops->remove_location = remove_catch_solib;
16122 ops->breakpoint_hit = breakpoint_hit_catch_solib;
16123 ops->check_status = check_status_catch_solib;
16124 ops->print_it = print_it_catch_solib;
16125 ops->print_one = print_one_catch_solib;
16126 ops->print_mention = print_mention_catch_solib;
16127 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
16128
16129 ops = &dprintf_breakpoint_ops;
16130 *ops = bkpt_base_breakpoint_ops;
5c2b4418 16131 ops->re_set = dprintf_re_set;
e7e0cddf
SS
16132 ops->resources_needed = bkpt_resources_needed;
16133 ops->print_it = bkpt_print_it;
16134 ops->print_mention = bkpt_print_mention;
2d9442cc 16135 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 16136 ops->after_condition_true = dprintf_after_condition_true;
cd1608cc 16137 ops->breakpoint_hit = dprintf_breakpoint_hit;
2060206e
PA
16138}
16139
8bfd80db
YQ
16140/* Chain containing all defined "enable breakpoint" subcommands. */
16141
16142static struct cmd_list_element *enablebreaklist = NULL;
16143
c906108c 16144void
fba45db2 16145_initialize_breakpoint (void)
c906108c
SS
16146{
16147 struct cmd_list_element *c;
16148
2060206e
PA
16149 initialize_breakpoint_ops ();
16150
84acb35a 16151 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
63644780 16152 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
1f3b5d1b 16153 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 16154
55aa24fb
SDJ
16155 breakpoint_objfile_key
16156 = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes);
17450429 16157
c906108c
SS
16158 breakpoint_chain = 0;
16159 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
16160 before a breakpoint is set. */
16161 breakpoint_count = 0;
16162
1042e4c0
SS
16163 tracepoint_count = 0;
16164
1bedd215
AC
16165 add_com ("ignore", class_breakpoint, ignore_command, _("\
16166Set ignore-count of breakpoint number N to COUNT.\n\
16167Usage is `ignore N COUNT'."));
c906108c 16168
1bedd215 16169 add_com ("commands", class_breakpoint, commands_command, _("\
18da0c51
MG
16170Set commands to be executed when the given breakpoints are hit.\n\
16171Give a space-separated breakpoint list as argument after \"commands\".\n\
16172A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
16173(e.g. `5-7').\n\
c906108c
SS
16174With no argument, the targeted breakpoint is the last one set.\n\
16175The commands themselves follow starting on the next line.\n\
16176Type a line containing \"end\" to indicate the end of them.\n\
16177Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 16178then no output is printed when it is hit, except what the commands print."));
c906108c 16179
d55637df 16180 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 16181Specify breakpoint number N to break only if COND is true.\n\
c906108c 16182Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 16183expression to be evaluated whenever breakpoint N is reached."));
d55637df 16184 set_cmd_completer (c, condition_completer);
c906108c 16185
1bedd215 16186 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 16187Set a temporary breakpoint.\n\
c906108c
SS
16188Like \"break\" except the breakpoint is only temporary,\n\
16189so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
16190by using \"enable delete\" on the breakpoint number.\n\
16191\n"
16192BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 16193 set_cmd_completer (c, location_completer);
c94fdfd0 16194
1bedd215 16195 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 16196Set a hardware assisted breakpoint.\n\
c906108c 16197Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
16198some target hardware may not have this support.\n\
16199\n"
16200BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 16201 set_cmd_completer (c, location_completer);
c906108c 16202
1bedd215 16203 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 16204Set a temporary hardware assisted breakpoint.\n\
c906108c 16205Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
16206so it will be deleted when hit.\n\
16207\n"
16208BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 16209 set_cmd_completer (c, location_completer);
c906108c 16210
1bedd215
AC
16211 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
16212Enable some breakpoints.\n\
c906108c
SS
16213Give breakpoint numbers (separated by spaces) as arguments.\n\
16214With no subcommand, breakpoints are enabled until you command otherwise.\n\
16215This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16216With a subcommand you can enable temporarily."),
c906108c 16217 &enablelist, "enable ", 1, &cmdlist);
c906108c
SS
16218
16219 add_com_alias ("en", "enable", class_breakpoint, 1);
16220
84951ab5 16221 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 16222Enable some breakpoints.\n\
c906108c
SS
16223Give breakpoint numbers (separated by spaces) as arguments.\n\
16224This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16225May be abbreviated to simply \"enable\".\n"),
c5aa993b 16226 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 16227
1a966eab
AC
16228 add_cmd ("once", no_class, enable_once_command, _("\
16229Enable breakpoints for one hit. Give breakpoint numbers.\n\
16230If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
16231 &enablebreaklist);
16232
1a966eab
AC
16233 add_cmd ("delete", no_class, enable_delete_command, _("\
16234Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16235If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16236 &enablebreaklist);
16237
816338b5
SS
16238 add_cmd ("count", no_class, enable_count_command, _("\
16239Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16240If a breakpoint is hit while enabled in this fashion,\n\
16241the count is decremented; when it reaches zero, the breakpoint is disabled."),
16242 &enablebreaklist);
16243
1a966eab
AC
16244 add_cmd ("delete", no_class, enable_delete_command, _("\
16245Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16246If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16247 &enablelist);
16248
1a966eab
AC
16249 add_cmd ("once", no_class, enable_once_command, _("\
16250Enable breakpoints for one hit. Give breakpoint numbers.\n\
16251If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
16252 &enablelist);
16253
16254 add_cmd ("count", no_class, enable_count_command, _("\
16255Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16256If a breakpoint is hit while enabled in this fashion,\n\
16257the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
16258 &enablelist);
16259
1bedd215
AC
16260 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
16261Disable some breakpoints.\n\
c906108c
SS
16262Arguments are breakpoint numbers with spaces in between.\n\
16263To disable all breakpoints, give no argument.\n\
64b9b334 16264A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
16265 &disablelist, "disable ", 1, &cmdlist);
16266 add_com_alias ("dis", "disable", class_breakpoint, 1);
16267 add_com_alias ("disa", "disable", class_breakpoint, 1);
c906108c 16268
1a966eab
AC
16269 add_cmd ("breakpoints", class_alias, disable_command, _("\
16270Disable some breakpoints.\n\
c906108c
SS
16271Arguments are breakpoint numbers with spaces in between.\n\
16272To disable all breakpoints, give no argument.\n\
64b9b334 16273A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 16274This command may be abbreviated \"disable\"."),
c906108c
SS
16275 &disablelist);
16276
1bedd215
AC
16277 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
16278Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16279Arguments are breakpoint numbers with spaces in between.\n\
16280To delete all breakpoints, give no argument.\n\
16281\n\
16282Also a prefix command for deletion of other GDB objects.\n\
1bedd215 16283The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
16284 &deletelist, "delete ", 1, &cmdlist);
16285 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 16286 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 16287
1a966eab
AC
16288 add_cmd ("breakpoints", class_alias, delete_command, _("\
16289Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16290Arguments are breakpoint numbers with spaces in between.\n\
16291To delete all breakpoints, give no argument.\n\
1a966eab 16292This command may be abbreviated \"delete\"."),
c906108c
SS
16293 &deletelist);
16294
1bedd215 16295 add_com ("clear", class_breakpoint, clear_command, _("\
629500fa
KS
16296Clear breakpoint at specified location.\n\
16297Argument may be a linespec, explicit, or address location as described below.\n\
1bedd215
AC
16298\n\
16299With no argument, clears all breakpoints in the line that the selected frame\n\
629500fa
KS
16300is executing in.\n"
16301"\n" LOCATION_HELP_STRING "\n\
1bedd215 16302See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 16303 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 16304
1bedd215 16305 c = add_com ("break", class_breakpoint, break_command, _("\
629500fa 16306Set breakpoint at specified location.\n"
31e2b00f 16307BREAK_ARGS_HELP ("break")));
5ba2abeb 16308 set_cmd_completer (c, location_completer);
c94fdfd0 16309
c906108c
SS
16310 add_com_alias ("b", "break", class_run, 1);
16311 add_com_alias ("br", "break", class_run, 1);
16312 add_com_alias ("bre", "break", class_run, 1);
16313 add_com_alias ("brea", "break", class_run, 1);
16314
c906108c
SS
16315 if (dbx_commands)
16316 {
1bedd215
AC
16317 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
16318Break in function/address or break at a line in the current file."),
c5aa993b
JM
16319 &stoplist, "stop ", 1, &cmdlist);
16320 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 16321 _("Break in function or address."), &stoplist);
c5aa993b 16322 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 16323 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
16324 add_com ("status", class_info, breakpoints_info, _("\
16325Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16326The \"Type\" column indicates one of:\n\
16327\tbreakpoint - normal breakpoint\n\
16328\twatchpoint - watchpoint\n\
16329The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16330the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16331breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16332address and file/line number respectively.\n\
16333\n\
16334Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16335are set to the address of the last breakpoint listed unless the command\n\
16336is prefixed with \"server \".\n\n\
c906108c 16337Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16338breakpoint set."));
c906108c
SS
16339 }
16340
1bedd215 16341 add_info ("breakpoints", breakpoints_info, _("\
e5a67952 16342Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
16343The \"Type\" column indicates one of:\n\
16344\tbreakpoint - normal breakpoint\n\
16345\twatchpoint - watchpoint\n\
16346The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16347the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16348breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16349address and file/line number respectively.\n\
16350\n\
16351Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16352are set to the address of the last breakpoint listed unless the command\n\
16353is prefixed with \"server \".\n\n\
c906108c 16354Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16355breakpoint set."));
c906108c 16356
6b04bdb7
MS
16357 add_info_alias ("b", "breakpoints", 1);
16358
1a966eab
AC
16359 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
16360Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16361The \"Type\" column indicates one of:\n\
16362\tbreakpoint - normal breakpoint\n\
16363\twatchpoint - watchpoint\n\
16364\tlongjmp - internal breakpoint used to step through longjmp()\n\
16365\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
16366\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
16367\tfinish - internal breakpoint used by the \"finish\" command\n\
16368The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
16369the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16370breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
16371address and file/line number respectively.\n\
16372\n\
16373Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16374are set to the address of the last breakpoint listed unless the command\n\
16375is prefixed with \"server \".\n\n\
c906108c 16376Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 16377breakpoint set."),
c906108c
SS
16378 &maintenanceinfolist);
16379
44feb3ce
TT
16380 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
16381Set catchpoints to catch events."),
16382 &catch_cmdlist, "catch ",
16383 0/*allow-unknown*/, &cmdlist);
16384
16385 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
16386Set temporary catchpoints to catch events."),
16387 &tcatch_cmdlist, "tcatch ",
16388 0/*allow-unknown*/, &cmdlist);
16389
44feb3ce
TT
16390 add_catch_command ("fork", _("Catch calls to fork."),
16391 catch_fork_command_1,
a96d9b2e 16392 NULL,
44feb3ce
TT
16393 (void *) (uintptr_t) catch_fork_permanent,
16394 (void *) (uintptr_t) catch_fork_temporary);
16395 add_catch_command ("vfork", _("Catch calls to vfork."),
16396 catch_fork_command_1,
a96d9b2e 16397 NULL,
44feb3ce
TT
16398 (void *) (uintptr_t) catch_vfork_permanent,
16399 (void *) (uintptr_t) catch_vfork_temporary);
16400 add_catch_command ("exec", _("Catch calls to exec."),
16401 catch_exec_command_1,
a96d9b2e
SDJ
16402 NULL,
16403 CATCH_PERMANENT,
16404 CATCH_TEMPORARY);
edcc5120
TT
16405 add_catch_command ("load", _("Catch loads of shared libraries.\n\
16406Usage: catch load [REGEX]\n\
16407If REGEX is given, only stop for libraries matching the regular expression."),
16408 catch_load_command_1,
16409 NULL,
16410 CATCH_PERMANENT,
16411 CATCH_TEMPORARY);
16412 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
16413Usage: catch unload [REGEX]\n\
16414If REGEX is given, only stop for libraries matching the regular expression."),
16415 catch_unload_command_1,
16416 NULL,
16417 CATCH_PERMANENT,
16418 CATCH_TEMPORARY);
c5aa993b 16419
1bedd215
AC
16420 c = add_com ("watch", class_breakpoint, watch_command, _("\
16421Set a watchpoint for an expression.\n\
06a64a0b 16422Usage: watch [-l|-location] EXPRESSION\n\
c906108c 16423A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16424an expression changes.\n\
16425If -l or -location is given, this evaluates EXPRESSION and watches\n\
16426the memory to which it refers."));
65d12d83 16427 set_cmd_completer (c, expression_completer);
c906108c 16428
1bedd215
AC
16429 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
16430Set a read watchpoint for an expression.\n\
06a64a0b 16431Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 16432A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16433an expression is read.\n\
16434If -l or -location is given, this evaluates EXPRESSION and watches\n\
16435the memory to which it refers."));
65d12d83 16436 set_cmd_completer (c, expression_completer);
c906108c 16437
1bedd215
AC
16438 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
16439Set a watchpoint for an expression.\n\
06a64a0b 16440Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 16441A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16442an expression is either read or written.\n\
16443If -l or -location is given, this evaluates EXPRESSION and watches\n\
16444the memory to which it refers."));
65d12d83 16445 set_cmd_completer (c, expression_completer);
c906108c 16446
d77f58be 16447 add_info ("watchpoints", watchpoints_info, _("\
e5a67952 16448Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 16449
920d2a44
AC
16450 /* XXX: cagney/2005-02-23: This should be a boolean, and should
16451 respond to changes - contrary to the description. */
85c07804
AC
16452 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
16453 &can_use_hw_watchpoints, _("\
16454Set debugger's willingness to use watchpoint hardware."), _("\
16455Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
16456If zero, gdb will not use hardware for new watchpoints, even if\n\
16457such is available. (However, any hardware watchpoints that were\n\
16458created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
16459hardware.)"),
16460 NULL,
920d2a44 16461 show_can_use_hw_watchpoints,
85c07804 16462 &setlist, &showlist);
c906108c
SS
16463
16464 can_use_hw_watchpoints = 1;
fa8d40ab 16465
1042e4c0
SS
16466 /* Tracepoint manipulation commands. */
16467
16468 c = add_com ("trace", class_breakpoint, trace_command, _("\
629500fa 16469Set a tracepoint at specified location.\n\
1042e4c0
SS
16470\n"
16471BREAK_ARGS_HELP ("trace") "\n\
16472Do \"help tracepoints\" for info on other tracepoint commands."));
16473 set_cmd_completer (c, location_completer);
16474
16475 add_com_alias ("tp", "trace", class_alias, 0);
16476 add_com_alias ("tr", "trace", class_alias, 1);
16477 add_com_alias ("tra", "trace", class_alias, 1);
16478 add_com_alias ("trac", "trace", class_alias, 1);
16479
7a697b8d 16480 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
629500fa 16481Set a fast tracepoint at specified location.\n\
7a697b8d
SS
16482\n"
16483BREAK_ARGS_HELP ("ftrace") "\n\
16484Do \"help tracepoints\" for info on other tracepoint commands."));
16485 set_cmd_completer (c, location_completer);
16486
0fb4aa4b 16487 c = add_com ("strace", class_breakpoint, strace_command, _("\
629500fa 16488Set a static tracepoint at location or marker.\n\
0fb4aa4b
PA
16489\n\
16490strace [LOCATION] [if CONDITION]\n\
629500fa
KS
16491LOCATION may be a linespec, explicit, or address location (described below) \n\
16492or -m MARKER_ID.\n\n\
16493If a marker id is specified, probe the marker with that name. With\n\
16494no LOCATION, uses current execution address of the selected stack frame.\n\
0fb4aa4b
PA
16495Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
16496This collects arbitrary user data passed in the probe point call to the\n\
16497tracing library. You can inspect it when analyzing the trace buffer,\n\
16498by printing the $_sdata variable like any other convenience variable.\n\
16499\n\
16500CONDITION is a boolean expression.\n\
629500fa 16501\n" LOCATION_HELP_STRING "\n\
d41c0fc8
PA
16502Multiple tracepoints at one place are permitted, and useful if their\n\
16503conditions are different.\n\
0fb4aa4b
PA
16504\n\
16505Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
16506Do \"help tracepoints\" for info on other tracepoint commands."));
16507 set_cmd_completer (c, location_completer);
16508
1042e4c0 16509 add_info ("tracepoints", tracepoints_info, _("\
e5a67952 16510Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
16511Convenience variable \"$tpnum\" contains the number of the\n\
16512last tracepoint set."));
16513
16514 add_info_alias ("tp", "tracepoints", 1);
16515
16516 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
16517Delete specified tracepoints.\n\
16518Arguments are tracepoint numbers, separated by spaces.\n\
16519No argument means delete all tracepoints."),
16520 &deletelist);
7e20dfcd 16521 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
16522
16523 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
16524Disable specified tracepoints.\n\
16525Arguments are tracepoint numbers, separated by spaces.\n\
16526No argument means disable all tracepoints."),
16527 &disablelist);
16528 deprecate_cmd (c, "disable");
16529
16530 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
16531Enable specified tracepoints.\n\
16532Arguments are tracepoint numbers, separated by spaces.\n\
16533No argument means enable all tracepoints."),
16534 &enablelist);
16535 deprecate_cmd (c, "enable");
16536
16537 add_com ("passcount", class_trace, trace_pass_command, _("\
16538Set the passcount for a tracepoint.\n\
16539The trace will end when the tracepoint has been passed 'count' times.\n\
16540Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
16541if TPNUM is omitted, passcount refers to the last tracepoint defined."));
16542
6149aea9
PA
16543 add_prefix_cmd ("save", class_breakpoint, save_command,
16544 _("Save breakpoint definitions as a script."),
16545 &save_cmdlist, "save ",
16546 0/*allow-unknown*/, &cmdlist);
16547
16548 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
16549Save current breakpoint definitions as a script.\n\
cce7e648 16550This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
16551catchpoints, tracepoints). Use the 'source' command in another debug\n\
16552session to restore them."),
16553 &save_cmdlist);
16554 set_cmd_completer (c, filename_completer);
16555
16556 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 16557Save current tracepoint definitions as a script.\n\
6149aea9
PA
16558Use the 'source' command in another debug session to restore them."),
16559 &save_cmdlist);
1042e4c0
SS
16560 set_cmd_completer (c, filename_completer);
16561
6149aea9
PA
16562 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
16563 deprecate_cmd (c, "save tracepoints");
16564
1bedd215 16565 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
16566Breakpoint specific settings\n\
16567Configure various breakpoint-specific variables such as\n\
1bedd215 16568pending breakpoint behavior"),
fa8d40ab
JJ
16569 &breakpoint_set_cmdlist, "set breakpoint ",
16570 0/*allow-unknown*/, &setlist);
1bedd215 16571 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
16572Breakpoint specific settings\n\
16573Configure various breakpoint-specific variables such as\n\
1bedd215 16574pending breakpoint behavior"),
fa8d40ab
JJ
16575 &breakpoint_show_cmdlist, "show breakpoint ",
16576 0/*allow-unknown*/, &showlist);
16577
7915a72c
AC
16578 add_setshow_auto_boolean_cmd ("pending", no_class,
16579 &pending_break_support, _("\
16580Set debugger's behavior regarding pending breakpoints."), _("\
16581Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
16582If on, an unrecognized breakpoint location will cause gdb to create a\n\
16583pending breakpoint. If off, an unrecognized breakpoint location results in\n\
16584an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 16585user-query to see if a pending breakpoint should be created."),
2c5b56ce 16586 NULL,
920d2a44 16587 show_pending_break_support,
6e1d7d6c
AC
16588 &breakpoint_set_cmdlist,
16589 &breakpoint_show_cmdlist);
fa8d40ab
JJ
16590
16591 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
16592
16593 add_setshow_boolean_cmd ("auto-hw", no_class,
16594 &automatic_hardware_breakpoints, _("\
16595Set automatic usage of hardware breakpoints."), _("\
16596Show automatic usage of hardware breakpoints."), _("\
16597If set, the debugger will automatically use hardware breakpoints for\n\
16598breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
16599a warning will be emitted for such breakpoints."),
16600 NULL,
16601 show_automatic_hardware_breakpoints,
16602 &breakpoint_set_cmdlist,
16603 &breakpoint_show_cmdlist);
74960c60 16604
a25a5a45
PA
16605 add_setshow_boolean_cmd ("always-inserted", class_support,
16606 &always_inserted_mode, _("\
74960c60
VP
16607Set mode for inserting breakpoints."), _("\
16608Show mode for inserting breakpoints."), _("\
a25a5a45
PA
16609When this mode is on, breakpoints are inserted immediately as soon as\n\
16610they're created, kept inserted even when execution stops, and removed\n\
16611only when the user deletes them. When this mode is off (the default),\n\
16612breakpoints are inserted only when execution continues, and removed\n\
16613when execution stops."),
72d0e2c5
YQ
16614 NULL,
16615 &show_always_inserted_mode,
16616 &breakpoint_set_cmdlist,
16617 &breakpoint_show_cmdlist);
f1310107 16618
b775012e
LM
16619 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
16620 condition_evaluation_enums,
16621 &condition_evaluation_mode_1, _("\
16622Set mode of breakpoint condition evaluation."), _("\
16623Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 16624When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
16625evaluated on the host's side by GDB. When it is set to \"target\",\n\
16626breakpoint conditions will be downloaded to the target (if the target\n\
16627supports such feature) and conditions will be evaluated on the target's side.\n\
16628If this is set to \"auto\" (default), this will be automatically set to\n\
16629\"target\" if it supports condition evaluation, otherwise it will\n\
16630be set to \"gdb\""),
16631 &set_condition_evaluation_mode,
16632 &show_condition_evaluation_mode,
16633 &breakpoint_set_cmdlist,
16634 &breakpoint_show_cmdlist);
16635
f1310107
TJB
16636 add_com ("break-range", class_breakpoint, break_range_command, _("\
16637Set a breakpoint for an address range.\n\
16638break-range START-LOCATION, END-LOCATION\n\
16639where START-LOCATION and END-LOCATION can be one of the following:\n\
16640 LINENUM, for that line in the current file,\n\
16641 FILE:LINENUM, for that line in that file,\n\
16642 +OFFSET, for that number of lines after the current line\n\
16643 or the start of the range\n\
16644 FUNCTION, for the first line in that function,\n\
16645 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16646 *ADDRESS, for the instruction at that address.\n\
16647\n\
16648The breakpoint will stop execution of the inferior whenever it executes\n\
16649an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16650range (including START-LOCATION and END-LOCATION)."));
16651
e7e0cddf 16652 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
629500fa 16653Set a dynamic printf at specified location.\n\
e7e0cddf 16654dprintf location,format string,arg1,arg2,...\n\
629500fa
KS
16655location may be a linespec, explicit, or address location.\n"
16656"\n" LOCATION_HELP_STRING));
e7e0cddf
SS
16657 set_cmd_completer (c, location_completer);
16658
16659 add_setshow_enum_cmd ("dprintf-style", class_support,
16660 dprintf_style_enums, &dprintf_style, _("\
16661Set the style of usage for dynamic printf."), _("\
16662Show the style of usage for dynamic printf."), _("\
16663This setting chooses how GDB will do a dynamic printf.\n\
16664If the value is \"gdb\", then the printing is done by GDB to its own\n\
16665console, as with the \"printf\" command.\n\
16666If the value is \"call\", the print is done by calling a function in your\n\
16667program; by default printf(), but you can choose a different function or\n\
16668output stream by setting dprintf-function and dprintf-channel."),
16669 update_dprintf_commands, NULL,
16670 &setlist, &showlist);
16671
16672 dprintf_function = xstrdup ("printf");
16673 add_setshow_string_cmd ("dprintf-function", class_support,
16674 &dprintf_function, _("\
16675Set the function to use for dynamic printf"), _("\
16676Show the function to use for dynamic printf"), NULL,
16677 update_dprintf_commands, NULL,
16678 &setlist, &showlist);
16679
16680 dprintf_channel = xstrdup ("");
16681 add_setshow_string_cmd ("dprintf-channel", class_support,
16682 &dprintf_channel, _("\
16683Set the channel to use for dynamic printf"), _("\
16684Show the channel to use for dynamic printf"), NULL,
16685 update_dprintf_commands, NULL,
16686 &setlist, &showlist);
16687
d3ce09f5
SS
16688 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16689 &disconnected_dprintf, _("\
16690Set whether dprintf continues after GDB disconnects."), _("\
16691Show whether dprintf continues after GDB disconnects."), _("\
16692Use this to let dprintf commands continue to hit and produce output\n\
16693even if GDB disconnects or detaches from the target."),
16694 NULL,
16695 NULL,
16696 &setlist, &showlist);
16697
16698 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16699agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16700(target agent only) This is useful for formatted output in user-defined commands."));
16701
765dc015 16702 automatic_hardware_breakpoints = 1;
f3b1572e
PA
16703
16704 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
49fa26b0 16705 observer_attach_thread_exit (remove_threaded_breakpoints);
c906108c 16706}
This page took 3.665369 seconds and 4 git commands to generate.