PR17431: following execs with "breakpoint always-inserted on"
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
ecd75fc8 3 Copyright (C) 1986-2014 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"
60250e8b 54#include "exceptions.h"
765dc015 55#include "memattr.h"
f7f9143b 56#include "ada-lang.h"
d1aa2f50 57#include "top.h"
79a45b7d 58#include "valprint.h"
4efc6507 59#include "jit.h"
a96d9b2e 60#include "xml-syscall.h"
65d79d4b 61#include "parser-defs.h"
55aa24fb
SDJ
62#include "gdb_regex.h"
63#include "probe.h"
e9cafbcc 64#include "cli/cli-utils.h"
be34f849 65#include "continuations.h"
1bfeeb0f
JL
66#include "stack.h"
67#include "skip.h"
b775012e 68#include "ax-gdb.h"
e2e4d78b 69#include "dummy-frame.h"
c906108c 70
d3ce09f5
SS
71#include "format.h"
72
1042e4c0
SS
73/* readline include files */
74#include "readline/readline.h"
75#include "readline/history.h"
76
77/* readline defines this. */
78#undef savestring
79
034dad6f 80#include "mi/mi-common.h"
6dddc817 81#include "extension.h"
104c1213 82
e7e8980f
YQ
83/* Enums for exception-handling support. */
84enum exception_event_kind
85{
86 EX_EVENT_THROW,
591f19e8 87 EX_EVENT_RETHROW,
e7e8980f
YQ
88 EX_EVENT_CATCH
89};
90
4a64f543 91/* Prototypes for local functions. */
c906108c 92
a14ed312 93static void enable_delete_command (char *, int);
c906108c 94
a14ed312 95static void enable_once_command (char *, int);
c906108c 96
816338b5
SS
97static void enable_count_command (char *, int);
98
a14ed312 99static void disable_command (char *, int);
c906108c 100
a14ed312 101static void enable_command (char *, int);
c906108c 102
95a42b64
TT
103static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
104 void *),
105 void *);
c906108c 106
a14ed312 107static void ignore_command (char *, int);
c906108c 108
4efb68b1 109static int breakpoint_re_set_one (void *);
c906108c 110
348d480f
PA
111static void breakpoint_re_set_default (struct breakpoint *);
112
983af33b
SDJ
113static void create_sals_from_address_default (char **,
114 struct linespec_result *,
115 enum bptype, char *,
116 char **);
117
118static void create_breakpoints_sal_default (struct gdbarch *,
119 struct linespec_result *,
e7e0cddf 120 char *, char *, enum bptype,
983af33b
SDJ
121 enum bpdisp, int, int,
122 int,
123 const struct breakpoint_ops *,
44f238bb 124 int, int, int, unsigned);
983af33b
SDJ
125
126static void decode_linespec_default (struct breakpoint *, char **,
127 struct symtabs_and_lines *);
128
a14ed312 129static void clear_command (char *, int);
c906108c 130
a14ed312 131static void catch_command (char *, int);
c906108c 132
a9634178 133static int can_use_hardware_watchpoint (struct value *);
c906108c 134
98deb0da 135static void break_command_1 (char *, int, int);
c906108c 136
a14ed312 137static void mention (struct breakpoint *);
c906108c 138
348d480f
PA
139static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
140 enum bptype,
c0a91b2b 141 const struct breakpoint_ops *);
3742cc8b
YQ
142static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
143 const struct symtab_and_line *);
144
4a64f543
MS
145/* This function is used in gdbtk sources and thus can not be made
146 static. */
63c252f8 147struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 148 struct symtab_and_line,
c0a91b2b
TT
149 enum bptype,
150 const struct breakpoint_ops *);
c906108c 151
06edf0c0
PA
152static struct breakpoint *
153 momentary_breakpoint_from_master (struct breakpoint *orig,
154 enum bptype type,
a1aa2221
LM
155 const struct breakpoint_ops *ops,
156 int loc_enabled);
06edf0c0 157
76897487
KB
158static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
159
a6d9a66e
UW
160static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
161 CORE_ADDR bpaddr,
88f7da05 162 enum bptype bptype);
76897487 163
6c95b8df
PA
164static void describe_other_breakpoints (struct gdbarch *,
165 struct program_space *, CORE_ADDR,
5af949e3 166 struct obj_section *, int);
c906108c 167
85d721b8
PA
168static int watchpoint_locations_match (struct bp_location *loc1,
169 struct bp_location *loc2);
170
f1310107
TJB
171static int breakpoint_location_address_match (struct bp_location *bl,
172 struct address_space *aspace,
173 CORE_ADDR addr);
174
a14ed312 175static void breakpoints_info (char *, int);
c906108c 176
d77f58be
SS
177static void watchpoints_info (char *, int);
178
e5a67952
MS
179static int breakpoint_1 (char *, int,
180 int (*) (const struct breakpoint *));
c906108c 181
4efb68b1 182static int breakpoint_cond_eval (void *);
c906108c 183
4efb68b1 184static void cleanup_executing_breakpoints (void *);
c906108c 185
a14ed312 186static void commands_command (char *, int);
c906108c 187
a14ed312 188static void condition_command (char *, int);
c906108c 189
c5aa993b
JM
190typedef enum
191 {
192 mark_inserted,
193 mark_uninserted
194 }
195insertion_state_t;
c906108c 196
0bde7532 197static int remove_breakpoint (struct bp_location *, insertion_state_t);
6c95b8df 198static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
c906108c 199
e514a9d6 200static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 201
4efb68b1 202static int watchpoint_check (void *);
c906108c 203
a14ed312 204static void maintenance_info_breakpoints (char *, int);
c906108c 205
a14ed312 206static int hw_breakpoint_used_count (void);
c906108c 207
a1398e0c
PA
208static int hw_watchpoint_use_count (struct breakpoint *);
209
210static int hw_watchpoint_used_count_others (struct breakpoint *except,
211 enum bptype type,
212 int *other_type_used);
c906108c 213
a14ed312 214static void hbreak_command (char *, int);
c906108c 215
a14ed312 216static void thbreak_command (char *, int);
c906108c 217
816338b5
SS
218static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
219 int count);
c906108c 220
a14ed312 221static void stop_command (char *arg, int from_tty);
7a292a7a 222
a14ed312 223static void stopin_command (char *arg, int from_tty);
7a292a7a 224
a14ed312 225static void stopat_command (char *arg, int from_tty);
7a292a7a 226
a14ed312 227static void tcatch_command (char *arg, int from_tty);
7a292a7a 228
d03285ec
UW
229static void detach_single_step_breakpoints (void);
230
ef370185
JB
231static int find_single_step_breakpoint (struct address_space *aspace,
232 CORE_ADDR pc);
233
fe3f5fa8 234static void free_bp_location (struct bp_location *loc);
f431efe5
PA
235static void incref_bp_location (struct bp_location *loc);
236static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 237
39d61571 238static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 239
44702360
PA
240/* update_global_location_list's modes of operation wrt to whether to
241 insert locations now. */
242enum ugll_insert_mode
243{
244 /* Don't insert any breakpoint locations into the inferior, only
245 remove already-inserted locations that no longer should be
246 inserted. Functions that delete a breakpoint or breakpoints
247 should specify this mode, so that deleting a breakpoint doesn't
248 have the side effect of inserting the locations of other
249 breakpoints that are marked not-inserted, but should_be_inserted
250 returns true on them.
251
252 This behavior is useful is situations close to tear-down -- e.g.,
253 after an exec, while the target still has execution, but
254 breakpoint shadows of the previous executable image should *NOT*
255 be restored to the new image; or before detaching, where the
256 target still has execution and wants to delete breakpoints from
257 GDB's lists, and all breakpoints had already been removed from
258 the inferior. */
259 UGLL_DONT_INSERT,
260
a25a5a45
PA
261 /* May insert breakpoints iff breakpoints_should_be_inserted_now
262 claims breakpoints should be inserted now. */
04086b45
PA
263 UGLL_MAY_INSERT,
264
a25a5a45
PA
265 /* Insert locations now, irrespective of
266 breakpoints_should_be_inserted_now. E.g., say all threads are
267 stopped right now, and the user did "continue". We need to
268 insert breakpoints _before_ resuming the target, but
269 UGLL_MAY_INSERT wouldn't insert them, because
270 breakpoints_should_be_inserted_now returns false at that point,
271 as no thread is running yet. */
04086b45 272 UGLL_INSERT
44702360
PA
273};
274
275static void update_global_location_list (enum ugll_insert_mode);
a5606eee 276
44702360 277static void update_global_location_list_nothrow (enum ugll_insert_mode);
74960c60 278
d77f58be 279static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60
VP
280
281static void insert_breakpoint_locations (void);
a5606eee 282
a96d9b2e
SDJ
283static int syscall_catchpoint_p (struct breakpoint *b);
284
1042e4c0
SS
285static void tracepoints_info (char *, int);
286
287static void delete_trace_command (char *, int);
288
289static void enable_trace_command (char *, int);
290
291static void disable_trace_command (char *, int);
292
293static void trace_pass_command (char *, int);
294
558a9d82
YQ
295static void set_tracepoint_count (int num);
296
9c06b0b4
TJB
297static int is_masked_watchpoint (const struct breakpoint *b);
298
b775012e
LM
299static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
300
983af33b
SDJ
301/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
302 otherwise. */
303
304static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 305
2060206e
PA
306/* The abstract base class all breakpoint_ops structures inherit
307 from. */
ab04a2af 308struct breakpoint_ops base_breakpoint_ops;
2060206e
PA
309
310/* The breakpoint_ops structure to be inherited by all breakpoint_ops
311 that are implemented on top of software or hardware breakpoints
312 (user breakpoints, internal and momentary breakpoints, etc.). */
313static struct breakpoint_ops bkpt_base_breakpoint_ops;
314
315/* Internal breakpoints class type. */
06edf0c0 316static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
317
318/* Momentary breakpoints class type. */
06edf0c0
PA
319static struct breakpoint_ops momentary_breakpoint_ops;
320
e2e4d78b
JK
321/* Momentary breakpoints for bp_longjmp and bp_exception class type. */
322static struct breakpoint_ops longjmp_breakpoint_ops;
323
2060206e
PA
324/* The breakpoint_ops structure to be used in regular user created
325 breakpoints. */
326struct breakpoint_ops bkpt_breakpoint_ops;
327
55aa24fb
SDJ
328/* Breakpoints set on probes. */
329static struct breakpoint_ops bkpt_probe_breakpoint_ops;
330
e7e0cddf 331/* Dynamic printf class type. */
c5867ab6 332struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 333
9d497a19
PA
334/* One (or perhaps two) breakpoints used for software single
335 stepping. */
336
337static void *single_step_breakpoints[2];
338static struct gdbarch *single_step_gdbarch[2];
339
d3ce09f5
SS
340/* The style in which to perform a dynamic printf. This is a user
341 option because different output options have different tradeoffs;
342 if GDB does the printing, there is better error handling if there
343 is a problem with any of the arguments, but using an inferior
344 function lets you have special-purpose printers and sending of
345 output to the same place as compiled-in print functions. */
346
347static const char dprintf_style_gdb[] = "gdb";
348static const char dprintf_style_call[] = "call";
349static const char dprintf_style_agent[] = "agent";
350static const char *const dprintf_style_enums[] = {
351 dprintf_style_gdb,
352 dprintf_style_call,
353 dprintf_style_agent,
354 NULL
355};
356static const char *dprintf_style = dprintf_style_gdb;
357
358/* The function to use for dynamic printf if the preferred style is to
359 call into the inferior. The value is simply a string that is
360 copied into the command, so it can be anything that GDB can
361 evaluate to a callable address, not necessarily a function name. */
362
363static char *dprintf_function = "";
364
365/* The channel to use for dynamic printf if the preferred style is to
366 call into the inferior; if a nonempty string, it will be passed to
367 the call as the first argument, with the format string as the
368 second. As with the dprintf function, this can be anything that
369 GDB knows how to evaluate, so in addition to common choices like
370 "stderr", this could be an app-specific expression like
371 "mystreams[curlogger]". */
372
373static char *dprintf_channel = "";
374
375/* True if dprintf commands should continue to operate even if GDB
376 has disconnected. */
377static int disconnected_dprintf = 1;
378
5cea2a26
PA
379/* A reference-counted struct command_line. This lets multiple
380 breakpoints share a single command list. */
381struct counted_command_line
382{
383 /* The reference count. */
384 int refc;
385
386 /* The command list. */
387 struct command_line *commands;
388};
389
390struct command_line *
391breakpoint_commands (struct breakpoint *b)
392{
393 return b->commands ? b->commands->commands : NULL;
394}
3daf8fe5 395
f3b1572e
PA
396/* Flag indicating that a command has proceeded the inferior past the
397 current breakpoint. */
398
399static int breakpoint_proceeded;
400
956a9fb9 401const char *
2cec12e5
AR
402bpdisp_text (enum bpdisp disp)
403{
4a64f543
MS
404 /* NOTE: the following values are a part of MI protocol and
405 represent values of 'disp' field returned when inferior stops at
406 a breakpoint. */
bc043ef3 407 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 408
2cec12e5
AR
409 return bpdisps[(int) disp];
410}
c906108c 411
4a64f543 412/* Prototypes for exported functions. */
c906108c 413/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 414 if such is available. */
c906108c
SS
415static int can_use_hw_watchpoints;
416
920d2a44
AC
417static void
418show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
419 struct cmd_list_element *c,
420 const char *value)
421{
3e43a32a
MS
422 fprintf_filtered (file,
423 _("Debugger's willingness to use "
424 "watchpoint hardware is %s.\n"),
920d2a44
AC
425 value);
426}
427
fa8d40ab
JJ
428/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
429 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 430 for unrecognized breakpoint locations.
fa8d40ab
JJ
431 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
432static enum auto_boolean pending_break_support;
920d2a44
AC
433static void
434show_pending_break_support (struct ui_file *file, int from_tty,
435 struct cmd_list_element *c,
436 const char *value)
437{
3e43a32a
MS
438 fprintf_filtered (file,
439 _("Debugger's behavior regarding "
440 "pending breakpoints is %s.\n"),
920d2a44
AC
441 value);
442}
fa8d40ab 443
765dc015 444/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 445 set with "break" but falling in read-only memory.
765dc015
VP
446 If 0, gdb will warn about such breakpoints, but won't automatically
447 use hardware breakpoints. */
448static int automatic_hardware_breakpoints;
449static void
450show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
451 struct cmd_list_element *c,
452 const char *value)
453{
3e43a32a
MS
454 fprintf_filtered (file,
455 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
456 value);
457}
458
a25a5a45
PA
459/* If on, GDB keeps breakpoints inserted even if the inferior is
460 stopped, and immediately inserts any new breakpoints as soon as
461 they're created. If off (default), GDB keeps breakpoints off of
462 the target as long as possible. That is, it delays inserting
463 breakpoints until the next resume, and removes them again when the
464 target fully stops. This is a bit safer in case GDB crashes while
465 processing user input. */
466static int always_inserted_mode = 0;
72d0e2c5 467
33e5cbd6 468static void
74960c60 469show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 470 struct cmd_list_element *c, const char *value)
74960c60 471{
a25a5a45
PA
472 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
473 value);
74960c60
VP
474}
475
33e5cbd6 476int
a25a5a45 477breakpoints_should_be_inserted_now (void)
33e5cbd6 478{
a25a5a45
PA
479 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
480 {
481 /* If breakpoints are global, they should be inserted even if no
482 thread under gdb's control is running, or even if there are
483 no threads under GDB's control yet. */
484 return 1;
485 }
486 else if (target_has_execution)
487 {
488 struct thread_info *tp;
489
490 if (always_inserted_mode)
491 {
492 /* The user wants breakpoints inserted even if all threads
493 are stopped. */
494 return 1;
495 }
496
497 ALL_NON_EXITED_THREADS (tp)
498 {
499 if (tp->executing)
500 return 1;
501 }
502 }
503 return 0;
33e5cbd6 504}
765dc015 505
b775012e
LM
506static const char condition_evaluation_both[] = "host or target";
507
508/* Modes for breakpoint condition evaluation. */
509static const char condition_evaluation_auto[] = "auto";
510static const char condition_evaluation_host[] = "host";
511static const char condition_evaluation_target[] = "target";
512static const char *const condition_evaluation_enums[] = {
513 condition_evaluation_auto,
514 condition_evaluation_host,
515 condition_evaluation_target,
516 NULL
517};
518
519/* Global that holds the current mode for breakpoint condition evaluation. */
520static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
521
522/* Global that we use to display information to the user (gets its value from
523 condition_evaluation_mode_1. */
524static const char *condition_evaluation_mode = condition_evaluation_auto;
525
526/* Translate a condition evaluation mode MODE into either "host"
527 or "target". This is used mostly to translate from "auto" to the
528 real setting that is being used. It returns the translated
529 evaluation mode. */
530
531static const char *
532translate_condition_evaluation_mode (const char *mode)
533{
534 if (mode == condition_evaluation_auto)
535 {
536 if (target_supports_evaluation_of_breakpoint_conditions ())
537 return condition_evaluation_target;
538 else
539 return condition_evaluation_host;
540 }
541 else
542 return mode;
543}
544
545/* Discovers what condition_evaluation_auto translates to. */
546
547static const char *
548breakpoint_condition_evaluation_mode (void)
549{
550 return translate_condition_evaluation_mode (condition_evaluation_mode);
551}
552
553/* Return true if GDB should evaluate breakpoint conditions or false
554 otherwise. */
555
556static int
557gdb_evaluates_breakpoint_condition_p (void)
558{
559 const char *mode = breakpoint_condition_evaluation_mode ();
560
561 return (mode == condition_evaluation_host);
562}
563
a14ed312 564void _initialize_breakpoint (void);
c906108c 565
c906108c
SS
566/* Are we executing breakpoint commands? */
567static int executing_breakpoint_commands;
568
c02f5703
MS
569/* Are overlay event breakpoints enabled? */
570static int overlay_events_enabled;
571
e09342b5
TJB
572/* See description in breakpoint.h. */
573int target_exact_watchpoints = 0;
574
c906108c 575/* Walk the following statement or block through all breakpoints.
e5dd4106 576 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 577 current breakpoint. */
c906108c 578
5c44784c 579#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 580
5c44784c
JM
581#define ALL_BREAKPOINTS_SAFE(B,TMP) \
582 for (B = breakpoint_chain; \
583 B ? (TMP=B->next, 1): 0; \
584 B = TMP)
c906108c 585
4a64f543
MS
586/* Similar iterator for the low-level breakpoints. SAFE variant is
587 not provided so update_global_location_list must not be called
588 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 589
876fa593
JK
590#define ALL_BP_LOCATIONS(B,BP_TMP) \
591 for (BP_TMP = bp_location; \
592 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
593 BP_TMP++)
7cc221ef 594
b775012e
LM
595/* Iterates through locations with address ADDRESS for the currently selected
596 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
597 to where the loop should start from.
598 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
599 appropriate location to start with. */
600
601#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
602 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
603 BP_LOCP_TMP = BP_LOCP_START; \
604 BP_LOCP_START \
605 && (BP_LOCP_TMP < bp_location + bp_location_count \
606 && (*BP_LOCP_TMP)->address == ADDRESS); \
607 BP_LOCP_TMP++)
608
1042e4c0
SS
609/* Iterator for tracepoints only. */
610
611#define ALL_TRACEPOINTS(B) \
612 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 613 if (is_tracepoint (B))
1042e4c0 614
7cc221ef 615/* Chains of all breakpoints defined. */
c906108c
SS
616
617struct breakpoint *breakpoint_chain;
618
876fa593
JK
619/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
620
621static struct bp_location **bp_location;
622
623/* Number of elements of BP_LOCATION. */
624
625static unsigned bp_location_count;
626
4a64f543
MS
627/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
628 ADDRESS for the current elements of BP_LOCATION which get a valid
629 result from bp_location_has_shadow. You can use it for roughly
630 limiting the subrange of BP_LOCATION to scan for shadow bytes for
631 an address you need to read. */
876fa593
JK
632
633static CORE_ADDR bp_location_placed_address_before_address_max;
634
4a64f543
MS
635/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
636 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
637 BP_LOCATION which get a valid result from bp_location_has_shadow.
638 You can use it for roughly limiting the subrange of BP_LOCATION to
639 scan for shadow bytes for an address you need to read. */
876fa593
JK
640
641static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 642
4a64f543
MS
643/* The locations that no longer correspond to any breakpoint, unlinked
644 from bp_location array, but for which a hit may still be reported
645 by a target. */
20874c92
VP
646VEC(bp_location_p) *moribund_locations = NULL;
647
c906108c
SS
648/* Number of last breakpoint made. */
649
95a42b64
TT
650static int breakpoint_count;
651
86b17b60
PA
652/* The value of `breakpoint_count' before the last command that
653 created breakpoints. If the last (break-like) command created more
654 than one breakpoint, then the difference between BREAKPOINT_COUNT
655 and PREV_BREAKPOINT_COUNT is more than one. */
656static int prev_breakpoint_count;
c906108c 657
1042e4c0
SS
658/* Number of last tracepoint made. */
659
95a42b64 660static int tracepoint_count;
1042e4c0 661
6149aea9
PA
662static struct cmd_list_element *breakpoint_set_cmdlist;
663static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 664struct cmd_list_element *save_cmdlist;
6149aea9 665
468d015d
JJ
666/* Return whether a breakpoint is an active enabled breakpoint. */
667static int
668breakpoint_enabled (struct breakpoint *b)
669{
0d381245 670 return (b->enable_state == bp_enabled);
468d015d
JJ
671}
672
c906108c
SS
673/* Set breakpoint count to NUM. */
674
95a42b64 675static void
fba45db2 676set_breakpoint_count (int num)
c906108c 677{
86b17b60 678 prev_breakpoint_count = breakpoint_count;
c906108c 679 breakpoint_count = num;
4fa62494 680 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
681}
682
86b17b60
PA
683/* Used by `start_rbreak_breakpoints' below, to record the current
684 breakpoint count before "rbreak" creates any breakpoint. */
685static int rbreak_start_breakpoint_count;
686
95a42b64
TT
687/* Called at the start an "rbreak" command to record the first
688 breakpoint made. */
86b17b60 689
95a42b64
TT
690void
691start_rbreak_breakpoints (void)
692{
86b17b60 693 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
694}
695
696/* Called at the end of an "rbreak" command to record the last
697 breakpoint made. */
86b17b60 698
95a42b64
TT
699void
700end_rbreak_breakpoints (void)
701{
86b17b60 702 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
703}
704
4a64f543 705/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
706
707void
fba45db2 708clear_breakpoint_hit_counts (void)
c906108c
SS
709{
710 struct breakpoint *b;
711
712 ALL_BREAKPOINTS (b)
713 b->hit_count = 0;
714}
715
9add0f1b
TT
716/* Allocate a new counted_command_line with reference count of 1.
717 The new structure owns COMMANDS. */
718
719static struct counted_command_line *
720alloc_counted_command_line (struct command_line *commands)
721{
722 struct counted_command_line *result
723 = xmalloc (sizeof (struct counted_command_line));
cc59ec59 724
9add0f1b
TT
725 result->refc = 1;
726 result->commands = commands;
727 return result;
728}
729
730/* Increment reference count. This does nothing if CMD is NULL. */
731
732static void
733incref_counted_command_line (struct counted_command_line *cmd)
734{
735 if (cmd)
736 ++cmd->refc;
737}
738
739/* Decrement reference count. If the reference count reaches 0,
740 destroy the counted_command_line. Sets *CMDP to NULL. This does
741 nothing if *CMDP is NULL. */
742
743static void
744decref_counted_command_line (struct counted_command_line **cmdp)
745{
746 if (*cmdp)
747 {
748 if (--(*cmdp)->refc == 0)
749 {
750 free_command_lines (&(*cmdp)->commands);
751 xfree (*cmdp);
752 }
753 *cmdp = NULL;
754 }
755}
756
757/* A cleanup function that calls decref_counted_command_line. */
758
759static void
760do_cleanup_counted_command_line (void *arg)
761{
762 decref_counted_command_line (arg);
763}
764
765/* Create a cleanup that calls decref_counted_command_line on the
766 argument. */
767
768static struct cleanup *
769make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
770{
771 return make_cleanup (do_cleanup_counted_command_line, cmdp);
772}
773
c906108c 774\f
48cb2d85
VP
775/* Return the breakpoint with the specified number, or NULL
776 if the number does not refer to an existing breakpoint. */
777
778struct breakpoint *
779get_breakpoint (int num)
780{
781 struct breakpoint *b;
782
783 ALL_BREAKPOINTS (b)
784 if (b->number == num)
785 return b;
786
787 return NULL;
788}
5c44784c 789
c906108c 790\f
adc36818 791
b775012e
LM
792/* Mark locations as "conditions have changed" in case the target supports
793 evaluating conditions on its side. */
794
795static void
796mark_breakpoint_modified (struct breakpoint *b)
797{
798 struct bp_location *loc;
799
800 /* This is only meaningful if the target is
801 evaluating conditions and if the user has
802 opted for condition evaluation on the target's
803 side. */
804 if (gdb_evaluates_breakpoint_condition_p ()
805 || !target_supports_evaluation_of_breakpoint_conditions ())
806 return;
807
808 if (!is_breakpoint (b))
809 return;
810
811 for (loc = b->loc; loc; loc = loc->next)
812 loc->condition_changed = condition_modified;
813}
814
815/* Mark location as "conditions have changed" in case the target supports
816 evaluating conditions on its side. */
817
818static void
819mark_breakpoint_location_modified (struct bp_location *loc)
820{
821 /* This is only meaningful if the target is
822 evaluating conditions and if the user has
823 opted for condition evaluation on the target's
824 side. */
825 if (gdb_evaluates_breakpoint_condition_p ()
826 || !target_supports_evaluation_of_breakpoint_conditions ())
827
828 return;
829
830 if (!is_breakpoint (loc->owner))
831 return;
832
833 loc->condition_changed = condition_modified;
834}
835
836/* Sets the condition-evaluation mode using the static global
837 condition_evaluation_mode. */
838
839static void
840set_condition_evaluation_mode (char *args, int from_tty,
841 struct cmd_list_element *c)
842{
b775012e
LM
843 const char *old_mode, *new_mode;
844
845 if ((condition_evaluation_mode_1 == condition_evaluation_target)
846 && !target_supports_evaluation_of_breakpoint_conditions ())
847 {
848 condition_evaluation_mode_1 = condition_evaluation_mode;
849 warning (_("Target does not support breakpoint condition evaluation.\n"
850 "Using host evaluation mode instead."));
851 return;
852 }
853
854 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
855 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
856
abf1152a
JK
857 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
858 settings was "auto". */
859 condition_evaluation_mode = condition_evaluation_mode_1;
860
b775012e
LM
861 /* Only update the mode if the user picked a different one. */
862 if (new_mode != old_mode)
863 {
864 struct bp_location *loc, **loc_tmp;
865 /* If the user switched to a different evaluation mode, we
866 need to synch the changes with the target as follows:
867
868 "host" -> "target": Send all (valid) conditions to the target.
869 "target" -> "host": Remove all the conditions from the target.
870 */
871
b775012e
LM
872 if (new_mode == condition_evaluation_target)
873 {
874 /* Mark everything modified and synch conditions with the
875 target. */
876 ALL_BP_LOCATIONS (loc, loc_tmp)
877 mark_breakpoint_location_modified (loc);
878 }
879 else
880 {
881 /* Manually mark non-duplicate locations to synch conditions
882 with the target. We do this to remove all the conditions the
883 target knows about. */
884 ALL_BP_LOCATIONS (loc, loc_tmp)
885 if (is_breakpoint (loc->owner) && loc->inserted)
886 loc->needs_update = 1;
887 }
888
889 /* Do the update. */
44702360 890 update_global_location_list (UGLL_MAY_INSERT);
b775012e
LM
891 }
892
893 return;
894}
895
896/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
897 what "auto" is translating to. */
898
899static void
900show_condition_evaluation_mode (struct ui_file *file, int from_tty,
901 struct cmd_list_element *c, const char *value)
902{
903 if (condition_evaluation_mode == condition_evaluation_auto)
904 fprintf_filtered (file,
905 _("Breakpoint condition evaluation "
906 "mode is %s (currently %s).\n"),
907 value,
908 breakpoint_condition_evaluation_mode ());
909 else
910 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
911 value);
912}
913
914/* A comparison function for bp_location AP and BP that is used by
915 bsearch. This comparison function only cares about addresses, unlike
916 the more general bp_location_compare function. */
917
918static int
919bp_location_compare_addrs (const void *ap, const void *bp)
920{
921 struct bp_location *a = *(void **) ap;
922 struct bp_location *b = *(void **) bp;
923
924 if (a->address == b->address)
925 return 0;
926 else
927 return ((a->address > b->address) - (a->address < b->address));
928}
929
930/* Helper function to skip all bp_locations with addresses
931 less than ADDRESS. It returns the first bp_location that
932 is greater than or equal to ADDRESS. If none is found, just
933 return NULL. */
934
935static struct bp_location **
936get_first_locp_gte_addr (CORE_ADDR address)
937{
938 struct bp_location dummy_loc;
939 struct bp_location *dummy_locp = &dummy_loc;
940 struct bp_location **locp_found = NULL;
941
942 /* Initialize the dummy location's address field. */
943 memset (&dummy_loc, 0, sizeof (struct bp_location));
944 dummy_loc.address = address;
945
946 /* Find a close match to the first location at ADDRESS. */
947 locp_found = bsearch (&dummy_locp, bp_location, bp_location_count,
948 sizeof (struct bp_location **),
949 bp_location_compare_addrs);
950
951 /* Nothing was found, nothing left to do. */
952 if (locp_found == NULL)
953 return NULL;
954
955 /* We may have found a location that is at ADDRESS but is not the first in the
956 location's list. Go backwards (if possible) and locate the first one. */
957 while ((locp_found - 1) >= bp_location
958 && (*(locp_found - 1))->address == address)
959 locp_found--;
960
961 return locp_found;
962}
963
adc36818
PM
964void
965set_breakpoint_condition (struct breakpoint *b, char *exp,
966 int from_tty)
967{
3a5c3e22
PA
968 xfree (b->cond_string);
969 b->cond_string = NULL;
adc36818 970
3a5c3e22 971 if (is_watchpoint (b))
adc36818 972 {
3a5c3e22
PA
973 struct watchpoint *w = (struct watchpoint *) b;
974
975 xfree (w->cond_exp);
976 w->cond_exp = NULL;
977 }
978 else
979 {
980 struct bp_location *loc;
981
982 for (loc = b->loc; loc; loc = loc->next)
983 {
984 xfree (loc->cond);
985 loc->cond = NULL;
b775012e
LM
986
987 /* No need to free the condition agent expression
988 bytecode (if we have one). We will handle this
989 when we go through update_global_location_list. */
3a5c3e22 990 }
adc36818 991 }
adc36818
PM
992
993 if (*exp == 0)
994 {
995 if (from_tty)
996 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
997 }
998 else
999 {
bbc13ae3 1000 const char *arg = exp;
cc59ec59 1001
adc36818
PM
1002 /* I don't know if it matters whether this is the string the user
1003 typed in or the decompiled expression. */
1004 b->cond_string = xstrdup (arg);
1005 b->condition_not_parsed = 0;
1006
1007 if (is_watchpoint (b))
1008 {
3a5c3e22
PA
1009 struct watchpoint *w = (struct watchpoint *) b;
1010
adc36818
PM
1011 innermost_block = NULL;
1012 arg = exp;
1bb9788d 1013 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
adc36818
PM
1014 if (*arg)
1015 error (_("Junk at end of expression"));
3a5c3e22 1016 w->cond_exp_valid_block = innermost_block;
adc36818
PM
1017 }
1018 else
1019 {
3a5c3e22
PA
1020 struct bp_location *loc;
1021
adc36818
PM
1022 for (loc = b->loc; loc; loc = loc->next)
1023 {
1024 arg = exp;
1025 loc->cond =
1bb9788d
TT
1026 parse_exp_1 (&arg, loc->address,
1027 block_for_pc (loc->address), 0);
adc36818
PM
1028 if (*arg)
1029 error (_("Junk at end of expression"));
1030 }
1031 }
1032 }
b775012e
LM
1033 mark_breakpoint_modified (b);
1034
8d3788bd 1035 observer_notify_breakpoint_modified (b);
adc36818
PM
1036}
1037
d55637df
TT
1038/* Completion for the "condition" command. */
1039
1040static VEC (char_ptr) *
6f937416
PA
1041condition_completer (struct cmd_list_element *cmd,
1042 const char *text, const char *word)
d55637df 1043{
6f937416 1044 const char *space;
d55637df 1045
6f937416
PA
1046 text = skip_spaces_const (text);
1047 space = skip_to_space_const (text);
d55637df
TT
1048 if (*space == '\0')
1049 {
1050 int len;
1051 struct breakpoint *b;
1052 VEC (char_ptr) *result = NULL;
1053
1054 if (text[0] == '$')
1055 {
1056 /* We don't support completion of history indices. */
1057 if (isdigit (text[1]))
1058 return NULL;
1059 return complete_internalvar (&text[1]);
1060 }
1061
1062 /* We're completing the breakpoint number. */
1063 len = strlen (text);
1064
1065 ALL_BREAKPOINTS (b)
58ce7251
SDJ
1066 {
1067 char number[50];
1068
1069 xsnprintf (number, sizeof (number), "%d", b->number);
1070
1071 if (strncmp (number, text, len) == 0)
1072 VEC_safe_push (char_ptr, result, xstrdup (number));
1073 }
d55637df
TT
1074
1075 return result;
1076 }
1077
1078 /* We're completing the expression part. */
6f937416 1079 text = skip_spaces_const (space);
d55637df
TT
1080 return expression_completer (cmd, text, word);
1081}
1082
c906108c
SS
1083/* condition N EXP -- set break condition of breakpoint N to EXP. */
1084
1085static void
fba45db2 1086condition_command (char *arg, int from_tty)
c906108c 1087{
52f0bd74 1088 struct breakpoint *b;
c906108c 1089 char *p;
52f0bd74 1090 int bnum;
c906108c
SS
1091
1092 if (arg == 0)
e2e0b3e5 1093 error_no_arg (_("breakpoint number"));
c906108c
SS
1094
1095 p = arg;
1096 bnum = get_number (&p);
5c44784c 1097 if (bnum == 0)
8a3fe4f8 1098 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
1099
1100 ALL_BREAKPOINTS (b)
1101 if (b->number == bnum)
2f069f6f 1102 {
6dddc817
DE
1103 /* Check if this breakpoint has a "stop" method implemented in an
1104 extension language. This method and conditions entered into GDB
1105 from the CLI are mutually exclusive. */
1106 const struct extension_language_defn *extlang
1107 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
1108
1109 if (extlang != NULL)
1110 {
1111 error (_("Only one stop condition allowed. There is currently"
1112 " a %s stop condition defined for this breakpoint."),
1113 ext_lang_capitalized_name (extlang));
1114 }
2566ad2d 1115 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
1116
1117 if (is_breakpoint (b))
44702360 1118 update_global_location_list (UGLL_MAY_INSERT);
b775012e 1119
2f069f6f
JB
1120 return;
1121 }
c906108c 1122
8a3fe4f8 1123 error (_("No breakpoint number %d."), bnum);
c906108c
SS
1124}
1125
a7bdde9e
VP
1126/* Check that COMMAND do not contain commands that are suitable
1127 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
1128 Throw if any such commands is found. */
1129
a7bdde9e
VP
1130static void
1131check_no_tracepoint_commands (struct command_line *commands)
1132{
1133 struct command_line *c;
cc59ec59 1134
a7bdde9e
VP
1135 for (c = commands; c; c = c->next)
1136 {
1137 int i;
1138
1139 if (c->control_type == while_stepping_control)
3e43a32a
MS
1140 error (_("The 'while-stepping' command can "
1141 "only be used for tracepoints"));
a7bdde9e
VP
1142
1143 for (i = 0; i < c->body_count; ++i)
1144 check_no_tracepoint_commands ((c->body_list)[i]);
1145
1146 /* Not that command parsing removes leading whitespace and comment
4a64f543 1147 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1148 command directly. */
1149 if (strstr (c->line, "collect ") == c->line)
1150 error (_("The 'collect' command can only be used for tracepoints"));
1151
51661e93
VP
1152 if (strstr (c->line, "teval ") == c->line)
1153 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1154 }
1155}
1156
d77f58be
SS
1157/* Encapsulate tests for different types of tracepoints. */
1158
d9b3f62e
PA
1159static int
1160is_tracepoint_type (enum bptype type)
1161{
1162 return (type == bp_tracepoint
1163 || type == bp_fast_tracepoint
1164 || type == bp_static_tracepoint);
1165}
1166
a7bdde9e 1167int
d77f58be 1168is_tracepoint (const struct breakpoint *b)
a7bdde9e 1169{
d9b3f62e 1170 return is_tracepoint_type (b->type);
a7bdde9e 1171}
d9b3f62e 1172
e5dd4106 1173/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1174 breakpoint. This function will throw an exception if a problem is
1175 found. */
48cb2d85 1176
95a42b64
TT
1177static void
1178validate_commands_for_breakpoint (struct breakpoint *b,
1179 struct command_line *commands)
48cb2d85 1180{
d77f58be 1181 if (is_tracepoint (b))
a7bdde9e 1182 {
c9a6ce02 1183 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1184 struct command_line *c;
1185 struct command_line *while_stepping = 0;
c9a6ce02
PA
1186
1187 /* Reset the while-stepping step count. The previous commands
1188 might have included a while-stepping action, while the new
1189 ones might not. */
1190 t->step_count = 0;
1191
1192 /* We need to verify that each top-level element of commands is
1193 valid for tracepoints, that there's at most one
1194 while-stepping element, and that the while-stepping's body
1195 has valid tracing commands excluding nested while-stepping.
1196 We also need to validate the tracepoint action line in the
1197 context of the tracepoint --- validate_actionline actually
1198 has side effects, like setting the tracepoint's
1199 while-stepping STEP_COUNT, in addition to checking if the
1200 collect/teval actions parse and make sense in the
1201 tracepoint's context. */
a7bdde9e
VP
1202 for (c = commands; c; c = c->next)
1203 {
a7bdde9e
VP
1204 if (c->control_type == while_stepping_control)
1205 {
1206 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1207 error (_("The 'while-stepping' command "
1208 "cannot be used for fast tracepoint"));
0fb4aa4b 1209 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1210 error (_("The 'while-stepping' command "
1211 "cannot be used for static tracepoint"));
a7bdde9e
VP
1212
1213 if (while_stepping)
3e43a32a
MS
1214 error (_("The 'while-stepping' command "
1215 "can be used only once"));
a7bdde9e
VP
1216 else
1217 while_stepping = c;
1218 }
c9a6ce02
PA
1219
1220 validate_actionline (c->line, b);
a7bdde9e
VP
1221 }
1222 if (while_stepping)
1223 {
1224 struct command_line *c2;
1225
1226 gdb_assert (while_stepping->body_count == 1);
1227 c2 = while_stepping->body_list[0];
1228 for (; c2; c2 = c2->next)
1229 {
a7bdde9e
VP
1230 if (c2->control_type == while_stepping_control)
1231 error (_("The 'while-stepping' command cannot be nested"));
1232 }
1233 }
1234 }
1235 else
1236 {
1237 check_no_tracepoint_commands (commands);
1238 }
95a42b64
TT
1239}
1240
0fb4aa4b
PA
1241/* Return a vector of all the static tracepoints set at ADDR. The
1242 caller is responsible for releasing the vector. */
1243
1244VEC(breakpoint_p) *
1245static_tracepoints_here (CORE_ADDR addr)
1246{
1247 struct breakpoint *b;
1248 VEC(breakpoint_p) *found = 0;
1249 struct bp_location *loc;
1250
1251 ALL_BREAKPOINTS (b)
1252 if (b->type == bp_static_tracepoint)
1253 {
1254 for (loc = b->loc; loc; loc = loc->next)
1255 if (loc->address == addr)
1256 VEC_safe_push(breakpoint_p, found, b);
1257 }
1258
1259 return found;
1260}
1261
95a42b64 1262/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1263 validate that only allowed commands are included. */
95a42b64
TT
1264
1265void
4a64f543
MS
1266breakpoint_set_commands (struct breakpoint *b,
1267 struct command_line *commands)
95a42b64
TT
1268{
1269 validate_commands_for_breakpoint (b, commands);
a7bdde9e 1270
9add0f1b
TT
1271 decref_counted_command_line (&b->commands);
1272 b->commands = alloc_counted_command_line (commands);
8d3788bd 1273 observer_notify_breakpoint_modified (b);
48cb2d85
VP
1274}
1275
45a43567
TT
1276/* Set the internal `silent' flag on the breakpoint. Note that this
1277 is not the same as the "silent" that may appear in the breakpoint's
1278 commands. */
1279
1280void
1281breakpoint_set_silent (struct breakpoint *b, int silent)
1282{
1283 int old_silent = b->silent;
1284
1285 b->silent = silent;
1286 if (old_silent != silent)
8d3788bd 1287 observer_notify_breakpoint_modified (b);
45a43567
TT
1288}
1289
1290/* Set the thread for this breakpoint. If THREAD is -1, make the
1291 breakpoint work for any thread. */
1292
1293void
1294breakpoint_set_thread (struct breakpoint *b, int thread)
1295{
1296 int old_thread = b->thread;
1297
1298 b->thread = thread;
1299 if (old_thread != thread)
8d3788bd 1300 observer_notify_breakpoint_modified (b);
45a43567
TT
1301}
1302
1303/* Set the task for this breakpoint. If TASK is 0, make the
1304 breakpoint work for any task. */
1305
1306void
1307breakpoint_set_task (struct breakpoint *b, int task)
1308{
1309 int old_task = b->task;
1310
1311 b->task = task;
1312 if (old_task != task)
8d3788bd 1313 observer_notify_breakpoint_modified (b);
45a43567
TT
1314}
1315
95a42b64
TT
1316void
1317check_tracepoint_command (char *line, void *closure)
a7bdde9e
VP
1318{
1319 struct breakpoint *b = closure;
cc59ec59 1320
6f937416 1321 validate_actionline (line, b);
a7bdde9e
VP
1322}
1323
95a42b64
TT
1324/* A structure used to pass information through
1325 map_breakpoint_numbers. */
1326
1327struct commands_info
1328{
1329 /* True if the command was typed at a tty. */
1330 int from_tty;
86b17b60
PA
1331
1332 /* The breakpoint range spec. */
1333 char *arg;
1334
95a42b64
TT
1335 /* Non-NULL if the body of the commands are being read from this
1336 already-parsed command. */
1337 struct command_line *control;
86b17b60 1338
95a42b64
TT
1339 /* The command lines read from the user, or NULL if they have not
1340 yet been read. */
1341 struct counted_command_line *cmd;
1342};
1343
1344/* A callback for map_breakpoint_numbers that sets the commands for
1345 commands_command. */
1346
c906108c 1347static void
95a42b64 1348do_map_commands_command (struct breakpoint *b, void *data)
c906108c 1349{
95a42b64 1350 struct commands_info *info = data;
c906108c 1351
95a42b64
TT
1352 if (info->cmd == NULL)
1353 {
1354 struct command_line *l;
5c44784c 1355
95a42b64
TT
1356 if (info->control != NULL)
1357 l = copy_command_lines (info->control->body_list[0]);
1358 else
86b17b60
PA
1359 {
1360 struct cleanup *old_chain;
1361 char *str;
c5aa993b 1362
3e43a32a
MS
1363 str = xstrprintf (_("Type commands for breakpoint(s) "
1364 "%s, one per line."),
86b17b60
PA
1365 info->arg);
1366
1367 old_chain = make_cleanup (xfree, str);
1368
1369 l = read_command_lines (str,
1370 info->from_tty, 1,
d77f58be 1371 (is_tracepoint (b)
86b17b60
PA
1372 ? check_tracepoint_command : 0),
1373 b);
1374
1375 do_cleanups (old_chain);
1376 }
a7bdde9e 1377
95a42b64
TT
1378 info->cmd = alloc_counted_command_line (l);
1379 }
1380
1381 /* If a breakpoint was on the list more than once, we don't need to
1382 do anything. */
1383 if (b->commands != info->cmd)
1384 {
1385 validate_commands_for_breakpoint (b, info->cmd->commands);
1386 incref_counted_command_line (info->cmd);
1387 decref_counted_command_line (&b->commands);
1388 b->commands = info->cmd;
8d3788bd 1389 observer_notify_breakpoint_modified (b);
c5aa993b 1390 }
95a42b64
TT
1391}
1392
1393static void
4a64f543
MS
1394commands_command_1 (char *arg, int from_tty,
1395 struct command_line *control)
95a42b64
TT
1396{
1397 struct cleanup *cleanups;
1398 struct commands_info info;
1399
1400 info.from_tty = from_tty;
1401 info.control = control;
1402 info.cmd = NULL;
1403 /* If we read command lines from the user, then `info' will hold an
1404 extra reference to the commands that we must clean up. */
1405 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
1406
1407 if (arg == NULL || !*arg)
1408 {
86b17b60 1409 if (breakpoint_count - prev_breakpoint_count > 1)
4a64f543
MS
1410 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1,
1411 breakpoint_count);
95a42b64
TT
1412 else if (breakpoint_count > 0)
1413 arg = xstrprintf ("%d", breakpoint_count);
86b17b60
PA
1414 else
1415 {
1416 /* So that we don't try to free the incoming non-NULL
1417 argument in the cleanup below. Mapping breakpoint
1418 numbers will fail in this case. */
1419 arg = NULL;
1420 }
95a42b64 1421 }
9766ced4
SS
1422 else
1423 /* The command loop has some static state, so we need to preserve
1424 our argument. */
1425 arg = xstrdup (arg);
86b17b60
PA
1426
1427 if (arg != NULL)
1428 make_cleanup (xfree, arg);
1429
1430 info.arg = arg;
95a42b64
TT
1431
1432 map_breakpoint_numbers (arg, do_map_commands_command, &info);
1433
1434 if (info.cmd == NULL)
1435 error (_("No breakpoints specified."));
1436
1437 do_cleanups (cleanups);
1438}
1439
1440static void
1441commands_command (char *arg, int from_tty)
1442{
1443 commands_command_1 (arg, from_tty, NULL);
c906108c 1444}
40c03ae8
EZ
1445
1446/* Like commands_command, but instead of reading the commands from
1447 input stream, takes them from an already parsed command structure.
1448
1449 This is used by cli-script.c to DTRT with breakpoint commands
1450 that are part of if and while bodies. */
1451enum command_control_type
1452commands_from_control_command (char *arg, struct command_line *cmd)
1453{
95a42b64
TT
1454 commands_command_1 (arg, 0, cmd);
1455 return simple_control;
40c03ae8 1456}
876fa593
JK
1457
1458/* Return non-zero if BL->TARGET_INFO contains valid information. */
1459
1460static int
1461bp_location_has_shadow (struct bp_location *bl)
1462{
1463 if (bl->loc_type != bp_loc_software_breakpoint)
1464 return 0;
1465 if (!bl->inserted)
1466 return 0;
1467 if (bl->target_info.shadow_len == 0)
e5dd4106 1468 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1469 return 0;
1470 return 1;
1471}
1472
9d497a19
PA
1473/* Update BUF, which is LEN bytes read from the target address
1474 MEMADDR, by replacing a memory breakpoint with its shadowed
1475 contents.
1476
1477 If READBUF is not NULL, this buffer must not overlap with the of
1478 the breakpoint location's shadow_contents buffer. Otherwise, a
1479 failed assertion internal error will be raised. */
1480
1481static void
1482one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1483 const gdb_byte *writebuf_org,
1484 ULONGEST memaddr, LONGEST len,
1485 struct bp_target_info *target_info,
1486 struct gdbarch *gdbarch)
1487{
1488 /* Now do full processing of the found relevant range of elements. */
1489 CORE_ADDR bp_addr = 0;
1490 int bp_size = 0;
1491 int bptoffset = 0;
1492
1493 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1494 current_program_space->aspace, 0))
1495 {
1496 /* The breakpoint is inserted in a different address space. */
1497 return;
1498 }
1499
1500 /* Addresses and length of the part of the breakpoint that
1501 we need to copy. */
1502 bp_addr = target_info->placed_address;
1503 bp_size = target_info->shadow_len;
1504
1505 if (bp_addr + bp_size <= memaddr)
1506 {
1507 /* The breakpoint is entirely before the chunk of memory we are
1508 reading. */
1509 return;
1510 }
1511
1512 if (bp_addr >= memaddr + len)
1513 {
1514 /* The breakpoint is entirely after the chunk of memory we are
1515 reading. */
1516 return;
1517 }
1518
1519 /* Offset within shadow_contents. */
1520 if (bp_addr < memaddr)
1521 {
1522 /* Only copy the second part of the breakpoint. */
1523 bp_size -= memaddr - bp_addr;
1524 bptoffset = memaddr - bp_addr;
1525 bp_addr = memaddr;
1526 }
1527
1528 if (bp_addr + bp_size > memaddr + len)
1529 {
1530 /* Only copy the first part of the breakpoint. */
1531 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1532 }
1533
1534 if (readbuf != NULL)
1535 {
1536 /* Verify that the readbuf buffer does not overlap with the
1537 shadow_contents buffer. */
1538 gdb_assert (target_info->shadow_contents >= readbuf + len
1539 || readbuf >= (target_info->shadow_contents
1540 + target_info->shadow_len));
1541
1542 /* Update the read buffer with this inserted breakpoint's
1543 shadow. */
1544 memcpy (readbuf + bp_addr - memaddr,
1545 target_info->shadow_contents + bptoffset, bp_size);
1546 }
1547 else
1548 {
1549 const unsigned char *bp;
1550 CORE_ADDR placed_address = target_info->placed_address;
1551 int placed_size = target_info->placed_size;
1552
1553 /* Update the shadow with what we want to write to memory. */
1554 memcpy (target_info->shadow_contents + bptoffset,
1555 writebuf_org + bp_addr - memaddr, bp_size);
1556
1557 /* Determine appropriate breakpoint contents and size for this
1558 address. */
1559 bp = gdbarch_breakpoint_from_pc (gdbarch, &placed_address, &placed_size);
1560
1561 /* Update the final write buffer with this inserted
1562 breakpoint's INSN. */
1563 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1564 }
1565}
1566
8defab1a 1567/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1568 by replacing any memory breakpoints with their shadowed contents.
1569
35c63cd8
JB
1570 If READBUF is not NULL, this buffer must not overlap with any of
1571 the breakpoint location's shadow_contents buffers. Otherwise,
1572 a failed assertion internal error will be raised.
1573
876fa593 1574 The range of shadowed area by each bp_location is:
35df4500
TJB
1575 bl->address - bp_location_placed_address_before_address_max
1576 up to bl->address + bp_location_shadow_len_after_address_max
876fa593
JK
1577 The range we were requested to resolve shadows for is:
1578 memaddr ... memaddr + len
1579 Thus the safe cutoff boundaries for performance optimization are
35df4500
TJB
1580 memaddr + len <= (bl->address
1581 - bp_location_placed_address_before_address_max)
876fa593 1582 and:
35df4500 1583 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1584
8defab1a 1585void
f0ba3972
PA
1586breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1587 const gdb_byte *writebuf_org,
1588 ULONGEST memaddr, LONGEST len)
c906108c 1589{
4a64f543
MS
1590 /* Left boundary, right boundary and median element of our binary
1591 search. */
876fa593 1592 unsigned bc_l, bc_r, bc;
9d497a19 1593 size_t i;
876fa593 1594
4a64f543
MS
1595 /* Find BC_L which is a leftmost element which may affect BUF
1596 content. It is safe to report lower value but a failure to
1597 report higher one. */
876fa593
JK
1598
1599 bc_l = 0;
1600 bc_r = bp_location_count;
1601 while (bc_l + 1 < bc_r)
1602 {
35df4500 1603 struct bp_location *bl;
876fa593
JK
1604
1605 bc = (bc_l + bc_r) / 2;
35df4500 1606 bl = bp_location[bc];
876fa593 1607
4a64f543
MS
1608 /* Check first BL->ADDRESS will not overflow due to the added
1609 constant. Then advance the left boundary only if we are sure
1610 the BC element can in no way affect the BUF content (MEMADDR
1611 to MEMADDR + LEN range).
876fa593 1612
4a64f543
MS
1613 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1614 offset so that we cannot miss a breakpoint with its shadow
1615 range tail still reaching MEMADDR. */
c5aa993b 1616
35df4500
TJB
1617 if ((bl->address + bp_location_shadow_len_after_address_max
1618 >= bl->address)
1619 && (bl->address + bp_location_shadow_len_after_address_max
1620 <= memaddr))
876fa593
JK
1621 bc_l = bc;
1622 else
1623 bc_r = bc;
1624 }
1625
128070bb
PA
1626 /* Due to the binary search above, we need to make sure we pick the
1627 first location that's at BC_L's address. E.g., if there are
1628 multiple locations at the same address, BC_L may end up pointing
1629 at a duplicate location, and miss the "master"/"inserted"
1630 location. Say, given locations L1, L2 and L3 at addresses A and
1631 B:
1632
1633 L1@A, L2@A, L3@B, ...
1634
1635 BC_L could end up pointing at location L2, while the "master"
1636 location could be L1. Since the `loc->inserted' flag is only set
1637 on "master" locations, we'd forget to restore the shadow of L1
1638 and L2. */
1639 while (bc_l > 0
1640 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1641 bc_l--;
1642
876fa593
JK
1643 /* Now do full processing of the found relevant range of elements. */
1644
1645 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1646 {
35df4500 1647 struct bp_location *bl = bp_location[bc];
876fa593
JK
1648 CORE_ADDR bp_addr = 0;
1649 int bp_size = 0;
1650 int bptoffset = 0;
1651
35df4500
TJB
1652 /* bp_location array has BL->OWNER always non-NULL. */
1653 if (bl->owner->type == bp_none)
8a3fe4f8 1654 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1655 bl->owner->number);
ffce0d52 1656
e5dd4106 1657 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1658 content. */
1659
35df4500
TJB
1660 if (bl->address >= bp_location_placed_address_before_address_max
1661 && memaddr + len <= (bl->address
1662 - bp_location_placed_address_before_address_max))
876fa593
JK
1663 break;
1664
35df4500 1665 if (!bp_location_has_shadow (bl))
c5aa993b 1666 continue;
6c95b8df 1667
9d497a19
PA
1668 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1669 memaddr, len, &bl->target_info, bl->gdbarch);
1670 }
c5aa993b 1671
9d497a19
PA
1672 /* Now process single-step breakpoints. These are not found in the
1673 bp_location array. */
1674 for (i = 0; i < 2; i++)
1675 {
1676 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
c5aa993b 1677
9d497a19
PA
1678 if (bp_tgt != NULL)
1679 {
1680 struct gdbarch *gdbarch = single_step_gdbarch[i];
c5aa993b 1681
9d497a19
PA
1682 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1683 memaddr, len, bp_tgt, gdbarch);
1684 }
1685 }
c906108c 1686}
9d497a19 1687
c906108c 1688\f
c5aa993b 1689
b775012e
LM
1690/* Return true if BPT is either a software breakpoint or a hardware
1691 breakpoint. */
1692
1693int
1694is_breakpoint (const struct breakpoint *bpt)
1695{
1696 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1697 || bpt->type == bp_hardware_breakpoint
1698 || bpt->type == bp_dprintf);
b775012e
LM
1699}
1700
60e1c644
PA
1701/* Return true if BPT is of any hardware watchpoint kind. */
1702
a5606eee 1703static int
d77f58be 1704is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1705{
1706 return (bpt->type == bp_hardware_watchpoint
1707 || bpt->type == bp_read_watchpoint
1708 || bpt->type == bp_access_watchpoint);
1709}
7270d8f2 1710
60e1c644
PA
1711/* Return true if BPT is of any watchpoint kind, hardware or
1712 software. */
1713
3a5c3e22 1714int
d77f58be 1715is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1716{
1717 return (is_hardware_watchpoint (bpt)
1718 || bpt->type == bp_watchpoint);
1719}
1720
3a5c3e22
PA
1721/* Returns true if the current thread and its running state are safe
1722 to evaluate or update watchpoint B. Watchpoints on local
1723 expressions need to be evaluated in the context of the thread that
1724 was current when the watchpoint was created, and, that thread needs
1725 to be stopped to be able to select the correct frame context.
1726 Watchpoints on global expressions can be evaluated on any thread,
1727 and in any state. It is presently left to the target allowing
1728 memory accesses when threads are running. */
f6bc2008
PA
1729
1730static int
3a5c3e22 1731watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1732{
d0d8b0c6
JK
1733 return (b->base.pspace == current_program_space
1734 && (ptid_equal (b->watchpoint_thread, null_ptid)
1735 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1736 && !is_executing (inferior_ptid))));
f6bc2008
PA
1737}
1738
d0fb5eae
JK
1739/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1740 associated bp_watchpoint_scope breakpoint. */
1741
1742static void
3a5c3e22 1743watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1744{
3a5c3e22 1745 struct breakpoint *b = &w->base;
d0fb5eae
JK
1746
1747 if (b->related_breakpoint != b)
1748 {
1749 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1750 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1751 b->related_breakpoint->disposition = disp_del_at_next_stop;
1752 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1753 b->related_breakpoint = b;
1754 }
1755 b->disposition = disp_del_at_next_stop;
1756}
1757
bb9d5f81
PP
1758/* Extract a bitfield value from value VAL using the bit parameters contained in
1759 watchpoint W. */
1760
1761static struct value *
1762extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1763{
1764 struct value *bit_val;
1765
1766 if (val == NULL)
1767 return NULL;
1768
1769 bit_val = allocate_value (value_type (val));
1770
1771 unpack_value_bitfield (bit_val,
1772 w->val_bitpos,
1773 w->val_bitsize,
1774 value_contents_for_printing (val),
1775 value_offset (val),
1776 val);
1777
1778 return bit_val;
1779}
1780
567e1b4e
JB
1781/* Assuming that B is a watchpoint:
1782 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1783 - Evaluate expression and store the result in B->val
567e1b4e
JB
1784 - Evaluate the condition if there is one, and store the result
1785 in b->loc->cond.
a5606eee
VP
1786 - Update the list of values that must be watched in B->loc.
1787
4a64f543
MS
1788 If the watchpoint disposition is disp_del_at_next_stop, then do
1789 nothing. If this is local watchpoint that is out of scope, delete
1790 it.
1791
1792 Even with `set breakpoint always-inserted on' the watchpoints are
1793 removed + inserted on each stop here. Normal breakpoints must
1794 never be removed because they might be missed by a running thread
1795 when debugging in non-stop mode. On the other hand, hardware
1796 watchpoints (is_hardware_watchpoint; processed here) are specific
1797 to each LWP since they are stored in each LWP's hardware debug
1798 registers. Therefore, such LWP must be stopped first in order to
1799 be able to modify its hardware watchpoints.
1800
1801 Hardware watchpoints must be reset exactly once after being
1802 presented to the user. It cannot be done sooner, because it would
1803 reset the data used to present the watchpoint hit to the user. And
1804 it must not be done later because it could display the same single
1805 watchpoint hit during multiple GDB stops. Note that the latter is
1806 relevant only to the hardware watchpoint types bp_read_watchpoint
1807 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1808 not user-visible - its hit is suppressed if the memory content has
1809 not changed.
1810
1811 The following constraints influence the location where we can reset
1812 hardware watchpoints:
1813
1814 * target_stopped_by_watchpoint and target_stopped_data_address are
1815 called several times when GDB stops.
1816
1817 [linux]
1818 * Multiple hardware watchpoints can be hit at the same time,
1819 causing GDB to stop. GDB only presents one hardware watchpoint
1820 hit at a time as the reason for stopping, and all the other hits
1821 are presented later, one after the other, each time the user
1822 requests the execution to be resumed. Execution is not resumed
1823 for the threads still having pending hit event stored in
1824 LWP_INFO->STATUS. While the watchpoint is already removed from
1825 the inferior on the first stop the thread hit event is kept being
1826 reported from its cached value by linux_nat_stopped_data_address
1827 until the real thread resume happens after the watchpoint gets
1828 presented and thus its LWP_INFO->STATUS gets reset.
1829
1830 Therefore the hardware watchpoint hit can get safely reset on the
1831 watchpoint removal from inferior. */
a79d3c27 1832
b40ce68a 1833static void
3a5c3e22 1834update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1835{
a5606eee 1836 int within_current_scope;
a5606eee 1837 struct frame_id saved_frame_id;
66076460 1838 int frame_saved;
a5606eee 1839
f6bc2008
PA
1840 /* If this is a local watchpoint, we only want to check if the
1841 watchpoint frame is in scope if the current thread is the thread
1842 that was used to create the watchpoint. */
1843 if (!watchpoint_in_thread_scope (b))
1844 return;
1845
3a5c3e22 1846 if (b->base.disposition == disp_del_at_next_stop)
a5606eee
VP
1847 return;
1848
66076460 1849 frame_saved = 0;
a5606eee
VP
1850
1851 /* Determine if the watchpoint is within scope. */
1852 if (b->exp_valid_block == NULL)
1853 within_current_scope = 1;
1854 else
1855 {
b5db5dfc
UW
1856 struct frame_info *fi = get_current_frame ();
1857 struct gdbarch *frame_arch = get_frame_arch (fi);
1858 CORE_ADDR frame_pc = get_frame_pc (fi);
1859
1860 /* If we're in a function epilogue, unwinding may not work
1861 properly, so do not attempt to recreate locations at this
1862 point. See similar comments in watchpoint_check. */
1863 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
1864 return;
66076460
DJ
1865
1866 /* Save the current frame's ID so we can restore it after
1867 evaluating the watchpoint expression on its own frame. */
1868 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1869 took a frame parameter, so that we didn't have to change the
1870 selected frame. */
1871 frame_saved = 1;
1872 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1873
a5606eee
VP
1874 fi = frame_find_by_id (b->watchpoint_frame);
1875 within_current_scope = (fi != NULL);
1876 if (within_current_scope)
1877 select_frame (fi);
1878 }
1879
b5db5dfc
UW
1880 /* We don't free locations. They are stored in the bp_location array
1881 and update_global_location_list will eventually delete them and
1882 remove breakpoints if needed. */
3a5c3e22 1883 b->base.loc = NULL;
b5db5dfc 1884
a5606eee
VP
1885 if (within_current_scope && reparse)
1886 {
bbc13ae3 1887 const char *s;
d63d0675 1888
a5606eee
VP
1889 if (b->exp)
1890 {
1891 xfree (b->exp);
1892 b->exp = NULL;
1893 }
d63d0675 1894 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1895 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1896 /* If the meaning of expression itself changed, the old value is
1897 no longer relevant. We don't want to report a watchpoint hit
1898 to the user when the old value and the new value may actually
1899 be completely different objects. */
1900 value_free (b->val);
fa4727a6
DJ
1901 b->val = NULL;
1902 b->val_valid = 0;
60e1c644
PA
1903
1904 /* Note that unlike with breakpoints, the watchpoint's condition
1905 expression is stored in the breakpoint object, not in the
1906 locations (re)created below. */
3a5c3e22 1907 if (b->base.cond_string != NULL)
60e1c644
PA
1908 {
1909 if (b->cond_exp != NULL)
1910 {
1911 xfree (b->cond_exp);
1912 b->cond_exp = NULL;
1913 }
1914
3a5c3e22 1915 s = b->base.cond_string;
1bb9788d 1916 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1917 }
a5606eee 1918 }
a5606eee
VP
1919
1920 /* If we failed to parse the expression, for example because
1921 it refers to a global variable in a not-yet-loaded shared library,
1922 don't try to insert watchpoint. We don't automatically delete
1923 such watchpoint, though, since failure to parse expression
1924 is different from out-of-scope watchpoint. */
e8369a73 1925 if (!target_has_execution)
2d134ed3
PA
1926 {
1927 /* Without execution, memory can't change. No use to try and
1928 set watchpoint locations. The watchpoint will be reset when
1929 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1930 if (!can_use_hw_watchpoints)
1931 {
1932 if (b->base.ops->works_in_software_mode (&b->base))
1933 b->base.type = bp_watchpoint;
1934 else
638aa5a1
AB
1935 error (_("Can't set read/access watchpoint when "
1936 "hardware watchpoints are disabled."));
e8369a73 1937 }
2d134ed3
PA
1938 }
1939 else if (within_current_scope && b->exp)
a5606eee 1940 {
0cf6dd15 1941 int pc = 0;
fa4727a6 1942 struct value *val_chain, *v, *result, *next;
2d134ed3 1943 struct program_space *frame_pspace;
a5606eee 1944
3a1115a0 1945 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain, 0);
a5606eee 1946
a5606eee
VP
1947 /* Avoid setting b->val if it's already set. The meaning of
1948 b->val is 'the last value' user saw, and we should update
1949 it only if we reported that last value to user. As it
9c06b0b4
TJB
1950 happens, the code that reports it updates b->val directly.
1951 We don't keep track of the memory value for masked
1952 watchpoints. */
3a5c3e22 1953 if (!b->val_valid && !is_masked_watchpoint (&b->base))
fa4727a6 1954 {
bb9d5f81
PP
1955 if (b->val_bitsize != 0)
1956 {
1957 v = extract_bitfield_from_watchpoint_value (b, v);
1958 if (v != NULL)
1959 release_value (v);
1960 }
fa4727a6
DJ
1961 b->val = v;
1962 b->val_valid = 1;
1963 }
a5606eee 1964
2d134ed3
PA
1965 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1966
a5606eee 1967 /* Look at each value on the value chain. */
9fa40276 1968 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1969 {
1970 /* If it's a memory location, and GDB actually needed
1971 its contents to evaluate the expression, then we
fa4727a6
DJ
1972 must watch it. If the first value returned is
1973 still lazy, that means an error occurred reading it;
1974 watch it anyway in case it becomes readable. */
a5606eee 1975 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1976 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1977 {
1978 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1979
a5606eee
VP
1980 /* We only watch structs and arrays if user asked
1981 for it explicitly, never if they just happen to
1982 appear in the middle of some value chain. */
fa4727a6 1983 if (v == result
a5606eee
VP
1984 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1985 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1986 {
1987 CORE_ADDR addr;
744a8059 1988 int type;
a5606eee 1989 struct bp_location *loc, **tmp;
bb9d5f81
PP
1990 int bitpos = 0, bitsize = 0;
1991
1992 if (value_bitsize (v) != 0)
1993 {
1994 /* Extract the bit parameters out from the bitfield
1995 sub-expression. */
1996 bitpos = value_bitpos (v);
1997 bitsize = value_bitsize (v);
1998 }
1999 else if (v == result && b->val_bitsize != 0)
2000 {
2001 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
2002 lvalue whose bit parameters are saved in the fields
2003 VAL_BITPOS and VAL_BITSIZE. */
2004 bitpos = b->val_bitpos;
2005 bitsize = b->val_bitsize;
2006 }
a5606eee 2007
42ae5230 2008 addr = value_address (v);
bb9d5f81
PP
2009 if (bitsize != 0)
2010 {
2011 /* Skip the bytes that don't contain the bitfield. */
2012 addr += bitpos / 8;
2013 }
2014
a5606eee 2015 type = hw_write;
3a5c3e22 2016 if (b->base.type == bp_read_watchpoint)
a5606eee 2017 type = hw_read;
3a5c3e22 2018 else if (b->base.type == bp_access_watchpoint)
a5606eee 2019 type = hw_access;
3a5c3e22
PA
2020
2021 loc = allocate_bp_location (&b->base);
2022 for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
2023 ;
2024 *tmp = loc;
a6d9a66e 2025 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
2026
2027 loc->pspace = frame_pspace;
a5606eee 2028 loc->address = addr;
bb9d5f81
PP
2029
2030 if (bitsize != 0)
2031 {
2032 /* Just cover the bytes that make up the bitfield. */
2033 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
2034 }
2035 else
2036 loc->length = TYPE_LENGTH (value_type (v));
2037
a5606eee
VP
2038 loc->watchpoint_type = type;
2039 }
2040 }
9fa40276
TJB
2041 }
2042
2043 /* Change the type of breakpoint between hardware assisted or
2044 an ordinary watchpoint depending on the hardware support
2045 and free hardware slots. REPARSE is set when the inferior
2046 is started. */
a9634178 2047 if (reparse)
9fa40276 2048 {
e09342b5 2049 int reg_cnt;
9fa40276
TJB
2050 enum bp_loc_type loc_type;
2051 struct bp_location *bl;
a5606eee 2052
a9634178 2053 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
2054
2055 if (reg_cnt)
9fa40276
TJB
2056 {
2057 int i, target_resources_ok, other_type_used;
a1398e0c 2058 enum bptype type;
9fa40276 2059
a9634178
TJB
2060 /* Use an exact watchpoint when there's only one memory region to be
2061 watched, and only one debug register is needed to watch it. */
2062 b->exact = target_exact_watchpoints && reg_cnt == 1;
2063
9fa40276 2064 /* We need to determine how many resources are already
e09342b5
TJB
2065 used for all other hardware watchpoints plus this one
2066 to see if we still have enough resources to also fit
a1398e0c
PA
2067 this watchpoint in as well. */
2068
2069 /* If this is a software watchpoint, we try to turn it
2070 to a hardware one -- count resources as if B was of
2071 hardware watchpoint type. */
2072 type = b->base.type;
2073 if (type == bp_watchpoint)
2074 type = bp_hardware_watchpoint;
2075
2076 /* This watchpoint may or may not have been placed on
2077 the list yet at this point (it won't be in the list
2078 if we're trying to create it for the first time,
2079 through watch_command), so always account for it
2080 manually. */
2081
2082 /* Count resources used by all watchpoints except B. */
2083 i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used);
2084
2085 /* Add in the resources needed for B. */
2086 i += hw_watchpoint_use_count (&b->base);
2087
2088 target_resources_ok
2089 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 2090 if (target_resources_ok <= 0)
a9634178 2091 {
3a5c3e22 2092 int sw_mode = b->base.ops->works_in_software_mode (&b->base);
9c06b0b4
TJB
2093
2094 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
2095 error (_("Target does not support this type of "
2096 "hardware watchpoint."));
9c06b0b4
TJB
2097 else if (target_resources_ok < 0 && !sw_mode)
2098 error (_("There are not enough available hardware "
2099 "resources for this watchpoint."));
a1398e0c
PA
2100
2101 /* Downgrade to software watchpoint. */
2102 b->base.type = bp_watchpoint;
2103 }
2104 else
2105 {
2106 /* If this was a software watchpoint, we've just
2107 found we have enough resources to turn it to a
2108 hardware watchpoint. Otherwise, this is a
2109 nop. */
2110 b->base.type = type;
a9634178 2111 }
9fa40276 2112 }
3a5c3e22 2113 else if (!b->base.ops->works_in_software_mode (&b->base))
638aa5a1
AB
2114 {
2115 if (!can_use_hw_watchpoints)
2116 error (_("Can't set read/access watchpoint when "
2117 "hardware watchpoints are disabled."));
2118 else
2119 error (_("Expression cannot be implemented with "
2120 "read/access watchpoint."));
2121 }
9fa40276 2122 else
3a5c3e22 2123 b->base.type = bp_watchpoint;
9fa40276 2124
3a5c3e22 2125 loc_type = (b->base.type == bp_watchpoint? bp_loc_other
9fa40276 2126 : bp_loc_hardware_watchpoint);
3a5c3e22 2127 for (bl = b->base.loc; bl; bl = bl->next)
9fa40276
TJB
2128 bl->loc_type = loc_type;
2129 }
2130
2131 for (v = val_chain; v; v = next)
2132 {
a5606eee
VP
2133 next = value_next (v);
2134 if (v != b->val)
2135 value_free (v);
2136 }
2137
c7437ca6
PA
2138 /* If a software watchpoint is not watching any memory, then the
2139 above left it without any location set up. But,
2140 bpstat_stop_status requires a location to be able to report
2141 stops, so make sure there's at least a dummy one. */
3a5c3e22 2142 if (b->base.type == bp_watchpoint && b->base.loc == NULL)
c7437ca6 2143 {
3a5c3e22
PA
2144 struct breakpoint *base = &b->base;
2145 base->loc = allocate_bp_location (base);
2146 base->loc->pspace = frame_pspace;
2147 base->loc->address = -1;
2148 base->loc->length = -1;
2149 base->loc->watchpoint_type = -1;
c7437ca6 2150 }
a5606eee
VP
2151 }
2152 else if (!within_current_scope)
7270d8f2 2153 {
ac74f770
MS
2154 printf_filtered (_("\
2155Watchpoint %d deleted because the program has left the block\n\
2156in which its expression is valid.\n"),
3a5c3e22 2157 b->base.number);
d0fb5eae 2158 watchpoint_del_at_next_stop (b);
7270d8f2 2159 }
a5606eee
VP
2160
2161 /* Restore the selected frame. */
66076460
DJ
2162 if (frame_saved)
2163 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
2164}
2165
a5606eee 2166
74960c60 2167/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
2168 inserted in the inferior. We don't differentiate the type of BL's owner
2169 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2170 breakpoint_ops is not defined, because in insert_bp_location,
2171 tracepoint's insert_location will not be called. */
74960c60 2172static int
35df4500 2173should_be_inserted (struct bp_location *bl)
74960c60 2174{
35df4500 2175 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
2176 return 0;
2177
35df4500 2178 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
2179 return 0;
2180
35df4500 2181 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
2182 return 0;
2183
f8eba3c6
TT
2184 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2185 return 0;
2186
56710373
PA
2187 /* This is set for example, when we're attached to the parent of a
2188 vfork, and have detached from the child. The child is running
2189 free, and we expect it to do an exec or exit, at which point the
2190 OS makes the parent schedulable again (and the target reports
2191 that the vfork is done). Until the child is done with the shared
2192 memory region, do not insert breakpoints in the parent, otherwise
2193 the child could still trip on the parent's breakpoints. Since
2194 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2195 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2196 return 0;
2197
31e77af2
PA
2198 /* Don't insert a breakpoint if we're trying to step past its
2199 location. */
2200 if ((bl->loc_type == bp_loc_software_breakpoint
2201 || bl->loc_type == bp_loc_hardware_breakpoint)
2202 && stepping_past_instruction_at (bl->pspace->aspace,
2203 bl->address))
e558d7c1
PA
2204 {
2205 if (debug_infrun)
2206 {
2207 fprintf_unfiltered (gdb_stdlog,
2208 "infrun: skipping breakpoint: "
2209 "stepping past insn at: %s\n",
2210 paddress (bl->gdbarch, bl->address));
2211 }
2212 return 0;
2213 }
31e77af2 2214
74960c60
VP
2215 return 1;
2216}
2217
934709f0
PW
2218/* Same as should_be_inserted but does the check assuming
2219 that the location is not duplicated. */
2220
2221static int
2222unduplicated_should_be_inserted (struct bp_location *bl)
2223{
2224 int result;
2225 const int save_duplicate = bl->duplicate;
2226
2227 bl->duplicate = 0;
2228 result = should_be_inserted (bl);
2229 bl->duplicate = save_duplicate;
2230 return result;
2231}
2232
b775012e
LM
2233/* Parses a conditional described by an expression COND into an
2234 agent expression bytecode suitable for evaluation
2235 by the bytecode interpreter. Return NULL if there was
2236 any error during parsing. */
2237
2238static struct agent_expr *
2239parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2240{
2241 struct agent_expr *aexpr = NULL;
b775012e
LM
2242 volatile struct gdb_exception ex;
2243
2244 if (!cond)
2245 return NULL;
2246
2247 /* We don't want to stop processing, so catch any errors
2248 that may show up. */
2249 TRY_CATCH (ex, RETURN_MASK_ERROR)
2250 {
2251 aexpr = gen_eval_for_expr (scope, cond);
2252 }
2253
2254 if (ex.reason < 0)
2255 {
2256 /* If we got here, it means the condition could not be parsed to a valid
2257 bytecode expression and thus can't be evaluated on the target's side.
2258 It's no use iterating through the conditions. */
2259 return NULL;
2260 }
2261
2262 /* We have a valid agent expression. */
2263 return aexpr;
2264}
2265
2266/* Based on location BL, create a list of breakpoint conditions to be
2267 passed on to the target. If we have duplicated locations with different
2268 conditions, we will add such conditions to the list. The idea is that the
2269 target will evaluate the list of conditions and will only notify GDB when
2270 one of them is true. */
2271
2272static void
2273build_target_condition_list (struct bp_location *bl)
2274{
2275 struct bp_location **locp = NULL, **loc2p;
2276 int null_condition_or_parse_error = 0;
2277 int modified = bl->needs_update;
2278 struct bp_location *loc;
2279
8b4f3082
PA
2280 /* Release conditions left over from a previous insert. */
2281 VEC_free (agent_expr_p, bl->target_info.conditions);
2282
b775012e
LM
2283 /* This is only meaningful if the target is
2284 evaluating conditions and if the user has
2285 opted for condition evaluation on the target's
2286 side. */
2287 if (gdb_evaluates_breakpoint_condition_p ()
2288 || !target_supports_evaluation_of_breakpoint_conditions ())
2289 return;
2290
2291 /* Do a first pass to check for locations with no assigned
2292 conditions or conditions that fail to parse to a valid agent expression
2293 bytecode. If any of these happen, then it's no use to send conditions
2294 to the target since this location will always trigger and generate a
2295 response back to GDB. */
2296 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2297 {
2298 loc = (*loc2p);
2299 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2300 {
2301 if (modified)
2302 {
2303 struct agent_expr *aexpr;
2304
2305 /* Re-parse the conditions since something changed. In that
2306 case we already freed the condition bytecodes (see
2307 force_breakpoint_reinsertion). We just
2308 need to parse the condition to bytecodes again. */
2309 aexpr = parse_cond_to_aexpr (bl->address, loc->cond);
2310 loc->cond_bytecode = aexpr;
2311
2312 /* Check if we managed to parse the conditional expression
2313 correctly. If not, we will not send this condition
2314 to the target. */
2315 if (aexpr)
2316 continue;
2317 }
2318
2319 /* If we have a NULL bytecode expression, it means something
2320 went wrong or we have a null condition expression. */
2321 if (!loc->cond_bytecode)
2322 {
2323 null_condition_or_parse_error = 1;
2324 break;
2325 }
2326 }
2327 }
2328
2329 /* If any of these happened, it means we will have to evaluate the conditions
2330 for the location's address on gdb's side. It is no use keeping bytecodes
2331 for all the other duplicate locations, thus we free all of them here.
2332
2333 This is so we have a finer control over which locations' conditions are
2334 being evaluated by GDB or the remote stub. */
2335 if (null_condition_or_parse_error)
2336 {
2337 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2338 {
2339 loc = (*loc2p);
2340 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2341 {
2342 /* Only go as far as the first NULL bytecode is
2343 located. */
2344 if (!loc->cond_bytecode)
2345 return;
2346
2347 free_agent_expr (loc->cond_bytecode);
2348 loc->cond_bytecode = NULL;
2349 }
2350 }
2351 }
2352
2353 /* No NULL conditions or failed bytecode generation. Build a condition list
2354 for this location's address. */
2355 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2356 {
2357 loc = (*loc2p);
2358 if (loc->cond
2359 && is_breakpoint (loc->owner)
2360 && loc->pspace->num == bl->pspace->num
2361 && loc->owner->enable_state == bp_enabled
2362 && loc->enabled)
2363 /* Add the condition to the vector. This will be used later to send the
2364 conditions to the target. */
2365 VEC_safe_push (agent_expr_p, bl->target_info.conditions,
2366 loc->cond_bytecode);
2367 }
2368
2369 return;
2370}
2371
d3ce09f5
SS
2372/* Parses a command described by string CMD into an agent expression
2373 bytecode suitable for evaluation by the bytecode interpreter.
2374 Return NULL if there was any error during parsing. */
2375
2376static struct agent_expr *
2377parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2378{
2379 struct cleanup *old_cleanups = 0;
2380 struct expression *expr, **argvec;
2381 struct agent_expr *aexpr = NULL;
d3ce09f5 2382 volatile struct gdb_exception ex;
bbc13ae3
KS
2383 const char *cmdrest;
2384 const char *format_start, *format_end;
d3ce09f5
SS
2385 struct format_piece *fpieces;
2386 int nargs;
2387 struct gdbarch *gdbarch = get_current_arch ();
2388
2389 if (!cmd)
2390 return NULL;
2391
2392 cmdrest = cmd;
2393
2394 if (*cmdrest == ',')
2395 ++cmdrest;
bbc13ae3 2396 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2397
2398 if (*cmdrest++ != '"')
2399 error (_("No format string following the location"));
2400
2401 format_start = cmdrest;
2402
2403 fpieces = parse_format_string (&cmdrest);
2404
2405 old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces);
2406
2407 format_end = cmdrest;
2408
2409 if (*cmdrest++ != '"')
2410 error (_("Bad format string, non-terminated '\"'."));
2411
bbc13ae3 2412 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2413
2414 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2415 error (_("Invalid argument syntax"));
2416
2417 if (*cmdrest == ',')
2418 cmdrest++;
bbc13ae3 2419 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2420
2421 /* For each argument, make an expression. */
2422
2423 argvec = (struct expression **) alloca (strlen (cmd)
2424 * sizeof (struct expression *));
2425
2426 nargs = 0;
2427 while (*cmdrest != '\0')
2428 {
bbc13ae3 2429 const char *cmd1;
d3ce09f5
SS
2430
2431 cmd1 = cmdrest;
2432 expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2433 argvec[nargs++] = expr;
2434 cmdrest = cmd1;
2435 if (*cmdrest == ',')
2436 ++cmdrest;
2437 }
2438
2439 /* We don't want to stop processing, so catch any errors
2440 that may show up. */
2441 TRY_CATCH (ex, RETURN_MASK_ERROR)
2442 {
2443 aexpr = gen_printf (scope, gdbarch, 0, 0,
2444 format_start, format_end - format_start,
2445 fpieces, nargs, argvec);
2446 }
2447
752eb8b4
TT
2448 do_cleanups (old_cleanups);
2449
d3ce09f5
SS
2450 if (ex.reason < 0)
2451 {
2452 /* If we got here, it means the command could not be parsed to a valid
2453 bytecode expression and thus can't be evaluated on the target's side.
2454 It's no use iterating through the other commands. */
2455 return NULL;
2456 }
2457
d3ce09f5
SS
2458 /* We have a valid agent expression, return it. */
2459 return aexpr;
2460}
2461
2462/* Based on location BL, create a list of breakpoint commands to be
2463 passed on to the target. If we have duplicated locations with
2464 different commands, we will add any such to the list. */
2465
2466static void
2467build_target_command_list (struct bp_location *bl)
2468{
2469 struct bp_location **locp = NULL, **loc2p;
2470 int null_command_or_parse_error = 0;
2471 int modified = bl->needs_update;
2472 struct bp_location *loc;
2473
8b4f3082
PA
2474 /* Release commands left over from a previous insert. */
2475 VEC_free (agent_expr_p, bl->target_info.tcommands);
2476
41fac0cf 2477 if (!target_can_run_breakpoint_commands ())
d3ce09f5
SS
2478 return;
2479
41fac0cf
PA
2480 /* For now, limit to agent-style dprintf breakpoints. */
2481 if (dprintf_style != dprintf_style_agent)
d3ce09f5
SS
2482 return;
2483
41fac0cf
PA
2484 /* For now, if we have any duplicate location that isn't a dprintf,
2485 don't install the target-side commands, as that would make the
2486 breakpoint not be reported to the core, and we'd lose
2487 control. */
2488 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2489 {
2490 loc = (*loc2p);
2491 if (is_breakpoint (loc->owner)
2492 && loc->pspace->num == bl->pspace->num
2493 && loc->owner->type != bp_dprintf)
2494 return;
2495 }
2496
d3ce09f5
SS
2497 /* Do a first pass to check for locations with no assigned
2498 conditions or conditions that fail to parse to a valid agent expression
2499 bytecode. If any of these happen, then it's no use to send conditions
2500 to the target since this location will always trigger and generate a
2501 response back to GDB. */
2502 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2503 {
2504 loc = (*loc2p);
2505 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2506 {
2507 if (modified)
2508 {
2509 struct agent_expr *aexpr;
2510
2511 /* Re-parse the commands since something changed. In that
2512 case we already freed the command bytecodes (see
2513 force_breakpoint_reinsertion). We just
2514 need to parse the command to bytecodes again. */
2515 aexpr = parse_cmd_to_aexpr (bl->address,
2516 loc->owner->extra_string);
2517 loc->cmd_bytecode = aexpr;
2518
2519 if (!aexpr)
2520 continue;
2521 }
2522
2523 /* If we have a NULL bytecode expression, it means something
2524 went wrong or we have a null command expression. */
2525 if (!loc->cmd_bytecode)
2526 {
2527 null_command_or_parse_error = 1;
2528 break;
2529 }
2530 }
2531 }
2532
2533 /* If anything failed, then we're not doing target-side commands,
2534 and so clean up. */
2535 if (null_command_or_parse_error)
2536 {
2537 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2538 {
2539 loc = (*loc2p);
2540 if (is_breakpoint (loc->owner)
2541 && loc->pspace->num == bl->pspace->num)
2542 {
2543 /* Only go as far as the first NULL bytecode is
2544 located. */
40fb6c5e 2545 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2546 return;
2547
40fb6c5e
HZ
2548 free_agent_expr (loc->cmd_bytecode);
2549 loc->cmd_bytecode = NULL;
d3ce09f5
SS
2550 }
2551 }
2552 }
2553
2554 /* No NULL commands or failed bytecode generation. Build a command list
2555 for this location's address. */
2556 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2557 {
2558 loc = (*loc2p);
2559 if (loc->owner->extra_string
2560 && is_breakpoint (loc->owner)
2561 && loc->pspace->num == bl->pspace->num
2562 && loc->owner->enable_state == bp_enabled
2563 && loc->enabled)
2564 /* Add the command to the vector. This will be used later
2565 to send the commands to the target. */
2566 VEC_safe_push (agent_expr_p, bl->target_info.tcommands,
2567 loc->cmd_bytecode);
2568 }
2569
2570 bl->target_info.persist = 0;
2571 /* Maybe flag this location as persistent. */
2572 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2573 bl->target_info.persist = 1;
2574}
2575
35df4500
TJB
2576/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2577 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2578 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2579 Returns 0 for success, 1 if the bp_location type is not supported or
2580 -1 for failure.
879bfdc2 2581
4a64f543
MS
2582 NOTE drow/2003-09-09: This routine could be broken down to an
2583 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2584static int
35df4500 2585insert_bp_location (struct bp_location *bl,
26bb91f3 2586 struct ui_file *tmp_error_stream,
3fbb6ffa 2587 int *disabled_breaks,
dd61ec5c
MW
2588 int *hw_breakpoint_error,
2589 int *hw_bp_error_explained_already)
879bfdc2 2590{
0000e5cc
PA
2591 enum errors bp_err = GDB_NO_ERROR;
2592 const char *bp_err_message = NULL;
c90a6fb7 2593 volatile struct gdb_exception e;
879bfdc2 2594
b775012e 2595 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2596 return 0;
2597
35c63cd8
JB
2598 /* Note we don't initialize bl->target_info, as that wipes out
2599 the breakpoint location's shadow_contents if the breakpoint
2600 is still inserted at that location. This in turn breaks
2601 target_read_memory which depends on these buffers when
2602 a memory read is requested at the breakpoint location:
2603 Once the target_info has been wiped, we fail to see that
2604 we have a breakpoint inserted at that address and thus
2605 read the breakpoint instead of returning the data saved in
2606 the breakpoint location's shadow contents. */
35df4500
TJB
2607 bl->target_info.placed_address = bl->address;
2608 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2609 bl->target_info.length = bl->length;
8181d85f 2610
b775012e
LM
2611 /* When working with target-side conditions, we must pass all the conditions
2612 for the same breakpoint address down to the target since GDB will not
2613 insert those locations. With a list of breakpoint conditions, the target
2614 can decide when to stop and notify GDB. */
2615
2616 if (is_breakpoint (bl->owner))
2617 {
2618 build_target_condition_list (bl);
d3ce09f5
SS
2619 build_target_command_list (bl);
2620 /* Reset the modification marker. */
b775012e
LM
2621 bl->needs_update = 0;
2622 }
2623
35df4500
TJB
2624 if (bl->loc_type == bp_loc_software_breakpoint
2625 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2626 {
35df4500 2627 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2628 {
2629 /* If the explicitly specified breakpoint type
2630 is not hardware breakpoint, check the memory map to see
2631 if the breakpoint address is in read only memory or not.
4a64f543 2632
765dc015
VP
2633 Two important cases are:
2634 - location type is not hardware breakpoint, memory
2635 is readonly. We change the type of the location to
2636 hardware breakpoint.
4a64f543
MS
2637 - location type is hardware breakpoint, memory is
2638 read-write. This means we've previously made the
2639 location hardware one, but then the memory map changed,
2640 so we undo.
765dc015 2641
4a64f543
MS
2642 When breakpoints are removed, remove_breakpoints will use
2643 location types we've just set here, the only possible
2644 problem is that memory map has changed during running
2645 program, but it's not going to work anyway with current
2646 gdb. */
765dc015 2647 struct mem_region *mr
35df4500 2648 = lookup_mem_region (bl->target_info.placed_address);
765dc015
VP
2649
2650 if (mr)
2651 {
2652 if (automatic_hardware_breakpoints)
2653 {
765dc015
VP
2654 enum bp_loc_type new_type;
2655
2656 if (mr->attrib.mode != MEM_RW)
2657 new_type = bp_loc_hardware_breakpoint;
2658 else
2659 new_type = bp_loc_software_breakpoint;
2660
35df4500 2661 if (new_type != bl->loc_type)
765dc015
VP
2662 {
2663 static int said = 0;
cc59ec59 2664
35df4500 2665 bl->loc_type = new_type;
765dc015
VP
2666 if (!said)
2667 {
3e43a32a
MS
2668 fprintf_filtered (gdb_stdout,
2669 _("Note: automatically using "
2670 "hardware breakpoints for "
2671 "read-only addresses.\n"));
765dc015
VP
2672 said = 1;
2673 }
2674 }
2675 }
35df4500 2676 else if (bl->loc_type == bp_loc_software_breakpoint
0fec99e8
PA
2677 && mr->attrib.mode != MEM_RW)
2678 {
2679 fprintf_unfiltered (tmp_error_stream,
2680 _("Cannot insert breakpoint %d.\n"
2681 "Cannot set software breakpoint "
2682 "at read-only address %s\n"),
2683 bl->owner->number,
2684 paddress (bl->gdbarch, bl->address));
2685 return 1;
2686 }
765dc015
VP
2687 }
2688 }
2689
879bfdc2
DJ
2690 /* First check to see if we have to handle an overlay. */
2691 if (overlay_debugging == ovly_off
35df4500
TJB
2692 || bl->section == NULL
2693 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2694 {
2695 /* No overlay handling: just set the breakpoint. */
dd61ec5c
MW
2696 TRY_CATCH (e, RETURN_MASK_ALL)
2697 {
0000e5cc
PA
2698 int val;
2699
dd61ec5c 2700 val = bl->owner->ops->insert_location (bl);
0000e5cc
PA
2701 if (val)
2702 bp_err = GENERIC_ERROR;
dd61ec5c
MW
2703 }
2704 if (e.reason < 0)
2705 {
0000e5cc
PA
2706 bp_err = e.error;
2707 bp_err_message = e.message;
dd61ec5c 2708 }
879bfdc2
DJ
2709 }
2710 else
2711 {
4a64f543 2712 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2713 Shall we set a breakpoint at the LMA? */
2714 if (!overlay_events_enabled)
2715 {
2716 /* Yes -- overlay event support is not active,
2717 so we must try to set a breakpoint at the LMA.
2718 This will not work for a hardware breakpoint. */
35df4500 2719 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2720 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2721 bl->owner->number);
879bfdc2
DJ
2722 else
2723 {
35df4500
TJB
2724 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2725 bl->section);
879bfdc2 2726 /* Set a software (trap) breakpoint at the LMA. */
35df4500
TJB
2727 bl->overlay_target_info = bl->target_info;
2728 bl->overlay_target_info.placed_address = addr;
0000e5cc
PA
2729
2730 /* No overlay handling: just set the breakpoint. */
2731 TRY_CATCH (e, RETURN_MASK_ALL)
2732 {
2733 int val;
2734
2735 val = target_insert_breakpoint (bl->gdbarch,
2736 &bl->overlay_target_info);
2737 if (val)
2738 bp_err = GENERIC_ERROR;
2739 }
2740 if (e.reason < 0)
2741 {
2742 bp_err = e.error;
2743 bp_err_message = e.message;
2744 }
2745
2746 if (bp_err != GDB_NO_ERROR)
99361f52 2747 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2748 "Overlay breakpoint %d "
2749 "failed: in ROM?\n",
35df4500 2750 bl->owner->number);
879bfdc2
DJ
2751 }
2752 }
2753 /* Shall we set a breakpoint at the VMA? */
35df4500 2754 if (section_is_mapped (bl->section))
879bfdc2
DJ
2755 {
2756 /* Yes. This overlay section is mapped into memory. */
dd61ec5c
MW
2757 TRY_CATCH (e, RETURN_MASK_ALL)
2758 {
0000e5cc
PA
2759 int val;
2760
dd61ec5c 2761 val = bl->owner->ops->insert_location (bl);
0000e5cc
PA
2762 if (val)
2763 bp_err = GENERIC_ERROR;
dd61ec5c
MW
2764 }
2765 if (e.reason < 0)
2766 {
0000e5cc
PA
2767 bp_err = e.error;
2768 bp_err_message = e.message;
dd61ec5c 2769 }
879bfdc2
DJ
2770 }
2771 else
2772 {
2773 /* No. This breakpoint will not be inserted.
2774 No error, but do not mark the bp as 'inserted'. */
2775 return 0;
2776 }
2777 }
2778
0000e5cc 2779 if (bp_err != GDB_NO_ERROR)
879bfdc2
DJ
2780 {
2781 /* Can't set the breakpoint. */
0000e5cc
PA
2782
2783 /* In some cases, we might not be able to insert a
2784 breakpoint in a shared library that has already been
2785 removed, but we have not yet processed the shlib unload
2786 event. Unfortunately, some targets that implement
076855f9
PA
2787 breakpoint insertion themselves can't tell why the
2788 breakpoint insertion failed (e.g., the remote target
2789 doesn't define error codes), so we must treat generic
2790 errors as memory errors. */
0000e5cc 2791 if ((bp_err == GENERIC_ERROR || bp_err == MEMORY_ERROR)
076855f9 2792 && bl->loc_type == bp_loc_software_breakpoint
08351840 2793 && (solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
2794 || shared_objfile_contains_address_p (bl->pspace,
2795 bl->address)))
879bfdc2 2796 {
4a64f543 2797 /* See also: disable_breakpoints_in_shlibs. */
35df4500 2798 bl->shlib_disabled = 1;
8d3788bd 2799 observer_notify_breakpoint_modified (bl->owner);
3fbb6ffa
TJB
2800 if (!*disabled_breaks)
2801 {
2802 fprintf_unfiltered (tmp_error_stream,
2803 "Cannot insert breakpoint %d.\n",
2804 bl->owner->number);
2805 fprintf_unfiltered (tmp_error_stream,
2806 "Temporarily disabling shared "
2807 "library breakpoints:\n");
2808 }
2809 *disabled_breaks = 1;
879bfdc2 2810 fprintf_unfiltered (tmp_error_stream,
35df4500 2811 "breakpoint #%d\n", bl->owner->number);
0000e5cc 2812 return 0;
879bfdc2
DJ
2813 }
2814 else
879bfdc2 2815 {
35df4500 2816 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2817 {
0000e5cc
PA
2818 *hw_breakpoint_error = 1;
2819 *hw_bp_error_explained_already = bp_err_message != NULL;
dd61ec5c
MW
2820 fprintf_unfiltered (tmp_error_stream,
2821 "Cannot insert hardware breakpoint %d%s",
0000e5cc
PA
2822 bl->owner->number, bp_err_message ? ":" : ".\n");
2823 if (bp_err_message != NULL)
2824 fprintf_unfiltered (tmp_error_stream, "%s.\n", bp_err_message);
879bfdc2
DJ
2825 }
2826 else
2827 {
0000e5cc
PA
2828 if (bp_err_message == NULL)
2829 {
2830 char *message
2831 = memory_error_message (TARGET_XFER_E_IO,
2832 bl->gdbarch, bl->address);
2833 struct cleanup *old_chain = make_cleanup (xfree, message);
2834
2835 fprintf_unfiltered (tmp_error_stream,
2836 "Cannot insert breakpoint %d.\n"
2837 "%s\n",
2838 bl->owner->number, message);
2839 do_cleanups (old_chain);
2840 }
2841 else
2842 {
2843 fprintf_unfiltered (tmp_error_stream,
2844 "Cannot insert breakpoint %d: %s\n",
2845 bl->owner->number,
2846 bp_err_message);
2847 }
879bfdc2 2848 }
0000e5cc 2849 return 1;
879bfdc2
DJ
2850
2851 }
2852 }
2853 else
35df4500 2854 bl->inserted = 1;
879bfdc2 2855
0000e5cc 2856 return 0;
879bfdc2
DJ
2857 }
2858
35df4500 2859 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2860 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2861 watchpoints. It's not clear that it's necessary... */
35df4500 2862 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2863 {
0000e5cc
PA
2864 int val;
2865
77b06cd7
TJB
2866 gdb_assert (bl->owner->ops != NULL
2867 && bl->owner->ops->insert_location != NULL);
2868
2869 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2870
2871 /* If trying to set a read-watchpoint, and it turns out it's not
2872 supported, try emulating one with an access watchpoint. */
35df4500 2873 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2874 {
2875 struct bp_location *loc, **loc_temp;
2876
2877 /* But don't try to insert it, if there's already another
2878 hw_access location that would be considered a duplicate
2879 of this one. */
2880 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2881 if (loc != bl
85d721b8 2882 && loc->watchpoint_type == hw_access
35df4500 2883 && watchpoint_locations_match (bl, loc))
85d721b8 2884 {
35df4500
TJB
2885 bl->duplicate = 1;
2886 bl->inserted = 1;
2887 bl->target_info = loc->target_info;
2888 bl->watchpoint_type = hw_access;
85d721b8
PA
2889 val = 0;
2890 break;
2891 }
2892
2893 if (val == 1)
2894 {
77b06cd7
TJB
2895 bl->watchpoint_type = hw_access;
2896 val = bl->owner->ops->insert_location (bl);
2897
2898 if (val)
2899 /* Back to the original value. */
2900 bl->watchpoint_type = hw_read;
85d721b8
PA
2901 }
2902 }
2903
35df4500 2904 bl->inserted = (val == 0);
879bfdc2
DJ
2905 }
2906
35df4500 2907 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2908 {
0000e5cc
PA
2909 int val;
2910
77b06cd7
TJB
2911 gdb_assert (bl->owner->ops != NULL
2912 && bl->owner->ops->insert_location != NULL);
2913
2914 val = bl->owner->ops->insert_location (bl);
2915 if (val)
2916 {
2917 bl->owner->enable_state = bp_disabled;
2918
2919 if (val == 1)
2920 warning (_("\
2921Error inserting catchpoint %d: Your system does not support this type\n\
2922of catchpoint."), bl->owner->number);
2923 else
2924 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2925 }
2926
2927 bl->inserted = (val == 0);
1640b821
DJ
2928
2929 /* We've already printed an error message if there was a problem
2930 inserting this catchpoint, and we've disabled the catchpoint,
2931 so just return success. */
2932 return 0;
879bfdc2
DJ
2933 }
2934
2935 return 0;
2936}
2937
6c95b8df
PA
2938/* This function is called when program space PSPACE is about to be
2939 deleted. It takes care of updating breakpoints to not reference
2940 PSPACE anymore. */
2941
2942void
2943breakpoint_program_space_exit (struct program_space *pspace)
2944{
2945 struct breakpoint *b, *b_temp;
876fa593 2946 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2947
2948 /* Remove any breakpoint that was set through this program space. */
2949 ALL_BREAKPOINTS_SAFE (b, b_temp)
2950 {
2951 if (b->pspace == pspace)
2952 delete_breakpoint (b);
2953 }
2954
2955 /* Breakpoints set through other program spaces could have locations
2956 bound to PSPACE as well. Remove those. */
876fa593 2957 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2958 {
2959 struct bp_location *tmp;
2960
2961 if (loc->pspace == pspace)
2962 {
2bdf28a0 2963 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2964 if (loc->owner->loc == loc)
2965 loc->owner->loc = loc->next;
2966 else
2967 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2968 if (tmp->next == loc)
2969 {
2970 tmp->next = loc->next;
2971 break;
2972 }
2973 }
2974 }
2975
2976 /* Now update the global location list to permanently delete the
2977 removed locations above. */
44702360 2978 update_global_location_list (UGLL_DONT_INSERT);
6c95b8df
PA
2979}
2980
74960c60
VP
2981/* Make sure all breakpoints are inserted in inferior.
2982 Throws exception on any error.
2983 A breakpoint that is already inserted won't be inserted
2984 again, so calling this function twice is safe. */
2985void
2986insert_breakpoints (void)
2987{
2988 struct breakpoint *bpt;
2989
2990 ALL_BREAKPOINTS (bpt)
2991 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
2992 {
2993 struct watchpoint *w = (struct watchpoint *) bpt;
2994
2995 update_watchpoint (w, 0 /* don't reparse. */);
2996 }
74960c60 2997
04086b45
PA
2998 /* Updating watchpoints creates new locations, so update the global
2999 location list. Explicitly tell ugll to insert locations and
3000 ignore breakpoints_always_inserted_mode. */
3001 update_global_location_list (UGLL_INSERT);
74960c60
VP
3002}
3003
20388dd6
YQ
3004/* Invoke CALLBACK for each of bp_location. */
3005
3006void
3007iterate_over_bp_locations (walk_bp_location_callback callback)
3008{
3009 struct bp_location *loc, **loc_tmp;
3010
3011 ALL_BP_LOCATIONS (loc, loc_tmp)
3012 {
3013 callback (loc, NULL);
3014 }
3015}
3016
b775012e
LM
3017/* This is used when we need to synch breakpoint conditions between GDB and the
3018 target. It is the case with deleting and disabling of breakpoints when using
3019 always-inserted mode. */
3020
3021static void
3022update_inserted_breakpoint_locations (void)
3023{
3024 struct bp_location *bl, **blp_tmp;
3025 int error_flag = 0;
3026 int val = 0;
3027 int disabled_breaks = 0;
3028 int hw_breakpoint_error = 0;
dd61ec5c 3029 int hw_bp_details_reported = 0;
b775012e
LM
3030
3031 struct ui_file *tmp_error_stream = mem_fileopen ();
3032 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
3033
3034 /* Explicitly mark the warning -- this will only be printed if
3035 there was an error. */
3036 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
3037
3038 save_current_space_and_thread ();
3039
3040 ALL_BP_LOCATIONS (bl, blp_tmp)
3041 {
3042 /* We only want to update software breakpoints and hardware
3043 breakpoints. */
3044 if (!is_breakpoint (bl->owner))
3045 continue;
3046
3047 /* We only want to update locations that are already inserted
3048 and need updating. This is to avoid unwanted insertion during
3049 deletion of breakpoints. */
3050 if (!bl->inserted || (bl->inserted && !bl->needs_update))
3051 continue;
3052
3053 switch_to_program_space_and_thread (bl->pspace);
3054
3055 /* For targets that support global breakpoints, there's no need
3056 to select an inferior to insert breakpoint to. In fact, even
3057 if we aren't attached to any process yet, we should still
3058 insert breakpoints. */
f5656ead 3059 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
b775012e
LM
3060 && ptid_equal (inferior_ptid, null_ptid))
3061 continue;
3062
3063 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
dd61ec5c 3064 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
3065 if (val)
3066 error_flag = val;
3067 }
3068
3069 if (error_flag)
3070 {
3071 target_terminal_ours_for_output ();
3072 error_stream (tmp_error_stream);
3073 }
3074
3075 do_cleanups (cleanups);
3076}
3077
c30eee59 3078/* Used when starting or continuing the program. */
c906108c 3079
74960c60
VP
3080static void
3081insert_breakpoint_locations (void)
c906108c 3082{
a5606eee 3083 struct breakpoint *bpt;
35df4500 3084 struct bp_location *bl, **blp_tmp;
eacd795a 3085 int error_flag = 0;
c906108c 3086 int val = 0;
3fbb6ffa 3087 int disabled_breaks = 0;
81d0cc19 3088 int hw_breakpoint_error = 0;
dd61ec5c 3089 int hw_bp_error_explained_already = 0;
c906108c 3090
81d0cc19 3091 struct ui_file *tmp_error_stream = mem_fileopen ();
f7545552 3092 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 3093
81d0cc19
GS
3094 /* Explicitly mark the warning -- this will only be printed if
3095 there was an error. */
3096 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
6c95b8df
PA
3097
3098 save_current_space_and_thread ();
3099
35df4500 3100 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 3101 {
b775012e 3102 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
3103 continue;
3104
4a64f543
MS
3105 /* There is no point inserting thread-specific breakpoints if
3106 the thread no longer exists. ALL_BP_LOCATIONS bp_location
3107 has BL->OWNER always non-NULL. */
35df4500
TJB
3108 if (bl->owner->thread != -1
3109 && !valid_thread_id (bl->owner->thread))
f365de73
AS
3110 continue;
3111
35df4500 3112 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
3113
3114 /* For targets that support global breakpoints, there's no need
3115 to select an inferior to insert breakpoint to. In fact, even
3116 if we aren't attached to any process yet, we should still
3117 insert breakpoints. */
f5656ead 3118 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
3119 && ptid_equal (inferior_ptid, null_ptid))
3120 continue;
3121
3fbb6ffa 3122 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
dd61ec5c 3123 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 3124 if (val)
eacd795a 3125 error_flag = val;
879bfdc2 3126 }
c906108c 3127
4a64f543
MS
3128 /* If we failed to insert all locations of a watchpoint, remove
3129 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
3130 ALL_BREAKPOINTS (bpt)
3131 {
3132 int some_failed = 0;
3133 struct bp_location *loc;
3134
3135 if (!is_hardware_watchpoint (bpt))
3136 continue;
3137
d6b74ac4 3138 if (!breakpoint_enabled (bpt))
a5606eee 3139 continue;
74960c60
VP
3140
3141 if (bpt->disposition == disp_del_at_next_stop)
3142 continue;
a5606eee
VP
3143
3144 for (loc = bpt->loc; loc; loc = loc->next)
56710373 3145 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
3146 {
3147 some_failed = 1;
3148 break;
3149 }
3150 if (some_failed)
3151 {
3152 for (loc = bpt->loc; loc; loc = loc->next)
3153 if (loc->inserted)
3154 remove_breakpoint (loc, mark_uninserted);
3155
3156 hw_breakpoint_error = 1;
3157 fprintf_unfiltered (tmp_error_stream,
3158 "Could not insert hardware watchpoint %d.\n",
3159 bpt->number);
eacd795a 3160 error_flag = -1;
a5606eee
VP
3161 }
3162 }
3163
eacd795a 3164 if (error_flag)
81d0cc19
GS
3165 {
3166 /* If a hardware breakpoint or watchpoint was inserted, add a
3167 message about possibly exhausted resources. */
dd61ec5c 3168 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 3169 {
c6510018
MS
3170 fprintf_unfiltered (tmp_error_stream,
3171 "Could not insert hardware breakpoints:\n\
3172You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 3173 }
81d0cc19
GS
3174 target_terminal_ours_for_output ();
3175 error_stream (tmp_error_stream);
3176 }
f7545552
TT
3177
3178 do_cleanups (cleanups);
c906108c
SS
3179}
3180
c30eee59
TJB
3181/* Used when the program stops.
3182 Returns zero if successful, or non-zero if there was a problem
3183 removing a breakpoint location. */
3184
c906108c 3185int
fba45db2 3186remove_breakpoints (void)
c906108c 3187{
35df4500 3188 struct bp_location *bl, **blp_tmp;
3a1bae8e 3189 int val = 0;
c906108c 3190
35df4500 3191 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3192 {
1e4d1764 3193 if (bl->inserted && !is_tracepoint (bl->owner))
35df4500 3194 val |= remove_breakpoint (bl, mark_uninserted);
c5aa993b 3195 }
3a1bae8e 3196 return val;
c906108c
SS
3197}
3198
49fa26b0
PA
3199/* When a thread exits, remove breakpoints that are related to
3200 that thread. */
3201
3202static void
3203remove_threaded_breakpoints (struct thread_info *tp, int silent)
3204{
3205 struct breakpoint *b, *b_tmp;
3206
3207 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3208 {
96181529 3209 if (b->thread == tp->num && user_breakpoint_p (b))
49fa26b0
PA
3210 {
3211 b->disposition = disp_del_at_next_stop;
3212
3213 printf_filtered (_("\
46ecd527 3214Thread-specific breakpoint %d deleted - thread %d no longer in the thread list.\n"),
49fa26b0
PA
3215 b->number, tp->num);
3216
3217 /* Hide it from the user. */
3218 b->number = 0;
3219 }
3220 }
3221}
3222
6c95b8df
PA
3223/* Remove breakpoints of process PID. */
3224
3225int
3226remove_breakpoints_pid (int pid)
3227{
35df4500 3228 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
3229 int val;
3230 struct inferior *inf = find_inferior_pid (pid);
3231
35df4500 3232 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3233 {
35df4500 3234 if (bl->pspace != inf->pspace)
6c95b8df
PA
3235 continue;
3236
d3ce09f5
SS
3237 if (bl->owner->type == bp_dprintf)
3238 continue;
3239
35df4500 3240 if (bl->inserted)
6c95b8df 3241 {
35df4500 3242 val = remove_breakpoint (bl, mark_uninserted);
6c95b8df
PA
3243 if (val != 0)
3244 return val;
3245 }
3246 }
3247 return 0;
3248}
3249
c906108c 3250int
fba45db2 3251reattach_breakpoints (int pid)
c906108c 3252{
6c95b8df 3253 struct cleanup *old_chain;
35df4500 3254 struct bp_location *bl, **blp_tmp;
c906108c 3255 int val;
86b887df 3256 struct ui_file *tmp_error_stream;
dd61ec5c 3257 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
6c95b8df
PA
3258 struct inferior *inf;
3259 struct thread_info *tp;
3260
3261 tp = any_live_thread_of_process (pid);
3262 if (tp == NULL)
3263 return 1;
3264
3265 inf = find_inferior_pid (pid);
3266 old_chain = save_inferior_ptid ();
3267
3268 inferior_ptid = tp->ptid;
a4954f26 3269
86b887df 3270 tmp_error_stream = mem_fileopen ();
a4954f26 3271 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 3272
35df4500 3273 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3274 {
35df4500 3275 if (bl->pspace != inf->pspace)
6c95b8df
PA
3276 continue;
3277
35df4500 3278 if (bl->inserted)
c5aa993b 3279 {
35df4500 3280 bl->inserted = 0;
dd61ec5c 3281 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3);
c5aa993b
JM
3282 if (val != 0)
3283 {
ce696e05 3284 do_cleanups (old_chain);
c5aa993b
JM
3285 return val;
3286 }
3287 }
3288 }
ce696e05 3289 do_cleanups (old_chain);
c906108c
SS
3290 return 0;
3291}
3292
e58b0e63
PA
3293static int internal_breakpoint_number = -1;
3294
84f4c1fe
PM
3295/* Set the breakpoint number of B, depending on the value of INTERNAL.
3296 If INTERNAL is non-zero, the breakpoint number will be populated
3297 from internal_breakpoint_number and that variable decremented.
e5dd4106 3298 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3299 breakpoint_count and that value incremented. Internal breakpoints
3300 do not set the internal var bpnum. */
3301static void
3302set_breakpoint_number (int internal, struct breakpoint *b)
3303{
3304 if (internal)
3305 b->number = internal_breakpoint_number--;
3306 else
3307 {
3308 set_breakpoint_count (breakpoint_count + 1);
3309 b->number = breakpoint_count;
3310 }
3311}
3312
e62c965a 3313static struct breakpoint *
a6d9a66e 3314create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3315 CORE_ADDR address, enum bptype type,
c0a91b2b 3316 const struct breakpoint_ops *ops)
e62c965a 3317{
e62c965a
PP
3318 struct symtab_and_line sal;
3319 struct breakpoint *b;
3320
4a64f543 3321 init_sal (&sal); /* Initialize to zeroes. */
e62c965a
PP
3322
3323 sal.pc = address;
3324 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3325 sal.pspace = current_program_space;
e62c965a 3326
06edf0c0 3327 b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3328 b->number = internal_breakpoint_number--;
3329 b->disposition = disp_donttouch;
3330
3331 return b;
3332}
3333
17450429
PP
3334static const char *const longjmp_names[] =
3335 {
3336 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3337 };
3338#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3339
3340/* Per-objfile data private to breakpoint.c. */
3341struct breakpoint_objfile_data
3342{
3343 /* Minimal symbol for "_ovly_debug_event" (if any). */
3b7344d5 3344 struct bound_minimal_symbol overlay_msym;
17450429
PP
3345
3346 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3b7344d5 3347 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES];
17450429 3348
28106bc2
SDJ
3349 /* True if we have looked for longjmp probes. */
3350 int longjmp_searched;
3351
3352 /* SystemTap probe points for longjmp (if any). */
3353 VEC (probe_p) *longjmp_probes;
3354
17450429 3355 /* Minimal symbol for "std::terminate()" (if any). */
3b7344d5 3356 struct bound_minimal_symbol terminate_msym;
17450429
PP
3357
3358 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3b7344d5 3359 struct bound_minimal_symbol exception_msym;
28106bc2
SDJ
3360
3361 /* True if we have looked for exception probes. */
3362 int exception_searched;
3363
3364 /* SystemTap probe points for unwinding (if any). */
3365 VEC (probe_p) *exception_probes;
17450429
PP
3366};
3367
3368static const struct objfile_data *breakpoint_objfile_key;
3369
3370/* Minimal symbol not found sentinel. */
3371static struct minimal_symbol msym_not_found;
3372
3373/* Returns TRUE if MSYM point to the "not found" sentinel. */
3374
3375static int
3376msym_not_found_p (const struct minimal_symbol *msym)
3377{
3378 return msym == &msym_not_found;
3379}
3380
3381/* Return per-objfile data needed by breakpoint.c.
3382 Allocate the data if necessary. */
3383
3384static struct breakpoint_objfile_data *
3385get_breakpoint_objfile_data (struct objfile *objfile)
3386{
3387 struct breakpoint_objfile_data *bp_objfile_data;
3388
3389 bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key);
3390 if (bp_objfile_data == NULL)
3391 {
3392 bp_objfile_data = obstack_alloc (&objfile->objfile_obstack,
3393 sizeof (*bp_objfile_data));
3394
3395 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
3396 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3397 }
3398 return bp_objfile_data;
3399}
3400
28106bc2
SDJ
3401static void
3402free_breakpoint_probes (struct objfile *obj, void *data)
3403{
3404 struct breakpoint_objfile_data *bp_objfile_data = data;
3405
3406 VEC_free (probe_p, bp_objfile_data->longjmp_probes);
3407 VEC_free (probe_p, bp_objfile_data->exception_probes);
3408}
3409
e62c965a 3410static void
af02033e 3411create_overlay_event_breakpoint (void)
e62c965a 3412{
69de3c6a 3413 struct objfile *objfile;
af02033e 3414 const char *const func_name = "_ovly_debug_event";
e62c965a 3415
69de3c6a
PP
3416 ALL_OBJFILES (objfile)
3417 {
3418 struct breakpoint *b;
17450429
PP
3419 struct breakpoint_objfile_data *bp_objfile_data;
3420 CORE_ADDR addr;
69de3c6a 3421
17450429
PP
3422 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3423
3b7344d5 3424 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
17450429
PP
3425 continue;
3426
3b7344d5 3427 if (bp_objfile_data->overlay_msym.minsym == NULL)
17450429 3428 {
3b7344d5 3429 struct bound_minimal_symbol m;
17450429
PP
3430
3431 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3432 if (m.minsym == NULL)
17450429
PP
3433 {
3434 /* Avoid future lookups in this objfile. */
3b7344d5 3435 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
17450429
PP
3436 continue;
3437 }
3438 bp_objfile_data->overlay_msym = m;
3439 }
e62c965a 3440
77e371c0 3441 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
17450429 3442 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3443 bp_overlay_event,
3444 &internal_breakpoint_ops);
69de3c6a 3445 b->addr_string = xstrdup (func_name);
e62c965a 3446
69de3c6a
PP
3447 if (overlay_debugging == ovly_auto)
3448 {
3449 b->enable_state = bp_enabled;
3450 overlay_events_enabled = 1;
3451 }
3452 else
3453 {
3454 b->enable_state = bp_disabled;
3455 overlay_events_enabled = 0;
3456 }
e62c965a 3457 }
44702360 3458 update_global_location_list (UGLL_MAY_INSERT);
e62c965a
PP
3459}
3460
0fd8e87f 3461static void
af02033e 3462create_longjmp_master_breakpoint (void)
0fd8e87f 3463{
6c95b8df 3464 struct program_space *pspace;
6c95b8df
PA
3465 struct cleanup *old_chain;
3466
3467 old_chain = save_current_program_space ();
0fd8e87f 3468
6c95b8df 3469 ALL_PSPACES (pspace)
af02033e
PP
3470 {
3471 struct objfile *objfile;
3472
3473 set_current_program_space (pspace);
3474
3475 ALL_OBJFILES (objfile)
0fd8e87f 3476 {
af02033e
PP
3477 int i;
3478 struct gdbarch *gdbarch;
17450429 3479 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3480
af02033e 3481 gdbarch = get_objfile_arch (objfile);
0fd8e87f 3482
17450429
PP
3483 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3484
28106bc2
SDJ
3485 if (!bp_objfile_data->longjmp_searched)
3486 {
25f9533e
SDJ
3487 VEC (probe_p) *ret;
3488
3489 ret = find_probes_in_objfile (objfile, "libc", "longjmp");
3490 if (ret != NULL)
3491 {
3492 /* We are only interested in checking one element. */
3493 struct probe *p = VEC_index (probe_p, ret, 0);
3494
3495 if (!can_evaluate_probe_arguments (p))
3496 {
3497 /* We cannot use the probe interface here, because it does
3498 not know how to evaluate arguments. */
3499 VEC_free (probe_p, ret);
3500 ret = NULL;
3501 }
3502 }
3503 bp_objfile_data->longjmp_probes = ret;
28106bc2
SDJ
3504 bp_objfile_data->longjmp_searched = 1;
3505 }
3506
3507 if (bp_objfile_data->longjmp_probes != NULL)
3508 {
3509 int i;
3510 struct probe *probe;
3511 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3512
3513 for (i = 0;
3514 VEC_iterate (probe_p,
3515 bp_objfile_data->longjmp_probes,
3516 i, probe);
3517 ++i)
3518 {
3519 struct breakpoint *b;
3520
729662a5
TT
3521 b = create_internal_breakpoint (gdbarch,
3522 get_probe_address (probe,
3523 objfile),
28106bc2
SDJ
3524 bp_longjmp_master,
3525 &internal_breakpoint_ops);
3526 b->addr_string = xstrdup ("-probe-stap libc:longjmp");
3527 b->enable_state = bp_disabled;
3528 }
3529
3530 continue;
3531 }
3532
0569175e
TSD
3533 if (!gdbarch_get_longjmp_target_p (gdbarch))
3534 continue;
3535
17450429 3536 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
3537 {
3538 struct breakpoint *b;
af02033e 3539 const char *func_name;
17450429 3540 CORE_ADDR addr;
6c95b8df 3541
3b7344d5 3542 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
af02033e 3543 continue;
0fd8e87f 3544
17450429 3545 func_name = longjmp_names[i];
3b7344d5 3546 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
17450429 3547 {
3b7344d5 3548 struct bound_minimal_symbol m;
17450429
PP
3549
3550 m = lookup_minimal_symbol_text (func_name, objfile);
3b7344d5 3551 if (m.minsym == NULL)
17450429
PP
3552 {
3553 /* Prevent future lookups in this objfile. */
3b7344d5 3554 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
17450429
PP
3555 continue;
3556 }
3557 bp_objfile_data->longjmp_msym[i] = m;
3558 }
3559
77e371c0 3560 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
06edf0c0
PA
3561 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3562 &internal_breakpoint_ops);
af02033e
PP
3563 b->addr_string = xstrdup (func_name);
3564 b->enable_state = bp_disabled;
3565 }
0fd8e87f 3566 }
af02033e 3567 }
44702360 3568 update_global_location_list (UGLL_MAY_INSERT);
6c95b8df
PA
3569
3570 do_cleanups (old_chain);
0fd8e87f
UW
3571}
3572
af02033e 3573/* Create a master std::terminate breakpoint. */
aa7d318d 3574static void
af02033e 3575create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3576{
3577 struct program_space *pspace;
aa7d318d 3578 struct cleanup *old_chain;
af02033e 3579 const char *const func_name = "std::terminate()";
aa7d318d
TT
3580
3581 old_chain = save_current_program_space ();
3582
3583 ALL_PSPACES (pspace)
17450429
PP
3584 {
3585 struct objfile *objfile;
3586 CORE_ADDR addr;
3587
3588 set_current_program_space (pspace);
3589
aa7d318d
TT
3590 ALL_OBJFILES (objfile)
3591 {
3592 struct breakpoint *b;
17450429 3593 struct breakpoint_objfile_data *bp_objfile_data;
aa7d318d 3594
17450429 3595 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3596
3b7344d5 3597 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
17450429
PP
3598 continue;
3599
3b7344d5 3600 if (bp_objfile_data->terminate_msym.minsym == NULL)
17450429 3601 {
3b7344d5 3602 struct bound_minimal_symbol m;
17450429
PP
3603
3604 m = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5
TT
3605 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3606 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
17450429
PP
3607 {
3608 /* Prevent future lookups in this objfile. */
3b7344d5 3609 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
17450429
PP
3610 continue;
3611 }
3612 bp_objfile_data->terminate_msym = m;
3613 }
aa7d318d 3614
77e371c0 3615 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
17450429 3616 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3617 bp_std_terminate_master,
3618 &internal_breakpoint_ops);
aa7d318d
TT
3619 b->addr_string = xstrdup (func_name);
3620 b->enable_state = bp_disabled;
3621 }
17450429
PP
3622 }
3623
44702360 3624 update_global_location_list (UGLL_MAY_INSERT);
aa7d318d
TT
3625
3626 do_cleanups (old_chain);
3627}
3628
186c406b
TT
3629/* Install a master breakpoint on the unwinder's debug hook. */
3630
70221824 3631static void
186c406b
TT
3632create_exception_master_breakpoint (void)
3633{
3634 struct objfile *objfile;
17450429 3635 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
3636
3637 ALL_OBJFILES (objfile)
3638 {
17450429
PP
3639 struct breakpoint *b;
3640 struct gdbarch *gdbarch;
3641 struct breakpoint_objfile_data *bp_objfile_data;
3642 CORE_ADDR addr;
3643
3644 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3645
28106bc2
SDJ
3646 /* We prefer the SystemTap probe point if it exists. */
3647 if (!bp_objfile_data->exception_searched)
3648 {
25f9533e
SDJ
3649 VEC (probe_p) *ret;
3650
3651 ret = find_probes_in_objfile (objfile, "libgcc", "unwind");
3652
3653 if (ret != NULL)
3654 {
3655 /* We are only interested in checking one element. */
3656 struct probe *p = VEC_index (probe_p, ret, 0);
3657
3658 if (!can_evaluate_probe_arguments (p))
3659 {
3660 /* We cannot use the probe interface here, because it does
3661 not know how to evaluate arguments. */
3662 VEC_free (probe_p, ret);
3663 ret = NULL;
3664 }
3665 }
3666 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3667 bp_objfile_data->exception_searched = 1;
3668 }
3669
3670 if (bp_objfile_data->exception_probes != NULL)
3671 {
3672 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3673 int i;
3674 struct probe *probe;
3675
3676 for (i = 0;
3677 VEC_iterate (probe_p,
3678 bp_objfile_data->exception_probes,
3679 i, probe);
3680 ++i)
3681 {
3682 struct breakpoint *b;
3683
729662a5
TT
3684 b = create_internal_breakpoint (gdbarch,
3685 get_probe_address (probe,
3686 objfile),
28106bc2
SDJ
3687 bp_exception_master,
3688 &internal_breakpoint_ops);
3689 b->addr_string = xstrdup ("-probe-stap libgcc:unwind");
3690 b->enable_state = bp_disabled;
3691 }
3692
3693 continue;
3694 }
3695
3696 /* Otherwise, try the hook function. */
3697
3b7344d5 3698 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
17450429
PP
3699 continue;
3700
3701 gdbarch = get_objfile_arch (objfile);
186c406b 3702
3b7344d5 3703 if (bp_objfile_data->exception_msym.minsym == NULL)
186c406b 3704 {
3b7344d5 3705 struct bound_minimal_symbol debug_hook;
186c406b 3706
17450429 3707 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3b7344d5 3708 if (debug_hook.minsym == NULL)
17450429 3709 {
3b7344d5 3710 bp_objfile_data->exception_msym.minsym = &msym_not_found;
17450429
PP
3711 continue;
3712 }
3713
3714 bp_objfile_data->exception_msym = debug_hook;
186c406b 3715 }
17450429 3716
77e371c0 3717 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
17450429
PP
3718 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3719 &current_target);
06edf0c0
PA
3720 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3721 &internal_breakpoint_ops);
17450429
PP
3722 b->addr_string = xstrdup (func_name);
3723 b->enable_state = bp_disabled;
186c406b
TT
3724 }
3725
44702360 3726 update_global_location_list (UGLL_MAY_INSERT);
186c406b
TT
3727}
3728
c906108c 3729void
fba45db2 3730update_breakpoints_after_exec (void)
c906108c 3731{
35df4500 3732 struct breakpoint *b, *b_tmp;
876fa593 3733 struct bp_location *bploc, **bplocp_tmp;
c906108c 3734
25b22b0a
PA
3735 /* We're about to delete breakpoints from GDB's lists. If the
3736 INSERTED flag is true, GDB will try to lift the breakpoints by
3737 writing the breakpoints' "shadow contents" back into memory. The
3738 "shadow contents" are NOT valid after an exec, so GDB should not
3739 do that. Instead, the target is responsible from marking
3740 breakpoints out as soon as it detects an exec. We don't do that
3741 here instead, because there may be other attempts to delete
3742 breakpoints after detecting an exec and before reaching here. */
876fa593 3743 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3744 if (bploc->pspace == current_program_space)
3745 gdb_assert (!bploc->inserted);
c906108c 3746
35df4500 3747 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3748 {
6c95b8df
PA
3749 if (b->pspace != current_program_space)
3750 continue;
3751
4a64f543 3752 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3753 if (b->type == bp_shlib_event)
3754 {
3755 delete_breakpoint (b);
3756 continue;
3757 }
c906108c 3758
4a64f543 3759 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3760 if (b->type == bp_jit_event)
3761 {
3762 delete_breakpoint (b);
3763 continue;
3764 }
3765
1900040c 3766 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3767 as must overlay event and longjmp master breakpoints. */
3768 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3769 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3770 || b->type == bp_exception_master)
c4093a6a
JM
3771 {
3772 delete_breakpoint (b);
3773 continue;
3774 }
3775
4a64f543 3776 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3777 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3778 {
3779 delete_breakpoint (b);
3780 continue;
3781 }
3782
611c83ae
PA
3783 /* Longjmp and longjmp-resume breakpoints are also meaningless
3784 after an exec. */
186c406b 3785 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3786 || b->type == bp_longjmp_call_dummy
186c406b 3787 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3788 {
3789 delete_breakpoint (b);
3790 continue;
3791 }
3792
ce78b96d
JB
3793 if (b->type == bp_catchpoint)
3794 {
3795 /* For now, none of the bp_catchpoint breakpoints need to
3796 do anything at this point. In the future, if some of
3797 the catchpoints need to something, we will need to add
3798 a new method, and call this method from here. */
3799 continue;
3800 }
3801
c5aa993b
JM
3802 /* bp_finish is a special case. The only way we ought to be able
3803 to see one of these when an exec() has happened, is if the user
3804 caught a vfork, and then said "finish". Ordinarily a finish just
3805 carries them to the call-site of the current callee, by setting
3806 a temporary bp there and resuming. But in this case, the finish
3807 will carry them entirely through the vfork & exec.
3808
3809 We don't want to allow a bp_finish to remain inserted now. But
3810 we can't safely delete it, 'cause finish_command has a handle to
3811 the bp on a bpstat, and will later want to delete it. There's a
3812 chance (and I've seen it happen) that if we delete the bp_finish
3813 here, that its storage will get reused by the time finish_command
3814 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3815 We really must allow finish_command to delete a bp_finish.
3816
e5dd4106 3817 In the absence of a general solution for the "how do we know
53a5351d
JM
3818 it's safe to delete something others may have handles to?"
3819 problem, what we'll do here is just uninsert the bp_finish, and
3820 let finish_command delete it.
3821
3822 (We know the bp_finish is "doomed" in the sense that it's
3823 momentary, and will be deleted as soon as finish_command sees
3824 the inferior stopped. So it doesn't matter that the bp's
3825 address is probably bogus in the new a.out, unlike e.g., the
3826 solib breakpoints.) */
c5aa993b 3827
c5aa993b
JM
3828 if (b->type == bp_finish)
3829 {
3830 continue;
3831 }
3832
3833 /* Without a symbolic address, we have little hope of the
3834 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3835 a.out. */
c5aa993b
JM
3836 if (b->addr_string == NULL)
3837 {
3838 delete_breakpoint (b);
3839 continue;
3840 }
c5aa993b 3841 }
c906108c
SS
3842}
3843
3844int
d80ee84f 3845detach_breakpoints (ptid_t ptid)
c906108c 3846{
35df4500 3847 struct bp_location *bl, **blp_tmp;
3a1bae8e 3848 int val = 0;
ce696e05 3849 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 3850 struct inferior *inf = current_inferior ();
c5aa993b 3851
dfd4cc63 3852 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
8a3fe4f8 3853 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3854
6c95b8df 3855 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3856 inferior_ptid = ptid;
35df4500 3857 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3858 {
35df4500 3859 if (bl->pspace != inf->pspace)
6c95b8df
PA
3860 continue;
3861
bd9673a4
PW
3862 /* This function must physically remove breakpoints locations
3863 from the specified ptid, without modifying the breakpoint
3864 package's state. Locations of type bp_loc_other are only
3865 maintained at GDB side. So, there is no need to remove
3866 these bp_loc_other locations. Moreover, removing these
3867 would modify the breakpoint package's state. */
3868 if (bl->loc_type == bp_loc_other)
3869 continue;
3870
35df4500
TJB
3871 if (bl->inserted)
3872 val |= remove_breakpoint_1 (bl, mark_inserted);
c5aa993b 3873 }
d03285ec
UW
3874
3875 /* Detach single-step breakpoints as well. */
3876 detach_single_step_breakpoints ();
3877
ce696e05 3878 do_cleanups (old_chain);
3a1bae8e 3879 return val;
c906108c
SS
3880}
3881
35df4500 3882/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3883 Note that this is used to detach breakpoints from a child fork.
3884 When we get here, the child isn't in the inferior list, and neither
3885 do we have objects to represent its address space --- we should
35df4500 3886 *not* look at bl->pspace->aspace here. */
6c95b8df 3887
c906108c 3888static int
35df4500 3889remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
c906108c
SS
3890{
3891 int val;
c5aa993b 3892
35df4500
TJB
3893 /* BL is never in moribund_locations by our callers. */
3894 gdb_assert (bl->owner != NULL);
2bdf28a0 3895
35df4500 3896 if (bl->owner->enable_state == bp_permanent)
c2c6d25f
JM
3897 /* Permanent breakpoints cannot be inserted or removed. */
3898 return 0;
3899
74960c60
VP
3900 /* The type of none suggests that owner is actually deleted.
3901 This should not ever happen. */
35df4500 3902 gdb_assert (bl->owner->type != bp_none);
0bde7532 3903
35df4500
TJB
3904 if (bl->loc_type == bp_loc_software_breakpoint
3905 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3906 {
c02f5703
MS
3907 /* "Normal" instruction breakpoint: either the standard
3908 trap-instruction bp (bp_breakpoint), or a
3909 bp_hardware_breakpoint. */
3910
3911 /* First check to see if we have to handle an overlay. */
3912 if (overlay_debugging == ovly_off
35df4500
TJB
3913 || bl->section == NULL
3914 || !(section_is_overlay (bl->section)))
c02f5703
MS
3915 {
3916 /* No overlay handling: just remove the breakpoint. */
08351840
PA
3917
3918 /* If we're trying to uninsert a memory breakpoint that we
3919 know is set in a dynamic object that is marked
3920 shlib_disabled, then either the dynamic object was
3921 removed with "remove-symbol-file" or with
3922 "nosharedlibrary". In the former case, we don't know
3923 whether another dynamic object might have loaded over the
3924 breakpoint's address -- the user might well let us know
3925 about it next with add-symbol-file (the whole point of
d03de421 3926 add-symbol-file is letting the user manually maintain a
08351840
PA
3927 list of dynamically loaded objects). If we have the
3928 breakpoint's shadow memory, that is, this is a software
3929 breakpoint managed by GDB, check whether the breakpoint
3930 is still inserted in memory, to avoid overwriting wrong
3931 code with stale saved shadow contents. Note that HW
3932 breakpoints don't have shadow memory, as they're
3933 implemented using a mechanism that is not dependent on
3934 being able to modify the target's memory, and as such
3935 they should always be removed. */
3936 if (bl->shlib_disabled
3937 && bl->target_info.shadow_len != 0
3938 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3939 val = 0;
3940 else
3941 val = bl->owner->ops->remove_location (bl);
c02f5703 3942 }
c906108c
SS
3943 else
3944 {
4a64f543 3945 /* This breakpoint is in an overlay section.
c02f5703
MS
3946 Did we set a breakpoint at the LMA? */
3947 if (!overlay_events_enabled)
3948 {
3949 /* Yes -- overlay event support is not active, so we
3950 should have set a breakpoint at the LMA. Remove it.
3951 */
c02f5703
MS
3952 /* Ignore any failures: if the LMA is in ROM, we will
3953 have already warned when we failed to insert it. */
35df4500
TJB
3954 if (bl->loc_type == bp_loc_hardware_breakpoint)
3955 target_remove_hw_breakpoint (bl->gdbarch,
3956 &bl->overlay_target_info);
c02f5703 3957 else
35df4500
TJB
3958 target_remove_breakpoint (bl->gdbarch,
3959 &bl->overlay_target_info);
c02f5703
MS
3960 }
3961 /* Did we set a breakpoint at the VMA?
3962 If so, we will have marked the breakpoint 'inserted'. */
35df4500 3963 if (bl->inserted)
c906108c 3964 {
c02f5703
MS
3965 /* Yes -- remove it. Previously we did not bother to
3966 remove the breakpoint if the section had been
3967 unmapped, but let's not rely on that being safe. We
3968 don't know what the overlay manager might do. */
aa67235e
UW
3969
3970 /* However, we should remove *software* breakpoints only
3971 if the section is still mapped, or else we overwrite
3972 wrong code with the saved shadow contents. */
348d480f
PA
3973 if (bl->loc_type == bp_loc_hardware_breakpoint
3974 || section_is_mapped (bl->section))
3975 val = bl->owner->ops->remove_location (bl);
aa67235e
UW
3976 else
3977 val = 0;
c906108c 3978 }
c02f5703
MS
3979 else
3980 {
3981 /* No -- not inserted, so no need to remove. No error. */
3982 val = 0;
3983 }
c906108c 3984 }
879d1e6b 3985
08351840
PA
3986 /* In some cases, we might not be able to remove a breakpoint in
3987 a shared library that has already been removed, but we have
3988 not yet processed the shlib unload event. Similarly for an
3989 unloaded add-symbol-file object - the user might not yet have
3990 had the chance to remove-symbol-file it. shlib_disabled will
3991 be set if the library/object has already been removed, but
3992 the breakpoint hasn't been uninserted yet, e.g., after
3993 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3994 always-inserted mode. */
076855f9 3995 if (val
08351840
PA
3996 && (bl->loc_type == bp_loc_software_breakpoint
3997 && (bl->shlib_disabled
3998 || solib_name_from_address (bl->pspace, bl->address)
d03de421
PA
3999 || shared_objfile_contains_address_p (bl->pspace,
4000 bl->address))))
879d1e6b
UW
4001 val = 0;
4002
c906108c
SS
4003 if (val)
4004 return val;
35df4500 4005 bl->inserted = (is == mark_inserted);
c906108c 4006 }
35df4500 4007 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 4008 {
77b06cd7
TJB
4009 gdb_assert (bl->owner->ops != NULL
4010 && bl->owner->ops->remove_location != NULL);
4011
35df4500 4012 bl->inserted = (is == mark_inserted);
77b06cd7 4013 bl->owner->ops->remove_location (bl);
2e70b7b9 4014
c906108c 4015 /* Failure to remove any of the hardware watchpoints comes here. */
35df4500 4016 if ((is == mark_uninserted) && (bl->inserted))
8a3fe4f8 4017 warning (_("Could not remove hardware watchpoint %d."),
35df4500 4018 bl->owner->number);
c906108c 4019 }
35df4500
TJB
4020 else if (bl->owner->type == bp_catchpoint
4021 && breakpoint_enabled (bl->owner)
4022 && !bl->duplicate)
ce78b96d 4023 {
77b06cd7
TJB
4024 gdb_assert (bl->owner->ops != NULL
4025 && bl->owner->ops->remove_location != NULL);
ce78b96d 4026
77b06cd7 4027 val = bl->owner->ops->remove_location (bl);
ce78b96d
JB
4028 if (val)
4029 return val;
77b06cd7 4030
35df4500 4031 bl->inserted = (is == mark_inserted);
ce78b96d 4032 }
c906108c
SS
4033
4034 return 0;
4035}
4036
6c95b8df 4037static int
35df4500 4038remove_breakpoint (struct bp_location *bl, insertion_state_t is)
6c95b8df
PA
4039{
4040 int ret;
4041 struct cleanup *old_chain;
4042
35df4500
TJB
4043 /* BL is never in moribund_locations by our callers. */
4044 gdb_assert (bl->owner != NULL);
2bdf28a0 4045
35df4500 4046 if (bl->owner->enable_state == bp_permanent)
6c95b8df
PA
4047 /* Permanent breakpoints cannot be inserted or removed. */
4048 return 0;
4049
4050 /* The type of none suggests that owner is actually deleted.
4051 This should not ever happen. */
35df4500 4052 gdb_assert (bl->owner->type != bp_none);
6c95b8df
PA
4053
4054 old_chain = save_current_space_and_thread ();
4055
35df4500 4056 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 4057
35df4500 4058 ret = remove_breakpoint_1 (bl, is);
6c95b8df
PA
4059
4060 do_cleanups (old_chain);
4061 return ret;
4062}
4063
c906108c
SS
4064/* Clear the "inserted" flag in all breakpoints. */
4065
25b22b0a 4066void
fba45db2 4067mark_breakpoints_out (void)
c906108c 4068{
35df4500 4069 struct bp_location *bl, **blp_tmp;
c906108c 4070
35df4500
TJB
4071 ALL_BP_LOCATIONS (bl, blp_tmp)
4072 if (bl->pspace == current_program_space)
4073 bl->inserted = 0;
c906108c
SS
4074}
4075
53a5351d
JM
4076/* Clear the "inserted" flag in all breakpoints and delete any
4077 breakpoints which should go away between runs of the program.
c906108c
SS
4078
4079 Plus other such housekeeping that has to be done for breakpoints
4080 between runs.
4081
53a5351d
JM
4082 Note: this function gets called at the end of a run (by
4083 generic_mourn_inferior) and when a run begins (by
4a64f543 4084 init_wait_for_inferior). */
c906108c
SS
4085
4086
4087
4088void
fba45db2 4089breakpoint_init_inferior (enum inf_context context)
c906108c 4090{
35df4500
TJB
4091 struct breakpoint *b, *b_tmp;
4092 struct bp_location *bl, **blp_tmp;
1c5cfe86 4093 int ix;
6c95b8df 4094 struct program_space *pspace = current_program_space;
c906108c 4095
50c71eaf
PA
4096 /* If breakpoint locations are shared across processes, then there's
4097 nothing to do. */
f5656ead 4098 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
4099 return;
4100
35df4500 4101 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 4102 {
35df4500
TJB
4103 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
4104 if (bl->pspace == pspace
4105 && bl->owner->enable_state != bp_permanent)
4106 bl->inserted = 0;
6c95b8df 4107 }
075f6582 4108
35df4500 4109 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 4110 {
6c95b8df
PA
4111 if (b->loc && b->loc->pspace != pspace)
4112 continue;
4113
c5aa993b
JM
4114 switch (b->type)
4115 {
4116 case bp_call_dummy:
e2e4d78b 4117 case bp_longjmp_call_dummy:
c906108c 4118
c5aa993b 4119 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
4120 cause problems when the inferior is rerun, so we better get
4121 rid of it. */
4122
4123 case bp_watchpoint_scope:
4124
4125 /* Also get rid of scope breakpoints. */
4126
4127 case bp_shlib_event:
4128
4129 /* Also remove solib event breakpoints. Their addresses may
4130 have changed since the last time we ran the program.
4131 Actually we may now be debugging against different target;
4132 and so the solib backend that installed this breakpoint may
4133 not be used in by the target. E.g.,
4134
4135 (gdb) file prog-linux
4136 (gdb) run # native linux target
4137 ...
4138 (gdb) kill
4139 (gdb) file prog-win.exe
4140 (gdb) tar rem :9999 # remote Windows gdbserver.
4141 */
c906108c 4142
f59f708a
PA
4143 case bp_step_resume:
4144
4145 /* Also remove step-resume breakpoints. */
4146
c5aa993b
JM
4147 delete_breakpoint (b);
4148 break;
c906108c 4149
c5aa993b
JM
4150 case bp_watchpoint:
4151 case bp_hardware_watchpoint:
4152 case bp_read_watchpoint:
4153 case bp_access_watchpoint:
3a5c3e22
PA
4154 {
4155 struct watchpoint *w = (struct watchpoint *) b;
c906108c 4156
3a5c3e22
PA
4157 /* Likewise for watchpoints on local expressions. */
4158 if (w->exp_valid_block != NULL)
4159 delete_breakpoint (b);
4160 else if (context == inf_starting)
4161 {
4162 /* Reset val field to force reread of starting value in
4163 insert_breakpoints. */
4164 if (w->val)
4165 value_free (w->val);
4166 w->val = NULL;
4167 w->val_valid = 0;
c860120c 4168 }
3a5c3e22 4169 }
c5aa993b
JM
4170 break;
4171 default:
c5aa993b
JM
4172 break;
4173 }
4174 }
1c5cfe86
PA
4175
4176 /* Get rid of the moribund locations. */
35df4500
TJB
4177 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
4178 decref_bp_location (&bl);
1c5cfe86 4179 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
4180}
4181
6c95b8df
PA
4182/* These functions concern about actual breakpoints inserted in the
4183 target --- to e.g. check if we need to do decr_pc adjustment or if
4184 we need to hop over the bkpt --- so we check for address space
4185 match, not program space. */
4186
c2c6d25f
JM
4187/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
4188 exists at PC. It returns ordinary_breakpoint_here if it's an
4189 ordinary breakpoint, or permanent_breakpoint_here if it's a
4190 permanent breakpoint.
4191 - When continuing from a location with an ordinary breakpoint, we
4192 actually single step once before calling insert_breakpoints.
e5dd4106 4193 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
4194 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
4195 the target, to advance the PC past the breakpoint. */
c906108c 4196
c2c6d25f 4197enum breakpoint_here
6c95b8df 4198breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 4199{
35df4500 4200 struct bp_location *bl, **blp_tmp;
c2c6d25f 4201 int any_breakpoint_here = 0;
c906108c 4202
35df4500 4203 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 4204 {
35df4500
TJB
4205 if (bl->loc_type != bp_loc_software_breakpoint
4206 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4207 continue;
4208
f1310107 4209 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500
TJB
4210 if ((breakpoint_enabled (bl->owner)
4211 || bl->owner->enable_state == bp_permanent)
f1310107 4212 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
4213 {
4214 if (overlay_debugging
35df4500
TJB
4215 && section_is_overlay (bl->section)
4216 && !section_is_mapped (bl->section))
075f6582 4217 continue; /* unmapped overlay -- can't be a match */
35df4500 4218 else if (bl->owner->enable_state == bp_permanent)
075f6582
DJ
4219 return permanent_breakpoint_here;
4220 else
4221 any_breakpoint_here = 1;
4222 }
4223 }
c906108c 4224
c2c6d25f 4225 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
4226}
4227
1c5cfe86
PA
4228/* Return true if there's a moribund breakpoint at PC. */
4229
4230int
6c95b8df 4231moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
4232{
4233 struct bp_location *loc;
4234 int ix;
4235
4236 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 4237 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
4238 return 1;
4239
4240 return 0;
4241}
c2c6d25f 4242
c36b740a 4243/* Returns non-zero if there's a breakpoint inserted at PC, which is
4a64f543
MS
4244 inserted using regular breakpoint_chain / bp_location array
4245 mechanism. This does not check for single-step breakpoints, which
4246 are inserted and removed using direct target manipulation. */
c906108c
SS
4247
4248int
4a64f543
MS
4249regular_breakpoint_inserted_here_p (struct address_space *aspace,
4250 CORE_ADDR pc)
c906108c 4251{
35df4500 4252 struct bp_location *bl, **blp_tmp;
c906108c 4253
35df4500 4254 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 4255 {
35df4500
TJB
4256 if (bl->loc_type != bp_loc_software_breakpoint
4257 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4258 continue;
4259
35df4500 4260 if (bl->inserted
f1310107 4261 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
4262 {
4263 if (overlay_debugging
35df4500
TJB
4264 && section_is_overlay (bl->section)
4265 && !section_is_mapped (bl->section))
075f6582
DJ
4266 continue; /* unmapped overlay -- can't be a match */
4267 else
4268 return 1;
4269 }
c5aa993b 4270 }
c36b740a
VP
4271 return 0;
4272}
4273
4274/* Returns non-zero iff there's either regular breakpoint
4275 or a single step breakpoint inserted at PC. */
4276
4277int
6c95b8df 4278breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c36b740a 4279{
6c95b8df 4280 if (regular_breakpoint_inserted_here_p (aspace, pc))
c36b740a 4281 return 1;
c906108c 4282
6c95b8df 4283 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
4284 return 1;
4285
c906108c
SS
4286 return 0;
4287}
4288
ef370185
JB
4289/* Ignoring deprecated raw breakpoints, return non-zero iff there is a
4290 software breakpoint inserted at PC. */
4fa8626c 4291
ef370185
JB
4292static struct bp_location *
4293find_non_raw_software_breakpoint_inserted_here (struct address_space *aspace,
4294 CORE_ADDR pc)
4fa8626c 4295{
35df4500 4296 struct bp_location *bl, **blp_tmp;
4fa8626c 4297
35df4500 4298 ALL_BP_LOCATIONS (bl, blp_tmp)
4fa8626c 4299 {
35df4500 4300 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4301 continue;
4302
35df4500
TJB
4303 if (bl->inserted
4304 && breakpoint_address_match (bl->pspace->aspace, bl->address,
6c95b8df 4305 aspace, pc))
4fa8626c
DJ
4306 {
4307 if (overlay_debugging
35df4500
TJB
4308 && section_is_overlay (bl->section)
4309 && !section_is_mapped (bl->section))
4fa8626c
DJ
4310 continue; /* unmapped overlay -- can't be a match */
4311 else
ef370185 4312 return bl;
4fa8626c
DJ
4313 }
4314 }
4315
ef370185
JB
4316 return NULL;
4317}
4318
4319/* This function returns non-zero iff there is a software breakpoint
4320 inserted at PC. */
4321
4322int
4323software_breakpoint_inserted_here_p (struct address_space *aspace,
4324 CORE_ADDR pc)
4325{
4326 if (find_non_raw_software_breakpoint_inserted_here (aspace, pc) != NULL)
4327 return 1;
4328
1aafd4da 4329 /* Also check for software single-step breakpoints. */
6c95b8df 4330 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
4331 return 1;
4332
4fa8626c
DJ
4333 return 0;
4334}
4335
9093389c
PA
4336int
4337hardware_watchpoint_inserted_in_range (struct address_space *aspace,
4338 CORE_ADDR addr, ULONGEST len)
4339{
4340 struct breakpoint *bpt;
4341
4342 ALL_BREAKPOINTS (bpt)
4343 {
4344 struct bp_location *loc;
4345
4346 if (bpt->type != bp_hardware_watchpoint
4347 && bpt->type != bp_access_watchpoint)
4348 continue;
4349
4350 if (!breakpoint_enabled (bpt))
4351 continue;
4352
4353 for (loc = bpt->loc; loc; loc = loc->next)
4354 if (loc->pspace->aspace == aspace && loc->inserted)
4355 {
4356 CORE_ADDR l, h;
4357
4358 /* Check for intersection. */
4359 l = max (loc->address, addr);
4360 h = min (loc->address + loc->length, addr + len);
4361 if (l < h)
4362 return 1;
4363 }
4364 }
4365 return 0;
4366}
4367
075f6582
DJ
4368/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
4369 PC is valid for process/thread PTID. */
c906108c
SS
4370
4371int
6c95b8df
PA
4372breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc,
4373 ptid_t ptid)
c906108c 4374{
35df4500 4375 struct bp_location *bl, **blp_tmp;
4a306c9a 4376 /* The thread and task IDs associated to PTID, computed lazily. */
a6f1cd96 4377 int thread = -1;
4a306c9a 4378 int task = 0;
a6f1cd96 4379
35df4500 4380 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 4381 {
35df4500
TJB
4382 if (bl->loc_type != bp_loc_software_breakpoint
4383 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4384 continue;
4385
35df4500
TJB
4386 /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */
4387 if (!breakpoint_enabled (bl->owner)
4388 && bl->owner->enable_state != bp_permanent)
a6f1cd96
JB
4389 continue;
4390
f1310107 4391 if (!breakpoint_location_address_match (bl, aspace, pc))
a6f1cd96
JB
4392 continue;
4393
35df4500 4394 if (bl->owner->thread != -1)
075f6582 4395 {
a6f1cd96
JB
4396 /* This is a thread-specific breakpoint. Check that ptid
4397 matches that thread. If thread hasn't been computed yet,
4398 it is now time to do so. */
4399 if (thread == -1)
4400 thread = pid_to_thread_id (ptid);
35df4500 4401 if (bl->owner->thread != thread)
a6f1cd96 4402 continue;
075f6582 4403 }
a6f1cd96 4404
35df4500 4405 if (bl->owner->task != 0)
4a306c9a
JB
4406 {
4407 /* This is a task-specific breakpoint. Check that ptid
4408 matches that task. If task hasn't been computed yet,
4409 it is now time to do so. */
4410 if (task == 0)
4411 task = ada_get_task_number (ptid);
35df4500 4412 if (bl->owner->task != task)
4a306c9a
JB
4413 continue;
4414 }
4415
a6f1cd96 4416 if (overlay_debugging
35df4500
TJB
4417 && section_is_overlay (bl->section)
4418 && !section_is_mapped (bl->section))
a6f1cd96
JB
4419 continue; /* unmapped overlay -- can't be a match */
4420
4421 return 1;
c5aa993b 4422 }
c906108c
SS
4423
4424 return 0;
4425}
c906108c 4426\f
c5aa993b 4427
c906108c
SS
4428/* bpstat stuff. External routines' interfaces are documented
4429 in breakpoint.h. */
4430
4431int
c326b90e 4432is_catchpoint (struct breakpoint *ep)
c906108c 4433{
533be4dd 4434 return (ep->type == bp_catchpoint);
c906108c
SS
4435}
4436
f431efe5
PA
4437/* Frees any storage that is part of a bpstat. Does not walk the
4438 'next' chain. */
4439
4440static void
198757a8
VP
4441bpstat_free (bpstat bs)
4442{
4443 if (bs->old_val != NULL)
4444 value_free (bs->old_val);
9add0f1b 4445 decref_counted_command_line (&bs->commands);
f431efe5 4446 decref_bp_location (&bs->bp_location_at);
198757a8
VP
4447 xfree (bs);
4448}
4449
c906108c
SS
4450/* Clear a bpstat so that it says we are not at any breakpoint.
4451 Also free any storage that is part of a bpstat. */
4452
4453void
fba45db2 4454bpstat_clear (bpstat *bsp)
c906108c
SS
4455{
4456 bpstat p;
4457 bpstat q;
4458
4459 if (bsp == 0)
4460 return;
4461 p = *bsp;
4462 while (p != NULL)
4463 {
4464 q = p->next;
198757a8 4465 bpstat_free (p);
c906108c
SS
4466 p = q;
4467 }
4468 *bsp = NULL;
4469}
4470
4471/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4472 is part of the bpstat is copied as well. */
4473
4474bpstat
fba45db2 4475bpstat_copy (bpstat bs)
c906108c
SS
4476{
4477 bpstat p = NULL;
4478 bpstat tmp;
4479 bpstat retval = NULL;
4480
4481 if (bs == NULL)
4482 return bs;
4483
4484 for (; bs != NULL; bs = bs->next)
4485 {
4486 tmp = (bpstat) xmalloc (sizeof (*tmp));
4487 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 4488 incref_counted_command_line (tmp->commands);
f431efe5 4489 incref_bp_location (tmp->bp_location_at);
31cc81e9 4490 if (bs->old_val != NULL)
3c3185ac
JK
4491 {
4492 tmp->old_val = value_copy (bs->old_val);
4493 release_value (tmp->old_val);
4494 }
31cc81e9 4495
c906108c
SS
4496 if (p == NULL)
4497 /* This is the first thing in the chain. */
4498 retval = tmp;
4499 else
4500 p->next = tmp;
4501 p = tmp;
4502 }
4503 p->next = NULL;
4504 return retval;
4505}
4506
4a64f543 4507/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4508
4509bpstat
fba45db2 4510bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4511{
c5aa993b
JM
4512 if (bsp == NULL)
4513 return NULL;
c906108c 4514
c5aa993b
JM
4515 for (; bsp != NULL; bsp = bsp->next)
4516 {
f431efe5 4517 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4518 return bsp;
4519 }
c906108c
SS
4520 return NULL;
4521}
4522
ab04a2af
TT
4523/* See breakpoint.h. */
4524
47591c29 4525int
427cd150 4526bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4527{
ab04a2af
TT
4528 for (; bsp != NULL; bsp = bsp->next)
4529 {
427cd150
TT
4530 if (bsp->breakpoint_at == NULL)
4531 {
4532 /* A moribund location can never explain a signal other than
4533 GDB_SIGNAL_TRAP. */
4534 if (sig == GDB_SIGNAL_TRAP)
47591c29 4535 return 1;
427cd150
TT
4536 }
4537 else
47591c29
PA
4538 {
4539 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4540 sig))
4541 return 1;
4542 }
ab04a2af
TT
4543 }
4544
47591c29 4545 return 0;
ab04a2af
TT
4546}
4547
4a64f543
MS
4548/* Put in *NUM the breakpoint number of the first breakpoint we are
4549 stopped at. *BSP upon return is a bpstat which points to the
4550 remaining breakpoints stopped at (but which is not guaranteed to be
4551 good for anything but further calls to bpstat_num).
4552
8671a17b
PA
4553 Return 0 if passed a bpstat which does not indicate any breakpoints.
4554 Return -1 if stopped at a breakpoint that has been deleted since
4555 we set it.
4556 Return 1 otherwise. */
c906108c
SS
4557
4558int
8671a17b 4559bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4560{
4561 struct breakpoint *b;
4562
4563 if ((*bsp) == NULL)
4564 return 0; /* No more breakpoint values */
8671a17b 4565
4a64f543
MS
4566 /* We assume we'll never have several bpstats that correspond to a
4567 single breakpoint -- otherwise, this function might return the
4568 same number more than once and this will look ugly. */
f431efe5 4569 b = (*bsp)->breakpoint_at;
8671a17b
PA
4570 *bsp = (*bsp)->next;
4571 if (b == NULL)
4572 return -1; /* breakpoint that's been deleted since */
4573
4574 *num = b->number; /* We have its number */
4575 return 1;
c906108c
SS
4576}
4577
e93ca019 4578/* See breakpoint.h. */
c906108c
SS
4579
4580void
e93ca019 4581bpstat_clear_actions (void)
c906108c 4582{
e93ca019
JK
4583 struct thread_info *tp;
4584 bpstat bs;
4585
4586 if (ptid_equal (inferior_ptid, null_ptid))
4587 return;
4588
4589 tp = find_thread_ptid (inferior_ptid);
4590 if (tp == NULL)
4591 return;
4592
4593 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4594 {
9add0f1b 4595 decref_counted_command_line (&bs->commands);
abf85f46 4596
c906108c
SS
4597 if (bs->old_val != NULL)
4598 {
4599 value_free (bs->old_val);
4600 bs->old_val = NULL;
4601 }
4602 }
4603}
4604
f3b1572e
PA
4605/* Called when a command is about to proceed the inferior. */
4606
4607static void
4608breakpoint_about_to_proceed (void)
4609{
4610 if (!ptid_equal (inferior_ptid, null_ptid))
4611 {
4612 struct thread_info *tp = inferior_thread ();
4613
4614 /* Allow inferior function calls in breakpoint commands to not
4615 interrupt the command list. When the call finishes
4616 successfully, the inferior will be standing at the same
4617 breakpoint as if nothing happened. */
16c381f0 4618 if (tp->control.in_infcall)
f3b1572e
PA
4619 return;
4620 }
4621
4622 breakpoint_proceeded = 1;
4623}
4624
4a64f543
MS
4625/* Stub for cleaning up our state if we error-out of a breakpoint
4626 command. */
c906108c 4627static void
4efb68b1 4628cleanup_executing_breakpoints (void *ignore)
c906108c
SS
4629{
4630 executing_breakpoint_commands = 0;
4631}
4632
abf85f46
JK
4633/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4634 or its equivalent. */
4635
4636static int
4637command_line_is_silent (struct command_line *cmd)
4638{
4639 return cmd && (strcmp ("silent", cmd->line) == 0
4640 || (xdb_commands && strcmp ("Q", cmd->line) == 0));
4641}
4642
4a64f543
MS
4643/* Execute all the commands associated with all the breakpoints at
4644 this location. Any of these commands could cause the process to
4645 proceed beyond this point, etc. We look out for such changes by
4646 checking the global "breakpoint_proceeded" after each command.
c906108c 4647
347bddb7
PA
4648 Returns true if a breakpoint command resumed the inferior. In that
4649 case, it is the caller's responsibility to recall it again with the
4650 bpstat of the current thread. */
4651
4652static int
4653bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4654{
4655 bpstat bs;
4656 struct cleanup *old_chain;
347bddb7 4657 int again = 0;
c906108c
SS
4658
4659 /* Avoid endless recursion if a `source' command is contained
4660 in bs->commands. */
4661 if (executing_breakpoint_commands)
347bddb7 4662 return 0;
c906108c
SS
4663
4664 executing_breakpoint_commands = 1;
4665 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
4666
cf6c5ffb
TT
4667 prevent_dont_repeat ();
4668
4a64f543 4669 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4670 bs = *bsp;
4671
4672 breakpoint_proceeded = 0;
4673 for (; bs != NULL; bs = bs->next)
4674 {
9add0f1b 4675 struct counted_command_line *ccmd;
6c50ab1c
JB
4676 struct command_line *cmd;
4677 struct cleanup *this_cmd_tree_chain;
4678
4679 /* Take ownership of the BSP's command tree, if it has one.
4680
4681 The command tree could legitimately contain commands like
4682 'step' and 'next', which call clear_proceed_status, which
4683 frees stop_bpstat's command tree. To make sure this doesn't
4684 free the tree we're executing out from under us, we need to
4685 take ownership of the tree ourselves. Since a given bpstat's
4686 commands are only executed once, we don't need to copy it; we
4687 can clear the pointer in the bpstat, and make sure we free
4688 the tree when we're done. */
9add0f1b
TT
4689 ccmd = bs->commands;
4690 bs->commands = NULL;
abf85f46
JK
4691 this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd);
4692 cmd = ccmd ? ccmd->commands : NULL;
4693 if (command_line_is_silent (cmd))
4694 {
4695 /* The action has been already done by bpstat_stop_status. */
4696 cmd = cmd->next;
4697 }
6c50ab1c 4698
c906108c
SS
4699 while (cmd != NULL)
4700 {
4701 execute_control_command (cmd);
4702
4703 if (breakpoint_proceeded)
4704 break;
4705 else
4706 cmd = cmd->next;
4707 }
6c50ab1c
JB
4708
4709 /* We can free this command tree now. */
4710 do_cleanups (this_cmd_tree_chain);
4711
c906108c 4712 if (breakpoint_proceeded)
32c1e744
VP
4713 {
4714 if (target_can_async_p ())
347bddb7
PA
4715 /* If we are in async mode, then the target might be still
4716 running, not stopped at any breakpoint, so nothing for
4717 us to do here -- just return to the event loop. */
4718 ;
32c1e744
VP
4719 else
4720 /* In sync mode, when execute_control_command returns
4721 we're already standing on the next breakpoint.
347bddb7
PA
4722 Breakpoint commands for that stop were not run, since
4723 execute_command does not run breakpoint commands --
4724 only command_line_handler does, but that one is not
4725 involved in execution of breakpoint commands. So, we
4726 can now execute breakpoint commands. It should be
4727 noted that making execute_command do bpstat actions is
4728 not an option -- in this case we'll have recursive
4729 invocation of bpstat for each breakpoint with a
4730 command, and can easily blow up GDB stack. Instead, we
4731 return true, which will trigger the caller to recall us
4732 with the new stop_bpstat. */
4733 again = 1;
4734 break;
32c1e744 4735 }
c906108c 4736 }
c2b8ed2c 4737 do_cleanups (old_chain);
347bddb7
PA
4738 return again;
4739}
4740
4741void
4742bpstat_do_actions (void)
4743{
353d1d73
JK
4744 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4745
347bddb7
PA
4746 /* Do any commands attached to breakpoint we are stopped at. */
4747 while (!ptid_equal (inferior_ptid, null_ptid)
4748 && target_has_execution
4749 && !is_exited (inferior_ptid)
4750 && !is_executing (inferior_ptid))
4751 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4752 and only return when it is stopped at the next breakpoint, we
4753 keep doing breakpoint actions until it returns false to
4754 indicate the inferior was not resumed. */
16c381f0 4755 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 4756 break;
353d1d73
JK
4757
4758 discard_cleanups (cleanup_if_error);
c906108c
SS
4759}
4760
fa4727a6
DJ
4761/* Print out the (old or new) value associated with a watchpoint. */
4762
4763static void
4764watchpoint_value_print (struct value *val, struct ui_file *stream)
4765{
4766 if (val == NULL)
4767 fprintf_unfiltered (stream, _("<unreadable>"));
4768 else
79a45b7d
TT
4769 {
4770 struct value_print_options opts;
4771 get_user_print_options (&opts);
4772 value_print (val, stream, &opts);
4773 }
fa4727a6
DJ
4774}
4775
e514a9d6 4776/* Generic routine for printing messages indicating why we
4a64f543 4777 stopped. The behavior of this function depends on the value
e514a9d6
JM
4778 'print_it' in the bpstat structure. Under some circumstances we
4779 may decide not to print anything here and delegate the task to
4a64f543 4780 normal_stop(). */
e514a9d6
JM
4781
4782static enum print_stop_action
4783print_bp_stop_message (bpstat bs)
4784{
4785 switch (bs->print_it)
4786 {
4787 case print_it_noop:
4a64f543 4788 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4789 return PRINT_UNKNOWN;
4790 break;
4791
4792 case print_it_done:
4793 /* We still want to print the frame, but we already printed the
4a64f543 4794 relevant messages. */
e514a9d6
JM
4795 return PRINT_SRC_AND_LOC;
4796 break;
4797
4798 case print_it_normal:
4f8d1dc6 4799 {
f431efe5
PA
4800 struct breakpoint *b = bs->breakpoint_at;
4801
1a6a67de
TJB
4802 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4803 which has since been deleted. */
4804 if (b == NULL)
4805 return PRINT_UNKNOWN;
4806
348d480f
PA
4807 /* Normal case. Call the breakpoint's print_it method. */
4808 return b->ops->print_it (bs);
4f8d1dc6 4809 }
348d480f 4810 break;
3086aeae 4811
e514a9d6 4812 default:
8e65ff28 4813 internal_error (__FILE__, __LINE__,
e2e0b3e5 4814 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4815 break;
c906108c 4816 }
c906108c
SS
4817}
4818
edcc5120
TT
4819/* A helper function that prints a shared library stopped event. */
4820
4821static void
4822print_solib_event (int is_catchpoint)
4823{
4824 int any_deleted
4825 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4826 int any_added
4827 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4828
4829 if (!is_catchpoint)
4830 {
4831 if (any_added || any_deleted)
4832 ui_out_text (current_uiout,
4833 _("Stopped due to shared library event:\n"));
4834 else
4835 ui_out_text (current_uiout,
4836 _("Stopped due to shared library event (no "
4837 "libraries added or removed)\n"));
4838 }
4839
4840 if (ui_out_is_mi_like_p (current_uiout))
4841 ui_out_field_string (current_uiout, "reason",
4842 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4843
4844 if (any_deleted)
4845 {
4846 struct cleanup *cleanup;
4847 char *name;
4848 int ix;
4849
4850 ui_out_text (current_uiout, _(" Inferior unloaded "));
4851 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4852 "removed");
4853 for (ix = 0;
4854 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4855 ix, name);
4856 ++ix)
4857 {
4858 if (ix > 0)
4859 ui_out_text (current_uiout, " ");
4860 ui_out_field_string (current_uiout, "library", name);
4861 ui_out_text (current_uiout, "\n");
4862 }
4863
4864 do_cleanups (cleanup);
4865 }
4866
4867 if (any_added)
4868 {
4869 struct so_list *iter;
4870 int ix;
4871 struct cleanup *cleanup;
4872
4873 ui_out_text (current_uiout, _(" Inferior loaded "));
4874 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4875 "added");
4876 for (ix = 0;
4877 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4878 ix, iter);
4879 ++ix)
4880 {
4881 if (ix > 0)
4882 ui_out_text (current_uiout, " ");
4883 ui_out_field_string (current_uiout, "library", iter->so_name);
4884 ui_out_text (current_uiout, "\n");
4885 }
4886
4887 do_cleanups (cleanup);
4888 }
4889}
4890
e514a9d6
JM
4891/* Print a message indicating what happened. This is called from
4892 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4893 list - a list of the eventpoints that caused this stop. KIND is
4894 the target_waitkind for the stopping event. This
e514a9d6
JM
4895 routine calls the generic print routine for printing a message
4896 about reasons for stopping. This will print (for example) the
4897 "Breakpoint n," part of the output. The return value of this
4898 routine is one of:
c906108c 4899
4a64f543 4900 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4901 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4902 code to print the location. An example is
c5aa993b
JM
4903 "Breakpoint 1, " which should be followed by
4904 the location.
917317f4 4905 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4906 to also print the location part of the message.
4907 An example is the catch/throw messages, which
4a64f543 4908 don't require a location appended to the end.
917317f4 4909 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4910 further info to be printed. */
c906108c 4911
917317f4 4912enum print_stop_action
36dfb11c 4913bpstat_print (bpstat bs, int kind)
c906108c
SS
4914{
4915 int val;
c5aa993b 4916
c906108c 4917 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4918 (Currently all watchpoints go on the bpstat whether hit or not.
4919 That probably could (should) be changed, provided care is taken
c906108c 4920 with respect to bpstat_explains_signal). */
e514a9d6
JM
4921 for (; bs; bs = bs->next)
4922 {
4923 val = print_bp_stop_message (bs);
4924 if (val == PRINT_SRC_ONLY
4925 || val == PRINT_SRC_AND_LOC
4926 || val == PRINT_NOTHING)
4927 return val;
4928 }
c906108c 4929
36dfb11c
TT
4930 /* If we had hit a shared library event breakpoint,
4931 print_bp_stop_message would print out this message. If we hit an
4932 OS-level shared library event, do the same thing. */
4933 if (kind == TARGET_WAITKIND_LOADED)
4934 {
edcc5120 4935 print_solib_event (0);
36dfb11c
TT
4936 return PRINT_NOTHING;
4937 }
4938
e514a9d6 4939 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4940 with and nothing was printed. */
917317f4 4941 return PRINT_UNKNOWN;
c906108c
SS
4942}
4943
c42bd95a
DE
4944/* Evaluate the expression EXP and return 1 if value is zero.
4945 This returns the inverse of the condition because it is called
4946 from catch_errors which returns 0 if an exception happened, and if an
4947 exception happens we want execution to stop.
4a64f543 4948 The argument is a "struct expression *" that has been cast to a
c42bd95a 4949 "void *" to make it pass through catch_errors. */
c906108c
SS
4950
4951static int
4efb68b1 4952breakpoint_cond_eval (void *exp)
c906108c 4953{
278cd55f 4954 struct value *mark = value_mark ();
c5aa993b 4955 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 4956
c906108c
SS
4957 value_free_to_mark (mark);
4958 return i;
4959}
4960
5760d0ab 4961/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c
SS
4962
4963static bpstat
5760d0ab 4964bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
c906108c
SS
4965{
4966 bpstat bs;
4967
4968 bs = (bpstat) xmalloc (sizeof (*bs));
5760d0ab
JK
4969 bs->next = NULL;
4970 **bs_link_pointer = bs;
4971 *bs_link_pointer = &bs->next;
f431efe5
PA
4972 bs->breakpoint_at = bl->owner;
4973 bs->bp_location_at = bl;
4974 incref_bp_location (bl);
c906108c
SS
4975 /* If the condition is false, etc., don't do the commands. */
4976 bs->commands = NULL;
4977 bs->old_val = NULL;
4978 bs->print_it = print_it_normal;
4979 return bs;
4980}
4981\f
d983da9c
DJ
4982/* The target has stopped with waitstatus WS. Check if any hardware
4983 watchpoints have triggered, according to the target. */
4984
4985int
4986watchpoints_triggered (struct target_waitstatus *ws)
4987{
d92524f1 4988 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
4989 CORE_ADDR addr;
4990 struct breakpoint *b;
4991
4992 if (!stopped_by_watchpoint)
4993 {
4994 /* We were not stopped by a watchpoint. Mark all watchpoints
4995 as not triggered. */
4996 ALL_BREAKPOINTS (b)
cc60f2e3 4997 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4998 {
4999 struct watchpoint *w = (struct watchpoint *) b;
5000
5001 w->watchpoint_triggered = watch_triggered_no;
5002 }
d983da9c
DJ
5003
5004 return 0;
5005 }
5006
5007 if (!target_stopped_data_address (&current_target, &addr))
5008 {
5009 /* We were stopped by a watchpoint, but we don't know where.
5010 Mark all watchpoints as unknown. */
5011 ALL_BREAKPOINTS (b)
cc60f2e3 5012 if (is_hardware_watchpoint (b))
3a5c3e22
PA
5013 {
5014 struct watchpoint *w = (struct watchpoint *) b;
5015
5016 w->watchpoint_triggered = watch_triggered_unknown;
5017 }
d983da9c 5018
3c4797ba 5019 return 1;
d983da9c
DJ
5020 }
5021
5022 /* The target could report the data address. Mark watchpoints
5023 affected by this data address as triggered, and all others as not
5024 triggered. */
5025
5026 ALL_BREAKPOINTS (b)
cc60f2e3 5027 if (is_hardware_watchpoint (b))
d983da9c 5028 {
3a5c3e22 5029 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 5030 struct bp_location *loc;
d983da9c 5031
3a5c3e22 5032 w->watchpoint_triggered = watch_triggered_no;
a5606eee 5033 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 5034 {
3a5c3e22 5035 if (is_masked_watchpoint (b))
9c06b0b4 5036 {
3a5c3e22
PA
5037 CORE_ADDR newaddr = addr & w->hw_wp_mask;
5038 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
5039
5040 if (newaddr == start)
5041 {
3a5c3e22 5042 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
5043 break;
5044 }
5045 }
5046 /* Exact match not required. Within range is sufficient. */
5047 else if (target_watchpoint_addr_within_range (&current_target,
5048 addr, loc->address,
5049 loc->length))
5050 {
3a5c3e22 5051 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
5052 break;
5053 }
5054 }
d983da9c
DJ
5055 }
5056
5057 return 1;
5058}
5059
c906108c
SS
5060/* Possible return values for watchpoint_check (this can't be an enum
5061 because of check_errors). */
5062/* The watchpoint has been deleted. */
5063#define WP_DELETED 1
5064/* The value has changed. */
5065#define WP_VALUE_CHANGED 2
5066/* The value has not changed. */
5067#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
5068/* Ignore this watchpoint, no matter if the value changed or not. */
5069#define WP_IGNORE 4
c906108c
SS
5070
5071#define BP_TEMPFLAG 1
5072#define BP_HARDWAREFLAG 2
5073
4a64f543
MS
5074/* Evaluate watchpoint condition expression and check if its value
5075 changed.
553e4c11
JB
5076
5077 P should be a pointer to struct bpstat, but is defined as a void *
5078 in order for this function to be usable with catch_errors. */
c906108c
SS
5079
5080static int
4efb68b1 5081watchpoint_check (void *p)
c906108c
SS
5082{
5083 bpstat bs = (bpstat) p;
3a5c3e22 5084 struct watchpoint *b;
c906108c
SS
5085 struct frame_info *fr;
5086 int within_current_scope;
5087
f431efe5 5088 /* BS is built from an existing struct breakpoint. */
2bdf28a0 5089 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 5090 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 5091
f6bc2008
PA
5092 /* If this is a local watchpoint, we only want to check if the
5093 watchpoint frame is in scope if the current thread is the thread
5094 that was used to create the watchpoint. */
5095 if (!watchpoint_in_thread_scope (b))
60e1c644 5096 return WP_IGNORE;
f6bc2008 5097
c906108c
SS
5098 if (b->exp_valid_block == NULL)
5099 within_current_scope = 1;
5100 else
5101 {
edb3359d
DJ
5102 struct frame_info *frame = get_current_frame ();
5103 struct gdbarch *frame_arch = get_frame_arch (frame);
5104 CORE_ADDR frame_pc = get_frame_pc (frame);
5105
4a64f543
MS
5106 /* in_function_epilogue_p() returns a non-zero value if we're
5107 still in the function but the stack frame has already been
5108 invalidated. Since we can't rely on the values of local
5109 variables after the stack has been destroyed, we are treating
5110 the watchpoint in that state as `not changed' without further
5111 checking. Don't mark watchpoints as changed if the current
5112 frame is in an epilogue - even if they are in some other
5113 frame, our view of the stack is likely to be wrong and
5114 frame_find_by_id could error out. */
a0f49112 5115 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
60e1c644 5116 return WP_IGNORE;
a0f49112 5117
101dcfbe 5118 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 5119 within_current_scope = (fr != NULL);
69fbadd5
DJ
5120
5121 /* If we've gotten confused in the unwinder, we might have
5122 returned a frame that can't describe this variable. */
edb3359d
DJ
5123 if (within_current_scope)
5124 {
5125 struct symbol *function;
5126
5127 function = get_frame_function (fr);
5128 if (function == NULL
5129 || !contained_in (b->exp_valid_block,
5130 SYMBOL_BLOCK_VALUE (function)))
5131 within_current_scope = 0;
5132 }
69fbadd5 5133
edb3359d 5134 if (within_current_scope)
c906108c
SS
5135 /* If we end up stopping, the current frame will get selected
5136 in normal_stop. So this call to select_frame won't affect
5137 the user. */
0f7d239c 5138 select_frame (fr);
c906108c 5139 }
c5aa993b 5140
c906108c
SS
5141 if (within_current_scope)
5142 {
4a64f543
MS
5143 /* We use value_{,free_to_}mark because it could be a *long*
5144 time before we return to the command level and call
5145 free_all_values. We can't call free_all_values because we
5146 might be in the middle of evaluating a function call. */
c906108c 5147
0cf6dd15 5148 int pc = 0;
9c06b0b4 5149 struct value *mark;
fa4727a6
DJ
5150 struct value *new_val;
5151
3a5c3e22 5152 if (is_masked_watchpoint (&b->base))
9c06b0b4
TJB
5153 /* Since we don't know the exact trigger address (from
5154 stopped_data_address), just tell the user we've triggered
5155 a mask watchpoint. */
5156 return WP_VALUE_CHANGED;
5157
5158 mark = value_mark ();
3a1115a0 5159 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL, 0);
218d2fc6 5160
bb9d5f81
PP
5161 if (b->val_bitsize != 0)
5162 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
5163
4a64f543
MS
5164 /* We use value_equal_contents instead of value_equal because
5165 the latter coerces an array to a pointer, thus comparing just
5166 the address of the array instead of its contents. This is
5167 not what we want. */
fa4727a6 5168 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 5169 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 5170 {
fa4727a6
DJ
5171 if (new_val != NULL)
5172 {
5173 release_value (new_val);
5174 value_free_to_mark (mark);
5175 }
c906108c
SS
5176 bs->old_val = b->val;
5177 b->val = new_val;
fa4727a6 5178 b->val_valid = 1;
c906108c
SS
5179 return WP_VALUE_CHANGED;
5180 }
5181 else
5182 {
60e1c644 5183 /* Nothing changed. */
c906108c 5184 value_free_to_mark (mark);
c906108c
SS
5185 return WP_VALUE_NOT_CHANGED;
5186 }
5187 }
5188 else
5189 {
79a45e25
PA
5190 struct ui_out *uiout = current_uiout;
5191
c906108c 5192 /* This seems like the only logical thing to do because
c5aa993b
JM
5193 if we temporarily ignored the watchpoint, then when
5194 we reenter the block in which it is valid it contains
5195 garbage (in the case of a function, it may have two
5196 garbage values, one before and one after the prologue).
5197 So we can't even detect the first assignment to it and
5198 watch after that (since the garbage may or may not equal
5199 the first value assigned). */
348d480f
PA
5200 /* We print all the stop information in
5201 breakpoint_ops->print_it, but in this case, by the time we
5202 call breakpoint_ops->print_it this bp will be deleted
5203 already. So we have no choice but print the information
5204 here. */
9dc5e2a9 5205 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
5206 ui_out_field_string
5207 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 5208 ui_out_text (uiout, "\nWatchpoint ");
3a5c3e22 5209 ui_out_field_int (uiout, "wpnum", b->base.number);
3e43a32a
MS
5210 ui_out_text (uiout,
5211 " deleted because the program has left the block in\n\
8b93c638 5212which its expression is valid.\n");
4ce44c66 5213
cdac0397 5214 /* Make sure the watchpoint's commands aren't executed. */
3a5c3e22 5215 decref_counted_command_line (&b->base.commands);
d0fb5eae 5216 watchpoint_del_at_next_stop (b);
c906108c
SS
5217
5218 return WP_DELETED;
5219 }
5220}
5221
18a18393 5222/* Return true if it looks like target has stopped due to hitting
348d480f
PA
5223 breakpoint location BL. This function does not check if we should
5224 stop, only if BL explains the stop. */
5225
18a18393 5226static int
6c95b8df 5227bpstat_check_location (const struct bp_location *bl,
09ac7c10
TT
5228 struct address_space *aspace, CORE_ADDR bp_addr,
5229 const struct target_waitstatus *ws)
18a18393
VP
5230{
5231 struct breakpoint *b = bl->owner;
5232
348d480f 5233 /* BL is from an existing breakpoint. */
2bdf28a0
JK
5234 gdb_assert (b != NULL);
5235
09ac7c10 5236 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
5237}
5238
3a5c3e22
PA
5239/* Determine if the watched values have actually changed, and we
5240 should stop. If not, set BS->stop to 0. */
5241
18a18393
VP
5242static void
5243bpstat_check_watchpoint (bpstat bs)
5244{
2bdf28a0 5245 const struct bp_location *bl;
3a5c3e22 5246 struct watchpoint *b;
2bdf28a0
JK
5247
5248 /* BS is built for existing struct breakpoint. */
f431efe5 5249 bl = bs->bp_location_at;
2bdf28a0 5250 gdb_assert (bl != NULL);
3a5c3e22 5251 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 5252 gdb_assert (b != NULL);
18a18393 5253
18a18393 5254 {
18a18393
VP
5255 int must_check_value = 0;
5256
3a5c3e22 5257 if (b->base.type == bp_watchpoint)
18a18393
VP
5258 /* For a software watchpoint, we must always check the
5259 watched value. */
5260 must_check_value = 1;
5261 else if (b->watchpoint_triggered == watch_triggered_yes)
5262 /* We have a hardware watchpoint (read, write, or access)
5263 and the target earlier reported an address watched by
5264 this watchpoint. */
5265 must_check_value = 1;
5266 else if (b->watchpoint_triggered == watch_triggered_unknown
3a5c3e22 5267 && b->base.type == bp_hardware_watchpoint)
18a18393
VP
5268 /* We were stopped by a hardware watchpoint, but the target could
5269 not report the data address. We must check the watchpoint's
5270 value. Access and read watchpoints are out of luck; without
5271 a data address, we can't figure it out. */
5272 must_check_value = 1;
3a5c3e22 5273
18a18393
VP
5274 if (must_check_value)
5275 {
3e43a32a
MS
5276 char *message
5277 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3a5c3e22 5278 b->base.number);
18a18393
VP
5279 struct cleanup *cleanups = make_cleanup (xfree, message);
5280 int e = catch_errors (watchpoint_check, bs, message,
5281 RETURN_MASK_ALL);
5282 do_cleanups (cleanups);
5283 switch (e)
5284 {
5285 case WP_DELETED:
5286 /* We've already printed what needs to be printed. */
5287 bs->print_it = print_it_done;
5288 /* Stop. */
5289 break;
60e1c644
PA
5290 case WP_IGNORE:
5291 bs->print_it = print_it_noop;
5292 bs->stop = 0;
5293 break;
18a18393 5294 case WP_VALUE_CHANGED:
3a5c3e22 5295 if (b->base.type == bp_read_watchpoint)
18a18393 5296 {
85d721b8
PA
5297 /* There are two cases to consider here:
5298
4a64f543 5299 1. We're watching the triggered memory for reads.
85d721b8
PA
5300 In that case, trust the target, and always report
5301 the watchpoint hit to the user. Even though
5302 reads don't cause value changes, the value may
5303 have changed since the last time it was read, and
5304 since we're not trapping writes, we will not see
5305 those, and as such we should ignore our notion of
5306 old value.
5307
4a64f543 5308 2. We're watching the triggered memory for both
85d721b8
PA
5309 reads and writes. There are two ways this may
5310 happen:
5311
4a64f543 5312 2.1. This is a target that can't break on data
85d721b8
PA
5313 reads only, but can break on accesses (reads or
5314 writes), such as e.g., x86. We detect this case
5315 at the time we try to insert read watchpoints.
5316
4a64f543 5317 2.2. Otherwise, the target supports read
85d721b8
PA
5318 watchpoints, but, the user set an access or write
5319 watchpoint watching the same memory as this read
5320 watchpoint.
5321
5322 If we're watching memory writes as well as reads,
5323 ignore watchpoint hits when we find that the
5324 value hasn't changed, as reads don't cause
5325 changes. This still gives false positives when
5326 the program writes the same value to memory as
5327 what there was already in memory (we will confuse
5328 it for a read), but it's much better than
5329 nothing. */
5330
5331 int other_write_watchpoint = 0;
5332
5333 if (bl->watchpoint_type == hw_read)
5334 {
5335 struct breakpoint *other_b;
5336
5337 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5338 if (other_b->type == bp_hardware_watchpoint
5339 || other_b->type == bp_access_watchpoint)
85d721b8 5340 {
3a5c3e22
PA
5341 struct watchpoint *other_w =
5342 (struct watchpoint *) other_b;
5343
5344 if (other_w->watchpoint_triggered
5345 == watch_triggered_yes)
5346 {
5347 other_write_watchpoint = 1;
5348 break;
5349 }
85d721b8
PA
5350 }
5351 }
5352
5353 if (other_write_watchpoint
5354 || bl->watchpoint_type == hw_access)
5355 {
5356 /* We're watching the same memory for writes,
5357 and the value changed since the last time we
5358 updated it, so this trap must be for a write.
5359 Ignore it. */
5360 bs->print_it = print_it_noop;
5361 bs->stop = 0;
5362 }
18a18393
VP
5363 }
5364 break;
5365 case WP_VALUE_NOT_CHANGED:
3a5c3e22
PA
5366 if (b->base.type == bp_hardware_watchpoint
5367 || b->base.type == bp_watchpoint)
18a18393
VP
5368 {
5369 /* Don't stop: write watchpoints shouldn't fire if
5370 the value hasn't changed. */
5371 bs->print_it = print_it_noop;
5372 bs->stop = 0;
5373 }
5374 /* Stop. */
5375 break;
5376 default:
5377 /* Can't happen. */
5378 case 0:
5379 /* Error from catch_errors. */
3a5c3e22 5380 printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number);
d0fb5eae 5381 watchpoint_del_at_next_stop (b);
18a18393
VP
5382 /* We've already printed what needs to be printed. */
5383 bs->print_it = print_it_done;
5384 break;
5385 }
5386 }
5387 else /* must_check_value == 0 */
5388 {
5389 /* This is a case where some watchpoint(s) triggered, but
5390 not at the address of this watchpoint, or else no
5391 watchpoint triggered after all. So don't print
5392 anything for this watchpoint. */
5393 bs->print_it = print_it_noop;
5394 bs->stop = 0;
5395 }
5396 }
5397}
5398
7d4df6a4
DE
5399/* For breakpoints that are currently marked as telling gdb to stop,
5400 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5401 of breakpoint referred to by BS. If we should not stop for this
5402 breakpoint, set BS->stop to 0. */
f431efe5 5403
18a18393
VP
5404static void
5405bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5406{
2bdf28a0
JK
5407 const struct bp_location *bl;
5408 struct breakpoint *b;
7d4df6a4
DE
5409 int value_is_zero = 0;
5410 struct expression *cond;
5411
5412 gdb_assert (bs->stop);
2bdf28a0
JK
5413
5414 /* BS is built for existing struct breakpoint. */
f431efe5 5415 bl = bs->bp_location_at;
2bdf28a0 5416 gdb_assert (bl != NULL);
f431efe5 5417 b = bs->breakpoint_at;
2bdf28a0 5418 gdb_assert (b != NULL);
18a18393 5419
b775012e
LM
5420 /* Even if the target evaluated the condition on its end and notified GDB, we
5421 need to do so again since GDB does not know if we stopped due to a
5422 breakpoint or a single step breakpoint. */
5423
18a18393 5424 if (frame_id_p (b->frame_id)
edb3359d 5425 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5426 {
7d4df6a4
DE
5427 bs->stop = 0;
5428 return;
5429 }
60e1c644 5430
12ab52e9
PA
5431 /* If this is a thread/task-specific breakpoint, don't waste cpu
5432 evaluating the condition if this isn't the specified
5433 thread/task. */
5434 if ((b->thread != -1 && b->thread != pid_to_thread_id (ptid))
5435 || (b->task != 0 && b->task != ada_get_task_number (ptid)))
5436
6c1b0f7b
DE
5437 {
5438 bs->stop = 0;
5439 return;
5440 }
5441
6dddc817
DE
5442 /* Evaluate extension language breakpoints that have a "stop" method
5443 implemented. */
5444 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
7371cf6d 5445
7d4df6a4
DE
5446 if (is_watchpoint (b))
5447 {
5448 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5449
7d4df6a4
DE
5450 cond = w->cond_exp;
5451 }
5452 else
5453 cond = bl->cond;
60e1c644 5454
7d4df6a4
DE
5455 if (cond && b->disposition != disp_del_at_next_stop)
5456 {
5457 int within_current_scope = 1;
5458 struct watchpoint * w;
60e1c644 5459
7d4df6a4
DE
5460 /* We use value_mark and value_free_to_mark because it could
5461 be a long time before we return to the command level and
5462 call free_all_values. We can't call free_all_values
5463 because we might be in the middle of evaluating a
5464 function call. */
5465 struct value *mark = value_mark ();
5466
5467 if (is_watchpoint (b))
5468 w = (struct watchpoint *) b;
5469 else
5470 w = NULL;
5471
5472 /* Need to select the frame, with all that implies so that
5473 the conditions will have the right context. Because we
5474 use the frame, we will not see an inlined function's
5475 variables when we arrive at a breakpoint at the start
5476 of the inlined function; the current frame will be the
5477 call site. */
5478 if (w == NULL || w->cond_exp_valid_block == NULL)
5479 select_frame (get_current_frame ());
5480 else
18a18393 5481 {
7d4df6a4
DE
5482 struct frame_info *frame;
5483
5484 /* For local watchpoint expressions, which particular
5485 instance of a local is being watched matters, so we
5486 keep track of the frame to evaluate the expression
5487 in. To evaluate the condition however, it doesn't
5488 really matter which instantiation of the function
5489 where the condition makes sense triggers the
5490 watchpoint. This allows an expression like "watch
5491 global if q > 10" set in `func', catch writes to
5492 global on all threads that call `func', or catch
5493 writes on all recursive calls of `func' by a single
5494 thread. We simply always evaluate the condition in
5495 the innermost frame that's executing where it makes
5496 sense to evaluate the condition. It seems
5497 intuitive. */
5498 frame = block_innermost_frame (w->cond_exp_valid_block);
5499 if (frame != NULL)
5500 select_frame (frame);
5501 else
5502 within_current_scope = 0;
18a18393 5503 }
7d4df6a4
DE
5504 if (within_current_scope)
5505 value_is_zero
5506 = catch_errors (breakpoint_cond_eval, cond,
5507 "Error in testing breakpoint condition:\n",
5508 RETURN_MASK_ALL);
5509 else
18a18393 5510 {
7d4df6a4
DE
5511 warning (_("Watchpoint condition cannot be tested "
5512 "in the current scope"));
5513 /* If we failed to set the right context for this
5514 watchpoint, unconditionally report it. */
5515 value_is_zero = 0;
18a18393 5516 }
7d4df6a4
DE
5517 /* FIXME-someday, should give breakpoint #. */
5518 value_free_to_mark (mark);
18a18393 5519 }
7d4df6a4
DE
5520
5521 if (cond && value_is_zero)
5522 {
5523 bs->stop = 0;
5524 }
7d4df6a4
DE
5525 else if (b->ignore_count > 0)
5526 {
5527 b->ignore_count--;
5528 bs->stop = 0;
5529 /* Increase the hit count even though we don't stop. */
5530 ++(b->hit_count);
5531 observer_notify_breakpoint_modified (b);
5532 }
18a18393
VP
5533}
5534
5535
9709f61c 5536/* Get a bpstat associated with having just stopped at address
d983da9c 5537 BP_ADDR in thread PTID.
c906108c 5538
d983da9c 5539 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
5540 don't understand this stop. Result is a chain of bpstat's such
5541 that:
c906108c 5542
c5aa993b 5543 if we don't understand the stop, the result is a null pointer.
c906108c 5544
c5aa993b 5545 if we understand why we stopped, the result is not null.
c906108c 5546
c5aa993b
JM
5547 Each element of the chain refers to a particular breakpoint or
5548 watchpoint at which we have stopped. (We may have stopped for
5549 several reasons concurrently.)
c906108c 5550
c5aa993b
JM
5551 Each element of the chain has valid next, breakpoint_at,
5552 commands, FIXME??? fields. */
c906108c
SS
5553
5554bpstat
6c95b8df 5555bpstat_stop_status (struct address_space *aspace,
09ac7c10
TT
5556 CORE_ADDR bp_addr, ptid_t ptid,
5557 const struct target_waitstatus *ws)
c906108c 5558{
0d381245 5559 struct breakpoint *b = NULL;
afe38095 5560 struct bp_location *bl;
20874c92 5561 struct bp_location *loc;
5760d0ab
JK
5562 /* First item of allocated bpstat's. */
5563 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 5564 /* Pointer to the last thing in the chain currently. */
5760d0ab 5565 bpstat bs;
20874c92 5566 int ix;
429374b8 5567 int need_remove_insert;
f431efe5 5568 int removed_any;
c906108c 5569
f431efe5
PA
5570 /* First, build the bpstat chain with locations that explain a
5571 target stop, while being careful to not set the target running,
5572 as that may invalidate locations (in particular watchpoint
5573 locations are recreated). Resuming will happen here with
5574 breakpoint conditions or watchpoint expressions that include
5575 inferior function calls. */
c5aa993b 5576
429374b8
JK
5577 ALL_BREAKPOINTS (b)
5578 {
5579 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
5580 continue;
a5606eee 5581
429374b8
JK
5582 for (bl = b->loc; bl != NULL; bl = bl->next)
5583 {
4a64f543
MS
5584 /* For hardware watchpoints, we look only at the first
5585 location. The watchpoint_check function will work on the
5586 entire expression, not the individual locations. For
5587 read watchpoints, the watchpoints_triggered function has
5588 checked all locations already. */
429374b8
JK
5589 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5590 break;
18a18393 5591
f6592439 5592 if (!bl->enabled || bl->shlib_disabled)
429374b8 5593 continue;
c5aa993b 5594
09ac7c10 5595 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5596 continue;
c5aa993b 5597
4a64f543
MS
5598 /* Come here if it's a watchpoint, or if the break address
5599 matches. */
c5aa993b 5600
4a64f543
MS
5601 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
5602 explain stop. */
c5aa993b 5603
f431efe5
PA
5604 /* Assume we stop. Should we find a watchpoint that is not
5605 actually triggered, or if the condition of the breakpoint
5606 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5607 bs->stop = 1;
5608 bs->print = 1;
d983da9c 5609
f431efe5
PA
5610 /* If this is a scope breakpoint, mark the associated
5611 watchpoint as triggered so that we will handle the
5612 out-of-scope event. We'll get to the watchpoint next
5613 iteration. */
d0fb5eae 5614 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5615 {
5616 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5617
5618 w->watchpoint_triggered = watch_triggered_yes;
5619 }
f431efe5
PA
5620 }
5621 }
5622
5623 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
5624 {
f1310107 5625 if (breakpoint_location_address_match (loc, aspace, bp_addr))
f431efe5 5626 {
5760d0ab 5627 bs = bpstat_alloc (loc, &bs_link);
f431efe5
PA
5628 /* For hits of moribund locations, we should just proceed. */
5629 bs->stop = 0;
5630 bs->print = 0;
5631 bs->print_it = print_it_noop;
5632 }
5633 }
5634
edcc5120
TT
5635 /* A bit of special processing for shlib breakpoints. We need to
5636 process solib loading here, so that the lists of loaded and
5637 unloaded libraries are correct before we handle "catch load" and
5638 "catch unload". */
5639 for (bs = bs_head; bs != NULL; bs = bs->next)
5640 {
5d268276 5641 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5642 {
5643 handle_solib_event ();
5644 break;
5645 }
5646 }
5647
f431efe5
PA
5648 /* Now go through the locations that caused the target to stop, and
5649 check whether we're interested in reporting this stop to higher
5650 layers, or whether we should resume the target transparently. */
5651
5652 removed_any = 0;
5653
5760d0ab 5654 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5655 {
5656 if (!bs->stop)
5657 continue;
5658
f431efe5 5659 b = bs->breakpoint_at;
348d480f
PA
5660 b->ops->check_status (bs);
5661 if (bs->stop)
28010a5d 5662 {
348d480f 5663 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 5664
429374b8
JK
5665 if (bs->stop)
5666 {
5667 ++(b->hit_count);
8d3788bd 5668 observer_notify_breakpoint_modified (b);
c906108c 5669
4a64f543 5670 /* We will stop here. */
429374b8
JK
5671 if (b->disposition == disp_disable)
5672 {
816338b5
SS
5673 --(b->enable_count);
5674 if (b->enable_count <= 0
5675 && b->enable_state != bp_permanent)
429374b8 5676 b->enable_state = bp_disabled;
f431efe5 5677 removed_any = 1;
429374b8
JK
5678 }
5679 if (b->silent)
5680 bs->print = 0;
5681 bs->commands = b->commands;
9add0f1b 5682 incref_counted_command_line (bs->commands);
abf85f46
JK
5683 if (command_line_is_silent (bs->commands
5684 ? bs->commands->commands : NULL))
5685 bs->print = 0;
9d6e6e84
HZ
5686
5687 b->ops->after_condition_true (bs);
429374b8
JK
5688 }
5689
348d480f 5690 }
a9b3a50f
PA
5691
5692 /* Print nothing for this entry if we don't stop or don't
5693 print. */
5694 if (!bs->stop || !bs->print)
5695 bs->print_it = print_it_noop;
429374b8 5696 }
876fa593 5697
d983da9c
DJ
5698 /* If we aren't stopping, the value of some hardware watchpoint may
5699 not have changed, but the intermediate memory locations we are
5700 watching may have. Don't bother if we're stopping; this will get
5701 done later. */
d832cb68 5702 need_remove_insert = 0;
5760d0ab
JK
5703 if (! bpstat_causes_stop (bs_head))
5704 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5705 if (!bs->stop
f431efe5
PA
5706 && bs->breakpoint_at
5707 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5708 {
3a5c3e22
PA
5709 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5710
5711 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5712 need_remove_insert = 1;
d983da9c
DJ
5713 }
5714
d832cb68 5715 if (need_remove_insert)
44702360 5716 update_global_location_list (UGLL_MAY_INSERT);
f431efe5 5717 else if (removed_any)
44702360 5718 update_global_location_list (UGLL_DONT_INSERT);
d832cb68 5719
5760d0ab 5720 return bs_head;
c906108c 5721}
628fe4e4
JK
5722
5723static void
5724handle_jit_event (void)
5725{
5726 struct frame_info *frame;
5727 struct gdbarch *gdbarch;
5728
5729 /* Switch terminal for any messages produced by
5730 breakpoint_re_set. */
5731 target_terminal_ours_for_output ();
5732
5733 frame = get_current_frame ();
5734 gdbarch = get_frame_arch (frame);
5735
5736 jit_event_handler (gdbarch);
5737
5738 target_terminal_inferior ();
5739}
5740
5741/* Prepare WHAT final decision for infrun. */
5742
5743/* Decide what infrun needs to do with this bpstat. */
5744
c906108c 5745struct bpstat_what
0e30163f 5746bpstat_what (bpstat bs_head)
c906108c 5747{
c906108c 5748 struct bpstat_what retval;
628fe4e4 5749 int jit_event = 0;
0e30163f 5750 bpstat bs;
c906108c 5751
628fe4e4 5752 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5753 retval.call_dummy = STOP_NONE;
186c406b 5754 retval.is_longjmp = 0;
628fe4e4 5755
0e30163f 5756 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5757 {
628fe4e4
JK
5758 /* Extract this BS's action. After processing each BS, we check
5759 if its action overrides all we've seem so far. */
5760 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5761 enum bptype bptype;
5762
c906108c 5763 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5764 {
5765 /* I suspect this can happen if it was a momentary
5766 breakpoint which has since been deleted. */
5767 bptype = bp_none;
5768 }
20874c92 5769 else
f431efe5 5770 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5771
5772 switch (bptype)
c906108c
SS
5773 {
5774 case bp_none:
628fe4e4 5775 break;
c906108c
SS
5776 case bp_breakpoint:
5777 case bp_hardware_breakpoint:
5778 case bp_until:
5779 case bp_finish:
a9b3a50f 5780 case bp_shlib_event:
c906108c
SS
5781 if (bs->stop)
5782 {
5783 if (bs->print)
628fe4e4 5784 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5785 else
628fe4e4 5786 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5787 }
5788 else
628fe4e4 5789 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5790 break;
5791 case bp_watchpoint:
5792 case bp_hardware_watchpoint:
5793 case bp_read_watchpoint:
5794 case bp_access_watchpoint:
5795 if (bs->stop)
5796 {
5797 if (bs->print)
628fe4e4 5798 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5799 else
628fe4e4 5800 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5801 }
5802 else
628fe4e4
JK
5803 {
5804 /* There was a watchpoint, but we're not stopping.
5805 This requires no further action. */
5806 }
c906108c
SS
5807 break;
5808 case bp_longjmp:
e2e4d78b 5809 case bp_longjmp_call_dummy:
186c406b 5810 case bp_exception:
628fe4e4 5811 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
e2e4d78b 5812 retval.is_longjmp = bptype != bp_exception;
c906108c
SS
5813 break;
5814 case bp_longjmp_resume:
186c406b 5815 case bp_exception_resume:
628fe4e4 5816 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
186c406b 5817 retval.is_longjmp = bptype == bp_longjmp_resume;
c906108c
SS
5818 break;
5819 case bp_step_resume:
5820 if (bs->stop)
628fe4e4
JK
5821 this_action = BPSTAT_WHAT_STEP_RESUME;
5822 else
c906108c 5823 {
628fe4e4
JK
5824 /* It is for the wrong frame. */
5825 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5826 }
c906108c 5827 break;
2c03e5be
PA
5828 case bp_hp_step_resume:
5829 if (bs->stop)
5830 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5831 else
5832 {
5833 /* It is for the wrong frame. */
5834 this_action = BPSTAT_WHAT_SINGLE;
5835 }
5836 break;
c906108c 5837 case bp_watchpoint_scope:
c4093a6a 5838 case bp_thread_event:
1900040c 5839 case bp_overlay_event:
0fd8e87f 5840 case bp_longjmp_master:
aa7d318d 5841 case bp_std_terminate_master:
186c406b 5842 case bp_exception_master:
628fe4e4 5843 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5844 break;
ce78b96d 5845 case bp_catchpoint:
c5aa993b
JM
5846 if (bs->stop)
5847 {
5848 if (bs->print)
628fe4e4 5849 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5850 else
628fe4e4 5851 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5852 }
5853 else
628fe4e4
JK
5854 {
5855 /* There was a catchpoint, but we're not stopping.
5856 This requires no further action. */
5857 }
5858 break;
628fe4e4
JK
5859 case bp_jit_event:
5860 jit_event = 1;
5861 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5862 break;
c906108c 5863 case bp_call_dummy:
53a5351d
JM
5864 /* Make sure the action is stop (silent or noisy),
5865 so infrun.c pops the dummy frame. */
aa7d318d 5866 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5867 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5868 break;
5869 case bp_std_terminate:
5870 /* Make sure the action is stop (silent or noisy),
5871 so infrun.c pops the dummy frame. */
aa7d318d 5872 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5873 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5874 break;
1042e4c0 5875 case bp_tracepoint:
7a697b8d 5876 case bp_fast_tracepoint:
0fb4aa4b 5877 case bp_static_tracepoint:
1042e4c0
SS
5878 /* Tracepoint hits should not be reported back to GDB, and
5879 if one got through somehow, it should have been filtered
5880 out already. */
5881 internal_error (__FILE__, __LINE__,
7a697b8d 5882 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5883 break;
5884 case bp_gnu_ifunc_resolver:
5885 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5886 this_action = BPSTAT_WHAT_SINGLE;
5887 break;
5888 case bp_gnu_ifunc_resolver_return:
5889 /* The breakpoint will be removed, execution will restart from the
5890 PC of the former breakpoint. */
5891 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5892 break;
e7e0cddf
SS
5893
5894 case bp_dprintf:
a11cfd87
HZ
5895 if (bs->stop)
5896 this_action = BPSTAT_WHAT_STOP_SILENT;
5897 else
5898 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5899 break;
5900
628fe4e4
JK
5901 default:
5902 internal_error (__FILE__, __LINE__,
5903 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5904 }
628fe4e4
JK
5905
5906 retval.main_action = max (retval.main_action, this_action);
c906108c 5907 }
628fe4e4 5908
0e30163f
JK
5909 /* These operations may affect the bs->breakpoint_at state so they are
5910 delayed after MAIN_ACTION is decided above. */
5911
628fe4e4
JK
5912 if (jit_event)
5913 {
5914 if (debug_infrun)
5915 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n");
5916
5917 handle_jit_event ();
5918 }
5919
0e30163f
JK
5920 for (bs = bs_head; bs != NULL; bs = bs->next)
5921 {
5922 struct breakpoint *b = bs->breakpoint_at;
5923
5924 if (b == NULL)
5925 continue;
5926 switch (b->type)
5927 {
5928 case bp_gnu_ifunc_resolver:
5929 gnu_ifunc_resolver_stop (b);
5930 break;
5931 case bp_gnu_ifunc_resolver_return:
5932 gnu_ifunc_resolver_return_stop (b);
5933 break;
5934 }
5935 }
5936
c906108c
SS
5937 return retval;
5938}
5939
5940/* Nonzero if we should step constantly (e.g. watchpoints on machines
5941 without hardware support). This isn't related to a specific bpstat,
5942 just to things like whether watchpoints are set. */
5943
c5aa993b 5944int
fba45db2 5945bpstat_should_step (void)
c906108c
SS
5946{
5947 struct breakpoint *b;
cc59ec59 5948
c906108c 5949 ALL_BREAKPOINTS (b)
717a8278 5950 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 5951 return 1;
c906108c
SS
5952 return 0;
5953}
5954
67822962
PA
5955int
5956bpstat_causes_stop (bpstat bs)
5957{
5958 for (; bs != NULL; bs = bs->next)
5959 if (bs->stop)
5960 return 1;
5961
5962 return 0;
5963}
5964
c906108c 5965\f
c5aa993b 5966
170b53b2
UW
5967/* Compute a string of spaces suitable to indent the next line
5968 so it starts at the position corresponding to the table column
5969 named COL_NAME in the currently active table of UIOUT. */
5970
5971static char *
5972wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5973{
5974 static char wrap_indent[80];
5975 int i, total_width, width, align;
5976 char *text;
5977
5978 total_width = 0;
5979 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
5980 {
5981 if (strcmp (text, col_name) == 0)
5982 {
5983 gdb_assert (total_width < sizeof wrap_indent);
5984 memset (wrap_indent, ' ', total_width);
5985 wrap_indent[total_width] = 0;
5986
5987 return wrap_indent;
5988 }
5989
5990 total_width += width + 1;
5991 }
5992
5993 return NULL;
5994}
5995
b775012e
LM
5996/* Determine if the locations of this breakpoint will have their conditions
5997 evaluated by the target, host or a mix of both. Returns the following:
5998
5999 "host": Host evals condition.
6000 "host or target": Host or Target evals condition.
6001 "target": Target evals condition.
6002*/
6003
6004static const char *
6005bp_condition_evaluator (struct breakpoint *b)
6006{
6007 struct bp_location *bl;
6008 char host_evals = 0;
6009 char target_evals = 0;
6010
6011 if (!b)
6012 return NULL;
6013
6014 if (!is_breakpoint (b))
6015 return NULL;
6016
6017 if (gdb_evaluates_breakpoint_condition_p ()
6018 || !target_supports_evaluation_of_breakpoint_conditions ())
6019 return condition_evaluation_host;
6020
6021 for (bl = b->loc; bl; bl = bl->next)
6022 {
6023 if (bl->cond_bytecode)
6024 target_evals++;
6025 else
6026 host_evals++;
6027 }
6028
6029 if (host_evals && target_evals)
6030 return condition_evaluation_both;
6031 else if (target_evals)
6032 return condition_evaluation_target;
6033 else
6034 return condition_evaluation_host;
6035}
6036
6037/* Determine the breakpoint location's condition evaluator. This is
6038 similar to bp_condition_evaluator, but for locations. */
6039
6040static const char *
6041bp_location_condition_evaluator (struct bp_location *bl)
6042{
6043 if (bl && !is_breakpoint (bl->owner))
6044 return NULL;
6045
6046 if (gdb_evaluates_breakpoint_condition_p ()
6047 || !target_supports_evaluation_of_breakpoint_conditions ())
6048 return condition_evaluation_host;
6049
6050 if (bl && bl->cond_bytecode)
6051 return condition_evaluation_target;
6052 else
6053 return condition_evaluation_host;
6054}
6055
859825b8
JK
6056/* Print the LOC location out of the list of B->LOC locations. */
6057
170b53b2
UW
6058static void
6059print_breakpoint_location (struct breakpoint *b,
6060 struct bp_location *loc)
0d381245 6061{
79a45e25 6062 struct ui_out *uiout = current_uiout;
6c95b8df
PA
6063 struct cleanup *old_chain = save_current_program_space ();
6064
859825b8
JK
6065 if (loc != NULL && loc->shlib_disabled)
6066 loc = NULL;
6067
6c95b8df
PA
6068 if (loc != NULL)
6069 set_current_program_space (loc->pspace);
6070
56435ebe
TT
6071 if (b->display_canonical)
6072 ui_out_field_string (uiout, "what", b->addr_string);
2f202fde 6073 else if (loc && loc->symtab)
0d381245
VP
6074 {
6075 struct symbol *sym
6076 = find_pc_sect_function (loc->address, loc->section);
6077 if (sym)
6078 {
6079 ui_out_text (uiout, "in ");
6080 ui_out_field_string (uiout, "func",
6081 SYMBOL_PRINT_NAME (sym));
170b53b2
UW
6082 ui_out_text (uiout, " ");
6083 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
6084 ui_out_text (uiout, "at ");
0d381245 6085 }
05cba821
JK
6086 ui_out_field_string (uiout, "file",
6087 symtab_to_filename_for_display (loc->symtab));
0d381245 6088 ui_out_text (uiout, ":");
05cba821 6089
0d381245 6090 if (ui_out_is_mi_like_p (uiout))
2f202fde
JK
6091 ui_out_field_string (uiout, "fullname",
6092 symtab_to_fullname (loc->symtab));
0d381245 6093
f8eba3c6 6094 ui_out_field_int (uiout, "line", loc->line_number);
0d381245 6095 }
859825b8 6096 else if (loc)
0d381245 6097 {
f99d8bf4
PA
6098 struct ui_file *stb = mem_fileopen ();
6099 struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb);
170b53b2 6100
f99d8bf4 6101 print_address_symbolic (loc->gdbarch, loc->address, stb,
22e722e1 6102 demangle, "");
0d381245 6103 ui_out_field_stream (uiout, "at", stb);
170b53b2
UW
6104
6105 do_cleanups (stb_chain);
0d381245 6106 }
859825b8
JK
6107 else
6108 ui_out_field_string (uiout, "pending", b->addr_string);
6c95b8df 6109
b775012e
LM
6110 if (loc && is_breakpoint (b)
6111 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
6112 && bp_condition_evaluator (b) == condition_evaluation_both)
6113 {
6114 ui_out_text (uiout, " (");
6115 ui_out_field_string (uiout, "evaluated-by",
6116 bp_location_condition_evaluator (loc));
6117 ui_out_text (uiout, ")");
6118 }
6119
6c95b8df 6120 do_cleanups (old_chain);
0d381245
VP
6121}
6122
269b11a2
PA
6123static const char *
6124bptype_string (enum bptype type)
c906108c 6125{
c4093a6a
JM
6126 struct ep_type_description
6127 {
6128 enum bptype type;
6129 char *description;
6130 };
6131 static struct ep_type_description bptypes[] =
c906108c 6132 {
c5aa993b
JM
6133 {bp_none, "?deleted?"},
6134 {bp_breakpoint, "breakpoint"},
c906108c 6135 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
6136 {bp_until, "until"},
6137 {bp_finish, "finish"},
6138 {bp_watchpoint, "watchpoint"},
c906108c 6139 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
6140 {bp_read_watchpoint, "read watchpoint"},
6141 {bp_access_watchpoint, "acc watchpoint"},
6142 {bp_longjmp, "longjmp"},
6143 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 6144 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
6145 {bp_exception, "exception"},
6146 {bp_exception_resume, "exception resume"},
c5aa993b 6147 {bp_step_resume, "step resume"},
2c03e5be 6148 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
6149 {bp_watchpoint_scope, "watchpoint scope"},
6150 {bp_call_dummy, "call dummy"},
aa7d318d 6151 {bp_std_terminate, "std::terminate"},
c5aa993b 6152 {bp_shlib_event, "shlib events"},
c4093a6a 6153 {bp_thread_event, "thread events"},
1900040c 6154 {bp_overlay_event, "overlay events"},
0fd8e87f 6155 {bp_longjmp_master, "longjmp master"},
aa7d318d 6156 {bp_std_terminate_master, "std::terminate master"},
186c406b 6157 {bp_exception_master, "exception master"},
ce78b96d 6158 {bp_catchpoint, "catchpoint"},
1042e4c0 6159 {bp_tracepoint, "tracepoint"},
7a697b8d 6160 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 6161 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 6162 {bp_dprintf, "dprintf"},
4efc6507 6163 {bp_jit_event, "jit events"},
0e30163f
JK
6164 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
6165 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 6166 };
269b11a2
PA
6167
6168 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
6169 || ((int) type != bptypes[(int) type].type))
6170 internal_error (__FILE__, __LINE__,
6171 _("bptypes table does not describe type #%d."),
6172 (int) type);
6173
6174 return bptypes[(int) type].description;
6175}
6176
998580f1
MK
6177/* For MI, output a field named 'thread-groups' with a list as the value.
6178 For CLI, prefix the list with the string 'inf'. */
6179
6180static void
6181output_thread_groups (struct ui_out *uiout,
6182 const char *field_name,
6183 VEC(int) *inf_num,
6184 int mi_only)
6185{
752eb8b4 6186 struct cleanup *back_to;
998580f1
MK
6187 int is_mi = ui_out_is_mi_like_p (uiout);
6188 int inf;
6189 int i;
6190
6191 /* For backward compatibility, don't display inferiors in CLI unless
6192 there are several. Always display them for MI. */
6193 if (!is_mi && mi_only)
6194 return;
6195
752eb8b4
TT
6196 back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name);
6197
998580f1
MK
6198 for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i)
6199 {
6200 if (is_mi)
6201 {
6202 char mi_group[10];
6203
6204 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf);
6205 ui_out_field_string (uiout, NULL, mi_group);
6206 }
6207 else
6208 {
6209 if (i == 0)
6210 ui_out_text (uiout, " inf ");
6211 else
6212 ui_out_text (uiout, ", ");
6213
6214 ui_out_text (uiout, plongest (inf));
6215 }
6216 }
6217
6218 do_cleanups (back_to);
6219}
6220
269b11a2
PA
6221/* Print B to gdb_stdout. */
6222
6223static void
6224print_one_breakpoint_location (struct breakpoint *b,
6225 struct bp_location *loc,
6226 int loc_number,
6227 struct bp_location **last_loc,
269b11a2
PA
6228 int allflag)
6229{
6230 struct command_line *l;
c2c6d25f 6231 static char bpenables[] = "nynny";
c906108c 6232
79a45e25 6233 struct ui_out *uiout = current_uiout;
0d381245
VP
6234 int header_of_multiple = 0;
6235 int part_of_multiple = (loc != NULL);
79a45b7d
TT
6236 struct value_print_options opts;
6237
6238 get_user_print_options (&opts);
0d381245
VP
6239
6240 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
6241 /* See comment in print_one_breakpoint concerning treatment of
6242 breakpoints with single disabled location. */
0d381245
VP
6243 if (loc == NULL
6244 && (b->loc != NULL
6245 && (b->loc->next != NULL || !b->loc->enabled)))
6246 header_of_multiple = 1;
6247 if (loc == NULL)
6248 loc = b->loc;
6249
c4093a6a
JM
6250 annotate_record ();
6251
6252 /* 1 */
6253 annotate_field (0);
0d381245
VP
6254 if (part_of_multiple)
6255 {
6256 char *formatted;
0c6773c1 6257 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
6258 ui_out_field_string (uiout, "number", formatted);
6259 xfree (formatted);
6260 }
6261 else
6262 {
6263 ui_out_field_int (uiout, "number", b->number);
6264 }
c4093a6a
JM
6265
6266 /* 2 */
6267 annotate_field (1);
0d381245
VP
6268 if (part_of_multiple)
6269 ui_out_field_skip (uiout, "type");
269b11a2
PA
6270 else
6271 ui_out_field_string (uiout, "type", bptype_string (b->type));
c4093a6a
JM
6272
6273 /* 3 */
6274 annotate_field (2);
0d381245
VP
6275 if (part_of_multiple)
6276 ui_out_field_skip (uiout, "disp");
6277 else
2cec12e5 6278 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 6279
c4093a6a
JM
6280
6281 /* 4 */
6282 annotate_field (3);
0d381245 6283 if (part_of_multiple)
54e52265 6284 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 6285 else
4a64f543
MS
6286 ui_out_field_fmt (uiout, "enabled", "%c",
6287 bpenables[(int) b->enable_state]);
54e52265 6288 ui_out_spaces (uiout, 2);
0d381245 6289
c4093a6a
JM
6290
6291 /* 5 and 6 */
3086aeae 6292 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 6293 {
4a64f543
MS
6294 /* Although the print_one can possibly print all locations,
6295 calling it here is not likely to get any nice result. So,
6296 make sure there's just one location. */
0d381245 6297 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 6298 b->ops->print_one (b, last_loc);
0d381245 6299 }
3086aeae
DJ
6300 else
6301 switch (b->type)
6302 {
6303 case bp_none:
6304 internal_error (__FILE__, __LINE__,
e2e0b3e5 6305 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 6306 break;
c906108c 6307
3086aeae
DJ
6308 case bp_watchpoint:
6309 case bp_hardware_watchpoint:
6310 case bp_read_watchpoint:
6311 case bp_access_watchpoint:
3a5c3e22
PA
6312 {
6313 struct watchpoint *w = (struct watchpoint *) b;
6314
6315 /* Field 4, the address, is omitted (which makes the columns
6316 not line up too nicely with the headers, but the effect
6317 is relatively readable). */
6318 if (opts.addressprint)
6319 ui_out_field_skip (uiout, "addr");
6320 annotate_field (5);
6321 ui_out_field_string (uiout, "what", w->exp_string);
6322 }
3086aeae
DJ
6323 break;
6324
3086aeae
DJ
6325 case bp_breakpoint:
6326 case bp_hardware_breakpoint:
6327 case bp_until:
6328 case bp_finish:
6329 case bp_longjmp:
6330 case bp_longjmp_resume:
e2e4d78b 6331 case bp_longjmp_call_dummy:
186c406b
TT
6332 case bp_exception:
6333 case bp_exception_resume:
3086aeae 6334 case bp_step_resume:
2c03e5be 6335 case bp_hp_step_resume:
3086aeae
DJ
6336 case bp_watchpoint_scope:
6337 case bp_call_dummy:
aa7d318d 6338 case bp_std_terminate:
3086aeae
DJ
6339 case bp_shlib_event:
6340 case bp_thread_event:
6341 case bp_overlay_event:
0fd8e87f 6342 case bp_longjmp_master:
aa7d318d 6343 case bp_std_terminate_master:
186c406b 6344 case bp_exception_master:
1042e4c0 6345 case bp_tracepoint:
7a697b8d 6346 case bp_fast_tracepoint:
0fb4aa4b 6347 case bp_static_tracepoint:
e7e0cddf 6348 case bp_dprintf:
4efc6507 6349 case bp_jit_event:
0e30163f
JK
6350 case bp_gnu_ifunc_resolver:
6351 case bp_gnu_ifunc_resolver_return:
79a45b7d 6352 if (opts.addressprint)
3086aeae
DJ
6353 {
6354 annotate_field (4);
54e52265 6355 if (header_of_multiple)
0d381245 6356 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 6357 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 6358 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 6359 else
5af949e3
UW
6360 ui_out_field_core_addr (uiout, "addr",
6361 loc->gdbarch, loc->address);
3086aeae
DJ
6362 }
6363 annotate_field (5);
0d381245 6364 if (!header_of_multiple)
170b53b2 6365 print_breakpoint_location (b, loc);
0d381245 6366 if (b->loc)
a6d9a66e 6367 *last_loc = b->loc;
3086aeae
DJ
6368 break;
6369 }
c906108c 6370
6c95b8df 6371
998580f1 6372 if (loc != NULL && !header_of_multiple)
6c95b8df
PA
6373 {
6374 struct inferior *inf;
998580f1
MK
6375 VEC(int) *inf_num = NULL;
6376 int mi_only = 1;
6c95b8df 6377
998580f1 6378 ALL_INFERIORS (inf)
6c95b8df
PA
6379 {
6380 if (inf->pspace == loc->pspace)
998580f1 6381 VEC_safe_push (int, inf_num, inf->num);
6c95b8df 6382 }
998580f1
MK
6383
6384 /* For backward compatibility, don't display inferiors in CLI unless
6385 there are several. Always display for MI. */
6386 if (allflag
6387 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6388 && (number_of_program_spaces () > 1
6389 || number_of_inferiors () > 1)
6390 /* LOC is for existing B, it cannot be in
6391 moribund_locations and thus having NULL OWNER. */
6392 && loc->owner->type != bp_catchpoint))
6393 mi_only = 0;
6394 output_thread_groups (uiout, "thread-groups", inf_num, mi_only);
6395 VEC_free (int, inf_num);
6c95b8df
PA
6396 }
6397
4a306c9a 6398 if (!part_of_multiple)
c4093a6a 6399 {
4a306c9a
JB
6400 if (b->thread != -1)
6401 {
6402 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6403 "stop only in" line a little further down. */
4a306c9a
JB
6404 ui_out_text (uiout, " thread ");
6405 ui_out_field_int (uiout, "thread", b->thread);
6406 }
6407 else if (b->task != 0)
6408 {
6409 ui_out_text (uiout, " task ");
6410 ui_out_field_int (uiout, "task", b->task);
6411 }
c4093a6a 6412 }
f1310107 6413
8b93c638 6414 ui_out_text (uiout, "\n");
f1310107 6415
348d480f 6416 if (!part_of_multiple)
f1310107
TJB
6417 b->ops->print_one_detail (b, uiout);
6418
0d381245 6419 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6420 {
6421 annotate_field (6);
8b93c638 6422 ui_out_text (uiout, "\tstop only in stack frame at ");
e5dd4106 6423 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6424 the frame ID. */
5af949e3
UW
6425 ui_out_field_core_addr (uiout, "frame",
6426 b->gdbarch, b->frame_id.stack_addr);
8b93c638 6427 ui_out_text (uiout, "\n");
c4093a6a
JM
6428 }
6429
28010a5d 6430 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6431 {
6432 annotate_field (7);
d77f58be 6433 if (is_tracepoint (b))
1042e4c0
SS
6434 ui_out_text (uiout, "\ttrace only if ");
6435 else
6436 ui_out_text (uiout, "\tstop only if ");
0101ce28 6437 ui_out_field_string (uiout, "cond", b->cond_string);
b775012e
LM
6438
6439 /* Print whether the target is doing the breakpoint's condition
6440 evaluation. If GDB is doing the evaluation, don't print anything. */
6441 if (is_breakpoint (b)
6442 && breakpoint_condition_evaluation_mode ()
6443 == condition_evaluation_target)
6444 {
6445 ui_out_text (uiout, " (");
6446 ui_out_field_string (uiout, "evaluated-by",
6447 bp_condition_evaluator (b));
6448 ui_out_text (uiout, " evals)");
6449 }
0101ce28
JJ
6450 ui_out_text (uiout, "\n");
6451 }
6452
0d381245 6453 if (!part_of_multiple && b->thread != -1)
c4093a6a 6454 {
4a64f543 6455 /* FIXME should make an annotation for this. */
8b93c638
JM
6456 ui_out_text (uiout, "\tstop only in thread ");
6457 ui_out_field_int (uiout, "thread", b->thread);
6458 ui_out_text (uiout, "\n");
c4093a6a
JM
6459 }
6460
556ec64d
YQ
6461 if (!part_of_multiple)
6462 {
6463 if (b->hit_count)
31f56a27
YQ
6464 {
6465 /* FIXME should make an annotation for this. */
6466 if (is_catchpoint (b))
6467 ui_out_text (uiout, "\tcatchpoint");
6468 else if (is_tracepoint (b))
6469 ui_out_text (uiout, "\ttracepoint");
6470 else
6471 ui_out_text (uiout, "\tbreakpoint");
6472 ui_out_text (uiout, " already hit ");
6473 ui_out_field_int (uiout, "times", b->hit_count);
6474 if (b->hit_count == 1)
6475 ui_out_text (uiout, " time\n");
6476 else
6477 ui_out_text (uiout, " times\n");
6478 }
556ec64d
YQ
6479 else
6480 {
31f56a27
YQ
6481 /* Output the count also if it is zero, but only if this is mi. */
6482 if (ui_out_is_mi_like_p (uiout))
6483 ui_out_field_int (uiout, "times", b->hit_count);
556ec64d
YQ
6484 }
6485 }
8b93c638 6486
0d381245 6487 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6488 {
6489 annotate_field (8);
8b93c638
JM
6490 ui_out_text (uiout, "\tignore next ");
6491 ui_out_field_int (uiout, "ignore", b->ignore_count);
6492 ui_out_text (uiout, " hits\n");
c4093a6a 6493 }
059fb39f 6494
816338b5
SS
6495 /* Note that an enable count of 1 corresponds to "enable once"
6496 behavior, which is reported by the combination of enablement and
6497 disposition, so we don't need to mention it here. */
6498 if (!part_of_multiple && b->enable_count > 1)
6499 {
6500 annotate_field (8);
6501 ui_out_text (uiout, "\tdisable after ");
6502 /* Tweak the wording to clarify that ignore and enable counts
6503 are distinct, and have additive effect. */
6504 if (b->ignore_count)
6505 ui_out_text (uiout, "additional ");
6506 else
6507 ui_out_text (uiout, "next ");
6508 ui_out_field_int (uiout, "enable", b->enable_count);
6509 ui_out_text (uiout, " hits\n");
6510 }
6511
f196051f
SS
6512 if (!part_of_multiple && is_tracepoint (b))
6513 {
6514 struct tracepoint *tp = (struct tracepoint *) b;
6515
6516 if (tp->traceframe_usage)
6517 {
6518 ui_out_text (uiout, "\ttrace buffer usage ");
6519 ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage);
6520 ui_out_text (uiout, " bytes\n");
6521 }
6522 }
d3ce09f5 6523
9add0f1b 6524 l = b->commands ? b->commands->commands : NULL;
059fb39f 6525 if (!part_of_multiple && l)
c4093a6a 6526 {
3b31d625
EZ
6527 struct cleanup *script_chain;
6528
c4093a6a 6529 annotate_field (9);
3b31d625 6530 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 6531 print_command_lines (uiout, l, 4);
3b31d625 6532 do_cleanups (script_chain);
c4093a6a 6533 }
d24317b4 6534
d9b3f62e 6535 if (is_tracepoint (b))
1042e4c0 6536 {
d9b3f62e
PA
6537 struct tracepoint *t = (struct tracepoint *) b;
6538
6539 if (!part_of_multiple && t->pass_count)
6540 {
6541 annotate_field (10);
6542 ui_out_text (uiout, "\tpass count ");
6543 ui_out_field_int (uiout, "pass", t->pass_count);
6544 ui_out_text (uiout, " \n");
6545 }
f2a8bc8a
YQ
6546
6547 /* Don't display it when tracepoint or tracepoint location is
6548 pending. */
6549 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6550 {
6551 annotate_field (11);
6552
6553 if (ui_out_is_mi_like_p (uiout))
6554 ui_out_field_string (uiout, "installed",
6555 loc->inserted ? "y" : "n");
6556 else
6557 {
6558 if (loc->inserted)
6559 ui_out_text (uiout, "\t");
6560 else
6561 ui_out_text (uiout, "\tnot ");
6562 ui_out_text (uiout, "installed on target\n");
6563 }
6564 }
1042e4c0
SS
6565 }
6566
d24317b4
VP
6567 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
6568 {
3a5c3e22
PA
6569 if (is_watchpoint (b))
6570 {
6571 struct watchpoint *w = (struct watchpoint *) b;
6572
6573 ui_out_field_string (uiout, "original-location", w->exp_string);
6574 }
6575 else if (b->addr_string)
d24317b4 6576 ui_out_field_string (uiout, "original-location", b->addr_string);
d24317b4 6577 }
c4093a6a 6578}
c5aa993b 6579
0d381245
VP
6580static void
6581print_one_breakpoint (struct breakpoint *b,
4a64f543 6582 struct bp_location **last_loc,
6c95b8df 6583 int allflag)
0d381245 6584{
8d3788bd 6585 struct cleanup *bkpt_chain;
79a45e25 6586 struct ui_out *uiout = current_uiout;
8d3788bd
VP
6587
6588 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
6589
12c5a436 6590 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
8d3788bd 6591 do_cleanups (bkpt_chain);
0d381245
VP
6592
6593 /* If this breakpoint has custom print function,
6594 it's already printed. Otherwise, print individual
6595 locations, if any. */
6596 if (b->ops == NULL || b->ops->print_one == NULL)
6597 {
4a64f543
MS
6598 /* If breakpoint has a single location that is disabled, we
6599 print it as if it had several locations, since otherwise it's
6600 hard to represent "breakpoint enabled, location disabled"
6601 situation.
6602
6603 Note that while hardware watchpoints have several locations
a3be7890 6604 internally, that's not a property exposed to user. */
0d381245 6605 if (b->loc
a5606eee 6606 && !is_hardware_watchpoint (b)
8d3788bd 6607 && (b->loc->next || !b->loc->enabled))
0d381245
VP
6608 {
6609 struct bp_location *loc;
6610 int n = 1;
8d3788bd 6611
0d381245 6612 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd
VP
6613 {
6614 struct cleanup *inner2 =
6615 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
6616 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6617 do_cleanups (inner2);
6618 }
0d381245
VP
6619 }
6620 }
6621}
6622
a6d9a66e
UW
6623static int
6624breakpoint_address_bits (struct breakpoint *b)
6625{
6626 int print_address_bits = 0;
6627 struct bp_location *loc;
6628
6629 for (loc = b->loc; loc; loc = loc->next)
6630 {
c7437ca6
PA
6631 int addr_bit;
6632
6633 /* Software watchpoints that aren't watching memory don't have
6634 an address to print. */
6635 if (b->type == bp_watchpoint && loc->watchpoint_type == -1)
6636 continue;
6637
6638 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6639 if (addr_bit > print_address_bits)
6640 print_address_bits = addr_bit;
6641 }
6642
6643 return print_address_bits;
6644}
0d381245 6645
c4093a6a
JM
6646struct captured_breakpoint_query_args
6647 {
6648 int bnum;
6649 };
c5aa993b 6650
c4093a6a 6651static int
2b65245e 6652do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
6653{
6654 struct captured_breakpoint_query_args *args = data;
52f0bd74 6655 struct breakpoint *b;
a6d9a66e 6656 struct bp_location *dummy_loc = NULL;
cc59ec59 6657
c4093a6a
JM
6658 ALL_BREAKPOINTS (b)
6659 {
6660 if (args->bnum == b->number)
c5aa993b 6661 {
12c5a436 6662 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6663 return GDB_RC_OK;
c5aa993b 6664 }
c4093a6a
JM
6665 }
6666 return GDB_RC_NONE;
6667}
c5aa993b 6668
c4093a6a 6669enum gdb_rc
4a64f543
MS
6670gdb_breakpoint_query (struct ui_out *uiout, int bnum,
6671 char **error_message)
c4093a6a
JM
6672{
6673 struct captured_breakpoint_query_args args;
cc59ec59 6674
c4093a6a
JM
6675 args.bnum = bnum;
6676 /* For the moment we don't trust print_one_breakpoint() to not throw
4a64f543 6677 an error. */
b0b13bb4
DJ
6678 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
6679 error_message, RETURN_MASK_ALL) < 0)
6680 return GDB_RC_FAIL;
6681 else
6682 return GDB_RC_OK;
c4093a6a 6683}
c5aa993b 6684
09d682a4
TT
6685/* Return true if this breakpoint was set by the user, false if it is
6686 internal or momentary. */
6687
6688int
6689user_breakpoint_p (struct breakpoint *b)
6690{
46c6471b 6691 return b->number > 0;
09d682a4
TT
6692}
6693
7f3b0473 6694/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
6695 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6696 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6697 FILTER is non-NULL, call it on each breakpoint and only include the
6698 ones for which it returns non-zero. Return the total number of
6699 breakpoints listed. */
c906108c 6700
d77f58be 6701static int
e5a67952 6702breakpoint_1 (char *args, int allflag,
4a64f543 6703 int (*filter) (const struct breakpoint *))
c4093a6a 6704{
52f0bd74 6705 struct breakpoint *b;
a6d9a66e 6706 struct bp_location *last_loc = NULL;
7f3b0473 6707 int nr_printable_breakpoints;
3b31d625 6708 struct cleanup *bkpttbl_chain;
79a45b7d 6709 struct value_print_options opts;
a6d9a66e 6710 int print_address_bits = 0;
269b11a2 6711 int print_type_col_width = 14;
79a45e25 6712 struct ui_out *uiout = current_uiout;
269b11a2 6713
79a45b7d
TT
6714 get_user_print_options (&opts);
6715
4a64f543
MS
6716 /* Compute the number of rows in the table, as well as the size
6717 required for address fields. */
7f3b0473
AC
6718 nr_printable_breakpoints = 0;
6719 ALL_BREAKPOINTS (b)
e5a67952
MS
6720 {
6721 /* If we have a filter, only list the breakpoints it accepts. */
6722 if (filter && !filter (b))
6723 continue;
6724
6725 /* If we have an "args" string, it is a list of breakpoints to
6726 accept. Skip the others. */
6727 if (args != NULL && *args != '\0')
6728 {
6729 if (allflag && parse_and_eval_long (args) != b->number)
6730 continue;
6731 if (!allflag && !number_is_in_list (args, b->number))
6732 continue;
6733 }
269b11a2 6734
e5a67952
MS
6735 if (allflag || user_breakpoint_p (b))
6736 {
6737 int addr_bit, type_len;
a6d9a66e 6738
e5a67952
MS
6739 addr_bit = breakpoint_address_bits (b);
6740 if (addr_bit > print_address_bits)
6741 print_address_bits = addr_bit;
269b11a2 6742
e5a67952
MS
6743 type_len = strlen (bptype_string (b->type));
6744 if (type_len > print_type_col_width)
6745 print_type_col_width = type_len;
6746
6747 nr_printable_breakpoints++;
6748 }
6749 }
7f3b0473 6750
79a45b7d 6751 if (opts.addressprint)
3b31d625 6752 bkpttbl_chain
3e43a32a
MS
6753 = make_cleanup_ui_out_table_begin_end (uiout, 6,
6754 nr_printable_breakpoints,
3b31d625 6755 "BreakpointTable");
8b93c638 6756 else
3b31d625 6757 bkpttbl_chain
3e43a32a
MS
6758 = make_cleanup_ui_out_table_begin_end (uiout, 5,
6759 nr_printable_breakpoints,
3b31d625 6760 "BreakpointTable");
8b93c638 6761
7f3b0473 6762 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
6763 annotate_breakpoints_headers ();
6764 if (nr_printable_breakpoints > 0)
6765 annotate_field (0);
4a64f543 6766 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
6767 if (nr_printable_breakpoints > 0)
6768 annotate_field (1);
269b11a2 6769 ui_out_table_header (uiout, print_type_col_width, ui_left,
4a64f543 6770 "type", "Type"); /* 2 */
d7faa9e7
AC
6771 if (nr_printable_breakpoints > 0)
6772 annotate_field (2);
4a64f543 6773 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
d7faa9e7
AC
6774 if (nr_printable_breakpoints > 0)
6775 annotate_field (3);
54e52265 6776 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 6777 if (opts.addressprint)
e5a67952
MS
6778 {
6779 if (nr_printable_breakpoints > 0)
6780 annotate_field (4);
6781 if (print_address_bits <= 32)
6782 ui_out_table_header (uiout, 10, ui_left,
6783 "addr", "Address"); /* 5 */
6784 else
6785 ui_out_table_header (uiout, 18, ui_left,
6786 "addr", "Address"); /* 5 */
6787 }
d7faa9e7
AC
6788 if (nr_printable_breakpoints > 0)
6789 annotate_field (5);
6790 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
6791 ui_out_table_body (uiout);
6792 if (nr_printable_breakpoints > 0)
6793 annotate_breakpoints_table ();
7f3b0473 6794
c4093a6a 6795 ALL_BREAKPOINTS (b)
e5a67952
MS
6796 {
6797 QUIT;
6798 /* If we have a filter, only list the breakpoints it accepts. */
6799 if (filter && !filter (b))
6800 continue;
6801
6802 /* If we have an "args" string, it is a list of breakpoints to
6803 accept. Skip the others. */
6804
6805 if (args != NULL && *args != '\0')
6806 {
6807 if (allflag) /* maintenance info breakpoint */
6808 {
6809 if (parse_and_eval_long (args) != b->number)
6810 continue;
6811 }
6812 else /* all others */
6813 {
6814 if (!number_is_in_list (args, b->number))
6815 continue;
6816 }
6817 }
6818 /* We only print out user settable breakpoints unless the
6819 allflag is set. */
6820 if (allflag || user_breakpoint_p (b))
12c5a436 6821 print_one_breakpoint (b, &last_loc, allflag);
e5a67952
MS
6822 }
6823
3b31d625 6824 do_cleanups (bkpttbl_chain);
698384cd 6825
7f3b0473 6826 if (nr_printable_breakpoints == 0)
c906108c 6827 {
4a64f543
MS
6828 /* If there's a filter, let the caller decide how to report
6829 empty list. */
d77f58be
SS
6830 if (!filter)
6831 {
e5a67952 6832 if (args == NULL || *args == '\0')
d77f58be
SS
6833 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
6834 else
4a64f543 6835 ui_out_message (uiout, 0,
e5a67952
MS
6836 "No breakpoint or watchpoint matching '%s'.\n",
6837 args);
d77f58be 6838 }
c906108c
SS
6839 }
6840 else
c4093a6a 6841 {
a6d9a66e
UW
6842 if (last_loc && !server_command)
6843 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6844 }
c906108c 6845
4a64f543 6846 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6847 there have been breakpoints? */
c906108c 6848 annotate_breakpoints_table_end ();
d77f58be
SS
6849
6850 return nr_printable_breakpoints;
c906108c
SS
6851}
6852
ad443146
SS
6853/* Display the value of default-collect in a way that is generally
6854 compatible with the breakpoint list. */
6855
6856static void
6857default_collect_info (void)
6858{
79a45e25
PA
6859 struct ui_out *uiout = current_uiout;
6860
ad443146
SS
6861 /* If it has no value (which is frequently the case), say nothing; a
6862 message like "No default-collect." gets in user's face when it's
6863 not wanted. */
6864 if (!*default_collect)
6865 return;
6866
6867 /* The following phrase lines up nicely with per-tracepoint collect
6868 actions. */
6869 ui_out_text (uiout, "default collect ");
6870 ui_out_field_string (uiout, "default-collect", default_collect);
6871 ui_out_text (uiout, " \n");
6872}
6873
c906108c 6874static void
e5a67952 6875breakpoints_info (char *args, int from_tty)
c906108c 6876{
e5a67952 6877 breakpoint_1 (args, 0, NULL);
ad443146
SS
6878
6879 default_collect_info ();
d77f58be
SS
6880}
6881
6882static void
e5a67952 6883watchpoints_info (char *args, int from_tty)
d77f58be 6884{
e5a67952 6885 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
79a45e25 6886 struct ui_out *uiout = current_uiout;
d77f58be
SS
6887
6888 if (num_printed == 0)
6889 {
e5a67952 6890 if (args == NULL || *args == '\0')
d77f58be
SS
6891 ui_out_message (uiout, 0, "No watchpoints.\n");
6892 else
e5a67952 6893 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
d77f58be 6894 }
c906108c
SS
6895}
6896
7a292a7a 6897static void
e5a67952 6898maintenance_info_breakpoints (char *args, int from_tty)
c906108c 6899{
e5a67952 6900 breakpoint_1 (args, 1, NULL);
ad443146
SS
6901
6902 default_collect_info ();
c906108c
SS
6903}
6904
0d381245 6905static int
714835d5 6906breakpoint_has_pc (struct breakpoint *b,
6c95b8df 6907 struct program_space *pspace,
714835d5 6908 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
6909{
6910 struct bp_location *bl = b->loc;
cc59ec59 6911
0d381245
VP
6912 for (; bl; bl = bl->next)
6913 {
6c95b8df
PA
6914 if (bl->pspace == pspace
6915 && bl->address == pc
0d381245
VP
6916 && (!overlay_debugging || bl->section == section))
6917 return 1;
6918 }
6919 return 0;
6920}
6921
672f9b60 6922/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
6923 concerns with logical breakpoints, so we match program spaces, not
6924 address spaces. */
c906108c
SS
6925
6926static void
6c95b8df
PA
6927describe_other_breakpoints (struct gdbarch *gdbarch,
6928 struct program_space *pspace, CORE_ADDR pc,
5af949e3 6929 struct obj_section *section, int thread)
c906108c 6930{
52f0bd74
AC
6931 int others = 0;
6932 struct breakpoint *b;
c906108c
SS
6933
6934 ALL_BREAKPOINTS (b)
672f9b60
KP
6935 others += (user_breakpoint_p (b)
6936 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
6937 if (others > 0)
6938 {
a3f17187
AC
6939 if (others == 1)
6940 printf_filtered (_("Note: breakpoint "));
6941 else /* if (others == ???) */
6942 printf_filtered (_("Note: breakpoints "));
c906108c 6943 ALL_BREAKPOINTS (b)
672f9b60 6944 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
6945 {
6946 others--;
6947 printf_filtered ("%d", b->number);
6948 if (b->thread == -1 && thread != -1)
6949 printf_filtered (" (all threads)");
6950 else if (b->thread != -1)
6951 printf_filtered (" (thread %d)", b->thread);
6952 printf_filtered ("%s%s ",
059fb39f 6953 ((b->enable_state == bp_disabled
f8eba3c6 6954 || b->enable_state == bp_call_disabled)
0d381245
VP
6955 ? " (disabled)"
6956 : b->enable_state == bp_permanent
6957 ? " (permanent)"
6958 : ""),
6959 (others > 1) ? ","
6960 : ((others == 1) ? " and" : ""));
6961 }
a3f17187 6962 printf_filtered (_("also set at pc "));
5af949e3 6963 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
6964 printf_filtered (".\n");
6965 }
6966}
6967\f
c906108c 6968
e4f237da
KB
6969/* Return true iff it is meaningful to use the address member of
6970 BPT. For some breakpoint types, the address member is irrelevant
6971 and it makes no sense to attempt to compare it to other addresses
6972 (or use it for any other purpose either).
6973
4a64f543
MS
6974 More specifically, each of the following breakpoint types will
6975 always have a zero valued address and we don't want to mark
6976 breakpoints of any of these types to be a duplicate of an actual
6977 breakpoint at address zero:
e4f237da
KB
6978
6979 bp_watchpoint
2d134ed3
PA
6980 bp_catchpoint
6981
6982*/
e4f237da
KB
6983
6984static int
6985breakpoint_address_is_meaningful (struct breakpoint *bpt)
6986{
6987 enum bptype type = bpt->type;
6988
2d134ed3
PA
6989 return (type != bp_watchpoint && type != bp_catchpoint);
6990}
6991
6992/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6993 true if LOC1 and LOC2 represent the same watchpoint location. */
6994
6995static int
4a64f543
MS
6996watchpoint_locations_match (struct bp_location *loc1,
6997 struct bp_location *loc2)
2d134ed3 6998{
3a5c3e22
PA
6999 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
7000 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
7001
7002 /* Both of them must exist. */
7003 gdb_assert (w1 != NULL);
7004 gdb_assert (w2 != NULL);
2bdf28a0 7005
4a64f543
MS
7006 /* If the target can evaluate the condition expression in hardware,
7007 then we we need to insert both watchpoints even if they are at
7008 the same place. Otherwise the watchpoint will only trigger when
7009 the condition of whichever watchpoint was inserted evaluates to
7010 true, not giving a chance for GDB to check the condition of the
7011 other watchpoint. */
3a5c3e22 7012 if ((w1->cond_exp
4a64f543
MS
7013 && target_can_accel_watchpoint_condition (loc1->address,
7014 loc1->length,
0cf6dd15 7015 loc1->watchpoint_type,
3a5c3e22
PA
7016 w1->cond_exp))
7017 || (w2->cond_exp
4a64f543
MS
7018 && target_can_accel_watchpoint_condition (loc2->address,
7019 loc2->length,
0cf6dd15 7020 loc2->watchpoint_type,
3a5c3e22 7021 w2->cond_exp)))
0cf6dd15
TJB
7022 return 0;
7023
85d721b8
PA
7024 /* Note that this checks the owner's type, not the location's. In
7025 case the target does not support read watchpoints, but does
7026 support access watchpoints, we'll have bp_read_watchpoint
7027 watchpoints with hw_access locations. Those should be considered
7028 duplicates of hw_read locations. The hw_read locations will
7029 become hw_access locations later. */
2d134ed3
PA
7030 return (loc1->owner->type == loc2->owner->type
7031 && loc1->pspace->aspace == loc2->pspace->aspace
7032 && loc1->address == loc2->address
7033 && loc1->length == loc2->length);
e4f237da
KB
7034}
7035
31e77af2 7036/* See breakpoint.h. */
6c95b8df 7037
31e77af2 7038int
6c95b8df
PA
7039breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
7040 struct address_space *aspace2, CORE_ADDR addr2)
7041{
f5656ead 7042 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
7043 || aspace1 == aspace2)
7044 && addr1 == addr2);
7045}
7046
f1310107
TJB
7047/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
7048 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
7049 matches ASPACE2. On targets that have global breakpoints, the address
7050 space doesn't really matter. */
7051
7052static int
7053breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
7054 int len1, struct address_space *aspace2,
7055 CORE_ADDR addr2)
7056{
f5656ead 7057 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
7058 || aspace1 == aspace2)
7059 && addr2 >= addr1 && addr2 < addr1 + len1);
7060}
7061
7062/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
7063 a ranged breakpoint. In most targets, a match happens only if ASPACE
7064 matches the breakpoint's address space. On targets that have global
7065 breakpoints, the address space doesn't really matter. */
7066
7067static int
7068breakpoint_location_address_match (struct bp_location *bl,
7069 struct address_space *aspace,
7070 CORE_ADDR addr)
7071{
7072 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
7073 aspace, addr)
7074 || (bl->length
7075 && breakpoint_address_match_range (bl->pspace->aspace,
7076 bl->address, bl->length,
7077 aspace, addr)));
7078}
7079
1e4d1764
YQ
7080/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
7081 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
7082 true, otherwise returns false. */
7083
7084static int
7085tracepoint_locations_match (struct bp_location *loc1,
7086 struct bp_location *loc2)
7087{
7088 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
7089 /* Since tracepoint locations are never duplicated with others', tracepoint
7090 locations at the same address of different tracepoints are regarded as
7091 different locations. */
7092 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
7093 else
7094 return 0;
7095}
7096
2d134ed3
PA
7097/* Assuming LOC1 and LOC2's types' have meaningful target addresses
7098 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
7099 represent the same location. */
7100
7101static int
4a64f543
MS
7102breakpoint_locations_match (struct bp_location *loc1,
7103 struct bp_location *loc2)
2d134ed3 7104{
2bdf28a0
JK
7105 int hw_point1, hw_point2;
7106
7107 /* Both of them must not be in moribund_locations. */
7108 gdb_assert (loc1->owner != NULL);
7109 gdb_assert (loc2->owner != NULL);
7110
7111 hw_point1 = is_hardware_watchpoint (loc1->owner);
7112 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
7113
7114 if (hw_point1 != hw_point2)
7115 return 0;
7116 else if (hw_point1)
7117 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
7118 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
7119 return tracepoint_locations_match (loc1, loc2);
2d134ed3 7120 else
f1310107
TJB
7121 /* We compare bp_location.length in order to cover ranged breakpoints. */
7122 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
7123 loc2->pspace->aspace, loc2->address)
7124 && loc1->length == loc2->length);
2d134ed3
PA
7125}
7126
76897487
KB
7127static void
7128breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
7129 int bnum, int have_bnum)
7130{
f63fbe86
MS
7131 /* The longest string possibly returned by hex_string_custom
7132 is 50 chars. These must be at least that big for safety. */
7133 char astr1[64];
7134 char astr2[64];
76897487 7135
bb599908
PH
7136 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
7137 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 7138 if (have_bnum)
8a3fe4f8 7139 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
7140 bnum, astr1, astr2);
7141 else
8a3fe4f8 7142 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
7143}
7144
4a64f543
MS
7145/* Adjust a breakpoint's address to account for architectural
7146 constraints on breakpoint placement. Return the adjusted address.
7147 Note: Very few targets require this kind of adjustment. For most
7148 targets, this function is simply the identity function. */
76897487
KB
7149
7150static CORE_ADDR
a6d9a66e
UW
7151adjust_breakpoint_address (struct gdbarch *gdbarch,
7152 CORE_ADDR bpaddr, enum bptype bptype)
76897487 7153{
a6d9a66e 7154 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
7155 {
7156 /* Very few targets need any kind of breakpoint adjustment. */
7157 return bpaddr;
7158 }
88f7da05
KB
7159 else if (bptype == bp_watchpoint
7160 || bptype == bp_hardware_watchpoint
7161 || bptype == bp_read_watchpoint
7162 || bptype == bp_access_watchpoint
fe798b75 7163 || bptype == bp_catchpoint)
88f7da05
KB
7164 {
7165 /* Watchpoints and the various bp_catch_* eventpoints should not
7166 have their addresses modified. */
7167 return bpaddr;
7168 }
76897487
KB
7169 else
7170 {
7171 CORE_ADDR adjusted_bpaddr;
7172
7173 /* Some targets have architectural constraints on the placement
7174 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 7175 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
7176
7177 /* An adjusted breakpoint address can significantly alter
7178 a user's expectations. Print a warning if an adjustment
7179 is required. */
7180 if (adjusted_bpaddr != bpaddr)
7181 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
7182
7183 return adjusted_bpaddr;
7184 }
7185}
7186
28010a5d
PA
7187void
7188init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
7189 struct breakpoint *owner)
7cc221ef 7190{
7cc221ef
DJ
7191 memset (loc, 0, sizeof (*loc));
7192
348d480f
PA
7193 gdb_assert (ops != NULL);
7194
28010a5d
PA
7195 loc->ops = ops;
7196 loc->owner = owner;
511a6cd4 7197 loc->cond = NULL;
b775012e 7198 loc->cond_bytecode = NULL;
0d381245
VP
7199 loc->shlib_disabled = 0;
7200 loc->enabled = 1;
e049a4b5 7201
28010a5d 7202 switch (owner->type)
e049a4b5
DJ
7203 {
7204 case bp_breakpoint:
7205 case bp_until:
7206 case bp_finish:
7207 case bp_longjmp:
7208 case bp_longjmp_resume:
e2e4d78b 7209 case bp_longjmp_call_dummy:
186c406b
TT
7210 case bp_exception:
7211 case bp_exception_resume:
e049a4b5 7212 case bp_step_resume:
2c03e5be 7213 case bp_hp_step_resume:
e049a4b5
DJ
7214 case bp_watchpoint_scope:
7215 case bp_call_dummy:
aa7d318d 7216 case bp_std_terminate:
e049a4b5
DJ
7217 case bp_shlib_event:
7218 case bp_thread_event:
7219 case bp_overlay_event:
4efc6507 7220 case bp_jit_event:
0fd8e87f 7221 case bp_longjmp_master:
aa7d318d 7222 case bp_std_terminate_master:
186c406b 7223 case bp_exception_master:
0e30163f
JK
7224 case bp_gnu_ifunc_resolver:
7225 case bp_gnu_ifunc_resolver_return:
e7e0cddf 7226 case bp_dprintf:
e049a4b5 7227 loc->loc_type = bp_loc_software_breakpoint;
b775012e 7228 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7229 break;
7230 case bp_hardware_breakpoint:
7231 loc->loc_type = bp_loc_hardware_breakpoint;
b775012e 7232 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
7233 break;
7234 case bp_hardware_watchpoint:
7235 case bp_read_watchpoint:
7236 case bp_access_watchpoint:
7237 loc->loc_type = bp_loc_hardware_watchpoint;
7238 break;
7239 case bp_watchpoint:
ce78b96d 7240 case bp_catchpoint:
15c3d785
PA
7241 case bp_tracepoint:
7242 case bp_fast_tracepoint:
0fb4aa4b 7243 case bp_static_tracepoint:
e049a4b5
DJ
7244 loc->loc_type = bp_loc_other;
7245 break;
7246 default:
e2e0b3e5 7247 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
7248 }
7249
f431efe5 7250 loc->refc = 1;
28010a5d
PA
7251}
7252
7253/* Allocate a struct bp_location. */
7254
7255static struct bp_location *
7256allocate_bp_location (struct breakpoint *bpt)
7257{
348d480f
PA
7258 return bpt->ops->allocate_location (bpt);
7259}
7cc221ef 7260
f431efe5
PA
7261static void
7262free_bp_location (struct bp_location *loc)
fe3f5fa8 7263{
348d480f 7264 loc->ops->dtor (loc);
fe3f5fa8
VP
7265 xfree (loc);
7266}
7267
f431efe5
PA
7268/* Increment reference count. */
7269
7270static void
7271incref_bp_location (struct bp_location *bl)
7272{
7273 ++bl->refc;
7274}
7275
7276/* Decrement reference count. If the reference count reaches 0,
7277 destroy the bp_location. Sets *BLP to NULL. */
7278
7279static void
7280decref_bp_location (struct bp_location **blp)
7281{
0807b50c
PA
7282 gdb_assert ((*blp)->refc > 0);
7283
f431efe5
PA
7284 if (--(*blp)->refc == 0)
7285 free_bp_location (*blp);
7286 *blp = NULL;
7287}
7288
346774a9 7289/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 7290
346774a9
PA
7291static void
7292add_to_breakpoint_chain (struct breakpoint *b)
c906108c 7293{
346774a9 7294 struct breakpoint *b1;
c906108c 7295
346774a9
PA
7296 /* Add this breakpoint to the end of the chain so that a list of
7297 breakpoints will come out in order of increasing numbers. */
7298
7299 b1 = breakpoint_chain;
7300 if (b1 == 0)
7301 breakpoint_chain = b;
7302 else
7303 {
7304 while (b1->next)
7305 b1 = b1->next;
7306 b1->next = b;
7307 }
7308}
7309
7310/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7311
7312static void
7313init_raw_breakpoint_without_location (struct breakpoint *b,
7314 struct gdbarch *gdbarch,
28010a5d 7315 enum bptype bptype,
c0a91b2b 7316 const struct breakpoint_ops *ops)
346774a9 7317{
c906108c 7318 memset (b, 0, sizeof (*b));
2219d63c 7319
348d480f
PA
7320 gdb_assert (ops != NULL);
7321
28010a5d 7322 b->ops = ops;
4d28f7a8 7323 b->type = bptype;
a6d9a66e 7324 b->gdbarch = gdbarch;
c906108c
SS
7325 b->language = current_language->la_language;
7326 b->input_radix = input_radix;
7327 b->thread = -1;
b5de0fa7 7328 b->enable_state = bp_enabled;
c906108c
SS
7329 b->next = 0;
7330 b->silent = 0;
7331 b->ignore_count = 0;
7332 b->commands = NULL;
818dd999 7333 b->frame_id = null_frame_id;
0d381245 7334 b->condition_not_parsed = 0;
84f4c1fe 7335 b->py_bp_object = NULL;
d0fb5eae 7336 b->related_breakpoint = b;
346774a9
PA
7337}
7338
7339/* Helper to set_raw_breakpoint below. Creates a breakpoint
7340 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7341
7342static struct breakpoint *
7343set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7344 enum bptype bptype,
c0a91b2b 7345 const struct breakpoint_ops *ops)
346774a9
PA
7346{
7347 struct breakpoint *b = XNEW (struct breakpoint);
7348
348d480f 7349 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
c56053d2 7350 add_to_breakpoint_chain (b);
0d381245
VP
7351 return b;
7352}
7353
0e30163f
JK
7354/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7355 resolutions should be made as the user specified the location explicitly
7356 enough. */
7357
0d381245 7358static void
0e30163f 7359set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 7360{
2bdf28a0
JK
7361 gdb_assert (loc->owner != NULL);
7362
0d381245 7363 if (loc->owner->type == bp_breakpoint
1042e4c0 7364 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7365 || is_tracepoint (loc->owner))
0d381245 7366 {
0e30163f 7367 int is_gnu_ifunc;
2c02bd72 7368 const char *function_name;
6a3a010b 7369 CORE_ADDR func_addr;
0e30163f 7370
2c02bd72 7371 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
6a3a010b 7372 &func_addr, NULL, &is_gnu_ifunc);
0e30163f
JK
7373
7374 if (is_gnu_ifunc && !explicit_loc)
7375 {
7376 struct breakpoint *b = loc->owner;
7377
7378 gdb_assert (loc->pspace == current_program_space);
2c02bd72 7379 if (gnu_ifunc_resolve_name (function_name,
0e30163f
JK
7380 &loc->requested_address))
7381 {
7382 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7383 loc->address = adjust_breakpoint_address (loc->gdbarch,
7384 loc->requested_address,
7385 b->type);
7386 }
7387 else if (b->type == bp_breakpoint && b->loc == loc
7388 && loc->next == NULL && b->related_breakpoint == b)
7389 {
7390 /* Create only the whole new breakpoint of this type but do not
7391 mess more complicated breakpoints with multiple locations. */
7392 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7393 /* Remember the resolver's address for use by the return
7394 breakpoint. */
7395 loc->related_address = func_addr;
0e30163f
JK
7396 }
7397 }
7398
2c02bd72
DE
7399 if (function_name)
7400 loc->function_name = xstrdup (function_name);
0d381245
VP
7401 }
7402}
7403
a6d9a66e 7404/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7405struct gdbarch *
a6d9a66e
UW
7406get_sal_arch (struct symtab_and_line sal)
7407{
7408 if (sal.section)
7409 return get_objfile_arch (sal.section->objfile);
7410 if (sal.symtab)
7411 return get_objfile_arch (sal.symtab->objfile);
7412
7413 return NULL;
7414}
7415
346774a9
PA
7416/* Low level routine for partially initializing a breakpoint of type
7417 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7418 file name, and line number are provided by SAL.
0d381245
VP
7419
7420 It is expected that the caller will complete the initialization of
7421 the newly created breakpoint struct as well as output any status
c56053d2 7422 information regarding the creation of a new breakpoint. */
0d381245 7423
346774a9
PA
7424static void
7425init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7426 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7427 const struct breakpoint_ops *ops)
0d381245 7428{
28010a5d 7429 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7430
3742cc8b 7431 add_location_to_breakpoint (b, &sal);
0d381245 7432
6c95b8df
PA
7433 if (bptype != bp_catchpoint)
7434 gdb_assert (sal.pspace != NULL);
7435
f8eba3c6
TT
7436 /* Store the program space that was used to set the breakpoint,
7437 except for ordinary breakpoints, which are independent of the
7438 program space. */
7439 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7440 b->pspace = sal.pspace;
346774a9 7441}
c906108c 7442
346774a9
PA
7443/* set_raw_breakpoint is a low level routine for allocating and
7444 partially initializing a breakpoint of type BPTYPE. The newly
7445 created breakpoint's address, section, source file name, and line
7446 number are provided by SAL. The newly created and partially
7447 initialized breakpoint is added to the breakpoint chain and
7448 is also returned as the value of this function.
7449
7450 It is expected that the caller will complete the initialization of
7451 the newly created breakpoint struct as well as output any status
7452 information regarding the creation of a new breakpoint. In
7453 particular, set_raw_breakpoint does NOT set the breakpoint
7454 number! Care should be taken to not allow an error to occur
7455 prior to completing the initialization of the breakpoint. If this
7456 should happen, a bogus breakpoint will be left on the chain. */
7457
7458struct breakpoint *
7459set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7460 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7461 const struct breakpoint_ops *ops)
346774a9
PA
7462{
7463 struct breakpoint *b = XNEW (struct breakpoint);
7464
348d480f 7465 init_raw_breakpoint (b, gdbarch, sal, bptype, ops);
c56053d2 7466 add_to_breakpoint_chain (b);
c906108c
SS
7467 return b;
7468}
7469
c2c6d25f
JM
7470
7471/* Note that the breakpoint object B describes a permanent breakpoint
7472 instruction, hard-wired into the inferior's code. */
7473void
7474make_breakpoint_permanent (struct breakpoint *b)
7475{
0d381245 7476 struct bp_location *bl;
cc59ec59 7477
b5de0fa7 7478 b->enable_state = bp_permanent;
c2c6d25f 7479
4a64f543
MS
7480 /* By definition, permanent breakpoints are already present in the
7481 code. Mark all locations as inserted. For now,
7482 make_breakpoint_permanent is called in just one place, so it's
7483 hard to say if it's reasonable to have permanent breakpoint with
e5dd4106 7484 multiple locations or not, but it's easy to implement. */
0d381245
VP
7485 for (bl = b->loc; bl; bl = bl->next)
7486 bl->inserted = 1;
c2c6d25f
JM
7487}
7488
53a5351d 7489/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7490 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7491 initiated the operation. */
c906108c
SS
7492
7493void
186c406b 7494set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7495{
35df4500 7496 struct breakpoint *b, *b_tmp;
186c406b 7497 int thread = tp->num;
0fd8e87f
UW
7498
7499 /* To avoid having to rescan all objfile symbols at every step,
7500 we maintain a list of continually-inserted but always disabled
7501 longjmp "master" breakpoints. Here, we simply create momentary
7502 clones of those and enable them for the requested thread. */
35df4500 7503 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7504 if (b->pspace == current_program_space
186c406b
TT
7505 && (b->type == bp_longjmp_master
7506 || b->type == bp_exception_master))
0fd8e87f 7507 {
06edf0c0
PA
7508 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7509 struct breakpoint *clone;
cc59ec59 7510
e2e4d78b
JK
7511 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7512 after their removal. */
06edf0c0 7513 clone = momentary_breakpoint_from_master (b, type,
a1aa2221 7514 &longjmp_breakpoint_ops, 1);
0fd8e87f
UW
7515 clone->thread = thread;
7516 }
186c406b
TT
7517
7518 tp->initiating_frame = frame;
c906108c
SS
7519}
7520
611c83ae 7521/* Delete all longjmp breakpoints from THREAD. */
c906108c 7522void
611c83ae 7523delete_longjmp_breakpoint (int thread)
c906108c 7524{
35df4500 7525 struct breakpoint *b, *b_tmp;
c906108c 7526
35df4500 7527 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7528 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7529 {
7530 if (b->thread == thread)
7531 delete_breakpoint (b);
7532 }
c906108c
SS
7533}
7534
f59f708a
PA
7535void
7536delete_longjmp_breakpoint_at_next_stop (int thread)
7537{
7538 struct breakpoint *b, *b_tmp;
7539
7540 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7541 if (b->type == bp_longjmp || b->type == bp_exception)
7542 {
7543 if (b->thread == thread)
7544 b->disposition = disp_del_at_next_stop;
7545 }
7546}
7547
e2e4d78b
JK
7548/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7549 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7550 pointer to any of them. Return NULL if this system cannot place longjmp
7551 breakpoints. */
7552
7553struct breakpoint *
7554set_longjmp_breakpoint_for_call_dummy (void)
7555{
7556 struct breakpoint *b, *retval = NULL;
7557
7558 ALL_BREAKPOINTS (b)
7559 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7560 {
7561 struct breakpoint *new_b;
7562
7563 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
a1aa2221
LM
7564 &momentary_breakpoint_ops,
7565 1);
e2e4d78b
JK
7566 new_b->thread = pid_to_thread_id (inferior_ptid);
7567
7568 /* Link NEW_B into the chain of RETVAL breakpoints. */
7569
7570 gdb_assert (new_b->related_breakpoint == new_b);
7571 if (retval == NULL)
7572 retval = new_b;
7573 new_b->related_breakpoint = retval;
7574 while (retval->related_breakpoint != new_b->related_breakpoint)
7575 retval = retval->related_breakpoint;
7576 retval->related_breakpoint = new_b;
7577 }
7578
7579 return retval;
7580}
7581
7582/* Verify all existing dummy frames and their associated breakpoints for
b67a2c6f 7583 TP. Remove those which can no longer be found in the current frame
e2e4d78b
JK
7584 stack.
7585
7586 You should call this function only at places where it is safe to currently
7587 unwind the whole stack. Failed stack unwind would discard live dummy
7588 frames. */
7589
7590void
b67a2c6f 7591check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
e2e4d78b
JK
7592{
7593 struct breakpoint *b, *b_tmp;
7594
7595 ALL_BREAKPOINTS_SAFE (b, b_tmp)
b67a2c6f 7596 if (b->type == bp_longjmp_call_dummy && b->thread == tp->num)
e2e4d78b
JK
7597 {
7598 struct breakpoint *dummy_b = b->related_breakpoint;
7599
7600 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7601 dummy_b = dummy_b->related_breakpoint;
7602 if (dummy_b->type != bp_call_dummy
7603 || frame_find_by_id (dummy_b->frame_id) != NULL)
7604 continue;
7605
b67a2c6f 7606 dummy_frame_discard (dummy_b->frame_id, tp->ptid);
e2e4d78b
JK
7607
7608 while (b->related_breakpoint != b)
7609 {
7610 if (b_tmp == b->related_breakpoint)
7611 b_tmp = b->related_breakpoint->next;
7612 delete_breakpoint (b->related_breakpoint);
7613 }
7614 delete_breakpoint (b);
7615 }
7616}
7617
1900040c
MS
7618void
7619enable_overlay_breakpoints (void)
7620{
52f0bd74 7621 struct breakpoint *b;
1900040c
MS
7622
7623 ALL_BREAKPOINTS (b)
7624 if (b->type == bp_overlay_event)
7625 {
7626 b->enable_state = bp_enabled;
44702360 7627 update_global_location_list (UGLL_MAY_INSERT);
c02f5703 7628 overlay_events_enabled = 1;
1900040c
MS
7629 }
7630}
7631
7632void
7633disable_overlay_breakpoints (void)
7634{
52f0bd74 7635 struct breakpoint *b;
1900040c
MS
7636
7637 ALL_BREAKPOINTS (b)
7638 if (b->type == bp_overlay_event)
7639 {
7640 b->enable_state = bp_disabled;
44702360 7641 update_global_location_list (UGLL_DONT_INSERT);
c02f5703 7642 overlay_events_enabled = 0;
1900040c
MS
7643 }
7644}
7645
aa7d318d
TT
7646/* Set an active std::terminate breakpoint for each std::terminate
7647 master breakpoint. */
7648void
7649set_std_terminate_breakpoint (void)
7650{
35df4500 7651 struct breakpoint *b, *b_tmp;
aa7d318d 7652
35df4500 7653 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7654 if (b->pspace == current_program_space
7655 && b->type == bp_std_terminate_master)
7656 {
06edf0c0 7657 momentary_breakpoint_from_master (b, bp_std_terminate,
a1aa2221 7658 &momentary_breakpoint_ops, 1);
aa7d318d
TT
7659 }
7660}
7661
7662/* Delete all the std::terminate breakpoints. */
7663void
7664delete_std_terminate_breakpoint (void)
7665{
35df4500 7666 struct breakpoint *b, *b_tmp;
aa7d318d 7667
35df4500 7668 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7669 if (b->type == bp_std_terminate)
7670 delete_breakpoint (b);
7671}
7672
c4093a6a 7673struct breakpoint *
a6d9a66e 7674create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7675{
7676 struct breakpoint *b;
c4093a6a 7677
06edf0c0
PA
7678 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7679 &internal_breakpoint_ops);
7680
b5de0fa7 7681 b->enable_state = bp_enabled;
c4093a6a 7682 /* addr_string has to be used or breakpoint_re_set will delete me. */
5af949e3
UW
7683 b->addr_string
7684 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
c4093a6a 7685
44702360 7686 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 7687
c4093a6a
JM
7688 return b;
7689}
7690
7691void
7692remove_thread_event_breakpoints (void)
7693{
35df4500 7694 struct breakpoint *b, *b_tmp;
c4093a6a 7695
35df4500 7696 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7697 if (b->type == bp_thread_event
7698 && b->loc->pspace == current_program_space)
c4093a6a
JM
7699 delete_breakpoint (b);
7700}
7701
0101ce28
JJ
7702struct lang_and_radix
7703 {
7704 enum language lang;
7705 int radix;
7706 };
7707
4efc6507
DE
7708/* Create a breakpoint for JIT code registration and unregistration. */
7709
7710struct breakpoint *
7711create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7712{
7713 struct breakpoint *b;
7714
06edf0c0
PA
7715 b = create_internal_breakpoint (gdbarch, address, bp_jit_event,
7716 &internal_breakpoint_ops);
44702360 7717 update_global_location_list_nothrow (UGLL_MAY_INSERT);
4efc6507
DE
7718 return b;
7719}
0101ce28 7720
03673fc7
PP
7721/* Remove JIT code registration and unregistration breakpoint(s). */
7722
7723void
7724remove_jit_event_breakpoints (void)
7725{
7726 struct breakpoint *b, *b_tmp;
7727
7728 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7729 if (b->type == bp_jit_event
7730 && b->loc->pspace == current_program_space)
7731 delete_breakpoint (b);
7732}
7733
cae688ec
JJ
7734void
7735remove_solib_event_breakpoints (void)
7736{
35df4500 7737 struct breakpoint *b, *b_tmp;
cae688ec 7738
35df4500 7739 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7740 if (b->type == bp_shlib_event
7741 && b->loc->pspace == current_program_space)
cae688ec
JJ
7742 delete_breakpoint (b);
7743}
7744
f37f681c
PA
7745/* See breakpoint.h. */
7746
7747void
7748remove_solib_event_breakpoints_at_next_stop (void)
7749{
7750 struct breakpoint *b, *b_tmp;
7751
7752 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7753 if (b->type == bp_shlib_event
7754 && b->loc->pspace == current_program_space)
7755 b->disposition = disp_del_at_next_stop;
7756}
7757
04086b45
PA
7758/* Helper for create_solib_event_breakpoint /
7759 create_and_insert_solib_event_breakpoint. Allows specifying which
7760 INSERT_MODE to pass through to update_global_location_list. */
7761
7762static struct breakpoint *
7763create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7764 enum ugll_insert_mode insert_mode)
cae688ec
JJ
7765{
7766 struct breakpoint *b;
7767
06edf0c0
PA
7768 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7769 &internal_breakpoint_ops);
04086b45 7770 update_global_location_list_nothrow (insert_mode);
cae688ec
JJ
7771 return b;
7772}
7773
04086b45
PA
7774struct breakpoint *
7775create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7776{
7777 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7778}
7779
f37f681c
PA
7780/* See breakpoint.h. */
7781
7782struct breakpoint *
7783create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7784{
7785 struct breakpoint *b;
7786
04086b45
PA
7787 /* Explicitly tell update_global_location_list to insert
7788 locations. */
7789 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
f37f681c
PA
7790 if (!b->loc->inserted)
7791 {
7792 delete_breakpoint (b);
7793 return NULL;
7794 }
7795 return b;
7796}
7797
cae688ec
JJ
7798/* Disable any breakpoints that are on code in shared libraries. Only
7799 apply to enabled breakpoints, disabled ones can just stay disabled. */
7800
7801void
cb851954 7802disable_breakpoints_in_shlibs (void)
cae688ec 7803{
876fa593 7804 struct bp_location *loc, **locp_tmp;
cae688ec 7805
876fa593 7806 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7807 {
2bdf28a0 7808 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7809 struct breakpoint *b = loc->owner;
2bdf28a0 7810
4a64f543
MS
7811 /* We apply the check to all breakpoints, including disabled for
7812 those with loc->duplicate set. This is so that when breakpoint
7813 becomes enabled, or the duplicate is removed, gdb will try to
7814 insert all breakpoints. If we don't set shlib_disabled here,
7815 we'll try to insert those breakpoints and fail. */
1042e4c0 7816 if (((b->type == bp_breakpoint)
508ccb1f 7817 || (b->type == bp_jit_event)
1042e4c0 7818 || (b->type == bp_hardware_breakpoint)
d77f58be 7819 || (is_tracepoint (b)))
6c95b8df 7820 && loc->pspace == current_program_space
0d381245 7821 && !loc->shlib_disabled
6c95b8df 7822 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7823 )
0d381245
VP
7824 {
7825 loc->shlib_disabled = 1;
7826 }
cae688ec
JJ
7827 }
7828}
7829
63644780
NB
7830/* Disable any breakpoints and tracepoints that are in SOLIB upon
7831 notification of unloaded_shlib. Only apply to enabled breakpoints,
7832 disabled ones can just stay disabled. */
84acb35a 7833
75149521 7834static void
84acb35a
JJ
7835disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7836{
876fa593 7837 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7838 int disabled_shlib_breaks = 0;
7839
c86cf029
VP
7840 /* SunOS a.out shared libraries are always mapped, so do not
7841 disable breakpoints; they will only be reported as unloaded
7842 through clear_solib when GDB discards its shared library
7843 list. See clear_solib for more information. */
7844 if (exec_bfd != NULL
7845 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
7846 return;
7847
876fa593 7848 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7849 {
2bdf28a0 7850 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7851 struct breakpoint *b = loc->owner;
cc59ec59 7852
1e4d1764 7853 if (solib->pspace == loc->pspace
e2dd7057 7854 && !loc->shlib_disabled
1e4d1764
YQ
7855 && (((b->type == bp_breakpoint
7856 || b->type == bp_jit_event
7857 || b->type == bp_hardware_breakpoint)
7858 && (loc->loc_type == bp_loc_hardware_breakpoint
7859 || loc->loc_type == bp_loc_software_breakpoint))
7860 || is_tracepoint (b))
e2dd7057 7861 && solib_contains_address_p (solib, loc->address))
84acb35a 7862 {
e2dd7057
PP
7863 loc->shlib_disabled = 1;
7864 /* At this point, we cannot rely on remove_breakpoint
7865 succeeding so we must mark the breakpoint as not inserted
7866 to prevent future errors occurring in remove_breakpoints. */
7867 loc->inserted = 0;
8d3788bd
VP
7868
7869 /* This may cause duplicate notifications for the same breakpoint. */
7870 observer_notify_breakpoint_modified (b);
7871
e2dd7057
PP
7872 if (!disabled_shlib_breaks)
7873 {
7874 target_terminal_ours_for_output ();
3e43a32a
MS
7875 warning (_("Temporarily disabling breakpoints "
7876 "for unloaded shared library \"%s\""),
e2dd7057 7877 solib->so_name);
84acb35a 7878 }
e2dd7057 7879 disabled_shlib_breaks = 1;
84acb35a
JJ
7880 }
7881 }
84acb35a
JJ
7882}
7883
63644780
NB
7884/* Disable any breakpoints and tracepoints in OBJFILE upon
7885 notification of free_objfile. Only apply to enabled breakpoints,
7886 disabled ones can just stay disabled. */
7887
7888static void
7889disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7890{
7891 struct breakpoint *b;
7892
7893 if (objfile == NULL)
7894 return;
7895
d03de421
PA
7896 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7897 managed by the user with add-symbol-file/remove-symbol-file.
7898 Similarly to how breakpoints in shared libraries are handled in
7899 response to "nosharedlibrary", mark breakpoints in such modules
08351840
PA
7900 shlib_disabled so they end up uninserted on the next global
7901 location list update. Shared libraries not loaded by the user
7902 aren't handled here -- they're already handled in
7903 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7904 solib_unloaded observer. We skip objfiles that are not
d03de421
PA
7905 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7906 main objfile). */
7907 if ((objfile->flags & OBJF_SHARED) == 0
7908 || (objfile->flags & OBJF_USERLOADED) == 0)
63644780
NB
7909 return;
7910
7911 ALL_BREAKPOINTS (b)
7912 {
7913 struct bp_location *loc;
7914 int bp_modified = 0;
7915
7916 if (!is_breakpoint (b) && !is_tracepoint (b))
7917 continue;
7918
7919 for (loc = b->loc; loc != NULL; loc = loc->next)
7920 {
7921 CORE_ADDR loc_addr = loc->address;
7922
7923 if (loc->loc_type != bp_loc_hardware_breakpoint
7924 && loc->loc_type != bp_loc_software_breakpoint)
7925 continue;
7926
7927 if (loc->shlib_disabled != 0)
7928 continue;
7929
7930 if (objfile->pspace != loc->pspace)
7931 continue;
7932
7933 if (loc->loc_type != bp_loc_hardware_breakpoint
7934 && loc->loc_type != bp_loc_software_breakpoint)
7935 continue;
7936
7937 if (is_addr_in_objfile (loc_addr, objfile))
7938 {
7939 loc->shlib_disabled = 1;
08351840
PA
7940 /* At this point, we don't know whether the object was
7941 unmapped from the inferior or not, so leave the
7942 inserted flag alone. We'll handle failure to
7943 uninsert quietly, in case the object was indeed
7944 unmapped. */
63644780
NB
7945
7946 mark_breakpoint_location_modified (loc);
7947
7948 bp_modified = 1;
7949 }
7950 }
7951
7952 if (bp_modified)
7953 observer_notify_breakpoint_modified (b);
7954 }
7955}
7956
ce78b96d
JB
7957/* FORK & VFORK catchpoints. */
7958
e29a4733
PA
7959/* An instance of this type is used to represent a fork or vfork
7960 catchpoint. It includes a "struct breakpoint" as a kind of base
7961 class; users downcast to "struct breakpoint *" when needed. A
7962 breakpoint is really of this type iff its ops pointer points to
7963 CATCH_FORK_BREAKPOINT_OPS. */
7964
7965struct fork_catchpoint
7966{
7967 /* The base class. */
7968 struct breakpoint base;
7969
7970 /* Process id of a child process whose forking triggered this
7971 catchpoint. This field is only valid immediately after this
7972 catchpoint has triggered. */
7973 ptid_t forked_inferior_pid;
7974};
7975
4a64f543
MS
7976/* Implement the "insert" breakpoint_ops method for fork
7977 catchpoints. */
ce78b96d 7978
77b06cd7
TJB
7979static int
7980insert_catch_fork (struct bp_location *bl)
ce78b96d 7981{
dfd4cc63 7982 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7983}
7984
4a64f543
MS
7985/* Implement the "remove" breakpoint_ops method for fork
7986 catchpoints. */
ce78b96d
JB
7987
7988static int
77b06cd7 7989remove_catch_fork (struct bp_location *bl)
ce78b96d 7990{
dfd4cc63 7991 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7992}
7993
7994/* Implement the "breakpoint_hit" breakpoint_ops method for fork
7995 catchpoints. */
7996
7997static int
f1310107 7998breakpoint_hit_catch_fork (const struct bp_location *bl,
09ac7c10
TT
7999 struct address_space *aspace, CORE_ADDR bp_addr,
8000 const struct target_waitstatus *ws)
ce78b96d 8001{
e29a4733
PA
8002 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8003
f90263c1
TT
8004 if (ws->kind != TARGET_WAITKIND_FORKED)
8005 return 0;
8006
8007 c->forked_inferior_pid = ws->value.related_pid;
8008 return 1;
ce78b96d
JB
8009}
8010
4a64f543
MS
8011/* Implement the "print_it" breakpoint_ops method for fork
8012 catchpoints. */
ce78b96d
JB
8013
8014static enum print_stop_action
348d480f 8015print_it_catch_fork (bpstat bs)
ce78b96d 8016{
36dfb11c 8017 struct ui_out *uiout = current_uiout;
348d480f
PA
8018 struct breakpoint *b = bs->breakpoint_at;
8019 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 8020
ce78b96d 8021 annotate_catchpoint (b->number);
36dfb11c
TT
8022 if (b->disposition == disp_del)
8023 ui_out_text (uiout, "\nTemporary catchpoint ");
8024 else
8025 ui_out_text (uiout, "\nCatchpoint ");
8026 if (ui_out_is_mi_like_p (uiout))
8027 {
8028 ui_out_field_string (uiout, "reason",
8029 async_reason_lookup (EXEC_ASYNC_FORK));
8030 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8031 }
8032 ui_out_field_int (uiout, "bkptno", b->number);
8033 ui_out_text (uiout, " (forked process ");
8034 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8035 ui_out_text (uiout, "), ");
ce78b96d
JB
8036 return PRINT_SRC_AND_LOC;
8037}
8038
4a64f543
MS
8039/* Implement the "print_one" breakpoint_ops method for fork
8040 catchpoints. */
ce78b96d
JB
8041
8042static void
a6d9a66e 8043print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 8044{
e29a4733 8045 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 8046 struct value_print_options opts;
79a45e25 8047 struct ui_out *uiout = current_uiout;
79a45b7d
TT
8048
8049 get_user_print_options (&opts);
8050
4a64f543
MS
8051 /* Field 4, the address, is omitted (which makes the columns not
8052 line up too nicely with the headers, but the effect is relatively
8053 readable). */
79a45b7d 8054 if (opts.addressprint)
ce78b96d
JB
8055 ui_out_field_skip (uiout, "addr");
8056 annotate_field (5);
8057 ui_out_text (uiout, "fork");
e29a4733 8058 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
8059 {
8060 ui_out_text (uiout, ", process ");
8061 ui_out_field_int (uiout, "what",
e29a4733 8062 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
8063 ui_out_spaces (uiout, 1);
8064 }
8ac3646f
TT
8065
8066 if (ui_out_is_mi_like_p (uiout))
8067 ui_out_field_string (uiout, "catch-type", "fork");
ce78b96d
JB
8068}
8069
8070/* Implement the "print_mention" breakpoint_ops method for fork
8071 catchpoints. */
8072
8073static void
8074print_mention_catch_fork (struct breakpoint *b)
8075{
8076 printf_filtered (_("Catchpoint %d (fork)"), b->number);
8077}
8078
6149aea9
PA
8079/* Implement the "print_recreate" breakpoint_ops method for fork
8080 catchpoints. */
8081
8082static void
8083print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
8084{
8085 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 8086 print_recreate_thread (b, fp);
6149aea9
PA
8087}
8088
ce78b96d
JB
8089/* The breakpoint_ops structure to be used in fork catchpoints. */
8090
2060206e 8091static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 8092
4a64f543
MS
8093/* Implement the "insert" breakpoint_ops method for vfork
8094 catchpoints. */
ce78b96d 8095
77b06cd7
TJB
8096static int
8097insert_catch_vfork (struct bp_location *bl)
ce78b96d 8098{
dfd4cc63 8099 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8100}
8101
4a64f543
MS
8102/* Implement the "remove" breakpoint_ops method for vfork
8103 catchpoints. */
ce78b96d
JB
8104
8105static int
77b06cd7 8106remove_catch_vfork (struct bp_location *bl)
ce78b96d 8107{
dfd4cc63 8108 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
8109}
8110
8111/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
8112 catchpoints. */
8113
8114static int
f1310107 8115breakpoint_hit_catch_vfork (const struct bp_location *bl,
09ac7c10
TT
8116 struct address_space *aspace, CORE_ADDR bp_addr,
8117 const struct target_waitstatus *ws)
ce78b96d 8118{
e29a4733
PA
8119 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8120
f90263c1
TT
8121 if (ws->kind != TARGET_WAITKIND_VFORKED)
8122 return 0;
8123
8124 c->forked_inferior_pid = ws->value.related_pid;
8125 return 1;
ce78b96d
JB
8126}
8127
4a64f543
MS
8128/* Implement the "print_it" breakpoint_ops method for vfork
8129 catchpoints. */
ce78b96d
JB
8130
8131static enum print_stop_action
348d480f 8132print_it_catch_vfork (bpstat bs)
ce78b96d 8133{
36dfb11c 8134 struct ui_out *uiout = current_uiout;
348d480f 8135 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
8136 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8137
ce78b96d 8138 annotate_catchpoint (b->number);
36dfb11c
TT
8139 if (b->disposition == disp_del)
8140 ui_out_text (uiout, "\nTemporary catchpoint ");
8141 else
8142 ui_out_text (uiout, "\nCatchpoint ");
8143 if (ui_out_is_mi_like_p (uiout))
8144 {
8145 ui_out_field_string (uiout, "reason",
8146 async_reason_lookup (EXEC_ASYNC_VFORK));
8147 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8148 }
8149 ui_out_field_int (uiout, "bkptno", b->number);
8150 ui_out_text (uiout, " (vforked process ");
8151 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8152 ui_out_text (uiout, "), ");
ce78b96d
JB
8153 return PRINT_SRC_AND_LOC;
8154}
8155
4a64f543
MS
8156/* Implement the "print_one" breakpoint_ops method for vfork
8157 catchpoints. */
ce78b96d
JB
8158
8159static void
a6d9a66e 8160print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 8161{
e29a4733 8162 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 8163 struct value_print_options opts;
79a45e25 8164 struct ui_out *uiout = current_uiout;
79a45b7d
TT
8165
8166 get_user_print_options (&opts);
4a64f543
MS
8167 /* Field 4, the address, is omitted (which makes the columns not
8168 line up too nicely with the headers, but the effect is relatively
8169 readable). */
79a45b7d 8170 if (opts.addressprint)
ce78b96d
JB
8171 ui_out_field_skip (uiout, "addr");
8172 annotate_field (5);
8173 ui_out_text (uiout, "vfork");
e29a4733 8174 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
8175 {
8176 ui_out_text (uiout, ", process ");
8177 ui_out_field_int (uiout, "what",
e29a4733 8178 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
8179 ui_out_spaces (uiout, 1);
8180 }
8ac3646f
TT
8181
8182 if (ui_out_is_mi_like_p (uiout))
8183 ui_out_field_string (uiout, "catch-type", "vfork");
ce78b96d
JB
8184}
8185
8186/* Implement the "print_mention" breakpoint_ops method for vfork
8187 catchpoints. */
8188
8189static void
8190print_mention_catch_vfork (struct breakpoint *b)
8191{
8192 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
8193}
8194
6149aea9
PA
8195/* Implement the "print_recreate" breakpoint_ops method for vfork
8196 catchpoints. */
8197
8198static void
8199print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
8200{
8201 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 8202 print_recreate_thread (b, fp);
6149aea9
PA
8203}
8204
ce78b96d
JB
8205/* The breakpoint_ops structure to be used in vfork catchpoints. */
8206
2060206e 8207static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 8208
edcc5120
TT
8209/* An instance of this type is used to represent an solib catchpoint.
8210 It includes a "struct breakpoint" as a kind of base class; users
8211 downcast to "struct breakpoint *" when needed. A breakpoint is
8212 really of this type iff its ops pointer points to
8213 CATCH_SOLIB_BREAKPOINT_OPS. */
8214
8215struct solib_catchpoint
8216{
8217 /* The base class. */
8218 struct breakpoint base;
8219
8220 /* True for "catch load", false for "catch unload". */
8221 unsigned char is_load;
8222
8223 /* Regular expression to match, if any. COMPILED is only valid when
8224 REGEX is non-NULL. */
8225 char *regex;
8226 regex_t compiled;
8227};
8228
8229static void
8230dtor_catch_solib (struct breakpoint *b)
8231{
8232 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8233
8234 if (self->regex)
8235 regfree (&self->compiled);
8236 xfree (self->regex);
8237
8238 base_breakpoint_ops.dtor (b);
8239}
8240
8241static int
8242insert_catch_solib (struct bp_location *ignore)
8243{
8244 return 0;
8245}
8246
8247static int
8248remove_catch_solib (struct bp_location *ignore)
8249{
8250 return 0;
8251}
8252
8253static int
8254breakpoint_hit_catch_solib (const struct bp_location *bl,
8255 struct address_space *aspace,
8256 CORE_ADDR bp_addr,
8257 const struct target_waitstatus *ws)
8258{
8259 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
8260 struct breakpoint *other;
8261
8262 if (ws->kind == TARGET_WAITKIND_LOADED)
8263 return 1;
8264
8265 ALL_BREAKPOINTS (other)
8266 {
8267 struct bp_location *other_bl;
8268
8269 if (other == bl->owner)
8270 continue;
8271
8272 if (other->type != bp_shlib_event)
8273 continue;
8274
8275 if (self->base.pspace != NULL && other->pspace != self->base.pspace)
8276 continue;
8277
8278 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
8279 {
8280 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
8281 return 1;
8282 }
8283 }
8284
8285 return 0;
8286}
8287
8288static void
8289check_status_catch_solib (struct bpstats *bs)
8290{
8291 struct solib_catchpoint *self
8292 = (struct solib_catchpoint *) bs->breakpoint_at;
8293 int ix;
8294
8295 if (self->is_load)
8296 {
8297 struct so_list *iter;
8298
8299 for (ix = 0;
8300 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
8301 ix, iter);
8302 ++ix)
8303 {
8304 if (!self->regex
8305 || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0)
8306 return;
8307 }
8308 }
8309 else
8310 {
8311 char *iter;
8312
8313 for (ix = 0;
8314 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
8315 ix, iter);
8316 ++ix)
8317 {
8318 if (!self->regex
8319 || regexec (&self->compiled, iter, 0, NULL, 0) == 0)
8320 return;
8321 }
8322 }
8323
8324 bs->stop = 0;
8325 bs->print_it = print_it_noop;
8326}
8327
8328static enum print_stop_action
8329print_it_catch_solib (bpstat bs)
8330{
8331 struct breakpoint *b = bs->breakpoint_at;
8332 struct ui_out *uiout = current_uiout;
8333
8334 annotate_catchpoint (b->number);
8335 if (b->disposition == disp_del)
8336 ui_out_text (uiout, "\nTemporary catchpoint ");
8337 else
8338 ui_out_text (uiout, "\nCatchpoint ");
8339 ui_out_field_int (uiout, "bkptno", b->number);
8340 ui_out_text (uiout, "\n");
8341 if (ui_out_is_mi_like_p (uiout))
8342 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8343 print_solib_event (1);
8344 return PRINT_SRC_AND_LOC;
8345}
8346
8347static void
8348print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8349{
8350 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8351 struct value_print_options opts;
8352 struct ui_out *uiout = current_uiout;
8353 char *msg;
8354
8355 get_user_print_options (&opts);
8356 /* Field 4, the address, is omitted (which makes the columns not
8357 line up too nicely with the headers, but the effect is relatively
8358 readable). */
8359 if (opts.addressprint)
8360 {
8361 annotate_field (4);
8362 ui_out_field_skip (uiout, "addr");
8363 }
8364
8365 annotate_field (5);
8366 if (self->is_load)
8367 {
8368 if (self->regex)
8369 msg = xstrprintf (_("load of library matching %s"), self->regex);
8370 else
8371 msg = xstrdup (_("load of library"));
8372 }
8373 else
8374 {
8375 if (self->regex)
8376 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8377 else
8378 msg = xstrdup (_("unload of library"));
8379 }
8380 ui_out_field_string (uiout, "what", msg);
8381 xfree (msg);
8ac3646f
TT
8382
8383 if (ui_out_is_mi_like_p (uiout))
8384 ui_out_field_string (uiout, "catch-type",
8385 self->is_load ? "load" : "unload");
edcc5120
TT
8386}
8387
8388static void
8389print_mention_catch_solib (struct breakpoint *b)
8390{
8391 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8392
8393 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8394 self->is_load ? "load" : "unload");
8395}
8396
8397static void
8398print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8399{
8400 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8401
8402 fprintf_unfiltered (fp, "%s %s",
8403 b->disposition == disp_del ? "tcatch" : "catch",
8404 self->is_load ? "load" : "unload");
8405 if (self->regex)
8406 fprintf_unfiltered (fp, " %s", self->regex);
8407 fprintf_unfiltered (fp, "\n");
8408}
8409
8410static struct breakpoint_ops catch_solib_breakpoint_ops;
8411
91985142
MG
8412/* Shared helper function (MI and CLI) for creating and installing
8413 a shared object event catchpoint. If IS_LOAD is non-zero then
8414 the events to be caught are load events, otherwise they are
8415 unload events. If IS_TEMP is non-zero the catchpoint is a
8416 temporary one. If ENABLED is non-zero the catchpoint is
8417 created in an enabled state. */
edcc5120 8418
91985142
MG
8419void
8420add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled)
edcc5120
TT
8421{
8422 struct solib_catchpoint *c;
8423 struct gdbarch *gdbarch = get_current_arch ();
edcc5120
TT
8424 struct cleanup *cleanup;
8425
edcc5120
TT
8426 if (!arg)
8427 arg = "";
8428 arg = skip_spaces (arg);
8429
8430 c = XCNEW (struct solib_catchpoint);
8431 cleanup = make_cleanup (xfree, c);
8432
8433 if (*arg != '\0')
8434 {
8435 int errcode;
8436
8437 errcode = regcomp (&c->compiled, arg, REG_NOSUB);
8438 if (errcode != 0)
8439 {
8440 char *err = get_regcomp_error (errcode, &c->compiled);
8441
8442 make_cleanup (xfree, err);
8443 error (_("Invalid regexp (%s): %s"), err, arg);
8444 }
8445 c->regex = xstrdup (arg);
8446 }
8447
8448 c->is_load = is_load;
91985142 8449 init_catchpoint (&c->base, gdbarch, is_temp, NULL,
edcc5120
TT
8450 &catch_solib_breakpoint_ops);
8451
91985142
MG
8452 c->base.enable_state = enabled ? bp_enabled : bp_disabled;
8453
edcc5120
TT
8454 discard_cleanups (cleanup);
8455 install_breakpoint (0, &c->base, 1);
8456}
8457
91985142
MG
8458/* A helper function that does all the work for "catch load" and
8459 "catch unload". */
8460
8461static void
8462catch_load_or_unload (char *arg, int from_tty, int is_load,
8463 struct cmd_list_element *command)
8464{
8465 int tempflag;
8466 const int enabled = 1;
8467
8468 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8469
8470 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8471}
8472
edcc5120
TT
8473static void
8474catch_load_command_1 (char *arg, int from_tty,
8475 struct cmd_list_element *command)
8476{
8477 catch_load_or_unload (arg, from_tty, 1, command);
8478}
8479
8480static void
8481catch_unload_command_1 (char *arg, int from_tty,
8482 struct cmd_list_element *command)
8483{
8484 catch_load_or_unload (arg, from_tty, 0, command);
8485}
8486
be5c67c1
PA
8487/* An instance of this type is used to represent a syscall catchpoint.
8488 It includes a "struct breakpoint" as a kind of base class; users
8489 downcast to "struct breakpoint *" when needed. A breakpoint is
8490 really of this type iff its ops pointer points to
8491 CATCH_SYSCALL_BREAKPOINT_OPS. */
8492
8493struct syscall_catchpoint
8494{
8495 /* The base class. */
8496 struct breakpoint base;
8497
8498 /* Syscall numbers used for the 'catch syscall' feature. If no
8499 syscall has been specified for filtering, its value is NULL.
8500 Otherwise, it holds a list of all syscalls to be caught. The
8501 list elements are allocated with xmalloc. */
8502 VEC(int) *syscalls_to_be_caught;
8503};
8504
8505/* Implement the "dtor" breakpoint_ops method for syscall
8506 catchpoints. */
8507
8508static void
8509dtor_catch_syscall (struct breakpoint *b)
8510{
8511 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8512
8513 VEC_free (int, c->syscalls_to_be_caught);
348d480f 8514
2060206e 8515 base_breakpoint_ops.dtor (b);
be5c67c1
PA
8516}
8517
fa3064dd
YQ
8518static const struct inferior_data *catch_syscall_inferior_data = NULL;
8519
8520struct catch_syscall_inferior_data
8521{
8522 /* We keep a count of the number of times the user has requested a
8523 particular syscall to be tracked, and pass this information to the
8524 target. This lets capable targets implement filtering directly. */
8525
8526 /* Number of times that "any" syscall is requested. */
8527 int any_syscall_count;
8528
8529 /* Count of each system call. */
8530 VEC(int) *syscalls_counts;
8531
8532 /* This counts all syscall catch requests, so we can readily determine
8533 if any catching is necessary. */
8534 int total_syscalls_count;
8535};
8536
8537static struct catch_syscall_inferior_data*
8538get_catch_syscall_inferior_data (struct inferior *inf)
8539{
8540 struct catch_syscall_inferior_data *inf_data;
8541
8542 inf_data = inferior_data (inf, catch_syscall_inferior_data);
8543 if (inf_data == NULL)
8544 {
41bf6aca 8545 inf_data = XCNEW (struct catch_syscall_inferior_data);
fa3064dd
YQ
8546 set_inferior_data (inf, catch_syscall_inferior_data, inf_data);
8547 }
8548
8549 return inf_data;
8550}
8551
8552static void
8553catch_syscall_inferior_data_cleanup (struct inferior *inf, void *arg)
8554{
8555 xfree (arg);
8556}
8557
8558
a96d9b2e
SDJ
8559/* Implement the "insert" breakpoint_ops method for syscall
8560 catchpoints. */
8561
77b06cd7
TJB
8562static int
8563insert_catch_syscall (struct bp_location *bl)
a96d9b2e 8564{
be5c67c1 8565 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e 8566 struct inferior *inf = current_inferior ();
fa3064dd
YQ
8567 struct catch_syscall_inferior_data *inf_data
8568 = get_catch_syscall_inferior_data (inf);
a96d9b2e 8569
fa3064dd 8570 ++inf_data->total_syscalls_count;
be5c67c1 8571 if (!c->syscalls_to_be_caught)
fa3064dd 8572 ++inf_data->any_syscall_count;
a96d9b2e
SDJ
8573 else
8574 {
8575 int i, iter;
cc59ec59 8576
a96d9b2e 8577 for (i = 0;
be5c67c1 8578 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8579 i++)
8580 {
8581 int elem;
cc59ec59 8582
fa3064dd 8583 if (iter >= VEC_length (int, inf_data->syscalls_counts))
a96d9b2e 8584 {
fa3064dd 8585 int old_size = VEC_length (int, inf_data->syscalls_counts);
3e43a32a
MS
8586 uintptr_t vec_addr_offset
8587 = old_size * ((uintptr_t) sizeof (int));
a96d9b2e 8588 uintptr_t vec_addr;
fa3064dd
YQ
8589 VEC_safe_grow (int, inf_data->syscalls_counts, iter + 1);
8590 vec_addr = ((uintptr_t) VEC_address (int,
8591 inf_data->syscalls_counts)
8592 + vec_addr_offset);
a96d9b2e
SDJ
8593 memset ((void *) vec_addr, 0,
8594 (iter + 1 - old_size) * sizeof (int));
8595 }
fa3064dd
YQ
8596 elem = VEC_index (int, inf_data->syscalls_counts, iter);
8597 VEC_replace (int, inf_data->syscalls_counts, iter, ++elem);
a96d9b2e
SDJ
8598 }
8599 }
8600
dfd4cc63 8601 return target_set_syscall_catchpoint (ptid_get_pid (inferior_ptid),
fa3064dd
YQ
8602 inf_data->total_syscalls_count != 0,
8603 inf_data->any_syscall_count,
8604 VEC_length (int,
8605 inf_data->syscalls_counts),
8606 VEC_address (int,
8607 inf_data->syscalls_counts));
a96d9b2e
SDJ
8608}
8609
8610/* Implement the "remove" breakpoint_ops method for syscall
8611 catchpoints. */
8612
8613static int
77b06cd7 8614remove_catch_syscall (struct bp_location *bl)
a96d9b2e 8615{
be5c67c1 8616 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e 8617 struct inferior *inf = current_inferior ();
fa3064dd
YQ
8618 struct catch_syscall_inferior_data *inf_data
8619 = get_catch_syscall_inferior_data (inf);
a96d9b2e 8620
fa3064dd 8621 --inf_data->total_syscalls_count;
be5c67c1 8622 if (!c->syscalls_to_be_caught)
fa3064dd 8623 --inf_data->any_syscall_count;
a96d9b2e
SDJ
8624 else
8625 {
8626 int i, iter;
cc59ec59 8627
a96d9b2e 8628 for (i = 0;
be5c67c1 8629 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8630 i++)
8631 {
8632 int elem;
fa3064dd 8633 if (iter >= VEC_length (int, inf_data->syscalls_counts))
a96d9b2e
SDJ
8634 /* Shouldn't happen. */
8635 continue;
fa3064dd
YQ
8636 elem = VEC_index (int, inf_data->syscalls_counts, iter);
8637 VEC_replace (int, inf_data->syscalls_counts, iter, --elem);
a96d9b2e
SDJ
8638 }
8639 }
8640
dfd4cc63 8641 return target_set_syscall_catchpoint (ptid_get_pid (inferior_ptid),
fa3064dd
YQ
8642 inf_data->total_syscalls_count != 0,
8643 inf_data->any_syscall_count,
8644 VEC_length (int,
8645 inf_data->syscalls_counts),
3e43a32a 8646 VEC_address (int,
fa3064dd 8647 inf_data->syscalls_counts));
a96d9b2e
SDJ
8648}
8649
8650/* Implement the "breakpoint_hit" breakpoint_ops method for syscall
8651 catchpoints. */
8652
8653static int
f1310107 8654breakpoint_hit_catch_syscall (const struct bp_location *bl,
09ac7c10
TT
8655 struct address_space *aspace, CORE_ADDR bp_addr,
8656 const struct target_waitstatus *ws)
a96d9b2e 8657{
4a64f543
MS
8658 /* We must check if we are catching specific syscalls in this
8659 breakpoint. If we are, then we must guarantee that the called
8660 syscall is the same syscall we are catching. */
a96d9b2e 8661 int syscall_number = 0;
be5c67c1
PA
8662 const struct syscall_catchpoint *c
8663 = (const struct syscall_catchpoint *) bl->owner;
a96d9b2e 8664
f90263c1
TT
8665 if (ws->kind != TARGET_WAITKIND_SYSCALL_ENTRY
8666 && ws->kind != TARGET_WAITKIND_SYSCALL_RETURN)
a96d9b2e
SDJ
8667 return 0;
8668
f90263c1
TT
8669 syscall_number = ws->value.syscall_number;
8670
a96d9b2e 8671 /* Now, checking if the syscall is the same. */
be5c67c1 8672 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8673 {
8674 int i, iter;
cc59ec59 8675
a96d9b2e 8676 for (i = 0;
be5c67c1 8677 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8678 i++)
8679 if (syscall_number == iter)
4924df79
GKB
8680 return 1;
8681
8682 return 0;
a96d9b2e
SDJ
8683 }
8684
8685 return 1;
8686}
8687
8688/* Implement the "print_it" breakpoint_ops method for syscall
8689 catchpoints. */
8690
8691static enum print_stop_action
348d480f 8692print_it_catch_syscall (bpstat bs)
a96d9b2e 8693{
36dfb11c 8694 struct ui_out *uiout = current_uiout;
348d480f 8695 struct breakpoint *b = bs->breakpoint_at;
a96d9b2e
SDJ
8696 /* These are needed because we want to know in which state a
8697 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
8698 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
8699 must print "called syscall" or "returned from syscall". */
8700 ptid_t ptid;
8701 struct target_waitstatus last;
8702 struct syscall s;
a96d9b2e
SDJ
8703
8704 get_last_target_status (&ptid, &last);
8705
8706 get_syscall_by_number (last.value.syscall_number, &s);
8707
8708 annotate_catchpoint (b->number);
8709
36dfb11c
TT
8710 if (b->disposition == disp_del)
8711 ui_out_text (uiout, "\nTemporary catchpoint ");
a96d9b2e 8712 else
36dfb11c
TT
8713 ui_out_text (uiout, "\nCatchpoint ");
8714 if (ui_out_is_mi_like_p (uiout))
8715 {
8716 ui_out_field_string (uiout, "reason",
8717 async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY
8718 ? EXEC_ASYNC_SYSCALL_ENTRY
8719 : EXEC_ASYNC_SYSCALL_RETURN));
8720 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8721 }
8722 ui_out_field_int (uiout, "bkptno", b->number);
a96d9b2e
SDJ
8723
8724 if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY)
36dfb11c
TT
8725 ui_out_text (uiout, " (call to syscall ");
8726 else
8727 ui_out_text (uiout, " (returned from syscall ");
a96d9b2e 8728
36dfb11c
TT
8729 if (s.name == NULL || ui_out_is_mi_like_p (uiout))
8730 ui_out_field_int (uiout, "syscall-number", last.value.syscall_number);
8731 if (s.name != NULL)
8732 ui_out_field_string (uiout, "syscall-name", s.name);
8733
8734 ui_out_text (uiout, "), ");
a96d9b2e
SDJ
8735
8736 return PRINT_SRC_AND_LOC;
8737}
8738
8739/* Implement the "print_one" breakpoint_ops method for syscall
8740 catchpoints. */
8741
8742static void
8743print_one_catch_syscall (struct breakpoint *b,
f1310107 8744 struct bp_location **last_loc)
a96d9b2e 8745{
be5c67c1 8746 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
a96d9b2e 8747 struct value_print_options opts;
79a45e25 8748 struct ui_out *uiout = current_uiout;
a96d9b2e
SDJ
8749
8750 get_user_print_options (&opts);
4a64f543
MS
8751 /* Field 4, the address, is omitted (which makes the columns not
8752 line up too nicely with the headers, but the effect is relatively
8753 readable). */
a96d9b2e
SDJ
8754 if (opts.addressprint)
8755 ui_out_field_skip (uiout, "addr");
8756 annotate_field (5);
8757
be5c67c1
PA
8758 if (c->syscalls_to_be_caught
8759 && VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
8760 ui_out_text (uiout, "syscalls \"");
8761 else
8762 ui_out_text (uiout, "syscall \"");
8763
be5c67c1 8764 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8765 {
8766 int i, iter;
8767 char *text = xstrprintf ("%s", "");
cc59ec59 8768
a96d9b2e 8769 for (i = 0;
be5c67c1 8770 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8771 i++)
8772 {
8773 char *x = text;
8774 struct syscall s;
8775 get_syscall_by_number (iter, &s);
8776
8777 if (s.name != NULL)
8778 text = xstrprintf ("%s%s, ", text, s.name);
8779 else
8780 text = xstrprintf ("%s%d, ", text, iter);
8781
8782 /* We have to xfree the last 'text' (now stored at 'x')
e5dd4106 8783 because xstrprintf dynamically allocates new space for it
a96d9b2e
SDJ
8784 on every call. */
8785 xfree (x);
8786 }
8787 /* Remove the last comma. */
8788 text[strlen (text) - 2] = '\0';
8789 ui_out_field_string (uiout, "what", text);
8790 }
8791 else
8792 ui_out_field_string (uiout, "what", "<any syscall>");
8793 ui_out_text (uiout, "\" ");
8ac3646f
TT
8794
8795 if (ui_out_is_mi_like_p (uiout))
8796 ui_out_field_string (uiout, "catch-type", "syscall");
a96d9b2e
SDJ
8797}
8798
8799/* Implement the "print_mention" breakpoint_ops method for syscall
8800 catchpoints. */
8801
8802static void
8803print_mention_catch_syscall (struct breakpoint *b)
8804{
be5c67c1
PA
8805 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8806
8807 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8808 {
8809 int i, iter;
8810
be5c67c1 8811 if (VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
8812 printf_filtered (_("Catchpoint %d (syscalls"), b->number);
8813 else
8814 printf_filtered (_("Catchpoint %d (syscall"), b->number);
8815
8816 for (i = 0;
be5c67c1 8817 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8818 i++)
8819 {
8820 struct syscall s;
8821 get_syscall_by_number (iter, &s);
8822
8823 if (s.name)
8824 printf_filtered (" '%s' [%d]", s.name, s.number);
8825 else
8826 printf_filtered (" %d", s.number);
8827 }
8828 printf_filtered (")");
8829 }
8830 else
8831 printf_filtered (_("Catchpoint %d (any syscall)"),
8832 b->number);
8833}
8834
6149aea9
PA
8835/* Implement the "print_recreate" breakpoint_ops method for syscall
8836 catchpoints. */
8837
8838static void
8839print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp)
8840{
be5c67c1
PA
8841 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8842
6149aea9
PA
8843 fprintf_unfiltered (fp, "catch syscall");
8844
be5c67c1 8845 if (c->syscalls_to_be_caught)
6149aea9
PA
8846 {
8847 int i, iter;
8848
8849 for (i = 0;
be5c67c1 8850 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
6149aea9
PA
8851 i++)
8852 {
8853 struct syscall s;
8854
8855 get_syscall_by_number (iter, &s);
8856 if (s.name)
8857 fprintf_unfiltered (fp, " %s", s.name);
8858 else
8859 fprintf_unfiltered (fp, " %d", s.number);
8860 }
8861 }
d9b3f62e 8862 print_recreate_thread (b, fp);
6149aea9
PA
8863}
8864
a96d9b2e
SDJ
8865/* The breakpoint_ops structure to be used in syscall catchpoints. */
8866
2060206e 8867static struct breakpoint_ops catch_syscall_breakpoint_ops;
a96d9b2e
SDJ
8868
8869/* Returns non-zero if 'b' is a syscall catchpoint. */
8870
8871static int
8872syscall_catchpoint_p (struct breakpoint *b)
8873{
8874 return (b->ops == &catch_syscall_breakpoint_ops);
8875}
8876
346774a9
PA
8877/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8878 is non-zero, then make the breakpoint temporary. If COND_STRING is
8879 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8880 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8881
ab04a2af 8882void
346774a9
PA
8883init_catchpoint (struct breakpoint *b,
8884 struct gdbarch *gdbarch, int tempflag,
8885 char *cond_string,
c0a91b2b 8886 const struct breakpoint_ops *ops)
c906108c 8887{
c5aa993b 8888 struct symtab_and_line sal;
346774a9 8889
fe39c653 8890 init_sal (&sal);
6c95b8df 8891 sal.pspace = current_program_space;
c5aa993b 8892
28010a5d 8893 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8894
1b36a34b 8895 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8896 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8897}
8898
28010a5d 8899void
3ea46bff 8900install_breakpoint (int internal, struct breakpoint *b, int update_gll)
c56053d2
PA
8901{
8902 add_to_breakpoint_chain (b);
3a5c3e22 8903 set_breakpoint_number (internal, b);
558a9d82
YQ
8904 if (is_tracepoint (b))
8905 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8906 if (!internal)
8907 mention (b);
c56053d2 8908 observer_notify_breakpoint_created (b);
3ea46bff
YQ
8909
8910 if (update_gll)
44702360 8911 update_global_location_list (UGLL_MAY_INSERT);
c56053d2
PA
8912}
8913
9b70b993 8914static void
a6d9a66e
UW
8915create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8916 int tempflag, char *cond_string,
c0a91b2b 8917 const struct breakpoint_ops *ops)
c906108c 8918{
e29a4733 8919 struct fork_catchpoint *c = XNEW (struct fork_catchpoint);
ce78b96d 8920
e29a4733
PA
8921 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
8922
8923 c->forked_inferior_pid = null_ptid;
8924
3ea46bff 8925 install_breakpoint (0, &c->base, 1);
c906108c
SS
8926}
8927
fe798b75
JB
8928/* Exec catchpoints. */
8929
b4d90040
PA
8930/* An instance of this type is used to represent an exec catchpoint.
8931 It includes a "struct breakpoint" as a kind of base class; users
8932 downcast to "struct breakpoint *" when needed. A breakpoint is
8933 really of this type iff its ops pointer points to
8934 CATCH_EXEC_BREAKPOINT_OPS. */
8935
8936struct exec_catchpoint
8937{
8938 /* The base class. */
8939 struct breakpoint base;
8940
8941 /* Filename of a program whose exec triggered this catchpoint.
8942 This field is only valid immediately after this catchpoint has
8943 triggered. */
8944 char *exec_pathname;
8945};
8946
8947/* Implement the "dtor" breakpoint_ops method for exec
8948 catchpoints. */
8949
8950static void
8951dtor_catch_exec (struct breakpoint *b)
8952{
8953 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8954
8955 xfree (c->exec_pathname);
348d480f 8956
2060206e 8957 base_breakpoint_ops.dtor (b);
b4d90040
PA
8958}
8959
77b06cd7
TJB
8960static int
8961insert_catch_exec (struct bp_location *bl)
c906108c 8962{
dfd4cc63 8963 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8964}
c906108c 8965
fe798b75 8966static int
77b06cd7 8967remove_catch_exec (struct bp_location *bl)
fe798b75 8968{
dfd4cc63 8969 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8970}
c906108c 8971
fe798b75 8972static int
f1310107 8973breakpoint_hit_catch_exec (const struct bp_location *bl,
09ac7c10
TT
8974 struct address_space *aspace, CORE_ADDR bp_addr,
8975 const struct target_waitstatus *ws)
fe798b75 8976{
b4d90040
PA
8977 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8978
f90263c1
TT
8979 if (ws->kind != TARGET_WAITKIND_EXECD)
8980 return 0;
8981
8982 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8983 return 1;
fe798b75 8984}
c906108c 8985
fe798b75 8986static enum print_stop_action
348d480f 8987print_it_catch_exec (bpstat bs)
fe798b75 8988{
36dfb11c 8989 struct ui_out *uiout = current_uiout;
348d480f 8990 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8991 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8992
fe798b75 8993 annotate_catchpoint (b->number);
36dfb11c
TT
8994 if (b->disposition == disp_del)
8995 ui_out_text (uiout, "\nTemporary catchpoint ");
8996 else
8997 ui_out_text (uiout, "\nCatchpoint ");
8998 if (ui_out_is_mi_like_p (uiout))
8999 {
9000 ui_out_field_string (uiout, "reason",
9001 async_reason_lookup (EXEC_ASYNC_EXEC));
9002 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
9003 }
9004 ui_out_field_int (uiout, "bkptno", b->number);
9005 ui_out_text (uiout, " (exec'd ");
9006 ui_out_field_string (uiout, "new-exec", c->exec_pathname);
9007 ui_out_text (uiout, "), ");
9008
fe798b75 9009 return PRINT_SRC_AND_LOC;
c906108c
SS
9010}
9011
fe798b75 9012static void
a6d9a66e 9013print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 9014{
b4d90040 9015 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 9016 struct value_print_options opts;
79a45e25 9017 struct ui_out *uiout = current_uiout;
fe798b75
JB
9018
9019 get_user_print_options (&opts);
9020
9021 /* Field 4, the address, is omitted (which makes the columns
9022 not line up too nicely with the headers, but the effect
9023 is relatively readable). */
9024 if (opts.addressprint)
9025 ui_out_field_skip (uiout, "addr");
9026 annotate_field (5);
9027 ui_out_text (uiout, "exec");
b4d90040 9028 if (c->exec_pathname != NULL)
fe798b75
JB
9029 {
9030 ui_out_text (uiout, ", program \"");
b4d90040 9031 ui_out_field_string (uiout, "what", c->exec_pathname);
fe798b75
JB
9032 ui_out_text (uiout, "\" ");
9033 }
8ac3646f
TT
9034
9035 if (ui_out_is_mi_like_p (uiout))
9036 ui_out_field_string (uiout, "catch-type", "exec");
fe798b75
JB
9037}
9038
9039static void
9040print_mention_catch_exec (struct breakpoint *b)
9041{
9042 printf_filtered (_("Catchpoint %d (exec)"), b->number);
9043}
9044
6149aea9
PA
9045/* Implement the "print_recreate" breakpoint_ops method for exec
9046 catchpoints. */
9047
9048static void
9049print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
9050{
9051 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 9052 print_recreate_thread (b, fp);
6149aea9
PA
9053}
9054
2060206e 9055static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 9056
a96d9b2e
SDJ
9057static void
9058create_syscall_event_catchpoint (int tempflag, VEC(int) *filter,
c0a91b2b 9059 const struct breakpoint_ops *ops)
a96d9b2e 9060{
be5c67c1 9061 struct syscall_catchpoint *c;
a96d9b2e 9062 struct gdbarch *gdbarch = get_current_arch ();
a96d9b2e 9063
be5c67c1
PA
9064 c = XNEW (struct syscall_catchpoint);
9065 init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops);
9066 c->syscalls_to_be_caught = filter;
a96d9b2e 9067
3ea46bff 9068 install_breakpoint (0, &c->base, 1);
a96d9b2e
SDJ
9069}
9070
c906108c 9071static int
fba45db2 9072hw_breakpoint_used_count (void)
c906108c 9073{
c906108c 9074 int i = 0;
f1310107
TJB
9075 struct breakpoint *b;
9076 struct bp_location *bl;
c906108c
SS
9077
9078 ALL_BREAKPOINTS (b)
c5aa993b 9079 {
d6b74ac4 9080 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
9081 for (bl = b->loc; bl; bl = bl->next)
9082 {
9083 /* Special types of hardware breakpoints may use more than
9084 one register. */
348d480f 9085 i += b->ops->resources_needed (bl);
f1310107 9086 }
c5aa993b 9087 }
c906108c
SS
9088
9089 return i;
9090}
9091
a1398e0c
PA
9092/* Returns the resources B would use if it were a hardware
9093 watchpoint. */
9094
c906108c 9095static int
a1398e0c 9096hw_watchpoint_use_count (struct breakpoint *b)
c906108c 9097{
c906108c 9098 int i = 0;
e09342b5 9099 struct bp_location *bl;
c906108c 9100
a1398e0c
PA
9101 if (!breakpoint_enabled (b))
9102 return 0;
9103
9104 for (bl = b->loc; bl; bl = bl->next)
9105 {
9106 /* Special types of hardware watchpoints may use more than
9107 one register. */
9108 i += b->ops->resources_needed (bl);
9109 }
9110
9111 return i;
9112}
9113
9114/* Returns the sum the used resources of all hardware watchpoints of
9115 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
9116 the sum of the used resources of all hardware watchpoints of other
9117 types _not_ TYPE. */
9118
9119static int
9120hw_watchpoint_used_count_others (struct breakpoint *except,
9121 enum bptype type, int *other_type_used)
9122{
9123 int i = 0;
9124 struct breakpoint *b;
9125
c906108c
SS
9126 *other_type_used = 0;
9127 ALL_BREAKPOINTS (b)
e09342b5 9128 {
a1398e0c
PA
9129 if (b == except)
9130 continue;
e09342b5
TJB
9131 if (!breakpoint_enabled (b))
9132 continue;
9133
a1398e0c
PA
9134 if (b->type == type)
9135 i += hw_watchpoint_use_count (b);
9136 else if (is_hardware_watchpoint (b))
9137 *other_type_used = 1;
e09342b5
TJB
9138 }
9139
c906108c
SS
9140 return i;
9141}
9142
c906108c 9143void
fba45db2 9144disable_watchpoints_before_interactive_call_start (void)
c906108c 9145{
c5aa993b 9146 struct breakpoint *b;
c906108c
SS
9147
9148 ALL_BREAKPOINTS (b)
c5aa993b 9149 {
cc60f2e3 9150 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 9151 {
b5de0fa7 9152 b->enable_state = bp_call_disabled;
44702360 9153 update_global_location_list (UGLL_DONT_INSERT);
c5aa993b
JM
9154 }
9155 }
c906108c
SS
9156}
9157
9158void
fba45db2 9159enable_watchpoints_after_interactive_call_stop (void)
c906108c 9160{
c5aa993b 9161 struct breakpoint *b;
c906108c
SS
9162
9163 ALL_BREAKPOINTS (b)
c5aa993b 9164 {
cc60f2e3 9165 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 9166 {
b5de0fa7 9167 b->enable_state = bp_enabled;
44702360 9168 update_global_location_list (UGLL_MAY_INSERT);
c5aa993b
JM
9169 }
9170 }
c906108c
SS
9171}
9172
8bea4e01
UW
9173void
9174disable_breakpoints_before_startup (void)
9175{
6c95b8df 9176 current_program_space->executing_startup = 1;
44702360 9177 update_global_location_list (UGLL_DONT_INSERT);
8bea4e01
UW
9178}
9179
9180void
9181enable_breakpoints_after_startup (void)
9182{
6c95b8df 9183 current_program_space->executing_startup = 0;
f8eba3c6 9184 breakpoint_re_set ();
8bea4e01
UW
9185}
9186
c906108c
SS
9187
9188/* Set a breakpoint that will evaporate an end of command
9189 at address specified by SAL.
9190 Restrict it to frame FRAME if FRAME is nonzero. */
9191
9192struct breakpoint *
a6d9a66e
UW
9193set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
9194 struct frame_id frame_id, enum bptype type)
c906108c 9195{
52f0bd74 9196 struct breakpoint *b;
edb3359d 9197
193facb3
JK
9198 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
9199 tail-called one. */
9200 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 9201
06edf0c0 9202 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
9203 b->enable_state = bp_enabled;
9204 b->disposition = disp_donttouch;
818dd999 9205 b->frame_id = frame_id;
c906108c 9206
4a64f543
MS
9207 /* If we're debugging a multi-threaded program, then we want
9208 momentary breakpoints to be active in only a single thread of
9209 control. */
39f77062
KB
9210 if (in_thread_list (inferior_ptid))
9211 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 9212
44702360 9213 update_global_location_list_nothrow (UGLL_MAY_INSERT);
74960c60 9214
c906108c
SS
9215 return b;
9216}
611c83ae 9217
06edf0c0 9218/* Make a momentary breakpoint based on the master breakpoint ORIG.
a1aa2221
LM
9219 The new breakpoint will have type TYPE, use OPS as its
9220 breakpoint_ops, and will set enabled to LOC_ENABLED. */
e58b0e63 9221
06edf0c0
PA
9222static struct breakpoint *
9223momentary_breakpoint_from_master (struct breakpoint *orig,
9224 enum bptype type,
a1aa2221
LM
9225 const struct breakpoint_ops *ops,
9226 int loc_enabled)
e58b0e63
PA
9227{
9228 struct breakpoint *copy;
9229
06edf0c0 9230 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 9231 copy->loc = allocate_bp_location (copy);
0e30163f 9232 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 9233
a6d9a66e 9234 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
9235 copy->loc->requested_address = orig->loc->requested_address;
9236 copy->loc->address = orig->loc->address;
9237 copy->loc->section = orig->loc->section;
6c95b8df 9238 copy->loc->pspace = orig->loc->pspace;
55aa24fb 9239 copy->loc->probe = orig->loc->probe;
f8eba3c6 9240 copy->loc->line_number = orig->loc->line_number;
2f202fde 9241 copy->loc->symtab = orig->loc->symtab;
a1aa2221 9242 copy->loc->enabled = loc_enabled;
e58b0e63
PA
9243 copy->frame_id = orig->frame_id;
9244 copy->thread = orig->thread;
6c95b8df 9245 copy->pspace = orig->pspace;
e58b0e63
PA
9246
9247 copy->enable_state = bp_enabled;
9248 copy->disposition = disp_donttouch;
9249 copy->number = internal_breakpoint_number--;
9250
44702360 9251 update_global_location_list_nothrow (UGLL_DONT_INSERT);
e58b0e63
PA
9252 return copy;
9253}
9254
06edf0c0
PA
9255/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
9256 ORIG is NULL. */
9257
9258struct breakpoint *
9259clone_momentary_breakpoint (struct breakpoint *orig)
9260{
9261 /* If there's nothing to clone, then return nothing. */
9262 if (orig == NULL)
9263 return NULL;
9264
a1aa2221 9265 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
06edf0c0
PA
9266}
9267
611c83ae 9268struct breakpoint *
a6d9a66e
UW
9269set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
9270 enum bptype type)
611c83ae
PA
9271{
9272 struct symtab_and_line sal;
9273
9274 sal = find_pc_line (pc, 0);
9275 sal.pc = pc;
9276 sal.section = find_pc_overlay (pc);
9277 sal.explicit_pc = 1;
9278
a6d9a66e 9279 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 9280}
c906108c 9281\f
c5aa993b 9282
c906108c
SS
9283/* Tell the user we have just set a breakpoint B. */
9284
9285static void
fba45db2 9286mention (struct breakpoint *b)
c906108c 9287{
348d480f 9288 b->ops->print_mention (b);
79a45e25 9289 if (ui_out_is_mi_like_p (current_uiout))
fb40c209 9290 return;
c906108c
SS
9291 printf_filtered ("\n");
9292}
c906108c 9293\f
c5aa993b 9294
0d381245 9295static struct bp_location *
39d61571 9296add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
9297 const struct symtab_and_line *sal)
9298{
9299 struct bp_location *loc, **tmp;
3742cc8b
YQ
9300 CORE_ADDR adjusted_address;
9301 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
9302
9303 if (loc_gdbarch == NULL)
9304 loc_gdbarch = b->gdbarch;
9305
9306 /* Adjust the breakpoint's address prior to allocating a location.
9307 Once we call allocate_bp_location(), that mostly uninitialized
9308 location will be placed on the location chain. Adjustment of the
9309 breakpoint may cause target_read_memory() to be called and we do
9310 not want its scan of the location chain to find a breakpoint and
9311 location that's only been partially initialized. */
9312 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
9313 sal->pc, b->type);
0d381245 9314
d30113d4 9315 /* Sort the locations by their ADDRESS. */
39d61571 9316 loc = allocate_bp_location (b);
d30113d4
JK
9317 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
9318 tmp = &((*tmp)->next))
0d381245 9319 ;
d30113d4 9320 loc->next = *tmp;
0d381245 9321 *tmp = loc;
3742cc8b 9322
0d381245 9323 loc->requested_address = sal->pc;
3742cc8b 9324 loc->address = adjusted_address;
6c95b8df 9325 loc->pspace = sal->pspace;
729662a5
TT
9326 loc->probe.probe = sal->probe;
9327 loc->probe.objfile = sal->objfile;
6c95b8df 9328 gdb_assert (loc->pspace != NULL);
0d381245 9329 loc->section = sal->section;
3742cc8b 9330 loc->gdbarch = loc_gdbarch;
f8eba3c6 9331 loc->line_number = sal->line;
2f202fde 9332 loc->symtab = sal->symtab;
f8eba3c6 9333
0e30163f
JK
9334 set_breakpoint_location_function (loc,
9335 sal->explicit_pc || sal->explicit_line);
0d381245
VP
9336 return loc;
9337}
514f746b
AR
9338\f
9339
9340/* Return 1 if LOC is pointing to a permanent breakpoint,
9341 return 0 otherwise. */
9342
9343static int
9344bp_loc_is_permanent (struct bp_location *loc)
9345{
9346 int len;
9347 CORE_ADDR addr;
1afeeb75 9348 const gdb_byte *bpoint;
514f746b 9349 gdb_byte *target_mem;
939c61fa
JK
9350 struct cleanup *cleanup;
9351 int retval = 0;
514f746b
AR
9352
9353 gdb_assert (loc != NULL);
9354
9355 addr = loc->address;
1afeeb75 9356 bpoint = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len);
514f746b 9357
939c61fa 9358 /* Software breakpoints unsupported? */
1afeeb75 9359 if (bpoint == NULL)
939c61fa
JK
9360 return 0;
9361
514f746b
AR
9362 target_mem = alloca (len);
9363
939c61fa
JK
9364 /* Enable the automatic memory restoration from breakpoints while
9365 we read the memory. Otherwise we could say about our temporary
9366 breakpoints they are permanent. */
6c95b8df
PA
9367 cleanup = save_current_space_and_thread ();
9368
9369 switch_to_program_space_and_thread (loc->pspace);
9370 make_show_memory_breakpoints_cleanup (0);
939c61fa 9371
514f746b 9372 if (target_read_memory (loc->address, target_mem, len) == 0
1afeeb75 9373 && memcmp (target_mem, bpoint, len) == 0)
939c61fa 9374 retval = 1;
514f746b 9375
939c61fa
JK
9376 do_cleanups (cleanup);
9377
9378 return retval;
514f746b
AR
9379}
9380
e7e0cddf
SS
9381/* Build a command list for the dprintf corresponding to the current
9382 settings of the dprintf style options. */
9383
9384static void
9385update_dprintf_command_list (struct breakpoint *b)
9386{
9387 char *dprintf_args = b->extra_string;
9388 char *printf_line = NULL;
9389
9390 if (!dprintf_args)
9391 return;
9392
9393 dprintf_args = skip_spaces (dprintf_args);
9394
9395 /* Allow a comma, as it may have terminated a location, but don't
9396 insist on it. */
9397 if (*dprintf_args == ',')
9398 ++dprintf_args;
9399 dprintf_args = skip_spaces (dprintf_args);
9400
9401 if (*dprintf_args != '"')
9402 error (_("Bad format string, missing '\"'."));
9403
d3ce09f5 9404 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 9405 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 9406 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
9407 {
9408 if (!dprintf_function)
9409 error (_("No function supplied for dprintf call"));
9410
9411 if (dprintf_channel && strlen (dprintf_channel) > 0)
9412 printf_line = xstrprintf ("call (void) %s (%s,%s)",
9413 dprintf_function,
9414 dprintf_channel,
9415 dprintf_args);
9416 else
9417 printf_line = xstrprintf ("call (void) %s (%s)",
9418 dprintf_function,
9419 dprintf_args);
9420 }
d3ce09f5
SS
9421 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
9422 {
9423 if (target_can_run_breakpoint_commands ())
9424 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
9425 else
9426 {
9427 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
9428 printf_line = xstrprintf ("printf %s", dprintf_args);
9429 }
9430 }
e7e0cddf
SS
9431 else
9432 internal_error (__FILE__, __LINE__,
9433 _("Invalid dprintf style."));
9434
f28045c2 9435 gdb_assert (printf_line != NULL);
9d6e6e84 9436 /* Manufacture a printf sequence. */
f28045c2 9437 {
9d6e6e84
HZ
9438 struct command_line *printf_cmd_line
9439 = xmalloc (sizeof (struct command_line));
e7e0cddf 9440
f28045c2
YQ
9441 printf_cmd_line = xmalloc (sizeof (struct command_line));
9442 printf_cmd_line->control_type = simple_control;
9443 printf_cmd_line->body_count = 0;
9444 printf_cmd_line->body_list = NULL;
9d6e6e84 9445 printf_cmd_line->next = NULL;
f28045c2 9446 printf_cmd_line->line = printf_line;
e7e0cddf 9447
f28045c2
YQ
9448 breakpoint_set_commands (b, printf_cmd_line);
9449 }
e7e0cddf
SS
9450}
9451
9452/* Update all dprintf commands, making their command lists reflect
9453 current style settings. */
9454
9455static void
9456update_dprintf_commands (char *args, int from_tty,
9457 struct cmd_list_element *c)
9458{
9459 struct breakpoint *b;
9460
9461 ALL_BREAKPOINTS (b)
9462 {
9463 if (b->type == bp_dprintf)
9464 update_dprintf_command_list (b);
9465 }
9466}
c3f6f71d 9467
018d34a4
VP
9468/* Create a breakpoint with SAL as location. Use ADDR_STRING
9469 as textual description of the location, and COND_STRING
db107f19 9470 as condition expression. */
018d34a4
VP
9471
9472static void
d9b3f62e
PA
9473init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
9474 struct symtabs_and_lines sals, char *addr_string,
f8eba3c6 9475 char *filter, char *cond_string,
e7e0cddf 9476 char *extra_string,
d9b3f62e
PA
9477 enum bptype type, enum bpdisp disposition,
9478 int thread, int task, int ignore_count,
c0a91b2b 9479 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9480 int enabled, int internal, unsigned flags,
9481 int display_canonical)
018d34a4 9482{
0d381245 9483 int i;
018d34a4
VP
9484
9485 if (type == bp_hardware_breakpoint)
9486 {
fbbd034e
AS
9487 int target_resources_ok;
9488
9489 i = hw_breakpoint_used_count ();
9490 target_resources_ok =
9491 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
9492 i + 1, 0);
9493 if (target_resources_ok == 0)
9494 error (_("No hardware breakpoint support in the target."));
9495 else if (target_resources_ok < 0)
9496 error (_("Hardware breakpoints used exceeds limit."));
9497 }
9498
6c95b8df
PA
9499 gdb_assert (sals.nelts > 0);
9500
0d381245
VP
9501 for (i = 0; i < sals.nelts; ++i)
9502 {
9503 struct symtab_and_line sal = sals.sals[i];
9504 struct bp_location *loc;
9505
9506 if (from_tty)
5af949e3
UW
9507 {
9508 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9509 if (!loc_gdbarch)
9510 loc_gdbarch = gdbarch;
9511
9512 describe_other_breakpoints (loc_gdbarch,
6c95b8df 9513 sal.pspace, sal.pc, sal.section, thread);
5af949e3 9514 }
0d381245
VP
9515
9516 if (i == 0)
9517 {
d9b3f62e 9518 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 9519 b->thread = thread;
4a306c9a 9520 b->task = task;
855a6e68 9521
0d381245 9522 b->cond_string = cond_string;
e7e0cddf 9523 b->extra_string = extra_string;
0d381245 9524 b->ignore_count = ignore_count;
41447f92 9525 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 9526 b->disposition = disposition;
6c95b8df 9527
44f238bb
PA
9528 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9529 b->loc->inserted = 1;
9530
0fb4aa4b
PA
9531 if (type == bp_static_tracepoint)
9532 {
d9b3f62e 9533 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
9534 struct static_tracepoint_marker marker;
9535
983af33b 9536 if (strace_marker_p (b))
0fb4aa4b
PA
9537 {
9538 /* We already know the marker exists, otherwise, we
9539 wouldn't see a sal for it. */
9540 char *p = &addr_string[3];
9541 char *endp;
9542 char *marker_str;
0fb4aa4b 9543
e9cafbcc 9544 p = skip_spaces (p);
0fb4aa4b 9545
e9cafbcc 9546 endp = skip_to_space (p);
0fb4aa4b
PA
9547
9548 marker_str = savestring (p, endp - p);
d9b3f62e 9549 t->static_trace_marker_id = marker_str;
0fb4aa4b 9550
3e43a32a
MS
9551 printf_filtered (_("Probed static tracepoint "
9552 "marker \"%s\"\n"),
d9b3f62e 9553 t->static_trace_marker_id);
0fb4aa4b
PA
9554 }
9555 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
9556 {
d9b3f62e 9557 t->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
9558 release_static_tracepoint_marker (&marker);
9559
3e43a32a
MS
9560 printf_filtered (_("Probed static tracepoint "
9561 "marker \"%s\"\n"),
d9b3f62e 9562 t->static_trace_marker_id);
0fb4aa4b
PA
9563 }
9564 else
3e43a32a
MS
9565 warning (_("Couldn't determine the static "
9566 "tracepoint marker to probe"));
0fb4aa4b
PA
9567 }
9568
0d381245
VP
9569 loc = b->loc;
9570 }
9571 else
018d34a4 9572 {
39d61571 9573 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
9574 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9575 loc->inserted = 1;
0d381245
VP
9576 }
9577
514f746b
AR
9578 if (bp_loc_is_permanent (loc))
9579 make_breakpoint_permanent (b);
9580
0d381245
VP
9581 if (b->cond_string)
9582 {
bbc13ae3
KS
9583 const char *arg = b->cond_string;
9584
1bb9788d
TT
9585 loc->cond = parse_exp_1 (&arg, loc->address,
9586 block_for_pc (loc->address), 0);
0d381245 9587 if (*arg)
588ae58c 9588 error (_("Garbage '%s' follows condition"), arg);
018d34a4 9589 }
e7e0cddf
SS
9590
9591 /* Dynamic printf requires and uses additional arguments on the
9592 command line, otherwise it's an error. */
9593 if (type == bp_dprintf)
9594 {
9595 if (b->extra_string)
9596 update_dprintf_command_list (b);
9597 else
9598 error (_("Format string required"));
9599 }
9600 else if (b->extra_string)
588ae58c 9601 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 9602 }
018d34a4 9603
56435ebe 9604 b->display_canonical = display_canonical;
018d34a4
VP
9605 if (addr_string)
9606 b->addr_string = addr_string;
9607 else
9608 /* addr_string has to be used or breakpoint_re_set will delete
9609 me. */
5af949e3
UW
9610 b->addr_string
9611 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
f8eba3c6 9612 b->filter = filter;
d9b3f62e 9613}
018d34a4 9614
d9b3f62e
PA
9615static void
9616create_breakpoint_sal (struct gdbarch *gdbarch,
9617 struct symtabs_and_lines sals, char *addr_string,
f8eba3c6 9618 char *filter, char *cond_string,
e7e0cddf 9619 char *extra_string,
d9b3f62e
PA
9620 enum bptype type, enum bpdisp disposition,
9621 int thread, int task, int ignore_count,
c0a91b2b 9622 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9623 int enabled, int internal, unsigned flags,
9624 int display_canonical)
d9b3f62e
PA
9625{
9626 struct breakpoint *b;
9627 struct cleanup *old_chain;
9628
9629 if (is_tracepoint_type (type))
9630 {
9631 struct tracepoint *t;
9632
9633 t = XCNEW (struct tracepoint);
9634 b = &t->base;
9635 }
9636 else
9637 b = XNEW (struct breakpoint);
9638
9639 old_chain = make_cleanup (xfree, b);
9640
9641 init_breakpoint_sal (b, gdbarch,
9642 sals, addr_string,
e7e0cddf 9643 filter, cond_string, extra_string,
d9b3f62e
PA
9644 type, disposition,
9645 thread, task, ignore_count,
9646 ops, from_tty,
44f238bb
PA
9647 enabled, internal, flags,
9648 display_canonical);
d9b3f62e
PA
9649 discard_cleanups (old_chain);
9650
3ea46bff 9651 install_breakpoint (internal, b, 0);
018d34a4
VP
9652}
9653
9654/* Add SALS.nelts breakpoints to the breakpoint table. For each
9655 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9656 value. COND_STRING, if not NULL, specified the condition to be
9657 used for all breakpoints. Essentially the only case where
9658 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9659 function. In that case, it's still not possible to specify
9660 separate conditions for different overloaded functions, so
9661 we take just a single condition string.
9662
c3f6f71d 9663 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 9664 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
9665 array contents). If the function fails (error() is called), the
9666 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 9667 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
9668
9669static void
8cdf0e15 9670create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 9671 struct linespec_result *canonical,
e7e0cddf 9672 char *cond_string, char *extra_string,
8cdf0e15
VP
9673 enum bptype type, enum bpdisp disposition,
9674 int thread, int task, int ignore_count,
c0a91b2b 9675 const struct breakpoint_ops *ops, int from_tty,
44f238bb 9676 int enabled, int internal, unsigned flags)
c906108c 9677{
018d34a4 9678 int i;
f8eba3c6 9679 struct linespec_sals *lsal;
cc59ec59 9680
f8eba3c6
TT
9681 if (canonical->pre_expanded)
9682 gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1);
9683
9684 for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i)
c3f6f71d 9685 {
f8eba3c6
TT
9686 /* Note that 'addr_string' can be NULL in the case of a plain
9687 'break', without arguments. */
9688 char *addr_string = (canonical->addr_string
9689 ? xstrdup (canonical->addr_string)
9690 : NULL);
9691 char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL;
9692 struct cleanup *inner = make_cleanup (xfree, addr_string);
0d381245 9693
f8eba3c6
TT
9694 make_cleanup (xfree, filter_string);
9695 create_breakpoint_sal (gdbarch, lsal->sals,
9696 addr_string,
9697 filter_string,
e7e0cddf
SS
9698 cond_string, extra_string,
9699 type, disposition,
84f4c1fe 9700 thread, task, ignore_count, ops,
44f238bb 9701 from_tty, enabled, internal, flags,
56435ebe 9702 canonical->special_display);
f8eba3c6 9703 discard_cleanups (inner);
c3f6f71d 9704 }
c3f6f71d 9705}
c906108c 9706
9998af43 9707/* Parse ADDRESS which is assumed to be a SAL specification possibly
c3f6f71d 9708 followed by conditionals. On return, SALS contains an array of SAL
4a64f543 9709 addresses found. ADDR_STRING contains a vector of (canonical)
9998af43
TJB
9710 address strings. ADDRESS points to the end of the SAL.
9711
9712 The array and the line spec strings are allocated on the heap, it is
9713 the caller's responsibility to free them. */
c906108c 9714
b9362cc7 9715static void
c3f6f71d 9716parse_breakpoint_sals (char **address,
58438ac1 9717 struct linespec_result *canonical)
c3f6f71d 9718{
c3f6f71d 9719 /* If no arg given, or if first arg is 'if ', use the default
4a64f543 9720 breakpoint. */
c3f6f71d
JM
9721 if ((*address) == NULL
9722 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c 9723 {
1bfeeb0f
JL
9724 /* The last displayed codepoint, if it's valid, is our default breakpoint
9725 address. */
9726 if (last_displayed_sal_is_valid ())
c906108c 9727 {
f8eba3c6 9728 struct linespec_sals lsal;
c3f6f71d 9729 struct symtab_and_line sal;
1c8cdcb1 9730 CORE_ADDR pc;
cc59ec59 9731
4a64f543 9732 init_sal (&sal); /* Initialize to zeroes. */
f8eba3c6 9733 lsal.sals.sals = (struct symtab_and_line *)
c906108c 9734 xmalloc (sizeof (struct symtab_and_line));
1bfeeb0f
JL
9735
9736 /* Set sal's pspace, pc, symtab, and line to the values
1c8cdcb1
JK
9737 corresponding to the last call to print_frame_info.
9738 Be sure to reinitialize LINE with NOTCURRENT == 0
9739 as the breakpoint line number is inappropriate otherwise.
9740 find_pc_line would adjust PC, re-set it back. */
1bfeeb0f 9741 get_last_displayed_sal (&sal);
1c8cdcb1
JK
9742 pc = sal.pc;
9743 sal = find_pc_line (pc, 0);
00903456 9744
4a64f543 9745 /* "break" without arguments is equivalent to "break *PC"
1bfeeb0f
JL
9746 where PC is the last displayed codepoint's address. So
9747 make sure to set sal.explicit_pc to prevent GDB from
9748 trying to expand the list of sals to include all other
9749 instances with the same symtab and line. */
1c8cdcb1 9750 sal.pc = pc;
00903456
JK
9751 sal.explicit_pc = 1;
9752
f8eba3c6
TT
9753 lsal.sals.sals[0] = sal;
9754 lsal.sals.nelts = 1;
9755 lsal.canonical = NULL;
9756
9757 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
c906108c
SS
9758 }
9759 else
8a3fe4f8 9760 error (_("No default breakpoint address now."));
c906108c
SS
9761 }
9762 else
9763 {
cc80f267
JK
9764 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
9765
c906108c 9766 /* Force almost all breakpoints to be in terms of the
4a64f543
MS
9767 current_source_symtab (which is decode_line_1's default).
9768 This should produce the results we want almost all of the
cc80f267
JK
9769 time while leaving default_breakpoint_* alone.
9770
9771 ObjC: However, don't match an Objective-C method name which
9772 may have a '+' or '-' succeeded by a '['. */
9773 if (last_displayed_sal_is_valid ()
9774 && (!cursal.symtab
9775 || ((strchr ("+-", (*address)[0]) != NULL)
9776 && ((*address)[1] != '['))))
f8eba3c6
TT
9777 decode_line_full (address, DECODE_LINE_FUNFIRSTLINE,
9778 get_last_displayed_symtab (),
9779 get_last_displayed_line (),
9780 canonical, NULL, NULL);
c906108c 9781 else
f8eba3c6 9782 decode_line_full (address, DECODE_LINE_FUNFIRSTLINE,
cc80f267 9783 cursal.symtab, cursal.line, canonical, NULL, NULL);
c906108c 9784 }
c3f6f71d 9785}
c906108c 9786
c906108c 9787
c3f6f71d 9788/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 9789 inserted as a breakpoint. If it can't throw an error. */
c906108c 9790
b9362cc7 9791static void
23e7acfb 9792breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
9793{
9794 int i;
cc59ec59 9795
c3f6f71d 9796 for (i = 0; i < sals->nelts; i++)
ee53e872 9797 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
9798}
9799
7a697b8d
SS
9800/* Fast tracepoints may have restrictions on valid locations. For
9801 instance, a fast tracepoint using a jump instead of a trap will
9802 likely have to overwrite more bytes than a trap would, and so can
9803 only be placed where the instruction is longer than the jump, or a
9804 multi-instruction sequence does not have a jump into the middle of
9805 it, etc. */
9806
9807static void
9808check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9809 struct symtabs_and_lines *sals)
9810{
9811 int i, rslt;
9812 struct symtab_and_line *sal;
9813 char *msg;
9814 struct cleanup *old_chain;
9815
9816 for (i = 0; i < sals->nelts; i++)
9817 {
f8eba3c6
TT
9818 struct gdbarch *sarch;
9819
7a697b8d
SS
9820 sal = &sals->sals[i];
9821
f8eba3c6
TT
9822 sarch = get_sal_arch (*sal);
9823 /* We fall back to GDBARCH if there is no architecture
9824 associated with SAL. */
9825 if (sarch == NULL)
9826 sarch = gdbarch;
9827 rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc,
7a697b8d
SS
9828 NULL, &msg);
9829 old_chain = make_cleanup (xfree, msg);
9830
9831 if (!rslt)
9832 error (_("May not have a fast tracepoint at 0x%s%s"),
f8eba3c6 9833 paddress (sarch, sal->pc), (msg ? msg : ""));
7a697b8d
SS
9834
9835 do_cleanups (old_chain);
9836 }
9837}
9838
af4908ba
KS
9839/* Issue an invalid thread ID error. */
9840
9841static void ATTRIBUTE_NORETURN
9842invalid_thread_id_error (int id)
9843{
9844 error (_("Unknown thread %d."), id);
9845}
9846
018d34a4
VP
9847/* Given TOK, a string specification of condition and thread, as
9848 accepted by the 'break' command, extract the condition
9849 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9850 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9851 If no condition is found, *COND_STRING is set to NULL.
9852 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9853
9854static void
bbc13ae3 9855find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9856 char **cond_string, int *thread, int *task,
9857 char **rest)
018d34a4
VP
9858{
9859 *cond_string = NULL;
9860 *thread = -1;
ed1d1739
KS
9861 *task = 0;
9862 *rest = NULL;
9863
018d34a4
VP
9864 while (tok && *tok)
9865 {
bbc13ae3 9866 const char *end_tok;
018d34a4 9867 int toklen;
bbc13ae3
KS
9868 const char *cond_start = NULL;
9869 const char *cond_end = NULL;
cc59ec59 9870
bbc13ae3 9871 tok = skip_spaces_const (tok);
e7e0cddf
SS
9872
9873 if ((*tok == '"' || *tok == ',') && rest)
9874 {
9875 *rest = savestring (tok, strlen (tok));
9876 return;
9877 }
9878
bbc13ae3 9879 end_tok = skip_to_space_const (tok);
d634f2de 9880
018d34a4 9881 toklen = end_tok - tok;
d634f2de 9882
018d34a4
VP
9883 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9884 {
f7545552
TT
9885 struct expression *expr;
9886
018d34a4 9887 tok = cond_start = end_tok + 1;
1bb9788d 9888 expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
f7545552 9889 xfree (expr);
018d34a4 9890 cond_end = tok;
d634f2de 9891 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9892 }
9893 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9894 {
9895 char *tmptok;
d634f2de 9896
018d34a4 9897 tok = end_tok + 1;
bbc13ae3 9898 *thread = strtol (tok, &tmptok, 0);
018d34a4
VP
9899 if (tok == tmptok)
9900 error (_("Junk after thread keyword."));
9901 if (!valid_thread_id (*thread))
af4908ba 9902 invalid_thread_id_error (*thread);
bbc13ae3 9903 tok = tmptok;
018d34a4 9904 }
4a306c9a
JB
9905 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9906 {
9907 char *tmptok;
9908
9909 tok = end_tok + 1;
bbc13ae3 9910 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9911 if (tok == tmptok)
9912 error (_("Junk after task keyword."));
9913 if (!valid_task_id (*task))
b6199126 9914 error (_("Unknown task %d."), *task);
bbc13ae3 9915 tok = tmptok;
4a306c9a 9916 }
e7e0cddf
SS
9917 else if (rest)
9918 {
9919 *rest = savestring (tok, strlen (tok));
ccab2054 9920 return;
e7e0cddf 9921 }
018d34a4
VP
9922 else
9923 error (_("Junk at end of arguments."));
9924 }
9925}
9926
0fb4aa4b
PA
9927/* Decode a static tracepoint marker spec. */
9928
9929static struct symtabs_and_lines
9930decode_static_tracepoint_spec (char **arg_p)
9931{
9932 VEC(static_tracepoint_marker_p) *markers = NULL;
9933 struct symtabs_and_lines sals;
0fb4aa4b
PA
9934 struct cleanup *old_chain;
9935 char *p = &(*arg_p)[3];
9936 char *endp;
9937 char *marker_str;
9938 int i;
9939
e9cafbcc 9940 p = skip_spaces (p);
0fb4aa4b 9941
e9cafbcc 9942 endp = skip_to_space (p);
0fb4aa4b
PA
9943
9944 marker_str = savestring (p, endp - p);
9945 old_chain = make_cleanup (xfree, marker_str);
9946
9947 markers = target_static_tracepoint_markers_by_strid (marker_str);
9948 if (VEC_empty(static_tracepoint_marker_p, markers))
9949 error (_("No known static tracepoint marker named %s"), marker_str);
9950
9951 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
9952 sals.sals = xmalloc (sizeof *sals.sals * sals.nelts);
9953
9954 for (i = 0; i < sals.nelts; i++)
9955 {
9956 struct static_tracepoint_marker *marker;
9957
9958 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9959
9960 init_sal (&sals.sals[i]);
9961
9962 sals.sals[i] = find_pc_line (marker->address, 0);
9963 sals.sals[i].pc = marker->address;
9964
9965 release_static_tracepoint_marker (marker);
9966 }
9967
9968 do_cleanups (old_chain);
9969
9970 *arg_p = endp;
9971 return sals;
9972}
9973
fd9b8c24
PA
9974/* Set a breakpoint. This function is shared between CLI and MI
9975 functions for setting a breakpoint. This function has two major
f6de8ec2
PA
9976 modes of operations, selected by the PARSE_ARG parameter. If
9977 non-zero, the function will parse ARG, extracting location,
9978 condition, thread and extra string. Otherwise, ARG is just the
9979 breakpoint's location, with condition, thread, and extra string
9980 specified by the COND_STRING, THREAD and EXTRA_STRING parameters.
9981 If INTERNAL is non-zero, the breakpoint number will be allocated
9982 from the internal breakpoint count. Returns true if any breakpoint
9983 was created; false otherwise. */
0101ce28 9984
8cdf0e15
VP
9985int
9986create_breakpoint (struct gdbarch *gdbarch,
e7e0cddf
SS
9987 char *arg, char *cond_string,
9988 int thread, char *extra_string,
f6de8ec2 9989 int parse_arg,
0fb4aa4b 9990 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9991 int ignore_count,
9992 enum auto_boolean pending_break_support,
c0a91b2b 9993 const struct breakpoint_ops *ops,
44f238bb
PA
9994 int from_tty, int enabled, int internal,
9995 unsigned flags)
c3f6f71d 9996{
b78a6381 9997 volatile struct gdb_exception e;
f8eba3c6 9998 char *copy_arg = NULL;
c3f6f71d 9999 char *addr_start = arg;
7efd8fc2 10000 struct linespec_result canonical;
c3f6f71d 10001 struct cleanup *old_chain;
80c99de1 10002 struct cleanup *bkpt_chain = NULL;
0101ce28 10003 int pending = 0;
4a306c9a 10004 int task = 0;
86b17b60 10005 int prev_bkpt_count = breakpoint_count;
c3f6f71d 10006
348d480f
PA
10007 gdb_assert (ops != NULL);
10008
7efd8fc2 10009 init_linespec_result (&canonical);
c3f6f71d 10010
b78a6381
TT
10011 TRY_CATCH (e, RETURN_MASK_ALL)
10012 {
983af33b
SDJ
10013 ops->create_sals_from_address (&arg, &canonical, type_wanted,
10014 addr_start, &copy_arg);
b78a6381 10015 }
0101ce28
JJ
10016
10017 /* If caller is interested in rc value from parse, set value. */
05ff989b 10018 switch (e.reason)
0101ce28 10019 {
983af33b
SDJ
10020 case GDB_NO_ERROR:
10021 if (VEC_empty (linespec_sals, canonical.sals))
10022 return 0;
10023 break;
05ff989b
AC
10024 case RETURN_ERROR:
10025 switch (e.error)
0101ce28 10026 {
05ff989b 10027 case NOT_FOUND_ERROR:
0101ce28 10028
05ff989b
AC
10029 /* If pending breakpoint support is turned off, throw
10030 error. */
fa8d40ab
JJ
10031
10032 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
10033 throw_exception (e);
10034
10035 exception_print (gdb_stderr, e);
fa8d40ab 10036
05ff989b
AC
10037 /* If pending breakpoint support is auto query and the user
10038 selects no, then simply return the error code. */
059fb39f 10039 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
10040 && !nquery (_("Make %s pending on future shared library load? "),
10041 bptype_string (type_wanted)))
fd9b8c24 10042 return 0;
fa8d40ab 10043
05ff989b
AC
10044 /* At this point, either the user was queried about setting
10045 a pending breakpoint and selected yes, or pending
10046 breakpoint behavior is on and thus a pending breakpoint
10047 is defaulted on behalf of the user. */
f8eba3c6
TT
10048 {
10049 struct linespec_sals lsal;
10050
10051 copy_arg = xstrdup (addr_start);
10052 lsal.canonical = xstrdup (copy_arg);
10053 lsal.sals.nelts = 1;
10054 lsal.sals.sals = XNEW (struct symtab_and_line);
10055 init_sal (&lsal.sals.sals[0]);
10056 pending = 1;
10057 VEC_safe_push (linespec_sals, canonical.sals, &lsal);
10058 }
05ff989b
AC
10059 break;
10060 default:
98deb0da 10061 throw_exception (e);
0101ce28 10062 }
2abae994 10063 break;
05ff989b 10064 default:
983af33b 10065 throw_exception (e);
0101ce28 10066 }
c3f6f71d 10067
4a64f543 10068 /* Create a chain of things that always need to be cleaned up. */
f8eba3c6 10069 old_chain = make_cleanup_destroy_linespec_result (&canonical);
c3f6f71d 10070
c3f6f71d
JM
10071 /* ----------------------------- SNIP -----------------------------
10072 Anything added to the cleanup chain beyond this point is assumed
10073 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
10074 then the memory is not reclaimed. */
10075 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 10076
c3f6f71d
JM
10077 /* Resolve all line numbers to PC's and verify that the addresses
10078 are ok for the target. */
0101ce28 10079 if (!pending)
f8eba3c6
TT
10080 {
10081 int ix;
10082 struct linespec_sals *iter;
10083
10084 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
10085 breakpoint_sals_to_pc (&iter->sals);
10086 }
c3f6f71d 10087
7a697b8d 10088 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 10089 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6
TT
10090 {
10091 int ix;
10092 struct linespec_sals *iter;
10093
10094 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
10095 check_fast_tracepoint_sals (gdbarch, &iter->sals);
10096 }
7a697b8d 10097
c3f6f71d
JM
10098 /* Verify that condition can be parsed, before setting any
10099 breakpoints. Allocate a separate condition expression for each
4a64f543 10100 breakpoint. */
0101ce28 10101 if (!pending)
c3f6f71d 10102 {
f6de8ec2 10103 if (parse_arg)
72b2ff0e 10104 {
0878d0fa 10105 char *rest;
52d361e1
YQ
10106 struct linespec_sals *lsal;
10107
10108 lsal = VEC_index (linespec_sals, canonical.sals, 0);
10109
0878d0fa
YQ
10110 /* Here we only parse 'arg' to separate condition
10111 from thread number, so parsing in context of first
10112 sal is OK. When setting the breakpoint we'll
10113 re-parse it in context of each sal. */
10114
10115 find_condition_and_thread (arg, lsal->sals.sals[0].pc, &cond_string,
10116 &thread, &task, &rest);
10117 if (cond_string)
10118 make_cleanup (xfree, cond_string);
10119 if (rest)
10120 make_cleanup (xfree, rest);
10121 if (rest)
10122 extra_string = rest;
72b2ff0e 10123 }
2f069f6f 10124 else
72b2ff0e 10125 {
0878d0fa
YQ
10126 if (*arg != '\0')
10127 error (_("Garbage '%s' at end of location"), arg);
10128
10129 /* Create a private copy of condition string. */
10130 if (cond_string)
10131 {
10132 cond_string = xstrdup (cond_string);
10133 make_cleanup (xfree, cond_string);
10134 }
10135 /* Create a private copy of any extra string. */
10136 if (extra_string)
10137 {
10138 extra_string = xstrdup (extra_string);
10139 make_cleanup (xfree, extra_string);
10140 }
72b2ff0e 10141 }
0fb4aa4b 10142
52d361e1 10143 ops->create_breakpoints_sal (gdbarch, &canonical,
e7e0cddf 10144 cond_string, extra_string, type_wanted,
d9b3f62e
PA
10145 tempflag ? disp_del : disp_donttouch,
10146 thread, task, ignore_count, ops,
44f238bb 10147 from_tty, enabled, internal, flags);
c906108c 10148 }
0101ce28
JJ
10149 else
10150 {
0101ce28
JJ
10151 struct breakpoint *b;
10152
0101ce28
JJ
10153 make_cleanup (xfree, copy_arg);
10154
bfccc43c
YQ
10155 if (is_tracepoint_type (type_wanted))
10156 {
10157 struct tracepoint *t;
10158
10159 t = XCNEW (struct tracepoint);
10160 b = &t->base;
10161 }
10162 else
10163 b = XNEW (struct breakpoint);
10164
10165 init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops);
10166
f8eba3c6 10167 b->addr_string = copy_arg;
f6de8ec2 10168 if (parse_arg)
e12c7713
MK
10169 b->cond_string = NULL;
10170 else
10171 {
10172 /* Create a private copy of condition string. */
10173 if (cond_string)
10174 {
10175 cond_string = xstrdup (cond_string);
10176 make_cleanup (xfree, cond_string);
10177 }
10178 b->cond_string = cond_string;
10179 }
e7e0cddf 10180 b->extra_string = NULL;
0101ce28 10181 b->ignore_count = ignore_count;
0101ce28 10182 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 10183 b->condition_not_parsed = 1;
41447f92 10184 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
10185 if ((type_wanted != bp_breakpoint
10186 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 10187 b->pspace = current_program_space;
8bea4e01 10188
bfccc43c 10189 install_breakpoint (internal, b, 0);
0101ce28
JJ
10190 }
10191
f8eba3c6 10192 if (VEC_length (linespec_sals, canonical.sals) > 1)
95a42b64 10193 {
3e43a32a
MS
10194 warning (_("Multiple breakpoints were set.\nUse the "
10195 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 10196 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
10197 }
10198
80c99de1
PA
10199 /* That's it. Discard the cleanups for data inserted into the
10200 breakpoint. */
10201 discard_cleanups (bkpt_chain);
10202 /* But cleanup everything else. */
c3f6f71d 10203 do_cleanups (old_chain);
217dc9e2 10204
80c99de1 10205 /* error call may happen here - have BKPT_CHAIN already discarded. */
44702360 10206 update_global_location_list (UGLL_MAY_INSERT);
fd9b8c24
PA
10207
10208 return 1;
c3f6f71d 10209}
c906108c 10210
348d480f 10211/* Set a breakpoint.
72b2ff0e
VP
10212 ARG is a string describing breakpoint address,
10213 condition, and thread.
10214 FLAG specifies if a breakpoint is hardware on,
10215 and if breakpoint is temporary, using BP_HARDWARE_FLAG
10216 and BP_TEMPFLAG. */
348d480f 10217
98deb0da 10218static void
72b2ff0e 10219break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 10220{
72b2ff0e 10221 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
10222 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
10223 ? bp_hardware_breakpoint
10224 : bp_breakpoint);
55aa24fb
SDJ
10225 struct breakpoint_ops *ops;
10226 const char *arg_cp = arg;
10227
10228 /* Matching breakpoints on probes. */
10229 if (arg && probe_linespec_to_ops (&arg_cp) != NULL)
10230 ops = &bkpt_probe_breakpoint_ops;
10231 else
10232 ops = &bkpt_breakpoint_ops;
c3f6f71d 10233
8cdf0e15
VP
10234 create_breakpoint (get_current_arch (),
10235 arg,
e7e0cddf 10236 NULL, 0, NULL, 1 /* parse arg */,
0fb4aa4b 10237 tempflag, type_wanted,
8cdf0e15
VP
10238 0 /* Ignore count */,
10239 pending_break_support,
55aa24fb 10240 ops,
8cdf0e15 10241 from_tty,
84f4c1fe 10242 1 /* enabled */,
44f238bb
PA
10243 0 /* internal */,
10244 0);
c906108c
SS
10245}
10246
c906108c
SS
10247/* Helper function for break_command_1 and disassemble_command. */
10248
10249void
fba45db2 10250resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
10251{
10252 CORE_ADDR pc;
10253
10254 if (sal->pc == 0 && sal->symtab != NULL)
10255 {
10256 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 10257 error (_("No line %d in file \"%s\"."),
05cba821 10258 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 10259 sal->pc = pc;
6a048695 10260
4a64f543
MS
10261 /* If this SAL corresponds to a breakpoint inserted using a line
10262 number, then skip the function prologue if necessary. */
6a048695 10263 if (sal->explicit_line)
059acae7 10264 skip_prologue_sal (sal);
c906108c
SS
10265 }
10266
10267 if (sal->section == 0 && sal->symtab != NULL)
10268 {
346d1dfe 10269 const struct blockvector *bv;
3977b71f 10270 const struct block *b;
c5aa993b 10271 struct symbol *sym;
c906108c 10272
801e3a5b 10273 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
10274 if (bv != NULL)
10275 {
7f0df278 10276 sym = block_linkage_function (b);
c906108c
SS
10277 if (sym != NULL)
10278 {
10279 fixup_symbol_section (sym, sal->symtab->objfile);
e27d198c 10280 sal->section = SYMBOL_OBJ_SECTION (sal->symtab->objfile, sym);
c906108c
SS
10281 }
10282 else
10283 {
4a64f543
MS
10284 /* It really is worthwhile to have the section, so we'll
10285 just have to look harder. This case can be executed
10286 if we have line numbers but no functions (as can
10287 happen in assembly source). */
c906108c 10288
7cbd4a93 10289 struct bound_minimal_symbol msym;
6c95b8df
PA
10290 struct cleanup *old_chain = save_current_space_and_thread ();
10291
10292 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
10293
10294 msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 10295 if (msym.minsym)
efd66ac6 10296 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
6c95b8df
PA
10297
10298 do_cleanups (old_chain);
c906108c
SS
10299 }
10300 }
10301 }
10302}
10303
10304void
fba45db2 10305break_command (char *arg, int from_tty)
c906108c 10306{
db107f19 10307 break_command_1 (arg, 0, from_tty);
c906108c
SS
10308}
10309
c906108c 10310void
fba45db2 10311tbreak_command (char *arg, int from_tty)
c906108c 10312{
db107f19 10313 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
10314}
10315
c906108c 10316static void
fba45db2 10317hbreak_command (char *arg, int from_tty)
c906108c 10318{
db107f19 10319 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
10320}
10321
10322static void
fba45db2 10323thbreak_command (char *arg, int from_tty)
c906108c 10324{
db107f19 10325 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
10326}
10327
10328static void
fba45db2 10329stop_command (char *arg, int from_tty)
c906108c 10330{
a3f17187 10331 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 10332Usage: stop in <function | address>\n\
a3f17187 10333 stop at <line>\n"));
c906108c
SS
10334}
10335
10336static void
fba45db2 10337stopin_command (char *arg, int from_tty)
c906108c
SS
10338{
10339 int badInput = 0;
10340
c5aa993b 10341 if (arg == (char *) NULL)
c906108c
SS
10342 badInput = 1;
10343 else if (*arg != '*')
10344 {
10345 char *argptr = arg;
10346 int hasColon = 0;
10347
4a64f543 10348 /* Look for a ':'. If this is a line number specification, then
53a5351d 10349 say it is bad, otherwise, it should be an address or
4a64f543 10350 function/method name. */
c906108c 10351 while (*argptr && !hasColon)
c5aa993b
JM
10352 {
10353 hasColon = (*argptr == ':');
10354 argptr++;
10355 }
c906108c
SS
10356
10357 if (hasColon)
c5aa993b 10358 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 10359 else
c5aa993b 10360 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
10361 }
10362
10363 if (badInput)
a3f17187 10364 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 10365 else
db107f19 10366 break_command_1 (arg, 0, from_tty);
c906108c
SS
10367}
10368
10369static void
fba45db2 10370stopat_command (char *arg, int from_tty)
c906108c
SS
10371{
10372 int badInput = 0;
10373
c5aa993b 10374 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
10375 badInput = 1;
10376 else
10377 {
10378 char *argptr = arg;
10379 int hasColon = 0;
10380
4a64f543
MS
10381 /* Look for a ':'. If there is a '::' then get out, otherwise
10382 it is probably a line number. */
c906108c 10383 while (*argptr && !hasColon)
c5aa993b
JM
10384 {
10385 hasColon = (*argptr == ':');
10386 argptr++;
10387 }
c906108c
SS
10388
10389 if (hasColon)
c5aa993b 10390 badInput = (*argptr == ':'); /* we have class::method */
c906108c 10391 else
c5aa993b 10392 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
10393 }
10394
10395 if (badInput)
a3f17187 10396 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 10397 else
db107f19 10398 break_command_1 (arg, 0, from_tty);
c906108c
SS
10399}
10400
e7e0cddf
SS
10401/* The dynamic printf command is mostly like a regular breakpoint, but
10402 with a prewired command list consisting of a single output command,
10403 built from extra arguments supplied on the dprintf command
10404 line. */
10405
da821c7b 10406static void
e7e0cddf
SS
10407dprintf_command (char *arg, int from_tty)
10408{
10409 create_breakpoint (get_current_arch (),
10410 arg,
10411 NULL, 0, NULL, 1 /* parse arg */,
10412 0, bp_dprintf,
10413 0 /* Ignore count */,
10414 pending_break_support,
10415 &dprintf_breakpoint_ops,
10416 from_tty,
10417 1 /* enabled */,
10418 0 /* internal */,
10419 0);
10420}
10421
d3ce09f5
SS
10422static void
10423agent_printf_command (char *arg, int from_tty)
10424{
10425 error (_("May only run agent-printf on the target"));
10426}
10427
f1310107
TJB
10428/* Implement the "breakpoint_hit" breakpoint_ops method for
10429 ranged breakpoints. */
10430
10431static int
10432breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
10433 struct address_space *aspace,
09ac7c10
TT
10434 CORE_ADDR bp_addr,
10435 const struct target_waitstatus *ws)
f1310107 10436{
09ac7c10 10437 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 10438 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
10439 return 0;
10440
f1310107
TJB
10441 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
10442 bl->length, aspace, bp_addr);
10443}
10444
10445/* Implement the "resources_needed" breakpoint_ops method for
10446 ranged breakpoints. */
10447
10448static int
10449resources_needed_ranged_breakpoint (const struct bp_location *bl)
10450{
10451 return target_ranged_break_num_registers ();
10452}
10453
10454/* Implement the "print_it" breakpoint_ops method for
10455 ranged breakpoints. */
10456
10457static enum print_stop_action
348d480f 10458print_it_ranged_breakpoint (bpstat bs)
f1310107 10459{
348d480f 10460 struct breakpoint *b = bs->breakpoint_at;
f1310107 10461 struct bp_location *bl = b->loc;
79a45e25 10462 struct ui_out *uiout = current_uiout;
f1310107
TJB
10463
10464 gdb_assert (b->type == bp_hardware_breakpoint);
10465
10466 /* Ranged breakpoints have only one location. */
10467 gdb_assert (bl && bl->next == NULL);
10468
10469 annotate_breakpoint (b->number);
10470 if (b->disposition == disp_del)
10471 ui_out_text (uiout, "\nTemporary ranged breakpoint ");
10472 else
10473 ui_out_text (uiout, "\nRanged breakpoint ");
10474 if (ui_out_is_mi_like_p (uiout))
10475 {
10476 ui_out_field_string (uiout, "reason",
10477 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
10478 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
10479 }
10480 ui_out_field_int (uiout, "bkptno", b->number);
10481 ui_out_text (uiout, ", ");
10482
10483 return PRINT_SRC_AND_LOC;
10484}
10485
10486/* Implement the "print_one" breakpoint_ops method for
10487 ranged breakpoints. */
10488
10489static void
10490print_one_ranged_breakpoint (struct breakpoint *b,
10491 struct bp_location **last_loc)
10492{
10493 struct bp_location *bl = b->loc;
10494 struct value_print_options opts;
79a45e25 10495 struct ui_out *uiout = current_uiout;
f1310107
TJB
10496
10497 /* Ranged breakpoints have only one location. */
10498 gdb_assert (bl && bl->next == NULL);
10499
10500 get_user_print_options (&opts);
10501
10502 if (opts.addressprint)
10503 /* We don't print the address range here, it will be printed later
10504 by print_one_detail_ranged_breakpoint. */
10505 ui_out_field_skip (uiout, "addr");
10506 annotate_field (5);
10507 print_breakpoint_location (b, bl);
10508 *last_loc = bl;
10509}
10510
10511/* Implement the "print_one_detail" breakpoint_ops method for
10512 ranged breakpoints. */
10513
10514static void
10515print_one_detail_ranged_breakpoint (const struct breakpoint *b,
10516 struct ui_out *uiout)
10517{
10518 CORE_ADDR address_start, address_end;
10519 struct bp_location *bl = b->loc;
f99d8bf4
PA
10520 struct ui_file *stb = mem_fileopen ();
10521 struct cleanup *cleanup = make_cleanup_ui_file_delete (stb);
f1310107
TJB
10522
10523 gdb_assert (bl);
10524
10525 address_start = bl->address;
10526 address_end = address_start + bl->length - 1;
10527
10528 ui_out_text (uiout, "\taddress range: ");
f99d8bf4 10529 fprintf_unfiltered (stb, "[%s, %s]",
f1310107
TJB
10530 print_core_address (bl->gdbarch, address_start),
10531 print_core_address (bl->gdbarch, address_end));
10532 ui_out_field_stream (uiout, "addr", stb);
10533 ui_out_text (uiout, "\n");
10534
10535 do_cleanups (cleanup);
10536}
10537
10538/* Implement the "print_mention" breakpoint_ops method for
10539 ranged breakpoints. */
10540
10541static void
10542print_mention_ranged_breakpoint (struct breakpoint *b)
10543{
10544 struct bp_location *bl = b->loc;
79a45e25 10545 struct ui_out *uiout = current_uiout;
f1310107
TJB
10546
10547 gdb_assert (bl);
10548 gdb_assert (b->type == bp_hardware_breakpoint);
10549
10550 if (ui_out_is_mi_like_p (uiout))
10551 return;
10552
10553 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
10554 b->number, paddress (bl->gdbarch, bl->address),
10555 paddress (bl->gdbarch, bl->address + bl->length - 1));
10556}
10557
10558/* Implement the "print_recreate" breakpoint_ops method for
10559 ranged breakpoints. */
10560
10561static void
10562print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
10563{
10564 fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string,
10565 b->addr_string_range_end);
d9b3f62e 10566 print_recreate_thread (b, fp);
f1310107
TJB
10567}
10568
10569/* The breakpoint_ops structure to be used in ranged breakpoints. */
10570
2060206e 10571static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
10572
10573/* Find the address where the end of the breakpoint range should be
10574 placed, given the SAL of the end of the range. This is so that if
10575 the user provides a line number, the end of the range is set to the
10576 last instruction of the given line. */
10577
10578static CORE_ADDR
10579find_breakpoint_range_end (struct symtab_and_line sal)
10580{
10581 CORE_ADDR end;
10582
10583 /* If the user provided a PC value, use it. Otherwise,
10584 find the address of the end of the given location. */
10585 if (sal.explicit_pc)
10586 end = sal.pc;
10587 else
10588 {
10589 int ret;
10590 CORE_ADDR start;
10591
10592 ret = find_line_pc_range (sal, &start, &end);
10593 if (!ret)
10594 error (_("Could not find location of the end of the range."));
10595
10596 /* find_line_pc_range returns the start of the next line. */
10597 end--;
10598 }
10599
10600 return end;
10601}
10602
10603/* Implement the "break-range" CLI command. */
10604
10605static void
10606break_range_command (char *arg, int from_tty)
10607{
10608 char *arg_start, *addr_string_start, *addr_string_end;
10609 struct linespec_result canonical_start, canonical_end;
10610 int bp_count, can_use_bp, length;
10611 CORE_ADDR end;
10612 struct breakpoint *b;
10613 struct symtab_and_line sal_start, sal_end;
f1310107 10614 struct cleanup *cleanup_bkpt;
f8eba3c6 10615 struct linespec_sals *lsal_start, *lsal_end;
f1310107
TJB
10616
10617 /* We don't support software ranged breakpoints. */
10618 if (target_ranged_break_num_registers () < 0)
10619 error (_("This target does not support hardware ranged breakpoints."));
10620
10621 bp_count = hw_breakpoint_used_count ();
10622 bp_count += target_ranged_break_num_registers ();
10623 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
10624 bp_count, 0);
10625 if (can_use_bp < 0)
10626 error (_("Hardware breakpoints used exceeds limit."));
10627
f8eba3c6 10628 arg = skip_spaces (arg);
f1310107
TJB
10629 if (arg == NULL || arg[0] == '\0')
10630 error(_("No address range specified."));
10631
f1310107
TJB
10632 init_linespec_result (&canonical_start);
10633
f8eba3c6
TT
10634 arg_start = arg;
10635 parse_breakpoint_sals (&arg, &canonical_start);
f1310107 10636
f8eba3c6 10637 cleanup_bkpt = make_cleanup_destroy_linespec_result (&canonical_start);
f1310107
TJB
10638
10639 if (arg[0] != ',')
10640 error (_("Too few arguments."));
f8eba3c6 10641 else if (VEC_empty (linespec_sals, canonical_start.sals))
f1310107 10642 error (_("Could not find location of the beginning of the range."));
f8eba3c6
TT
10643
10644 lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0);
10645
10646 if (VEC_length (linespec_sals, canonical_start.sals) > 1
10647 || lsal_start->sals.nelts != 1)
f1310107
TJB
10648 error (_("Cannot create a ranged breakpoint with multiple locations."));
10649
f8eba3c6
TT
10650 sal_start = lsal_start->sals.sals[0];
10651 addr_string_start = savestring (arg_start, arg - arg_start);
10652 make_cleanup (xfree, addr_string_start);
f1310107
TJB
10653
10654 arg++; /* Skip the comma. */
f8eba3c6 10655 arg = skip_spaces (arg);
f1310107
TJB
10656
10657 /* Parse the end location. */
10658
f1310107
TJB
10659 init_linespec_result (&canonical_end);
10660 arg_start = arg;
10661
f8eba3c6 10662 /* We call decode_line_full directly here instead of using
f1310107
TJB
10663 parse_breakpoint_sals because we need to specify the start location's
10664 symtab and line as the default symtab and line for the end of the
10665 range. This makes it possible to have ranges like "foo.c:27, +14",
10666 where +14 means 14 lines from the start location. */
f8eba3c6
TT
10667 decode_line_full (&arg, DECODE_LINE_FUNFIRSTLINE,
10668 sal_start.symtab, sal_start.line,
10669 &canonical_end, NULL, NULL);
10670
10671 make_cleanup_destroy_linespec_result (&canonical_end);
f1310107 10672
f8eba3c6 10673 if (VEC_empty (linespec_sals, canonical_end.sals))
f1310107 10674 error (_("Could not find location of the end of the range."));
f8eba3c6
TT
10675
10676 lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0);
10677 if (VEC_length (linespec_sals, canonical_end.sals) > 1
10678 || lsal_end->sals.nelts != 1)
f1310107
TJB
10679 error (_("Cannot create a ranged breakpoint with multiple locations."));
10680
f8eba3c6
TT
10681 sal_end = lsal_end->sals.sals[0];
10682 addr_string_end = savestring (arg_start, arg - arg_start);
10683 make_cleanup (xfree, addr_string_end);
f1310107
TJB
10684
10685 end = find_breakpoint_range_end (sal_end);
10686 if (sal_start.pc > end)
177b42fe 10687 error (_("Invalid address range, end precedes start."));
f1310107
TJB
10688
10689 length = end - sal_start.pc + 1;
10690 if (length < 0)
10691 /* Length overflowed. */
10692 error (_("Address range too large."));
10693 else if (length == 1)
10694 {
10695 /* This range is simple enough to be handled by
10696 the `hbreak' command. */
10697 hbreak_command (addr_string_start, 1);
10698
10699 do_cleanups (cleanup_bkpt);
10700
10701 return;
10702 }
10703
10704 /* Now set up the breakpoint. */
10705 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 10706 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
10707 set_breakpoint_count (breakpoint_count + 1);
10708 b->number = breakpoint_count;
10709 b->disposition = disp_donttouch;
f8eba3c6
TT
10710 b->addr_string = xstrdup (addr_string_start);
10711 b->addr_string_range_end = xstrdup (addr_string_end);
f1310107
TJB
10712 b->loc->length = length;
10713
f8eba3c6 10714 do_cleanups (cleanup_bkpt);
f1310107
TJB
10715
10716 mention (b);
8d3788bd 10717 observer_notify_breakpoint_created (b);
44702360 10718 update_global_location_list (UGLL_MAY_INSERT);
f1310107
TJB
10719}
10720
4a64f543
MS
10721/* Return non-zero if EXP is verified as constant. Returned zero
10722 means EXP is variable. Also the constant detection may fail for
10723 some constant expressions and in such case still falsely return
10724 zero. */
2e6e3d9c 10725
65d79d4b
SDJ
10726static int
10727watchpoint_exp_is_const (const struct expression *exp)
10728{
10729 int i = exp->nelts;
10730
10731 while (i > 0)
10732 {
10733 int oplenp, argsp;
10734
10735 /* We are only interested in the descriptor of each element. */
10736 operator_length (exp, i, &oplenp, &argsp);
10737 i -= oplenp;
10738
10739 switch (exp->elts[i].opcode)
10740 {
10741 case BINOP_ADD:
10742 case BINOP_SUB:
10743 case BINOP_MUL:
10744 case BINOP_DIV:
10745 case BINOP_REM:
10746 case BINOP_MOD:
10747 case BINOP_LSH:
10748 case BINOP_RSH:
10749 case BINOP_LOGICAL_AND:
10750 case BINOP_LOGICAL_OR:
10751 case BINOP_BITWISE_AND:
10752 case BINOP_BITWISE_IOR:
10753 case BINOP_BITWISE_XOR:
10754 case BINOP_EQUAL:
10755 case BINOP_NOTEQUAL:
10756 case BINOP_LESS:
10757 case BINOP_GTR:
10758 case BINOP_LEQ:
10759 case BINOP_GEQ:
10760 case BINOP_REPEAT:
10761 case BINOP_COMMA:
10762 case BINOP_EXP:
10763 case BINOP_MIN:
10764 case BINOP_MAX:
10765 case BINOP_INTDIV:
10766 case BINOP_CONCAT:
65d79d4b
SDJ
10767 case TERNOP_COND:
10768 case TERNOP_SLICE:
65d79d4b
SDJ
10769
10770 case OP_LONG:
10771 case OP_DOUBLE:
10772 case OP_DECFLOAT:
10773 case OP_LAST:
10774 case OP_COMPLEX:
10775 case OP_STRING:
65d79d4b
SDJ
10776 case OP_ARRAY:
10777 case OP_TYPE:
608b4967
TT
10778 case OP_TYPEOF:
10779 case OP_DECLTYPE:
6e72ca20 10780 case OP_TYPEID:
65d79d4b
SDJ
10781 case OP_NAME:
10782 case OP_OBJC_NSSTRING:
10783
10784 case UNOP_NEG:
10785 case UNOP_LOGICAL_NOT:
10786 case UNOP_COMPLEMENT:
10787 case UNOP_ADDR:
10788 case UNOP_HIGH:
aeaa2474 10789 case UNOP_CAST:
9eaf6705
TT
10790
10791 case UNOP_CAST_TYPE:
10792 case UNOP_REINTERPRET_CAST:
10793 case UNOP_DYNAMIC_CAST:
4a64f543
MS
10794 /* Unary, binary and ternary operators: We have to check
10795 their operands. If they are constant, then so is the
10796 result of that operation. For instance, if A and B are
10797 determined to be constants, then so is "A + B".
10798
10799 UNOP_IND is one exception to the rule above, because the
10800 value of *ADDR is not necessarily a constant, even when
10801 ADDR is. */
65d79d4b
SDJ
10802 break;
10803
10804 case OP_VAR_VALUE:
10805 /* Check whether the associated symbol is a constant.
4a64f543 10806
65d79d4b 10807 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
10808 possible that a buggy compiler could mark a variable as
10809 constant even when it is not, and TYPE_CONST would return
10810 true in this case, while SYMBOL_CLASS wouldn't.
10811
10812 We also have to check for function symbols because they
10813 are always constant. */
65d79d4b
SDJ
10814 {
10815 struct symbol *s = exp->elts[i + 2].symbol;
10816
10817 if (SYMBOL_CLASS (s) != LOC_BLOCK
10818 && SYMBOL_CLASS (s) != LOC_CONST
10819 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10820 return 0;
10821 break;
10822 }
10823
10824 /* The default action is to return 0 because we are using
10825 the optimistic approach here: If we don't know something,
10826 then it is not a constant. */
10827 default:
10828 return 0;
10829 }
10830 }
10831
10832 return 1;
10833}
10834
3a5c3e22
PA
10835/* Implement the "dtor" breakpoint_ops method for watchpoints. */
10836
10837static void
10838dtor_watchpoint (struct breakpoint *self)
10839{
10840 struct watchpoint *w = (struct watchpoint *) self;
10841
10842 xfree (w->cond_exp);
10843 xfree (w->exp);
10844 xfree (w->exp_string);
10845 xfree (w->exp_string_reparse);
10846 value_free (w->val);
10847
10848 base_breakpoint_ops.dtor (self);
10849}
10850
348d480f
PA
10851/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10852
10853static void
10854re_set_watchpoint (struct breakpoint *b)
10855{
3a5c3e22
PA
10856 struct watchpoint *w = (struct watchpoint *) b;
10857
348d480f
PA
10858 /* Watchpoint can be either on expression using entirely global
10859 variables, or it can be on local variables.
10860
10861 Watchpoints of the first kind are never auto-deleted, and even
10862 persist across program restarts. Since they can use variables
10863 from shared libraries, we need to reparse expression as libraries
10864 are loaded and unloaded.
10865
10866 Watchpoints on local variables can also change meaning as result
10867 of solib event. For example, if a watchpoint uses both a local
10868 and a global variables in expression, it's a local watchpoint,
10869 but unloading of a shared library will make the expression
10870 invalid. This is not a very common use case, but we still
10871 re-evaluate expression, to avoid surprises to the user.
10872
10873 Note that for local watchpoints, we re-evaluate it only if
10874 watchpoints frame id is still valid. If it's not, it means the
10875 watchpoint is out of scope and will be deleted soon. In fact,
10876 I'm not sure we'll ever be called in this case.
10877
10878 If a local watchpoint's frame id is still valid, then
3a5c3e22 10879 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 10880
3a5c3e22
PA
10881 Don't do anything about disabled watchpoints, since they will be
10882 reevaluated again when enabled. */
10883 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
10884}
10885
77b06cd7
TJB
10886/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10887
10888static int
10889insert_watchpoint (struct bp_location *bl)
10890{
3a5c3e22
PA
10891 struct watchpoint *w = (struct watchpoint *) bl->owner;
10892 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10893
10894 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
3a5c3e22 10895 w->cond_exp);
77b06cd7
TJB
10896}
10897
10898/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10899
10900static int
10901remove_watchpoint (struct bp_location *bl)
10902{
3a5c3e22
PA
10903 struct watchpoint *w = (struct watchpoint *) bl->owner;
10904 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10905
10906 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
3a5c3e22 10907 w->cond_exp);
e09342b5
TJB
10908}
10909
e09342b5 10910static int
348d480f 10911breakpoint_hit_watchpoint (const struct bp_location *bl,
09ac7c10
TT
10912 struct address_space *aspace, CORE_ADDR bp_addr,
10913 const struct target_waitstatus *ws)
e09342b5 10914{
348d480f 10915 struct breakpoint *b = bl->owner;
3a5c3e22 10916 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10917
348d480f
PA
10918 /* Continuable hardware watchpoints are treated as non-existent if the
10919 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10920 some data address). Otherwise gdb won't stop on a break instruction
10921 in the code (not from a breakpoint) when a hardware watchpoint has
10922 been defined. Also skip watchpoints which we know did not trigger
10923 (did not match the data address). */
10924 if (is_hardware_watchpoint (b)
3a5c3e22 10925 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10926 return 0;
9c06b0b4 10927
348d480f 10928 return 1;
9c06b0b4
TJB
10929}
10930
348d480f
PA
10931static void
10932check_status_watchpoint (bpstat bs)
9c06b0b4 10933{
348d480f 10934 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10935
348d480f 10936 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10937}
10938
10939/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10940 hardware watchpoints. */
9c06b0b4
TJB
10941
10942static int
348d480f 10943resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10944{
3a5c3e22
PA
10945 struct watchpoint *w = (struct watchpoint *) bl->owner;
10946 int length = w->exact? 1 : bl->length;
348d480f
PA
10947
10948 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10949}
10950
10951/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10952 hardware watchpoints. */
9c06b0b4
TJB
10953
10954static int
348d480f 10955works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10956{
efa80663
PA
10957 /* Read and access watchpoints only work with hardware support. */
10958 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10959}
10960
9c06b0b4 10961static enum print_stop_action
348d480f 10962print_it_watchpoint (bpstat bs)
9c06b0b4 10963{
348d480f
PA
10964 struct cleanup *old_chain;
10965 struct breakpoint *b;
f99d8bf4 10966 struct ui_file *stb;
348d480f 10967 enum print_stop_action result;
3a5c3e22 10968 struct watchpoint *w;
79a45e25 10969 struct ui_out *uiout = current_uiout;
348d480f
PA
10970
10971 gdb_assert (bs->bp_location_at != NULL);
10972
348d480f 10973 b = bs->breakpoint_at;
3a5c3e22 10974 w = (struct watchpoint *) b;
348d480f 10975
f99d8bf4
PA
10976 stb = mem_fileopen ();
10977 old_chain = make_cleanup_ui_file_delete (stb);
9c06b0b4
TJB
10978
10979 switch (b->type)
10980 {
348d480f 10981 case bp_watchpoint:
9c06b0b4
TJB
10982 case bp_hardware_watchpoint:
10983 annotate_watchpoint (b->number);
10984 if (ui_out_is_mi_like_p (uiout))
10985 ui_out_field_string
10986 (uiout, "reason",
10987 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10988 mention (b);
10989 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10990 ui_out_text (uiout, "\nOld value = ");
f99d8bf4 10991 watchpoint_value_print (bs->old_val, stb);
348d480f
PA
10992 ui_out_field_stream (uiout, "old", stb);
10993 ui_out_text (uiout, "\nNew value = ");
f99d8bf4 10994 watchpoint_value_print (w->val, stb);
348d480f
PA
10995 ui_out_field_stream (uiout, "new", stb);
10996 ui_out_text (uiout, "\n");
10997 /* More than one watchpoint may have been triggered. */
10998 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10999 break;
11000
11001 case bp_read_watchpoint:
11002 if (ui_out_is_mi_like_p (uiout))
11003 ui_out_field_string
11004 (uiout, "reason",
11005 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
11006 mention (b);
11007 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
11008 ui_out_text (uiout, "\nValue = ");
f99d8bf4 11009 watchpoint_value_print (w->val, stb);
348d480f
PA
11010 ui_out_field_stream (uiout, "value", stb);
11011 ui_out_text (uiout, "\n");
11012 result = PRINT_UNKNOWN;
9c06b0b4
TJB
11013 break;
11014
11015 case bp_access_watchpoint:
348d480f
PA
11016 if (bs->old_val != NULL)
11017 {
11018 annotate_watchpoint (b->number);
11019 if (ui_out_is_mi_like_p (uiout))
11020 ui_out_field_string
11021 (uiout, "reason",
11022 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
11023 mention (b);
11024 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
11025 ui_out_text (uiout, "\nOld value = ");
f99d8bf4 11026 watchpoint_value_print (bs->old_val, stb);
348d480f
PA
11027 ui_out_field_stream (uiout, "old", stb);
11028 ui_out_text (uiout, "\nNew value = ");
11029 }
11030 else
11031 {
11032 mention (b);
11033 if (ui_out_is_mi_like_p (uiout))
11034 ui_out_field_string
11035 (uiout, "reason",
11036 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
11037 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
11038 ui_out_text (uiout, "\nValue = ");
11039 }
f99d8bf4 11040 watchpoint_value_print (w->val, stb);
348d480f
PA
11041 ui_out_field_stream (uiout, "new", stb);
11042 ui_out_text (uiout, "\n");
11043 result = PRINT_UNKNOWN;
9c06b0b4
TJB
11044 break;
11045 default:
348d480f 11046 result = PRINT_UNKNOWN;
9c06b0b4
TJB
11047 }
11048
348d480f
PA
11049 do_cleanups (old_chain);
11050 return result;
11051}
11052
11053/* Implement the "print_mention" breakpoint_ops method for hardware
11054 watchpoints. */
11055
11056static void
11057print_mention_watchpoint (struct breakpoint *b)
11058{
11059 struct cleanup *ui_out_chain;
3a5c3e22 11060 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 11061 struct ui_out *uiout = current_uiout;
348d480f
PA
11062
11063 switch (b->type)
11064 {
11065 case bp_watchpoint:
11066 ui_out_text (uiout, "Watchpoint ");
11067 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11068 break;
11069 case bp_hardware_watchpoint:
11070 ui_out_text (uiout, "Hardware watchpoint ");
11071 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11072 break;
11073 case bp_read_watchpoint:
11074 ui_out_text (uiout, "Hardware read watchpoint ");
11075 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
11076 break;
11077 case bp_access_watchpoint:
11078 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
11079 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
11080 break;
11081 default:
11082 internal_error (__FILE__, __LINE__,
11083 _("Invalid hardware watchpoint type."));
11084 }
11085
11086 ui_out_field_int (uiout, "number", b->number);
11087 ui_out_text (uiout, ": ");
3a5c3e22 11088 ui_out_field_string (uiout, "exp", w->exp_string);
348d480f
PA
11089 do_cleanups (ui_out_chain);
11090}
11091
11092/* Implement the "print_recreate" breakpoint_ops method for
11093 watchpoints. */
11094
11095static void
11096print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
11097{
3a5c3e22
PA
11098 struct watchpoint *w = (struct watchpoint *) b;
11099
348d480f
PA
11100 switch (b->type)
11101 {
11102 case bp_watchpoint:
11103 case bp_hardware_watchpoint:
11104 fprintf_unfiltered (fp, "watch");
11105 break;
11106 case bp_read_watchpoint:
11107 fprintf_unfiltered (fp, "rwatch");
11108 break;
11109 case bp_access_watchpoint:
11110 fprintf_unfiltered (fp, "awatch");
11111 break;
11112 default:
11113 internal_error (__FILE__, __LINE__,
11114 _("Invalid watchpoint type."));
11115 }
11116
3a5c3e22 11117 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 11118 print_recreate_thread (b, fp);
348d480f
PA
11119}
11120
427cd150
TT
11121/* Implement the "explains_signal" breakpoint_ops method for
11122 watchpoints. */
11123
47591c29 11124static int
427cd150
TT
11125explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
11126{
11127 /* A software watchpoint cannot cause a signal other than
11128 GDB_SIGNAL_TRAP. */
11129 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 11130 return 0;
427cd150 11131
47591c29 11132 return 1;
427cd150
TT
11133}
11134
348d480f
PA
11135/* The breakpoint_ops structure to be used in hardware watchpoints. */
11136
2060206e 11137static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
11138
11139/* Implement the "insert" breakpoint_ops method for
11140 masked hardware watchpoints. */
11141
11142static int
11143insert_masked_watchpoint (struct bp_location *bl)
11144{
3a5c3e22
PA
11145 struct watchpoint *w = (struct watchpoint *) bl->owner;
11146
11147 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
11148 bl->watchpoint_type);
11149}
11150
11151/* Implement the "remove" breakpoint_ops method for
11152 masked hardware watchpoints. */
11153
11154static int
11155remove_masked_watchpoint (struct bp_location *bl)
11156{
3a5c3e22
PA
11157 struct watchpoint *w = (struct watchpoint *) bl->owner;
11158
11159 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
11160 bl->watchpoint_type);
11161}
11162
11163/* Implement the "resources_needed" breakpoint_ops method for
11164 masked hardware watchpoints. */
11165
11166static int
11167resources_needed_masked_watchpoint (const struct bp_location *bl)
11168{
3a5c3e22
PA
11169 struct watchpoint *w = (struct watchpoint *) bl->owner;
11170
11171 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
11172}
11173
11174/* Implement the "works_in_software_mode" breakpoint_ops method for
11175 masked hardware watchpoints. */
11176
11177static int
11178works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
11179{
11180 return 0;
11181}
11182
11183/* Implement the "print_it" breakpoint_ops method for
11184 masked hardware watchpoints. */
11185
11186static enum print_stop_action
11187print_it_masked_watchpoint (bpstat bs)
11188{
11189 struct breakpoint *b = bs->breakpoint_at;
79a45e25 11190 struct ui_out *uiout = current_uiout;
348d480f
PA
11191
11192 /* Masked watchpoints have only one location. */
11193 gdb_assert (b->loc && b->loc->next == NULL);
11194
11195 switch (b->type)
11196 {
11197 case bp_hardware_watchpoint:
11198 annotate_watchpoint (b->number);
11199 if (ui_out_is_mi_like_p (uiout))
11200 ui_out_field_string
11201 (uiout, "reason",
11202 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
11203 break;
11204
11205 case bp_read_watchpoint:
11206 if (ui_out_is_mi_like_p (uiout))
11207 ui_out_field_string
11208 (uiout, "reason",
11209 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
11210 break;
11211
11212 case bp_access_watchpoint:
11213 if (ui_out_is_mi_like_p (uiout))
11214 ui_out_field_string
11215 (uiout, "reason",
11216 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
11217 break;
11218 default:
11219 internal_error (__FILE__, __LINE__,
11220 _("Invalid hardware watchpoint type."));
11221 }
11222
11223 mention (b);
9c06b0b4
TJB
11224 ui_out_text (uiout, _("\n\
11225Check the underlying instruction at PC for the memory\n\
11226address and value which triggered this watchpoint.\n"));
11227 ui_out_text (uiout, "\n");
11228
11229 /* More than one watchpoint may have been triggered. */
11230 return PRINT_UNKNOWN;
11231}
11232
11233/* Implement the "print_one_detail" breakpoint_ops method for
11234 masked hardware watchpoints. */
11235
11236static void
11237print_one_detail_masked_watchpoint (const struct breakpoint *b,
11238 struct ui_out *uiout)
11239{
3a5c3e22
PA
11240 struct watchpoint *w = (struct watchpoint *) b;
11241
9c06b0b4
TJB
11242 /* Masked watchpoints have only one location. */
11243 gdb_assert (b->loc && b->loc->next == NULL);
11244
11245 ui_out_text (uiout, "\tmask ");
3a5c3e22 11246 ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask);
9c06b0b4
TJB
11247 ui_out_text (uiout, "\n");
11248}
11249
11250/* Implement the "print_mention" breakpoint_ops method for
11251 masked hardware watchpoints. */
11252
11253static void
11254print_mention_masked_watchpoint (struct breakpoint *b)
11255{
3a5c3e22 11256 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 11257 struct ui_out *uiout = current_uiout;
9c06b0b4
TJB
11258 struct cleanup *ui_out_chain;
11259
11260 switch (b->type)
11261 {
11262 case bp_hardware_watchpoint:
11263 ui_out_text (uiout, "Masked hardware watchpoint ");
11264 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11265 break;
11266 case bp_read_watchpoint:
11267 ui_out_text (uiout, "Masked hardware read watchpoint ");
11268 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
11269 break;
11270 case bp_access_watchpoint:
11271 ui_out_text (uiout, "Masked hardware access (read/write) watchpoint ");
11272 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
11273 break;
11274 default:
11275 internal_error (__FILE__, __LINE__,
11276 _("Invalid hardware watchpoint type."));
11277 }
11278
11279 ui_out_field_int (uiout, "number", b->number);
11280 ui_out_text (uiout, ": ");
3a5c3e22 11281 ui_out_field_string (uiout, "exp", w->exp_string);
9c06b0b4
TJB
11282 do_cleanups (ui_out_chain);
11283}
11284
11285/* Implement the "print_recreate" breakpoint_ops method for
11286 masked hardware watchpoints. */
11287
11288static void
11289print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
11290{
3a5c3e22 11291 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
11292 char tmp[40];
11293
11294 switch (b->type)
11295 {
11296 case bp_hardware_watchpoint:
11297 fprintf_unfiltered (fp, "watch");
11298 break;
11299 case bp_read_watchpoint:
11300 fprintf_unfiltered (fp, "rwatch");
11301 break;
11302 case bp_access_watchpoint:
11303 fprintf_unfiltered (fp, "awatch");
11304 break;
11305 default:
11306 internal_error (__FILE__, __LINE__,
11307 _("Invalid hardware watchpoint type."));
11308 }
11309
3a5c3e22
PA
11310 sprintf_vma (tmp, w->hw_wp_mask);
11311 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
d9b3f62e 11312 print_recreate_thread (b, fp);
9c06b0b4
TJB
11313}
11314
11315/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
11316
2060206e 11317static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
11318
11319/* Tell whether the given watchpoint is a masked hardware watchpoint. */
11320
11321static int
11322is_masked_watchpoint (const struct breakpoint *b)
11323{
11324 return b->ops == &masked_watchpoint_breakpoint_ops;
11325}
11326
53a5351d
JM
11327/* accessflag: hw_write: watch write,
11328 hw_read: watch read,
11329 hw_access: watch access (read or write) */
c906108c 11330static void
bbc13ae3 11331watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 11332 int just_location, int internal)
c906108c 11333{
a9634178 11334 volatile struct gdb_exception e;
d983da9c 11335 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c 11336 struct expression *exp;
270140bd 11337 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 11338 struct value *val, *mark, *result;
bb9d5f81 11339 int saved_bitpos = 0, saved_bitsize = 0;
c906108c 11340 struct frame_info *frame;
bbc13ae3
KS
11341 const char *exp_start = NULL;
11342 const char *exp_end = NULL;
11343 const char *tok, *end_tok;
9c06b0b4 11344 int toklen = -1;
bbc13ae3
KS
11345 const char *cond_start = NULL;
11346 const char *cond_end = NULL;
c906108c 11347 enum bptype bp_type;
37e4754d 11348 int thread = -1;
0cf6dd15 11349 int pc = 0;
9c06b0b4
TJB
11350 /* Flag to indicate whether we are going to use masks for
11351 the hardware watchpoint. */
11352 int use_mask = 0;
11353 CORE_ADDR mask = 0;
3a5c3e22 11354 struct watchpoint *w;
bbc13ae3
KS
11355 char *expression;
11356 struct cleanup *back_to;
c906108c 11357
37e4754d
LM
11358 /* Make sure that we actually have parameters to parse. */
11359 if (arg != NULL && arg[0] != '\0')
11360 {
bbc13ae3
KS
11361 const char *value_start;
11362
11363 exp_end = arg + strlen (arg);
37e4754d 11364
9c06b0b4
TJB
11365 /* Look for "parameter value" pairs at the end
11366 of the arguments string. */
bbc13ae3 11367 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
11368 {
11369 /* Skip whitespace at the end of the argument list. */
11370 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11371 tok--;
11372
11373 /* Find the beginning of the last token.
11374 This is the value of the parameter. */
11375 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11376 tok--;
11377 value_start = tok + 1;
11378
11379 /* Skip whitespace. */
11380 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11381 tok--;
11382
11383 end_tok = tok;
11384
11385 /* Find the beginning of the second to last token.
11386 This is the parameter itself. */
11387 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11388 tok--;
11389 tok++;
11390 toklen = end_tok - tok + 1;
11391
11392 if (toklen == 6 && !strncmp (tok, "thread", 6))
11393 {
11394 /* At this point we've found a "thread" token, which means
11395 the user is trying to set a watchpoint that triggers
11396 only in a specific thread. */
11397 char *endp;
37e4754d 11398
9c06b0b4
TJB
11399 if (thread != -1)
11400 error(_("You can specify only one thread."));
37e4754d 11401
9c06b0b4
TJB
11402 /* Extract the thread ID from the next token. */
11403 thread = strtol (value_start, &endp, 0);
37e4754d 11404
9c06b0b4
TJB
11405 /* Check if the user provided a valid numeric value for the
11406 thread ID. */
11407 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
11408 error (_("Invalid thread ID specification %s."), value_start);
11409
11410 /* Check if the thread actually exists. */
11411 if (!valid_thread_id (thread))
af4908ba 11412 invalid_thread_id_error (thread);
9c06b0b4
TJB
11413 }
11414 else if (toklen == 4 && !strncmp (tok, "mask", 4))
11415 {
11416 /* We've found a "mask" token, which means the user wants to
11417 create a hardware watchpoint that is going to have the mask
11418 facility. */
11419 struct value *mask_value, *mark;
37e4754d 11420
9c06b0b4
TJB
11421 if (use_mask)
11422 error(_("You can specify only one mask."));
37e4754d 11423
9c06b0b4 11424 use_mask = just_location = 1;
37e4754d 11425
9c06b0b4
TJB
11426 mark = value_mark ();
11427 mask_value = parse_to_comma_and_eval (&value_start);
11428 mask = value_as_address (mask_value);
11429 value_free_to_mark (mark);
11430 }
11431 else
11432 /* We didn't recognize what we found. We should stop here. */
11433 break;
37e4754d 11434
9c06b0b4
TJB
11435 /* Truncate the string and get rid of the "parameter value" pair before
11436 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 11437 exp_end = tok;
9c06b0b4 11438 }
37e4754d 11439 }
bbc13ae3
KS
11440 else
11441 exp_end = arg;
37e4754d 11442
bbc13ae3
KS
11443 /* Parse the rest of the arguments. From here on out, everything
11444 is in terms of a newly allocated string instead of the original
11445 ARG. */
c906108c 11446 innermost_block = NULL;
bbc13ae3
KS
11447 expression = savestring (arg, exp_end - arg);
11448 back_to = make_cleanup (xfree, expression);
11449 exp_start = arg = expression;
1bb9788d 11450 exp = parse_exp_1 (&arg, 0, 0, 0);
c906108c 11451 exp_end = arg;
fa8a61dc
TT
11452 /* Remove trailing whitespace from the expression before saving it.
11453 This makes the eventual display of the expression string a bit
11454 prettier. */
11455 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
11456 --exp_end;
11457
65d79d4b
SDJ
11458 /* Checking if the expression is not constant. */
11459 if (watchpoint_exp_is_const (exp))
11460 {
11461 int len;
11462
11463 len = exp_end - exp_start;
11464 while (len > 0 && isspace (exp_start[len - 1]))
11465 len--;
11466 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
11467 }
11468
c906108c
SS
11469 exp_valid_block = innermost_block;
11470 mark = value_mark ();
3a1115a0 11471 fetch_subexp_value (exp, &pc, &val, &result, NULL, just_location);
06a64a0b 11472
bb9d5f81
PP
11473 if (val != NULL && just_location)
11474 {
11475 saved_bitpos = value_bitpos (val);
11476 saved_bitsize = value_bitsize (val);
11477 }
11478
06a64a0b
TT
11479 if (just_location)
11480 {
9c06b0b4
TJB
11481 int ret;
11482
06a64a0b 11483 exp_valid_block = NULL;
a1442452 11484 val = value_addr (result);
06a64a0b
TT
11485 release_value (val);
11486 value_free_to_mark (mark);
9c06b0b4
TJB
11487
11488 if (use_mask)
11489 {
11490 ret = target_masked_watch_num_registers (value_as_address (val),
11491 mask);
11492 if (ret == -1)
11493 error (_("This target does not support masked watchpoints."));
11494 else if (ret == -2)
11495 error (_("Invalid mask or memory region."));
11496 }
06a64a0b
TT
11497 }
11498 else if (val != NULL)
fa4727a6 11499 release_value (val);
c906108c 11500
bbc13ae3
KS
11501 tok = skip_spaces_const (arg);
11502 end_tok = skip_to_space_const (tok);
c906108c
SS
11503
11504 toklen = end_tok - tok;
11505 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
11506 {
2d134ed3
PA
11507 struct expression *cond;
11508
60e1c644 11509 innermost_block = NULL;
c906108c 11510 tok = cond_start = end_tok + 1;
1bb9788d 11511 cond = parse_exp_1 (&tok, 0, 0, 0);
60e1c644
PA
11512
11513 /* The watchpoint expression may not be local, but the condition
11514 may still be. E.g.: `watch global if local > 0'. */
11515 cond_exp_valid_block = innermost_block;
11516
2d134ed3 11517 xfree (cond);
c906108c
SS
11518 cond_end = tok;
11519 }
11520 if (*tok)
8a3fe4f8 11521 error (_("Junk at end of command."));
c906108c 11522
d983da9c 11523 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
11524
11525 /* If the expression is "local", then set up a "watchpoint scope"
11526 breakpoint at the point where we've left the scope of the watchpoint
11527 expression. Create the scope breakpoint before the watchpoint, so
11528 that we will encounter it first in bpstat_stop_status. */
60e1c644 11529 if (exp_valid_block && frame)
d983da9c 11530 {
edb3359d
DJ
11531 if (frame_id_p (frame_unwind_caller_id (frame)))
11532 {
11533 scope_breakpoint
a6d9a66e
UW
11534 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
11535 frame_unwind_caller_pc (frame),
06edf0c0
PA
11536 bp_watchpoint_scope,
11537 &momentary_breakpoint_ops);
d983da9c 11538
edb3359d 11539 scope_breakpoint->enable_state = bp_enabled;
d983da9c 11540
edb3359d
DJ
11541 /* Automatically delete the breakpoint when it hits. */
11542 scope_breakpoint->disposition = disp_del;
d983da9c 11543
edb3359d
DJ
11544 /* Only break in the proper frame (help with recursion). */
11545 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 11546
edb3359d 11547 /* Set the address at which we will stop. */
a6d9a66e
UW
11548 scope_breakpoint->loc->gdbarch
11549 = frame_unwind_caller_arch (frame);
edb3359d
DJ
11550 scope_breakpoint->loc->requested_address
11551 = frame_unwind_caller_pc (frame);
11552 scope_breakpoint->loc->address
a6d9a66e
UW
11553 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
11554 scope_breakpoint->loc->requested_address,
edb3359d
DJ
11555 scope_breakpoint->type);
11556 }
d983da9c
DJ
11557 }
11558
e8369a73
AB
11559 /* Now set up the breakpoint. We create all watchpoints as hardware
11560 watchpoints here even if hardware watchpoints are turned off, a call
11561 to update_watchpoint later in this function will cause the type to
11562 drop back to bp_watchpoint (software watchpoint) if required. */
11563
11564 if (accessflag == hw_read)
11565 bp_type = bp_read_watchpoint;
11566 else if (accessflag == hw_access)
11567 bp_type = bp_access_watchpoint;
11568 else
11569 bp_type = bp_hardware_watchpoint;
3a5c3e22
PA
11570
11571 w = XCNEW (struct watchpoint);
11572 b = &w->base;
348d480f 11573 if (use_mask)
3a5c3e22
PA
11574 init_raw_breakpoint_without_location (b, NULL, bp_type,
11575 &masked_watchpoint_breakpoint_ops);
348d480f 11576 else
3a5c3e22
PA
11577 init_raw_breakpoint_without_location (b, NULL, bp_type,
11578 &watchpoint_breakpoint_ops);
37e4754d 11579 b->thread = thread;
b5de0fa7 11580 b->disposition = disp_donttouch;
348d480f 11581 b->pspace = current_program_space;
3a5c3e22
PA
11582 w->exp = exp;
11583 w->exp_valid_block = exp_valid_block;
11584 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
11585 if (just_location)
11586 {
11587 struct type *t = value_type (val);
11588 CORE_ADDR addr = value_as_address (val);
11589 char *name;
11590
11591 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
11592 name = type_to_string (t);
11593
3a5c3e22 11594 w->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
d63d0675 11595 core_addr_to_string (addr));
06a64a0b
TT
11596 xfree (name);
11597
3a5c3e22 11598 w->exp_string = xstrprintf ("-location %.*s",
d63d0675
JK
11599 (int) (exp_end - exp_start), exp_start);
11600
06a64a0b
TT
11601 /* The above expression is in C. */
11602 b->language = language_c;
11603 }
11604 else
3a5c3e22 11605 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
11606
11607 if (use_mask)
11608 {
3a5c3e22 11609 w->hw_wp_mask = mask;
9c06b0b4
TJB
11610 }
11611 else
11612 {
3a5c3e22 11613 w->val = val;
bb9d5f81
PP
11614 w->val_bitpos = saved_bitpos;
11615 w->val_bitsize = saved_bitsize;
3a5c3e22 11616 w->val_valid = 1;
9c06b0b4 11617 }
77b06cd7 11618
c906108c
SS
11619 if (cond_start)
11620 b->cond_string = savestring (cond_start, cond_end - cond_start);
11621 else
11622 b->cond_string = 0;
c5aa993b 11623
c906108c 11624 if (frame)
f6bc2008 11625 {
3a5c3e22
PA
11626 w->watchpoint_frame = get_frame_id (frame);
11627 w->watchpoint_thread = inferior_ptid;
f6bc2008 11628 }
c906108c 11629 else
f6bc2008 11630 {
3a5c3e22
PA
11631 w->watchpoint_frame = null_frame_id;
11632 w->watchpoint_thread = null_ptid;
f6bc2008 11633 }
c906108c 11634
d983da9c 11635 if (scope_breakpoint != NULL)
c906108c 11636 {
d983da9c
DJ
11637 /* The scope breakpoint is related to the watchpoint. We will
11638 need to act on them together. */
11639 b->related_breakpoint = scope_breakpoint;
11640 scope_breakpoint->related_breakpoint = b;
c906108c 11641 }
d983da9c 11642
06a64a0b
TT
11643 if (!just_location)
11644 value_free_to_mark (mark);
2d134ed3 11645
a9634178
TJB
11646 TRY_CATCH (e, RETURN_MASK_ALL)
11647 {
11648 /* Finally update the new watchpoint. This creates the locations
11649 that should be inserted. */
3a5c3e22 11650 update_watchpoint (w, 1);
a9634178
TJB
11651 }
11652 if (e.reason < 0)
11653 {
11654 delete_breakpoint (b);
11655 throw_exception (e);
11656 }
11657
3ea46bff 11658 install_breakpoint (internal, b, 1);
bbc13ae3 11659 do_cleanups (back_to);
c906108c
SS
11660}
11661
e09342b5 11662/* Return count of debug registers needed to watch the given expression.
e09342b5 11663 If the watchpoint cannot be handled in hardware return zero. */
c906108c 11664
c906108c 11665static int
a9634178 11666can_use_hardware_watchpoint (struct value *v)
c906108c
SS
11667{
11668 int found_memory_cnt = 0;
2e70b7b9 11669 struct value *head = v;
c906108c
SS
11670
11671 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 11672 if (!can_use_hw_watchpoints)
c906108c 11673 return 0;
c5aa993b 11674
5c44784c
JM
11675 /* Make sure that the value of the expression depends only upon
11676 memory contents, and values computed from them within GDB. If we
11677 find any register references or function calls, we can't use a
11678 hardware watchpoint.
11679
11680 The idea here is that evaluating an expression generates a series
11681 of values, one holding the value of every subexpression. (The
11682 expression a*b+c has five subexpressions: a, b, a*b, c, and
11683 a*b+c.) GDB's values hold almost enough information to establish
11684 the criteria given above --- they identify memory lvalues,
11685 register lvalues, computed values, etcetera. So we can evaluate
11686 the expression, and then scan the chain of values that leaves
11687 behind to decide whether we can detect any possible change to the
11688 expression's final value using only hardware watchpoints.
11689
11690 However, I don't think that the values returned by inferior
11691 function calls are special in any way. So this function may not
11692 notice that an expression involving an inferior function call
11693 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 11694 for (; v; v = value_next (v))
c906108c 11695 {
5c44784c 11696 if (VALUE_LVAL (v) == lval_memory)
c906108c 11697 {
8464be76
DJ
11698 if (v != head && value_lazy (v))
11699 /* A lazy memory lvalue in the chain is one that GDB never
11700 needed to fetch; we either just used its address (e.g.,
11701 `a' in `a.b') or we never needed it at all (e.g., `a'
11702 in `a,b'). This doesn't apply to HEAD; if that is
11703 lazy then it was not readable, but watch it anyway. */
5c44784c 11704 ;
53a5351d 11705 else
5c44784c
JM
11706 {
11707 /* Ahh, memory we actually used! Check if we can cover
11708 it with hardware watchpoints. */
df407dfe 11709 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
11710
11711 /* We only watch structs and arrays if user asked for it
11712 explicitly, never if they just happen to appear in a
11713 middle of some value chain. */
11714 if (v == head
11715 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
11716 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
11717 {
42ae5230 11718 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
11719 int len;
11720 int num_regs;
11721
a9634178 11722 len = (target_exact_watchpoints
e09342b5
TJB
11723 && is_scalar_type_recursive (vtype))?
11724 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 11725
e09342b5
TJB
11726 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
11727 if (!num_regs)
2e70b7b9
MS
11728 return 0;
11729 else
e09342b5 11730 found_memory_cnt += num_regs;
2e70b7b9 11731 }
5c44784c 11732 }
c5aa993b 11733 }
5086187c
AC
11734 else if (VALUE_LVAL (v) != not_lval
11735 && deprecated_value_modifiable (v) == 0)
38b6c3b3 11736 return 0; /* These are values from the history (e.g., $1). */
5086187c 11737 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 11738 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
11739 }
11740
11741 /* The expression itself looks suitable for using a hardware
11742 watchpoint, but give the target machine a chance to reject it. */
11743 return found_memory_cnt;
11744}
11745
8b93c638 11746void
84f4c1fe 11747watch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11748{
84f4c1fe 11749 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
11750}
11751
06a64a0b
TT
11752/* A helper function that looks for the "-location" argument and then
11753 calls watch_command_1. */
11754
11755static void
11756watch_maybe_just_location (char *arg, int accessflag, int from_tty)
11757{
11758 int just_location = 0;
11759
11760 if (arg
11761 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11762 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11763 {
e9cafbcc 11764 arg = skip_spaces (arg);
06a64a0b
TT
11765 just_location = 1;
11766 }
11767
84f4c1fe 11768 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 11769}
8926118c 11770
c5aa993b 11771static void
fba45db2 11772watch_command (char *arg, int from_tty)
c906108c 11773{
06a64a0b 11774 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
11775}
11776
8b93c638 11777void
84f4c1fe 11778rwatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11779{
84f4c1fe 11780 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 11781}
8926118c 11782
c5aa993b 11783static void
fba45db2 11784rwatch_command (char *arg, int from_tty)
c906108c 11785{
06a64a0b 11786 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
11787}
11788
8b93c638 11789void
84f4c1fe 11790awatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11791{
84f4c1fe 11792 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 11793}
8926118c 11794
c5aa993b 11795static void
fba45db2 11796awatch_command (char *arg, int from_tty)
c906108c 11797{
06a64a0b 11798 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 11799}
c906108c 11800\f
c5aa993b 11801
43ff13b4 11802/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
11803 because it uses the mechanisms of breakpoints. */
11804
bfec99b2
PA
11805struct until_break_command_continuation_args
11806{
11807 struct breakpoint *breakpoint;
11808 struct breakpoint *breakpoint2;
186c406b 11809 int thread_num;
bfec99b2
PA
11810};
11811
43ff13b4 11812/* This function is called by fetch_inferior_event via the
4a64f543 11813 cmd_continuation pointer, to complete the until command. It takes
43ff13b4 11814 care of cleaning up the temporary breakpoints set up by the until
4a64f543 11815 command. */
c2c6d25f 11816static void
fa4cd53f 11817until_break_command_continuation (void *arg, int err)
43ff13b4 11818{
bfec99b2
PA
11819 struct until_break_command_continuation_args *a = arg;
11820
11821 delete_breakpoint (a->breakpoint);
11822 if (a->breakpoint2)
11823 delete_breakpoint (a->breakpoint2);
186c406b 11824 delete_longjmp_breakpoint (a->thread_num);
43ff13b4
JM
11825}
11826
c906108c 11827void
ae66c1fc 11828until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
11829{
11830 struct symtabs_and_lines sals;
11831 struct symtab_and_line sal;
8556afb4
PA
11832 struct frame_info *frame;
11833 struct gdbarch *frame_gdbarch;
11834 struct frame_id stack_frame_id;
11835 struct frame_id caller_frame_id;
c906108c 11836 struct breakpoint *breakpoint;
f107f563 11837 struct breakpoint *breakpoint2 = NULL;
c906108c 11838 struct cleanup *old_chain;
186c406b
TT
11839 int thread;
11840 struct thread_info *tp;
c906108c 11841
70509625 11842 clear_proceed_status (0);
c906108c
SS
11843
11844 /* Set a breakpoint where the user wants it and at return from
4a64f543 11845 this function. */
c5aa993b 11846
1bfeeb0f 11847 if (last_displayed_sal_is_valid ())
f8eba3c6 11848 sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE,
1bfeeb0f 11849 get_last_displayed_symtab (),
f8eba3c6 11850 get_last_displayed_line ());
c906108c 11851 else
f8eba3c6
TT
11852 sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE,
11853 (struct symtab *) NULL, 0);
c5aa993b 11854
c906108c 11855 if (sals.nelts != 1)
8a3fe4f8 11856 error (_("Couldn't get information on specified line."));
c5aa993b 11857
c906108c 11858 sal = sals.sals[0];
4a64f543 11859 xfree (sals.sals); /* malloc'd, so freed. */
c5aa993b 11860
c906108c 11861 if (*arg)
8a3fe4f8 11862 error (_("Junk at end of arguments."));
c5aa993b 11863
c906108c 11864 resolve_sal_pc (&sal);
c5aa993b 11865
186c406b
TT
11866 tp = inferior_thread ();
11867 thread = tp->num;
11868
883bc8d1
PA
11869 old_chain = make_cleanup (null_cleanup, NULL);
11870
8556afb4
PA
11871 /* Note linespec handling above invalidates the frame chain.
11872 Installing a breakpoint also invalidates the frame chain (as it
11873 may need to switch threads), so do any frame handling before
11874 that. */
11875
11876 frame = get_selected_frame (NULL);
11877 frame_gdbarch = get_frame_arch (frame);
11878 stack_frame_id = get_stack_frame_id (frame);
11879 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11880
ae66c1fc
EZ
11881 /* Keep within the current frame, or in frames called by the current
11882 one. */
edb3359d 11883
883bc8d1 11884 if (frame_id_p (caller_frame_id))
c906108c 11885 {
883bc8d1
PA
11886 struct symtab_and_line sal2;
11887
11888 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11889 sal2.pc = frame_unwind_caller_pc (frame);
a6d9a66e 11890 breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame),
883bc8d1
PA
11891 sal2,
11892 caller_frame_id,
f107f563
VP
11893 bp_until);
11894 make_cleanup_delete_breakpoint (breakpoint2);
186c406b 11895
883bc8d1 11896 set_longjmp_breakpoint (tp, caller_frame_id);
186c406b 11897 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 11898 }
c5aa993b 11899
c70a6932
JK
11900 /* set_momentary_breakpoint could invalidate FRAME. */
11901 frame = NULL;
11902
883bc8d1
PA
11903 if (anywhere)
11904 /* If the user told us to continue until a specified location,
11905 we don't specify a frame at which we need to stop. */
11906 breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11907 null_frame_id, bp_until);
11908 else
11909 /* Otherwise, specify the selected frame, because we want to stop
11910 only at the very same frame. */
11911 breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11912 stack_frame_id, bp_until);
11913 make_cleanup_delete_breakpoint (breakpoint);
11914
a493e3e2 11915 proceed (-1, GDB_SIGNAL_DEFAULT, 0);
f107f563 11916
4a64f543
MS
11917 /* If we are running asynchronously, and proceed call above has
11918 actually managed to start the target, arrange for breakpoints to
11919 be deleted when the target stops. Otherwise, we're already
11920 stopped and delete breakpoints via cleanup chain. */
f107f563 11921
8ea051c5 11922 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 11923 {
bfec99b2
PA
11924 struct until_break_command_continuation_args *args;
11925 args = xmalloc (sizeof (*args));
f107f563 11926
bfec99b2
PA
11927 args->breakpoint = breakpoint;
11928 args->breakpoint2 = breakpoint2;
186c406b 11929 args->thread_num = thread;
f107f563
VP
11930
11931 discard_cleanups (old_chain);
95e54da7
PA
11932 add_continuation (inferior_thread (),
11933 until_break_command_continuation, args,
604ead4a 11934 xfree);
f107f563
VP
11935 }
11936 else
c5aa993b 11937 do_cleanups (old_chain);
c906108c 11938}
ae66c1fc 11939
c906108c
SS
11940/* This function attempts to parse an optional "if <cond>" clause
11941 from the arg string. If one is not found, it returns NULL.
c5aa993b 11942
c906108c
SS
11943 Else, it returns a pointer to the condition string. (It does not
11944 attempt to evaluate the string against a particular block.) And,
11945 it updates arg to point to the first character following the parsed
4a64f543 11946 if clause in the arg string. */
53a5351d 11947
916703c0 11948char *
fba45db2 11949ep_parse_optional_if_clause (char **arg)
c906108c 11950{
c5aa993b
JM
11951 char *cond_string;
11952
11953 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11954 return NULL;
c5aa993b 11955
4a64f543 11956 /* Skip the "if" keyword. */
c906108c 11957 (*arg) += 2;
c5aa993b 11958
c906108c 11959 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11960 condition string. */
e9cafbcc 11961 *arg = skip_spaces (*arg);
c906108c 11962 cond_string = *arg;
c5aa993b 11963
4a64f543
MS
11964 /* Assume that the condition occupies the remainder of the arg
11965 string. */
c906108c 11966 (*arg) += strlen (cond_string);
c5aa993b 11967
c906108c
SS
11968 return cond_string;
11969}
c5aa993b 11970
c906108c
SS
11971/* Commands to deal with catching events, such as signals, exceptions,
11972 process start/exit, etc. */
c5aa993b
JM
11973
11974typedef enum
11975{
44feb3ce
TT
11976 catch_fork_temporary, catch_vfork_temporary,
11977 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11978}
11979catch_fork_kind;
11980
c906108c 11981static void
cc59ec59
MS
11982catch_fork_command_1 (char *arg, int from_tty,
11983 struct cmd_list_element *command)
c906108c 11984{
a6d9a66e 11985 struct gdbarch *gdbarch = get_current_arch ();
c5aa993b 11986 char *cond_string = NULL;
44feb3ce
TT
11987 catch_fork_kind fork_kind;
11988 int tempflag;
11989
11990 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11991 tempflag = (fork_kind == catch_fork_temporary
11992 || fork_kind == catch_vfork_temporary);
c5aa993b 11993
44feb3ce
TT
11994 if (!arg)
11995 arg = "";
e9cafbcc 11996 arg = skip_spaces (arg);
c5aa993b 11997
c906108c 11998 /* The allowed syntax is:
c5aa993b
JM
11999 catch [v]fork
12000 catch [v]fork if <cond>
12001
4a64f543 12002 First, check if there's an if clause. */
c906108c 12003 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 12004
c906108c 12005 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 12006 error (_("Junk at end of arguments."));
c5aa993b 12007
c906108c 12008 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 12009 and enable reporting of such events. */
c5aa993b
JM
12010 switch (fork_kind)
12011 {
44feb3ce
TT
12012 case catch_fork_temporary:
12013 case catch_fork_permanent:
a6d9a66e 12014 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 12015 &catch_fork_breakpoint_ops);
c906108c 12016 break;
44feb3ce
TT
12017 case catch_vfork_temporary:
12018 case catch_vfork_permanent:
a6d9a66e 12019 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 12020 &catch_vfork_breakpoint_ops);
c906108c 12021 break;
c5aa993b 12022 default:
8a3fe4f8 12023 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 12024 break;
c5aa993b 12025 }
c906108c
SS
12026}
12027
12028static void
cc59ec59
MS
12029catch_exec_command_1 (char *arg, int from_tty,
12030 struct cmd_list_element *command)
c906108c 12031{
b4d90040 12032 struct exec_catchpoint *c;
a6d9a66e 12033 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 12034 int tempflag;
c5aa993b 12035 char *cond_string = NULL;
c906108c 12036
44feb3ce
TT
12037 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12038
12039 if (!arg)
12040 arg = "";
e9cafbcc 12041 arg = skip_spaces (arg);
c906108c
SS
12042
12043 /* The allowed syntax is:
c5aa993b
JM
12044 catch exec
12045 catch exec if <cond>
c906108c 12046
4a64f543 12047 First, check if there's an if clause. */
c906108c
SS
12048 cond_string = ep_parse_optional_if_clause (&arg);
12049
12050 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 12051 error (_("Junk at end of arguments."));
c906108c 12052
b4d90040
PA
12053 c = XNEW (struct exec_catchpoint);
12054 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
12055 &catch_exec_breakpoint_ops);
12056 c->exec_pathname = NULL;
12057
3ea46bff 12058 install_breakpoint (0, &c->base, 1);
c906108c 12059}
c5aa993b 12060
9ac4176b 12061void
28010a5d
PA
12062init_ada_exception_breakpoint (struct breakpoint *b,
12063 struct gdbarch *gdbarch,
12064 struct symtab_and_line sal,
12065 char *addr_string,
c0a91b2b 12066 const struct breakpoint_ops *ops,
28010a5d 12067 int tempflag,
349774ef 12068 int enabled,
28010a5d 12069 int from_tty)
f7f9143b 12070{
f7f9143b
JB
12071 if (from_tty)
12072 {
5af949e3
UW
12073 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
12074 if (!loc_gdbarch)
12075 loc_gdbarch = gdbarch;
12076
6c95b8df
PA
12077 describe_other_breakpoints (loc_gdbarch,
12078 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
12079 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
12080 version for exception catchpoints, because two catchpoints
12081 used for different exception names will use the same address.
12082 In this case, a "breakpoint ... also set at..." warning is
4a64f543 12083 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 12084 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
12085 the user what type of catchpoint it is. The above is good
12086 enough for now, though. */
12087 }
12088
28010a5d 12089 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b 12090
349774ef 12091 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 12092 b->disposition = tempflag ? disp_del : disp_donttouch;
f7f9143b
JB
12093 b->addr_string = addr_string;
12094 b->language = language_ada;
f7f9143b
JB
12095}
12096
a96d9b2e
SDJ
12097/* Splits the argument using space as delimiter. Returns an xmalloc'd
12098 filter list, or NULL if no filtering is required. */
12099static VEC(int) *
12100catch_syscall_split_args (char *arg)
12101{
12102 VEC(int) *result = NULL;
29d0bb3d 12103 struct cleanup *cleanup = make_cleanup (VEC_cleanup (int), &result);
a96d9b2e
SDJ
12104
12105 while (*arg != '\0')
12106 {
12107 int i, syscall_number;
12108 char *endptr;
12109 char cur_name[128];
12110 struct syscall s;
12111
12112 /* Skip whitespace. */
529480d0 12113 arg = skip_spaces (arg);
a96d9b2e
SDJ
12114
12115 for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i)
12116 cur_name[i] = arg[i];
12117 cur_name[i] = '\0';
12118 arg += i;
12119
12120 /* Check if the user provided a syscall name or a number. */
12121 syscall_number = (int) strtol (cur_name, &endptr, 0);
12122 if (*endptr == '\0')
bccd0dd2 12123 get_syscall_by_number (syscall_number, &s);
a96d9b2e
SDJ
12124 else
12125 {
12126 /* We have a name. Let's check if it's valid and convert it
12127 to a number. */
12128 get_syscall_by_name (cur_name, &s);
12129
12130 if (s.number == UNKNOWN_SYSCALL)
4a64f543
MS
12131 /* Here we have to issue an error instead of a warning,
12132 because GDB cannot do anything useful if there's no
12133 syscall number to be caught. */
a96d9b2e
SDJ
12134 error (_("Unknown syscall name '%s'."), cur_name);
12135 }
12136
12137 /* Ok, it's valid. */
12138 VEC_safe_push (int, result, s.number);
12139 }
12140
12141 discard_cleanups (cleanup);
12142 return result;
12143}
12144
12145/* Implement the "catch syscall" command. */
12146
12147static void
cc59ec59
MS
12148catch_syscall_command_1 (char *arg, int from_tty,
12149 struct cmd_list_element *command)
a96d9b2e
SDJ
12150{
12151 int tempflag;
12152 VEC(int) *filter;
12153 struct syscall s;
12154 struct gdbarch *gdbarch = get_current_arch ();
12155
12156 /* Checking if the feature if supported. */
12157 if (gdbarch_get_syscall_number_p (gdbarch) == 0)
12158 error (_("The feature 'catch syscall' is not supported on \
ea666128 12159this architecture yet."));
a96d9b2e
SDJ
12160
12161 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12162
e9cafbcc 12163 arg = skip_spaces (arg);
a96d9b2e
SDJ
12164
12165 /* We need to do this first "dummy" translation in order
12166 to get the syscall XML file loaded or, most important,
12167 to display a warning to the user if there's no XML file
12168 for his/her architecture. */
12169 get_syscall_by_number (0, &s);
12170
12171 /* The allowed syntax is:
12172 catch syscall
12173 catch syscall <name | number> [<name | number> ... <name | number>]
12174
12175 Let's check if there's a syscall name. */
12176
12177 if (arg != NULL)
12178 filter = catch_syscall_split_args (arg);
12179 else
12180 filter = NULL;
12181
12182 create_syscall_event_catchpoint (tempflag, filter,
12183 &catch_syscall_breakpoint_ops);
12184}
12185
c906108c 12186static void
fba45db2 12187catch_command (char *arg, int from_tty)
c906108c 12188{
44feb3ce 12189 error (_("Catch requires an event name."));
c906108c
SS
12190}
12191\f
12192
12193static void
fba45db2 12194tcatch_command (char *arg, int from_tty)
c906108c 12195{
44feb3ce 12196 error (_("Catch requires an event name."));
c906108c
SS
12197}
12198
8a2c437b
TT
12199/* A qsort comparison function that sorts breakpoints in order. */
12200
12201static int
12202compare_breakpoints (const void *a, const void *b)
12203{
12204 const breakpoint_p *ba = a;
12205 uintptr_t ua = (uintptr_t) *ba;
12206 const breakpoint_p *bb = b;
12207 uintptr_t ub = (uintptr_t) *bb;
12208
12209 if ((*ba)->number < (*bb)->number)
12210 return -1;
12211 else if ((*ba)->number > (*bb)->number)
12212 return 1;
12213
12214 /* Now sort by address, in case we see, e..g, two breakpoints with
12215 the number 0. */
12216 if (ua < ub)
12217 return -1;
94b0e70d 12218 return ua > ub ? 1 : 0;
8a2c437b
TT
12219}
12220
80f8a6eb 12221/* Delete breakpoints by address or line. */
c906108c
SS
12222
12223static void
fba45db2 12224clear_command (char *arg, int from_tty)
c906108c 12225{
8a2c437b 12226 struct breakpoint *b, *prev;
d6e956e5
VP
12227 VEC(breakpoint_p) *found = 0;
12228 int ix;
c906108c
SS
12229 int default_match;
12230 struct symtabs_and_lines sals;
12231 struct symtab_and_line sal;
c906108c 12232 int i;
8a2c437b 12233 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
c906108c
SS
12234
12235 if (arg)
12236 {
39cf75f7
DE
12237 sals = decode_line_with_current_source (arg,
12238 (DECODE_LINE_FUNFIRSTLINE
12239 | DECODE_LINE_LIST_MODE));
cf4ded82 12240 make_cleanup (xfree, sals.sals);
c906108c
SS
12241 default_match = 0;
12242 }
12243 else
12244 {
c5aa993b 12245 sals.sals = (struct symtab_and_line *)
c906108c 12246 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 12247 make_cleanup (xfree, sals.sals);
4a64f543 12248 init_sal (&sal); /* Initialize to zeroes. */
1bfeeb0f
JL
12249
12250 /* Set sal's line, symtab, pc, and pspace to the values
12251 corresponding to the last call to print_frame_info. If the
12252 codepoint is not valid, this will set all the fields to 0. */
12253 get_last_displayed_sal (&sal);
c906108c 12254 if (sal.symtab == 0)
8a3fe4f8 12255 error (_("No source file specified."));
c906108c
SS
12256
12257 sals.sals[0] = sal;
12258 sals.nelts = 1;
12259
12260 default_match = 1;
12261 }
12262
4a64f543
MS
12263 /* We don't call resolve_sal_pc here. That's not as bad as it
12264 seems, because all existing breakpoints typically have both
12265 file/line and pc set. So, if clear is given file/line, we can
12266 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
12267
12268 We only support clearing given the address explicitly
12269 present in breakpoint table. Say, we've set breakpoint
4a64f543 12270 at file:line. There were several PC values for that file:line,
ed0616c6 12271 due to optimization, all in one block.
4a64f543
MS
12272
12273 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
12274 PC corresponding to the same file:line, the breakpoint won't
12275 be cleared. We probably can still clear the breakpoint, but
12276 since the other PC value is never presented to user, user
12277 can only find it by guessing, and it does not seem important
12278 to support that. */
12279
4a64f543
MS
12280 /* For each line spec given, delete bps which correspond to it. Do
12281 it in two passes, solely to preserve the current behavior that
12282 from_tty is forced true if we delete more than one
12283 breakpoint. */
c906108c 12284
80f8a6eb 12285 found = NULL;
8a2c437b 12286 make_cleanup (VEC_cleanup (breakpoint_p), &found);
c906108c
SS
12287 for (i = 0; i < sals.nelts; i++)
12288 {
05cba821
JK
12289 const char *sal_fullname;
12290
c906108c 12291 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
12292 If line given (pc == 0), clear all bpts on specified line.
12293 If defaulting, clear all bpts on default line
c906108c 12294 or at default pc.
c5aa993b
JM
12295
12296 defaulting sal.pc != 0 tests to do
12297
12298 0 1 pc
12299 1 1 pc _and_ line
12300 0 0 line
12301 1 0 <can't happen> */
c906108c
SS
12302
12303 sal = sals.sals[i];
05cba821
JK
12304 sal_fullname = (sal.symtab == NULL
12305 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 12306
4a64f543 12307 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 12308 ALL_BREAKPOINTS (b)
c5aa993b 12309 {
0d381245 12310 int match = 0;
4a64f543 12311 /* Are we going to delete b? */
cc60f2e3 12312 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
12313 {
12314 struct bp_location *loc = b->loc;
12315 for (; loc; loc = loc->next)
12316 {
f8eba3c6
TT
12317 /* If the user specified file:line, don't allow a PC
12318 match. This matches historical gdb behavior. */
12319 int pc_match = (!sal.explicit_line
12320 && sal.pc
12321 && (loc->pspace == sal.pspace)
12322 && (loc->address == sal.pc)
12323 && (!section_is_overlay (loc->section)
12324 || loc->section == sal.section));
4aac40c8
TT
12325 int line_match = 0;
12326
12327 if ((default_match || sal.explicit_line)
2f202fde 12328 && loc->symtab != NULL
05cba821 12329 && sal_fullname != NULL
4aac40c8 12330 && sal.pspace == loc->pspace
05cba821
JK
12331 && loc->line_number == sal.line
12332 && filename_cmp (symtab_to_fullname (loc->symtab),
12333 sal_fullname) == 0)
12334 line_match = 1;
4aac40c8 12335
0d381245
VP
12336 if (pc_match || line_match)
12337 {
12338 match = 1;
12339 break;
12340 }
12341 }
12342 }
12343
12344 if (match)
d6e956e5 12345 VEC_safe_push(breakpoint_p, found, b);
c906108c 12346 }
80f8a6eb 12347 }
8a2c437b 12348
80f8a6eb 12349 /* Now go thru the 'found' chain and delete them. */
d6e956e5 12350 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
12351 {
12352 if (arg)
8a3fe4f8 12353 error (_("No breakpoint at %s."), arg);
80f8a6eb 12354 else
8a3fe4f8 12355 error (_("No breakpoint at this line."));
80f8a6eb 12356 }
c906108c 12357
8a2c437b
TT
12358 /* Remove duplicates from the vec. */
12359 qsort (VEC_address (breakpoint_p, found),
12360 VEC_length (breakpoint_p, found),
12361 sizeof (breakpoint_p),
12362 compare_breakpoints);
12363 prev = VEC_index (breakpoint_p, found, 0);
12364 for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix)
12365 {
12366 if (b == prev)
12367 {
12368 VEC_ordered_remove (breakpoint_p, found, ix);
12369 --ix;
12370 }
12371 }
12372
d6e956e5 12373 if (VEC_length(breakpoint_p, found) > 1)
4a64f543 12374 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 12375 if (from_tty)
a3f17187 12376 {
d6e956e5 12377 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
12378 printf_unfiltered (_("Deleted breakpoint "));
12379 else
12380 printf_unfiltered (_("Deleted breakpoints "));
12381 }
d6e956e5
VP
12382
12383 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 12384 {
c5aa993b 12385 if (from_tty)
d6e956e5
VP
12386 printf_unfiltered ("%d ", b->number);
12387 delete_breakpoint (b);
c906108c 12388 }
80f8a6eb
MS
12389 if (from_tty)
12390 putchar_unfiltered ('\n');
8a2c437b
TT
12391
12392 do_cleanups (cleanups);
c906108c
SS
12393}
12394\f
12395/* Delete breakpoint in BS if they are `delete' breakpoints and
12396 all breakpoints that are marked for deletion, whether hit or not.
12397 This is called after any breakpoint is hit, or after errors. */
12398
12399void
fba45db2 12400breakpoint_auto_delete (bpstat bs)
c906108c 12401{
35df4500 12402 struct breakpoint *b, *b_tmp;
c906108c
SS
12403
12404 for (; bs; bs = bs->next)
f431efe5
PA
12405 if (bs->breakpoint_at
12406 && bs->breakpoint_at->disposition == disp_del
c906108c 12407 && bs->stop)
f431efe5 12408 delete_breakpoint (bs->breakpoint_at);
c906108c 12409
35df4500 12410 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 12411 {
b5de0fa7 12412 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
12413 delete_breakpoint (b);
12414 }
c906108c
SS
12415}
12416
4a64f543
MS
12417/* A comparison function for bp_location AP and BP being interfaced to
12418 qsort. Sort elements primarily by their ADDRESS (no matter what
12419 does breakpoint_address_is_meaningful say for its OWNER),
12420 secondarily by ordering first bp_permanent OWNERed elements and
12421 terciarily just ensuring the array is sorted stable way despite
e5dd4106 12422 qsort being an unstable algorithm. */
876fa593
JK
12423
12424static int
494cfb0f 12425bp_location_compare (const void *ap, const void *bp)
876fa593 12426{
494cfb0f
JK
12427 struct bp_location *a = *(void **) ap;
12428 struct bp_location *b = *(void **) bp;
2bdf28a0 12429 /* A and B come from existing breakpoints having non-NULL OWNER. */
876fa593
JK
12430 int a_perm = a->owner->enable_state == bp_permanent;
12431 int b_perm = b->owner->enable_state == bp_permanent;
12432
12433 if (a->address != b->address)
12434 return (a->address > b->address) - (a->address < b->address);
12435
dea2aa5f
LM
12436 /* Sort locations at the same address by their pspace number, keeping
12437 locations of the same inferior (in a multi-inferior environment)
12438 grouped. */
12439
12440 if (a->pspace->num != b->pspace->num)
12441 return ((a->pspace->num > b->pspace->num)
12442 - (a->pspace->num < b->pspace->num));
12443
876fa593
JK
12444 /* Sort permanent breakpoints first. */
12445 if (a_perm != b_perm)
12446 return (a_perm < b_perm) - (a_perm > b_perm);
12447
c56a97f9
JK
12448 /* Make the internal GDB representation stable across GDB runs
12449 where A and B memory inside GDB can differ. Breakpoint locations of
12450 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
12451
12452 if (a->owner->number != b->owner->number)
c56a97f9
JK
12453 return ((a->owner->number > b->owner->number)
12454 - (a->owner->number < b->owner->number));
876fa593
JK
12455
12456 return (a > b) - (a < b);
12457}
12458
876fa593 12459/* Set bp_location_placed_address_before_address_max and
4a64f543
MS
12460 bp_location_shadow_len_after_address_max according to the current
12461 content of the bp_location array. */
f7545552
TT
12462
12463static void
876fa593 12464bp_location_target_extensions_update (void)
f7545552 12465{
876fa593
JK
12466 struct bp_location *bl, **blp_tmp;
12467
12468 bp_location_placed_address_before_address_max = 0;
12469 bp_location_shadow_len_after_address_max = 0;
12470
12471 ALL_BP_LOCATIONS (bl, blp_tmp)
12472 {
12473 CORE_ADDR start, end, addr;
12474
12475 if (!bp_location_has_shadow (bl))
12476 continue;
12477
12478 start = bl->target_info.placed_address;
12479 end = start + bl->target_info.shadow_len;
12480
12481 gdb_assert (bl->address >= start);
12482 addr = bl->address - start;
12483 if (addr > bp_location_placed_address_before_address_max)
12484 bp_location_placed_address_before_address_max = addr;
12485
12486 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
12487
12488 gdb_assert (bl->address < end);
12489 addr = end - bl->address;
12490 if (addr > bp_location_shadow_len_after_address_max)
12491 bp_location_shadow_len_after_address_max = addr;
12492 }
f7545552
TT
12493}
12494
1e4d1764
YQ
12495/* Download tracepoint locations if they haven't been. */
12496
12497static void
12498download_tracepoint_locations (void)
12499{
7ed2c994 12500 struct breakpoint *b;
1e4d1764
YQ
12501 struct cleanup *old_chain;
12502
12503 if (!target_can_download_tracepoint ())
12504 return;
12505
12506 old_chain = save_current_space_and_thread ();
12507
7ed2c994 12508 ALL_TRACEPOINTS (b)
1e4d1764 12509 {
7ed2c994 12510 struct bp_location *bl;
1e4d1764 12511 struct tracepoint *t;
f2a8bc8a 12512 int bp_location_downloaded = 0;
1e4d1764 12513
7ed2c994 12514 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
12515 ? !may_insert_fast_tracepoints
12516 : !may_insert_tracepoints))
12517 continue;
12518
7ed2c994
YQ
12519 for (bl = b->loc; bl; bl = bl->next)
12520 {
12521 /* In tracepoint, locations are _never_ duplicated, so
12522 should_be_inserted is equivalent to
12523 unduplicated_should_be_inserted. */
12524 if (!should_be_inserted (bl) || bl->inserted)
12525 continue;
1e4d1764 12526
7ed2c994 12527 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 12528
7ed2c994 12529 target_download_tracepoint (bl);
1e4d1764 12530
7ed2c994 12531 bl->inserted = 1;
f2a8bc8a 12532 bp_location_downloaded = 1;
7ed2c994
YQ
12533 }
12534 t = (struct tracepoint *) b;
12535 t->number_on_target = b->number;
f2a8bc8a
YQ
12536 if (bp_location_downloaded)
12537 observer_notify_breakpoint_modified (b);
1e4d1764
YQ
12538 }
12539
12540 do_cleanups (old_chain);
12541}
12542
934709f0
PW
12543/* Swap the insertion/duplication state between two locations. */
12544
12545static void
12546swap_insertion (struct bp_location *left, struct bp_location *right)
12547{
12548 const int left_inserted = left->inserted;
12549 const int left_duplicate = left->duplicate;
b775012e 12550 const int left_needs_update = left->needs_update;
934709f0
PW
12551 const struct bp_target_info left_target_info = left->target_info;
12552
1e4d1764
YQ
12553 /* Locations of tracepoints can never be duplicated. */
12554 if (is_tracepoint (left->owner))
12555 gdb_assert (!left->duplicate);
12556 if (is_tracepoint (right->owner))
12557 gdb_assert (!right->duplicate);
12558
934709f0
PW
12559 left->inserted = right->inserted;
12560 left->duplicate = right->duplicate;
b775012e 12561 left->needs_update = right->needs_update;
934709f0
PW
12562 left->target_info = right->target_info;
12563 right->inserted = left_inserted;
12564 right->duplicate = left_duplicate;
b775012e 12565 right->needs_update = left_needs_update;
934709f0
PW
12566 right->target_info = left_target_info;
12567}
12568
b775012e
LM
12569/* Force the re-insertion of the locations at ADDRESS. This is called
12570 once a new/deleted/modified duplicate location is found and we are evaluating
12571 conditions on the target's side. Such conditions need to be updated on
12572 the target. */
12573
12574static void
12575force_breakpoint_reinsertion (struct bp_location *bl)
12576{
12577 struct bp_location **locp = NULL, **loc2p;
12578 struct bp_location *loc;
12579 CORE_ADDR address = 0;
12580 int pspace_num;
12581
12582 address = bl->address;
12583 pspace_num = bl->pspace->num;
12584
12585 /* This is only meaningful if the target is
12586 evaluating conditions and if the user has
12587 opted for condition evaluation on the target's
12588 side. */
12589 if (gdb_evaluates_breakpoint_condition_p ()
12590 || !target_supports_evaluation_of_breakpoint_conditions ())
12591 return;
12592
12593 /* Flag all breakpoint locations with this address and
12594 the same program space as the location
12595 as "its condition has changed". We need to
12596 update the conditions on the target's side. */
12597 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
12598 {
12599 loc = *loc2p;
12600
12601 if (!is_breakpoint (loc->owner)
12602 || pspace_num != loc->pspace->num)
12603 continue;
12604
12605 /* Flag the location appropriately. We use a different state to
12606 let everyone know that we already updated the set of locations
12607 with addr bl->address and program space bl->pspace. This is so
12608 we don't have to keep calling these functions just to mark locations
12609 that have already been marked. */
12610 loc->condition_changed = condition_updated;
12611
12612 /* Free the agent expression bytecode as well. We will compute
12613 it later on. */
12614 if (loc->cond_bytecode)
12615 {
12616 free_agent_expr (loc->cond_bytecode);
12617 loc->cond_bytecode = NULL;
12618 }
12619 }
12620}
44702360
PA
12621/* Called whether new breakpoints are created, or existing breakpoints
12622 deleted, to update the global location list and recompute which
12623 locations are duplicate of which.
b775012e 12624
04086b45
PA
12625 The INSERT_MODE flag determines whether locations may not, may, or
12626 shall be inserted now. See 'enum ugll_insert_mode' for more
12627 info. */
b60e7edf 12628
0d381245 12629static void
44702360 12630update_global_location_list (enum ugll_insert_mode insert_mode)
0d381245 12631{
74960c60 12632 struct breakpoint *b;
876fa593 12633 struct bp_location **locp, *loc;
f7545552 12634 struct cleanup *cleanups;
b775012e
LM
12635 /* Last breakpoint location address that was marked for update. */
12636 CORE_ADDR last_addr = 0;
12637 /* Last breakpoint location program space that was marked for update. */
12638 int last_pspace_num = -1;
f7545552 12639
2d134ed3
PA
12640 /* Used in the duplicates detection below. When iterating over all
12641 bp_locations, points to the first bp_location of a given address.
12642 Breakpoints and watchpoints of different types are never
12643 duplicates of each other. Keep one pointer for each type of
12644 breakpoint/watchpoint, so we only need to loop over all locations
12645 once. */
12646 struct bp_location *bp_loc_first; /* breakpoint */
12647 struct bp_location *wp_loc_first; /* hardware watchpoint */
12648 struct bp_location *awp_loc_first; /* access watchpoint */
12649 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 12650
4a64f543
MS
12651 /* Saved former bp_location array which we compare against the newly
12652 built bp_location from the current state of ALL_BREAKPOINTS. */
876fa593
JK
12653 struct bp_location **old_location, **old_locp;
12654 unsigned old_location_count;
12655
12656 old_location = bp_location;
12657 old_location_count = bp_location_count;
12658 bp_location = NULL;
12659 bp_location_count = 0;
12660 cleanups = make_cleanup (xfree, old_location);
0d381245 12661
74960c60 12662 ALL_BREAKPOINTS (b)
876fa593
JK
12663 for (loc = b->loc; loc; loc = loc->next)
12664 bp_location_count++;
12665
12666 bp_location = xmalloc (sizeof (*bp_location) * bp_location_count);
12667 locp = bp_location;
12668 ALL_BREAKPOINTS (b)
12669 for (loc = b->loc; loc; loc = loc->next)
12670 *locp++ = loc;
12671 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 12672 bp_location_compare);
876fa593
JK
12673
12674 bp_location_target_extensions_update ();
74960c60 12675
4a64f543
MS
12676 /* Identify bp_location instances that are no longer present in the
12677 new list, and therefore should be freed. Note that it's not
12678 necessary that those locations should be removed from inferior --
12679 if there's another location at the same address (previously
12680 marked as duplicate), we don't need to remove/insert the
12681 location.
876fa593 12682
4a64f543
MS
12683 LOCP is kept in sync with OLD_LOCP, each pointing to the current
12684 and former bp_location array state respectively. */
876fa593
JK
12685
12686 locp = bp_location;
12687 for (old_locp = old_location; old_locp < old_location + old_location_count;
12688 old_locp++)
74960c60 12689 {
876fa593 12690 struct bp_location *old_loc = *old_locp;
c7d46a38 12691 struct bp_location **loc2p;
876fa593 12692
e5dd4106 12693 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 12694 not, we have to free it. */
c7d46a38 12695 int found_object = 0;
20874c92
VP
12696 /* Tells if the location should remain inserted in the target. */
12697 int keep_in_target = 0;
12698 int removed = 0;
876fa593 12699
4a64f543
MS
12700 /* Skip LOCP entries which will definitely never be needed.
12701 Stop either at or being the one matching OLD_LOC. */
876fa593 12702 while (locp < bp_location + bp_location_count
c7d46a38 12703 && (*locp)->address < old_loc->address)
876fa593 12704 locp++;
c7d46a38
PA
12705
12706 for (loc2p = locp;
12707 (loc2p < bp_location + bp_location_count
12708 && (*loc2p)->address == old_loc->address);
12709 loc2p++)
12710 {
b775012e
LM
12711 /* Check if this is a new/duplicated location or a duplicated
12712 location that had its condition modified. If so, we want to send
12713 its condition to the target if evaluation of conditions is taking
12714 place there. */
12715 if ((*loc2p)->condition_changed == condition_modified
12716 && (last_addr != old_loc->address
12717 || last_pspace_num != old_loc->pspace->num))
c7d46a38 12718 {
b775012e
LM
12719 force_breakpoint_reinsertion (*loc2p);
12720 last_pspace_num = old_loc->pspace->num;
c7d46a38 12721 }
b775012e
LM
12722
12723 if (*loc2p == old_loc)
12724 found_object = 1;
c7d46a38 12725 }
74960c60 12726
b775012e
LM
12727 /* We have already handled this address, update it so that we don't
12728 have to go through updates again. */
12729 last_addr = old_loc->address;
12730
12731 /* Target-side condition evaluation: Handle deleted locations. */
12732 if (!found_object)
12733 force_breakpoint_reinsertion (old_loc);
12734
4a64f543
MS
12735 /* If this location is no longer present, and inserted, look if
12736 there's maybe a new location at the same address. If so,
12737 mark that one inserted, and don't remove this one. This is
12738 needed so that we don't have a time window where a breakpoint
12739 at certain location is not inserted. */
74960c60 12740
876fa593 12741 if (old_loc->inserted)
0d381245 12742 {
4a64f543
MS
12743 /* If the location is inserted now, we might have to remove
12744 it. */
74960c60 12745
876fa593 12746 if (found_object && should_be_inserted (old_loc))
74960c60 12747 {
4a64f543
MS
12748 /* The location is still present in the location list,
12749 and still should be inserted. Don't do anything. */
20874c92 12750 keep_in_target = 1;
74960c60
VP
12751 }
12752 else
12753 {
b775012e
LM
12754 /* This location still exists, but it won't be kept in the
12755 target since it may have been disabled. We proceed to
12756 remove its target-side condition. */
12757
4a64f543
MS
12758 /* The location is either no longer present, or got
12759 disabled. See if there's another location at the
12760 same address, in which case we don't need to remove
12761 this one from the target. */
876fa593 12762
2bdf28a0 12763 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
12764 if (breakpoint_address_is_meaningful (old_loc->owner))
12765 {
876fa593 12766 for (loc2p = locp;
c7d46a38
PA
12767 (loc2p < bp_location + bp_location_count
12768 && (*loc2p)->address == old_loc->address);
876fa593
JK
12769 loc2p++)
12770 {
12771 struct bp_location *loc2 = *loc2p;
12772
2d134ed3 12773 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 12774 {
85d721b8
PA
12775 /* Read watchpoint locations are switched to
12776 access watchpoints, if the former are not
12777 supported, but the latter are. */
12778 if (is_hardware_watchpoint (old_loc->owner))
12779 {
12780 gdb_assert (is_hardware_watchpoint (loc2->owner));
12781 loc2->watchpoint_type = old_loc->watchpoint_type;
12782 }
12783
934709f0
PW
12784 /* loc2 is a duplicated location. We need to check
12785 if it should be inserted in case it will be
12786 unduplicated. */
12787 if (loc2 != old_loc
12788 && unduplicated_should_be_inserted (loc2))
c7d46a38 12789 {
934709f0 12790 swap_insertion (old_loc, loc2);
c7d46a38
PA
12791 keep_in_target = 1;
12792 break;
12793 }
876fa593
JK
12794 }
12795 }
12796 }
74960c60
VP
12797 }
12798
20874c92
VP
12799 if (!keep_in_target)
12800 {
876fa593 12801 if (remove_breakpoint (old_loc, mark_uninserted))
20874c92 12802 {
4a64f543
MS
12803 /* This is just about all we can do. We could keep
12804 this location on the global list, and try to
12805 remove it next time, but there's no particular
12806 reason why we will succeed next time.
20874c92 12807
4a64f543
MS
12808 Note that at this point, old_loc->owner is still
12809 valid, as delete_breakpoint frees the breakpoint
12810 only after calling us. */
3e43a32a
MS
12811 printf_filtered (_("warning: Error removing "
12812 "breakpoint %d\n"),
876fa593 12813 old_loc->owner->number);
20874c92
VP
12814 }
12815 removed = 1;
12816 }
0d381245 12817 }
74960c60
VP
12818
12819 if (!found_object)
1c5cfe86 12820 {
db82e815
PA
12821 if (removed && non_stop
12822 && breakpoint_address_is_meaningful (old_loc->owner)
12823 && !is_hardware_watchpoint (old_loc->owner))
20874c92 12824 {
db82e815
PA
12825 /* This location was removed from the target. In
12826 non-stop mode, a race condition is possible where
12827 we've removed a breakpoint, but stop events for that
12828 breakpoint are already queued and will arrive later.
12829 We apply an heuristic to be able to distinguish such
12830 SIGTRAPs from other random SIGTRAPs: we keep this
12831 breakpoint location for a bit, and will retire it
12832 after we see some number of events. The theory here
12833 is that reporting of events should, "on the average",
12834 be fair, so after a while we'll see events from all
12835 threads that have anything of interest, and no longer
12836 need to keep this breakpoint location around. We
12837 don't hold locations forever so to reduce chances of
12838 mistaking a non-breakpoint SIGTRAP for a breakpoint
12839 SIGTRAP.
12840
12841 The heuristic failing can be disastrous on
12842 decr_pc_after_break targets.
12843
12844 On decr_pc_after_break targets, like e.g., x86-linux,
12845 if we fail to recognize a late breakpoint SIGTRAP,
12846 because events_till_retirement has reached 0 too
12847 soon, we'll fail to do the PC adjustment, and report
12848 a random SIGTRAP to the user. When the user resumes
12849 the inferior, it will most likely immediately crash
2dec564e 12850 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
12851 corrupted, because of being resumed e.g., in the
12852 middle of a multi-byte instruction, or skipped a
12853 one-byte instruction. This was actually seen happen
12854 on native x86-linux, and should be less rare on
12855 targets that do not support new thread events, like
12856 remote, due to the heuristic depending on
12857 thread_count.
12858
12859 Mistaking a random SIGTRAP for a breakpoint trap
12860 causes similar symptoms (PC adjustment applied when
12861 it shouldn't), but then again, playing with SIGTRAPs
12862 behind the debugger's back is asking for trouble.
12863
12864 Since hardware watchpoint traps are always
12865 distinguishable from other traps, so we don't need to
12866 apply keep hardware watchpoint moribund locations
12867 around. We simply always ignore hardware watchpoint
12868 traps we can no longer explain. */
12869
876fa593
JK
12870 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12871 old_loc->owner = NULL;
20874c92 12872
876fa593 12873 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
12874 }
12875 else
f431efe5
PA
12876 {
12877 old_loc->owner = NULL;
12878 decref_bp_location (&old_loc);
12879 }
20874c92 12880 }
74960c60 12881 }
1c5cfe86 12882
348d480f
PA
12883 /* Rescan breakpoints at the same address and section, marking the
12884 first one as "first" and any others as "duplicates". This is so
12885 that the bpt instruction is only inserted once. If we have a
12886 permanent breakpoint at the same place as BPT, make that one the
12887 official one, and the rest as duplicates. Permanent breakpoints
12888 are sorted first for the same address.
12889
12890 Do the same for hardware watchpoints, but also considering the
12891 watchpoint's type (regular/access/read) and length. */
12892
12893 bp_loc_first = NULL;
12894 wp_loc_first = NULL;
12895 awp_loc_first = NULL;
12896 rwp_loc_first = NULL;
12897 ALL_BP_LOCATIONS (loc, locp)
12898 {
12899 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12900 non-NULL. */
348d480f 12901 struct bp_location **loc_first_p;
d3fbdd86 12902 b = loc->owner;
348d480f 12903
6f380991 12904 if (!unduplicated_should_be_inserted (loc)
348d480f 12905 || !breakpoint_address_is_meaningful (b)
1e4d1764
YQ
12906 /* Don't detect duplicate for tracepoint locations because they are
12907 never duplicated. See the comments in field `duplicate' of
12908 `struct bp_location'. */
348d480f 12909 || is_tracepoint (b))
b775012e
LM
12910 {
12911 /* Clear the condition modification flag. */
12912 loc->condition_changed = condition_unchanged;
12913 continue;
12914 }
348d480f
PA
12915
12916 /* Permanent breakpoint should always be inserted. */
12917 if (b->enable_state == bp_permanent && ! loc->inserted)
12918 internal_error (__FILE__, __LINE__,
12919 _("allegedly permanent breakpoint is not "
12920 "actually inserted"));
12921
12922 if (b->type == bp_hardware_watchpoint)
12923 loc_first_p = &wp_loc_first;
12924 else if (b->type == bp_read_watchpoint)
12925 loc_first_p = &rwp_loc_first;
12926 else if (b->type == bp_access_watchpoint)
12927 loc_first_p = &awp_loc_first;
12928 else
12929 loc_first_p = &bp_loc_first;
12930
12931 if (*loc_first_p == NULL
12932 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12933 || !breakpoint_locations_match (loc, *loc_first_p))
12934 {
12935 *loc_first_p = loc;
12936 loc->duplicate = 0;
b775012e
LM
12937
12938 if (is_breakpoint (loc->owner) && loc->condition_changed)
12939 {
12940 loc->needs_update = 1;
12941 /* Clear the condition modification flag. */
12942 loc->condition_changed = condition_unchanged;
12943 }
348d480f
PA
12944 continue;
12945 }
12946
934709f0
PW
12947
12948 /* This and the above ensure the invariant that the first location
12949 is not duplicated, and is the inserted one.
12950 All following are marked as duplicated, and are not inserted. */
12951 if (loc->inserted)
12952 swap_insertion (loc, *loc_first_p);
348d480f
PA
12953 loc->duplicate = 1;
12954
b775012e
LM
12955 /* Clear the condition modification flag. */
12956 loc->condition_changed = condition_unchanged;
12957
348d480f
PA
12958 if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted
12959 && b->enable_state != bp_permanent)
12960 internal_error (__FILE__, __LINE__,
12961 _("another breakpoint was inserted on top of "
12962 "a permanent breakpoint"));
12963 }
12964
a25a5a45 12965 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
b775012e 12966 {
04086b45 12967 if (insert_mode != UGLL_DONT_INSERT)
b775012e
LM
12968 insert_breakpoint_locations ();
12969 else
12970 {
44702360
PA
12971 /* Even though the caller told us to not insert new
12972 locations, we may still need to update conditions on the
12973 target's side of breakpoints that were already inserted
12974 if the target is evaluating breakpoint conditions. We
b775012e
LM
12975 only update conditions for locations that are marked
12976 "needs_update". */
12977 update_inserted_breakpoint_locations ();
12978 }
12979 }
348d480f 12980
04086b45 12981 if (insert_mode != UGLL_DONT_INSERT)
1e4d1764
YQ
12982 download_tracepoint_locations ();
12983
348d480f
PA
12984 do_cleanups (cleanups);
12985}
12986
12987void
12988breakpoint_retire_moribund (void)
12989{
12990 struct bp_location *loc;
12991 int ix;
12992
12993 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12994 if (--(loc->events_till_retirement) == 0)
12995 {
12996 decref_bp_location (&loc);
12997 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12998 --ix;
12999 }
13000}
13001
13002static void
44702360 13003update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
348d480f 13004{
bfd189b1 13005 volatile struct gdb_exception e;
348d480f
PA
13006
13007 TRY_CATCH (e, RETURN_MASK_ERROR)
44702360 13008 update_global_location_list (insert_mode);
348d480f
PA
13009}
13010
13011/* Clear BKP from a BPS. */
13012
13013static void
13014bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
13015{
13016 bpstat bs;
13017
13018 for (bs = bps; bs; bs = bs->next)
13019 if (bs->breakpoint_at == bpt)
13020 {
13021 bs->breakpoint_at = NULL;
13022 bs->old_val = NULL;
13023 /* bs->commands will be freed later. */
13024 }
13025}
13026
13027/* Callback for iterate_over_threads. */
13028static int
13029bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
13030{
13031 struct breakpoint *bpt = data;
13032
13033 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
13034 return 0;
13035}
13036
13037/* Helper for breakpoint and tracepoint breakpoint_ops->mention
13038 callbacks. */
13039
13040static void
13041say_where (struct breakpoint *b)
13042{
13043 struct value_print_options opts;
13044
13045 get_user_print_options (&opts);
13046
13047 /* i18n: cagney/2005-02-11: Below needs to be merged into a
13048 single string. */
13049 if (b->loc == NULL)
13050 {
13051 printf_filtered (_(" (%s) pending."), b->addr_string);
13052 }
13053 else
13054 {
2f202fde 13055 if (opts.addressprint || b->loc->symtab == NULL)
348d480f
PA
13056 {
13057 printf_filtered (" at ");
13058 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
13059 gdb_stdout);
13060 }
2f202fde 13061 if (b->loc->symtab != NULL)
f8eba3c6
TT
13062 {
13063 /* If there is a single location, we can print the location
13064 more nicely. */
13065 if (b->loc->next == NULL)
13066 printf_filtered (": file %s, line %d.",
05cba821
JK
13067 symtab_to_filename_for_display (b->loc->symtab),
13068 b->loc->line_number);
f8eba3c6
TT
13069 else
13070 /* This is not ideal, but each location may have a
13071 different file name, and this at least reflects the
13072 real situation somewhat. */
13073 printf_filtered (": %s.", b->addr_string);
13074 }
348d480f
PA
13075
13076 if (b->loc->next)
13077 {
13078 struct bp_location *loc = b->loc;
13079 int n = 0;
13080 for (; loc; loc = loc->next)
13081 ++n;
13082 printf_filtered (" (%d locations)", n);
13083 }
13084 }
13085}
13086
348d480f
PA
13087/* Default bp_location_ops methods. */
13088
13089static void
13090bp_location_dtor (struct bp_location *self)
13091{
13092 xfree (self->cond);
b775012e
LM
13093 if (self->cond_bytecode)
13094 free_agent_expr (self->cond_bytecode);
348d480f 13095 xfree (self->function_name);
8b4f3082
PA
13096
13097 VEC_free (agent_expr_p, self->target_info.conditions);
13098 VEC_free (agent_expr_p, self->target_info.tcommands);
348d480f
PA
13099}
13100
13101static const struct bp_location_ops bp_location_ops =
13102{
13103 bp_location_dtor
13104};
13105
2060206e
PA
13106/* Default breakpoint_ops methods all breakpoint_ops ultimately
13107 inherit from. */
348d480f 13108
2060206e
PA
13109static void
13110base_breakpoint_dtor (struct breakpoint *self)
348d480f
PA
13111{
13112 decref_counted_command_line (&self->commands);
13113 xfree (self->cond_string);
fb81d016 13114 xfree (self->extra_string);
348d480f 13115 xfree (self->addr_string);
f8eba3c6 13116 xfree (self->filter);
348d480f 13117 xfree (self->addr_string_range_end);
348d480f
PA
13118}
13119
2060206e
PA
13120static struct bp_location *
13121base_breakpoint_allocate_location (struct breakpoint *self)
348d480f
PA
13122{
13123 struct bp_location *loc;
13124
13125 loc = XNEW (struct bp_location);
13126 init_bp_location (loc, &bp_location_ops, self);
13127 return loc;
13128}
13129
2060206e
PA
13130static void
13131base_breakpoint_re_set (struct breakpoint *b)
13132{
13133 /* Nothing to re-set. */
13134}
13135
13136#define internal_error_pure_virtual_called() \
13137 gdb_assert_not_reached ("pure virtual function called")
13138
13139static int
13140base_breakpoint_insert_location (struct bp_location *bl)
13141{
13142 internal_error_pure_virtual_called ();
13143}
13144
13145static int
13146base_breakpoint_remove_location (struct bp_location *bl)
13147{
13148 internal_error_pure_virtual_called ();
13149}
13150
13151static int
13152base_breakpoint_breakpoint_hit (const struct bp_location *bl,
13153 struct address_space *aspace,
09ac7c10
TT
13154 CORE_ADDR bp_addr,
13155 const struct target_waitstatus *ws)
2060206e
PA
13156{
13157 internal_error_pure_virtual_called ();
13158}
13159
13160static void
13161base_breakpoint_check_status (bpstat bs)
13162{
13163 /* Always stop. */
13164}
13165
13166/* A "works_in_software_mode" breakpoint_ops method that just internal
13167 errors. */
13168
13169static int
13170base_breakpoint_works_in_software_mode (const struct breakpoint *b)
13171{
13172 internal_error_pure_virtual_called ();
13173}
13174
13175/* A "resources_needed" breakpoint_ops method that just internal
13176 errors. */
13177
13178static int
13179base_breakpoint_resources_needed (const struct bp_location *bl)
13180{
13181 internal_error_pure_virtual_called ();
13182}
13183
13184static enum print_stop_action
13185base_breakpoint_print_it (bpstat bs)
13186{
13187 internal_error_pure_virtual_called ();
13188}
13189
13190static void
13191base_breakpoint_print_one_detail (const struct breakpoint *self,
13192 struct ui_out *uiout)
13193{
13194 /* nothing */
13195}
13196
13197static void
13198base_breakpoint_print_mention (struct breakpoint *b)
13199{
13200 internal_error_pure_virtual_called ();
13201}
13202
13203static void
13204base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
13205{
13206 internal_error_pure_virtual_called ();
13207}
13208
983af33b
SDJ
13209static void
13210base_breakpoint_create_sals_from_address (char **arg,
13211 struct linespec_result *canonical,
13212 enum bptype type_wanted,
13213 char *addr_start,
13214 char **copy_arg)
13215{
13216 internal_error_pure_virtual_called ();
13217}
13218
13219static void
13220base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13221 struct linespec_result *c,
983af33b 13222 char *cond_string,
e7e0cddf 13223 char *extra_string,
983af33b
SDJ
13224 enum bptype type_wanted,
13225 enum bpdisp disposition,
13226 int thread,
13227 int task, int ignore_count,
13228 const struct breakpoint_ops *o,
13229 int from_tty, int enabled,
44f238bb 13230 int internal, unsigned flags)
983af33b
SDJ
13231{
13232 internal_error_pure_virtual_called ();
13233}
13234
13235static void
13236base_breakpoint_decode_linespec (struct breakpoint *b, char **s,
13237 struct symtabs_and_lines *sals)
13238{
13239 internal_error_pure_virtual_called ();
13240}
13241
ab04a2af
TT
13242/* The default 'explains_signal' method. */
13243
47591c29 13244static int
427cd150 13245base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 13246{
47591c29 13247 return 1;
ab04a2af
TT
13248}
13249
9d6e6e84
HZ
13250/* The default "after_condition_true" method. */
13251
13252static void
13253base_breakpoint_after_condition_true (struct bpstats *bs)
13254{
13255 /* Nothing to do. */
13256}
13257
ab04a2af 13258struct breakpoint_ops base_breakpoint_ops =
2060206e
PA
13259{
13260 base_breakpoint_dtor,
13261 base_breakpoint_allocate_location,
13262 base_breakpoint_re_set,
13263 base_breakpoint_insert_location,
13264 base_breakpoint_remove_location,
13265 base_breakpoint_breakpoint_hit,
13266 base_breakpoint_check_status,
13267 base_breakpoint_resources_needed,
13268 base_breakpoint_works_in_software_mode,
13269 base_breakpoint_print_it,
13270 NULL,
13271 base_breakpoint_print_one_detail,
13272 base_breakpoint_print_mention,
983af33b
SDJ
13273 base_breakpoint_print_recreate,
13274 base_breakpoint_create_sals_from_address,
13275 base_breakpoint_create_breakpoints_sal,
13276 base_breakpoint_decode_linespec,
9d6e6e84
HZ
13277 base_breakpoint_explains_signal,
13278 base_breakpoint_after_condition_true,
2060206e
PA
13279};
13280
13281/* Default breakpoint_ops methods. */
13282
13283static void
348d480f
PA
13284bkpt_re_set (struct breakpoint *b)
13285{
06edf0c0
PA
13286 /* FIXME: is this still reachable? */
13287 if (b->addr_string == NULL)
13288 {
13289 /* Anything without a string can't be re-set. */
348d480f 13290 delete_breakpoint (b);
06edf0c0 13291 return;
348d480f 13292 }
06edf0c0
PA
13293
13294 breakpoint_re_set_default (b);
348d480f
PA
13295}
13296
ef370185
JB
13297/* Copy SRC's shadow buffer and whatever else we'd set if we actually
13298 inserted DEST, so we can remove it later, in case SRC is removed
13299 first. */
13300
13301static void
13302bp_target_info_copy_insertion_state (struct bp_target_info *dest,
13303 const struct bp_target_info *src)
13304{
13305 dest->shadow_len = src->shadow_len;
13306 memcpy (dest->shadow_contents, src->shadow_contents, src->shadow_len);
13307 dest->placed_size = src->placed_size;
13308}
13309
2060206e 13310static int
348d480f
PA
13311bkpt_insert_location (struct bp_location *bl)
13312{
13313 if (bl->loc_type == bp_loc_hardware_breakpoint)
13314 return target_insert_hw_breakpoint (bl->gdbarch,
13315 &bl->target_info);
13316 else
ef370185
JB
13317 {
13318 struct bp_target_info *bp_tgt = &bl->target_info;
13319 int ret;
13320 int sss_slot;
13321
13322 /* There is no need to insert a breakpoint if an unconditional
13323 raw/sss breakpoint is already inserted at that location. */
13324 sss_slot = find_single_step_breakpoint (bp_tgt->placed_address_space,
13325 bp_tgt->placed_address);
13326 if (sss_slot >= 0)
13327 {
13328 struct bp_target_info *sss_bp_tgt = single_step_breakpoints[sss_slot];
13329
13330 bp_target_info_copy_insertion_state (bp_tgt, sss_bp_tgt);
13331 return 0;
13332 }
13333
13334 return target_insert_breakpoint (bl->gdbarch, bp_tgt);
13335 }
348d480f
PA
13336}
13337
2060206e 13338static int
348d480f
PA
13339bkpt_remove_location (struct bp_location *bl)
13340{
13341 if (bl->loc_type == bp_loc_hardware_breakpoint)
13342 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
13343 else
ef370185
JB
13344 {
13345 struct bp_target_info *bp_tgt = &bl->target_info;
13346 struct address_space *aspace = bp_tgt->placed_address_space;
13347 CORE_ADDR address = bp_tgt->placed_address;
13348
13349 /* Only remove the breakpoint if there is no raw/sss breakpoint
13350 still inserted at this location. Otherwise, we would be
13351 effectively disabling the raw/sss breakpoint. */
13352 if (single_step_breakpoint_inserted_here_p (aspace, address))
13353 return 0;
13354
13355 return target_remove_breakpoint (bl->gdbarch, bp_tgt);
13356 }
348d480f
PA
13357}
13358
2060206e 13359static int
348d480f 13360bkpt_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
13361 struct address_space *aspace, CORE_ADDR bp_addr,
13362 const struct target_waitstatus *ws)
348d480f 13363{
09ac7c10 13364 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 13365 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
13366 return 0;
13367
348d480f
PA
13368 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
13369 aspace, bp_addr))
13370 return 0;
13371
13372 if (overlay_debugging /* unmapped overlay section */
13373 && section_is_overlay (bl->section)
13374 && !section_is_mapped (bl->section))
13375 return 0;
13376
13377 return 1;
13378}
13379
cd1608cc
PA
13380static int
13381dprintf_breakpoint_hit (const struct bp_location *bl,
13382 struct address_space *aspace, CORE_ADDR bp_addr,
13383 const struct target_waitstatus *ws)
13384{
13385 if (dprintf_style == dprintf_style_agent
13386 && target_can_run_breakpoint_commands ())
13387 {
13388 /* An agent-style dprintf never causes a stop. If we see a trap
13389 for this address it must be for a breakpoint that happens to
13390 be set at the same address. */
13391 return 0;
13392 }
13393
13394 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
13395}
13396
2060206e 13397static int
348d480f
PA
13398bkpt_resources_needed (const struct bp_location *bl)
13399{
13400 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
13401
13402 return 1;
13403}
13404
2060206e 13405static enum print_stop_action
348d480f
PA
13406bkpt_print_it (bpstat bs)
13407{
348d480f
PA
13408 struct breakpoint *b;
13409 const struct bp_location *bl;
001c8c33 13410 int bp_temp;
79a45e25 13411 struct ui_out *uiout = current_uiout;
348d480f
PA
13412
13413 gdb_assert (bs->bp_location_at != NULL);
13414
13415 bl = bs->bp_location_at;
13416 b = bs->breakpoint_at;
13417
001c8c33
PA
13418 bp_temp = b->disposition == disp_del;
13419 if (bl->address != bl->requested_address)
13420 breakpoint_adjustment_warning (bl->requested_address,
13421 bl->address,
13422 b->number, 1);
13423 annotate_breakpoint (b->number);
13424 if (bp_temp)
13425 ui_out_text (uiout, "\nTemporary breakpoint ");
13426 else
13427 ui_out_text (uiout, "\nBreakpoint ");
13428 if (ui_out_is_mi_like_p (uiout))
348d480f 13429 {
001c8c33
PA
13430 ui_out_field_string (uiout, "reason",
13431 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
13432 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
06edf0c0 13433 }
001c8c33
PA
13434 ui_out_field_int (uiout, "bkptno", b->number);
13435 ui_out_text (uiout, ", ");
06edf0c0 13436
001c8c33 13437 return PRINT_SRC_AND_LOC;
06edf0c0
PA
13438}
13439
2060206e 13440static void
06edf0c0
PA
13441bkpt_print_mention (struct breakpoint *b)
13442{
79a45e25 13443 if (ui_out_is_mi_like_p (current_uiout))
06edf0c0
PA
13444 return;
13445
13446 switch (b->type)
13447 {
13448 case bp_breakpoint:
13449 case bp_gnu_ifunc_resolver:
13450 if (b->disposition == disp_del)
13451 printf_filtered (_("Temporary breakpoint"));
13452 else
13453 printf_filtered (_("Breakpoint"));
13454 printf_filtered (_(" %d"), b->number);
13455 if (b->type == bp_gnu_ifunc_resolver)
13456 printf_filtered (_(" at gnu-indirect-function resolver"));
13457 break;
13458 case bp_hardware_breakpoint:
13459 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
13460 break;
e7e0cddf
SS
13461 case bp_dprintf:
13462 printf_filtered (_("Dprintf %d"), b->number);
13463 break;
06edf0c0
PA
13464 }
13465
13466 say_where (b);
13467}
13468
2060206e 13469static void
06edf0c0
PA
13470bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13471{
13472 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
13473 fprintf_unfiltered (fp, "tbreak");
13474 else if (tp->type == bp_breakpoint)
13475 fprintf_unfiltered (fp, "break");
13476 else if (tp->type == bp_hardware_breakpoint
13477 && tp->disposition == disp_del)
13478 fprintf_unfiltered (fp, "thbreak");
13479 else if (tp->type == bp_hardware_breakpoint)
13480 fprintf_unfiltered (fp, "hbreak");
13481 else
13482 internal_error (__FILE__, __LINE__,
13483 _("unhandled breakpoint type %d"), (int) tp->type);
13484
2060206e 13485 fprintf_unfiltered (fp, " %s", tp->addr_string);
dd11a36c 13486 print_recreate_thread (tp, fp);
06edf0c0
PA
13487}
13488
983af33b
SDJ
13489static void
13490bkpt_create_sals_from_address (char **arg,
13491 struct linespec_result *canonical,
13492 enum bptype type_wanted,
13493 char *addr_start, char **copy_arg)
13494{
13495 create_sals_from_address_default (arg, canonical, type_wanted,
13496 addr_start, copy_arg);
13497}
13498
13499static void
13500bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
13501 struct linespec_result *canonical,
983af33b 13502 char *cond_string,
e7e0cddf 13503 char *extra_string,
983af33b
SDJ
13504 enum bptype type_wanted,
13505 enum bpdisp disposition,
13506 int thread,
13507 int task, int ignore_count,
13508 const struct breakpoint_ops *ops,
13509 int from_tty, int enabled,
44f238bb 13510 int internal, unsigned flags)
983af33b 13511{
023fa29b 13512 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13513 cond_string, extra_string,
13514 type_wanted,
983af33b
SDJ
13515 disposition, thread, task,
13516 ignore_count, ops, from_tty,
44f238bb 13517 enabled, internal, flags);
983af33b
SDJ
13518}
13519
13520static void
13521bkpt_decode_linespec (struct breakpoint *b, char **s,
13522 struct symtabs_and_lines *sals)
13523{
13524 decode_linespec_default (b, s, sals);
13525}
13526
06edf0c0
PA
13527/* Virtual table for internal breakpoints. */
13528
13529static void
13530internal_bkpt_re_set (struct breakpoint *b)
13531{
13532 switch (b->type)
13533 {
13534 /* Delete overlay event and longjmp master breakpoints; they
13535 will be reset later by breakpoint_re_set. */
13536 case bp_overlay_event:
13537 case bp_longjmp_master:
13538 case bp_std_terminate_master:
13539 case bp_exception_master:
13540 delete_breakpoint (b);
13541 break;
13542
13543 /* This breakpoint is special, it's set up when the inferior
13544 starts and we really don't want to touch it. */
13545 case bp_shlib_event:
13546
13547 /* Like bp_shlib_event, this breakpoint type is special. Once
13548 it is set up, we do not want to touch it. */
13549 case bp_thread_event:
13550 break;
13551 }
13552}
13553
13554static void
13555internal_bkpt_check_status (bpstat bs)
13556{
a9b3a50f
PA
13557 if (bs->breakpoint_at->type == bp_shlib_event)
13558 {
13559 /* If requested, stop when the dynamic linker notifies GDB of
13560 events. This allows the user to get control and place
13561 breakpoints in initializer routines for dynamically loaded
13562 objects (among other things). */
13563 bs->stop = stop_on_solib_events;
13564 bs->print = stop_on_solib_events;
13565 }
13566 else
13567 bs->stop = 0;
06edf0c0
PA
13568}
13569
13570static enum print_stop_action
13571internal_bkpt_print_it (bpstat bs)
13572{
06edf0c0 13573 struct breakpoint *b;
06edf0c0 13574
06edf0c0
PA
13575 b = bs->breakpoint_at;
13576
06edf0c0
PA
13577 switch (b->type)
13578 {
348d480f
PA
13579 case bp_shlib_event:
13580 /* Did we stop because the user set the stop_on_solib_events
13581 variable? (If so, we report this as a generic, "Stopped due
13582 to shlib event" message.) */
edcc5120 13583 print_solib_event (0);
348d480f
PA
13584 break;
13585
13586 case bp_thread_event:
13587 /* Not sure how we will get here.
13588 GDB should not stop for these breakpoints. */
13589 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13590 break;
13591
13592 case bp_overlay_event:
13593 /* By analogy with the thread event, GDB should not stop for these. */
13594 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13595 break;
13596
13597 case bp_longjmp_master:
13598 /* These should never be enabled. */
13599 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
13600 break;
13601
13602 case bp_std_terminate_master:
13603 /* These should never be enabled. */
13604 printf_filtered (_("std::terminate Master Breakpoint: "
13605 "gdb should not stop!\n"));
348d480f
PA
13606 break;
13607
13608 case bp_exception_master:
13609 /* These should never be enabled. */
13610 printf_filtered (_("Exception Master Breakpoint: "
13611 "gdb should not stop!\n"));
06edf0c0
PA
13612 break;
13613 }
13614
001c8c33 13615 return PRINT_NOTHING;
06edf0c0
PA
13616}
13617
13618static void
13619internal_bkpt_print_mention (struct breakpoint *b)
13620{
13621 /* Nothing to mention. These breakpoints are internal. */
13622}
13623
06edf0c0
PA
13624/* Virtual table for momentary breakpoints */
13625
13626static void
13627momentary_bkpt_re_set (struct breakpoint *b)
13628{
13629 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 13630 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
13631 Otherwise these should have been blown away via the cleanup chain
13632 or by breakpoint_init_inferior when we rerun the executable. */
13633}
13634
13635static void
13636momentary_bkpt_check_status (bpstat bs)
13637{
13638 /* Nothing. The point of these breakpoints is causing a stop. */
13639}
13640
13641static enum print_stop_action
13642momentary_bkpt_print_it (bpstat bs)
13643{
79a45e25
PA
13644 struct ui_out *uiout = current_uiout;
13645
001c8c33 13646 if (ui_out_is_mi_like_p (uiout))
06edf0c0 13647 {
001c8c33 13648 struct breakpoint *b = bs->breakpoint_at;
348d480f 13649
001c8c33
PA
13650 switch (b->type)
13651 {
13652 case bp_finish:
13653 ui_out_field_string
13654 (uiout, "reason",
13655 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
13656 break;
348d480f 13657
001c8c33
PA
13658 case bp_until:
13659 ui_out_field_string
13660 (uiout, "reason",
13661 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
13662 break;
13663 }
348d480f
PA
13664 }
13665
001c8c33 13666 return PRINT_UNKNOWN;
348d480f
PA
13667}
13668
06edf0c0
PA
13669static void
13670momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 13671{
06edf0c0 13672 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
13673}
13674
e2e4d78b
JK
13675/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
13676
13677 It gets cleared already on the removal of the first one of such placed
13678 breakpoints. This is OK as they get all removed altogether. */
13679
13680static void
13681longjmp_bkpt_dtor (struct breakpoint *self)
13682{
13683 struct thread_info *tp = find_thread_id (self->thread);
13684
13685 if (tp)
13686 tp->initiating_frame = null_frame_id;
13687
13688 momentary_breakpoint_ops.dtor (self);
13689}
13690
55aa24fb
SDJ
13691/* Specific methods for probe breakpoints. */
13692
13693static int
13694bkpt_probe_insert_location (struct bp_location *bl)
13695{
13696 int v = bkpt_insert_location (bl);
13697
13698 if (v == 0)
13699 {
13700 /* The insertion was successful, now let's set the probe's semaphore
13701 if needed. */
729662a5
TT
13702 bl->probe.probe->pops->set_semaphore (bl->probe.probe,
13703 bl->probe.objfile,
13704 bl->gdbarch);
55aa24fb
SDJ
13705 }
13706
13707 return v;
13708}
13709
13710static int
13711bkpt_probe_remove_location (struct bp_location *bl)
13712{
13713 /* Let's clear the semaphore before removing the location. */
729662a5
TT
13714 bl->probe.probe->pops->clear_semaphore (bl->probe.probe,
13715 bl->probe.objfile,
13716 bl->gdbarch);
55aa24fb
SDJ
13717
13718 return bkpt_remove_location (bl);
13719}
13720
13721static void
13722bkpt_probe_create_sals_from_address (char **arg,
13723 struct linespec_result *canonical,
13724 enum bptype type_wanted,
13725 char *addr_start, char **copy_arg)
13726{
13727 struct linespec_sals lsal;
13728
13729 lsal.sals = parse_probes (arg, canonical);
13730
13731 *copy_arg = xstrdup (canonical->addr_string);
13732 lsal.canonical = xstrdup (*copy_arg);
13733
13734 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13735}
13736
13737static void
13738bkpt_probe_decode_linespec (struct breakpoint *b, char **s,
13739 struct symtabs_and_lines *sals)
13740{
13741 *sals = parse_probes (s, NULL);
13742 if (!sals->sals)
13743 error (_("probe not found"));
13744}
13745
348d480f 13746/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 13747
348d480f
PA
13748static void
13749tracepoint_re_set (struct breakpoint *b)
13750{
13751 breakpoint_re_set_default (b);
13752}
876fa593 13753
348d480f
PA
13754static int
13755tracepoint_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
13756 struct address_space *aspace, CORE_ADDR bp_addr,
13757 const struct target_waitstatus *ws)
348d480f
PA
13758{
13759 /* By definition, the inferior does not report stops at
13760 tracepoints. */
13761 return 0;
74960c60
VP
13762}
13763
13764static void
348d480f
PA
13765tracepoint_print_one_detail (const struct breakpoint *self,
13766 struct ui_out *uiout)
74960c60 13767{
d9b3f62e
PA
13768 struct tracepoint *tp = (struct tracepoint *) self;
13769 if (tp->static_trace_marker_id)
348d480f
PA
13770 {
13771 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 13772
348d480f
PA
13773 ui_out_text (uiout, "\tmarker id is ");
13774 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
d9b3f62e 13775 tp->static_trace_marker_id);
348d480f
PA
13776 ui_out_text (uiout, "\n");
13777 }
0d381245
VP
13778}
13779
a474d7c2 13780static void
348d480f 13781tracepoint_print_mention (struct breakpoint *b)
a474d7c2 13782{
79a45e25 13783 if (ui_out_is_mi_like_p (current_uiout))
348d480f 13784 return;
cc59ec59 13785
348d480f
PA
13786 switch (b->type)
13787 {
13788 case bp_tracepoint:
13789 printf_filtered (_("Tracepoint"));
13790 printf_filtered (_(" %d"), b->number);
13791 break;
13792 case bp_fast_tracepoint:
13793 printf_filtered (_("Fast tracepoint"));
13794 printf_filtered (_(" %d"), b->number);
13795 break;
13796 case bp_static_tracepoint:
13797 printf_filtered (_("Static tracepoint"));
13798 printf_filtered (_(" %d"), b->number);
13799 break;
13800 default:
13801 internal_error (__FILE__, __LINE__,
13802 _("unhandled tracepoint type %d"), (int) b->type);
13803 }
13804
13805 say_where (b);
a474d7c2
PA
13806}
13807
348d480f 13808static void
d9b3f62e 13809tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 13810{
d9b3f62e
PA
13811 struct tracepoint *tp = (struct tracepoint *) self;
13812
13813 if (self->type == bp_fast_tracepoint)
348d480f 13814 fprintf_unfiltered (fp, "ftrace");
d9b3f62e 13815 if (self->type == bp_static_tracepoint)
348d480f 13816 fprintf_unfiltered (fp, "strace");
d9b3f62e 13817 else if (self->type == bp_tracepoint)
348d480f
PA
13818 fprintf_unfiltered (fp, "trace");
13819 else
13820 internal_error (__FILE__, __LINE__,
d9b3f62e 13821 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 13822
d9b3f62e
PA
13823 fprintf_unfiltered (fp, " %s", self->addr_string);
13824 print_recreate_thread (self, fp);
13825
13826 if (tp->pass_count)
13827 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
13828}
13829
983af33b
SDJ
13830static void
13831tracepoint_create_sals_from_address (char **arg,
13832 struct linespec_result *canonical,
13833 enum bptype type_wanted,
13834 char *addr_start, char **copy_arg)
13835{
13836 create_sals_from_address_default (arg, canonical, type_wanted,
13837 addr_start, copy_arg);
13838}
13839
13840static void
13841tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13842 struct linespec_result *canonical,
983af33b 13843 char *cond_string,
e7e0cddf 13844 char *extra_string,
983af33b
SDJ
13845 enum bptype type_wanted,
13846 enum bpdisp disposition,
13847 int thread,
13848 int task, int ignore_count,
13849 const struct breakpoint_ops *ops,
13850 int from_tty, int enabled,
44f238bb 13851 int internal, unsigned flags)
983af33b 13852{
023fa29b 13853 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13854 cond_string, extra_string,
13855 type_wanted,
983af33b
SDJ
13856 disposition, thread, task,
13857 ignore_count, ops, from_tty,
44f238bb 13858 enabled, internal, flags);
983af33b
SDJ
13859}
13860
13861static void
13862tracepoint_decode_linespec (struct breakpoint *b, char **s,
13863 struct symtabs_and_lines *sals)
13864{
13865 decode_linespec_default (b, s, sals);
13866}
13867
2060206e 13868struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 13869
55aa24fb
SDJ
13870/* The breakpoint_ops structure to be use on tracepoints placed in a
13871 static probe. */
13872
13873static void
13874tracepoint_probe_create_sals_from_address (char **arg,
13875 struct linespec_result *canonical,
13876 enum bptype type_wanted,
13877 char *addr_start, char **copy_arg)
13878{
13879 /* We use the same method for breakpoint on probes. */
13880 bkpt_probe_create_sals_from_address (arg, canonical, type_wanted,
13881 addr_start, copy_arg);
13882}
13883
13884static void
13885tracepoint_probe_decode_linespec (struct breakpoint *b, char **s,
13886 struct symtabs_and_lines *sals)
13887{
13888 /* We use the same method for breakpoint on probes. */
13889 bkpt_probe_decode_linespec (b, s, sals);
13890}
13891
13892static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13893
5c2b4418
HZ
13894/* Dprintf breakpoint_ops methods. */
13895
13896static void
13897dprintf_re_set (struct breakpoint *b)
13898{
13899 breakpoint_re_set_default (b);
13900
13901 /* This breakpoint could have been pending, and be resolved now, and
13902 if so, we should now have the extra string. If we don't, the
13903 dprintf was malformed when created, but we couldn't tell because
13904 we can't extract the extra string until the location is
13905 resolved. */
13906 if (b->loc != NULL && b->extra_string == NULL)
13907 error (_("Format string required"));
13908
13909 /* 1 - connect to target 1, that can run breakpoint commands.
13910 2 - create a dprintf, which resolves fine.
13911 3 - disconnect from target 1
13912 4 - connect to target 2, that can NOT run breakpoint commands.
13913
13914 After steps #3/#4, you'll want the dprintf command list to
13915 be updated, because target 1 and 2 may well return different
13916 answers for target_can_run_breakpoint_commands().
13917 Given absence of finer grained resetting, we get to do
13918 it all the time. */
13919 if (b->extra_string != NULL)
13920 update_dprintf_command_list (b);
13921}
13922
2d9442cc
HZ
13923/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13924
13925static void
13926dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13927{
13928 fprintf_unfiltered (fp, "dprintf %s%s", tp->addr_string,
13929 tp->extra_string);
13930 print_recreate_thread (tp, fp);
13931}
13932
9d6e6e84
HZ
13933/* Implement the "after_condition_true" breakpoint_ops method for
13934 dprintf.
13935
13936 dprintf's are implemented with regular commands in their command
13937 list, but we run the commands here instead of before presenting the
13938 stop to the user, as dprintf's don't actually cause a stop. This
13939 also makes it so that the commands of multiple dprintfs at the same
13940 address are all handled. */
13941
13942static void
13943dprintf_after_condition_true (struct bpstats *bs)
13944{
13945 struct cleanup *old_chain;
13946 struct bpstats tmp_bs = { NULL };
13947 struct bpstats *tmp_bs_p = &tmp_bs;
13948
13949 /* dprintf's never cause a stop. This wasn't set in the
13950 check_status hook instead because that would make the dprintf's
13951 condition not be evaluated. */
13952 bs->stop = 0;
13953
13954 /* Run the command list here. Take ownership of it instead of
13955 copying. We never want these commands to run later in
13956 bpstat_do_actions, if a breakpoint that causes a stop happens to
13957 be set at same address as this dprintf, or even if running the
13958 commands here throws. */
13959 tmp_bs.commands = bs->commands;
13960 bs->commands = NULL;
13961 old_chain = make_cleanup_decref_counted_command_line (&tmp_bs.commands);
13962
13963 bpstat_do_actions_1 (&tmp_bs_p);
13964
13965 /* 'tmp_bs.commands' will usually be NULL by now, but
13966 bpstat_do_actions_1 may return early without processing the whole
13967 list. */
13968 do_cleanups (old_chain);
13969}
13970
983af33b
SDJ
13971/* The breakpoint_ops structure to be used on static tracepoints with
13972 markers (`-m'). */
13973
13974static void
13975strace_marker_create_sals_from_address (char **arg,
13976 struct linespec_result *canonical,
13977 enum bptype type_wanted,
13978 char *addr_start, char **copy_arg)
13979{
13980 struct linespec_sals lsal;
13981
13982 lsal.sals = decode_static_tracepoint_spec (arg);
13983
13984 *copy_arg = savestring (addr_start, *arg - addr_start);
13985
13986 canonical->addr_string = xstrdup (*copy_arg);
13987 lsal.canonical = xstrdup (*copy_arg);
13988 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13989}
13990
13991static void
13992strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13993 struct linespec_result *canonical,
983af33b 13994 char *cond_string,
e7e0cddf 13995 char *extra_string,
983af33b
SDJ
13996 enum bptype type_wanted,
13997 enum bpdisp disposition,
13998 int thread,
13999 int task, int ignore_count,
14000 const struct breakpoint_ops *ops,
14001 int from_tty, int enabled,
44f238bb 14002 int internal, unsigned flags)
983af33b
SDJ
14003{
14004 int i;
52d361e1
YQ
14005 struct linespec_sals *lsal = VEC_index (linespec_sals,
14006 canonical->sals, 0);
983af33b
SDJ
14007
14008 /* If the user is creating a static tracepoint by marker id
14009 (strace -m MARKER_ID), then store the sals index, so that
14010 breakpoint_re_set can try to match up which of the newly
14011 found markers corresponds to this one, and, don't try to
14012 expand multiple locations for each sal, given than SALS
14013 already should contain all sals for MARKER_ID. */
14014
14015 for (i = 0; i < lsal->sals.nelts; ++i)
14016 {
14017 struct symtabs_and_lines expanded;
14018 struct tracepoint *tp;
14019 struct cleanup *old_chain;
14020 char *addr_string;
14021
14022 expanded.nelts = 1;
14023 expanded.sals = &lsal->sals.sals[i];
14024
14025 addr_string = xstrdup (canonical->addr_string);
14026 old_chain = make_cleanup (xfree, addr_string);
14027
14028 tp = XCNEW (struct tracepoint);
14029 init_breakpoint_sal (&tp->base, gdbarch, expanded,
14030 addr_string, NULL,
e7e0cddf
SS
14031 cond_string, extra_string,
14032 type_wanted, disposition,
983af33b 14033 thread, task, ignore_count, ops,
44f238bb 14034 from_tty, enabled, internal, flags,
983af33b
SDJ
14035 canonical->special_display);
14036 /* Given that its possible to have multiple markers with
14037 the same string id, if the user is creating a static
14038 tracepoint by marker id ("strace -m MARKER_ID"), then
14039 store the sals index, so that breakpoint_re_set can
14040 try to match up which of the newly found markers
14041 corresponds to this one */
14042 tp->static_trace_marker_id_idx = i;
14043
14044 install_breakpoint (internal, &tp->base, 0);
14045
14046 discard_cleanups (old_chain);
14047 }
14048}
14049
14050static void
14051strace_marker_decode_linespec (struct breakpoint *b, char **s,
14052 struct symtabs_and_lines *sals)
14053{
14054 struct tracepoint *tp = (struct tracepoint *) b;
14055
14056 *sals = decode_static_tracepoint_spec (s);
14057 if (sals->nelts > tp->static_trace_marker_id_idx)
14058 {
14059 sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx];
14060 sals->nelts = 1;
14061 }
14062 else
14063 error (_("marker %s not found"), tp->static_trace_marker_id);
14064}
14065
14066static struct breakpoint_ops strace_marker_breakpoint_ops;
14067
14068static int
14069strace_marker_p (struct breakpoint *b)
14070{
14071 return b->ops == &strace_marker_breakpoint_ops;
14072}
14073
53a5351d 14074/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 14075 structures. */
c906108c
SS
14076
14077void
fba45db2 14078delete_breakpoint (struct breakpoint *bpt)
c906108c 14079{
52f0bd74 14080 struct breakpoint *b;
c906108c 14081
8a3fe4f8 14082 gdb_assert (bpt != NULL);
c906108c 14083
4a64f543
MS
14084 /* Has this bp already been deleted? This can happen because
14085 multiple lists can hold pointers to bp's. bpstat lists are
14086 especial culprits.
14087
14088 One example of this happening is a watchpoint's scope bp. When
14089 the scope bp triggers, we notice that the watchpoint is out of
14090 scope, and delete it. We also delete its scope bp. But the
14091 scope bp is marked "auto-deleting", and is already on a bpstat.
14092 That bpstat is then checked for auto-deleting bp's, which are
14093 deleted.
14094
14095 A real solution to this problem might involve reference counts in
14096 bp's, and/or giving them pointers back to their referencing
14097 bpstat's, and teaching delete_breakpoint to only free a bp's
14098 storage when no more references were extent. A cheaper bandaid
14099 was chosen. */
c906108c
SS
14100 if (bpt->type == bp_none)
14101 return;
14102
4a64f543
MS
14103 /* At least avoid this stale reference until the reference counting
14104 of breakpoints gets resolved. */
d0fb5eae 14105 if (bpt->related_breakpoint != bpt)
e5a0a904 14106 {
d0fb5eae 14107 struct breakpoint *related;
3a5c3e22 14108 struct watchpoint *w;
d0fb5eae
JK
14109
14110 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 14111 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 14112 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
14113 w = (struct watchpoint *) bpt;
14114 else
14115 w = NULL;
14116 if (w != NULL)
14117 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
14118
14119 /* Unlink bpt from the bpt->related_breakpoint ring. */
14120 for (related = bpt; related->related_breakpoint != bpt;
14121 related = related->related_breakpoint);
14122 related->related_breakpoint = bpt->related_breakpoint;
14123 bpt->related_breakpoint = bpt;
e5a0a904
JK
14124 }
14125
a9634178
TJB
14126 /* watch_command_1 creates a watchpoint but only sets its number if
14127 update_watchpoint succeeds in creating its bp_locations. If there's
14128 a problem in that process, we'll be asked to delete the half-created
14129 watchpoint. In that case, don't announce the deletion. */
14130 if (bpt->number)
14131 observer_notify_breakpoint_deleted (bpt);
c906108c 14132
c906108c
SS
14133 if (breakpoint_chain == bpt)
14134 breakpoint_chain = bpt->next;
14135
c906108c
SS
14136 ALL_BREAKPOINTS (b)
14137 if (b->next == bpt)
c5aa993b
JM
14138 {
14139 b->next = bpt->next;
14140 break;
14141 }
c906108c 14142
f431efe5
PA
14143 /* Be sure no bpstat's are pointing at the breakpoint after it's
14144 been freed. */
14145 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 14146 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
14147 pointing at bpt from the stop_bpstat list entirely, as breakpoint
14148 commands are associated with the bpstat; if we remove it here,
14149 then the later call to bpstat_do_actions (&stop_bpstat); in
14150 event-top.c won't do anything, and temporary breakpoints with
14151 commands won't work. */
14152
14153 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
14154
4a64f543
MS
14155 /* Now that breakpoint is removed from breakpoint list, update the
14156 global location list. This will remove locations that used to
14157 belong to this breakpoint. Do this before freeing the breakpoint
14158 itself, since remove_breakpoint looks at location's owner. It
14159 might be better design to have location completely
14160 self-contained, but it's not the case now. */
44702360 14161 update_global_location_list (UGLL_DONT_INSERT);
74960c60 14162
348d480f 14163 bpt->ops->dtor (bpt);
4a64f543
MS
14164 /* On the chance that someone will soon try again to delete this
14165 same bp, we mark it as deleted before freeing its storage. */
c906108c 14166 bpt->type = bp_none;
b8c9b27d 14167 xfree (bpt);
c906108c
SS
14168}
14169
4d6140d9
AC
14170static void
14171do_delete_breakpoint_cleanup (void *b)
14172{
14173 delete_breakpoint (b);
14174}
14175
14176struct cleanup *
14177make_cleanup_delete_breakpoint (struct breakpoint *b)
14178{
14179 return make_cleanup (do_delete_breakpoint_cleanup, b);
14180}
14181
51be5b68
PA
14182/* Iterator function to call a user-provided callback function once
14183 for each of B and its related breakpoints. */
14184
14185static void
14186iterate_over_related_breakpoints (struct breakpoint *b,
14187 void (*function) (struct breakpoint *,
14188 void *),
14189 void *data)
14190{
14191 struct breakpoint *related;
14192
14193 related = b;
14194 do
14195 {
14196 struct breakpoint *next;
14197
14198 /* FUNCTION may delete RELATED. */
14199 next = related->related_breakpoint;
14200
14201 if (next == related)
14202 {
14203 /* RELATED is the last ring entry. */
14204 function (related, data);
14205
14206 /* FUNCTION may have deleted it, so we'd never reach back to
14207 B. There's nothing left to do anyway, so just break
14208 out. */
14209 break;
14210 }
14211 else
14212 function (related, data);
14213
14214 related = next;
14215 }
14216 while (related != b);
14217}
95a42b64
TT
14218
14219static void
14220do_delete_breakpoint (struct breakpoint *b, void *ignore)
14221{
14222 delete_breakpoint (b);
14223}
14224
51be5b68
PA
14225/* A callback for map_breakpoint_numbers that calls
14226 delete_breakpoint. */
14227
14228static void
14229do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
14230{
14231 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
14232}
14233
c906108c 14234void
fba45db2 14235delete_command (char *arg, int from_tty)
c906108c 14236{
35df4500 14237 struct breakpoint *b, *b_tmp;
c906108c 14238
ea9365bb
TT
14239 dont_repeat ();
14240
c906108c
SS
14241 if (arg == 0)
14242 {
14243 int breaks_to_delete = 0;
14244
46c6471b
PA
14245 /* Delete all breakpoints if no argument. Do not delete
14246 internal breakpoints, these have to be deleted with an
14247 explicit breakpoint number argument. */
c5aa993b 14248 ALL_BREAKPOINTS (b)
46c6471b 14249 if (user_breakpoint_p (b))
973d738b
DJ
14250 {
14251 breaks_to_delete = 1;
14252 break;
14253 }
c906108c
SS
14254
14255 /* Ask user only if there are some breakpoints to delete. */
14256 if (!from_tty
e2e0b3e5 14257 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 14258 {
35df4500 14259 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 14260 if (user_breakpoint_p (b))
c5aa993b 14261 delete_breakpoint (b);
c906108c
SS
14262 }
14263 }
14264 else
51be5b68 14265 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
c906108c
SS
14266}
14267
0d381245
VP
14268static int
14269all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 14270{
0d381245 14271 for (; loc; loc = loc->next)
8645ff69
UW
14272 if (!loc->shlib_disabled
14273 && !loc->pspace->executing_startup)
0d381245
VP
14274 return 0;
14275 return 1;
fe3f5fa8
VP
14276}
14277
776592bf
DE
14278/* Subroutine of update_breakpoint_locations to simplify it.
14279 Return non-zero if multiple fns in list LOC have the same name.
14280 Null names are ignored. */
14281
14282static int
14283ambiguous_names_p (struct bp_location *loc)
14284{
14285 struct bp_location *l;
14286 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
14287 (int (*) (const void *,
14288 const void *)) streq,
776592bf
DE
14289 NULL, xcalloc, xfree);
14290
14291 for (l = loc; l != NULL; l = l->next)
14292 {
14293 const char **slot;
14294 const char *name = l->function_name;
14295
14296 /* Allow for some names to be NULL, ignore them. */
14297 if (name == NULL)
14298 continue;
14299
14300 slot = (const char **) htab_find_slot (htab, (const void *) name,
14301 INSERT);
4a64f543
MS
14302 /* NOTE: We can assume slot != NULL here because xcalloc never
14303 returns NULL. */
776592bf
DE
14304 if (*slot != NULL)
14305 {
14306 htab_delete (htab);
14307 return 1;
14308 }
14309 *slot = name;
14310 }
14311
14312 htab_delete (htab);
14313 return 0;
14314}
14315
0fb4aa4b
PA
14316/* When symbols change, it probably means the sources changed as well,
14317 and it might mean the static tracepoint markers are no longer at
14318 the same address or line numbers they used to be at last we
14319 checked. Losing your static tracepoints whenever you rebuild is
14320 undesirable. This function tries to resync/rematch gdb static
14321 tracepoints with the markers on the target, for static tracepoints
14322 that have not been set by marker id. Static tracepoint that have
14323 been set by marker id are reset by marker id in breakpoint_re_set.
14324 The heuristic is:
14325
14326 1) For a tracepoint set at a specific address, look for a marker at
14327 the old PC. If one is found there, assume to be the same marker.
14328 If the name / string id of the marker found is different from the
14329 previous known name, assume that means the user renamed the marker
14330 in the sources, and output a warning.
14331
14332 2) For a tracepoint set at a given line number, look for a marker
14333 at the new address of the old line number. If one is found there,
14334 assume to be the same marker. If the name / string id of the
14335 marker found is different from the previous known name, assume that
14336 means the user renamed the marker in the sources, and output a
14337 warning.
14338
14339 3) If a marker is no longer found at the same address or line, it
14340 may mean the marker no longer exists. But it may also just mean
14341 the code changed a bit. Maybe the user added a few lines of code
14342 that made the marker move up or down (in line number terms). Ask
14343 the target for info about the marker with the string id as we knew
14344 it. If found, update line number and address in the matching
14345 static tracepoint. This will get confused if there's more than one
14346 marker with the same ID (possible in UST, although unadvised
14347 precisely because it confuses tools). */
14348
14349static struct symtab_and_line
14350update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
14351{
d9b3f62e 14352 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
14353 struct static_tracepoint_marker marker;
14354 CORE_ADDR pc;
0fb4aa4b
PA
14355
14356 pc = sal.pc;
14357 if (sal.line)
14358 find_line_pc (sal.symtab, sal.line, &pc);
14359
14360 if (target_static_tracepoint_marker_at (pc, &marker))
14361 {
d9b3f62e 14362 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
0fb4aa4b
PA
14363 warning (_("static tracepoint %d changed probed marker from %s to %s"),
14364 b->number,
d9b3f62e 14365 tp->static_trace_marker_id, marker.str_id);
0fb4aa4b 14366
d9b3f62e
PA
14367 xfree (tp->static_trace_marker_id);
14368 tp->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
14369 release_static_tracepoint_marker (&marker);
14370
14371 return sal;
14372 }
14373
14374 /* Old marker wasn't found on target at lineno. Try looking it up
14375 by string ID. */
14376 if (!sal.explicit_pc
14377 && sal.line != 0
14378 && sal.symtab != NULL
d9b3f62e 14379 && tp->static_trace_marker_id != NULL)
0fb4aa4b
PA
14380 {
14381 VEC(static_tracepoint_marker_p) *markers;
14382
14383 markers
d9b3f62e 14384 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
0fb4aa4b
PA
14385
14386 if (!VEC_empty(static_tracepoint_marker_p, markers))
14387 {
80e1d417 14388 struct symtab_and_line sal2;
0fb4aa4b 14389 struct symbol *sym;
80e1d417 14390 struct static_tracepoint_marker *tpmarker;
79a45e25 14391 struct ui_out *uiout = current_uiout;
0fb4aa4b 14392
80e1d417 14393 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
0fb4aa4b 14394
d9b3f62e 14395 xfree (tp->static_trace_marker_id);
80e1d417 14396 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
0fb4aa4b
PA
14397
14398 warning (_("marker for static tracepoint %d (%s) not "
14399 "found at previous line number"),
d9b3f62e 14400 b->number, tp->static_trace_marker_id);
0fb4aa4b 14401
80e1d417 14402 init_sal (&sal2);
0fb4aa4b 14403
80e1d417 14404 sal2.pc = tpmarker->address;
0fb4aa4b 14405
80e1d417
AS
14406 sal2 = find_pc_line (tpmarker->address, 0);
14407 sym = find_pc_sect_function (tpmarker->address, NULL);
0fb4aa4b
PA
14408 ui_out_text (uiout, "Now in ");
14409 if (sym)
14410 {
14411 ui_out_field_string (uiout, "func",
14412 SYMBOL_PRINT_NAME (sym));
14413 ui_out_text (uiout, " at ");
14414 }
05cba821
JK
14415 ui_out_field_string (uiout, "file",
14416 symtab_to_filename_for_display (sal2.symtab));
0fb4aa4b
PA
14417 ui_out_text (uiout, ":");
14418
14419 if (ui_out_is_mi_like_p (uiout))
14420 {
0b0865da 14421 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 14422
f35a17b5 14423 ui_out_field_string (uiout, "fullname", fullname);
0fb4aa4b
PA
14424 }
14425
80e1d417 14426 ui_out_field_int (uiout, "line", sal2.line);
0fb4aa4b
PA
14427 ui_out_text (uiout, "\n");
14428
80e1d417 14429 b->loc->line_number = sal2.line;
2f202fde 14430 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b
PA
14431
14432 xfree (b->addr_string);
14433 b->addr_string = xstrprintf ("%s:%d",
05cba821 14434 symtab_to_filename_for_display (sal2.symtab),
f8eba3c6 14435 b->loc->line_number);
0fb4aa4b
PA
14436
14437 /* Might be nice to check if function changed, and warn if
14438 so. */
14439
80e1d417 14440 release_static_tracepoint_marker (tpmarker);
0fb4aa4b
PA
14441 }
14442 }
14443 return sal;
14444}
14445
8d3788bd
VP
14446/* Returns 1 iff locations A and B are sufficiently same that
14447 we don't need to report breakpoint as changed. */
14448
14449static int
14450locations_are_equal (struct bp_location *a, struct bp_location *b)
14451{
14452 while (a && b)
14453 {
14454 if (a->address != b->address)
14455 return 0;
14456
14457 if (a->shlib_disabled != b->shlib_disabled)
14458 return 0;
14459
14460 if (a->enabled != b->enabled)
14461 return 0;
14462
14463 a = a->next;
14464 b = b->next;
14465 }
14466
14467 if ((a == NULL) != (b == NULL))
14468 return 0;
14469
14470 return 1;
14471}
14472
f1310107
TJB
14473/* Create new breakpoint locations for B (a hardware or software breakpoint)
14474 based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is
14475 a ranged breakpoint. */
14476
0e30163f 14477void
0d381245 14478update_breakpoint_locations (struct breakpoint *b,
f1310107
TJB
14479 struct symtabs_and_lines sals,
14480 struct symtabs_and_lines sals_end)
fe3f5fa8
VP
14481{
14482 int i;
0d381245
VP
14483 struct bp_location *existing_locations = b->loc;
14484
f8eba3c6
TT
14485 if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1))
14486 {
14487 /* Ranged breakpoints have only one start location and one end
14488 location. */
14489 b->enable_state = bp_disabled;
44702360 14490 update_global_location_list (UGLL_MAY_INSERT);
f8eba3c6
TT
14491 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
14492 "multiple locations found\n"),
14493 b->number);
14494 return;
14495 }
f1310107 14496
4a64f543
MS
14497 /* If there's no new locations, and all existing locations are
14498 pending, don't do anything. This optimizes the common case where
14499 all locations are in the same shared library, that was unloaded.
14500 We'd like to retain the location, so that when the library is
14501 loaded again, we don't loose the enabled/disabled status of the
14502 individual locations. */
0d381245 14503 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
14504 return;
14505
fe3f5fa8
VP
14506 b->loc = NULL;
14507
0d381245 14508 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 14509 {
f8eba3c6
TT
14510 struct bp_location *new_loc;
14511
14512 switch_to_program_space_and_thread (sals.sals[i].pspace);
14513
14514 new_loc = add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 14515
0d381245
VP
14516 /* Reparse conditions, they might contain references to the
14517 old symtab. */
14518 if (b->cond_string != NULL)
14519 {
bbc13ae3 14520 const char *s;
bfd189b1 14521 volatile struct gdb_exception e;
fe3f5fa8 14522
0d381245
VP
14523 s = b->cond_string;
14524 TRY_CATCH (e, RETURN_MASK_ERROR)
14525 {
1bb9788d
TT
14526 new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc,
14527 block_for_pc (sals.sals[i].pc),
0d381245
VP
14528 0);
14529 }
14530 if (e.reason < 0)
14531 {
3e43a32a
MS
14532 warning (_("failed to reevaluate condition "
14533 "for breakpoint %d: %s"),
0d381245
VP
14534 b->number, e.message);
14535 new_loc->enabled = 0;
14536 }
14537 }
fe3f5fa8 14538
f1310107
TJB
14539 if (sals_end.nelts)
14540 {
14541 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
14542
14543 new_loc->length = end - sals.sals[0].pc + 1;
14544 }
0d381245 14545 }
fe3f5fa8 14546
514f746b
AR
14547 /* Update locations of permanent breakpoints. */
14548 if (b->enable_state == bp_permanent)
14549 make_breakpoint_permanent (b);
14550
4a64f543
MS
14551 /* If possible, carry over 'disable' status from existing
14552 breakpoints. */
0d381245
VP
14553 {
14554 struct bp_location *e = existing_locations;
776592bf
DE
14555 /* If there are multiple breakpoints with the same function name,
14556 e.g. for inline functions, comparing function names won't work.
14557 Instead compare pc addresses; this is just a heuristic as things
14558 may have moved, but in practice it gives the correct answer
14559 often enough until a better solution is found. */
14560 int have_ambiguous_names = ambiguous_names_p (b->loc);
14561
0d381245
VP
14562 for (; e; e = e->next)
14563 {
14564 if (!e->enabled && e->function_name)
14565 {
14566 struct bp_location *l = b->loc;
776592bf
DE
14567 if (have_ambiguous_names)
14568 {
14569 for (; l; l = l->next)
f1310107 14570 if (breakpoint_locations_match (e, l))
776592bf
DE
14571 {
14572 l->enabled = 0;
14573 break;
14574 }
14575 }
14576 else
14577 {
14578 for (; l; l = l->next)
14579 if (l->function_name
14580 && strcmp (e->function_name, l->function_name) == 0)
14581 {
14582 l->enabled = 0;
14583 break;
14584 }
14585 }
0d381245
VP
14586 }
14587 }
14588 }
fe3f5fa8 14589
8d3788bd
VP
14590 if (!locations_are_equal (existing_locations, b->loc))
14591 observer_notify_breakpoint_modified (b);
14592
44702360 14593 update_global_location_list (UGLL_MAY_INSERT);
fe3f5fa8
VP
14594}
14595
ef23e705
TJB
14596/* Find the SaL locations corresponding to the given ADDR_STRING.
14597 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
14598
14599static struct symtabs_and_lines
14600addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found)
14601{
14602 char *s;
02d20e4a 14603 struct symtabs_and_lines sals = {0};
f8eba3c6 14604 volatile struct gdb_exception e;
ef23e705 14605
983af33b 14606 gdb_assert (b->ops != NULL);
ef23e705 14607 s = addr_string;
ef23e705
TJB
14608
14609 TRY_CATCH (e, RETURN_MASK_ERROR)
14610 {
983af33b 14611 b->ops->decode_linespec (b, &s, &sals);
ef23e705
TJB
14612 }
14613 if (e.reason < 0)
14614 {
14615 int not_found_and_ok = 0;
14616 /* For pending breakpoints, it's expected that parsing will
14617 fail until the right shared library is loaded. User has
14618 already told to create pending breakpoints and don't need
14619 extra messages. If breakpoint is in bp_shlib_disabled
14620 state, then user already saw the message about that
14621 breakpoint being disabled, and don't want to see more
14622 errors. */
58438ac1 14623 if (e.error == NOT_FOUND_ERROR
ef23e705
TJB
14624 && (b->condition_not_parsed
14625 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 14626 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
14627 || b->enable_state == bp_disabled))
14628 not_found_and_ok = 1;
14629
14630 if (!not_found_and_ok)
14631 {
14632 /* We surely don't want to warn about the same breakpoint
14633 10 times. One solution, implemented here, is disable
14634 the breakpoint on error. Another solution would be to
14635 have separate 'warning emitted' flag. Since this
14636 happens only when a binary has changed, I don't know
14637 which approach is better. */
14638 b->enable_state = bp_disabled;
14639 throw_exception (e);
14640 }
14641 }
14642
58438ac1 14643 if (e.reason == 0 || e.error != NOT_FOUND_ERROR)
ef23e705 14644 {
f8eba3c6 14645 int i;
ef23e705 14646
f8eba3c6
TT
14647 for (i = 0; i < sals.nelts; ++i)
14648 resolve_sal_pc (&sals.sals[i]);
ef23e705
TJB
14649 if (b->condition_not_parsed && s && s[0])
14650 {
ed1d1739
KS
14651 char *cond_string, *extra_string;
14652 int thread, task;
ef23e705
TJB
14653
14654 find_condition_and_thread (s, sals.sals[0].pc,
e7e0cddf
SS
14655 &cond_string, &thread, &task,
14656 &extra_string);
ef23e705
TJB
14657 if (cond_string)
14658 b->cond_string = cond_string;
14659 b->thread = thread;
14660 b->task = task;
e7e0cddf
SS
14661 if (extra_string)
14662 b->extra_string = extra_string;
ef23e705
TJB
14663 b->condition_not_parsed = 0;
14664 }
14665
983af33b 14666 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
ef23e705 14667 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
ef23e705 14668
58438ac1
TT
14669 *found = 1;
14670 }
14671 else
14672 *found = 0;
ef23e705
TJB
14673
14674 return sals;
14675}
14676
348d480f
PA
14677/* The default re_set method, for typical hardware or software
14678 breakpoints. Reevaluate the breakpoint and recreate its
14679 locations. */
14680
14681static void
28010a5d 14682breakpoint_re_set_default (struct breakpoint *b)
ef23e705
TJB
14683{
14684 int found;
f1310107 14685 struct symtabs_and_lines sals, sals_end;
ef23e705 14686 struct symtabs_and_lines expanded = {0};
f1310107 14687 struct symtabs_and_lines expanded_end = {0};
ef23e705
TJB
14688
14689 sals = addr_string_to_sals (b, b->addr_string, &found);
14690 if (found)
14691 {
14692 make_cleanup (xfree, sals.sals);
f8eba3c6 14693 expanded = sals;
ef23e705
TJB
14694 }
14695
f1310107
TJB
14696 if (b->addr_string_range_end)
14697 {
14698 sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found);
14699 if (found)
14700 {
14701 make_cleanup (xfree, sals_end.sals);
f8eba3c6 14702 expanded_end = sals_end;
f1310107
TJB
14703 }
14704 }
14705
14706 update_breakpoint_locations (b, expanded, expanded_end);
28010a5d
PA
14707}
14708
983af33b
SDJ
14709/* Default method for creating SALs from an address string. It basically
14710 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
14711
14712static void
14713create_sals_from_address_default (char **arg,
14714 struct linespec_result *canonical,
14715 enum bptype type_wanted,
14716 char *addr_start, char **copy_arg)
14717{
14718 parse_breakpoint_sals (arg, canonical);
14719}
14720
14721/* Call create_breakpoints_sal for the given arguments. This is the default
14722 function for the `create_breakpoints_sal' method of
14723 breakpoint_ops. */
14724
14725static void
14726create_breakpoints_sal_default (struct gdbarch *gdbarch,
14727 struct linespec_result *canonical,
983af33b 14728 char *cond_string,
e7e0cddf 14729 char *extra_string,
983af33b
SDJ
14730 enum bptype type_wanted,
14731 enum bpdisp disposition,
14732 int thread,
14733 int task, int ignore_count,
14734 const struct breakpoint_ops *ops,
14735 int from_tty, int enabled,
44f238bb 14736 int internal, unsigned flags)
983af33b
SDJ
14737{
14738 create_breakpoints_sal (gdbarch, canonical, cond_string,
e7e0cddf 14739 extra_string,
983af33b
SDJ
14740 type_wanted, disposition,
14741 thread, task, ignore_count, ops, from_tty,
44f238bb 14742 enabled, internal, flags);
983af33b
SDJ
14743}
14744
14745/* Decode the line represented by S by calling decode_line_full. This is the
14746 default function for the `decode_linespec' method of breakpoint_ops. */
14747
14748static void
14749decode_linespec_default (struct breakpoint *b, char **s,
14750 struct symtabs_and_lines *sals)
14751{
14752 struct linespec_result canonical;
14753
14754 init_linespec_result (&canonical);
14755 decode_line_full (s, DECODE_LINE_FUNFIRSTLINE,
14756 (struct symtab *) NULL, 0,
14757 &canonical, multiple_symbols_all,
14758 b->filter);
14759
14760 /* We should get 0 or 1 resulting SALs. */
14761 gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2);
14762
14763 if (VEC_length (linespec_sals, canonical.sals) > 0)
14764 {
14765 struct linespec_sals *lsal;
14766
14767 lsal = VEC_index (linespec_sals, canonical.sals, 0);
14768 *sals = lsal->sals;
14769 /* Arrange it so the destructor does not free the
14770 contents. */
14771 lsal->sals.sals = NULL;
14772 }
14773
14774 destroy_linespec_result (&canonical);
14775}
14776
28010a5d
PA
14777/* Prepare the global context for a re-set of breakpoint B. */
14778
14779static struct cleanup *
14780prepare_re_set_context (struct breakpoint *b)
14781{
14782 struct cleanup *cleanups;
14783
14784 input_radix = b->input_radix;
14785 cleanups = save_current_space_and_thread ();
f8eba3c6
TT
14786 if (b->pspace != NULL)
14787 switch_to_program_space_and_thread (b->pspace);
28010a5d
PA
14788 set_language (b->language);
14789
14790 return cleanups;
ef23e705
TJB
14791}
14792
c906108c
SS
14793/* Reset a breakpoint given it's struct breakpoint * BINT.
14794 The value we return ends up being the return value from catch_errors.
14795 Unused in this case. */
14796
14797static int
4efb68b1 14798breakpoint_re_set_one (void *bint)
c906108c 14799{
4a64f543 14800 /* Get past catch_errs. */
53a5351d 14801 struct breakpoint *b = (struct breakpoint *) bint;
348d480f 14802 struct cleanup *cleanups;
c906108c 14803
348d480f
PA
14804 cleanups = prepare_re_set_context (b);
14805 b->ops->re_set (b);
14806 do_cleanups (cleanups);
c906108c
SS
14807 return 0;
14808}
14809
69de3c6a 14810/* Re-set all breakpoints after symbols have been re-loaded. */
c906108c 14811void
69de3c6a 14812breakpoint_re_set (void)
c906108c 14813{
35df4500 14814 struct breakpoint *b, *b_tmp;
c906108c
SS
14815 enum language save_language;
14816 int save_input_radix;
6c95b8df 14817 struct cleanup *old_chain;
c5aa993b 14818
c906108c
SS
14819 save_language = current_language->la_language;
14820 save_input_radix = input_radix;
6c95b8df
PA
14821 old_chain = save_current_program_space ();
14822
35df4500 14823 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 14824 {
4a64f543 14825 /* Format possible error msg. */
fe3f5fa8 14826 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
14827 b->number);
14828 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 14829 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 14830 do_cleanups (cleanups);
c5aa993b 14831 }
c906108c
SS
14832 set_language (save_language);
14833 input_radix = save_input_radix;
e62c965a 14834
0756c555 14835 jit_breakpoint_re_set ();
4efc6507 14836
6c95b8df
PA
14837 do_cleanups (old_chain);
14838
af02033e
PP
14839 create_overlay_event_breakpoint ();
14840 create_longjmp_master_breakpoint ();
14841 create_std_terminate_master_breakpoint ();
186c406b 14842 create_exception_master_breakpoint ();
c906108c
SS
14843}
14844\f
c906108c
SS
14845/* Reset the thread number of this breakpoint:
14846
14847 - If the breakpoint is for all threads, leave it as-is.
4a64f543 14848 - Else, reset it to the current thread for inferior_ptid. */
c906108c 14849void
fba45db2 14850breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
14851{
14852 if (b->thread != -1)
14853 {
39f77062
KB
14854 if (in_thread_list (inferior_ptid))
14855 b->thread = pid_to_thread_id (inferior_ptid);
6c95b8df
PA
14856
14857 /* We're being called after following a fork. The new fork is
14858 selected as current, and unless this was a vfork will have a
14859 different program space from the original thread. Reset that
14860 as well. */
14861 b->loc->pspace = current_program_space;
c906108c
SS
14862 }
14863}
14864
03ac34d5
MS
14865/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14866 If from_tty is nonzero, it prints a message to that effect,
14867 which ends with a period (no newline). */
14868
c906108c 14869void
fba45db2 14870set_ignore_count (int bptnum, int count, int from_tty)
c906108c 14871{
52f0bd74 14872 struct breakpoint *b;
c906108c
SS
14873
14874 if (count < 0)
14875 count = 0;
14876
14877 ALL_BREAKPOINTS (b)
14878 if (b->number == bptnum)
c5aa993b 14879 {
d77f58be
SS
14880 if (is_tracepoint (b))
14881 {
14882 if (from_tty && count != 0)
14883 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14884 bptnum);
14885 return;
14886 }
14887
c5aa993b 14888 b->ignore_count = count;
221ea385
KS
14889 if (from_tty)
14890 {
14891 if (count == 0)
3e43a32a
MS
14892 printf_filtered (_("Will stop next time "
14893 "breakpoint %d is reached."),
221ea385
KS
14894 bptnum);
14895 else if (count == 1)
a3f17187 14896 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
14897 bptnum);
14898 else
3e43a32a
MS
14899 printf_filtered (_("Will ignore next %d "
14900 "crossings of breakpoint %d."),
221ea385
KS
14901 count, bptnum);
14902 }
8d3788bd 14903 observer_notify_breakpoint_modified (b);
c5aa993b
JM
14904 return;
14905 }
c906108c 14906
8a3fe4f8 14907 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
14908}
14909
c906108c
SS
14910/* Command to set ignore-count of breakpoint N to COUNT. */
14911
14912static void
fba45db2 14913ignore_command (char *args, int from_tty)
c906108c
SS
14914{
14915 char *p = args;
52f0bd74 14916 int num;
c906108c
SS
14917
14918 if (p == 0)
e2e0b3e5 14919 error_no_arg (_("a breakpoint number"));
c5aa993b 14920
c906108c 14921 num = get_number (&p);
5c44784c 14922 if (num == 0)
8a3fe4f8 14923 error (_("bad breakpoint number: '%s'"), args);
c906108c 14924 if (*p == 0)
8a3fe4f8 14925 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
14926
14927 set_ignore_count (num,
14928 longest_to_int (value_as_long (parse_and_eval (p))),
14929 from_tty);
221ea385
KS
14930 if (from_tty)
14931 printf_filtered ("\n");
c906108c
SS
14932}
14933\f
14934/* Call FUNCTION on each of the breakpoints
14935 whose numbers are given in ARGS. */
14936
14937static void
95a42b64
TT
14938map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
14939 void *),
14940 void *data)
c906108c 14941{
52f0bd74
AC
14942 int num;
14943 struct breakpoint *b, *tmp;
11cf8741 14944 int match;
197f0a60 14945 struct get_number_or_range_state state;
c906108c 14946
197f0a60 14947 if (args == 0)
e2e0b3e5 14948 error_no_arg (_("one or more breakpoint numbers"));
c906108c 14949
197f0a60
TT
14950 init_number_or_range (&state, args);
14951
14952 while (!state.finished)
c906108c 14953 {
e799154c 14954 const char *p = state.string;
197f0a60 14955
11cf8741 14956 match = 0;
c5aa993b 14957
197f0a60 14958 num = get_number_or_range (&state);
5c44784c 14959 if (num == 0)
c5aa993b 14960 {
8a3fe4f8 14961 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
14962 }
14963 else
14964 {
14965 ALL_BREAKPOINTS_SAFE (b, tmp)
14966 if (b->number == num)
14967 {
11cf8741 14968 match = 1;
cdac0397 14969 function (b, data);
11cf8741 14970 break;
5c44784c 14971 }
11cf8741 14972 if (match == 0)
a3f17187 14973 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 14974 }
c906108c
SS
14975 }
14976}
14977
0d381245
VP
14978static struct bp_location *
14979find_location_by_number (char *number)
14980{
14981 char *dot = strchr (number, '.');
14982 char *p1;
14983 int bp_num;
14984 int loc_num;
14985 struct breakpoint *b;
14986 struct bp_location *loc;
14987
14988 *dot = '\0';
14989
14990 p1 = number;
197f0a60 14991 bp_num = get_number (&p1);
0d381245
VP
14992 if (bp_num == 0)
14993 error (_("Bad breakpoint number '%s'"), number);
14994
14995 ALL_BREAKPOINTS (b)
14996 if (b->number == bp_num)
14997 {
14998 break;
14999 }
15000
15001 if (!b || b->number != bp_num)
15002 error (_("Bad breakpoint number '%s'"), number);
15003
15004 p1 = dot+1;
197f0a60 15005 loc_num = get_number (&p1);
0d381245
VP
15006 if (loc_num == 0)
15007 error (_("Bad breakpoint location number '%s'"), number);
15008
15009 --loc_num;
15010 loc = b->loc;
15011 for (;loc_num && loc; --loc_num, loc = loc->next)
15012 ;
15013 if (!loc)
15014 error (_("Bad breakpoint location number '%s'"), dot+1);
15015
15016 return loc;
15017}
15018
15019
1900040c
MS
15020/* Set ignore-count of breakpoint number BPTNUM to COUNT.
15021 If from_tty is nonzero, it prints a message to that effect,
15022 which ends with a period (no newline). */
15023
c906108c 15024void
fba45db2 15025disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
15026{
15027 /* Never disable a watchpoint scope breakpoint; we want to
15028 hit them when we leave scope so we can delete both the
15029 watchpoint and its scope breakpoint at that time. */
15030 if (bpt->type == bp_watchpoint_scope)
15031 return;
15032
c2c6d25f 15033 /* You can't disable permanent breakpoints. */
b5de0fa7 15034 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
15035 return;
15036
b5de0fa7 15037 bpt->enable_state = bp_disabled;
c906108c 15038
b775012e
LM
15039 /* Mark breakpoint locations modified. */
15040 mark_breakpoint_modified (bpt);
15041
d248b706
KY
15042 if (target_supports_enable_disable_tracepoint ()
15043 && current_trace_status ()->running && is_tracepoint (bpt))
15044 {
15045 struct bp_location *location;
15046
15047 for (location = bpt->loc; location; location = location->next)
15048 target_disable_tracepoint (location);
15049 }
15050
44702360 15051 update_global_location_list (UGLL_DONT_INSERT);
c906108c 15052
8d3788bd 15053 observer_notify_breakpoint_modified (bpt);
c906108c
SS
15054}
15055
51be5b68
PA
15056/* A callback for iterate_over_related_breakpoints. */
15057
15058static void
15059do_disable_breakpoint (struct breakpoint *b, void *ignore)
15060{
15061 disable_breakpoint (b);
15062}
15063
95a42b64
TT
15064/* A callback for map_breakpoint_numbers that calls
15065 disable_breakpoint. */
15066
15067static void
15068do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
15069{
51be5b68 15070 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
95a42b64
TT
15071}
15072
c906108c 15073static void
fba45db2 15074disable_command (char *args, int from_tty)
c906108c 15075{
c906108c 15076 if (args == 0)
46c6471b
PA
15077 {
15078 struct breakpoint *bpt;
15079
15080 ALL_BREAKPOINTS (bpt)
15081 if (user_breakpoint_p (bpt))
15082 disable_breakpoint (bpt);
15083 }
9eaabc75 15084 else
0d381245 15085 {
9eaabc75
MW
15086 char *num = extract_arg (&args);
15087
15088 while (num)
d248b706 15089 {
9eaabc75 15090 if (strchr (num, '.'))
b775012e 15091 {
9eaabc75
MW
15092 struct bp_location *loc = find_location_by_number (num);
15093
15094 if (loc)
15095 {
15096 if (loc->enabled)
15097 {
15098 loc->enabled = 0;
15099 mark_breakpoint_location_modified (loc);
15100 }
15101 if (target_supports_enable_disable_tracepoint ()
15102 && current_trace_status ()->running && loc->owner
15103 && is_tracepoint (loc->owner))
15104 target_disable_tracepoint (loc);
15105 }
44702360 15106 update_global_location_list (UGLL_DONT_INSERT);
b775012e 15107 }
9eaabc75
MW
15108 else
15109 map_breakpoint_numbers (num, do_map_disable_breakpoint, NULL);
15110 num = extract_arg (&args);
d248b706 15111 }
0d381245 15112 }
c906108c
SS
15113}
15114
15115static void
816338b5
SS
15116enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
15117 int count)
c906108c 15118{
afe38095 15119 int target_resources_ok;
c906108c
SS
15120
15121 if (bpt->type == bp_hardware_breakpoint)
15122 {
15123 int i;
c5aa993b 15124 i = hw_breakpoint_used_count ();
53a5351d 15125 target_resources_ok =
d92524f1 15126 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 15127 i + 1, 0);
c906108c 15128 if (target_resources_ok == 0)
8a3fe4f8 15129 error (_("No hardware breakpoint support in the target."));
c906108c 15130 else if (target_resources_ok < 0)
8a3fe4f8 15131 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
15132 }
15133
cc60f2e3 15134 if (is_watchpoint (bpt))
c906108c 15135 {
d07205c2
JK
15136 /* Initialize it just to avoid a GCC false warning. */
15137 enum enable_state orig_enable_state = 0;
bfd189b1 15138 volatile struct gdb_exception e;
dde02812
ES
15139
15140 TRY_CATCH (e, RETURN_MASK_ALL)
c906108c 15141 {
3a5c3e22
PA
15142 struct watchpoint *w = (struct watchpoint *) bpt;
15143
1e718ff1
TJB
15144 orig_enable_state = bpt->enable_state;
15145 bpt->enable_state = bp_enabled;
3a5c3e22 15146 update_watchpoint (w, 1 /* reparse */);
c906108c 15147 }
dde02812 15148 if (e.reason < 0)
c5aa993b 15149 {
1e718ff1 15150 bpt->enable_state = orig_enable_state;
dde02812
ES
15151 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
15152 bpt->number);
15153 return;
c5aa993b 15154 }
c906108c 15155 }
0101ce28 15156
b4c291bb
KH
15157 if (bpt->enable_state != bp_permanent)
15158 bpt->enable_state = bp_enabled;
d248b706 15159
b775012e
LM
15160 bpt->enable_state = bp_enabled;
15161
15162 /* Mark breakpoint locations modified. */
15163 mark_breakpoint_modified (bpt);
15164
d248b706
KY
15165 if (target_supports_enable_disable_tracepoint ()
15166 && current_trace_status ()->running && is_tracepoint (bpt))
15167 {
15168 struct bp_location *location;
15169
15170 for (location = bpt->loc; location; location = location->next)
15171 target_enable_tracepoint (location);
15172 }
15173
b4c291bb 15174 bpt->disposition = disposition;
816338b5 15175 bpt->enable_count = count;
44702360 15176 update_global_location_list (UGLL_MAY_INSERT);
9c97429f 15177
8d3788bd 15178 observer_notify_breakpoint_modified (bpt);
c906108c
SS
15179}
15180
fe3f5fa8 15181
c906108c 15182void
fba45db2 15183enable_breakpoint (struct breakpoint *bpt)
c906108c 15184{
816338b5 15185 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
15186}
15187
15188static void
15189do_enable_breakpoint (struct breakpoint *bpt, void *arg)
15190{
15191 enable_breakpoint (bpt);
c906108c
SS
15192}
15193
95a42b64
TT
15194/* A callback for map_breakpoint_numbers that calls
15195 enable_breakpoint. */
15196
15197static void
15198do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
15199{
51be5b68 15200 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
95a42b64
TT
15201}
15202
c906108c
SS
15203/* The enable command enables the specified breakpoints (or all defined
15204 breakpoints) so they once again become (or continue to be) effective
1272ad14 15205 in stopping the inferior. */
c906108c 15206
c906108c 15207static void
fba45db2 15208enable_command (char *args, int from_tty)
c906108c 15209{
c906108c 15210 if (args == 0)
46c6471b
PA
15211 {
15212 struct breakpoint *bpt;
15213
15214 ALL_BREAKPOINTS (bpt)
15215 if (user_breakpoint_p (bpt))
15216 enable_breakpoint (bpt);
15217 }
9eaabc75 15218 else
0d381245 15219 {
9eaabc75
MW
15220 char *num = extract_arg (&args);
15221
15222 while (num)
d248b706 15223 {
9eaabc75 15224 if (strchr (num, '.'))
b775012e 15225 {
9eaabc75
MW
15226 struct bp_location *loc = find_location_by_number (num);
15227
15228 if (loc)
15229 {
15230 if (!loc->enabled)
15231 {
15232 loc->enabled = 1;
15233 mark_breakpoint_location_modified (loc);
15234 }
15235 if (target_supports_enable_disable_tracepoint ()
15236 && current_trace_status ()->running && loc->owner
15237 && is_tracepoint (loc->owner))
15238 target_enable_tracepoint (loc);
15239 }
44702360 15240 update_global_location_list (UGLL_MAY_INSERT);
b775012e 15241 }
9eaabc75
MW
15242 else
15243 map_breakpoint_numbers (num, do_map_enable_breakpoint, NULL);
15244 num = extract_arg (&args);
d248b706 15245 }
0d381245 15246 }
c906108c
SS
15247}
15248
816338b5
SS
15249/* This struct packages up disposition data for application to multiple
15250 breakpoints. */
15251
15252struct disp_data
15253{
15254 enum bpdisp disp;
15255 int count;
15256};
15257
c906108c 15258static void
51be5b68
PA
15259do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
15260{
816338b5 15261 struct disp_data disp_data = *(struct disp_data *) arg;
51be5b68 15262
816338b5 15263 enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count);
51be5b68
PA
15264}
15265
15266static void
15267do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 15268{
816338b5 15269 struct disp_data disp = { disp_disable, 1 };
51be5b68
PA
15270
15271 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
15272}
15273
c906108c 15274static void
fba45db2 15275enable_once_command (char *args, int from_tty)
c906108c 15276{
51be5b68 15277 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
c906108c
SS
15278}
15279
816338b5
SS
15280static void
15281do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr)
15282{
15283 struct disp_data disp = { disp_disable, *(int *) countptr };
15284
15285 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15286}
15287
15288static void
15289enable_count_command (char *args, int from_tty)
15290{
15291 int count = get_number (&args);
15292
15293 map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count);
15294}
15295
c906108c 15296static void
51be5b68 15297do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 15298{
816338b5 15299 struct disp_data disp = { disp_del, 1 };
51be5b68
PA
15300
15301 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
15302}
15303
c906108c 15304static void
fba45db2 15305enable_delete_command (char *args, int from_tty)
c906108c 15306{
51be5b68 15307 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
c906108c
SS
15308}
15309\f
fa8d40ab
JJ
15310static void
15311set_breakpoint_cmd (char *args, int from_tty)
15312{
15313}
15314
15315static void
15316show_breakpoint_cmd (char *args, int from_tty)
15317{
15318}
15319
1f3b5d1b
PP
15320/* Invalidate last known value of any hardware watchpoint if
15321 the memory which that value represents has been written to by
15322 GDB itself. */
15323
15324static void
8de0566d
YQ
15325invalidate_bp_value_on_memory_change (struct inferior *inferior,
15326 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
15327 const bfd_byte *data)
15328{
15329 struct breakpoint *bp;
15330
15331 ALL_BREAKPOINTS (bp)
15332 if (bp->enable_state == bp_enabled
3a5c3e22 15333 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 15334 {
3a5c3e22 15335 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 15336
3a5c3e22
PA
15337 if (wp->val_valid && wp->val)
15338 {
15339 struct bp_location *loc;
15340
15341 for (loc = bp->loc; loc != NULL; loc = loc->next)
15342 if (loc->loc_type == bp_loc_hardware_watchpoint
15343 && loc->address + loc->length > addr
15344 && addr + len > loc->address)
15345 {
15346 value_free (wp->val);
15347 wp->val = NULL;
15348 wp->val_valid = 0;
15349 }
15350 }
1f3b5d1b
PP
15351 }
15352}
15353
8181d85f
DJ
15354/* Create and insert a raw software breakpoint at PC. Return an
15355 identifier, which should be used to remove the breakpoint later.
15356 In general, places which call this should be using something on the
15357 breakpoint chain instead; this function should be eliminated
15358 someday. */
15359
15360void *
6c95b8df
PA
15361deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch,
15362 struct address_space *aspace, CORE_ADDR pc)
8181d85f
DJ
15363{
15364 struct bp_target_info *bp_tgt;
ef370185 15365 struct bp_location *bl;
8181d85f 15366
41bf6aca 15367 bp_tgt = XCNEW (struct bp_target_info);
8181d85f 15368
6c95b8df 15369 bp_tgt->placed_address_space = aspace;
8181d85f 15370 bp_tgt->placed_address = pc;
6c95b8df 15371
ef370185
JB
15372 /* If an unconditional non-raw breakpoint is already inserted at
15373 that location, there's no need to insert another. However, with
15374 target-side evaluation of breakpoint conditions, if the
15375 breakpoint that is currently inserted on the target is
15376 conditional, we need to make it unconditional. Note that a
15377 breakpoint with target-side commands is not reported even if
15378 unconditional, so we need to remove the commands from the target
15379 as well. */
15380 bl = find_non_raw_software_breakpoint_inserted_here (aspace, pc);
15381 if (bl != NULL
15382 && VEC_empty (agent_expr_p, bl->target_info.conditions)
15383 && VEC_empty (agent_expr_p, bl->target_info.tcommands))
15384 {
15385 bp_target_info_copy_insertion_state (bp_tgt, &bl->target_info);
15386 return bp_tgt;
15387 }
15388
a6d9a66e 15389 if (target_insert_breakpoint (gdbarch, bp_tgt) != 0)
8181d85f
DJ
15390 {
15391 /* Could not insert the breakpoint. */
15392 xfree (bp_tgt);
15393 return NULL;
15394 }
15395
15396 return bp_tgt;
15397}
15398
4a64f543
MS
15399/* Remove a breakpoint BP inserted by
15400 deprecated_insert_raw_breakpoint. */
8181d85f
DJ
15401
15402int
a6d9a66e 15403deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp)
8181d85f
DJ
15404{
15405 struct bp_target_info *bp_tgt = bp;
ef370185
JB
15406 struct address_space *aspace = bp_tgt->placed_address_space;
15407 CORE_ADDR address = bp_tgt->placed_address;
15408 struct bp_location *bl;
8181d85f
DJ
15409 int ret;
15410
ef370185
JB
15411 bl = find_non_raw_software_breakpoint_inserted_here (aspace, address);
15412
15413 /* Only remove the raw breakpoint if there are no other non-raw
15414 breakpoints still inserted at this location. Otherwise, we would
15415 be effectively disabling those breakpoints. */
15416 if (bl == NULL)
15417 ret = target_remove_breakpoint (gdbarch, bp_tgt);
15418 else if (!VEC_empty (agent_expr_p, bl->target_info.conditions)
15419 || !VEC_empty (agent_expr_p, bl->target_info.tcommands))
15420 {
15421 /* The target is evaluating conditions, and when we inserted the
15422 software single-step breakpoint, we had made the breakpoint
15423 unconditional and command-less on the target side. Reinsert
15424 to restore the conditions/commands. */
15425 ret = target_insert_breakpoint (bl->gdbarch, &bl->target_info);
15426 }
15427 else
15428 ret = 0;
15429
8181d85f
DJ
15430 xfree (bp_tgt);
15431
15432 return ret;
15433}
15434
8181d85f
DJ
15435/* Create and insert a breakpoint for software single step. */
15436
15437void
6c95b8df 15438insert_single_step_breakpoint (struct gdbarch *gdbarch,
4a64f543
MS
15439 struct address_space *aspace,
15440 CORE_ADDR next_pc)
8181d85f
DJ
15441{
15442 void **bpt_p;
15443
15444 if (single_step_breakpoints[0] == NULL)
a6d9a66e
UW
15445 {
15446 bpt_p = &single_step_breakpoints[0];
15447 single_step_gdbarch[0] = gdbarch;
15448 }
8181d85f
DJ
15449 else
15450 {
15451 gdb_assert (single_step_breakpoints[1] == NULL);
15452 bpt_p = &single_step_breakpoints[1];
a6d9a66e 15453 single_step_gdbarch[1] = gdbarch;
8181d85f
DJ
15454 }
15455
4a64f543
MS
15456 /* NOTE drow/2006-04-11: A future improvement to this function would
15457 be to only create the breakpoints once, and actually put them on
15458 the breakpoint chain. That would let us use set_raw_breakpoint.
15459 We could adjust the addresses each time they were needed. Doing
15460 this requires corresponding changes elsewhere where single step
15461 breakpoints are handled, however. So, for now, we use this. */
8181d85f 15462
6c95b8df 15463 *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc);
8181d85f 15464 if (*bpt_p == NULL)
5af949e3
UW
15465 error (_("Could not insert single-step breakpoint at %s"),
15466 paddress (gdbarch, next_pc));
8181d85f
DJ
15467}
15468
f02253f1
HZ
15469/* Check if the breakpoints used for software single stepping
15470 were inserted or not. */
15471
15472int
15473single_step_breakpoints_inserted (void)
15474{
15475 return (single_step_breakpoints[0] != NULL
15476 || single_step_breakpoints[1] != NULL);
15477}
15478
8181d85f
DJ
15479/* Remove and delete any breakpoints used for software single step. */
15480
15481void
15482remove_single_step_breakpoints (void)
15483{
15484 gdb_assert (single_step_breakpoints[0] != NULL);
15485
15486 /* See insert_single_step_breakpoint for more about this deprecated
15487 call. */
a6d9a66e
UW
15488 deprecated_remove_raw_breakpoint (single_step_gdbarch[0],
15489 single_step_breakpoints[0]);
15490 single_step_gdbarch[0] = NULL;
8181d85f
DJ
15491 single_step_breakpoints[0] = NULL;
15492
15493 if (single_step_breakpoints[1] != NULL)
15494 {
a6d9a66e
UW
15495 deprecated_remove_raw_breakpoint (single_step_gdbarch[1],
15496 single_step_breakpoints[1]);
15497 single_step_gdbarch[1] = NULL;
8181d85f
DJ
15498 single_step_breakpoints[1] = NULL;
15499 }
15500}
15501
d03285ec
UW
15502/* Delete software single step breakpoints without removing them from
15503 the inferior. This is intended to be used if the inferior's address
15504 space where they were inserted is already gone, e.g. after exit or
15505 exec. */
15506
15507void
15508cancel_single_step_breakpoints (void)
15509{
15510 int i;
15511
15512 for (i = 0; i < 2; i++)
15513 if (single_step_breakpoints[i])
15514 {
15515 xfree (single_step_breakpoints[i]);
15516 single_step_breakpoints[i] = NULL;
15517 single_step_gdbarch[i] = NULL;
15518 }
15519}
15520
15521/* Detach software single-step breakpoints from INFERIOR_PTID without
15522 removing them. */
15523
15524static void
15525detach_single_step_breakpoints (void)
15526{
15527 int i;
15528
15529 for (i = 0; i < 2; i++)
15530 if (single_step_breakpoints[i])
15531 target_remove_breakpoint (single_step_gdbarch[i],
15532 single_step_breakpoints[i]);
15533}
15534
ef370185
JB
15535/* Find the software single-step breakpoint that inserted at PC.
15536 Returns its slot if found, and -1 if not found. */
1aafd4da 15537
ef370185
JB
15538static int
15539find_single_step_breakpoint (struct address_space *aspace,
15540 CORE_ADDR pc)
1aafd4da
UW
15541{
15542 int i;
15543
15544 for (i = 0; i < 2; i++)
15545 {
15546 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
6c95b8df
PA
15547 if (bp_tgt
15548 && breakpoint_address_match (bp_tgt->placed_address_space,
15549 bp_tgt->placed_address,
15550 aspace, pc))
ef370185 15551 return i;
1aafd4da
UW
15552 }
15553
ef370185
JB
15554 return -1;
15555}
15556
15557/* Check whether a software single-step breakpoint is inserted at
15558 PC. */
15559
15560int
15561single_step_breakpoint_inserted_here_p (struct address_space *aspace,
15562 CORE_ADDR pc)
15563{
15564 return find_single_step_breakpoint (aspace, pc) >= 0;
1aafd4da
UW
15565}
15566
a96d9b2e
SDJ
15567/* Returns 0 if 'bp' is NOT a syscall catchpoint,
15568 non-zero otherwise. */
15569static int
15570is_syscall_catchpoint_enabled (struct breakpoint *bp)
15571{
15572 if (syscall_catchpoint_p (bp)
15573 && bp->enable_state != bp_disabled
15574 && bp->enable_state != bp_call_disabled)
15575 return 1;
15576 else
15577 return 0;
15578}
15579
15580int
15581catch_syscall_enabled (void)
15582{
fa3064dd
YQ
15583 struct catch_syscall_inferior_data *inf_data
15584 = get_catch_syscall_inferior_data (current_inferior ());
a96d9b2e 15585
fa3064dd 15586 return inf_data->total_syscalls_count != 0;
a96d9b2e
SDJ
15587}
15588
15589int
15590catching_syscall_number (int syscall_number)
15591{
15592 struct breakpoint *bp;
15593
15594 ALL_BREAKPOINTS (bp)
15595 if (is_syscall_catchpoint_enabled (bp))
15596 {
be5c67c1
PA
15597 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp;
15598
15599 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
15600 {
15601 int i, iter;
15602 for (i = 0;
be5c67c1 15603 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
15604 i++)
15605 if (syscall_number == iter)
15606 return 1;
15607 }
15608 else
15609 return 1;
15610 }
15611
15612 return 0;
15613}
15614
15615/* Complete syscall names. Used by "catch syscall". */
49c4e619 15616static VEC (char_ptr) *
a96d9b2e 15617catch_syscall_completer (struct cmd_list_element *cmd,
6f937416 15618 const char *text, const char *word)
a96d9b2e
SDJ
15619{
15620 const char **list = get_syscall_names ();
49c4e619 15621 VEC (char_ptr) *retlist
b45627a0 15622 = (list == NULL) ? NULL : complete_on_enum (list, word, word);
cc59ec59 15623
c38eea1a
MS
15624 xfree (list);
15625 return retlist;
a96d9b2e
SDJ
15626}
15627
1042e4c0
SS
15628/* Tracepoint-specific operations. */
15629
15630/* Set tracepoint count to NUM. */
15631static void
15632set_tracepoint_count (int num)
15633{
15634 tracepoint_count = num;
4fa62494 15635 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
15636}
15637
70221824 15638static void
1042e4c0
SS
15639trace_command (char *arg, int from_tty)
15640{
55aa24fb
SDJ
15641 struct breakpoint_ops *ops;
15642 const char *arg_cp = arg;
15643
15644 if (arg && probe_linespec_to_ops (&arg_cp))
15645 ops = &tracepoint_probe_breakpoint_ops;
15646 else
15647 ops = &tracepoint_breakpoint_ops;
15648
558a9d82
YQ
15649 create_breakpoint (get_current_arch (),
15650 arg,
15651 NULL, 0, NULL, 1 /* parse arg */,
15652 0 /* tempflag */,
15653 bp_tracepoint /* type_wanted */,
15654 0 /* Ignore count */,
15655 pending_break_support,
15656 ops,
15657 from_tty,
15658 1 /* enabled */,
15659 0 /* internal */, 0);
1042e4c0
SS
15660}
15661
70221824 15662static void
7a697b8d
SS
15663ftrace_command (char *arg, int from_tty)
15664{
558a9d82
YQ
15665 create_breakpoint (get_current_arch (),
15666 arg,
15667 NULL, 0, NULL, 1 /* parse arg */,
15668 0 /* tempflag */,
15669 bp_fast_tracepoint /* type_wanted */,
15670 0 /* Ignore count */,
15671 pending_break_support,
15672 &tracepoint_breakpoint_ops,
15673 from_tty,
15674 1 /* enabled */,
15675 0 /* internal */, 0);
0fb4aa4b
PA
15676}
15677
15678/* strace command implementation. Creates a static tracepoint. */
15679
70221824 15680static void
0fb4aa4b
PA
15681strace_command (char *arg, int from_tty)
15682{
983af33b
SDJ
15683 struct breakpoint_ops *ops;
15684
15685 /* Decide if we are dealing with a static tracepoint marker (`-m'),
15686 or with a normal static tracepoint. */
15687 if (arg && strncmp (arg, "-m", 2) == 0 && isspace (arg[2]))
15688 ops = &strace_marker_breakpoint_ops;
15689 else
15690 ops = &tracepoint_breakpoint_ops;
15691
558a9d82
YQ
15692 create_breakpoint (get_current_arch (),
15693 arg,
15694 NULL, 0, NULL, 1 /* parse arg */,
15695 0 /* tempflag */,
15696 bp_static_tracepoint /* type_wanted */,
15697 0 /* Ignore count */,
15698 pending_break_support,
15699 ops,
15700 from_tty,
15701 1 /* enabled */,
15702 0 /* internal */, 0);
7a697b8d
SS
15703}
15704
409873ef
SS
15705/* Set up a fake reader function that gets command lines from a linked
15706 list that was acquired during tracepoint uploading. */
15707
15708static struct uploaded_tp *this_utp;
3149d8c1 15709static int next_cmd;
409873ef
SS
15710
15711static char *
15712read_uploaded_action (void)
15713{
15714 char *rslt;
15715
3149d8c1 15716 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 15717
3149d8c1 15718 next_cmd++;
409873ef
SS
15719
15720 return rslt;
15721}
15722
00bf0b85
SS
15723/* Given information about a tracepoint as recorded on a target (which
15724 can be either a live system or a trace file), attempt to create an
15725 equivalent GDB tracepoint. This is not a reliable process, since
15726 the target does not necessarily have all the information used when
15727 the tracepoint was originally defined. */
15728
d9b3f62e 15729struct tracepoint *
00bf0b85 15730create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 15731{
409873ef 15732 char *addr_str, small_buf[100];
d9b3f62e 15733 struct tracepoint *tp;
fd9b8c24 15734
409873ef
SS
15735 if (utp->at_string)
15736 addr_str = utp->at_string;
15737 else
15738 {
15739 /* In the absence of a source location, fall back to raw
15740 address. Since there is no way to confirm that the address
15741 means the same thing as when the trace was started, warn the
15742 user. */
3e43a32a
MS
15743 warning (_("Uploaded tracepoint %d has no "
15744 "source location, using raw address"),
409873ef 15745 utp->number);
8c042590 15746 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
15747 addr_str = small_buf;
15748 }
15749
15750 /* There's not much we can do with a sequence of bytecodes. */
15751 if (utp->cond && !utp->cond_string)
3e43a32a
MS
15752 warning (_("Uploaded tracepoint %d condition "
15753 "has no source form, ignoring it"),
409873ef 15754 utp->number);
d5551862 15755
8cdf0e15 15756 if (!create_breakpoint (get_current_arch (),
409873ef 15757 addr_str,
e7e0cddf
SS
15758 utp->cond_string, -1, NULL,
15759 0 /* parse cond/thread */,
8cdf0e15 15760 0 /* tempflag */,
0fb4aa4b 15761 utp->type /* type_wanted */,
8cdf0e15
VP
15762 0 /* Ignore count */,
15763 pending_break_support,
348d480f 15764 &tracepoint_breakpoint_ops,
8cdf0e15 15765 0 /* from_tty */,
84f4c1fe 15766 utp->enabled /* enabled */,
44f238bb
PA
15767 0 /* internal */,
15768 CREATE_BREAKPOINT_FLAGS_INSERTED))
fd9b8c24
PA
15769 return NULL;
15770
409873ef 15771 /* Get the tracepoint we just created. */
fd9b8c24
PA
15772 tp = get_tracepoint (tracepoint_count);
15773 gdb_assert (tp != NULL);
d5551862 15774
00bf0b85
SS
15775 if (utp->pass > 0)
15776 {
8c042590
PM
15777 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
15778 tp->base.number);
00bf0b85 15779
409873ef 15780 trace_pass_command (small_buf, 0);
00bf0b85
SS
15781 }
15782
409873ef
SS
15783 /* If we have uploaded versions of the original commands, set up a
15784 special-purpose "reader" function and call the usual command line
15785 reader, then pass the result to the breakpoint command-setting
15786 function. */
3149d8c1 15787 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 15788 {
409873ef 15789 struct command_line *cmd_list;
00bf0b85 15790
409873ef 15791 this_utp = utp;
3149d8c1 15792 next_cmd = 0;
d5551862 15793
409873ef
SS
15794 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
15795
d9b3f62e 15796 breakpoint_set_commands (&tp->base, cmd_list);
00bf0b85 15797 }
3149d8c1
SS
15798 else if (!VEC_empty (char_ptr, utp->actions)
15799 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
15800 warning (_("Uploaded tracepoint %d actions "
15801 "have no source form, ignoring them"),
409873ef 15802 utp->number);
00bf0b85 15803
f196051f
SS
15804 /* Copy any status information that might be available. */
15805 tp->base.hit_count = utp->hit_count;
15806 tp->traceframe_usage = utp->traceframe_usage;
15807
00bf0b85 15808 return tp;
d9b3f62e 15809}
00bf0b85 15810
1042e4c0
SS
15811/* Print information on tracepoint number TPNUM_EXP, or all if
15812 omitted. */
15813
15814static void
e5a67952 15815tracepoints_info (char *args, int from_tty)
1042e4c0 15816{
79a45e25 15817 struct ui_out *uiout = current_uiout;
e5a67952 15818 int num_printed;
1042e4c0 15819
e5a67952 15820 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
15821
15822 if (num_printed == 0)
1042e4c0 15823 {
e5a67952 15824 if (args == NULL || *args == '\0')
d77f58be
SS
15825 ui_out_message (uiout, 0, "No tracepoints.\n");
15826 else
e5a67952 15827 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
1042e4c0 15828 }
ad443146
SS
15829
15830 default_collect_info ();
1042e4c0
SS
15831}
15832
4a64f543 15833/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
15834 Not supported by all targets. */
15835static void
15836enable_trace_command (char *args, int from_tty)
15837{
15838 enable_command (args, from_tty);
15839}
15840
4a64f543 15841/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
15842 Not supported by all targets. */
15843static void
15844disable_trace_command (char *args, int from_tty)
15845{
15846 disable_command (args, from_tty);
15847}
15848
4a64f543 15849/* Remove a tracepoint (or all if no argument). */
1042e4c0
SS
15850static void
15851delete_trace_command (char *arg, int from_tty)
15852{
35df4500 15853 struct breakpoint *b, *b_tmp;
1042e4c0
SS
15854
15855 dont_repeat ();
15856
15857 if (arg == 0)
15858 {
15859 int breaks_to_delete = 0;
15860
15861 /* Delete all breakpoints if no argument.
15862 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
15863 have to be deleted with an explicit breakpoint number
15864 argument. */
1042e4c0 15865 ALL_TRACEPOINTS (b)
46c6471b 15866 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
15867 {
15868 breaks_to_delete = 1;
15869 break;
15870 }
1042e4c0
SS
15871
15872 /* Ask user only if there are some breakpoints to delete. */
15873 if (!from_tty
15874 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
15875 {
35df4500 15876 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 15877 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 15878 delete_breakpoint (b);
1042e4c0
SS
15879 }
15880 }
15881 else
51be5b68 15882 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
1042e4c0
SS
15883}
15884
197f0a60
TT
15885/* Helper function for trace_pass_command. */
15886
15887static void
d9b3f62e 15888trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 15889{
d9b3f62e 15890 tp->pass_count = count;
6f6484cd 15891 observer_notify_breakpoint_modified (&tp->base);
197f0a60
TT
15892 if (from_tty)
15893 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
d9b3f62e 15894 tp->base.number, count);
197f0a60
TT
15895}
15896
1042e4c0
SS
15897/* Set passcount for tracepoint.
15898
15899 First command argument is passcount, second is tracepoint number.
15900 If tracepoint number omitted, apply to most recently defined.
15901 Also accepts special argument "all". */
15902
15903static void
15904trace_pass_command (char *args, int from_tty)
15905{
d9b3f62e 15906 struct tracepoint *t1;
1042e4c0 15907 unsigned int count;
1042e4c0
SS
15908
15909 if (args == 0 || *args == 0)
3e43a32a
MS
15910 error (_("passcount command requires an "
15911 "argument (count + optional TP num)"));
1042e4c0 15912
4a64f543 15913 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 15914
529480d0 15915 args = skip_spaces (args);
1042e4c0
SS
15916 if (*args && strncasecmp (args, "all", 3) == 0)
15917 {
d9b3f62e
PA
15918 struct breakpoint *b;
15919
1042e4c0 15920 args += 3; /* Skip special argument "all". */
1042e4c0
SS
15921 if (*args)
15922 error (_("Junk at end of arguments."));
1042e4c0 15923
d9b3f62e 15924 ALL_TRACEPOINTS (b)
197f0a60 15925 {
d9b3f62e 15926 t1 = (struct tracepoint *) b;
197f0a60
TT
15927 trace_pass_set_count (t1, count, from_tty);
15928 }
15929 }
15930 else if (*args == '\0')
1042e4c0 15931 {
5fa1d40e 15932 t1 = get_tracepoint_by_number (&args, NULL);
1042e4c0 15933 if (t1)
197f0a60
TT
15934 trace_pass_set_count (t1, count, from_tty);
15935 }
15936 else
15937 {
15938 struct get_number_or_range_state state;
15939
15940 init_number_or_range (&state, args);
15941 while (!state.finished)
1042e4c0 15942 {
5fa1d40e 15943 t1 = get_tracepoint_by_number (&args, &state);
197f0a60
TT
15944 if (t1)
15945 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
15946 }
15947 }
1042e4c0
SS
15948}
15949
d9b3f62e 15950struct tracepoint *
1042e4c0
SS
15951get_tracepoint (int num)
15952{
15953 struct breakpoint *t;
15954
15955 ALL_TRACEPOINTS (t)
15956 if (t->number == num)
d9b3f62e 15957 return (struct tracepoint *) t;
1042e4c0
SS
15958
15959 return NULL;
15960}
15961
d5551862
SS
15962/* Find the tracepoint with the given target-side number (which may be
15963 different from the tracepoint number after disconnecting and
15964 reconnecting). */
15965
d9b3f62e 15966struct tracepoint *
d5551862
SS
15967get_tracepoint_by_number_on_target (int num)
15968{
d9b3f62e 15969 struct breakpoint *b;
d5551862 15970
d9b3f62e
PA
15971 ALL_TRACEPOINTS (b)
15972 {
15973 struct tracepoint *t = (struct tracepoint *) b;
15974
15975 if (t->number_on_target == num)
15976 return t;
15977 }
d5551862
SS
15978
15979 return NULL;
15980}
15981
1042e4c0 15982/* Utility: parse a tracepoint number and look it up in the list.
197f0a60 15983 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
5fa1d40e
YQ
15984 If the argument is missing, the most recent tracepoint
15985 (tracepoint_count) is returned. */
15986
d9b3f62e 15987struct tracepoint *
197f0a60 15988get_tracepoint_by_number (char **arg,
5fa1d40e 15989 struct get_number_or_range_state *state)
1042e4c0 15990{
1042e4c0
SS
15991 struct breakpoint *t;
15992 int tpnum;
15993 char *instring = arg == NULL ? NULL : *arg;
15994
197f0a60
TT
15995 if (state)
15996 {
15997 gdb_assert (!state->finished);
15998 tpnum = get_number_or_range (state);
15999 }
16000 else if (arg == NULL || *arg == NULL || ! **arg)
5fa1d40e 16001 tpnum = tracepoint_count;
1042e4c0 16002 else
197f0a60 16003 tpnum = get_number (arg);
1042e4c0
SS
16004
16005 if (tpnum <= 0)
16006 {
16007 if (instring && *instring)
16008 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
16009 instring);
16010 else
5fa1d40e 16011 printf_filtered (_("No previous tracepoint\n"));
1042e4c0
SS
16012 return NULL;
16013 }
16014
16015 ALL_TRACEPOINTS (t)
16016 if (t->number == tpnum)
16017 {
d9b3f62e 16018 return (struct tracepoint *) t;
1042e4c0
SS
16019 }
16020
1042e4c0
SS
16021 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
16022 return NULL;
16023}
16024
d9b3f62e
PA
16025void
16026print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
16027{
16028 if (b->thread != -1)
16029 fprintf_unfiltered (fp, " thread %d", b->thread);
16030
16031 if (b->task != 0)
16032 fprintf_unfiltered (fp, " task %d", b->task);
16033
16034 fprintf_unfiltered (fp, "\n");
16035}
16036
6149aea9
PA
16037/* Save information on user settable breakpoints (watchpoints, etc) to
16038 a new script file named FILENAME. If FILTER is non-NULL, call it
16039 on each breakpoint and only include the ones for which it returns
16040 non-zero. */
16041
1042e4c0 16042static void
6149aea9
PA
16043save_breakpoints (char *filename, int from_tty,
16044 int (*filter) (const struct breakpoint *))
1042e4c0
SS
16045{
16046 struct breakpoint *tp;
6149aea9 16047 int any = 0;
1042e4c0 16048 struct cleanup *cleanup;
a7bdde9e 16049 struct ui_file *fp;
6149aea9 16050 int extra_trace_bits = 0;
1042e4c0 16051
6149aea9
PA
16052 if (filename == 0 || *filename == 0)
16053 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
16054
16055 /* See if we have anything to save. */
6149aea9 16056 ALL_BREAKPOINTS (tp)
1042e4c0 16057 {
6149aea9 16058 /* Skip internal and momentary breakpoints. */
09d682a4 16059 if (!user_breakpoint_p (tp))
6149aea9
PA
16060 continue;
16061
16062 /* If we have a filter, only save the breakpoints it accepts. */
16063 if (filter && !filter (tp))
16064 continue;
16065
16066 any = 1;
16067
16068 if (is_tracepoint (tp))
16069 {
16070 extra_trace_bits = 1;
16071
16072 /* We can stop searching. */
16073 break;
16074 }
1042e4c0 16075 }
6149aea9
PA
16076
16077 if (!any)
1042e4c0 16078 {
6149aea9 16079 warning (_("Nothing to save."));
1042e4c0
SS
16080 return;
16081 }
16082
c718be47
PA
16083 filename = tilde_expand (filename);
16084 cleanup = make_cleanup (xfree, filename);
16085 fp = gdb_fopen (filename, "w");
059fb39f 16086 if (!fp)
6149aea9
PA
16087 error (_("Unable to open file '%s' for saving (%s)"),
16088 filename, safe_strerror (errno));
a7bdde9e 16089 make_cleanup_ui_file_delete (fp);
8bf6485c 16090
6149aea9
PA
16091 if (extra_trace_bits)
16092 save_trace_state_variables (fp);
8bf6485c 16093
6149aea9 16094 ALL_BREAKPOINTS (tp)
1042e4c0 16095 {
6149aea9 16096 /* Skip internal and momentary breakpoints. */
09d682a4 16097 if (!user_breakpoint_p (tp))
6149aea9 16098 continue;
8bf6485c 16099
6149aea9
PA
16100 /* If we have a filter, only save the breakpoints it accepts. */
16101 if (filter && !filter (tp))
16102 continue;
16103
348d480f 16104 tp->ops->print_recreate (tp, fp);
1042e4c0 16105
6149aea9
PA
16106 /* Note, we can't rely on tp->number for anything, as we can't
16107 assume the recreated breakpoint numbers will match. Use $bpnum
16108 instead. */
16109
16110 if (tp->cond_string)
16111 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
16112
16113 if (tp->ignore_count)
16114 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
16115
2d9442cc 16116 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 16117 {
a7bdde9e
VP
16118 volatile struct gdb_exception ex;
16119
6149aea9 16120 fprintf_unfiltered (fp, " commands\n");
a7bdde9e 16121
79a45e25 16122 ui_out_redirect (current_uiout, fp);
14dba4b4 16123 TRY_CATCH (ex, RETURN_MASK_ALL)
1042e4c0 16124 {
79a45e25 16125 print_command_lines (current_uiout, tp->commands->commands, 2);
a7bdde9e 16126 }
79a45e25 16127 ui_out_redirect (current_uiout, NULL);
1042e4c0 16128
a7bdde9e
VP
16129 if (ex.reason < 0)
16130 throw_exception (ex);
1042e4c0 16131
a7bdde9e 16132 fprintf_unfiltered (fp, " end\n");
1042e4c0 16133 }
6149aea9
PA
16134
16135 if (tp->enable_state == bp_disabled)
16136 fprintf_unfiltered (fp, "disable\n");
16137
16138 /* If this is a multi-location breakpoint, check if the locations
16139 should be individually disabled. Watchpoint locations are
16140 special, and not user visible. */
16141 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
16142 {
16143 struct bp_location *loc;
16144 int n = 1;
16145
16146 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
16147 if (!loc->enabled)
16148 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
16149 }
1042e4c0 16150 }
8bf6485c 16151
6149aea9 16152 if (extra_trace_bits && *default_collect)
8bf6485c
SS
16153 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
16154
1042e4c0 16155 if (from_tty)
6149aea9 16156 printf_filtered (_("Saved to file '%s'.\n"), filename);
c718be47 16157 do_cleanups (cleanup);
6149aea9
PA
16158}
16159
16160/* The `save breakpoints' command. */
16161
16162static void
16163save_breakpoints_command (char *args, int from_tty)
16164{
16165 save_breakpoints (args, from_tty, NULL);
16166}
16167
16168/* The `save tracepoints' command. */
16169
16170static void
16171save_tracepoints_command (char *args, int from_tty)
16172{
16173 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
16174}
16175
16176/* Create a vector of all tracepoints. */
16177
16178VEC(breakpoint_p) *
eeae04df 16179all_tracepoints (void)
1042e4c0
SS
16180{
16181 VEC(breakpoint_p) *tp_vec = 0;
16182 struct breakpoint *tp;
16183
16184 ALL_TRACEPOINTS (tp)
16185 {
16186 VEC_safe_push (breakpoint_p, tp_vec, tp);
16187 }
16188
16189 return tp_vec;
16190}
16191
c906108c 16192\f
4a64f543
MS
16193/* This help string is used for the break, hbreak, tbreak and thbreak
16194 commands. It is defined as a macro to prevent duplication.
16195 COMMAND should be a string constant containing the name of the
16196 command. */
31e2b00f 16197#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
16198command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
16199PROBE_MODIFIER shall be present if the command is to be placed in a\n\
16200probe point. Accepted values are `-probe' (for a generic, automatically\n\
16201guessed probe type) or `-probe-stap' (for a SystemTap probe).\n\
31e2b00f
AS
16202LOCATION may be a line number, function name, or \"*\" and an address.\n\
16203If a line number is specified, break at start of code for that line.\n\
16204If a function is specified, break at start of code for that function.\n\
16205If an address is specified, break at that exact address.\n\
dc10affe
PA
16206With no LOCATION, uses current execution address of the selected\n\
16207stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
16208\n\
16209THREADNUM is the number from \"info threads\".\n\
16210CONDITION is a boolean expression.\n\
16211\n\
d41c0fc8
PA
16212Multiple breakpoints at one place are permitted, and useful if their\n\
16213conditions are different.\n\
31e2b00f
AS
16214\n\
16215Do \"help breakpoints\" for info on other commands dealing with breakpoints."
16216
44feb3ce
TT
16217/* List of subcommands for "catch". */
16218static struct cmd_list_element *catch_cmdlist;
16219
16220/* List of subcommands for "tcatch". */
16221static struct cmd_list_element *tcatch_cmdlist;
16222
9ac4176b 16223void
44feb3ce 16224add_catch_command (char *name, char *docstring,
82ae6c8d 16225 cmd_sfunc_ftype *sfunc,
625e8578 16226 completer_ftype *completer,
44feb3ce
TT
16227 void *user_data_catch,
16228 void *user_data_tcatch)
16229{
16230 struct cmd_list_element *command;
16231
16232 command = add_cmd (name, class_breakpoint, NULL, docstring,
16233 &catch_cmdlist);
16234 set_cmd_sfunc (command, sfunc);
16235 set_cmd_context (command, user_data_catch);
a96d9b2e 16236 set_cmd_completer (command, completer);
44feb3ce
TT
16237
16238 command = add_cmd (name, class_breakpoint, NULL, docstring,
16239 &tcatch_cmdlist);
16240 set_cmd_sfunc (command, sfunc);
16241 set_cmd_context (command, user_data_tcatch);
a96d9b2e 16242 set_cmd_completer (command, completer);
44feb3ce
TT
16243}
16244
6c95b8df 16245static void
a79b8f6e 16246clear_syscall_counts (struct inferior *inf)
6c95b8df 16247{
fa3064dd
YQ
16248 struct catch_syscall_inferior_data *inf_data
16249 = get_catch_syscall_inferior_data (inf);
16250
16251 inf_data->total_syscalls_count = 0;
16252 inf_data->any_syscall_count = 0;
16253 VEC_free (int, inf_data->syscalls_counts);
6c95b8df
PA
16254}
16255
6149aea9
PA
16256static void
16257save_command (char *arg, int from_tty)
16258{
3e43a32a
MS
16259 printf_unfiltered (_("\"save\" must be followed by "
16260 "the name of a save subcommand.\n"));
635c7e8a 16261 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
6149aea9
PA
16262}
16263
84f4c1fe
PM
16264struct breakpoint *
16265iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
16266 void *data)
16267{
35df4500 16268 struct breakpoint *b, *b_tmp;
84f4c1fe 16269
35df4500 16270 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
16271 {
16272 if ((*callback) (b, data))
16273 return b;
16274 }
16275
16276 return NULL;
16277}
16278
0574c78f
GB
16279/* Zero if any of the breakpoint's locations could be a location where
16280 functions have been inlined, nonzero otherwise. */
16281
16282static int
16283is_non_inline_function (struct breakpoint *b)
16284{
16285 /* The shared library event breakpoint is set on the address of a
16286 non-inline function. */
16287 if (b->type == bp_shlib_event)
16288 return 1;
16289
16290 return 0;
16291}
16292
16293/* Nonzero if the specified PC cannot be a location where functions
16294 have been inlined. */
16295
16296int
09ac7c10
TT
16297pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc,
16298 const struct target_waitstatus *ws)
0574c78f
GB
16299{
16300 struct breakpoint *b;
16301 struct bp_location *bl;
16302
16303 ALL_BREAKPOINTS (b)
16304 {
16305 if (!is_non_inline_function (b))
16306 continue;
16307
16308 for (bl = b->loc; bl != NULL; bl = bl->next)
16309 {
16310 if (!bl->shlib_disabled
09ac7c10 16311 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
16312 return 1;
16313 }
16314 }
16315
16316 return 0;
16317}
16318
2f202fde
JK
16319/* Remove any references to OBJFILE which is going to be freed. */
16320
16321void
16322breakpoint_free_objfile (struct objfile *objfile)
16323{
16324 struct bp_location **locp, *loc;
16325
16326 ALL_BP_LOCATIONS (loc, locp)
16327 if (loc->symtab != NULL && loc->symtab->objfile == objfile)
16328 loc->symtab = NULL;
16329}
16330
2060206e
PA
16331void
16332initialize_breakpoint_ops (void)
16333{
16334 static int initialized = 0;
16335
16336 struct breakpoint_ops *ops;
16337
16338 if (initialized)
16339 return;
16340 initialized = 1;
16341
16342 /* The breakpoint_ops structure to be inherit by all kinds of
16343 breakpoints (real breakpoints, i.e., user "break" breakpoints,
16344 internal and momentary breakpoints, etc.). */
16345 ops = &bkpt_base_breakpoint_ops;
16346 *ops = base_breakpoint_ops;
16347 ops->re_set = bkpt_re_set;
16348 ops->insert_location = bkpt_insert_location;
16349 ops->remove_location = bkpt_remove_location;
16350 ops->breakpoint_hit = bkpt_breakpoint_hit;
983af33b
SDJ
16351 ops->create_sals_from_address = bkpt_create_sals_from_address;
16352 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
16353 ops->decode_linespec = bkpt_decode_linespec;
2060206e
PA
16354
16355 /* The breakpoint_ops structure to be used in regular breakpoints. */
16356 ops = &bkpt_breakpoint_ops;
16357 *ops = bkpt_base_breakpoint_ops;
16358 ops->re_set = bkpt_re_set;
16359 ops->resources_needed = bkpt_resources_needed;
16360 ops->print_it = bkpt_print_it;
16361 ops->print_mention = bkpt_print_mention;
16362 ops->print_recreate = bkpt_print_recreate;
16363
16364 /* Ranged breakpoints. */
16365 ops = &ranged_breakpoint_ops;
16366 *ops = bkpt_breakpoint_ops;
16367 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
16368 ops->resources_needed = resources_needed_ranged_breakpoint;
16369 ops->print_it = print_it_ranged_breakpoint;
16370 ops->print_one = print_one_ranged_breakpoint;
16371 ops->print_one_detail = print_one_detail_ranged_breakpoint;
16372 ops->print_mention = print_mention_ranged_breakpoint;
16373 ops->print_recreate = print_recreate_ranged_breakpoint;
16374
16375 /* Internal breakpoints. */
16376 ops = &internal_breakpoint_ops;
16377 *ops = bkpt_base_breakpoint_ops;
16378 ops->re_set = internal_bkpt_re_set;
16379 ops->check_status = internal_bkpt_check_status;
16380 ops->print_it = internal_bkpt_print_it;
16381 ops->print_mention = internal_bkpt_print_mention;
16382
16383 /* Momentary breakpoints. */
16384 ops = &momentary_breakpoint_ops;
16385 *ops = bkpt_base_breakpoint_ops;
16386 ops->re_set = momentary_bkpt_re_set;
16387 ops->check_status = momentary_bkpt_check_status;
16388 ops->print_it = momentary_bkpt_print_it;
16389 ops->print_mention = momentary_bkpt_print_mention;
16390
e2e4d78b
JK
16391 /* Momentary breakpoints for bp_longjmp and bp_exception. */
16392 ops = &longjmp_breakpoint_ops;
16393 *ops = momentary_breakpoint_ops;
16394 ops->dtor = longjmp_bkpt_dtor;
16395
55aa24fb
SDJ
16396 /* Probe breakpoints. */
16397 ops = &bkpt_probe_breakpoint_ops;
16398 *ops = bkpt_breakpoint_ops;
16399 ops->insert_location = bkpt_probe_insert_location;
16400 ops->remove_location = bkpt_probe_remove_location;
16401 ops->create_sals_from_address = bkpt_probe_create_sals_from_address;
16402 ops->decode_linespec = bkpt_probe_decode_linespec;
16403
2060206e
PA
16404 /* Watchpoints. */
16405 ops = &watchpoint_breakpoint_ops;
16406 *ops = base_breakpoint_ops;
3a5c3e22 16407 ops->dtor = dtor_watchpoint;
2060206e
PA
16408 ops->re_set = re_set_watchpoint;
16409 ops->insert_location = insert_watchpoint;
16410 ops->remove_location = remove_watchpoint;
16411 ops->breakpoint_hit = breakpoint_hit_watchpoint;
16412 ops->check_status = check_status_watchpoint;
16413 ops->resources_needed = resources_needed_watchpoint;
16414 ops->works_in_software_mode = works_in_software_mode_watchpoint;
16415 ops->print_it = print_it_watchpoint;
16416 ops->print_mention = print_mention_watchpoint;
16417 ops->print_recreate = print_recreate_watchpoint;
427cd150 16418 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
16419
16420 /* Masked watchpoints. */
16421 ops = &masked_watchpoint_breakpoint_ops;
16422 *ops = watchpoint_breakpoint_ops;
16423 ops->insert_location = insert_masked_watchpoint;
16424 ops->remove_location = remove_masked_watchpoint;
16425 ops->resources_needed = resources_needed_masked_watchpoint;
16426 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
16427 ops->print_it = print_it_masked_watchpoint;
16428 ops->print_one_detail = print_one_detail_masked_watchpoint;
16429 ops->print_mention = print_mention_masked_watchpoint;
16430 ops->print_recreate = print_recreate_masked_watchpoint;
16431
16432 /* Tracepoints. */
16433 ops = &tracepoint_breakpoint_ops;
16434 *ops = base_breakpoint_ops;
16435 ops->re_set = tracepoint_re_set;
16436 ops->breakpoint_hit = tracepoint_breakpoint_hit;
16437 ops->print_one_detail = tracepoint_print_one_detail;
16438 ops->print_mention = tracepoint_print_mention;
16439 ops->print_recreate = tracepoint_print_recreate;
983af33b
SDJ
16440 ops->create_sals_from_address = tracepoint_create_sals_from_address;
16441 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
16442 ops->decode_linespec = tracepoint_decode_linespec;
16443
55aa24fb
SDJ
16444 /* Probe tracepoints. */
16445 ops = &tracepoint_probe_breakpoint_ops;
16446 *ops = tracepoint_breakpoint_ops;
16447 ops->create_sals_from_address = tracepoint_probe_create_sals_from_address;
16448 ops->decode_linespec = tracepoint_probe_decode_linespec;
16449
983af33b
SDJ
16450 /* Static tracepoints with marker (`-m'). */
16451 ops = &strace_marker_breakpoint_ops;
16452 *ops = tracepoint_breakpoint_ops;
16453 ops->create_sals_from_address = strace_marker_create_sals_from_address;
16454 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
16455 ops->decode_linespec = strace_marker_decode_linespec;
2060206e
PA
16456
16457 /* Fork catchpoints. */
16458 ops = &catch_fork_breakpoint_ops;
16459 *ops = base_breakpoint_ops;
16460 ops->insert_location = insert_catch_fork;
16461 ops->remove_location = remove_catch_fork;
16462 ops->breakpoint_hit = breakpoint_hit_catch_fork;
16463 ops->print_it = print_it_catch_fork;
16464 ops->print_one = print_one_catch_fork;
16465 ops->print_mention = print_mention_catch_fork;
16466 ops->print_recreate = print_recreate_catch_fork;
16467
16468 /* Vfork catchpoints. */
16469 ops = &catch_vfork_breakpoint_ops;
16470 *ops = base_breakpoint_ops;
16471 ops->insert_location = insert_catch_vfork;
16472 ops->remove_location = remove_catch_vfork;
16473 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
16474 ops->print_it = print_it_catch_vfork;
16475 ops->print_one = print_one_catch_vfork;
16476 ops->print_mention = print_mention_catch_vfork;
16477 ops->print_recreate = print_recreate_catch_vfork;
16478
16479 /* Exec catchpoints. */
16480 ops = &catch_exec_breakpoint_ops;
16481 *ops = base_breakpoint_ops;
16482 ops->dtor = dtor_catch_exec;
16483 ops->insert_location = insert_catch_exec;
16484 ops->remove_location = remove_catch_exec;
16485 ops->breakpoint_hit = breakpoint_hit_catch_exec;
16486 ops->print_it = print_it_catch_exec;
16487 ops->print_one = print_one_catch_exec;
16488 ops->print_mention = print_mention_catch_exec;
16489 ops->print_recreate = print_recreate_catch_exec;
16490
16491 /* Syscall catchpoints. */
16492 ops = &catch_syscall_breakpoint_ops;
16493 *ops = base_breakpoint_ops;
16494 ops->dtor = dtor_catch_syscall;
16495 ops->insert_location = insert_catch_syscall;
16496 ops->remove_location = remove_catch_syscall;
16497 ops->breakpoint_hit = breakpoint_hit_catch_syscall;
16498 ops->print_it = print_it_catch_syscall;
16499 ops->print_one = print_one_catch_syscall;
16500 ops->print_mention = print_mention_catch_syscall;
16501 ops->print_recreate = print_recreate_catch_syscall;
edcc5120
TT
16502
16503 /* Solib-related catchpoints. */
16504 ops = &catch_solib_breakpoint_ops;
16505 *ops = base_breakpoint_ops;
16506 ops->dtor = dtor_catch_solib;
16507 ops->insert_location = insert_catch_solib;
16508 ops->remove_location = remove_catch_solib;
16509 ops->breakpoint_hit = breakpoint_hit_catch_solib;
16510 ops->check_status = check_status_catch_solib;
16511 ops->print_it = print_it_catch_solib;
16512 ops->print_one = print_one_catch_solib;
16513 ops->print_mention = print_mention_catch_solib;
16514 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
16515
16516 ops = &dprintf_breakpoint_ops;
16517 *ops = bkpt_base_breakpoint_ops;
5c2b4418 16518 ops->re_set = dprintf_re_set;
e7e0cddf
SS
16519 ops->resources_needed = bkpt_resources_needed;
16520 ops->print_it = bkpt_print_it;
16521 ops->print_mention = bkpt_print_mention;
2d9442cc 16522 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 16523 ops->after_condition_true = dprintf_after_condition_true;
cd1608cc 16524 ops->breakpoint_hit = dprintf_breakpoint_hit;
2060206e
PA
16525}
16526
8bfd80db
YQ
16527/* Chain containing all defined "enable breakpoint" subcommands. */
16528
16529static struct cmd_list_element *enablebreaklist = NULL;
16530
c906108c 16531void
fba45db2 16532_initialize_breakpoint (void)
c906108c
SS
16533{
16534 struct cmd_list_element *c;
16535
2060206e
PA
16536 initialize_breakpoint_ops ();
16537
84acb35a 16538 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
63644780 16539 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
6c95b8df 16540 observer_attach_inferior_exit (clear_syscall_counts);
1f3b5d1b 16541 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 16542
55aa24fb
SDJ
16543 breakpoint_objfile_key
16544 = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes);
17450429 16545
fa3064dd 16546 catch_syscall_inferior_data
8e260fc0
TT
16547 = register_inferior_data_with_cleanup (NULL,
16548 catch_syscall_inferior_data_cleanup);
fa3064dd 16549
c906108c
SS
16550 breakpoint_chain = 0;
16551 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
16552 before a breakpoint is set. */
16553 breakpoint_count = 0;
16554
1042e4c0
SS
16555 tracepoint_count = 0;
16556
1bedd215
AC
16557 add_com ("ignore", class_breakpoint, ignore_command, _("\
16558Set ignore-count of breakpoint number N to COUNT.\n\
16559Usage is `ignore N COUNT'."));
c906108c 16560 if (xdb_commands)
c5aa993b 16561 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 16562
1bedd215
AC
16563 add_com ("commands", class_breakpoint, commands_command, _("\
16564Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
16565Give breakpoint number as argument after \"commands\".\n\
16566With no argument, the targeted breakpoint is the last one set.\n\
16567The commands themselves follow starting on the next line.\n\
16568Type a line containing \"end\" to indicate the end of them.\n\
16569Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 16570then no output is printed when it is hit, except what the commands print."));
c906108c 16571
d55637df 16572 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 16573Specify breakpoint number N to break only if COND is true.\n\
c906108c 16574Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 16575expression to be evaluated whenever breakpoint N is reached."));
d55637df 16576 set_cmd_completer (c, condition_completer);
c906108c 16577
1bedd215 16578 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 16579Set a temporary breakpoint.\n\
c906108c
SS
16580Like \"break\" except the breakpoint is only temporary,\n\
16581so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
16582by using \"enable delete\" on the breakpoint number.\n\
16583\n"
16584BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 16585 set_cmd_completer (c, location_completer);
c94fdfd0 16586
1bedd215 16587 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 16588Set a hardware assisted breakpoint.\n\
c906108c 16589Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
16590some target hardware may not have this support.\n\
16591\n"
16592BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 16593 set_cmd_completer (c, location_completer);
c906108c 16594
1bedd215 16595 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 16596Set a temporary hardware assisted breakpoint.\n\
c906108c 16597Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
16598so it will be deleted when hit.\n\
16599\n"
16600BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 16601 set_cmd_completer (c, location_completer);
c906108c 16602
1bedd215
AC
16603 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
16604Enable some breakpoints.\n\
c906108c
SS
16605Give breakpoint numbers (separated by spaces) as arguments.\n\
16606With no subcommand, breakpoints are enabled until you command otherwise.\n\
16607This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16608With a subcommand you can enable temporarily."),
c906108c
SS
16609 &enablelist, "enable ", 1, &cmdlist);
16610 if (xdb_commands)
1bedd215
AC
16611 add_com ("ab", class_breakpoint, enable_command, _("\
16612Enable some breakpoints.\n\
c906108c
SS
16613Give breakpoint numbers (separated by spaces) as arguments.\n\
16614With no subcommand, breakpoints are enabled until you command otherwise.\n\
16615This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16616With a subcommand you can enable temporarily."));
c906108c
SS
16617
16618 add_com_alias ("en", "enable", class_breakpoint, 1);
16619
84951ab5 16620 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 16621Enable some breakpoints.\n\
c906108c
SS
16622Give breakpoint numbers (separated by spaces) as arguments.\n\
16623This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16624May be abbreviated to simply \"enable\".\n"),
c5aa993b 16625 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 16626
1a966eab
AC
16627 add_cmd ("once", no_class, enable_once_command, _("\
16628Enable breakpoints for one hit. Give breakpoint numbers.\n\
16629If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
16630 &enablebreaklist);
16631
1a966eab
AC
16632 add_cmd ("delete", no_class, enable_delete_command, _("\
16633Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16634If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16635 &enablebreaklist);
16636
816338b5
SS
16637 add_cmd ("count", no_class, enable_count_command, _("\
16638Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16639If a breakpoint is hit while enabled in this fashion,\n\
16640the count is decremented; when it reaches zero, the breakpoint is disabled."),
16641 &enablebreaklist);
16642
1a966eab
AC
16643 add_cmd ("delete", no_class, enable_delete_command, _("\
16644Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16645If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16646 &enablelist);
16647
1a966eab
AC
16648 add_cmd ("once", no_class, enable_once_command, _("\
16649Enable breakpoints for one hit. Give breakpoint numbers.\n\
16650If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
16651 &enablelist);
16652
16653 add_cmd ("count", no_class, enable_count_command, _("\
16654Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16655If a breakpoint is hit while enabled in this fashion,\n\
16656the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
16657 &enablelist);
16658
1bedd215
AC
16659 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
16660Disable some breakpoints.\n\
c906108c
SS
16661Arguments are breakpoint numbers with spaces in between.\n\
16662To disable all breakpoints, give no argument.\n\
64b9b334 16663A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
16664 &disablelist, "disable ", 1, &cmdlist);
16665 add_com_alias ("dis", "disable", class_breakpoint, 1);
16666 add_com_alias ("disa", "disable", class_breakpoint, 1);
16667 if (xdb_commands)
1bedd215
AC
16668 add_com ("sb", class_breakpoint, disable_command, _("\
16669Disable some breakpoints.\n\
c906108c
SS
16670Arguments are breakpoint numbers with spaces in between.\n\
16671To disable all breakpoints, give no argument.\n\
64b9b334 16672A disabled breakpoint is not forgotten, but has no effect until re-enabled."));
c906108c 16673
1a966eab
AC
16674 add_cmd ("breakpoints", class_alias, disable_command, _("\
16675Disable some breakpoints.\n\
c906108c
SS
16676Arguments are breakpoint numbers with spaces in between.\n\
16677To disable all breakpoints, give no argument.\n\
64b9b334 16678A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 16679This command may be abbreviated \"disable\"."),
c906108c
SS
16680 &disablelist);
16681
1bedd215
AC
16682 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
16683Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16684Arguments are breakpoint numbers with spaces in between.\n\
16685To delete all breakpoints, give no argument.\n\
16686\n\
16687Also a prefix command for deletion of other GDB objects.\n\
1bedd215 16688The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
16689 &deletelist, "delete ", 1, &cmdlist);
16690 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 16691 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 16692 if (xdb_commands)
1bedd215
AC
16693 add_com ("db", class_breakpoint, delete_command, _("\
16694Delete some breakpoints.\n\
c906108c 16695Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 16696To delete all breakpoints, give no argument.\n"));
c906108c 16697
1a966eab
AC
16698 add_cmd ("breakpoints", class_alias, delete_command, _("\
16699Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16700Arguments are breakpoint numbers with spaces in between.\n\
16701To delete all breakpoints, give no argument.\n\
1a966eab 16702This command may be abbreviated \"delete\"."),
c906108c
SS
16703 &deletelist);
16704
1bedd215
AC
16705 add_com ("clear", class_breakpoint, clear_command, _("\
16706Clear breakpoint at specified line or function.\n\
c906108c
SS
16707Argument may be line number, function name, or \"*\" and an address.\n\
16708If line number is specified, all breakpoints in that line are cleared.\n\
16709If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
16710If an address is specified, breakpoints at that address are cleared.\n\
16711\n\
16712With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
16713is executing in.\n\
16714\n\
1bedd215 16715See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 16716 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 16717
1bedd215 16718 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
16719Set breakpoint at specified line or function.\n"
16720BREAK_ARGS_HELP ("break")));
5ba2abeb 16721 set_cmd_completer (c, location_completer);
c94fdfd0 16722
c906108c
SS
16723 add_com_alias ("b", "break", class_run, 1);
16724 add_com_alias ("br", "break", class_run, 1);
16725 add_com_alias ("bre", "break", class_run, 1);
16726 add_com_alias ("brea", "break", class_run, 1);
16727
7681d515
PM
16728 if (xdb_commands)
16729 add_com_alias ("ba", "break", class_breakpoint, 1);
c906108c
SS
16730
16731 if (dbx_commands)
16732 {
1bedd215
AC
16733 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
16734Break in function/address or break at a line in the current file."),
c5aa993b
JM
16735 &stoplist, "stop ", 1, &cmdlist);
16736 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 16737 _("Break in function or address."), &stoplist);
c5aa993b 16738 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 16739 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
16740 add_com ("status", class_info, breakpoints_info, _("\
16741Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16742The \"Type\" column indicates one of:\n\
16743\tbreakpoint - normal breakpoint\n\
16744\twatchpoint - watchpoint\n\
16745The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16746the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16747breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16748address and file/line number respectively.\n\
16749\n\
16750Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16751are set to the address of the last breakpoint listed unless the command\n\
16752is prefixed with \"server \".\n\n\
c906108c 16753Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16754breakpoint set."));
c906108c
SS
16755 }
16756
1bedd215 16757 add_info ("breakpoints", breakpoints_info, _("\
e5a67952 16758Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
16759The \"Type\" column indicates one of:\n\
16760\tbreakpoint - normal breakpoint\n\
16761\twatchpoint - watchpoint\n\
16762The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16763the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16764breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16765address and file/line number respectively.\n\
16766\n\
16767Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16768are set to the address of the last breakpoint listed unless the command\n\
16769is prefixed with \"server \".\n\n\
c906108c 16770Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16771breakpoint set."));
c906108c 16772
6b04bdb7
MS
16773 add_info_alias ("b", "breakpoints", 1);
16774
c906108c 16775 if (xdb_commands)
1bedd215
AC
16776 add_com ("lb", class_breakpoint, breakpoints_info, _("\
16777Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16778The \"Type\" column indicates one of:\n\
16779\tbreakpoint - normal breakpoint\n\
16780\twatchpoint - watchpoint\n\
16781The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16782the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16783breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16784address and file/line number respectively.\n\
16785\n\
16786Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16787are set to the address of the last breakpoint listed unless the command\n\
16788is prefixed with \"server \".\n\n\
c906108c 16789Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16790breakpoint set."));
c906108c 16791
1a966eab
AC
16792 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
16793Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16794The \"Type\" column indicates one of:\n\
16795\tbreakpoint - normal breakpoint\n\
16796\twatchpoint - watchpoint\n\
16797\tlongjmp - internal breakpoint used to step through longjmp()\n\
16798\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
16799\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
16800\tfinish - internal breakpoint used by the \"finish\" command\n\
16801The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
16802the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16803breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
16804address and file/line number respectively.\n\
16805\n\
16806Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16807are set to the address of the last breakpoint listed unless the command\n\
16808is prefixed with \"server \".\n\n\
c906108c 16809Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 16810breakpoint set."),
c906108c
SS
16811 &maintenanceinfolist);
16812
44feb3ce
TT
16813 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
16814Set catchpoints to catch events."),
16815 &catch_cmdlist, "catch ",
16816 0/*allow-unknown*/, &cmdlist);
16817
16818 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
16819Set temporary catchpoints to catch events."),
16820 &tcatch_cmdlist, "tcatch ",
16821 0/*allow-unknown*/, &cmdlist);
16822
44feb3ce
TT
16823 add_catch_command ("fork", _("Catch calls to fork."),
16824 catch_fork_command_1,
a96d9b2e 16825 NULL,
44feb3ce
TT
16826 (void *) (uintptr_t) catch_fork_permanent,
16827 (void *) (uintptr_t) catch_fork_temporary);
16828 add_catch_command ("vfork", _("Catch calls to vfork."),
16829 catch_fork_command_1,
a96d9b2e 16830 NULL,
44feb3ce
TT
16831 (void *) (uintptr_t) catch_vfork_permanent,
16832 (void *) (uintptr_t) catch_vfork_temporary);
16833 add_catch_command ("exec", _("Catch calls to exec."),
16834 catch_exec_command_1,
a96d9b2e
SDJ
16835 NULL,
16836 CATCH_PERMANENT,
16837 CATCH_TEMPORARY);
edcc5120
TT
16838 add_catch_command ("load", _("Catch loads of shared libraries.\n\
16839Usage: catch load [REGEX]\n\
16840If REGEX is given, only stop for libraries matching the regular expression."),
16841 catch_load_command_1,
16842 NULL,
16843 CATCH_PERMANENT,
16844 CATCH_TEMPORARY);
16845 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
16846Usage: catch unload [REGEX]\n\
16847If REGEX is given, only stop for libraries matching the regular expression."),
16848 catch_unload_command_1,
16849 NULL,
16850 CATCH_PERMANENT,
16851 CATCH_TEMPORARY);
a96d9b2e
SDJ
16852 add_catch_command ("syscall", _("\
16853Catch system calls by their names and/or numbers.\n\
16854Arguments say which system calls to catch. If no arguments\n\
16855are given, every system call will be caught.\n\
16856Arguments, if given, should be one or more system call names\n\
16857(if your system supports that), or system call numbers."),
16858 catch_syscall_command_1,
16859 catch_syscall_completer,
44feb3ce
TT
16860 CATCH_PERMANENT,
16861 CATCH_TEMPORARY);
c5aa993b 16862
1bedd215
AC
16863 c = add_com ("watch", class_breakpoint, watch_command, _("\
16864Set a watchpoint for an expression.\n\
06a64a0b 16865Usage: watch [-l|-location] EXPRESSION\n\
c906108c 16866A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16867an expression changes.\n\
16868If -l or -location is given, this evaluates EXPRESSION and watches\n\
16869the memory to which it refers."));
65d12d83 16870 set_cmd_completer (c, expression_completer);
c906108c 16871
1bedd215
AC
16872 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
16873Set a read watchpoint for an expression.\n\
06a64a0b 16874Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 16875A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16876an expression is read.\n\
16877If -l or -location is given, this evaluates EXPRESSION and watches\n\
16878the memory to which it refers."));
65d12d83 16879 set_cmd_completer (c, expression_completer);
c906108c 16880
1bedd215
AC
16881 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
16882Set a watchpoint for an expression.\n\
06a64a0b 16883Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 16884A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16885an expression is either read or written.\n\
16886If -l or -location is given, this evaluates EXPRESSION and watches\n\
16887the memory to which it refers."));
65d12d83 16888 set_cmd_completer (c, expression_completer);
c906108c 16889
d77f58be 16890 add_info ("watchpoints", watchpoints_info, _("\
e5a67952 16891Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 16892
920d2a44
AC
16893 /* XXX: cagney/2005-02-23: This should be a boolean, and should
16894 respond to changes - contrary to the description. */
85c07804
AC
16895 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
16896 &can_use_hw_watchpoints, _("\
16897Set debugger's willingness to use watchpoint hardware."), _("\
16898Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
16899If zero, gdb will not use hardware for new watchpoints, even if\n\
16900such is available. (However, any hardware watchpoints that were\n\
16901created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
16902hardware.)"),
16903 NULL,
920d2a44 16904 show_can_use_hw_watchpoints,
85c07804 16905 &setlist, &showlist);
c906108c
SS
16906
16907 can_use_hw_watchpoints = 1;
fa8d40ab 16908
1042e4c0
SS
16909 /* Tracepoint manipulation commands. */
16910
16911 c = add_com ("trace", class_breakpoint, trace_command, _("\
16912Set a tracepoint at specified line or function.\n\
16913\n"
16914BREAK_ARGS_HELP ("trace") "\n\
16915Do \"help tracepoints\" for info on other tracepoint commands."));
16916 set_cmd_completer (c, location_completer);
16917
16918 add_com_alias ("tp", "trace", class_alias, 0);
16919 add_com_alias ("tr", "trace", class_alias, 1);
16920 add_com_alias ("tra", "trace", class_alias, 1);
16921 add_com_alias ("trac", "trace", class_alias, 1);
16922
7a697b8d
SS
16923 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
16924Set a fast tracepoint at specified line or function.\n\
16925\n"
16926BREAK_ARGS_HELP ("ftrace") "\n\
16927Do \"help tracepoints\" for info on other tracepoint commands."));
16928 set_cmd_completer (c, location_completer);
16929
0fb4aa4b
PA
16930 c = add_com ("strace", class_breakpoint, strace_command, _("\
16931Set a static tracepoint at specified line, function or marker.\n\
16932\n\
16933strace [LOCATION] [if CONDITION]\n\
16934LOCATION may be a line number, function name, \"*\" and an address,\n\
16935or -m MARKER_ID.\n\
16936If a line number is specified, probe the marker at start of code\n\
16937for that line. If a function is specified, probe the marker at start\n\
16938of code for that function. If an address is specified, probe the marker\n\
16939at that exact address. If a marker id is specified, probe the marker\n\
16940with that name. With no LOCATION, uses current execution address of\n\
16941the selected stack frame.\n\
16942Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
16943This collects arbitrary user data passed in the probe point call to the\n\
16944tracing library. You can inspect it when analyzing the trace buffer,\n\
16945by printing the $_sdata variable like any other convenience variable.\n\
16946\n\
16947CONDITION is a boolean expression.\n\
16948\n\
d41c0fc8
PA
16949Multiple tracepoints at one place are permitted, and useful if their\n\
16950conditions are different.\n\
0fb4aa4b
PA
16951\n\
16952Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
16953Do \"help tracepoints\" for info on other tracepoint commands."));
16954 set_cmd_completer (c, location_completer);
16955
1042e4c0 16956 add_info ("tracepoints", tracepoints_info, _("\
e5a67952 16957Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
16958Convenience variable \"$tpnum\" contains the number of the\n\
16959last tracepoint set."));
16960
16961 add_info_alias ("tp", "tracepoints", 1);
16962
16963 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
16964Delete specified tracepoints.\n\
16965Arguments are tracepoint numbers, separated by spaces.\n\
16966No argument means delete all tracepoints."),
16967 &deletelist);
7e20dfcd 16968 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
16969
16970 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
16971Disable specified tracepoints.\n\
16972Arguments are tracepoint numbers, separated by spaces.\n\
16973No argument means disable all tracepoints."),
16974 &disablelist);
16975 deprecate_cmd (c, "disable");
16976
16977 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
16978Enable specified tracepoints.\n\
16979Arguments are tracepoint numbers, separated by spaces.\n\
16980No argument means enable all tracepoints."),
16981 &enablelist);
16982 deprecate_cmd (c, "enable");
16983
16984 add_com ("passcount", class_trace, trace_pass_command, _("\
16985Set the passcount for a tracepoint.\n\
16986The trace will end when the tracepoint has been passed 'count' times.\n\
16987Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
16988if TPNUM is omitted, passcount refers to the last tracepoint defined."));
16989
6149aea9
PA
16990 add_prefix_cmd ("save", class_breakpoint, save_command,
16991 _("Save breakpoint definitions as a script."),
16992 &save_cmdlist, "save ",
16993 0/*allow-unknown*/, &cmdlist);
16994
16995 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
16996Save current breakpoint definitions as a script.\n\
cce7e648 16997This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
16998catchpoints, tracepoints). Use the 'source' command in another debug\n\
16999session to restore them."),
17000 &save_cmdlist);
17001 set_cmd_completer (c, filename_completer);
17002
17003 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 17004Save current tracepoint definitions as a script.\n\
6149aea9
PA
17005Use the 'source' command in another debug session to restore them."),
17006 &save_cmdlist);
1042e4c0
SS
17007 set_cmd_completer (c, filename_completer);
17008
6149aea9
PA
17009 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
17010 deprecate_cmd (c, "save tracepoints");
17011
1bedd215 17012 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
17013Breakpoint specific settings\n\
17014Configure various breakpoint-specific variables such as\n\
1bedd215 17015pending breakpoint behavior"),
fa8d40ab
JJ
17016 &breakpoint_set_cmdlist, "set breakpoint ",
17017 0/*allow-unknown*/, &setlist);
1bedd215 17018 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
17019Breakpoint specific settings\n\
17020Configure various breakpoint-specific variables such as\n\
1bedd215 17021pending breakpoint behavior"),
fa8d40ab
JJ
17022 &breakpoint_show_cmdlist, "show breakpoint ",
17023 0/*allow-unknown*/, &showlist);
17024
7915a72c
AC
17025 add_setshow_auto_boolean_cmd ("pending", no_class,
17026 &pending_break_support, _("\
17027Set debugger's behavior regarding pending breakpoints."), _("\
17028Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
17029If on, an unrecognized breakpoint location will cause gdb to create a\n\
17030pending breakpoint. If off, an unrecognized breakpoint location results in\n\
17031an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 17032user-query to see if a pending breakpoint should be created."),
2c5b56ce 17033 NULL,
920d2a44 17034 show_pending_break_support,
6e1d7d6c
AC
17035 &breakpoint_set_cmdlist,
17036 &breakpoint_show_cmdlist);
fa8d40ab
JJ
17037
17038 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
17039
17040 add_setshow_boolean_cmd ("auto-hw", no_class,
17041 &automatic_hardware_breakpoints, _("\
17042Set automatic usage of hardware breakpoints."), _("\
17043Show automatic usage of hardware breakpoints."), _("\
17044If set, the debugger will automatically use hardware breakpoints for\n\
17045breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
17046a warning will be emitted for such breakpoints."),
17047 NULL,
17048 show_automatic_hardware_breakpoints,
17049 &breakpoint_set_cmdlist,
17050 &breakpoint_show_cmdlist);
74960c60 17051
a25a5a45
PA
17052 add_setshow_boolean_cmd ("always-inserted", class_support,
17053 &always_inserted_mode, _("\
74960c60
VP
17054Set mode for inserting breakpoints."), _("\
17055Show mode for inserting breakpoints."), _("\
a25a5a45
PA
17056When this mode is on, breakpoints are inserted immediately as soon as\n\
17057they're created, kept inserted even when execution stops, and removed\n\
17058only when the user deletes them. When this mode is off (the default),\n\
17059breakpoints are inserted only when execution continues, and removed\n\
17060when execution stops."),
72d0e2c5
YQ
17061 NULL,
17062 &show_always_inserted_mode,
17063 &breakpoint_set_cmdlist,
17064 &breakpoint_show_cmdlist);
f1310107 17065
b775012e
LM
17066 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
17067 condition_evaluation_enums,
17068 &condition_evaluation_mode_1, _("\
17069Set mode of breakpoint condition evaluation."), _("\
17070Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 17071When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
17072evaluated on the host's side by GDB. When it is set to \"target\",\n\
17073breakpoint conditions will be downloaded to the target (if the target\n\
17074supports such feature) and conditions will be evaluated on the target's side.\n\
17075If this is set to \"auto\" (default), this will be automatically set to\n\
17076\"target\" if it supports condition evaluation, otherwise it will\n\
17077be set to \"gdb\""),
17078 &set_condition_evaluation_mode,
17079 &show_condition_evaluation_mode,
17080 &breakpoint_set_cmdlist,
17081 &breakpoint_show_cmdlist);
17082
f1310107
TJB
17083 add_com ("break-range", class_breakpoint, break_range_command, _("\
17084Set a breakpoint for an address range.\n\
17085break-range START-LOCATION, END-LOCATION\n\
17086where START-LOCATION and END-LOCATION can be one of the following:\n\
17087 LINENUM, for that line in the current file,\n\
17088 FILE:LINENUM, for that line in that file,\n\
17089 +OFFSET, for that number of lines after the current line\n\
17090 or the start of the range\n\
17091 FUNCTION, for the first line in that function,\n\
17092 FILE:FUNCTION, to distinguish among like-named static functions.\n\
17093 *ADDRESS, for the instruction at that address.\n\
17094\n\
17095The breakpoint will stop execution of the inferior whenever it executes\n\
17096an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
17097range (including START-LOCATION and END-LOCATION)."));
17098
e7e0cddf
SS
17099 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
17100Set a dynamic printf at specified line or function.\n\
17101dprintf location,format string,arg1,arg2,...\n\
17102location may be a line number, function name, or \"*\" and an address.\n\
17103If a line number is specified, break at start of code for that line.\n\
0e4777df 17104If a function is specified, break at start of code for that function."));
e7e0cddf
SS
17105 set_cmd_completer (c, location_completer);
17106
17107 add_setshow_enum_cmd ("dprintf-style", class_support,
17108 dprintf_style_enums, &dprintf_style, _("\
17109Set the style of usage for dynamic printf."), _("\
17110Show the style of usage for dynamic printf."), _("\
17111This setting chooses how GDB will do a dynamic printf.\n\
17112If the value is \"gdb\", then the printing is done by GDB to its own\n\
17113console, as with the \"printf\" command.\n\
17114If the value is \"call\", the print is done by calling a function in your\n\
17115program; by default printf(), but you can choose a different function or\n\
17116output stream by setting dprintf-function and dprintf-channel."),
17117 update_dprintf_commands, NULL,
17118 &setlist, &showlist);
17119
17120 dprintf_function = xstrdup ("printf");
17121 add_setshow_string_cmd ("dprintf-function", class_support,
17122 &dprintf_function, _("\
17123Set the function to use for dynamic printf"), _("\
17124Show the function to use for dynamic printf"), NULL,
17125 update_dprintf_commands, NULL,
17126 &setlist, &showlist);
17127
17128 dprintf_channel = xstrdup ("");
17129 add_setshow_string_cmd ("dprintf-channel", class_support,
17130 &dprintf_channel, _("\
17131Set the channel to use for dynamic printf"), _("\
17132Show the channel to use for dynamic printf"), NULL,
17133 update_dprintf_commands, NULL,
17134 &setlist, &showlist);
17135
d3ce09f5
SS
17136 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
17137 &disconnected_dprintf, _("\
17138Set whether dprintf continues after GDB disconnects."), _("\
17139Show whether dprintf continues after GDB disconnects."), _("\
17140Use this to let dprintf commands continue to hit and produce output\n\
17141even if GDB disconnects or detaches from the target."),
17142 NULL,
17143 NULL,
17144 &setlist, &showlist);
17145
17146 add_com ("agent-printf", class_vars, agent_printf_command, _("\
17147agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
17148(target agent only) This is useful for formatted output in user-defined commands."));
17149
765dc015 17150 automatic_hardware_breakpoints = 1;
f3b1572e
PA
17151
17152 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
49fa26b0 17153 observer_attach_thread_exit (remove_threaded_breakpoints);
c906108c 17154}
This page took 3.254421 seconds and 4 git commands to generate.