Do not load .eh_frame section from separete object files
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
7b6bb8da 5 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
a6d9a66e 23#include "arch-utils.h"
c906108c 24#include <ctype.h>
776592bf 25#include "hashtab.h"
c906108c
SS
26#include "symtab.h"
27#include "frame.h"
28#include "breakpoint.h"
1042e4c0 29#include "tracepoint.h"
c906108c
SS
30#include "gdbtypes.h"
31#include "expression.h"
32#include "gdbcore.h"
33#include "gdbcmd.h"
34#include "value.h"
35#include "command.h"
36#include "inferior.h"
37#include "gdbthread.h"
38#include "target.h"
39#include "language.h"
40#include "gdb_string.h"
41#include "demangle.h"
0ba1096a 42#include "filenames.h"
c906108c
SS
43#include "annotate.h"
44#include "symfile.h"
45#include "objfiles.h"
0378c332 46#include "source.h"
c5f0f3d0 47#include "linespec.h"
c94fdfd0 48#include "completer.h"
5b7f31a4 49#include "gdb.h"
8b93c638 50#include "ui-out.h"
e1507482 51#include "cli/cli-script.h"
0225421b 52#include "gdb_assert.h"
fe898f56 53#include "block.h"
a77053c2 54#include "solib.h"
84acb35a
JJ
55#include "solist.h"
56#include "observer.h"
60250e8b 57#include "exceptions.h"
765dc015 58#include "memattr.h"
f7f9143b 59#include "ada-lang.h"
d1aa2f50 60#include "top.h"
fa4727a6 61#include "wrapper.h"
79a45b7d 62#include "valprint.h"
4efc6507 63#include "jit.h"
a96d9b2e 64#include "xml-syscall.h"
65d79d4b 65#include "parser-defs.h"
e9cafbcc 66#include "cli/cli-utils.h"
be34f849 67#include "continuations.h"
c906108c 68
1042e4c0
SS
69/* readline include files */
70#include "readline/readline.h"
71#include "readline/history.h"
72
73/* readline defines this. */
74#undef savestring
75
034dad6f 76#include "mi/mi-common.h"
7371cf6d 77#include "python/python.h"
104c1213 78
4a64f543 79/* Prototypes for local functions. */
c906108c 80
a14ed312 81static void enable_delete_command (char *, int);
c906108c 82
a14ed312 83static void enable_once_command (char *, int);
c906108c 84
a14ed312 85static void disable_command (char *, int);
c906108c 86
a14ed312 87static void enable_command (char *, int);
c906108c 88
95a42b64
TT
89static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
90 void *),
91 void *);
c906108c 92
a14ed312 93static void ignore_command (char *, int);
c906108c 94
4efb68b1 95static int breakpoint_re_set_one (void *);
c906108c 96
a14ed312 97static void clear_command (char *, int);
c906108c 98
a14ed312 99static void catch_command (char *, int);
c906108c 100
a9634178 101static int can_use_hardware_watchpoint (struct value *);
c906108c 102
98deb0da 103static void break_command_1 (char *, int, int);
c906108c 104
a14ed312 105static void mention (struct breakpoint *);
c906108c 106
4a64f543
MS
107/* This function is used in gdbtk sources and thus can not be made
108 static. */
63c252f8 109struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
a6d9a66e
UW
110 struct symtab_and_line,
111 enum bptype);
c906108c 112
76897487
KB
113static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
114
a6d9a66e
UW
115static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
116 CORE_ADDR bpaddr,
88f7da05 117 enum bptype bptype);
76897487 118
6c95b8df
PA
119static void describe_other_breakpoints (struct gdbarch *,
120 struct program_space *, CORE_ADDR,
5af949e3 121 struct obj_section *, int);
c906108c 122
6c95b8df
PA
123static int breakpoint_address_match (struct address_space *aspace1,
124 CORE_ADDR addr1,
125 struct address_space *aspace2,
126 CORE_ADDR addr2);
127
85d721b8
PA
128static int watchpoint_locations_match (struct bp_location *loc1,
129 struct bp_location *loc2);
130
f1310107
TJB
131static int breakpoint_location_address_match (struct bp_location *bl,
132 struct address_space *aspace,
133 CORE_ADDR addr);
134
a14ed312 135static void breakpoints_info (char *, int);
c906108c 136
d77f58be
SS
137static void watchpoints_info (char *, int);
138
e5a67952
MS
139static int breakpoint_1 (char *, int,
140 int (*) (const struct breakpoint *));
c906108c 141
4efb68b1 142static int breakpoint_cond_eval (void *);
c906108c 143
4efb68b1 144static void cleanup_executing_breakpoints (void *);
c906108c 145
a14ed312 146static void commands_command (char *, int);
c906108c 147
a14ed312 148static void condition_command (char *, int);
c906108c 149
c5aa993b
JM
150typedef enum
151 {
152 mark_inserted,
153 mark_uninserted
154 }
155insertion_state_t;
c906108c 156
0bde7532 157static int remove_breakpoint (struct bp_location *, insertion_state_t);
6c95b8df 158static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
c906108c 159
a14ed312 160static enum print_stop_action print_it_typical (bpstat);
e514a9d6
JM
161
162static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 163
4efb68b1 164static int watchpoint_check (void *);
c906108c 165
a14ed312 166static void maintenance_info_breakpoints (char *, int);
c906108c 167
a14ed312 168static int hw_breakpoint_used_count (void);
c906108c 169
a14ed312 170static int hw_watchpoint_used_count (enum bptype, int *);
c906108c 171
a14ed312 172static void hbreak_command (char *, int);
c906108c 173
a14ed312 174static void thbreak_command (char *, int);
c906108c 175
51be5b68 176static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp);
c906108c 177
a14ed312 178static void stop_command (char *arg, int from_tty);
7a292a7a 179
a14ed312 180static void stopin_command (char *arg, int from_tty);
7a292a7a 181
a14ed312 182static void stopat_command (char *arg, int from_tty);
7a292a7a 183
a14ed312 184static char *ep_parse_optional_if_clause (char **arg);
7a292a7a 185
d85310f7
MS
186static void catch_exception_command_1 (enum exception_event_kind ex_event,
187 char *arg, int tempflag, int from_tty);
7a292a7a 188
a14ed312 189static void tcatch_command (char *arg, int from_tty);
7a292a7a 190
d03285ec
UW
191static void detach_single_step_breakpoints (void);
192
6c95b8df
PA
193static int single_step_breakpoint_inserted_here_p (struct address_space *,
194 CORE_ADDR pc);
1aafd4da 195
fe3f5fa8 196static void free_bp_location (struct bp_location *loc);
f431efe5
PA
197static void incref_bp_location (struct bp_location *loc);
198static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 199
39d61571 200static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 201
b60e7edf 202static void update_global_location_list (int);
a5606eee 203
b60e7edf 204static void update_global_location_list_nothrow (int);
74960c60 205
d77f58be 206static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60 207
d77f58be 208static int is_watchpoint (const struct breakpoint *bpt);
60e1c644 209
74960c60 210static void insert_breakpoint_locations (void);
a5606eee 211
a96d9b2e
SDJ
212static int syscall_catchpoint_p (struct breakpoint *b);
213
1042e4c0
SS
214static void tracepoints_info (char *, int);
215
216static void delete_trace_command (char *, int);
217
218static void enable_trace_command (char *, int);
219
220static void disable_trace_command (char *, int);
221
222static void trace_pass_command (char *, int);
223
9c06b0b4
TJB
224static int is_masked_watchpoint (const struct breakpoint *b);
225
0fb4aa4b
PA
226/* Assuming we're creating a static tracepoint, does S look like a
227 static tracepoint marker spec ("-m MARKER_ID")? */
228#define is_marker_spec(s) \
f5a8e22b 229 (s != NULL && strncmp (s, "-m", 2) == 0 && ((s)[2] == ' ' || (s)[2] == '\t'))
0fb4aa4b 230
5cea2a26
PA
231/* A reference-counted struct command_line. This lets multiple
232 breakpoints share a single command list. */
233struct counted_command_line
234{
235 /* The reference count. */
236 int refc;
237
238 /* The command list. */
239 struct command_line *commands;
240};
241
242struct command_line *
243breakpoint_commands (struct breakpoint *b)
244{
245 return b->commands ? b->commands->commands : NULL;
246}
3daf8fe5 247
f3b1572e
PA
248/* Flag indicating that a command has proceeded the inferior past the
249 current breakpoint. */
250
251static int breakpoint_proceeded;
252
956a9fb9 253const char *
2cec12e5
AR
254bpdisp_text (enum bpdisp disp)
255{
4a64f543
MS
256 /* NOTE: the following values are a part of MI protocol and
257 represent values of 'disp' field returned when inferior stops at
258 a breakpoint. */
bc043ef3 259 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 260
2cec12e5
AR
261 return bpdisps[(int) disp];
262}
c906108c 263
4a64f543 264/* Prototypes for exported functions. */
c906108c 265/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 266 if such is available. */
c906108c
SS
267static int can_use_hw_watchpoints;
268
920d2a44
AC
269static void
270show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
271 struct cmd_list_element *c,
272 const char *value)
273{
3e43a32a
MS
274 fprintf_filtered (file,
275 _("Debugger's willingness to use "
276 "watchpoint hardware is %s.\n"),
920d2a44
AC
277 value);
278}
279
fa8d40ab
JJ
280/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
281 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 282 for unrecognized breakpoint locations.
fa8d40ab
JJ
283 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
284static enum auto_boolean pending_break_support;
920d2a44
AC
285static void
286show_pending_break_support (struct ui_file *file, int from_tty,
287 struct cmd_list_element *c,
288 const char *value)
289{
3e43a32a
MS
290 fprintf_filtered (file,
291 _("Debugger's behavior regarding "
292 "pending breakpoints is %s.\n"),
920d2a44
AC
293 value);
294}
fa8d40ab 295
765dc015 296/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 297 set with "break" but falling in read-only memory.
765dc015
VP
298 If 0, gdb will warn about such breakpoints, but won't automatically
299 use hardware breakpoints. */
300static int automatic_hardware_breakpoints;
301static void
302show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
303 struct cmd_list_element *c,
304 const char *value)
305{
3e43a32a
MS
306 fprintf_filtered (file,
307 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
308 value);
309}
310
33e5cbd6
PA
311/* If on, gdb will keep breakpoints inserted even as inferior is
312 stopped, and immediately insert any new breakpoints. If off, gdb
313 will insert breakpoints into inferior only when resuming it, and
314 will remove breakpoints upon stop. If auto, GDB will behave as ON
315 if in non-stop mode, and as OFF if all-stop mode.*/
316
317static const char always_inserted_auto[] = "auto";
318static const char always_inserted_on[] = "on";
319static const char always_inserted_off[] = "off";
320static const char *always_inserted_enums[] = {
321 always_inserted_auto,
322 always_inserted_off,
323 always_inserted_on,
324 NULL
325};
326static const char *always_inserted_mode = always_inserted_auto;
327static void
74960c60 328show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 329 struct cmd_list_element *c, const char *value)
74960c60 330{
33e5cbd6 331 if (always_inserted_mode == always_inserted_auto)
3e43a32a
MS
332 fprintf_filtered (file,
333 _("Always inserted breakpoint "
334 "mode is %s (currently %s).\n"),
33e5cbd6
PA
335 value,
336 breakpoints_always_inserted_mode () ? "on" : "off");
337 else
3e43a32a
MS
338 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
339 value);
74960c60
VP
340}
341
33e5cbd6
PA
342int
343breakpoints_always_inserted_mode (void)
344{
345 return (always_inserted_mode == always_inserted_on
346 || (always_inserted_mode == always_inserted_auto && non_stop));
347}
765dc015 348
a14ed312 349void _initialize_breakpoint (void);
c906108c 350
c906108c
SS
351/* Are we executing breakpoint commands? */
352static int executing_breakpoint_commands;
353
c02f5703
MS
354/* Are overlay event breakpoints enabled? */
355static int overlay_events_enabled;
356
e09342b5
TJB
357/* See description in breakpoint.h. */
358int target_exact_watchpoints = 0;
359
c906108c 360/* Walk the following statement or block through all breakpoints.
4a64f543
MS
361 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the
362 current breakpoint. */
c906108c 363
5c44784c 364#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 365
5c44784c
JM
366#define ALL_BREAKPOINTS_SAFE(B,TMP) \
367 for (B = breakpoint_chain; \
368 B ? (TMP=B->next, 1): 0; \
369 B = TMP)
c906108c 370
4a64f543
MS
371/* Similar iterator for the low-level breakpoints. SAFE variant is
372 not provided so update_global_location_list must not be called
373 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 374
876fa593
JK
375#define ALL_BP_LOCATIONS(B,BP_TMP) \
376 for (BP_TMP = bp_location; \
377 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
378 BP_TMP++)
7cc221ef 379
1042e4c0
SS
380/* Iterator for tracepoints only. */
381
382#define ALL_TRACEPOINTS(B) \
383 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 384 if (is_tracepoint (B))
1042e4c0 385
7cc221ef 386/* Chains of all breakpoints defined. */
c906108c
SS
387
388struct breakpoint *breakpoint_chain;
389
876fa593
JK
390/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
391
392static struct bp_location **bp_location;
393
394/* Number of elements of BP_LOCATION. */
395
396static unsigned bp_location_count;
397
4a64f543
MS
398/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
399 ADDRESS for the current elements of BP_LOCATION which get a valid
400 result from bp_location_has_shadow. You can use it for roughly
401 limiting the subrange of BP_LOCATION to scan for shadow bytes for
402 an address you need to read. */
876fa593
JK
403
404static CORE_ADDR bp_location_placed_address_before_address_max;
405
4a64f543
MS
406/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
407 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
408 BP_LOCATION which get a valid result from bp_location_has_shadow.
409 You can use it for roughly limiting the subrange of BP_LOCATION to
410 scan for shadow bytes for an address you need to read. */
876fa593
JK
411
412static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 413
4a64f543
MS
414/* The locations that no longer correspond to any breakpoint, unlinked
415 from bp_location array, but for which a hit may still be reported
416 by a target. */
20874c92
VP
417VEC(bp_location_p) *moribund_locations = NULL;
418
c906108c
SS
419/* Number of last breakpoint made. */
420
95a42b64
TT
421static int breakpoint_count;
422
86b17b60
PA
423/* The value of `breakpoint_count' before the last command that
424 created breakpoints. If the last (break-like) command created more
425 than one breakpoint, then the difference between BREAKPOINT_COUNT
426 and PREV_BREAKPOINT_COUNT is more than one. */
427static int prev_breakpoint_count;
c906108c 428
1042e4c0
SS
429/* Number of last tracepoint made. */
430
95a42b64 431static int tracepoint_count;
1042e4c0 432
6149aea9
PA
433static struct cmd_list_element *breakpoint_set_cmdlist;
434static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 435struct cmd_list_element *save_cmdlist;
6149aea9 436
468d015d
JJ
437/* Return whether a breakpoint is an active enabled breakpoint. */
438static int
439breakpoint_enabled (struct breakpoint *b)
440{
0d381245 441 return (b->enable_state == bp_enabled);
468d015d
JJ
442}
443
c906108c
SS
444/* Set breakpoint count to NUM. */
445
95a42b64 446static void
fba45db2 447set_breakpoint_count (int num)
c906108c 448{
86b17b60 449 prev_breakpoint_count = breakpoint_count;
c906108c 450 breakpoint_count = num;
4fa62494 451 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
452}
453
86b17b60
PA
454/* Used by `start_rbreak_breakpoints' below, to record the current
455 breakpoint count before "rbreak" creates any breakpoint. */
456static int rbreak_start_breakpoint_count;
457
95a42b64
TT
458/* Called at the start an "rbreak" command to record the first
459 breakpoint made. */
86b17b60 460
95a42b64
TT
461void
462start_rbreak_breakpoints (void)
463{
86b17b60 464 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
465}
466
467/* Called at the end of an "rbreak" command to record the last
468 breakpoint made. */
86b17b60 469
95a42b64
TT
470void
471end_rbreak_breakpoints (void)
472{
86b17b60 473 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
474}
475
4a64f543 476/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
477
478void
fba45db2 479clear_breakpoint_hit_counts (void)
c906108c
SS
480{
481 struct breakpoint *b;
482
483 ALL_BREAKPOINTS (b)
484 b->hit_count = 0;
485}
486
9add0f1b
TT
487/* Allocate a new counted_command_line with reference count of 1.
488 The new structure owns COMMANDS. */
489
490static struct counted_command_line *
491alloc_counted_command_line (struct command_line *commands)
492{
493 struct counted_command_line *result
494 = xmalloc (sizeof (struct counted_command_line));
cc59ec59 495
9add0f1b
TT
496 result->refc = 1;
497 result->commands = commands;
498 return result;
499}
500
501/* Increment reference count. This does nothing if CMD is NULL. */
502
503static void
504incref_counted_command_line (struct counted_command_line *cmd)
505{
506 if (cmd)
507 ++cmd->refc;
508}
509
510/* Decrement reference count. If the reference count reaches 0,
511 destroy the counted_command_line. Sets *CMDP to NULL. This does
512 nothing if *CMDP is NULL. */
513
514static void
515decref_counted_command_line (struct counted_command_line **cmdp)
516{
517 if (*cmdp)
518 {
519 if (--(*cmdp)->refc == 0)
520 {
521 free_command_lines (&(*cmdp)->commands);
522 xfree (*cmdp);
523 }
524 *cmdp = NULL;
525 }
526}
527
528/* A cleanup function that calls decref_counted_command_line. */
529
530static void
531do_cleanup_counted_command_line (void *arg)
532{
533 decref_counted_command_line (arg);
534}
535
536/* Create a cleanup that calls decref_counted_command_line on the
537 argument. */
538
539static struct cleanup *
540make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
541{
542 return make_cleanup (do_cleanup_counted_command_line, cmdp);
543}
544
c906108c
SS
545/* Default address, symtab and line to put a breakpoint at
546 for "break" command with no arg.
4a64f543 547 If default_breakpoint_valid is zero, the other three are
c906108c
SS
548 not valid, and "break" with no arg is an error.
549
550 This set by print_stack_frame, which calls set_default_breakpoint. */
551
552int default_breakpoint_valid;
553CORE_ADDR default_breakpoint_address;
554struct symtab *default_breakpoint_symtab;
555int default_breakpoint_line;
6c95b8df
PA
556struct program_space *default_breakpoint_pspace;
557
c906108c 558\f
48cb2d85
VP
559/* Return the breakpoint with the specified number, or NULL
560 if the number does not refer to an existing breakpoint. */
561
562struct breakpoint *
563get_breakpoint (int num)
564{
565 struct breakpoint *b;
566
567 ALL_BREAKPOINTS (b)
568 if (b->number == num)
569 return b;
570
571 return NULL;
572}
5c44784c 573
c906108c 574\f
adc36818
PM
575
576void
577set_breakpoint_condition (struct breakpoint *b, char *exp,
578 int from_tty)
579{
580 struct bp_location *loc = b->loc;
581
582 for (; loc; loc = loc->next)
583 {
584 xfree (loc->cond);
585 loc->cond = NULL;
586 }
587 xfree (b->cond_string);
588 b->cond_string = NULL;
589 xfree (b->cond_exp);
590 b->cond_exp = NULL;
591
592 if (*exp == 0)
593 {
594 if (from_tty)
595 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
596 }
597 else
598 {
599 char *arg = exp;
cc59ec59 600
adc36818
PM
601 /* I don't know if it matters whether this is the string the user
602 typed in or the decompiled expression. */
603 b->cond_string = xstrdup (arg);
604 b->condition_not_parsed = 0;
605
606 if (is_watchpoint (b))
607 {
608 innermost_block = NULL;
609 arg = exp;
610 b->cond_exp = parse_exp_1 (&arg, 0, 0);
611 if (*arg)
612 error (_("Junk at end of expression"));
613 b->cond_exp_valid_block = innermost_block;
614 }
615 else
616 {
617 for (loc = b->loc; loc; loc = loc->next)
618 {
619 arg = exp;
620 loc->cond =
621 parse_exp_1 (&arg, block_for_pc (loc->address), 0);
622 if (*arg)
623 error (_("Junk at end of expression"));
624 }
625 }
626 }
627 breakpoints_changed ();
8d3788bd 628 observer_notify_breakpoint_modified (b);
adc36818
PM
629}
630
c906108c
SS
631/* condition N EXP -- set break condition of breakpoint N to EXP. */
632
633static void
fba45db2 634condition_command (char *arg, int from_tty)
c906108c 635{
52f0bd74 636 struct breakpoint *b;
c906108c 637 char *p;
52f0bd74 638 int bnum;
c906108c
SS
639
640 if (arg == 0)
e2e0b3e5 641 error_no_arg (_("breakpoint number"));
c906108c
SS
642
643 p = arg;
644 bnum = get_number (&p);
5c44784c 645 if (bnum == 0)
8a3fe4f8 646 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
647
648 ALL_BREAKPOINTS (b)
649 if (b->number == bnum)
2f069f6f 650 {
7371cf6d
PM
651 /* Check if this breakpoint has a Python object assigned to
652 it, and if it has a definition of the "stop"
653 method. This method and conditions entered into GDB from
654 the CLI are mutually exclusive. */
655 if (b->py_bp_object
656 && gdbpy_breakpoint_has_py_cond (b->py_bp_object))
657 error (_("Cannot set a condition where a Python 'stop' "
658 "method has been defined in the breakpoint."));
2566ad2d 659 set_breakpoint_condition (b, p, from_tty);
2f069f6f
JB
660 return;
661 }
c906108c 662
8a3fe4f8 663 error (_("No breakpoint number %d."), bnum);
c906108c
SS
664}
665
a7bdde9e
VP
666/* Check that COMMAND do not contain commands that are suitable
667 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
668 Throw if any such commands is found. */
669
a7bdde9e
VP
670static void
671check_no_tracepoint_commands (struct command_line *commands)
672{
673 struct command_line *c;
cc59ec59 674
a7bdde9e
VP
675 for (c = commands; c; c = c->next)
676 {
677 int i;
678
679 if (c->control_type == while_stepping_control)
3e43a32a
MS
680 error (_("The 'while-stepping' command can "
681 "only be used for tracepoints"));
a7bdde9e
VP
682
683 for (i = 0; i < c->body_count; ++i)
684 check_no_tracepoint_commands ((c->body_list)[i]);
685
686 /* Not that command parsing removes leading whitespace and comment
4a64f543 687 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
688 command directly. */
689 if (strstr (c->line, "collect ") == c->line)
690 error (_("The 'collect' command can only be used for tracepoints"));
691
51661e93
VP
692 if (strstr (c->line, "teval ") == c->line)
693 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
694 }
695}
696
d77f58be
SS
697/* Encapsulate tests for different types of tracepoints. */
698
a7bdde9e 699int
d77f58be 700is_tracepoint (const struct breakpoint *b)
a7bdde9e 701{
0fb4aa4b
PA
702 return (b->type == bp_tracepoint
703 || b->type == bp_fast_tracepoint
704 || b->type == bp_static_tracepoint);
a7bdde9e 705}
d77f58be 706
95a42b64
TT
707/* A helper function that validsates that COMMANDS are valid for a
708 breakpoint. This function will throw an exception if a problem is
709 found. */
48cb2d85 710
95a42b64
TT
711static void
712validate_commands_for_breakpoint (struct breakpoint *b,
713 struct command_line *commands)
48cb2d85 714{
d77f58be 715 if (is_tracepoint (b))
a7bdde9e 716 {
4a64f543
MS
717 /* We need to verify that each top-level element of commands is
718 valid for tracepoints, that there's at most one
719 while-stepping element, and that while-stepping's body has
720 valid tracing commands excluding nested while-stepping. */
a7bdde9e
VP
721 struct command_line *c;
722 struct command_line *while_stepping = 0;
723 for (c = commands; c; c = c->next)
724 {
a7bdde9e
VP
725 if (c->control_type == while_stepping_control)
726 {
727 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
728 error (_("The 'while-stepping' command "
729 "cannot be used for fast tracepoint"));
0fb4aa4b 730 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
731 error (_("The 'while-stepping' command "
732 "cannot be used for static tracepoint"));
a7bdde9e
VP
733
734 if (while_stepping)
3e43a32a
MS
735 error (_("The 'while-stepping' command "
736 "can be used only once"));
a7bdde9e
VP
737 else
738 while_stepping = c;
739 }
740 }
741 if (while_stepping)
742 {
743 struct command_line *c2;
744
745 gdb_assert (while_stepping->body_count == 1);
746 c2 = while_stepping->body_list[0];
747 for (; c2; c2 = c2->next)
748 {
a7bdde9e
VP
749 if (c2->control_type == while_stepping_control)
750 error (_("The 'while-stepping' command cannot be nested"));
751 }
752 }
753 }
754 else
755 {
756 check_no_tracepoint_commands (commands);
757 }
95a42b64
TT
758}
759
0fb4aa4b
PA
760/* Return a vector of all the static tracepoints set at ADDR. The
761 caller is responsible for releasing the vector. */
762
763VEC(breakpoint_p) *
764static_tracepoints_here (CORE_ADDR addr)
765{
766 struct breakpoint *b;
767 VEC(breakpoint_p) *found = 0;
768 struct bp_location *loc;
769
770 ALL_BREAKPOINTS (b)
771 if (b->type == bp_static_tracepoint)
772 {
773 for (loc = b->loc; loc; loc = loc->next)
774 if (loc->address == addr)
775 VEC_safe_push(breakpoint_p, found, b);
776 }
777
778 return found;
779}
780
95a42b64 781/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 782 validate that only allowed commands are included. */
95a42b64
TT
783
784void
4a64f543
MS
785breakpoint_set_commands (struct breakpoint *b,
786 struct command_line *commands)
95a42b64
TT
787{
788 validate_commands_for_breakpoint (b, commands);
a7bdde9e 789
9add0f1b
TT
790 decref_counted_command_line (&b->commands);
791 b->commands = alloc_counted_command_line (commands);
48cb2d85 792 breakpoints_changed ();
8d3788bd 793 observer_notify_breakpoint_modified (b);
48cb2d85
VP
794}
795
45a43567
TT
796/* Set the internal `silent' flag on the breakpoint. Note that this
797 is not the same as the "silent" that may appear in the breakpoint's
798 commands. */
799
800void
801breakpoint_set_silent (struct breakpoint *b, int silent)
802{
803 int old_silent = b->silent;
804
805 b->silent = silent;
806 if (old_silent != silent)
8d3788bd 807 observer_notify_breakpoint_modified (b);
45a43567
TT
808}
809
810/* Set the thread for this breakpoint. If THREAD is -1, make the
811 breakpoint work for any thread. */
812
813void
814breakpoint_set_thread (struct breakpoint *b, int thread)
815{
816 int old_thread = b->thread;
817
818 b->thread = thread;
819 if (old_thread != thread)
8d3788bd 820 observer_notify_breakpoint_modified (b);
45a43567
TT
821}
822
823/* Set the task for this breakpoint. If TASK is 0, make the
824 breakpoint work for any task. */
825
826void
827breakpoint_set_task (struct breakpoint *b, int task)
828{
829 int old_task = b->task;
830
831 b->task = task;
832 if (old_task != task)
8d3788bd 833 observer_notify_breakpoint_modified (b);
45a43567
TT
834}
835
95a42b64
TT
836void
837check_tracepoint_command (char *line, void *closure)
a7bdde9e
VP
838{
839 struct breakpoint *b = closure;
cc59ec59 840
a7bdde9e
VP
841 validate_actionline (&line, b);
842}
843
95a42b64
TT
844/* A structure used to pass information through
845 map_breakpoint_numbers. */
846
847struct commands_info
848{
849 /* True if the command was typed at a tty. */
850 int from_tty;
86b17b60
PA
851
852 /* The breakpoint range spec. */
853 char *arg;
854
95a42b64
TT
855 /* Non-NULL if the body of the commands are being read from this
856 already-parsed command. */
857 struct command_line *control;
86b17b60 858
95a42b64
TT
859 /* The command lines read from the user, or NULL if they have not
860 yet been read. */
861 struct counted_command_line *cmd;
862};
863
864/* A callback for map_breakpoint_numbers that sets the commands for
865 commands_command. */
866
c906108c 867static void
95a42b64 868do_map_commands_command (struct breakpoint *b, void *data)
c906108c 869{
95a42b64 870 struct commands_info *info = data;
c906108c 871
95a42b64
TT
872 if (info->cmd == NULL)
873 {
874 struct command_line *l;
5c44784c 875
95a42b64
TT
876 if (info->control != NULL)
877 l = copy_command_lines (info->control->body_list[0]);
878 else
86b17b60
PA
879 {
880 struct cleanup *old_chain;
881 char *str;
c5aa993b 882
3e43a32a
MS
883 str = xstrprintf (_("Type commands for breakpoint(s) "
884 "%s, one per line."),
86b17b60
PA
885 info->arg);
886
887 old_chain = make_cleanup (xfree, str);
888
889 l = read_command_lines (str,
890 info->from_tty, 1,
d77f58be 891 (is_tracepoint (b)
86b17b60
PA
892 ? check_tracepoint_command : 0),
893 b);
894
895 do_cleanups (old_chain);
896 }
a7bdde9e 897
95a42b64
TT
898 info->cmd = alloc_counted_command_line (l);
899 }
900
901 /* If a breakpoint was on the list more than once, we don't need to
902 do anything. */
903 if (b->commands != info->cmd)
904 {
905 validate_commands_for_breakpoint (b, info->cmd->commands);
906 incref_counted_command_line (info->cmd);
907 decref_counted_command_line (&b->commands);
908 b->commands = info->cmd;
909 breakpoints_changed ();
8d3788bd 910 observer_notify_breakpoint_modified (b);
c5aa993b 911 }
95a42b64
TT
912}
913
914static void
4a64f543
MS
915commands_command_1 (char *arg, int from_tty,
916 struct command_line *control)
95a42b64
TT
917{
918 struct cleanup *cleanups;
919 struct commands_info info;
920
921 info.from_tty = from_tty;
922 info.control = control;
923 info.cmd = NULL;
924 /* If we read command lines from the user, then `info' will hold an
925 extra reference to the commands that we must clean up. */
926 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
927
928 if (arg == NULL || !*arg)
929 {
86b17b60 930 if (breakpoint_count - prev_breakpoint_count > 1)
4a64f543
MS
931 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1,
932 breakpoint_count);
95a42b64
TT
933 else if (breakpoint_count > 0)
934 arg = xstrprintf ("%d", breakpoint_count);
86b17b60
PA
935 else
936 {
937 /* So that we don't try to free the incoming non-NULL
938 argument in the cleanup below. Mapping breakpoint
939 numbers will fail in this case. */
940 arg = NULL;
941 }
95a42b64 942 }
9766ced4
SS
943 else
944 /* The command loop has some static state, so we need to preserve
945 our argument. */
946 arg = xstrdup (arg);
86b17b60
PA
947
948 if (arg != NULL)
949 make_cleanup (xfree, arg);
950
951 info.arg = arg;
95a42b64
TT
952
953 map_breakpoint_numbers (arg, do_map_commands_command, &info);
954
955 if (info.cmd == NULL)
956 error (_("No breakpoints specified."));
957
958 do_cleanups (cleanups);
959}
960
961static void
962commands_command (char *arg, int from_tty)
963{
964 commands_command_1 (arg, from_tty, NULL);
c906108c 965}
40c03ae8
EZ
966
967/* Like commands_command, but instead of reading the commands from
968 input stream, takes them from an already parsed command structure.
969
970 This is used by cli-script.c to DTRT with breakpoint commands
971 that are part of if and while bodies. */
972enum command_control_type
973commands_from_control_command (char *arg, struct command_line *cmd)
974{
95a42b64
TT
975 commands_command_1 (arg, 0, cmd);
976 return simple_control;
40c03ae8 977}
876fa593
JK
978
979/* Return non-zero if BL->TARGET_INFO contains valid information. */
980
981static int
982bp_location_has_shadow (struct bp_location *bl)
983{
984 if (bl->loc_type != bp_loc_software_breakpoint)
985 return 0;
986 if (!bl->inserted)
987 return 0;
988 if (bl->target_info.shadow_len == 0)
989 /* bp isn't valid, or doesn't shadow memory. */
990 return 0;
991 return 1;
992}
993
8defab1a 994/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
995 by replacing any memory breakpoints with their shadowed contents.
996
997 The range of shadowed area by each bp_location is:
35df4500
TJB
998 bl->address - bp_location_placed_address_before_address_max
999 up to bl->address + bp_location_shadow_len_after_address_max
876fa593
JK
1000 The range we were requested to resolve shadows for is:
1001 memaddr ... memaddr + len
1002 Thus the safe cutoff boundaries for performance optimization are
35df4500
TJB
1003 memaddr + len <= (bl->address
1004 - bp_location_placed_address_before_address_max)
876fa593 1005 and:
35df4500 1006 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1007
8defab1a
DJ
1008void
1009breakpoint_restore_shadows (gdb_byte *buf, ULONGEST memaddr, LONGEST len)
c906108c 1010{
4a64f543
MS
1011 /* Left boundary, right boundary and median element of our binary
1012 search. */
876fa593
JK
1013 unsigned bc_l, bc_r, bc;
1014
4a64f543
MS
1015 /* Find BC_L which is a leftmost element which may affect BUF
1016 content. It is safe to report lower value but a failure to
1017 report higher one. */
876fa593
JK
1018
1019 bc_l = 0;
1020 bc_r = bp_location_count;
1021 while (bc_l + 1 < bc_r)
1022 {
35df4500 1023 struct bp_location *bl;
876fa593
JK
1024
1025 bc = (bc_l + bc_r) / 2;
35df4500 1026 bl = bp_location[bc];
876fa593 1027
4a64f543
MS
1028 /* Check first BL->ADDRESS will not overflow due to the added
1029 constant. Then advance the left boundary only if we are sure
1030 the BC element can in no way affect the BUF content (MEMADDR
1031 to MEMADDR + LEN range).
876fa593 1032
4a64f543
MS
1033 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1034 offset so that we cannot miss a breakpoint with its shadow
1035 range tail still reaching MEMADDR. */
c5aa993b 1036
35df4500
TJB
1037 if ((bl->address + bp_location_shadow_len_after_address_max
1038 >= bl->address)
1039 && (bl->address + bp_location_shadow_len_after_address_max
1040 <= memaddr))
876fa593
JK
1041 bc_l = bc;
1042 else
1043 bc_r = bc;
1044 }
1045
128070bb
PA
1046 /* Due to the binary search above, we need to make sure we pick the
1047 first location that's at BC_L's address. E.g., if there are
1048 multiple locations at the same address, BC_L may end up pointing
1049 at a duplicate location, and miss the "master"/"inserted"
1050 location. Say, given locations L1, L2 and L3 at addresses A and
1051 B:
1052
1053 L1@A, L2@A, L3@B, ...
1054
1055 BC_L could end up pointing at location L2, while the "master"
1056 location could be L1. Since the `loc->inserted' flag is only set
1057 on "master" locations, we'd forget to restore the shadow of L1
1058 and L2. */
1059 while (bc_l > 0
1060 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1061 bc_l--;
1062
876fa593
JK
1063 /* Now do full processing of the found relevant range of elements. */
1064
1065 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1066 {
35df4500 1067 struct bp_location *bl = bp_location[bc];
876fa593
JK
1068 CORE_ADDR bp_addr = 0;
1069 int bp_size = 0;
1070 int bptoffset = 0;
1071
35df4500
TJB
1072 /* bp_location array has BL->OWNER always non-NULL. */
1073 if (bl->owner->type == bp_none)
8a3fe4f8 1074 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1075 bl->owner->number);
ffce0d52 1076
876fa593
JK
1077 /* Performance optimization: any futher element can no longer affect BUF
1078 content. */
1079
35df4500
TJB
1080 if (bl->address >= bp_location_placed_address_before_address_max
1081 && memaddr + len <= (bl->address
1082 - bp_location_placed_address_before_address_max))
876fa593
JK
1083 break;
1084
35df4500 1085 if (!bp_location_has_shadow (bl))
c5aa993b 1086 continue;
35df4500 1087 if (!breakpoint_address_match (bl->target_info.placed_address_space, 0,
6c95b8df
PA
1088 current_program_space->aspace, 0))
1089 continue;
1090
c5aa993b
JM
1091 /* Addresses and length of the part of the breakpoint that
1092 we need to copy. */
35df4500
TJB
1093 bp_addr = bl->target_info.placed_address;
1094 bp_size = bl->target_info.shadow_len;
8defab1a 1095
c5aa993b
JM
1096 if (bp_addr + bp_size <= memaddr)
1097 /* The breakpoint is entirely before the chunk of memory we
1098 are reading. */
1099 continue;
8defab1a 1100
c5aa993b
JM
1101 if (bp_addr >= memaddr + len)
1102 /* The breakpoint is entirely after the chunk of memory we are
4a64f543 1103 reading. */
c5aa993b 1104 continue;
c5aa993b 1105
8defab1a
DJ
1106 /* Offset within shadow_contents. */
1107 if (bp_addr < memaddr)
1108 {
1109 /* Only copy the second part of the breakpoint. */
1110 bp_size -= memaddr - bp_addr;
1111 bptoffset = memaddr - bp_addr;
1112 bp_addr = memaddr;
1113 }
c5aa993b 1114
8defab1a
DJ
1115 if (bp_addr + bp_size > memaddr + len)
1116 {
1117 /* Only copy the first part of the breakpoint. */
1118 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1119 }
c5aa993b 1120
8defab1a 1121 memcpy (buf + bp_addr - memaddr,
35df4500 1122 bl->target_info.shadow_contents + bptoffset, bp_size);
c5aa993b 1123 }
c906108c 1124}
c906108c 1125\f
c5aa993b 1126
60e1c644
PA
1127/* Return true if BPT is of any hardware watchpoint kind. */
1128
a5606eee 1129static int
d77f58be 1130is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1131{
1132 return (bpt->type == bp_hardware_watchpoint
1133 || bpt->type == bp_read_watchpoint
1134 || bpt->type == bp_access_watchpoint);
1135}
7270d8f2 1136
60e1c644
PA
1137/* Return true if BPT is of any watchpoint kind, hardware or
1138 software. */
1139
1140static int
d77f58be 1141is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1142{
1143 return (is_hardware_watchpoint (bpt)
1144 || bpt->type == bp_watchpoint);
1145}
1146
f6bc2008
PA
1147/* Assuming that B is a watchpoint: returns true if the current thread
1148 and its running state are safe to evaluate or update watchpoint B.
1149 Watchpoints on local expressions need to be evaluated in the
1150 context of the thread that was current when the watchpoint was
1151 created, and, that thread needs to be stopped to be able to select
1152 the correct frame context. Watchpoints on global expressions can
1153 be evaluated on any thread, and in any state. It is presently left
1154 to the target allowing memory accesses when threads are
1155 running. */
1156
1157static int
1158watchpoint_in_thread_scope (struct breakpoint *b)
1159{
1160 return (ptid_equal (b->watchpoint_thread, null_ptid)
1161 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1162 && !is_executing (inferior_ptid)));
1163}
1164
d0fb5eae
JK
1165/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1166 associated bp_watchpoint_scope breakpoint. */
1167
1168static void
1169watchpoint_del_at_next_stop (struct breakpoint *b)
1170{
1171 gdb_assert (is_watchpoint (b));
1172
1173 if (b->related_breakpoint != b)
1174 {
1175 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1176 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1177 b->related_breakpoint->disposition = disp_del_at_next_stop;
1178 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1179 b->related_breakpoint = b;
1180 }
1181 b->disposition = disp_del_at_next_stop;
1182}
1183
567e1b4e
JB
1184/* Assuming that B is a watchpoint:
1185 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1186 - Evaluate expression and store the result in B->val
567e1b4e
JB
1187 - Evaluate the condition if there is one, and store the result
1188 in b->loc->cond.
a5606eee
VP
1189 - Update the list of values that must be watched in B->loc.
1190
4a64f543
MS
1191 If the watchpoint disposition is disp_del_at_next_stop, then do
1192 nothing. If this is local watchpoint that is out of scope, delete
1193 it.
1194
1195 Even with `set breakpoint always-inserted on' the watchpoints are
1196 removed + inserted on each stop here. Normal breakpoints must
1197 never be removed because they might be missed by a running thread
1198 when debugging in non-stop mode. On the other hand, hardware
1199 watchpoints (is_hardware_watchpoint; processed here) are specific
1200 to each LWP since they are stored in each LWP's hardware debug
1201 registers. Therefore, such LWP must be stopped first in order to
1202 be able to modify its hardware watchpoints.
1203
1204 Hardware watchpoints must be reset exactly once after being
1205 presented to the user. It cannot be done sooner, because it would
1206 reset the data used to present the watchpoint hit to the user. And
1207 it must not be done later because it could display the same single
1208 watchpoint hit during multiple GDB stops. Note that the latter is
1209 relevant only to the hardware watchpoint types bp_read_watchpoint
1210 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1211 not user-visible - its hit is suppressed if the memory content has
1212 not changed.
1213
1214 The following constraints influence the location where we can reset
1215 hardware watchpoints:
1216
1217 * target_stopped_by_watchpoint and target_stopped_data_address are
1218 called several times when GDB stops.
1219
1220 [linux]
1221 * Multiple hardware watchpoints can be hit at the same time,
1222 causing GDB to stop. GDB only presents one hardware watchpoint
1223 hit at a time as the reason for stopping, and all the other hits
1224 are presented later, one after the other, each time the user
1225 requests the execution to be resumed. Execution is not resumed
1226 for the threads still having pending hit event stored in
1227 LWP_INFO->STATUS. While the watchpoint is already removed from
1228 the inferior on the first stop the thread hit event is kept being
1229 reported from its cached value by linux_nat_stopped_data_address
1230 until the real thread resume happens after the watchpoint gets
1231 presented and thus its LWP_INFO->STATUS gets reset.
1232
1233 Therefore the hardware watchpoint hit can get safely reset on the
1234 watchpoint removal from inferior. */
a79d3c27 1235
b40ce68a 1236static void
a5606eee 1237update_watchpoint (struct breakpoint *b, int reparse)
7270d8f2 1238{
a5606eee 1239 int within_current_scope;
a5606eee 1240 struct frame_id saved_frame_id;
66076460 1241 int frame_saved;
a5606eee 1242
d0fb5eae
JK
1243 gdb_assert (is_watchpoint (b));
1244
f6bc2008
PA
1245 /* If this is a local watchpoint, we only want to check if the
1246 watchpoint frame is in scope if the current thread is the thread
1247 that was used to create the watchpoint. */
1248 if (!watchpoint_in_thread_scope (b))
1249 return;
1250
a5606eee
VP
1251 if (b->disposition == disp_del_at_next_stop)
1252 return;
1253
66076460 1254 frame_saved = 0;
a5606eee
VP
1255
1256 /* Determine if the watchpoint is within scope. */
1257 if (b->exp_valid_block == NULL)
1258 within_current_scope = 1;
1259 else
1260 {
b5db5dfc
UW
1261 struct frame_info *fi = get_current_frame ();
1262 struct gdbarch *frame_arch = get_frame_arch (fi);
1263 CORE_ADDR frame_pc = get_frame_pc (fi);
1264
1265 /* If we're in a function epilogue, unwinding may not work
1266 properly, so do not attempt to recreate locations at this
1267 point. See similar comments in watchpoint_check. */
1268 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
1269 return;
66076460
DJ
1270
1271 /* Save the current frame's ID so we can restore it after
1272 evaluating the watchpoint expression on its own frame. */
1273 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1274 took a frame parameter, so that we didn't have to change the
1275 selected frame. */
1276 frame_saved = 1;
1277 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1278
a5606eee
VP
1279 fi = frame_find_by_id (b->watchpoint_frame);
1280 within_current_scope = (fi != NULL);
1281 if (within_current_scope)
1282 select_frame (fi);
1283 }
1284
b5db5dfc
UW
1285 /* We don't free locations. They are stored in the bp_location array
1286 and update_global_location_list will eventually delete them and
1287 remove breakpoints if needed. */
1288 b->loc = NULL;
1289
a5606eee
VP
1290 if (within_current_scope && reparse)
1291 {
1292 char *s;
d63d0675 1293
a5606eee
VP
1294 if (b->exp)
1295 {
1296 xfree (b->exp);
1297 b->exp = NULL;
1298 }
d63d0675 1299 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
a5606eee
VP
1300 b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
1301 /* If the meaning of expression itself changed, the old value is
1302 no longer relevant. We don't want to report a watchpoint hit
1303 to the user when the old value and the new value may actually
1304 be completely different objects. */
1305 value_free (b->val);
fa4727a6
DJ
1306 b->val = NULL;
1307 b->val_valid = 0;
60e1c644
PA
1308
1309 /* Note that unlike with breakpoints, the watchpoint's condition
1310 expression is stored in the breakpoint object, not in the
1311 locations (re)created below. */
1312 if (b->cond_string != NULL)
1313 {
1314 if (b->cond_exp != NULL)
1315 {
1316 xfree (b->cond_exp);
1317 b->cond_exp = NULL;
1318 }
1319
1320 s = b->cond_string;
1321 b->cond_exp = parse_exp_1 (&s, b->cond_exp_valid_block, 0);
1322 }
a5606eee 1323 }
a5606eee
VP
1324
1325 /* If we failed to parse the expression, for example because
1326 it refers to a global variable in a not-yet-loaded shared library,
1327 don't try to insert watchpoint. We don't automatically delete
1328 such watchpoint, though, since failure to parse expression
1329 is different from out-of-scope watchpoint. */
2d134ed3
PA
1330 if ( !target_has_execution)
1331 {
1332 /* Without execution, memory can't change. No use to try and
1333 set watchpoint locations. The watchpoint will be reset when
1334 the target gains execution, through breakpoint_re_set. */
1335 }
1336 else if (within_current_scope && b->exp)
a5606eee 1337 {
0cf6dd15 1338 int pc = 0;
fa4727a6 1339 struct value *val_chain, *v, *result, *next;
2d134ed3 1340 struct program_space *frame_pspace;
a5606eee 1341
0cf6dd15 1342 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain);
a5606eee 1343
a5606eee
VP
1344 /* Avoid setting b->val if it's already set. The meaning of
1345 b->val is 'the last value' user saw, and we should update
1346 it only if we reported that last value to user. As it
9c06b0b4
TJB
1347 happens, the code that reports it updates b->val directly.
1348 We don't keep track of the memory value for masked
1349 watchpoints. */
1350 if (!b->val_valid && !is_masked_watchpoint (b))
fa4727a6
DJ
1351 {
1352 b->val = v;
1353 b->val_valid = 1;
1354 }
a5606eee 1355
2d134ed3
PA
1356 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1357
a5606eee 1358 /* Look at each value on the value chain. */
9fa40276 1359 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1360 {
1361 /* If it's a memory location, and GDB actually needed
1362 its contents to evaluate the expression, then we
fa4727a6
DJ
1363 must watch it. If the first value returned is
1364 still lazy, that means an error occurred reading it;
1365 watch it anyway in case it becomes readable. */
a5606eee 1366 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1367 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1368 {
1369 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1370
a5606eee
VP
1371 /* We only watch structs and arrays if user asked
1372 for it explicitly, never if they just happen to
1373 appear in the middle of some value chain. */
fa4727a6 1374 if (v == result
a5606eee
VP
1375 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1376 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1377 {
1378 CORE_ADDR addr;
1379 int len, type;
1380 struct bp_location *loc, **tmp;
1381
42ae5230 1382 addr = value_address (v);
a5606eee
VP
1383 len = TYPE_LENGTH (value_type (v));
1384 type = hw_write;
1385 if (b->type == bp_read_watchpoint)
1386 type = hw_read;
1387 else if (b->type == bp_access_watchpoint)
1388 type = hw_access;
1389
39d61571 1390 loc = allocate_bp_location (b);
a5606eee
VP
1391 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1392 ;
1393 *tmp = loc;
a6d9a66e 1394 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1395
1396 loc->pspace = frame_pspace;
a5606eee
VP
1397 loc->address = addr;
1398 loc->length = len;
1399 loc->watchpoint_type = type;
1400 }
1401 }
9fa40276
TJB
1402 }
1403
1404 /* Change the type of breakpoint between hardware assisted or
1405 an ordinary watchpoint depending on the hardware support
1406 and free hardware slots. REPARSE is set when the inferior
1407 is started. */
a9634178 1408 if (reparse)
9fa40276 1409 {
e09342b5 1410 int reg_cnt;
9fa40276
TJB
1411 enum bp_loc_type loc_type;
1412 struct bp_location *bl;
a5606eee 1413
a9634178 1414 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
1415
1416 if (reg_cnt)
9fa40276
TJB
1417 {
1418 int i, target_resources_ok, other_type_used;
1419
a9634178
TJB
1420 /* Use an exact watchpoint when there's only one memory region to be
1421 watched, and only one debug register is needed to watch it. */
1422 b->exact = target_exact_watchpoints && reg_cnt == 1;
1423
9fa40276 1424 /* We need to determine how many resources are already
e09342b5
TJB
1425 used for all other hardware watchpoints plus this one
1426 to see if we still have enough resources to also fit
1427 this watchpoint in as well. To guarantee the
1428 hw_watchpoint_used_count call below counts this
1429 watchpoint, make sure that it is marked as a hardware
1430 watchpoint. */
a9634178
TJB
1431 if (b->type == bp_watchpoint)
1432 b->type = bp_hardware_watchpoint;
9fa40276 1433
a9634178 1434 i = hw_watchpoint_used_count (b->type, &other_type_used);
e09342b5 1435 target_resources_ok = target_can_use_hardware_watchpoint
a9634178 1436 (b->type, i, other_type_used);
e09342b5 1437 if (target_resources_ok <= 0)
a9634178 1438 {
9c06b0b4
TJB
1439 /* If there's no works_in_software_mode method, we
1440 assume that the watchpoint works in software mode. */
1441 int sw_mode = (!b->ops || !b->ops->works_in_software_mode
1442 || b->ops->works_in_software_mode (b));
1443
1444 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
1445 error (_("Target does not support this type of "
1446 "hardware watchpoint."));
9c06b0b4
TJB
1447 else if (target_resources_ok < 0 && !sw_mode)
1448 error (_("There are not enough available hardware "
1449 "resources for this watchpoint."));
a9634178
TJB
1450 else
1451 b->type = bp_watchpoint;
1452 }
9fa40276 1453 }
9c06b0b4
TJB
1454 else if (b->ops && b->ops->works_in_software_mode
1455 && !b->ops->works_in_software_mode (b))
a9634178
TJB
1456 error (_("Expression cannot be implemented with "
1457 "read/access watchpoint."));
9fa40276
TJB
1458 else
1459 b->type = bp_watchpoint;
1460
1461 loc_type = (b->type == bp_watchpoint? bp_loc_other
1462 : bp_loc_hardware_watchpoint);
1463 for (bl = b->loc; bl; bl = bl->next)
1464 bl->loc_type = loc_type;
1465 }
1466
1467 for (v = val_chain; v; v = next)
1468 {
a5606eee
VP
1469 next = value_next (v);
1470 if (v != b->val)
1471 value_free (v);
1472 }
1473
c7437ca6
PA
1474 /* If a software watchpoint is not watching any memory, then the
1475 above left it without any location set up. But,
1476 bpstat_stop_status requires a location to be able to report
1477 stops, so make sure there's at least a dummy one. */
1478 if (b->type == bp_watchpoint && b->loc == NULL)
1479 {
1480 b->loc = allocate_bp_location (b);
1481 b->loc->pspace = frame_pspace;
1482 b->loc->address = -1;
1483 b->loc->length = -1;
1484 b->loc->watchpoint_type = -1;
1485 }
a5606eee
VP
1486 }
1487 else if (!within_current_scope)
7270d8f2 1488 {
ac74f770
MS
1489 printf_filtered (_("\
1490Watchpoint %d deleted because the program has left the block\n\
1491in which its expression is valid.\n"),
a5606eee 1492 b->number);
d0fb5eae 1493 watchpoint_del_at_next_stop (b);
7270d8f2 1494 }
a5606eee
VP
1495
1496 /* Restore the selected frame. */
66076460
DJ
1497 if (frame_saved)
1498 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1499}
1500
a5606eee 1501
74960c60
VP
1502/* Returns 1 iff breakpoint location should be
1503 inserted in the inferior. */
1504static int
35df4500 1505should_be_inserted (struct bp_location *bl)
74960c60 1506{
35df4500 1507 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
1508 return 0;
1509
35df4500 1510 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
1511 return 0;
1512
35df4500 1513 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
1514 return 0;
1515
56710373
PA
1516 /* This is set for example, when we're attached to the parent of a
1517 vfork, and have detached from the child. The child is running
1518 free, and we expect it to do an exec or exit, at which point the
1519 OS makes the parent schedulable again (and the target reports
1520 that the vfork is done). Until the child is done with the shared
1521 memory region, do not insert breakpoints in the parent, otherwise
1522 the child could still trip on the parent's breakpoints. Since
1523 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 1524 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
1525 return 0;
1526
1042e4c0
SS
1527 /* Tracepoints are inserted by the target at a time of its choosing,
1528 not by us. */
35df4500 1529 if (is_tracepoint (bl->owner))
1042e4c0
SS
1530 return 0;
1531
74960c60
VP
1532 return 1;
1533}
1534
35df4500
TJB
1535/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
1536 location. Any error messages are printed to TMP_ERROR_STREAM; and
1537 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
879bfdc2 1538
4a64f543
MS
1539 NOTE drow/2003-09-09: This routine could be broken down to an
1540 object-style method for each breakpoint or catchpoint type. */
26bb91f3 1541static int
35df4500 1542insert_bp_location (struct bp_location *bl,
26bb91f3 1543 struct ui_file *tmp_error_stream,
fa3a767f 1544 int *disabled_breaks,
26bb91f3 1545 int *hw_breakpoint_error)
879bfdc2
DJ
1546{
1547 int val = 0;
1548
35df4500 1549 if (!should_be_inserted (bl) || bl->inserted)
879bfdc2
DJ
1550 return 0;
1551
8181d85f 1552 /* Initialize the target-specific information. */
35df4500
TJB
1553 memset (&bl->target_info, 0, sizeof (bl->target_info));
1554 bl->target_info.placed_address = bl->address;
1555 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 1556 bl->target_info.length = bl->length;
8181d85f 1557
35df4500
TJB
1558 if (bl->loc_type == bp_loc_software_breakpoint
1559 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 1560 {
35df4500 1561 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
1562 {
1563 /* If the explicitly specified breakpoint type
1564 is not hardware breakpoint, check the memory map to see
1565 if the breakpoint address is in read only memory or not.
4a64f543 1566
765dc015
VP
1567 Two important cases are:
1568 - location type is not hardware breakpoint, memory
1569 is readonly. We change the type of the location to
1570 hardware breakpoint.
4a64f543
MS
1571 - location type is hardware breakpoint, memory is
1572 read-write. This means we've previously made the
1573 location hardware one, but then the memory map changed,
1574 so we undo.
765dc015 1575
4a64f543
MS
1576 When breakpoints are removed, remove_breakpoints will use
1577 location types we've just set here, the only possible
1578 problem is that memory map has changed during running
1579 program, but it's not going to work anyway with current
1580 gdb. */
765dc015 1581 struct mem_region *mr
35df4500 1582 = lookup_mem_region (bl->target_info.placed_address);
765dc015
VP
1583
1584 if (mr)
1585 {
1586 if (automatic_hardware_breakpoints)
1587 {
765dc015
VP
1588 enum bp_loc_type new_type;
1589
1590 if (mr->attrib.mode != MEM_RW)
1591 new_type = bp_loc_hardware_breakpoint;
1592 else
1593 new_type = bp_loc_software_breakpoint;
1594
35df4500 1595 if (new_type != bl->loc_type)
765dc015
VP
1596 {
1597 static int said = 0;
cc59ec59 1598
35df4500 1599 bl->loc_type = new_type;
765dc015
VP
1600 if (!said)
1601 {
3e43a32a
MS
1602 fprintf_filtered (gdb_stdout,
1603 _("Note: automatically using "
1604 "hardware breakpoints for "
1605 "read-only addresses.\n"));
765dc015
VP
1606 said = 1;
1607 }
1608 }
1609 }
35df4500 1610 else if (bl->loc_type == bp_loc_software_breakpoint
765dc015 1611 && mr->attrib.mode != MEM_RW)
3e43a32a
MS
1612 warning (_("cannot set software breakpoint "
1613 "at readonly address %s"),
35df4500 1614 paddress (bl->gdbarch, bl->address));
765dc015
VP
1615 }
1616 }
1617
879bfdc2
DJ
1618 /* First check to see if we have to handle an overlay. */
1619 if (overlay_debugging == ovly_off
35df4500
TJB
1620 || bl->section == NULL
1621 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
1622 {
1623 /* No overlay handling: just set the breakpoint. */
1624
35df4500
TJB
1625 if (bl->loc_type == bp_loc_hardware_breakpoint)
1626 val = target_insert_hw_breakpoint (bl->gdbarch,
1627 &bl->target_info);
879bfdc2 1628 else
35df4500
TJB
1629 val = target_insert_breakpoint (bl->gdbarch,
1630 &bl->target_info);
879bfdc2
DJ
1631 }
1632 else
1633 {
4a64f543 1634 /* This breakpoint is in an overlay section.
879bfdc2
DJ
1635 Shall we set a breakpoint at the LMA? */
1636 if (!overlay_events_enabled)
1637 {
1638 /* Yes -- overlay event support is not active,
1639 so we must try to set a breakpoint at the LMA.
1640 This will not work for a hardware breakpoint. */
35df4500 1641 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 1642 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 1643 bl->owner->number);
879bfdc2
DJ
1644 else
1645 {
35df4500
TJB
1646 CORE_ADDR addr = overlay_unmapped_address (bl->address,
1647 bl->section);
879bfdc2 1648 /* Set a software (trap) breakpoint at the LMA. */
35df4500
TJB
1649 bl->overlay_target_info = bl->target_info;
1650 bl->overlay_target_info.placed_address = addr;
1651 val = target_insert_breakpoint (bl->gdbarch,
1652 &bl->overlay_target_info);
879bfdc2 1653 if (val != 0)
99361f52 1654 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
1655 "Overlay breakpoint %d "
1656 "failed: in ROM?\n",
35df4500 1657 bl->owner->number);
879bfdc2
DJ
1658 }
1659 }
1660 /* Shall we set a breakpoint at the VMA? */
35df4500 1661 if (section_is_mapped (bl->section))
879bfdc2
DJ
1662 {
1663 /* Yes. This overlay section is mapped into memory. */
35df4500
TJB
1664 if (bl->loc_type == bp_loc_hardware_breakpoint)
1665 val = target_insert_hw_breakpoint (bl->gdbarch,
1666 &bl->target_info);
879bfdc2 1667 else
35df4500
TJB
1668 val = target_insert_breakpoint (bl->gdbarch,
1669 &bl->target_info);
879bfdc2
DJ
1670 }
1671 else
1672 {
1673 /* No. This breakpoint will not be inserted.
1674 No error, but do not mark the bp as 'inserted'. */
1675 return 0;
1676 }
1677 }
1678
1679 if (val)
1680 {
1681 /* Can't set the breakpoint. */
35df4500 1682 if (solib_name_from_address (bl->pspace, bl->address))
879bfdc2 1683 {
4a64f543 1684 /* See also: disable_breakpoints_in_shlibs. */
879bfdc2 1685 val = 0;
35df4500 1686 bl->shlib_disabled = 1;
8d3788bd 1687 observer_notify_breakpoint_modified (bl->owner);
879bfdc2
DJ
1688 if (!*disabled_breaks)
1689 {
1690 fprintf_unfiltered (tmp_error_stream,
1691 "Cannot insert breakpoint %d.\n",
35df4500 1692 bl->owner->number);
879bfdc2 1693 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
1694 "Temporarily disabling shared "
1695 "library breakpoints:\n");
879bfdc2
DJ
1696 }
1697 *disabled_breaks = 1;
1698 fprintf_unfiltered (tmp_error_stream,
35df4500 1699 "breakpoint #%d\n", bl->owner->number);
879bfdc2
DJ
1700 }
1701 else
879bfdc2 1702 {
35df4500 1703 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2
DJ
1704 {
1705 *hw_breakpoint_error = 1;
3e43a32a
MS
1706 fprintf_unfiltered (tmp_error_stream,
1707 "Cannot insert hardware "
1708 "breakpoint %d.\n",
35df4500 1709 bl->owner->number);
879bfdc2
DJ
1710 }
1711 else
1712 {
1713 fprintf_unfiltered (tmp_error_stream,
1714 "Cannot insert breakpoint %d.\n",
35df4500 1715 bl->owner->number);
879bfdc2
DJ
1716 fprintf_filtered (tmp_error_stream,
1717 "Error accessing memory address ");
35df4500 1718 fputs_filtered (paddress (bl->gdbarch, bl->address),
5af949e3 1719 tmp_error_stream);
879bfdc2
DJ
1720 fprintf_filtered (tmp_error_stream, ": %s.\n",
1721 safe_strerror (val));
1722 }
1723
1724 }
1725 }
1726 else
35df4500 1727 bl->inserted = 1;
879bfdc2
DJ
1728
1729 return val;
1730 }
1731
35df4500 1732 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 1733 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 1734 watchpoints. It's not clear that it's necessary... */
35df4500 1735 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 1736 {
77b06cd7
TJB
1737 gdb_assert (bl->owner->ops != NULL
1738 && bl->owner->ops->insert_location != NULL);
1739
1740 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
1741
1742 /* If trying to set a read-watchpoint, and it turns out it's not
1743 supported, try emulating one with an access watchpoint. */
35df4500 1744 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
1745 {
1746 struct bp_location *loc, **loc_temp;
1747
1748 /* But don't try to insert it, if there's already another
1749 hw_access location that would be considered a duplicate
1750 of this one. */
1751 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 1752 if (loc != bl
85d721b8 1753 && loc->watchpoint_type == hw_access
35df4500 1754 && watchpoint_locations_match (bl, loc))
85d721b8 1755 {
35df4500
TJB
1756 bl->duplicate = 1;
1757 bl->inserted = 1;
1758 bl->target_info = loc->target_info;
1759 bl->watchpoint_type = hw_access;
85d721b8
PA
1760 val = 0;
1761 break;
1762 }
1763
1764 if (val == 1)
1765 {
77b06cd7
TJB
1766 bl->watchpoint_type = hw_access;
1767 val = bl->owner->ops->insert_location (bl);
1768
1769 if (val)
1770 /* Back to the original value. */
1771 bl->watchpoint_type = hw_read;
85d721b8
PA
1772 }
1773 }
1774
35df4500 1775 bl->inserted = (val == 0);
879bfdc2
DJ
1776 }
1777
35df4500 1778 else if (bl->owner->type == bp_catchpoint)
879bfdc2 1779 {
77b06cd7
TJB
1780 gdb_assert (bl->owner->ops != NULL
1781 && bl->owner->ops->insert_location != NULL);
1782
1783 val = bl->owner->ops->insert_location (bl);
1784 if (val)
1785 {
1786 bl->owner->enable_state = bp_disabled;
1787
1788 if (val == 1)
1789 warning (_("\
1790Error inserting catchpoint %d: Your system does not support this type\n\
1791of catchpoint."), bl->owner->number);
1792 else
1793 warning (_("Error inserting catchpoint %d."), bl->owner->number);
1794 }
1795
1796 bl->inserted = (val == 0);
1640b821
DJ
1797
1798 /* We've already printed an error message if there was a problem
1799 inserting this catchpoint, and we've disabled the catchpoint,
1800 so just return success. */
1801 return 0;
879bfdc2
DJ
1802 }
1803
1804 return 0;
1805}
1806
6c95b8df
PA
1807/* This function is called when program space PSPACE is about to be
1808 deleted. It takes care of updating breakpoints to not reference
1809 PSPACE anymore. */
1810
1811void
1812breakpoint_program_space_exit (struct program_space *pspace)
1813{
1814 struct breakpoint *b, *b_temp;
876fa593 1815 struct bp_location *loc, **loc_temp;
6c95b8df
PA
1816
1817 /* Remove any breakpoint that was set through this program space. */
1818 ALL_BREAKPOINTS_SAFE (b, b_temp)
1819 {
1820 if (b->pspace == pspace)
1821 delete_breakpoint (b);
1822 }
1823
1824 /* Breakpoints set through other program spaces could have locations
1825 bound to PSPACE as well. Remove those. */
876fa593 1826 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
1827 {
1828 struct bp_location *tmp;
1829
1830 if (loc->pspace == pspace)
1831 {
2bdf28a0 1832 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
1833 if (loc->owner->loc == loc)
1834 loc->owner->loc = loc->next;
1835 else
1836 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
1837 if (tmp->next == loc)
1838 {
1839 tmp->next = loc->next;
1840 break;
1841 }
1842 }
1843 }
1844
1845 /* Now update the global location list to permanently delete the
1846 removed locations above. */
1847 update_global_location_list (0);
1848}
1849
74960c60
VP
1850/* Make sure all breakpoints are inserted in inferior.
1851 Throws exception on any error.
1852 A breakpoint that is already inserted won't be inserted
1853 again, so calling this function twice is safe. */
1854void
1855insert_breakpoints (void)
1856{
1857 struct breakpoint *bpt;
1858
1859 ALL_BREAKPOINTS (bpt)
1860 if (is_hardware_watchpoint (bpt))
4a64f543 1861 update_watchpoint (bpt, 0 /* don't reparse. */);
74960c60 1862
b60e7edf 1863 update_global_location_list (1);
74960c60 1864
c35b1492
PA
1865 /* update_global_location_list does not insert breakpoints when
1866 always_inserted_mode is not enabled. Explicitly insert them
1867 now. */
1868 if (!breakpoints_always_inserted_mode ())
74960c60
VP
1869 insert_breakpoint_locations ();
1870}
1871
c906108c
SS
1872/* insert_breakpoints is used when starting or continuing the program.
1873 remove_breakpoints is used when the program stops.
1874 Both return zero if successful,
1875 or an `errno' value if could not write the inferior. */
1876
74960c60
VP
1877static void
1878insert_breakpoint_locations (void)
c906108c 1879{
a5606eee 1880 struct breakpoint *bpt;
35df4500 1881 struct bp_location *bl, **blp_tmp;
e236ba44 1882 int error = 0;
c906108c
SS
1883 int val = 0;
1884 int disabled_breaks = 0;
81d0cc19 1885 int hw_breakpoint_error = 0;
c906108c 1886
81d0cc19 1887 struct ui_file *tmp_error_stream = mem_fileopen ();
f7545552 1888 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 1889
81d0cc19
GS
1890 /* Explicitly mark the warning -- this will only be printed if
1891 there was an error. */
1892 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
6c95b8df
PA
1893
1894 save_current_space_and_thread ();
1895
35df4500 1896 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 1897 {
35df4500 1898 if (!should_be_inserted (bl) || bl->inserted)
879bfdc2
DJ
1899 continue;
1900
4a64f543
MS
1901 /* There is no point inserting thread-specific breakpoints if
1902 the thread no longer exists. ALL_BP_LOCATIONS bp_location
1903 has BL->OWNER always non-NULL. */
35df4500
TJB
1904 if (bl->owner->thread != -1
1905 && !valid_thread_id (bl->owner->thread))
f365de73
AS
1906 continue;
1907
35df4500 1908 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
1909
1910 /* For targets that support global breakpoints, there's no need
1911 to select an inferior to insert breakpoint to. In fact, even
1912 if we aren't attached to any process yet, we should still
1913 insert breakpoints. */
1914 if (!gdbarch_has_global_breakpoints (target_gdbarch)
1915 && ptid_equal (inferior_ptid, null_ptid))
1916 continue;
1917
35df4500 1918 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
879bfdc2
DJ
1919 &hw_breakpoint_error);
1920 if (val)
e236ba44 1921 error = val;
879bfdc2 1922 }
c906108c 1923
4a64f543
MS
1924 /* If we failed to insert all locations of a watchpoint, remove
1925 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
1926 ALL_BREAKPOINTS (bpt)
1927 {
1928 int some_failed = 0;
1929 struct bp_location *loc;
1930
1931 if (!is_hardware_watchpoint (bpt))
1932 continue;
1933
d6b74ac4 1934 if (!breakpoint_enabled (bpt))
a5606eee 1935 continue;
74960c60
VP
1936
1937 if (bpt->disposition == disp_del_at_next_stop)
1938 continue;
a5606eee
VP
1939
1940 for (loc = bpt->loc; loc; loc = loc->next)
56710373 1941 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
1942 {
1943 some_failed = 1;
1944 break;
1945 }
1946 if (some_failed)
1947 {
1948 for (loc = bpt->loc; loc; loc = loc->next)
1949 if (loc->inserted)
1950 remove_breakpoint (loc, mark_uninserted);
1951
1952 hw_breakpoint_error = 1;
1953 fprintf_unfiltered (tmp_error_stream,
1954 "Could not insert hardware watchpoint %d.\n",
1955 bpt->number);
1956 error = -1;
1957 }
1958 }
1959
e236ba44 1960 if (error)
81d0cc19
GS
1961 {
1962 /* If a hardware breakpoint or watchpoint was inserted, add a
1963 message about possibly exhausted resources. */
879bfdc2 1964 if (hw_breakpoint_error)
81d0cc19 1965 {
c6510018
MS
1966 fprintf_unfiltered (tmp_error_stream,
1967 "Could not insert hardware breakpoints:\n\
1968You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 1969 }
81d0cc19
GS
1970 target_terminal_ours_for_output ();
1971 error_stream (tmp_error_stream);
1972 }
f7545552
TT
1973
1974 do_cleanups (cleanups);
c906108c
SS
1975}
1976
c906108c 1977int
fba45db2 1978remove_breakpoints (void)
c906108c 1979{
35df4500 1980 struct bp_location *bl, **blp_tmp;
3a1bae8e 1981 int val = 0;
c906108c 1982
35df4500 1983 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 1984 {
35df4500
TJB
1985 if (bl->inserted)
1986 val |= remove_breakpoint (bl, mark_uninserted);
c5aa993b 1987 }
3a1bae8e 1988 return val;
c906108c
SS
1989}
1990
6c95b8df
PA
1991/* Remove breakpoints of process PID. */
1992
1993int
1994remove_breakpoints_pid (int pid)
1995{
35df4500 1996 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
1997 int val;
1998 struct inferior *inf = find_inferior_pid (pid);
1999
35df4500 2000 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 2001 {
35df4500 2002 if (bl->pspace != inf->pspace)
6c95b8df
PA
2003 continue;
2004
35df4500 2005 if (bl->inserted)
6c95b8df 2006 {
35df4500 2007 val = remove_breakpoint (bl, mark_uninserted);
6c95b8df
PA
2008 if (val != 0)
2009 return val;
2010 }
2011 }
2012 return 0;
2013}
2014
c906108c 2015int
fba45db2 2016reattach_breakpoints (int pid)
c906108c 2017{
6c95b8df 2018 struct cleanup *old_chain;
35df4500 2019 struct bp_location *bl, **blp_tmp;
c906108c 2020 int val;
86b887df 2021 struct ui_file *tmp_error_stream;
fa3a767f 2022 int dummy1 = 0, dummy2 = 0;
6c95b8df
PA
2023 struct inferior *inf;
2024 struct thread_info *tp;
2025
2026 tp = any_live_thread_of_process (pid);
2027 if (tp == NULL)
2028 return 1;
2029
2030 inf = find_inferior_pid (pid);
2031 old_chain = save_inferior_ptid ();
2032
2033 inferior_ptid = tp->ptid;
a4954f26 2034
86b887df 2035 tmp_error_stream = mem_fileopen ();
a4954f26 2036 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 2037
35df4500 2038 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2039 {
35df4500 2040 if (bl->pspace != inf->pspace)
6c95b8df
PA
2041 continue;
2042
35df4500 2043 if (bl->inserted)
c5aa993b 2044 {
35df4500
TJB
2045 bl->inserted = 0;
2046 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2);
c5aa993b
JM
2047 if (val != 0)
2048 {
ce696e05 2049 do_cleanups (old_chain);
c5aa993b
JM
2050 return val;
2051 }
2052 }
2053 }
ce696e05 2054 do_cleanups (old_chain);
c906108c
SS
2055 return 0;
2056}
2057
e58b0e63
PA
2058static int internal_breakpoint_number = -1;
2059
84f4c1fe
PM
2060/* Set the breakpoint number of B, depending on the value of INTERNAL.
2061 If INTERNAL is non-zero, the breakpoint number will be populated
2062 from internal_breakpoint_number and that variable decremented.
2063 Otherwis the breakpoint number will be populated from
2064 breakpoint_count and that value incremented. Internal breakpoints
2065 do not set the internal var bpnum. */
2066static void
2067set_breakpoint_number (int internal, struct breakpoint *b)
2068{
2069 if (internal)
2070 b->number = internal_breakpoint_number--;
2071 else
2072 {
2073 set_breakpoint_count (breakpoint_count + 1);
2074 b->number = breakpoint_count;
2075 }
2076}
2077
e62c965a 2078static struct breakpoint *
a6d9a66e
UW
2079create_internal_breakpoint (struct gdbarch *gdbarch,
2080 CORE_ADDR address, enum bptype type)
e62c965a 2081{
e62c965a
PP
2082 struct symtab_and_line sal;
2083 struct breakpoint *b;
2084
4a64f543 2085 init_sal (&sal); /* Initialize to zeroes. */
e62c965a
PP
2086
2087 sal.pc = address;
2088 sal.section = find_pc_overlay (sal.pc);
6c95b8df 2089 sal.pspace = current_program_space;
e62c965a 2090
a6d9a66e 2091 b = set_raw_breakpoint (gdbarch, sal, type);
e62c965a
PP
2092 b->number = internal_breakpoint_number--;
2093 b->disposition = disp_donttouch;
2094
2095 return b;
2096}
2097
17450429
PP
2098static const char *const longjmp_names[] =
2099 {
2100 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
2101 };
2102#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
2103
2104/* Per-objfile data private to breakpoint.c. */
2105struct breakpoint_objfile_data
2106{
2107 /* Minimal symbol for "_ovly_debug_event" (if any). */
2108 struct minimal_symbol *overlay_msym;
2109
2110 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
2111 struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES];
2112
2113 /* Minimal symbol for "std::terminate()" (if any). */
2114 struct minimal_symbol *terminate_msym;
2115
2116 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
2117 struct minimal_symbol *exception_msym;
2118};
2119
2120static const struct objfile_data *breakpoint_objfile_key;
2121
2122/* Minimal symbol not found sentinel. */
2123static struct minimal_symbol msym_not_found;
2124
2125/* Returns TRUE if MSYM point to the "not found" sentinel. */
2126
2127static int
2128msym_not_found_p (const struct minimal_symbol *msym)
2129{
2130 return msym == &msym_not_found;
2131}
2132
2133/* Return per-objfile data needed by breakpoint.c.
2134 Allocate the data if necessary. */
2135
2136static struct breakpoint_objfile_data *
2137get_breakpoint_objfile_data (struct objfile *objfile)
2138{
2139 struct breakpoint_objfile_data *bp_objfile_data;
2140
2141 bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key);
2142 if (bp_objfile_data == NULL)
2143 {
2144 bp_objfile_data = obstack_alloc (&objfile->objfile_obstack,
2145 sizeof (*bp_objfile_data));
2146
2147 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
2148 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
2149 }
2150 return bp_objfile_data;
2151}
2152
e62c965a 2153static void
af02033e 2154create_overlay_event_breakpoint (void)
e62c965a 2155{
69de3c6a 2156 struct objfile *objfile;
af02033e 2157 const char *const func_name = "_ovly_debug_event";
e62c965a 2158
69de3c6a
PP
2159 ALL_OBJFILES (objfile)
2160 {
2161 struct breakpoint *b;
17450429
PP
2162 struct breakpoint_objfile_data *bp_objfile_data;
2163 CORE_ADDR addr;
69de3c6a 2164
17450429
PP
2165 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2166
2167 if (msym_not_found_p (bp_objfile_data->overlay_msym))
2168 continue;
2169
2170 if (bp_objfile_data->overlay_msym == NULL)
2171 {
2172 struct minimal_symbol *m;
2173
2174 m = lookup_minimal_symbol_text (func_name, objfile);
2175 if (m == NULL)
2176 {
2177 /* Avoid future lookups in this objfile. */
2178 bp_objfile_data->overlay_msym = &msym_not_found;
2179 continue;
2180 }
2181 bp_objfile_data->overlay_msym = m;
2182 }
e62c965a 2183
17450429
PP
2184 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
2185 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
69de3c6a
PP
2186 bp_overlay_event);
2187 b->addr_string = xstrdup (func_name);
e62c965a 2188
69de3c6a
PP
2189 if (overlay_debugging == ovly_auto)
2190 {
2191 b->enable_state = bp_enabled;
2192 overlay_events_enabled = 1;
2193 }
2194 else
2195 {
2196 b->enable_state = bp_disabled;
2197 overlay_events_enabled = 0;
2198 }
e62c965a
PP
2199 }
2200 update_global_location_list (1);
2201}
2202
0fd8e87f 2203static void
af02033e 2204create_longjmp_master_breakpoint (void)
0fd8e87f 2205{
6c95b8df 2206 struct program_space *pspace;
6c95b8df
PA
2207 struct cleanup *old_chain;
2208
2209 old_chain = save_current_program_space ();
0fd8e87f 2210
6c95b8df 2211 ALL_PSPACES (pspace)
af02033e
PP
2212 {
2213 struct objfile *objfile;
2214
2215 set_current_program_space (pspace);
2216
2217 ALL_OBJFILES (objfile)
0fd8e87f 2218 {
af02033e
PP
2219 int i;
2220 struct gdbarch *gdbarch;
17450429 2221 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 2222
af02033e
PP
2223 gdbarch = get_objfile_arch (objfile);
2224 if (!gdbarch_get_longjmp_target_p (gdbarch))
0fd8e87f
UW
2225 continue;
2226
17450429
PP
2227 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2228
2229 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
2230 {
2231 struct breakpoint *b;
af02033e 2232 const char *func_name;
17450429 2233 CORE_ADDR addr;
6c95b8df 2234
17450429 2235 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i]))
af02033e 2236 continue;
0fd8e87f 2237
17450429
PP
2238 func_name = longjmp_names[i];
2239 if (bp_objfile_data->longjmp_msym[i] == NULL)
2240 {
2241 struct minimal_symbol *m;
2242
2243 m = lookup_minimal_symbol_text (func_name, objfile);
2244 if (m == NULL)
2245 {
2246 /* Prevent future lookups in this objfile. */
2247 bp_objfile_data->longjmp_msym[i] = &msym_not_found;
2248 continue;
2249 }
2250 bp_objfile_data->longjmp_msym[i] = m;
2251 }
2252
2253 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
2254 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master);
af02033e
PP
2255 b->addr_string = xstrdup (func_name);
2256 b->enable_state = bp_disabled;
2257 }
0fd8e87f 2258 }
af02033e 2259 }
0fd8e87f 2260 update_global_location_list (1);
6c95b8df
PA
2261
2262 do_cleanups (old_chain);
0fd8e87f
UW
2263}
2264
af02033e 2265/* Create a master std::terminate breakpoint. */
aa7d318d 2266static void
af02033e 2267create_std_terminate_master_breakpoint (void)
aa7d318d
TT
2268{
2269 struct program_space *pspace;
aa7d318d 2270 struct cleanup *old_chain;
af02033e 2271 const char *const func_name = "std::terminate()";
aa7d318d
TT
2272
2273 old_chain = save_current_program_space ();
2274
2275 ALL_PSPACES (pspace)
17450429
PP
2276 {
2277 struct objfile *objfile;
2278 CORE_ADDR addr;
2279
2280 set_current_program_space (pspace);
2281
aa7d318d
TT
2282 ALL_OBJFILES (objfile)
2283 {
2284 struct breakpoint *b;
17450429 2285 struct breakpoint_objfile_data *bp_objfile_data;
aa7d318d 2286
17450429 2287 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 2288
17450429
PP
2289 if (msym_not_found_p (bp_objfile_data->terminate_msym))
2290 continue;
2291
2292 if (bp_objfile_data->terminate_msym == NULL)
2293 {
2294 struct minimal_symbol *m;
2295
2296 m = lookup_minimal_symbol (func_name, NULL, objfile);
2297 if (m == NULL || (MSYMBOL_TYPE (m) != mst_text
2298 && MSYMBOL_TYPE (m) != mst_file_text))
2299 {
2300 /* Prevent future lookups in this objfile. */
2301 bp_objfile_data->terminate_msym = &msym_not_found;
2302 continue;
2303 }
2304 bp_objfile_data->terminate_msym = m;
2305 }
aa7d318d 2306
17450429
PP
2307 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
2308 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
aa7d318d
TT
2309 bp_std_terminate_master);
2310 b->addr_string = xstrdup (func_name);
2311 b->enable_state = bp_disabled;
2312 }
17450429
PP
2313 }
2314
aa7d318d
TT
2315 update_global_location_list (1);
2316
2317 do_cleanups (old_chain);
2318}
2319
186c406b
TT
2320/* Install a master breakpoint on the unwinder's debug hook. */
2321
2322void
2323create_exception_master_breakpoint (void)
2324{
2325 struct objfile *objfile;
17450429 2326 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
2327
2328 ALL_OBJFILES (objfile)
2329 {
17450429
PP
2330 struct breakpoint *b;
2331 struct gdbarch *gdbarch;
2332 struct breakpoint_objfile_data *bp_objfile_data;
2333 CORE_ADDR addr;
2334
2335 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2336
2337 if (msym_not_found_p (bp_objfile_data->exception_msym))
2338 continue;
2339
2340 gdbarch = get_objfile_arch (objfile);
186c406b 2341
17450429 2342 if (bp_objfile_data->exception_msym == NULL)
186c406b 2343 {
17450429 2344 struct minimal_symbol *debug_hook;
186c406b 2345
17450429
PP
2346 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
2347 if (debug_hook == NULL)
2348 {
2349 bp_objfile_data->exception_msym = &msym_not_found;
2350 continue;
2351 }
2352
2353 bp_objfile_data->exception_msym = debug_hook;
186c406b 2354 }
17450429
PP
2355
2356 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
2357 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
2358 &current_target);
2359 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master);
2360 b->addr_string = xstrdup (func_name);
2361 b->enable_state = bp_disabled;
186c406b
TT
2362 }
2363
2364 update_global_location_list (1);
2365}
2366
c906108c 2367void
fba45db2 2368update_breakpoints_after_exec (void)
c906108c 2369{
35df4500 2370 struct breakpoint *b, *b_tmp;
876fa593 2371 struct bp_location *bploc, **bplocp_tmp;
c906108c 2372
25b22b0a
PA
2373 /* We're about to delete breakpoints from GDB's lists. If the
2374 INSERTED flag is true, GDB will try to lift the breakpoints by
2375 writing the breakpoints' "shadow contents" back into memory. The
2376 "shadow contents" are NOT valid after an exec, so GDB should not
2377 do that. Instead, the target is responsible from marking
2378 breakpoints out as soon as it detects an exec. We don't do that
2379 here instead, because there may be other attempts to delete
2380 breakpoints after detecting an exec and before reaching here. */
876fa593 2381 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
2382 if (bploc->pspace == current_program_space)
2383 gdb_assert (!bploc->inserted);
c906108c 2384
35df4500 2385 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 2386 {
6c95b8df
PA
2387 if (b->pspace != current_program_space)
2388 continue;
2389
4a64f543 2390 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
2391 if (b->type == bp_shlib_event)
2392 {
2393 delete_breakpoint (b);
2394 continue;
2395 }
c906108c 2396
4a64f543 2397 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
2398 if (b->type == bp_jit_event)
2399 {
2400 delete_breakpoint (b);
2401 continue;
2402 }
2403
1900040c 2404 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
2405 as must overlay event and longjmp master breakpoints. */
2406 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
2407 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
2408 || b->type == bp_exception_master)
c4093a6a
JM
2409 {
2410 delete_breakpoint (b);
2411 continue;
2412 }
2413
4a64f543 2414 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 2415 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
2416 {
2417 delete_breakpoint (b);
2418 continue;
2419 }
2420
611c83ae
PA
2421 /* Longjmp and longjmp-resume breakpoints are also meaningless
2422 after an exec. */
186c406b
TT
2423 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
2424 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
2425 {
2426 delete_breakpoint (b);
2427 continue;
2428 }
2429
ce78b96d
JB
2430 if (b->type == bp_catchpoint)
2431 {
2432 /* For now, none of the bp_catchpoint breakpoints need to
2433 do anything at this point. In the future, if some of
2434 the catchpoints need to something, we will need to add
2435 a new method, and call this method from here. */
2436 continue;
2437 }
2438
c5aa993b
JM
2439 /* bp_finish is a special case. The only way we ought to be able
2440 to see one of these when an exec() has happened, is if the user
2441 caught a vfork, and then said "finish". Ordinarily a finish just
2442 carries them to the call-site of the current callee, by setting
2443 a temporary bp there and resuming. But in this case, the finish
2444 will carry them entirely through the vfork & exec.
2445
2446 We don't want to allow a bp_finish to remain inserted now. But
2447 we can't safely delete it, 'cause finish_command has a handle to
2448 the bp on a bpstat, and will later want to delete it. There's a
2449 chance (and I've seen it happen) that if we delete the bp_finish
2450 here, that its storage will get reused by the time finish_command
2451 gets 'round to deleting the "use to be a bp_finish" breakpoint.
2452 We really must allow finish_command to delete a bp_finish.
2453
53a5351d
JM
2454 In the absense of a general solution for the "how do we know
2455 it's safe to delete something others may have handles to?"
2456 problem, what we'll do here is just uninsert the bp_finish, and
2457 let finish_command delete it.
2458
2459 (We know the bp_finish is "doomed" in the sense that it's
2460 momentary, and will be deleted as soon as finish_command sees
2461 the inferior stopped. So it doesn't matter that the bp's
2462 address is probably bogus in the new a.out, unlike e.g., the
2463 solib breakpoints.) */
c5aa993b 2464
c5aa993b
JM
2465 if (b->type == bp_finish)
2466 {
2467 continue;
2468 }
2469
2470 /* Without a symbolic address, we have little hope of the
2471 pre-exec() address meaning the same thing in the post-exec()
4a64f543 2472 a.out. */
c5aa993b
JM
2473 if (b->addr_string == NULL)
2474 {
2475 delete_breakpoint (b);
2476 continue;
2477 }
c5aa993b 2478 }
1900040c 2479 /* FIXME what about longjmp breakpoints? Re-create them here? */
af02033e
PP
2480 create_overlay_event_breakpoint ();
2481 create_longjmp_master_breakpoint ();
2482 create_std_terminate_master_breakpoint ();
186c406b 2483 create_exception_master_breakpoint ();
c906108c
SS
2484}
2485
2486int
fba45db2 2487detach_breakpoints (int pid)
c906108c 2488{
35df4500 2489 struct bp_location *bl, **blp_tmp;
3a1bae8e 2490 int val = 0;
ce696e05 2491 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 2492 struct inferior *inf = current_inferior ();
c5aa993b 2493
39f77062 2494 if (pid == PIDGET (inferior_ptid))
8a3fe4f8 2495 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 2496
6c95b8df 2497 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
ce696e05 2498 inferior_ptid = pid_to_ptid (pid);
35df4500 2499 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2500 {
35df4500 2501 if (bl->pspace != inf->pspace)
6c95b8df
PA
2502 continue;
2503
35df4500
TJB
2504 if (bl->inserted)
2505 val |= remove_breakpoint_1 (bl, mark_inserted);
c5aa993b 2506 }
d03285ec
UW
2507
2508 /* Detach single-step breakpoints as well. */
2509 detach_single_step_breakpoints ();
2510
ce696e05 2511 do_cleanups (old_chain);
3a1bae8e 2512 return val;
c906108c
SS
2513}
2514
35df4500 2515/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
2516 Note that this is used to detach breakpoints from a child fork.
2517 When we get here, the child isn't in the inferior list, and neither
2518 do we have objects to represent its address space --- we should
35df4500 2519 *not* look at bl->pspace->aspace here. */
6c95b8df 2520
c906108c 2521static int
35df4500 2522remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
c906108c
SS
2523{
2524 int val;
c5aa993b 2525
35df4500
TJB
2526 /* BL is never in moribund_locations by our callers. */
2527 gdb_assert (bl->owner != NULL);
2bdf28a0 2528
35df4500 2529 if (bl->owner->enable_state == bp_permanent)
c2c6d25f
JM
2530 /* Permanent breakpoints cannot be inserted or removed. */
2531 return 0;
2532
74960c60
VP
2533 /* The type of none suggests that owner is actually deleted.
2534 This should not ever happen. */
35df4500 2535 gdb_assert (bl->owner->type != bp_none);
0bde7532 2536
35df4500
TJB
2537 if (bl->loc_type == bp_loc_software_breakpoint
2538 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 2539 {
c02f5703
MS
2540 /* "Normal" instruction breakpoint: either the standard
2541 trap-instruction bp (bp_breakpoint), or a
2542 bp_hardware_breakpoint. */
2543
2544 /* First check to see if we have to handle an overlay. */
2545 if (overlay_debugging == ovly_off
35df4500
TJB
2546 || bl->section == NULL
2547 || !(section_is_overlay (bl->section)))
c02f5703
MS
2548 {
2549 /* No overlay handling: just remove the breakpoint. */
2550
35df4500
TJB
2551 if (bl->loc_type == bp_loc_hardware_breakpoint)
2552 val = target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
c02f5703 2553 else
35df4500 2554 val = target_remove_breakpoint (bl->gdbarch, &bl->target_info);
c02f5703 2555 }
c906108c
SS
2556 else
2557 {
4a64f543 2558 /* This breakpoint is in an overlay section.
c02f5703
MS
2559 Did we set a breakpoint at the LMA? */
2560 if (!overlay_events_enabled)
2561 {
2562 /* Yes -- overlay event support is not active, so we
2563 should have set a breakpoint at the LMA. Remove it.
2564 */
c02f5703
MS
2565 /* Ignore any failures: if the LMA is in ROM, we will
2566 have already warned when we failed to insert it. */
35df4500
TJB
2567 if (bl->loc_type == bp_loc_hardware_breakpoint)
2568 target_remove_hw_breakpoint (bl->gdbarch,
2569 &bl->overlay_target_info);
c02f5703 2570 else
35df4500
TJB
2571 target_remove_breakpoint (bl->gdbarch,
2572 &bl->overlay_target_info);
c02f5703
MS
2573 }
2574 /* Did we set a breakpoint at the VMA?
2575 If so, we will have marked the breakpoint 'inserted'. */
35df4500 2576 if (bl->inserted)
c906108c 2577 {
c02f5703
MS
2578 /* Yes -- remove it. Previously we did not bother to
2579 remove the breakpoint if the section had been
2580 unmapped, but let's not rely on that being safe. We
2581 don't know what the overlay manager might do. */
35df4500
TJB
2582 if (bl->loc_type == bp_loc_hardware_breakpoint)
2583 val = target_remove_hw_breakpoint (bl->gdbarch,
2584 &bl->target_info);
aa67235e
UW
2585
2586 /* However, we should remove *software* breakpoints only
2587 if the section is still mapped, or else we overwrite
2588 wrong code with the saved shadow contents. */
35df4500
TJB
2589 else if (section_is_mapped (bl->section))
2590 val = target_remove_breakpoint (bl->gdbarch,
2591 &bl->target_info);
aa67235e
UW
2592 else
2593 val = 0;
c906108c 2594 }
c02f5703
MS
2595 else
2596 {
2597 /* No -- not inserted, so no need to remove. No error. */
2598 val = 0;
2599 }
c906108c 2600 }
879d1e6b
UW
2601
2602 /* In some cases, we might not be able to remove a breakpoint
2603 in a shared library that has already been removed, but we
2604 have not yet processed the shlib unload event. */
35df4500 2605 if (val && solib_name_from_address (bl->pspace, bl->address))
879d1e6b
UW
2606 val = 0;
2607
c906108c
SS
2608 if (val)
2609 return val;
35df4500 2610 bl->inserted = (is == mark_inserted);
c906108c 2611 }
35df4500 2612 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 2613 {
77b06cd7
TJB
2614 gdb_assert (bl->owner->ops != NULL
2615 && bl->owner->ops->remove_location != NULL);
2616
35df4500 2617 bl->inserted = (is == mark_inserted);
77b06cd7 2618 bl->owner->ops->remove_location (bl);
2e70b7b9 2619
c906108c 2620 /* Failure to remove any of the hardware watchpoints comes here. */
35df4500 2621 if ((is == mark_uninserted) && (bl->inserted))
8a3fe4f8 2622 warning (_("Could not remove hardware watchpoint %d."),
35df4500 2623 bl->owner->number);
c906108c 2624 }
35df4500
TJB
2625 else if (bl->owner->type == bp_catchpoint
2626 && breakpoint_enabled (bl->owner)
2627 && !bl->duplicate)
ce78b96d 2628 {
77b06cd7
TJB
2629 gdb_assert (bl->owner->ops != NULL
2630 && bl->owner->ops->remove_location != NULL);
ce78b96d 2631
77b06cd7 2632 val = bl->owner->ops->remove_location (bl);
ce78b96d
JB
2633 if (val)
2634 return val;
77b06cd7 2635
35df4500 2636 bl->inserted = (is == mark_inserted);
ce78b96d 2637 }
c906108c
SS
2638
2639 return 0;
2640}
2641
6c95b8df 2642static int
35df4500 2643remove_breakpoint (struct bp_location *bl, insertion_state_t is)
6c95b8df
PA
2644{
2645 int ret;
2646 struct cleanup *old_chain;
2647
35df4500
TJB
2648 /* BL is never in moribund_locations by our callers. */
2649 gdb_assert (bl->owner != NULL);
2bdf28a0 2650
35df4500 2651 if (bl->owner->enable_state == bp_permanent)
6c95b8df
PA
2652 /* Permanent breakpoints cannot be inserted or removed. */
2653 return 0;
2654
2655 /* The type of none suggests that owner is actually deleted.
2656 This should not ever happen. */
35df4500 2657 gdb_assert (bl->owner->type != bp_none);
6c95b8df
PA
2658
2659 old_chain = save_current_space_and_thread ();
2660
35df4500 2661 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 2662
35df4500 2663 ret = remove_breakpoint_1 (bl, is);
6c95b8df
PA
2664
2665 do_cleanups (old_chain);
2666 return ret;
2667}
2668
c906108c
SS
2669/* Clear the "inserted" flag in all breakpoints. */
2670
25b22b0a 2671void
fba45db2 2672mark_breakpoints_out (void)
c906108c 2673{
35df4500 2674 struct bp_location *bl, **blp_tmp;
c906108c 2675
35df4500
TJB
2676 ALL_BP_LOCATIONS (bl, blp_tmp)
2677 if (bl->pspace == current_program_space)
2678 bl->inserted = 0;
c906108c
SS
2679}
2680
53a5351d
JM
2681/* Clear the "inserted" flag in all breakpoints and delete any
2682 breakpoints which should go away between runs of the program.
c906108c
SS
2683
2684 Plus other such housekeeping that has to be done for breakpoints
2685 between runs.
2686
53a5351d
JM
2687 Note: this function gets called at the end of a run (by
2688 generic_mourn_inferior) and when a run begins (by
4a64f543 2689 init_wait_for_inferior). */
c906108c
SS
2690
2691
2692
2693void
fba45db2 2694breakpoint_init_inferior (enum inf_context context)
c906108c 2695{
35df4500
TJB
2696 struct breakpoint *b, *b_tmp;
2697 struct bp_location *bl, **blp_tmp;
1c5cfe86 2698 int ix;
6c95b8df 2699 struct program_space *pspace = current_program_space;
c906108c 2700
50c71eaf
PA
2701 /* If breakpoint locations are shared across processes, then there's
2702 nothing to do. */
2567c7d9 2703 if (gdbarch_has_global_breakpoints (target_gdbarch))
50c71eaf
PA
2704 return;
2705
35df4500 2706 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 2707 {
35df4500
TJB
2708 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
2709 if (bl->pspace == pspace
2710 && bl->owner->enable_state != bp_permanent)
2711 bl->inserted = 0;
6c95b8df 2712 }
075f6582 2713
35df4500 2714 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 2715 {
6c95b8df
PA
2716 if (b->loc && b->loc->pspace != pspace)
2717 continue;
2718
c5aa993b
JM
2719 switch (b->type)
2720 {
2721 case bp_call_dummy:
c906108c 2722
c5aa993b 2723 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
2724 cause problems when the inferior is rerun, so we better get
2725 rid of it. */
2726
2727 case bp_watchpoint_scope:
2728
2729 /* Also get rid of scope breakpoints. */
2730
2731 case bp_shlib_event:
2732
2733 /* Also remove solib event breakpoints. Their addresses may
2734 have changed since the last time we ran the program.
2735 Actually we may now be debugging against different target;
2736 and so the solib backend that installed this breakpoint may
2737 not be used in by the target. E.g.,
2738
2739 (gdb) file prog-linux
2740 (gdb) run # native linux target
2741 ...
2742 (gdb) kill
2743 (gdb) file prog-win.exe
2744 (gdb) tar rem :9999 # remote Windows gdbserver.
2745 */
c906108c 2746
c5aa993b
JM
2747 delete_breakpoint (b);
2748 break;
c906108c 2749
c5aa993b
JM
2750 case bp_watchpoint:
2751 case bp_hardware_watchpoint:
2752 case bp_read_watchpoint:
2753 case bp_access_watchpoint:
c906108c 2754
c5aa993b
JM
2755 /* Likewise for watchpoints on local expressions. */
2756 if (b->exp_valid_block != NULL)
2757 delete_breakpoint (b);
967af18d 2758 else if (context == inf_starting)
c860120c 2759 {
4a64f543
MS
2760 /* Reset val field to force reread of starting value in
2761 insert_breakpoints. */
c860120c
PM
2762 if (b->val)
2763 value_free (b->val);
2764 b->val = NULL;
fa4727a6 2765 b->val_valid = 0;
c860120c 2766 }
c5aa993b
JM
2767 break;
2768 default:
c5aa993b
JM
2769 break;
2770 }
2771 }
1c5cfe86
PA
2772
2773 /* Get rid of the moribund locations. */
35df4500
TJB
2774 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
2775 decref_bp_location (&bl);
1c5cfe86 2776 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
2777}
2778
6c95b8df
PA
2779/* These functions concern about actual breakpoints inserted in the
2780 target --- to e.g. check if we need to do decr_pc adjustment or if
2781 we need to hop over the bkpt --- so we check for address space
2782 match, not program space. */
2783
c2c6d25f
JM
2784/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
2785 exists at PC. It returns ordinary_breakpoint_here if it's an
2786 ordinary breakpoint, or permanent_breakpoint_here if it's a
2787 permanent breakpoint.
2788 - When continuing from a location with an ordinary breakpoint, we
2789 actually single step once before calling insert_breakpoints.
2790 - When continuing from a localion with a permanent breakpoint, we
2791 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
2792 the target, to advance the PC past the breakpoint. */
c906108c 2793
c2c6d25f 2794enum breakpoint_here
6c95b8df 2795breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 2796{
35df4500 2797 struct bp_location *bl, **blp_tmp;
c2c6d25f 2798 int any_breakpoint_here = 0;
c906108c 2799
35df4500 2800 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 2801 {
35df4500
TJB
2802 if (bl->loc_type != bp_loc_software_breakpoint
2803 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2804 continue;
2805
f1310107 2806 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500
TJB
2807 if ((breakpoint_enabled (bl->owner)
2808 || bl->owner->enable_state == bp_permanent)
f1310107 2809 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
2810 {
2811 if (overlay_debugging
35df4500
TJB
2812 && section_is_overlay (bl->section)
2813 && !section_is_mapped (bl->section))
075f6582 2814 continue; /* unmapped overlay -- can't be a match */
35df4500 2815 else if (bl->owner->enable_state == bp_permanent)
075f6582
DJ
2816 return permanent_breakpoint_here;
2817 else
2818 any_breakpoint_here = 1;
2819 }
2820 }
c906108c 2821
c2c6d25f 2822 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
2823}
2824
1c5cfe86
PA
2825/* Return true if there's a moribund breakpoint at PC. */
2826
2827int
6c95b8df 2828moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
2829{
2830 struct bp_location *loc;
2831 int ix;
2832
2833 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 2834 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
2835 return 1;
2836
2837 return 0;
2838}
c2c6d25f 2839
c36b740a 2840/* Returns non-zero if there's a breakpoint inserted at PC, which is
4a64f543
MS
2841 inserted using regular breakpoint_chain / bp_location array
2842 mechanism. This does not check for single-step breakpoints, which
2843 are inserted and removed using direct target manipulation. */
c906108c
SS
2844
2845int
4a64f543
MS
2846regular_breakpoint_inserted_here_p (struct address_space *aspace,
2847 CORE_ADDR pc)
c906108c 2848{
35df4500 2849 struct bp_location *bl, **blp_tmp;
c906108c 2850
35df4500 2851 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2852 {
35df4500
TJB
2853 if (bl->loc_type != bp_loc_software_breakpoint
2854 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2855 continue;
2856
35df4500 2857 if (bl->inserted
f1310107 2858 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
2859 {
2860 if (overlay_debugging
35df4500
TJB
2861 && section_is_overlay (bl->section)
2862 && !section_is_mapped (bl->section))
075f6582
DJ
2863 continue; /* unmapped overlay -- can't be a match */
2864 else
2865 return 1;
2866 }
c5aa993b 2867 }
c36b740a
VP
2868 return 0;
2869}
2870
2871/* Returns non-zero iff there's either regular breakpoint
2872 or a single step breakpoint inserted at PC. */
2873
2874int
6c95b8df 2875breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c36b740a 2876{
6c95b8df 2877 if (regular_breakpoint_inserted_here_p (aspace, pc))
c36b740a 2878 return 1;
c906108c 2879
6c95b8df 2880 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2881 return 1;
2882
c906108c
SS
2883 return 0;
2884}
2885
4fa8626c
DJ
2886/* This function returns non-zero iff there is a software breakpoint
2887 inserted at PC. */
2888
2889int
3e43a32a
MS
2890software_breakpoint_inserted_here_p (struct address_space *aspace,
2891 CORE_ADDR pc)
4fa8626c 2892{
35df4500 2893 struct bp_location *bl, **blp_tmp;
4fa8626c 2894
35df4500 2895 ALL_BP_LOCATIONS (bl, blp_tmp)
4fa8626c 2896 {
35df4500 2897 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
2898 continue;
2899
35df4500
TJB
2900 if (bl->inserted
2901 && breakpoint_address_match (bl->pspace->aspace, bl->address,
6c95b8df 2902 aspace, pc))
4fa8626c
DJ
2903 {
2904 if (overlay_debugging
35df4500
TJB
2905 && section_is_overlay (bl->section)
2906 && !section_is_mapped (bl->section))
4fa8626c
DJ
2907 continue; /* unmapped overlay -- can't be a match */
2908 else
2909 return 1;
2910 }
2911 }
2912
1aafd4da 2913 /* Also check for software single-step breakpoints. */
6c95b8df 2914 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2915 return 1;
2916
4fa8626c
DJ
2917 return 0;
2918}
2919
9093389c
PA
2920int
2921hardware_watchpoint_inserted_in_range (struct address_space *aspace,
2922 CORE_ADDR addr, ULONGEST len)
2923{
2924 struct breakpoint *bpt;
2925
2926 ALL_BREAKPOINTS (bpt)
2927 {
2928 struct bp_location *loc;
2929
2930 if (bpt->type != bp_hardware_watchpoint
2931 && bpt->type != bp_access_watchpoint)
2932 continue;
2933
2934 if (!breakpoint_enabled (bpt))
2935 continue;
2936
2937 for (loc = bpt->loc; loc; loc = loc->next)
2938 if (loc->pspace->aspace == aspace && loc->inserted)
2939 {
2940 CORE_ADDR l, h;
2941
2942 /* Check for intersection. */
2943 l = max (loc->address, addr);
2944 h = min (loc->address + loc->length, addr + len);
2945 if (l < h)
2946 return 1;
2947 }
2948 }
2949 return 0;
2950}
2951
075f6582
DJ
2952/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
2953 PC is valid for process/thread PTID. */
c906108c
SS
2954
2955int
6c95b8df
PA
2956breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc,
2957 ptid_t ptid)
c906108c 2958{
35df4500 2959 struct bp_location *bl, **blp_tmp;
4a306c9a 2960 /* The thread and task IDs associated to PTID, computed lazily. */
a6f1cd96 2961 int thread = -1;
4a306c9a 2962 int task = 0;
a6f1cd96 2963
35df4500 2964 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2965 {
35df4500
TJB
2966 if (bl->loc_type != bp_loc_software_breakpoint
2967 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2968 continue;
2969
35df4500
TJB
2970 /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */
2971 if (!breakpoint_enabled (bl->owner)
2972 && bl->owner->enable_state != bp_permanent)
a6f1cd96
JB
2973 continue;
2974
f1310107 2975 if (!breakpoint_location_address_match (bl, aspace, pc))
a6f1cd96
JB
2976 continue;
2977
35df4500 2978 if (bl->owner->thread != -1)
075f6582 2979 {
a6f1cd96
JB
2980 /* This is a thread-specific breakpoint. Check that ptid
2981 matches that thread. If thread hasn't been computed yet,
2982 it is now time to do so. */
2983 if (thread == -1)
2984 thread = pid_to_thread_id (ptid);
35df4500 2985 if (bl->owner->thread != thread)
a6f1cd96 2986 continue;
075f6582 2987 }
a6f1cd96 2988
35df4500 2989 if (bl->owner->task != 0)
4a306c9a
JB
2990 {
2991 /* This is a task-specific breakpoint. Check that ptid
2992 matches that task. If task hasn't been computed yet,
2993 it is now time to do so. */
2994 if (task == 0)
2995 task = ada_get_task_number (ptid);
35df4500 2996 if (bl->owner->task != task)
4a306c9a
JB
2997 continue;
2998 }
2999
a6f1cd96 3000 if (overlay_debugging
35df4500
TJB
3001 && section_is_overlay (bl->section)
3002 && !section_is_mapped (bl->section))
a6f1cd96
JB
3003 continue; /* unmapped overlay -- can't be a match */
3004
3005 return 1;
c5aa993b 3006 }
c906108c
SS
3007
3008 return 0;
3009}
c906108c 3010\f
c5aa993b 3011
c906108c
SS
3012/* bpstat stuff. External routines' interfaces are documented
3013 in breakpoint.h. */
3014
3015int
fba45db2 3016ep_is_catchpoint (struct breakpoint *ep)
c906108c 3017{
533be4dd 3018 return (ep->type == bp_catchpoint);
c906108c
SS
3019}
3020
f431efe5
PA
3021/* Frees any storage that is part of a bpstat. Does not walk the
3022 'next' chain. */
3023
3024static void
198757a8
VP
3025bpstat_free (bpstat bs)
3026{
3027 if (bs->old_val != NULL)
3028 value_free (bs->old_val);
9add0f1b 3029 decref_counted_command_line (&bs->commands);
f431efe5 3030 decref_bp_location (&bs->bp_location_at);
198757a8
VP
3031 xfree (bs);
3032}
3033
c906108c
SS
3034/* Clear a bpstat so that it says we are not at any breakpoint.
3035 Also free any storage that is part of a bpstat. */
3036
3037void
fba45db2 3038bpstat_clear (bpstat *bsp)
c906108c
SS
3039{
3040 bpstat p;
3041 bpstat q;
3042
3043 if (bsp == 0)
3044 return;
3045 p = *bsp;
3046 while (p != NULL)
3047 {
3048 q = p->next;
198757a8 3049 bpstat_free (p);
c906108c
SS
3050 p = q;
3051 }
3052 *bsp = NULL;
3053}
3054
3055/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
3056 is part of the bpstat is copied as well. */
3057
3058bpstat
fba45db2 3059bpstat_copy (bpstat bs)
c906108c
SS
3060{
3061 bpstat p = NULL;
3062 bpstat tmp;
3063 bpstat retval = NULL;
3064
3065 if (bs == NULL)
3066 return bs;
3067
3068 for (; bs != NULL; bs = bs->next)
3069 {
3070 tmp = (bpstat) xmalloc (sizeof (*tmp));
3071 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 3072 incref_counted_command_line (tmp->commands);
f431efe5 3073 incref_bp_location (tmp->bp_location_at);
31cc81e9 3074 if (bs->old_val != NULL)
3c3185ac
JK
3075 {
3076 tmp->old_val = value_copy (bs->old_val);
3077 release_value (tmp->old_val);
3078 }
31cc81e9 3079
c906108c
SS
3080 if (p == NULL)
3081 /* This is the first thing in the chain. */
3082 retval = tmp;
3083 else
3084 p->next = tmp;
3085 p = tmp;
3086 }
3087 p->next = NULL;
3088 return retval;
3089}
3090
4a64f543 3091/* Find the bpstat associated with this breakpoint. */
c906108c
SS
3092
3093bpstat
fba45db2 3094bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 3095{
c5aa993b
JM
3096 if (bsp == NULL)
3097 return NULL;
c906108c 3098
c5aa993b
JM
3099 for (; bsp != NULL; bsp = bsp->next)
3100 {
f431efe5 3101 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
3102 return bsp;
3103 }
c906108c
SS
3104 return NULL;
3105}
3106
4a64f543
MS
3107/* Put in *NUM the breakpoint number of the first breakpoint we are
3108 stopped at. *BSP upon return is a bpstat which points to the
3109 remaining breakpoints stopped at (but which is not guaranteed to be
3110 good for anything but further calls to bpstat_num).
3111
8671a17b
PA
3112 Return 0 if passed a bpstat which does not indicate any breakpoints.
3113 Return -1 if stopped at a breakpoint that has been deleted since
3114 we set it.
3115 Return 1 otherwise. */
c906108c
SS
3116
3117int
8671a17b 3118bpstat_num (bpstat *bsp, int *num)
c906108c
SS
3119{
3120 struct breakpoint *b;
3121
3122 if ((*bsp) == NULL)
3123 return 0; /* No more breakpoint values */
8671a17b 3124
4a64f543
MS
3125 /* We assume we'll never have several bpstats that correspond to a
3126 single breakpoint -- otherwise, this function might return the
3127 same number more than once and this will look ugly. */
f431efe5 3128 b = (*bsp)->breakpoint_at;
8671a17b
PA
3129 *bsp = (*bsp)->next;
3130 if (b == NULL)
3131 return -1; /* breakpoint that's been deleted since */
3132
3133 *num = b->number; /* We have its number */
3134 return 1;
c906108c
SS
3135}
3136
3137/* Modify BS so that the actions will not be performed. */
3138
3139void
fba45db2 3140bpstat_clear_actions (bpstat bs)
c906108c
SS
3141{
3142 for (; bs != NULL; bs = bs->next)
3143 {
9add0f1b 3144 decref_counted_command_line (&bs->commands);
dde2d684 3145 bs->commands_left = NULL;
c906108c
SS
3146 if (bs->old_val != NULL)
3147 {
3148 value_free (bs->old_val);
3149 bs->old_val = NULL;
3150 }
3151 }
3152}
3153
f3b1572e
PA
3154/* Called when a command is about to proceed the inferior. */
3155
3156static void
3157breakpoint_about_to_proceed (void)
3158{
3159 if (!ptid_equal (inferior_ptid, null_ptid))
3160 {
3161 struct thread_info *tp = inferior_thread ();
3162
3163 /* Allow inferior function calls in breakpoint commands to not
3164 interrupt the command list. When the call finishes
3165 successfully, the inferior will be standing at the same
3166 breakpoint as if nothing happened. */
16c381f0 3167 if (tp->control.in_infcall)
f3b1572e
PA
3168 return;
3169 }
3170
3171 breakpoint_proceeded = 1;
3172}
3173
4a64f543
MS
3174/* Stub for cleaning up our state if we error-out of a breakpoint
3175 command. */
c906108c 3176static void
4efb68b1 3177cleanup_executing_breakpoints (void *ignore)
c906108c
SS
3178{
3179 executing_breakpoint_commands = 0;
3180}
3181
4a64f543
MS
3182/* Execute all the commands associated with all the breakpoints at
3183 this location. Any of these commands could cause the process to
3184 proceed beyond this point, etc. We look out for such changes by
3185 checking the global "breakpoint_proceeded" after each command.
c906108c 3186
347bddb7
PA
3187 Returns true if a breakpoint command resumed the inferior. In that
3188 case, it is the caller's responsibility to recall it again with the
3189 bpstat of the current thread. */
3190
3191static int
3192bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
3193{
3194 bpstat bs;
3195 struct cleanup *old_chain;
347bddb7 3196 int again = 0;
c906108c
SS
3197
3198 /* Avoid endless recursion if a `source' command is contained
3199 in bs->commands. */
3200 if (executing_breakpoint_commands)
347bddb7 3201 return 0;
c906108c
SS
3202
3203 executing_breakpoint_commands = 1;
3204 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
3205
cf6c5ffb
TT
3206 prevent_dont_repeat ();
3207
4a64f543 3208 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
3209 bs = *bsp;
3210
3211 breakpoint_proceeded = 0;
3212 for (; bs != NULL; bs = bs->next)
3213 {
9add0f1b 3214 struct counted_command_line *ccmd;
6c50ab1c
JB
3215 struct command_line *cmd;
3216 struct cleanup *this_cmd_tree_chain;
3217
3218 /* Take ownership of the BSP's command tree, if it has one.
3219
3220 The command tree could legitimately contain commands like
3221 'step' and 'next', which call clear_proceed_status, which
3222 frees stop_bpstat's command tree. To make sure this doesn't
3223 free the tree we're executing out from under us, we need to
3224 take ownership of the tree ourselves. Since a given bpstat's
3225 commands are only executed once, we don't need to copy it; we
3226 can clear the pointer in the bpstat, and make sure we free
3227 the tree when we're done. */
9add0f1b
TT
3228 ccmd = bs->commands;
3229 bs->commands = NULL;
3230 this_cmd_tree_chain
3231 = make_cleanup_decref_counted_command_line (&ccmd);
3232 cmd = bs->commands_left;
3233 bs->commands_left = NULL;
6c50ab1c 3234
c906108c
SS
3235 while (cmd != NULL)
3236 {
3237 execute_control_command (cmd);
3238
3239 if (breakpoint_proceeded)
3240 break;
3241 else
3242 cmd = cmd->next;
3243 }
6c50ab1c
JB
3244
3245 /* We can free this command tree now. */
3246 do_cleanups (this_cmd_tree_chain);
3247
c906108c 3248 if (breakpoint_proceeded)
32c1e744
VP
3249 {
3250 if (target_can_async_p ())
347bddb7
PA
3251 /* If we are in async mode, then the target might be still
3252 running, not stopped at any breakpoint, so nothing for
3253 us to do here -- just return to the event loop. */
3254 ;
32c1e744
VP
3255 else
3256 /* In sync mode, when execute_control_command returns
3257 we're already standing on the next breakpoint.
347bddb7
PA
3258 Breakpoint commands for that stop were not run, since
3259 execute_command does not run breakpoint commands --
3260 only command_line_handler does, but that one is not
3261 involved in execution of breakpoint commands. So, we
3262 can now execute breakpoint commands. It should be
3263 noted that making execute_command do bpstat actions is
3264 not an option -- in this case we'll have recursive
3265 invocation of bpstat for each breakpoint with a
3266 command, and can easily blow up GDB stack. Instead, we
3267 return true, which will trigger the caller to recall us
3268 with the new stop_bpstat. */
3269 again = 1;
3270 break;
32c1e744 3271 }
c906108c 3272 }
c2b8ed2c 3273 do_cleanups (old_chain);
347bddb7
PA
3274 return again;
3275}
3276
3277void
3278bpstat_do_actions (void)
3279{
3280 /* Do any commands attached to breakpoint we are stopped at. */
3281 while (!ptid_equal (inferior_ptid, null_ptid)
3282 && target_has_execution
3283 && !is_exited (inferior_ptid)
3284 && !is_executing (inferior_ptid))
3285 /* Since in sync mode, bpstat_do_actions may resume the inferior,
3286 and only return when it is stopped at the next breakpoint, we
3287 keep doing breakpoint actions until it returns false to
3288 indicate the inferior was not resumed. */
16c381f0 3289 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 3290 break;
c906108c
SS
3291}
3292
fa4727a6
DJ
3293/* Print out the (old or new) value associated with a watchpoint. */
3294
3295static void
3296watchpoint_value_print (struct value *val, struct ui_file *stream)
3297{
3298 if (val == NULL)
3299 fprintf_unfiltered (stream, _("<unreadable>"));
3300 else
79a45b7d
TT
3301 {
3302 struct value_print_options opts;
3303 get_user_print_options (&opts);
3304 value_print (val, stream, &opts);
3305 }
fa4727a6
DJ
3306}
3307
e514a9d6 3308/* This is the normal print function for a bpstat. In the future,
c906108c 3309 much of this logic could (should?) be moved to bpstat_stop_status,
e514a9d6
JM
3310 by having it set different print_it values.
3311
3312 Current scheme: When we stop, bpstat_print() is called. It loops
3313 through the bpstat list of things causing this stop, calling the
4a64f543 3314 print_bp_stop_message function on each one. The behavior of the
e514a9d6 3315 print_bp_stop_message function depends on the print_it field of
4a64f543 3316 bpstat. If such field so indicates, call this function here.
e514a9d6
JM
3317
3318 Return values from this routine (ultimately used by bpstat_print()
3319 and normal_stop() to decide what to do):
3320 PRINT_NOTHING: Means we already printed all we needed to print,
3321 don't print anything else.
3322 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
3323 that something to be followed by a location.
3324 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
3325 that something to be followed by a location.
3326 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
3327 analysis. */
c906108c 3328
917317f4 3329static enum print_stop_action
fba45db2 3330print_it_typical (bpstat bs)
c906108c 3331{
f7545552 3332 struct cleanup *old_chain;
4f8d1dc6 3333 struct breakpoint *b;
89f9893c 3334 const struct bp_location *bl;
8b93c638 3335 struct ui_stream *stb;
f7545552
TT
3336 int bp_temp = 0;
3337 enum print_stop_action result;
3338
f431efe5
PA
3339 gdb_assert (bs->bp_location_at != NULL);
3340
3341 bl = bs->bp_location_at;
3342 b = bs->breakpoint_at;
c906108c 3343
f7545552
TT
3344 stb = ui_out_stream_new (uiout);
3345 old_chain = make_cleanup_ui_out_stream_delete (stb);
3346
4f8d1dc6 3347 switch (b->type)
c906108c 3348 {
e514a9d6
JM
3349 case bp_breakpoint:
3350 case bp_hardware_breakpoint:
f431efe5 3351 bp_temp = b->disposition == disp_del;
0d381245
VP
3352 if (bl->address != bl->requested_address)
3353 breakpoint_adjustment_warning (bl->requested_address,
3354 bl->address,
4f8d1dc6
VP
3355 b->number, 1);
3356 annotate_breakpoint (b->number);
2cec12e5
AR
3357 if (bp_temp)
3358 ui_out_text (uiout, "\nTemporary breakpoint ");
3359 else
3360 ui_out_text (uiout, "\nBreakpoint ");
9dc5e2a9 3361 if (ui_out_is_mi_like_p (uiout))
2cec12e5
AR
3362 {
3363 ui_out_field_string (uiout, "reason",
3364 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
3365 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
3366 }
4f8d1dc6 3367 ui_out_field_int (uiout, "bkptno", b->number);
8b93c638 3368 ui_out_text (uiout, ", ");
f7545552 3369 result = PRINT_SRC_AND_LOC;
e514a9d6
JM
3370 break;
3371
3372 case bp_shlib_event:
917317f4
JM
3373 /* Did we stop because the user set the stop_on_solib_events
3374 variable? (If so, we report this as a generic, "Stopped due
3375 to shlib event" message.) */
a3f17187 3376 printf_filtered (_("Stopped due to shared library event\n"));
f7545552 3377 result = PRINT_NOTHING;
e514a9d6
JM
3378 break;
3379
c4093a6a 3380 case bp_thread_event:
4a64f543 3381 /* Not sure how we will get here.
c4093a6a 3382 GDB should not stop for these breakpoints. */
a3f17187 3383 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
f7545552 3384 result = PRINT_NOTHING;
c4093a6a
JM
3385 break;
3386
1900040c 3387 case bp_overlay_event:
4a64f543 3388 /* By analogy with the thread event, GDB should not stop for these. */
a3f17187 3389 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
f7545552 3390 result = PRINT_NOTHING;
1900040c
MS
3391 break;
3392
0fd8e87f
UW
3393 case bp_longjmp_master:
3394 /* These should never be enabled. */
3395 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
3396 result = PRINT_NOTHING;
3397 break;
3398
aa7d318d
TT
3399 case bp_std_terminate_master:
3400 /* These should never be enabled. */
3e43a32a
MS
3401 printf_filtered (_("std::terminate Master Breakpoint: "
3402 "gdb should not stop!\n"));
aa7d318d
TT
3403 result = PRINT_NOTHING;
3404 break;
3405
186c406b
TT
3406 case bp_exception_master:
3407 /* These should never be enabled. */
3e43a32a
MS
3408 printf_filtered (_("Exception Master Breakpoint: "
3409 "gdb should not stop!\n"));
186c406b
TT
3410 result = PRINT_NOTHING;
3411 break;
3412
e514a9d6
JM
3413 case bp_watchpoint:
3414 case bp_hardware_watchpoint:
fa4727a6
DJ
3415 annotate_watchpoint (b->number);
3416 if (ui_out_is_mi_like_p (uiout))
3417 ui_out_field_string
3418 (uiout, "reason",
3419 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
3420 mention (b);
f7545552 3421 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
fa4727a6
DJ
3422 ui_out_text (uiout, "\nOld value = ");
3423 watchpoint_value_print (bs->old_val, stb->stream);
3424 ui_out_field_stream (uiout, "old", stb);
3425 ui_out_text (uiout, "\nNew value = ");
3426 watchpoint_value_print (b->val, stb->stream);
3427 ui_out_field_stream (uiout, "new", stb);
fa4727a6 3428 ui_out_text (uiout, "\n");
e514a9d6 3429 /* More than one watchpoint may have been triggered. */
f7545552 3430 result = PRINT_UNKNOWN;
e514a9d6
JM
3431 break;
3432
3433 case bp_read_watchpoint:
9dc5e2a9 3434 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3435 ui_out_field_string
3436 (uiout, "reason",
3437 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
4f8d1dc6 3438 mention (b);
f7545552 3439 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3440 ui_out_text (uiout, "\nValue = ");
fa4727a6 3441 watchpoint_value_print (b->val, stb->stream);
8b93c638 3442 ui_out_field_stream (uiout, "value", stb);
8b93c638 3443 ui_out_text (uiout, "\n");
f7545552 3444 result = PRINT_UNKNOWN;
e514a9d6
JM
3445 break;
3446
3447 case bp_access_watchpoint:
fa4727a6 3448 if (bs->old_val != NULL)
8b93c638 3449 {
4f8d1dc6 3450 annotate_watchpoint (b->number);
9dc5e2a9 3451 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3452 ui_out_field_string
3453 (uiout, "reason",
3454 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
4f8d1dc6 3455 mention (b);
f7545552 3456 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3457 ui_out_text (uiout, "\nOld value = ");
fa4727a6 3458 watchpoint_value_print (bs->old_val, stb->stream);
8b93c638 3459 ui_out_field_stream (uiout, "old", stb);
8b93c638
JM
3460 ui_out_text (uiout, "\nNew value = ");
3461 }
3462 else
3463 {
4f8d1dc6 3464 mention (b);
9dc5e2a9 3465 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3466 ui_out_field_string
3467 (uiout, "reason",
3468 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
f7545552 3469 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
3470 ui_out_text (uiout, "\nValue = ");
3471 }
fa4727a6 3472 watchpoint_value_print (b->val, stb->stream);
8b93c638 3473 ui_out_field_stream (uiout, "new", stb);
8b93c638 3474 ui_out_text (uiout, "\n");
f7545552 3475 result = PRINT_UNKNOWN;
e514a9d6 3476 break;
4ce44c66 3477
e514a9d6 3478 /* Fall through, we don't deal with these types of breakpoints
4a64f543 3479 here. */
e514a9d6 3480
11cf8741 3481 case bp_finish:
9dc5e2a9 3482 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3483 ui_out_field_string
3484 (uiout, "reason",
3485 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
f7545552 3486 result = PRINT_UNKNOWN;
8b93c638
JM
3487 break;
3488
e514a9d6 3489 case bp_until:
9dc5e2a9 3490 if (ui_out_is_mi_like_p (uiout))
1fbc2a49
NR
3491 ui_out_field_string
3492 (uiout, "reason",
3493 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
f7545552 3494 result = PRINT_UNKNOWN;
8b93c638
JM
3495 break;
3496
c2d11a7d 3497 case bp_none:
e514a9d6
JM
3498 case bp_longjmp:
3499 case bp_longjmp_resume:
186c406b
TT
3500 case bp_exception:
3501 case bp_exception_resume:
e514a9d6 3502 case bp_step_resume:
2c03e5be 3503 case bp_hp_step_resume:
e514a9d6
JM
3504 case bp_watchpoint_scope:
3505 case bp_call_dummy:
aa7d318d 3506 case bp_std_terminate:
1042e4c0 3507 case bp_tracepoint:
7a697b8d 3508 case bp_fast_tracepoint:
4efc6507 3509 case bp_jit_event:
0e30163f
JK
3510 case bp_gnu_ifunc_resolver:
3511 case bp_gnu_ifunc_resolver_return:
e514a9d6 3512 default:
f7545552
TT
3513 result = PRINT_UNKNOWN;
3514 break;
e514a9d6 3515 }
f7545552
TT
3516
3517 do_cleanups (old_chain);
3518 return result;
e514a9d6
JM
3519}
3520
3521/* Generic routine for printing messages indicating why we
4a64f543 3522 stopped. The behavior of this function depends on the value
e514a9d6
JM
3523 'print_it' in the bpstat structure. Under some circumstances we
3524 may decide not to print anything here and delegate the task to
4a64f543 3525 normal_stop(). */
e514a9d6
JM
3526
3527static enum print_stop_action
3528print_bp_stop_message (bpstat bs)
3529{
3530 switch (bs->print_it)
3531 {
3532 case print_it_noop:
4a64f543 3533 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
3534 return PRINT_UNKNOWN;
3535 break;
3536
3537 case print_it_done:
3538 /* We still want to print the frame, but we already printed the
4a64f543 3539 relevant messages. */
e514a9d6
JM
3540 return PRINT_SRC_AND_LOC;
3541 break;
3542
3543 case print_it_normal:
4f8d1dc6 3544 {
f431efe5
PA
3545 struct breakpoint *b = bs->breakpoint_at;
3546
1a6a67de
TJB
3547 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
3548 which has since been deleted. */
3549 if (b == NULL)
3550 return PRINT_UNKNOWN;
3551
4f8d1dc6
VP
3552 /* Normal case. Call the breakpoint's print_it method, or
3553 print_it_typical. */
1a6a67de 3554 if (b->ops != NULL && b->ops->print_it != NULL)
4f8d1dc6
VP
3555 return b->ops->print_it (b);
3556 else
3557 return print_it_typical (bs);
3558 }
3559 break;
3086aeae 3560
e514a9d6 3561 default:
8e65ff28 3562 internal_error (__FILE__, __LINE__,
e2e0b3e5 3563 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 3564 break;
c906108c 3565 }
c906108c
SS
3566}
3567
e514a9d6
JM
3568/* Print a message indicating what happened. This is called from
3569 normal_stop(). The input to this routine is the head of the bpstat
3570 list - a list of the eventpoints that caused this stop. This
3571 routine calls the generic print routine for printing a message
3572 about reasons for stopping. This will print (for example) the
3573 "Breakpoint n," part of the output. The return value of this
3574 routine is one of:
c906108c 3575
4a64f543 3576 PRINT_UNKNOWN: Means we printed nothing.
917317f4 3577 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 3578 code to print the location. An example is
c5aa993b
JM
3579 "Breakpoint 1, " which should be followed by
3580 the location.
917317f4 3581 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
3582 to also print the location part of the message.
3583 An example is the catch/throw messages, which
4a64f543 3584 don't require a location appended to the end.
917317f4 3585 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 3586 further info to be printed. */
c906108c 3587
917317f4 3588enum print_stop_action
fba45db2 3589bpstat_print (bpstat bs)
c906108c
SS
3590{
3591 int val;
c5aa993b 3592
c906108c 3593 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
3594 (Currently all watchpoints go on the bpstat whether hit or not.
3595 That probably could (should) be changed, provided care is taken
c906108c 3596 with respect to bpstat_explains_signal). */
e514a9d6
JM
3597 for (; bs; bs = bs->next)
3598 {
3599 val = print_bp_stop_message (bs);
3600 if (val == PRINT_SRC_ONLY
3601 || val == PRINT_SRC_AND_LOC
3602 || val == PRINT_NOTHING)
3603 return val;
3604 }
c906108c 3605
e514a9d6 3606 /* We reached the end of the chain, or we got a null BS to start
4a64f543 3607 with and nothing was printed. */
917317f4 3608 return PRINT_UNKNOWN;
c906108c
SS
3609}
3610
4a64f543
MS
3611/* Evaluate the expression EXP and return 1 if value is zero. This is
3612 used inside a catch_errors to evaluate the breakpoint condition.
3613 The argument is a "struct expression *" that has been cast to a
3614 "char *" to make it pass through catch_errors. */
c906108c
SS
3615
3616static int
4efb68b1 3617breakpoint_cond_eval (void *exp)
c906108c 3618{
278cd55f 3619 struct value *mark = value_mark ();
c5aa993b 3620 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 3621
c906108c
SS
3622 value_free_to_mark (mark);
3623 return i;
3624}
3625
5760d0ab 3626/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c
SS
3627
3628static bpstat
5760d0ab 3629bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
c906108c
SS
3630{
3631 bpstat bs;
3632
3633 bs = (bpstat) xmalloc (sizeof (*bs));
5760d0ab
JK
3634 bs->next = NULL;
3635 **bs_link_pointer = bs;
3636 *bs_link_pointer = &bs->next;
f431efe5
PA
3637 bs->breakpoint_at = bl->owner;
3638 bs->bp_location_at = bl;
3639 incref_bp_location (bl);
c906108c
SS
3640 /* If the condition is false, etc., don't do the commands. */
3641 bs->commands = NULL;
9add0f1b 3642 bs->commands_left = NULL;
c906108c
SS
3643 bs->old_val = NULL;
3644 bs->print_it = print_it_normal;
3645 return bs;
3646}
3647\f
d983da9c
DJ
3648/* The target has stopped with waitstatus WS. Check if any hardware
3649 watchpoints have triggered, according to the target. */
3650
3651int
3652watchpoints_triggered (struct target_waitstatus *ws)
3653{
d92524f1 3654 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
3655 CORE_ADDR addr;
3656 struct breakpoint *b;
3657
3658 if (!stopped_by_watchpoint)
3659 {
3660 /* We were not stopped by a watchpoint. Mark all watchpoints
3661 as not triggered. */
3662 ALL_BREAKPOINTS (b)
cc60f2e3 3663 if (is_hardware_watchpoint (b))
d983da9c
DJ
3664 b->watchpoint_triggered = watch_triggered_no;
3665
3666 return 0;
3667 }
3668
3669 if (!target_stopped_data_address (&current_target, &addr))
3670 {
3671 /* We were stopped by a watchpoint, but we don't know where.
3672 Mark all watchpoints as unknown. */
3673 ALL_BREAKPOINTS (b)
cc60f2e3 3674 if (is_hardware_watchpoint (b))
d983da9c
DJ
3675 b->watchpoint_triggered = watch_triggered_unknown;
3676
3677 return stopped_by_watchpoint;
3678 }
3679
3680 /* The target could report the data address. Mark watchpoints
3681 affected by this data address as triggered, and all others as not
3682 triggered. */
3683
3684 ALL_BREAKPOINTS (b)
cc60f2e3 3685 if (is_hardware_watchpoint (b))
d983da9c 3686 {
a5606eee 3687 struct bp_location *loc;
d983da9c
DJ
3688
3689 b->watchpoint_triggered = watch_triggered_no;
a5606eee 3690 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4
TJB
3691 {
3692 if (is_masked_watchpoint (loc->owner))
3693 {
3694 CORE_ADDR newaddr = addr & loc->owner->hw_wp_mask;
3695 CORE_ADDR start = loc->address & loc->owner->hw_wp_mask;
3696
3697 if (newaddr == start)
3698 {
3699 b->watchpoint_triggered = watch_triggered_yes;
3700 break;
3701 }
3702 }
3703 /* Exact match not required. Within range is sufficient. */
3704 else if (target_watchpoint_addr_within_range (&current_target,
3705 addr, loc->address,
3706 loc->length))
3707 {
3708 b->watchpoint_triggered = watch_triggered_yes;
3709 break;
3710 }
3711 }
d983da9c
DJ
3712 }
3713
3714 return 1;
3715}
3716
c906108c
SS
3717/* Possible return values for watchpoint_check (this can't be an enum
3718 because of check_errors). */
3719/* The watchpoint has been deleted. */
3720#define WP_DELETED 1
3721/* The value has changed. */
3722#define WP_VALUE_CHANGED 2
3723/* The value has not changed. */
3724#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
3725/* Ignore this watchpoint, no matter if the value changed or not. */
3726#define WP_IGNORE 4
c906108c
SS
3727
3728#define BP_TEMPFLAG 1
3729#define BP_HARDWAREFLAG 2
3730
4a64f543
MS
3731/* Evaluate watchpoint condition expression and check if its value
3732 changed.
553e4c11
JB
3733
3734 P should be a pointer to struct bpstat, but is defined as a void *
3735 in order for this function to be usable with catch_errors. */
c906108c
SS
3736
3737static int
4efb68b1 3738watchpoint_check (void *p)
c906108c
SS
3739{
3740 bpstat bs = (bpstat) p;
3741 struct breakpoint *b;
3742 struct frame_info *fr;
3743 int within_current_scope;
3744
f431efe5 3745 /* BS is built from an existing struct breakpoint. */
2bdf28a0 3746 gdb_assert (bs->breakpoint_at != NULL);
f431efe5 3747 b = bs->breakpoint_at;
c906108c 3748
d0fb5eae
JK
3749 gdb_assert (is_watchpoint (b));
3750
f6bc2008
PA
3751 /* If this is a local watchpoint, we only want to check if the
3752 watchpoint frame is in scope if the current thread is the thread
3753 that was used to create the watchpoint. */
3754 if (!watchpoint_in_thread_scope (b))
60e1c644 3755 return WP_IGNORE;
f6bc2008 3756
c906108c
SS
3757 if (b->exp_valid_block == NULL)
3758 within_current_scope = 1;
3759 else
3760 {
edb3359d
DJ
3761 struct frame_info *frame = get_current_frame ();
3762 struct gdbarch *frame_arch = get_frame_arch (frame);
3763 CORE_ADDR frame_pc = get_frame_pc (frame);
3764
4a64f543
MS
3765 /* in_function_epilogue_p() returns a non-zero value if we're
3766 still in the function but the stack frame has already been
3767 invalidated. Since we can't rely on the values of local
3768 variables after the stack has been destroyed, we are treating
3769 the watchpoint in that state as `not changed' without further
3770 checking. Don't mark watchpoints as changed if the current
3771 frame is in an epilogue - even if they are in some other
3772 frame, our view of the stack is likely to be wrong and
3773 frame_find_by_id could error out. */
a0f49112 3774 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
60e1c644 3775 return WP_IGNORE;
a0f49112 3776
101dcfbe 3777 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 3778 within_current_scope = (fr != NULL);
69fbadd5
DJ
3779
3780 /* If we've gotten confused in the unwinder, we might have
3781 returned a frame that can't describe this variable. */
edb3359d
DJ
3782 if (within_current_scope)
3783 {
3784 struct symbol *function;
3785
3786 function = get_frame_function (fr);
3787 if (function == NULL
3788 || !contained_in (b->exp_valid_block,
3789 SYMBOL_BLOCK_VALUE (function)))
3790 within_current_scope = 0;
3791 }
69fbadd5 3792
edb3359d 3793 if (within_current_scope)
c906108c
SS
3794 /* If we end up stopping, the current frame will get selected
3795 in normal_stop. So this call to select_frame won't affect
3796 the user. */
0f7d239c 3797 select_frame (fr);
c906108c 3798 }
c5aa993b 3799
c906108c
SS
3800 if (within_current_scope)
3801 {
4a64f543
MS
3802 /* We use value_{,free_to_}mark because it could be a *long*
3803 time before we return to the command level and call
3804 free_all_values. We can't call free_all_values because we
3805 might be in the middle of evaluating a function call. */
c906108c 3806
0cf6dd15 3807 int pc = 0;
9c06b0b4 3808 struct value *mark;
fa4727a6
DJ
3809 struct value *new_val;
3810
9c06b0b4
TJB
3811 if (is_masked_watchpoint (b))
3812 /* Since we don't know the exact trigger address (from
3813 stopped_data_address), just tell the user we've triggered
3814 a mask watchpoint. */
3815 return WP_VALUE_CHANGED;
3816
3817 mark = value_mark ();
0cf6dd15 3818 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL);
218d2fc6 3819
4a64f543
MS
3820 /* We use value_equal_contents instead of value_equal because
3821 the latter coerces an array to a pointer, thus comparing just
3822 the address of the array instead of its contents. This is
3823 not what we want. */
fa4727a6 3824 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 3825 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 3826 {
fa4727a6
DJ
3827 if (new_val != NULL)
3828 {
3829 release_value (new_val);
3830 value_free_to_mark (mark);
3831 }
c906108c
SS
3832 bs->old_val = b->val;
3833 b->val = new_val;
fa4727a6 3834 b->val_valid = 1;
c906108c
SS
3835 return WP_VALUE_CHANGED;
3836 }
3837 else
3838 {
60e1c644 3839 /* Nothing changed. */
c906108c 3840 value_free_to_mark (mark);
c906108c
SS
3841 return WP_VALUE_NOT_CHANGED;
3842 }
3843 }
3844 else
3845 {
3846 /* This seems like the only logical thing to do because
c5aa993b
JM
3847 if we temporarily ignored the watchpoint, then when
3848 we reenter the block in which it is valid it contains
3849 garbage (in the case of a function, it may have two
3850 garbage values, one before and one after the prologue).
3851 So we can't even detect the first assignment to it and
3852 watch after that (since the garbage may or may not equal
3853 the first value assigned). */
4ce44c66
JM
3854 /* We print all the stop information in print_it_typical(), but
3855 in this case, by the time we call print_it_typical() this bp
4a64f543
MS
3856 will be deleted already. So we have no choice but print the
3857 information here. */
9dc5e2a9 3858 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3859 ui_out_field_string
3860 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 3861 ui_out_text (uiout, "\nWatchpoint ");
4f8d1dc6 3862 ui_out_field_int (uiout, "wpnum", b->number);
3e43a32a
MS
3863 ui_out_text (uiout,
3864 " deleted because the program has left the block in\n\
8b93c638 3865which its expression is valid.\n");
4ce44c66 3866
cdac0397
PA
3867 /* Make sure the watchpoint's commands aren't executed. */
3868 decref_counted_command_line (&b->commands);
d0fb5eae 3869 watchpoint_del_at_next_stop (b);
c906108c
SS
3870
3871 return WP_DELETED;
3872 }
3873}
3874
18a18393
VP
3875/* Return true if it looks like target has stopped due to hitting
3876 breakpoint location BL. This function does not check if we
3877 should stop, only if BL explains the stop. */
3878static int
6c95b8df
PA
3879bpstat_check_location (const struct bp_location *bl,
3880 struct address_space *aspace, CORE_ADDR bp_addr)
18a18393
VP
3881{
3882 struct breakpoint *b = bl->owner;
3883
2bdf28a0
JK
3884 /* BL is from existing struct breakpoint. */
3885 gdb_assert (b != NULL);
3886
f1310107
TJB
3887 if (b->ops && b->ops->breakpoint_hit)
3888 return b->ops->breakpoint_hit (bl, aspace, bp_addr);
3889
e8595ef6
SS
3890 /* By definition, the inferior does not report stops at
3891 tracepoints. */
d77f58be 3892 if (is_tracepoint (b))
e8595ef6
SS
3893 return 0;
3894
cc60f2e3 3895 if (!is_watchpoint (b)
18a18393 3896 && b->type != bp_hardware_breakpoint
fe798b75 3897 && b->type != bp_catchpoint) /* a non-watchpoint bp */
18a18393 3898 {
6c95b8df
PA
3899 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
3900 aspace, bp_addr))
18a18393
VP
3901 return 0;
3902 if (overlay_debugging /* unmapped overlay section */
35df4500 3903 && section_is_overlay (bl->section)
18a18393
VP
3904 && !section_is_mapped (bl->section))
3905 return 0;
3906 }
cc60f2e3 3907
18a18393
VP
3908 /* Continuable hardware watchpoints are treated as non-existent if the
3909 reason we stopped wasn't a hardware watchpoint (we didn't stop on
3910 some data address). Otherwise gdb won't stop on a break instruction
3911 in the code (not from a breakpoint) when a hardware watchpoint has
3912 been defined. Also skip watchpoints which we know did not trigger
3913 (did not match the data address). */
cc60f2e3
PA
3914
3915 if (is_hardware_watchpoint (b)
18a18393
VP
3916 && b->watchpoint_triggered == watch_triggered_no)
3917 return 0;
f1310107 3918
18a18393
VP
3919 if (b->type == bp_hardware_breakpoint)
3920 {
3921 if (bl->address != bp_addr)
3922 return 0;
3923 if (overlay_debugging /* unmapped overlay section */
35df4500 3924 && section_is_overlay (bl->section)
18a18393
VP
3925 && !section_is_mapped (bl->section))
3926 return 0;
3927 }
ce78b96d 3928
18a18393
VP
3929 return 1;
3930}
3931
3932/* If BS refers to a watchpoint, determine if the watched values
3933 has actually changed, and we should stop. If not, set BS->stop
3934 to 0. */
3935static void
3936bpstat_check_watchpoint (bpstat bs)
3937{
2bdf28a0
JK
3938 const struct bp_location *bl;
3939 struct breakpoint *b;
3940
3941 /* BS is built for existing struct breakpoint. */
f431efe5 3942 bl = bs->bp_location_at;
2bdf28a0 3943 gdb_assert (bl != NULL);
f431efe5 3944 b = bs->breakpoint_at;
2bdf28a0 3945 gdb_assert (b != NULL);
18a18393 3946
cc60f2e3 3947 if (is_watchpoint (b))
18a18393 3948 {
18a18393
VP
3949 int must_check_value = 0;
3950
3951 if (b->type == bp_watchpoint)
3952 /* For a software watchpoint, we must always check the
3953 watched value. */
3954 must_check_value = 1;
3955 else if (b->watchpoint_triggered == watch_triggered_yes)
3956 /* We have a hardware watchpoint (read, write, or access)
3957 and the target earlier reported an address watched by
3958 this watchpoint. */
3959 must_check_value = 1;
3960 else if (b->watchpoint_triggered == watch_triggered_unknown
3961 && b->type == bp_hardware_watchpoint)
3962 /* We were stopped by a hardware watchpoint, but the target could
3963 not report the data address. We must check the watchpoint's
3964 value. Access and read watchpoints are out of luck; without
3965 a data address, we can't figure it out. */
3966 must_check_value = 1;
3967
3968 if (must_check_value)
3969 {
3e43a32a
MS
3970 char *message
3971 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3972 b->number);
18a18393
VP
3973 struct cleanup *cleanups = make_cleanup (xfree, message);
3974 int e = catch_errors (watchpoint_check, bs, message,
3975 RETURN_MASK_ALL);
3976 do_cleanups (cleanups);
3977 switch (e)
3978 {
3979 case WP_DELETED:
3980 /* We've already printed what needs to be printed. */
3981 bs->print_it = print_it_done;
3982 /* Stop. */
3983 break;
60e1c644
PA
3984 case WP_IGNORE:
3985 bs->print_it = print_it_noop;
3986 bs->stop = 0;
3987 break;
18a18393
VP
3988 case WP_VALUE_CHANGED:
3989 if (b->type == bp_read_watchpoint)
3990 {
85d721b8
PA
3991 /* There are two cases to consider here:
3992
4a64f543 3993 1. We're watching the triggered memory for reads.
85d721b8
PA
3994 In that case, trust the target, and always report
3995 the watchpoint hit to the user. Even though
3996 reads don't cause value changes, the value may
3997 have changed since the last time it was read, and
3998 since we're not trapping writes, we will not see
3999 those, and as such we should ignore our notion of
4000 old value.
4001
4a64f543 4002 2. We're watching the triggered memory for both
85d721b8
PA
4003 reads and writes. There are two ways this may
4004 happen:
4005
4a64f543 4006 2.1. This is a target that can't break on data
85d721b8
PA
4007 reads only, but can break on accesses (reads or
4008 writes), such as e.g., x86. We detect this case
4009 at the time we try to insert read watchpoints.
4010
4a64f543 4011 2.2. Otherwise, the target supports read
85d721b8
PA
4012 watchpoints, but, the user set an access or write
4013 watchpoint watching the same memory as this read
4014 watchpoint.
4015
4016 If we're watching memory writes as well as reads,
4017 ignore watchpoint hits when we find that the
4018 value hasn't changed, as reads don't cause
4019 changes. This still gives false positives when
4020 the program writes the same value to memory as
4021 what there was already in memory (we will confuse
4022 it for a read), but it's much better than
4023 nothing. */
4024
4025 int other_write_watchpoint = 0;
4026
4027 if (bl->watchpoint_type == hw_read)
4028 {
4029 struct breakpoint *other_b;
4030
4031 ALL_BREAKPOINTS (other_b)
4032 if ((other_b->type == bp_hardware_watchpoint
4033 || other_b->type == bp_access_watchpoint)
4034 && (other_b->watchpoint_triggered
4035 == watch_triggered_yes))
4036 {
4037 other_write_watchpoint = 1;
4038 break;
4039 }
4040 }
4041
4042 if (other_write_watchpoint
4043 || bl->watchpoint_type == hw_access)
4044 {
4045 /* We're watching the same memory for writes,
4046 and the value changed since the last time we
4047 updated it, so this trap must be for a write.
4048 Ignore it. */
4049 bs->print_it = print_it_noop;
4050 bs->stop = 0;
4051 }
18a18393
VP
4052 }
4053 break;
4054 case WP_VALUE_NOT_CHANGED:
4055 if (b->type == bp_hardware_watchpoint
4056 || b->type == bp_watchpoint)
4057 {
4058 /* Don't stop: write watchpoints shouldn't fire if
4059 the value hasn't changed. */
4060 bs->print_it = print_it_noop;
4061 bs->stop = 0;
4062 }
4063 /* Stop. */
4064 break;
4065 default:
4066 /* Can't happen. */
4067 case 0:
4068 /* Error from catch_errors. */
4069 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
d0fb5eae 4070 watchpoint_del_at_next_stop (b);
18a18393
VP
4071 /* We've already printed what needs to be printed. */
4072 bs->print_it = print_it_done;
4073 break;
4074 }
4075 }
4076 else /* must_check_value == 0 */
4077 {
4078 /* This is a case where some watchpoint(s) triggered, but
4079 not at the address of this watchpoint, or else no
4080 watchpoint triggered after all. So don't print
4081 anything for this watchpoint. */
4082 bs->print_it = print_it_noop;
4083 bs->stop = 0;
4084 }
4085 }
4086}
4087
4088
4089/* Check conditions (condition proper, frame, thread and ignore count)
4090 of breakpoint referred to by BS. If we should not stop for this
4091 breakpoint, set BS->stop to 0. */
f431efe5 4092
18a18393
VP
4093static void
4094bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
4095{
4096 int thread_id = pid_to_thread_id (ptid);
2bdf28a0
JK
4097 const struct bp_location *bl;
4098 struct breakpoint *b;
4099
4100 /* BS is built for existing struct breakpoint. */
f431efe5 4101 bl = bs->bp_location_at;
2bdf28a0 4102 gdb_assert (bl != NULL);
f431efe5 4103 b = bs->breakpoint_at;
2bdf28a0 4104 gdb_assert (b != NULL);
18a18393
VP
4105
4106 if (frame_id_p (b->frame_id)
edb3359d 4107 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393
VP
4108 bs->stop = 0;
4109 else if (bs->stop)
4110 {
4111 int value_is_zero = 0;
60e1c644
PA
4112 struct expression *cond;
4113
7371cf6d
PM
4114 /* Evaluate Python breakpoints that have a "stop"
4115 method implemented. */
4116 if (b->py_bp_object)
4117 bs->stop = gdbpy_should_stop (b->py_bp_object);
4118
60e1c644
PA
4119 if (is_watchpoint (b))
4120 cond = b->cond_exp;
4121 else
4122 cond = bl->cond;
4123
f431efe5 4124 if (cond && b->disposition != disp_del_at_next_stop)
18a18393 4125 {
60e1c644
PA
4126 int within_current_scope = 1;
4127
c5bc3a77
DJ
4128 /* We use value_mark and value_free_to_mark because it could
4129 be a long time before we return to the command level and
4130 call free_all_values. We can't call free_all_values
4131 because we might be in the middle of evaluating a
4132 function call. */
4133 struct value *mark = value_mark ();
4134
edb3359d
DJ
4135 /* Need to select the frame, with all that implies so that
4136 the conditions will have the right context. Because we
4137 use the frame, we will not see an inlined function's
4138 variables when we arrive at a breakpoint at the start
4139 of the inlined function; the current frame will be the
4140 call site. */
60e1c644
PA
4141 if (!is_watchpoint (b) || b->cond_exp_valid_block == NULL)
4142 select_frame (get_current_frame ());
4143 else
4144 {
4145 struct frame_info *frame;
4146
4147 /* For local watchpoint expressions, which particular
4148 instance of a local is being watched matters, so we
4149 keep track of the frame to evaluate the expression
4150 in. To evaluate the condition however, it doesn't
4151 really matter which instantiation of the function
4152 where the condition makes sense triggers the
4153 watchpoint. This allows an expression like "watch
4154 global if q > 10" set in `func', catch writes to
4155 global on all threads that call `func', or catch
4156 writes on all recursive calls of `func' by a single
4157 thread. We simply always evaluate the condition in
4158 the innermost frame that's executing where it makes
4159 sense to evaluate the condition. It seems
4160 intuitive. */
4161 frame = block_innermost_frame (b->cond_exp_valid_block);
4162 if (frame != NULL)
4163 select_frame (frame);
4164 else
4165 within_current_scope = 0;
4166 }
4167 if (within_current_scope)
4168 value_is_zero
4169 = catch_errors (breakpoint_cond_eval, cond,
4170 "Error in testing breakpoint condition:\n",
4171 RETURN_MASK_ALL);
4172 else
4173 {
4174 warning (_("Watchpoint condition cannot be tested "
4175 "in the current scope"));
4176 /* If we failed to set the right context for this
4177 watchpoint, unconditionally report it. */
4178 value_is_zero = 0;
4179 }
4a64f543 4180 /* FIXME-someday, should give breakpoint #. */
c5bc3a77 4181 value_free_to_mark (mark);
18a18393 4182 }
60e1c644
PA
4183
4184 if (cond && value_is_zero)
18a18393
VP
4185 {
4186 bs->stop = 0;
4187 }
4188 else if (b->thread != -1 && b->thread != thread_id)
4189 {
4190 bs->stop = 0;
4191 }
4192 else if (b->ignore_count > 0)
4193 {
4194 b->ignore_count--;
4195 annotate_ignore_count_change ();
4196 bs->stop = 0;
4a64f543 4197 /* Increase the hit count even though we don't stop. */
18a18393 4198 ++(b->hit_count);
8d3788bd 4199 observer_notify_breakpoint_modified (b);
18a18393
VP
4200 }
4201 }
4202}
4203
4204
9709f61c 4205/* Get a bpstat associated with having just stopped at address
d983da9c 4206 BP_ADDR in thread PTID.
c906108c 4207
d983da9c 4208 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
4209 don't understand this stop. Result is a chain of bpstat's such
4210 that:
c906108c 4211
c5aa993b 4212 if we don't understand the stop, the result is a null pointer.
c906108c 4213
c5aa993b 4214 if we understand why we stopped, the result is not null.
c906108c 4215
c5aa993b
JM
4216 Each element of the chain refers to a particular breakpoint or
4217 watchpoint at which we have stopped. (We may have stopped for
4218 several reasons concurrently.)
c906108c 4219
c5aa993b
JM
4220 Each element of the chain has valid next, breakpoint_at,
4221 commands, FIXME??? fields. */
c906108c
SS
4222
4223bpstat
6c95b8df
PA
4224bpstat_stop_status (struct address_space *aspace,
4225 CORE_ADDR bp_addr, ptid_t ptid)
c906108c 4226{
0d381245 4227 struct breakpoint *b = NULL;
afe38095 4228 struct bp_location *bl;
20874c92 4229 struct bp_location *loc;
5760d0ab
JK
4230 /* First item of allocated bpstat's. */
4231 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 4232 /* Pointer to the last thing in the chain currently. */
5760d0ab 4233 bpstat bs;
20874c92 4234 int ix;
429374b8 4235 int need_remove_insert;
f431efe5 4236 int removed_any;
c906108c 4237
f431efe5
PA
4238 /* First, build the bpstat chain with locations that explain a
4239 target stop, while being careful to not set the target running,
4240 as that may invalidate locations (in particular watchpoint
4241 locations are recreated). Resuming will happen here with
4242 breakpoint conditions or watchpoint expressions that include
4243 inferior function calls. */
c5aa993b 4244
429374b8
JK
4245 ALL_BREAKPOINTS (b)
4246 {
4247 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
4248 continue;
a5606eee 4249
429374b8
JK
4250 for (bl = b->loc; bl != NULL; bl = bl->next)
4251 {
4a64f543
MS
4252 /* For hardware watchpoints, we look only at the first
4253 location. The watchpoint_check function will work on the
4254 entire expression, not the individual locations. For
4255 read watchpoints, the watchpoints_triggered function has
4256 checked all locations already. */
429374b8
JK
4257 if (b->type == bp_hardware_watchpoint && bl != b->loc)
4258 break;
18a18393 4259
429374b8
JK
4260 if (bl->shlib_disabled)
4261 continue;
c5aa993b 4262
429374b8
JK
4263 if (!bpstat_check_location (bl, aspace, bp_addr))
4264 continue;
c5aa993b 4265
4a64f543
MS
4266 /* Come here if it's a watchpoint, or if the break address
4267 matches. */
c5aa993b 4268
4a64f543
MS
4269 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
4270 explain stop. */
c5aa993b 4271
f431efe5
PA
4272 /* Assume we stop. Should we find a watchpoint that is not
4273 actually triggered, or if the condition of the breakpoint
4274 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
4275 bs->stop = 1;
4276 bs->print = 1;
d983da9c 4277
f431efe5
PA
4278 /* If this is a scope breakpoint, mark the associated
4279 watchpoint as triggered so that we will handle the
4280 out-of-scope event. We'll get to the watchpoint next
4281 iteration. */
d0fb5eae 4282 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
f431efe5
PA
4283 b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
4284 }
4285 }
4286
4287 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
4288 {
f1310107 4289 if (breakpoint_location_address_match (loc, aspace, bp_addr))
f431efe5 4290 {
5760d0ab 4291 bs = bpstat_alloc (loc, &bs_link);
f431efe5
PA
4292 /* For hits of moribund locations, we should just proceed. */
4293 bs->stop = 0;
4294 bs->print = 0;
4295 bs->print_it = print_it_noop;
4296 }
4297 }
4298
f431efe5
PA
4299 /* Now go through the locations that caused the target to stop, and
4300 check whether we're interested in reporting this stop to higher
4301 layers, or whether we should resume the target transparently. */
4302
4303 removed_any = 0;
4304
5760d0ab 4305 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
4306 {
4307 if (!bs->stop)
4308 continue;
4309
4310 bpstat_check_watchpoint (bs);
4311 if (!bs->stop)
4312 continue;
4313
4314 b = bs->breakpoint_at;
18a18393 4315
28010a5d
PA
4316 if (b->ops != NULL && b->ops->check_status != NULL)
4317 {
4318 b->ops->check_status (bs);
4319 if (!bs->stop)
4320 continue;
4321 }
4322
429374b8 4323 if (b->type == bp_thread_event || b->type == bp_overlay_event
aa7d318d 4324 || b->type == bp_longjmp_master
186c406b
TT
4325 || b->type == bp_std_terminate_master
4326 || b->type == bp_exception_master)
429374b8
JK
4327 /* We do not stop for these. */
4328 bs->stop = 0;
4329 else
4330 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 4331
429374b8
JK
4332 if (bs->stop)
4333 {
4334 ++(b->hit_count);
8d3788bd 4335 observer_notify_breakpoint_modified (b);
c906108c 4336
4a64f543 4337 /* We will stop here. */
429374b8
JK
4338 if (b->disposition == disp_disable)
4339 {
4340 if (b->enable_state != bp_permanent)
4341 b->enable_state = bp_disabled;
f431efe5 4342 removed_any = 1;
429374b8
JK
4343 }
4344 if (b->silent)
4345 bs->print = 0;
4346 bs->commands = b->commands;
9add0f1b
TT
4347 incref_counted_command_line (bs->commands);
4348 bs->commands_left = bs->commands ? bs->commands->commands : NULL;
4349 if (bs->commands_left
4350 && (strcmp ("silent", bs->commands_left->line) == 0
4351 || (xdb_commands
4352 && strcmp ("Q",
4353 bs->commands_left->line) == 0)))
429374b8 4354 {
9add0f1b 4355 bs->commands_left = bs->commands_left->next;
429374b8
JK
4356 bs->print = 0;
4357 }
429374b8
JK
4358 }
4359
4360 /* Print nothing for this entry if we dont stop or dont print. */
4361 if (bs->stop == 0 || bs->print == 0)
4362 bs->print_it = print_it_noop;
429374b8 4363 }
876fa593 4364
d983da9c
DJ
4365 /* If we aren't stopping, the value of some hardware watchpoint may
4366 not have changed, but the intermediate memory locations we are
4367 watching may have. Don't bother if we're stopping; this will get
4368 done later. */
d832cb68 4369 need_remove_insert = 0;
5760d0ab
JK
4370 if (! bpstat_causes_stop (bs_head))
4371 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 4372 if (!bs->stop
f431efe5
PA
4373 && bs->breakpoint_at
4374 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 4375 {
4a64f543 4376 update_watchpoint (bs->breakpoint_at, 0 /* don't reparse. */);
d832cb68 4377 need_remove_insert = 1;
d983da9c
DJ
4378 }
4379
d832cb68 4380 if (need_remove_insert)
2d134ed3 4381 update_global_location_list (1);
f431efe5
PA
4382 else if (removed_any)
4383 update_global_location_list (0);
d832cb68 4384
5760d0ab 4385 return bs_head;
c906108c 4386}
628fe4e4
JK
4387
4388static void
4389handle_jit_event (void)
4390{
4391 struct frame_info *frame;
4392 struct gdbarch *gdbarch;
4393
4394 /* Switch terminal for any messages produced by
4395 breakpoint_re_set. */
4396 target_terminal_ours_for_output ();
4397
4398 frame = get_current_frame ();
4399 gdbarch = get_frame_arch (frame);
4400
4401 jit_event_handler (gdbarch);
4402
4403 target_terminal_inferior ();
4404}
4405
4406/* Prepare WHAT final decision for infrun. */
4407
4408/* Decide what infrun needs to do with this bpstat. */
4409
c906108c 4410struct bpstat_what
0e30163f 4411bpstat_what (bpstat bs_head)
c906108c 4412{
c906108c 4413 struct bpstat_what retval;
628fe4e4
JK
4414 /* We need to defer calling `solib_add', as adding new symbols
4415 resets breakpoints, which in turn deletes breakpoint locations,
4416 and hence may clear unprocessed entries in the BS chain. */
4417 int shlib_event = 0;
4418 int jit_event = 0;
0e30163f 4419 bpstat bs;
c906108c 4420
628fe4e4 4421 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 4422 retval.call_dummy = STOP_NONE;
186c406b 4423 retval.is_longjmp = 0;
628fe4e4 4424
0e30163f 4425 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 4426 {
628fe4e4
JK
4427 /* Extract this BS's action. After processing each BS, we check
4428 if its action overrides all we've seem so far. */
4429 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
4430 enum bptype bptype;
4431
c906108c 4432 if (bs->breakpoint_at == NULL)
628fe4e4
JK
4433 {
4434 /* I suspect this can happen if it was a momentary
4435 breakpoint which has since been deleted. */
4436 bptype = bp_none;
4437 }
20874c92 4438 else
f431efe5 4439 bptype = bs->breakpoint_at->type;
628fe4e4
JK
4440
4441 switch (bptype)
c906108c
SS
4442 {
4443 case bp_none:
628fe4e4 4444 break;
c906108c
SS
4445 case bp_breakpoint:
4446 case bp_hardware_breakpoint:
4447 case bp_until:
4448 case bp_finish:
4449 if (bs->stop)
4450 {
4451 if (bs->print)
628fe4e4 4452 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4453 else
628fe4e4 4454 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4455 }
4456 else
628fe4e4 4457 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
4458 break;
4459 case bp_watchpoint:
4460 case bp_hardware_watchpoint:
4461 case bp_read_watchpoint:
4462 case bp_access_watchpoint:
4463 if (bs->stop)
4464 {
4465 if (bs->print)
628fe4e4 4466 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4467 else
628fe4e4 4468 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4469 }
4470 else
628fe4e4
JK
4471 {
4472 /* There was a watchpoint, but we're not stopping.
4473 This requires no further action. */
4474 }
c906108c
SS
4475 break;
4476 case bp_longjmp:
186c406b 4477 case bp_exception:
628fe4e4 4478 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
186c406b 4479 retval.is_longjmp = bptype == bp_longjmp;
c906108c
SS
4480 break;
4481 case bp_longjmp_resume:
186c406b 4482 case bp_exception_resume:
628fe4e4 4483 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
186c406b 4484 retval.is_longjmp = bptype == bp_longjmp_resume;
c906108c
SS
4485 break;
4486 case bp_step_resume:
4487 if (bs->stop)
628fe4e4
JK
4488 this_action = BPSTAT_WHAT_STEP_RESUME;
4489 else
c906108c 4490 {
628fe4e4
JK
4491 /* It is for the wrong frame. */
4492 this_action = BPSTAT_WHAT_SINGLE;
c906108c 4493 }
c906108c 4494 break;
2c03e5be
PA
4495 case bp_hp_step_resume:
4496 if (bs->stop)
4497 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
4498 else
4499 {
4500 /* It is for the wrong frame. */
4501 this_action = BPSTAT_WHAT_SINGLE;
4502 }
4503 break;
c906108c 4504 case bp_watchpoint_scope:
c4093a6a 4505 case bp_thread_event:
1900040c 4506 case bp_overlay_event:
0fd8e87f 4507 case bp_longjmp_master:
aa7d318d 4508 case bp_std_terminate_master:
186c406b 4509 case bp_exception_master:
628fe4e4 4510 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 4511 break;
ce78b96d 4512 case bp_catchpoint:
c5aa993b
JM
4513 if (bs->stop)
4514 {
4515 if (bs->print)
628fe4e4 4516 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 4517 else
628fe4e4 4518 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
4519 }
4520 else
628fe4e4
JK
4521 {
4522 /* There was a catchpoint, but we're not stopping.
4523 This requires no further action. */
4524 }
4525 break;
4526 case bp_shlib_event:
4527 shlib_event = 1;
4528
4529 /* If requested, stop when the dynamic linker notifies GDB
4530 of events. This allows the user to get control and place
4531 breakpoints in initializer routines for dynamically
4532 loaded objects (among other things). */
4533 if (stop_on_solib_events)
4534 this_action = BPSTAT_WHAT_STOP_NOISY;
4535 else
4536 this_action = BPSTAT_WHAT_SINGLE;
4537 break;
4538 case bp_jit_event:
4539 jit_event = 1;
4540 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 4541 break;
c906108c 4542 case bp_call_dummy:
53a5351d
JM
4543 /* Make sure the action is stop (silent or noisy),
4544 so infrun.c pops the dummy frame. */
aa7d318d 4545 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 4546 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
4547 break;
4548 case bp_std_terminate:
4549 /* Make sure the action is stop (silent or noisy),
4550 so infrun.c pops the dummy frame. */
aa7d318d 4551 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 4552 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 4553 break;
1042e4c0 4554 case bp_tracepoint:
7a697b8d 4555 case bp_fast_tracepoint:
0fb4aa4b 4556 case bp_static_tracepoint:
1042e4c0
SS
4557 /* Tracepoint hits should not be reported back to GDB, and
4558 if one got through somehow, it should have been filtered
4559 out already. */
4560 internal_error (__FILE__, __LINE__,
7a697b8d 4561 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
4562 break;
4563 case bp_gnu_ifunc_resolver:
4564 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
4565 this_action = BPSTAT_WHAT_SINGLE;
4566 break;
4567 case bp_gnu_ifunc_resolver_return:
4568 /* The breakpoint will be removed, execution will restart from the
4569 PC of the former breakpoint. */
4570 this_action = BPSTAT_WHAT_KEEP_CHECKING;
4571 break;
628fe4e4
JK
4572 default:
4573 internal_error (__FILE__, __LINE__,
4574 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 4575 }
628fe4e4
JK
4576
4577 retval.main_action = max (retval.main_action, this_action);
c906108c 4578 }
628fe4e4 4579
0e30163f
JK
4580 /* These operations may affect the bs->breakpoint_at state so they are
4581 delayed after MAIN_ACTION is decided above. */
4582
628fe4e4
JK
4583 if (shlib_event)
4584 {
4585 if (debug_infrun)
4586 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_shlib_event\n");
4587
4588 /* Check for any newly added shared libraries if we're supposed
4589 to be adding them automatically. */
4590
4591 /* Switch terminal for any messages produced by
4592 breakpoint_re_set. */
4593 target_terminal_ours_for_output ();
4594
4595#ifdef SOLIB_ADD
4596 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
4597#else
4598 solib_add (NULL, 0, &current_target, auto_solib_add);
4599#endif
4600
4601 target_terminal_inferior ();
4602 }
4603
4604 if (jit_event)
4605 {
4606 if (debug_infrun)
4607 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n");
4608
4609 handle_jit_event ();
4610 }
4611
0e30163f
JK
4612 for (bs = bs_head; bs != NULL; bs = bs->next)
4613 {
4614 struct breakpoint *b = bs->breakpoint_at;
4615
4616 if (b == NULL)
4617 continue;
4618 switch (b->type)
4619 {
4620 case bp_gnu_ifunc_resolver:
4621 gnu_ifunc_resolver_stop (b);
4622 break;
4623 case bp_gnu_ifunc_resolver_return:
4624 gnu_ifunc_resolver_return_stop (b);
4625 break;
4626 }
4627 }
4628
c906108c
SS
4629 return retval;
4630}
4631
4632/* Nonzero if we should step constantly (e.g. watchpoints on machines
4633 without hardware support). This isn't related to a specific bpstat,
4634 just to things like whether watchpoints are set. */
4635
c5aa993b 4636int
fba45db2 4637bpstat_should_step (void)
c906108c
SS
4638{
4639 struct breakpoint *b;
cc59ec59 4640
c906108c 4641 ALL_BREAKPOINTS (b)
717a8278 4642 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 4643 return 1;
c906108c
SS
4644 return 0;
4645}
4646
67822962
PA
4647int
4648bpstat_causes_stop (bpstat bs)
4649{
4650 for (; bs != NULL; bs = bs->next)
4651 if (bs->stop)
4652 return 1;
4653
4654 return 0;
4655}
4656
c906108c 4657\f
c5aa993b 4658
170b53b2
UW
4659/* Compute a string of spaces suitable to indent the next line
4660 so it starts at the position corresponding to the table column
4661 named COL_NAME in the currently active table of UIOUT. */
4662
4663static char *
4664wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
4665{
4666 static char wrap_indent[80];
4667 int i, total_width, width, align;
4668 char *text;
4669
4670 total_width = 0;
4671 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
4672 {
4673 if (strcmp (text, col_name) == 0)
4674 {
4675 gdb_assert (total_width < sizeof wrap_indent);
4676 memset (wrap_indent, ' ', total_width);
4677 wrap_indent[total_width] = 0;
4678
4679 return wrap_indent;
4680 }
4681
4682 total_width += width + 1;
4683 }
4684
4685 return NULL;
4686}
4687
859825b8
JK
4688/* Print the LOC location out of the list of B->LOC locations. */
4689
170b53b2
UW
4690static void
4691print_breakpoint_location (struct breakpoint *b,
4692 struct bp_location *loc)
0d381245 4693{
6c95b8df
PA
4694 struct cleanup *old_chain = save_current_program_space ();
4695
859825b8
JK
4696 if (loc != NULL && loc->shlib_disabled)
4697 loc = NULL;
4698
6c95b8df
PA
4699 if (loc != NULL)
4700 set_current_program_space (loc->pspace);
4701
56435ebe
TT
4702 if (b->display_canonical)
4703 ui_out_field_string (uiout, "what", b->addr_string);
4704 else if (b->source_file && loc)
0d381245
VP
4705 {
4706 struct symbol *sym
4707 = find_pc_sect_function (loc->address, loc->section);
4708 if (sym)
4709 {
4710 ui_out_text (uiout, "in ");
4711 ui_out_field_string (uiout, "func",
4712 SYMBOL_PRINT_NAME (sym));
170b53b2
UW
4713 ui_out_text (uiout, " ");
4714 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
4715 ui_out_text (uiout, "at ");
0d381245
VP
4716 }
4717 ui_out_field_string (uiout, "file", b->source_file);
4718 ui_out_text (uiout, ":");
4719
4720 if (ui_out_is_mi_like_p (uiout))
4721 {
4722 struct symtab_and_line sal = find_pc_line (loc->address, 0);
4723 char *fullname = symtab_to_fullname (sal.symtab);
4724
4725 if (fullname)
4726 ui_out_field_string (uiout, "fullname", fullname);
4727 }
4728
4729 ui_out_field_int (uiout, "line", b->line_number);
4730 }
859825b8 4731 else if (loc)
0d381245 4732 {
170b53b2
UW
4733 struct ui_stream *stb = ui_out_stream_new (uiout);
4734 struct cleanup *stb_chain = make_cleanup_ui_out_stream_delete (stb);
4735
22e722e1
DJ
4736 print_address_symbolic (loc->gdbarch, loc->address, stb->stream,
4737 demangle, "");
0d381245 4738 ui_out_field_stream (uiout, "at", stb);
170b53b2
UW
4739
4740 do_cleanups (stb_chain);
0d381245 4741 }
859825b8
JK
4742 else
4743 ui_out_field_string (uiout, "pending", b->addr_string);
6c95b8df
PA
4744
4745 do_cleanups (old_chain);
0d381245
VP
4746}
4747
269b11a2
PA
4748static const char *
4749bptype_string (enum bptype type)
c906108c 4750{
c4093a6a
JM
4751 struct ep_type_description
4752 {
4753 enum bptype type;
4754 char *description;
4755 };
4756 static struct ep_type_description bptypes[] =
c906108c 4757 {
c5aa993b
JM
4758 {bp_none, "?deleted?"},
4759 {bp_breakpoint, "breakpoint"},
c906108c 4760 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
4761 {bp_until, "until"},
4762 {bp_finish, "finish"},
4763 {bp_watchpoint, "watchpoint"},
c906108c 4764 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
4765 {bp_read_watchpoint, "read watchpoint"},
4766 {bp_access_watchpoint, "acc watchpoint"},
4767 {bp_longjmp, "longjmp"},
4768 {bp_longjmp_resume, "longjmp resume"},
186c406b
TT
4769 {bp_exception, "exception"},
4770 {bp_exception_resume, "exception resume"},
c5aa993b 4771 {bp_step_resume, "step resume"},
2c03e5be 4772 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
4773 {bp_watchpoint_scope, "watchpoint scope"},
4774 {bp_call_dummy, "call dummy"},
aa7d318d 4775 {bp_std_terminate, "std::terminate"},
c5aa993b 4776 {bp_shlib_event, "shlib events"},
c4093a6a 4777 {bp_thread_event, "thread events"},
1900040c 4778 {bp_overlay_event, "overlay events"},
0fd8e87f 4779 {bp_longjmp_master, "longjmp master"},
aa7d318d 4780 {bp_std_terminate_master, "std::terminate master"},
186c406b 4781 {bp_exception_master, "exception master"},
ce78b96d 4782 {bp_catchpoint, "catchpoint"},
1042e4c0 4783 {bp_tracepoint, "tracepoint"},
7a697b8d 4784 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 4785 {bp_static_tracepoint, "static tracepoint"},
4efc6507 4786 {bp_jit_event, "jit events"},
0e30163f
JK
4787 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
4788 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 4789 };
269b11a2
PA
4790
4791 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
4792 || ((int) type != bptypes[(int) type].type))
4793 internal_error (__FILE__, __LINE__,
4794 _("bptypes table does not describe type #%d."),
4795 (int) type);
4796
4797 return bptypes[(int) type].description;
4798}
4799
4800/* Print B to gdb_stdout. */
4801
4802static void
4803print_one_breakpoint_location (struct breakpoint *b,
4804 struct bp_location *loc,
4805 int loc_number,
4806 struct bp_location **last_loc,
269b11a2
PA
4807 int allflag)
4808{
4809 struct command_line *l;
c2c6d25f 4810 static char bpenables[] = "nynny";
c906108c 4811
0d381245
VP
4812 int header_of_multiple = 0;
4813 int part_of_multiple = (loc != NULL);
79a45b7d
TT
4814 struct value_print_options opts;
4815
4816 get_user_print_options (&opts);
0d381245
VP
4817
4818 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
4819 /* See comment in print_one_breakpoint concerning treatment of
4820 breakpoints with single disabled location. */
0d381245
VP
4821 if (loc == NULL
4822 && (b->loc != NULL
4823 && (b->loc->next != NULL || !b->loc->enabled)))
4824 header_of_multiple = 1;
4825 if (loc == NULL)
4826 loc = b->loc;
4827
c4093a6a
JM
4828 annotate_record ();
4829
4830 /* 1 */
4831 annotate_field (0);
0d381245
VP
4832 if (part_of_multiple)
4833 {
4834 char *formatted;
0c6773c1 4835 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
4836 ui_out_field_string (uiout, "number", formatted);
4837 xfree (formatted);
4838 }
4839 else
4840 {
4841 ui_out_field_int (uiout, "number", b->number);
4842 }
c4093a6a
JM
4843
4844 /* 2 */
4845 annotate_field (1);
0d381245
VP
4846 if (part_of_multiple)
4847 ui_out_field_skip (uiout, "type");
269b11a2
PA
4848 else
4849 ui_out_field_string (uiout, "type", bptype_string (b->type));
c4093a6a
JM
4850
4851 /* 3 */
4852 annotate_field (2);
0d381245
VP
4853 if (part_of_multiple)
4854 ui_out_field_skip (uiout, "disp");
4855 else
2cec12e5 4856 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 4857
c4093a6a
JM
4858
4859 /* 4 */
4860 annotate_field (3);
0d381245 4861 if (part_of_multiple)
54e52265 4862 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 4863 else
4a64f543
MS
4864 ui_out_field_fmt (uiout, "enabled", "%c",
4865 bpenables[(int) b->enable_state]);
54e52265 4866 ui_out_spaces (uiout, 2);
0d381245 4867
c4093a6a
JM
4868
4869 /* 5 and 6 */
3086aeae 4870 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 4871 {
4a64f543
MS
4872 /* Although the print_one can possibly print all locations,
4873 calling it here is not likely to get any nice result. So,
4874 make sure there's just one location. */
0d381245 4875 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 4876 b->ops->print_one (b, last_loc);
0d381245 4877 }
3086aeae
DJ
4878 else
4879 switch (b->type)
4880 {
4881 case bp_none:
4882 internal_error (__FILE__, __LINE__,
e2e0b3e5 4883 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 4884 break;
c906108c 4885
3086aeae
DJ
4886 case bp_watchpoint:
4887 case bp_hardware_watchpoint:
4888 case bp_read_watchpoint:
4889 case bp_access_watchpoint:
4890 /* Field 4, the address, is omitted (which makes the columns
4891 not line up too nicely with the headers, but the effect
4892 is relatively readable). */
79a45b7d 4893 if (opts.addressprint)
3086aeae
DJ
4894 ui_out_field_skip (uiout, "addr");
4895 annotate_field (5);
fa8a61dc 4896 ui_out_field_string (uiout, "what", b->exp_string);
3086aeae
DJ
4897 break;
4898
3086aeae
DJ
4899 case bp_breakpoint:
4900 case bp_hardware_breakpoint:
4901 case bp_until:
4902 case bp_finish:
4903 case bp_longjmp:
4904 case bp_longjmp_resume:
186c406b
TT
4905 case bp_exception:
4906 case bp_exception_resume:
3086aeae 4907 case bp_step_resume:
2c03e5be 4908 case bp_hp_step_resume:
3086aeae
DJ
4909 case bp_watchpoint_scope:
4910 case bp_call_dummy:
aa7d318d 4911 case bp_std_terminate:
3086aeae
DJ
4912 case bp_shlib_event:
4913 case bp_thread_event:
4914 case bp_overlay_event:
0fd8e87f 4915 case bp_longjmp_master:
aa7d318d 4916 case bp_std_terminate_master:
186c406b 4917 case bp_exception_master:
1042e4c0 4918 case bp_tracepoint:
7a697b8d 4919 case bp_fast_tracepoint:
0fb4aa4b 4920 case bp_static_tracepoint:
4efc6507 4921 case bp_jit_event:
0e30163f
JK
4922 case bp_gnu_ifunc_resolver:
4923 case bp_gnu_ifunc_resolver_return:
79a45b7d 4924 if (opts.addressprint)
3086aeae
DJ
4925 {
4926 annotate_field (4);
54e52265 4927 if (header_of_multiple)
0d381245 4928 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 4929 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 4930 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 4931 else
5af949e3
UW
4932 ui_out_field_core_addr (uiout, "addr",
4933 loc->gdbarch, loc->address);
3086aeae
DJ
4934 }
4935 annotate_field (5);
0d381245 4936 if (!header_of_multiple)
170b53b2 4937 print_breakpoint_location (b, loc);
0d381245 4938 if (b->loc)
a6d9a66e 4939 *last_loc = b->loc;
3086aeae
DJ
4940 break;
4941 }
c906108c 4942
6c95b8df
PA
4943
4944 /* For backward compatibility, don't display inferiors unless there
4945 are several. */
4946 if (loc != NULL
4947 && !header_of_multiple
4948 && (allflag
4949 || (!gdbarch_has_global_breakpoints (target_gdbarch)
4950 && (number_of_program_spaces () > 1
4951 || number_of_inferiors () > 1)
4a64f543
MS
4952 /* LOC is for existing B, it cannot be in
4953 moribund_locations and thus having NULL OWNER. */
6c95b8df
PA
4954 && loc->owner->type != bp_catchpoint)))
4955 {
4956 struct inferior *inf;
4957 int first = 1;
4958
4959 for (inf = inferior_list; inf != NULL; inf = inf->next)
4960 {
4961 if (inf->pspace == loc->pspace)
4962 {
4963 if (first)
4964 {
4965 first = 0;
4966 ui_out_text (uiout, " inf ");
4967 }
4968 else
4969 ui_out_text (uiout, ", ");
4970 ui_out_text (uiout, plongest (inf->num));
4971 }
4972 }
4973 }
4974
4a306c9a 4975 if (!part_of_multiple)
c4093a6a 4976 {
4a306c9a
JB
4977 if (b->thread != -1)
4978 {
4979 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 4980 "stop only in" line a little further down. */
4a306c9a
JB
4981 ui_out_text (uiout, " thread ");
4982 ui_out_field_int (uiout, "thread", b->thread);
4983 }
4984 else if (b->task != 0)
4985 {
4986 ui_out_text (uiout, " task ");
4987 ui_out_field_int (uiout, "task", b->task);
4988 }
c4093a6a 4989 }
f1310107 4990
8b93c638 4991 ui_out_text (uiout, "\n");
f1310107
TJB
4992
4993 if (!part_of_multiple && b->ops && b->ops->print_one_detail)
4994 b->ops->print_one_detail (b, uiout);
4995
0fb4aa4b
PA
4996 if (!part_of_multiple && b->static_trace_marker_id)
4997 {
4998 gdb_assert (b->type == bp_static_tracepoint);
4999
5000 ui_out_text (uiout, "\tmarker id is ");
5001 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
5002 b->static_trace_marker_id);
5003 ui_out_text (uiout, "\n");
5004 }
5005
0d381245 5006 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
5007 {
5008 annotate_field (6);
8b93c638 5009 ui_out_text (uiout, "\tstop only in stack frame at ");
818dd999
AC
5010 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
5011 the frame ID. */
5af949e3
UW
5012 ui_out_field_core_addr (uiout, "frame",
5013 b->gdbarch, b->frame_id.stack_addr);
8b93c638 5014 ui_out_text (uiout, "\n");
c4093a6a
JM
5015 }
5016
28010a5d 5017 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
5018 {
5019 annotate_field (7);
d77f58be 5020 if (is_tracepoint (b))
1042e4c0
SS
5021 ui_out_text (uiout, "\ttrace only if ");
5022 else
5023 ui_out_text (uiout, "\tstop only if ");
0101ce28
JJ
5024 ui_out_field_string (uiout, "cond", b->cond_string);
5025 ui_out_text (uiout, "\n");
5026 }
5027
0d381245 5028 if (!part_of_multiple && b->thread != -1)
c4093a6a 5029 {
4a64f543 5030 /* FIXME should make an annotation for this. */
8b93c638
JM
5031 ui_out_text (uiout, "\tstop only in thread ");
5032 ui_out_field_int (uiout, "thread", b->thread);
5033 ui_out_text (uiout, "\n");
c4093a6a
JM
5034 }
5035
63c715c6 5036 if (!part_of_multiple && b->hit_count)
c4093a6a 5037 {
4a64f543 5038 /* FIXME should make an annotation for this. */
8b93c638
JM
5039 if (ep_is_catchpoint (b))
5040 ui_out_text (uiout, "\tcatchpoint");
5041 else
5042 ui_out_text (uiout, "\tbreakpoint");
5043 ui_out_text (uiout, " already hit ");
5044 ui_out_field_int (uiout, "times", b->hit_count);
5045 if (b->hit_count == 1)
5046 ui_out_text (uiout, " time\n");
5047 else
5048 ui_out_text (uiout, " times\n");
c4093a6a
JM
5049 }
5050
4a64f543
MS
5051 /* Output the count also if it is zero, but only if this is mi.
5052 FIXME: Should have a better test for this. */
9dc5e2a9 5053 if (ui_out_is_mi_like_p (uiout))
63c715c6 5054 if (!part_of_multiple && b->hit_count == 0)
fb40c209 5055 ui_out_field_int (uiout, "times", b->hit_count);
8b93c638 5056
0d381245 5057 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
5058 {
5059 annotate_field (8);
8b93c638
JM
5060 ui_out_text (uiout, "\tignore next ");
5061 ui_out_field_int (uiout, "ignore", b->ignore_count);
5062 ui_out_text (uiout, " hits\n");
c4093a6a 5063 }
059fb39f 5064
9add0f1b 5065 l = b->commands ? b->commands->commands : NULL;
059fb39f 5066 if (!part_of_multiple && l)
c4093a6a 5067 {
3b31d625
EZ
5068 struct cleanup *script_chain;
5069
c4093a6a 5070 annotate_field (9);
3b31d625 5071 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 5072 print_command_lines (uiout, l, 4);
3b31d625 5073 do_cleanups (script_chain);
c4093a6a 5074 }
d24317b4 5075
1042e4c0
SS
5076 if (!part_of_multiple && b->pass_count)
5077 {
5078 annotate_field (10);
5079 ui_out_text (uiout, "\tpass count ");
5080 ui_out_field_int (uiout, "pass", b->pass_count);
5081 ui_out_text (uiout, " \n");
5082 }
5083
d24317b4
VP
5084 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
5085 {
5086 if (b->addr_string)
5087 ui_out_field_string (uiout, "original-location", b->addr_string);
5088 else if (b->exp_string)
5089 ui_out_field_string (uiout, "original-location", b->exp_string);
5090 }
c4093a6a 5091}
c5aa993b 5092
0d381245
VP
5093static void
5094print_one_breakpoint (struct breakpoint *b,
4a64f543 5095 struct bp_location **last_loc,
6c95b8df 5096 int allflag)
0d381245 5097{
8d3788bd
VP
5098 struct cleanup *bkpt_chain;
5099
5100 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
5101
12c5a436 5102 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
8d3788bd 5103 do_cleanups (bkpt_chain);
0d381245
VP
5104
5105 /* If this breakpoint has custom print function,
5106 it's already printed. Otherwise, print individual
5107 locations, if any. */
5108 if (b->ops == NULL || b->ops->print_one == NULL)
5109 {
4a64f543
MS
5110 /* If breakpoint has a single location that is disabled, we
5111 print it as if it had several locations, since otherwise it's
5112 hard to represent "breakpoint enabled, location disabled"
5113 situation.
5114
5115 Note that while hardware watchpoints have several locations
a3be7890 5116 internally, that's not a property exposed to user. */
0d381245 5117 if (b->loc
a5606eee 5118 && !is_hardware_watchpoint (b)
8d3788bd 5119 && (b->loc->next || !b->loc->enabled))
0d381245
VP
5120 {
5121 struct bp_location *loc;
5122 int n = 1;
8d3788bd 5123
0d381245 5124 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd
VP
5125 {
5126 struct cleanup *inner2 =
5127 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
5128 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
5129 do_cleanups (inner2);
5130 }
0d381245
VP
5131 }
5132 }
5133}
5134
a6d9a66e
UW
5135static int
5136breakpoint_address_bits (struct breakpoint *b)
5137{
5138 int print_address_bits = 0;
5139 struct bp_location *loc;
5140
5141 for (loc = b->loc; loc; loc = loc->next)
5142 {
c7437ca6
PA
5143 int addr_bit;
5144
5145 /* Software watchpoints that aren't watching memory don't have
5146 an address to print. */
5147 if (b->type == bp_watchpoint && loc->watchpoint_type == -1)
5148 continue;
5149
5150 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
5151 if (addr_bit > print_address_bits)
5152 print_address_bits = addr_bit;
5153 }
5154
5155 return print_address_bits;
5156}
0d381245 5157
c4093a6a
JM
5158struct captured_breakpoint_query_args
5159 {
5160 int bnum;
5161 };
c5aa993b 5162
c4093a6a 5163static int
2b65245e 5164do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
5165{
5166 struct captured_breakpoint_query_args *args = data;
52f0bd74 5167 struct breakpoint *b;
a6d9a66e 5168 struct bp_location *dummy_loc = NULL;
cc59ec59 5169
c4093a6a
JM
5170 ALL_BREAKPOINTS (b)
5171 {
5172 if (args->bnum == b->number)
c5aa993b 5173 {
12c5a436 5174 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 5175 return GDB_RC_OK;
c5aa993b 5176 }
c4093a6a
JM
5177 }
5178 return GDB_RC_NONE;
5179}
c5aa993b 5180
c4093a6a 5181enum gdb_rc
4a64f543
MS
5182gdb_breakpoint_query (struct ui_out *uiout, int bnum,
5183 char **error_message)
c4093a6a
JM
5184{
5185 struct captured_breakpoint_query_args args;
cc59ec59 5186
c4093a6a
JM
5187 args.bnum = bnum;
5188 /* For the moment we don't trust print_one_breakpoint() to not throw
4a64f543 5189 an error. */
b0b13bb4
DJ
5190 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
5191 error_message, RETURN_MASK_ALL) < 0)
5192 return GDB_RC_FAIL;
5193 else
5194 return GDB_RC_OK;
c4093a6a 5195}
c5aa993b 5196
09d682a4
TT
5197/* Return true if this breakpoint was set by the user, false if it is
5198 internal or momentary. */
5199
5200int
5201user_breakpoint_p (struct breakpoint *b)
5202{
46c6471b 5203 return b->number > 0;
09d682a4
TT
5204}
5205
7f3b0473 5206/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
5207 number BNUM. If BNUM is -1 print all user-settable breakpoints.
5208 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
5209 FILTER is non-NULL, call it on each breakpoint and only include the
5210 ones for which it returns non-zero. Return the total number of
5211 breakpoints listed. */
c906108c 5212
d77f58be 5213static int
e5a67952 5214breakpoint_1 (char *args, int allflag,
4a64f543 5215 int (*filter) (const struct breakpoint *))
c4093a6a 5216{
52f0bd74 5217 struct breakpoint *b;
a6d9a66e 5218 struct bp_location *last_loc = NULL;
7f3b0473 5219 int nr_printable_breakpoints;
3b31d625 5220 struct cleanup *bkpttbl_chain;
79a45b7d 5221 struct value_print_options opts;
a6d9a66e 5222 int print_address_bits = 0;
269b11a2
PA
5223 int print_type_col_width = 14;
5224
79a45b7d
TT
5225 get_user_print_options (&opts);
5226
4a64f543
MS
5227 /* Compute the number of rows in the table, as well as the size
5228 required for address fields. */
7f3b0473
AC
5229 nr_printable_breakpoints = 0;
5230 ALL_BREAKPOINTS (b)
e5a67952
MS
5231 {
5232 /* If we have a filter, only list the breakpoints it accepts. */
5233 if (filter && !filter (b))
5234 continue;
5235
5236 /* If we have an "args" string, it is a list of breakpoints to
5237 accept. Skip the others. */
5238 if (args != NULL && *args != '\0')
5239 {
5240 if (allflag && parse_and_eval_long (args) != b->number)
5241 continue;
5242 if (!allflag && !number_is_in_list (args, b->number))
5243 continue;
5244 }
269b11a2 5245
e5a67952
MS
5246 if (allflag || user_breakpoint_p (b))
5247 {
5248 int addr_bit, type_len;
a6d9a66e 5249
e5a67952
MS
5250 addr_bit = breakpoint_address_bits (b);
5251 if (addr_bit > print_address_bits)
5252 print_address_bits = addr_bit;
269b11a2 5253
e5a67952
MS
5254 type_len = strlen (bptype_string (b->type));
5255 if (type_len > print_type_col_width)
5256 print_type_col_width = type_len;
5257
5258 nr_printable_breakpoints++;
5259 }
5260 }
7f3b0473 5261
79a45b7d 5262 if (opts.addressprint)
3b31d625 5263 bkpttbl_chain
3e43a32a
MS
5264 = make_cleanup_ui_out_table_begin_end (uiout, 6,
5265 nr_printable_breakpoints,
3b31d625 5266 "BreakpointTable");
8b93c638 5267 else
3b31d625 5268 bkpttbl_chain
3e43a32a
MS
5269 = make_cleanup_ui_out_table_begin_end (uiout, 5,
5270 nr_printable_breakpoints,
3b31d625 5271 "BreakpointTable");
8b93c638 5272
7f3b0473 5273 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
5274 annotate_breakpoints_headers ();
5275 if (nr_printable_breakpoints > 0)
5276 annotate_field (0);
4a64f543 5277 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
5278 if (nr_printable_breakpoints > 0)
5279 annotate_field (1);
269b11a2 5280 ui_out_table_header (uiout, print_type_col_width, ui_left,
4a64f543 5281 "type", "Type"); /* 2 */
d7faa9e7
AC
5282 if (nr_printable_breakpoints > 0)
5283 annotate_field (2);
4a64f543 5284 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
d7faa9e7
AC
5285 if (nr_printable_breakpoints > 0)
5286 annotate_field (3);
54e52265 5287 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 5288 if (opts.addressprint)
e5a67952
MS
5289 {
5290 if (nr_printable_breakpoints > 0)
5291 annotate_field (4);
5292 if (print_address_bits <= 32)
5293 ui_out_table_header (uiout, 10, ui_left,
5294 "addr", "Address"); /* 5 */
5295 else
5296 ui_out_table_header (uiout, 18, ui_left,
5297 "addr", "Address"); /* 5 */
5298 }
d7faa9e7
AC
5299 if (nr_printable_breakpoints > 0)
5300 annotate_field (5);
5301 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
5302 ui_out_table_body (uiout);
5303 if (nr_printable_breakpoints > 0)
5304 annotate_breakpoints_table ();
7f3b0473 5305
c4093a6a 5306 ALL_BREAKPOINTS (b)
e5a67952
MS
5307 {
5308 QUIT;
5309 /* If we have a filter, only list the breakpoints it accepts. */
5310 if (filter && !filter (b))
5311 continue;
5312
5313 /* If we have an "args" string, it is a list of breakpoints to
5314 accept. Skip the others. */
5315
5316 if (args != NULL && *args != '\0')
5317 {
5318 if (allflag) /* maintenance info breakpoint */
5319 {
5320 if (parse_and_eval_long (args) != b->number)
5321 continue;
5322 }
5323 else /* all others */
5324 {
5325 if (!number_is_in_list (args, b->number))
5326 continue;
5327 }
5328 }
5329 /* We only print out user settable breakpoints unless the
5330 allflag is set. */
5331 if (allflag || user_breakpoint_p (b))
12c5a436 5332 print_one_breakpoint (b, &last_loc, allflag);
e5a67952
MS
5333 }
5334
3b31d625 5335 do_cleanups (bkpttbl_chain);
698384cd 5336
7f3b0473 5337 if (nr_printable_breakpoints == 0)
c906108c 5338 {
4a64f543
MS
5339 /* If there's a filter, let the caller decide how to report
5340 empty list. */
d77f58be
SS
5341 if (!filter)
5342 {
e5a67952 5343 if (args == NULL || *args == '\0')
d77f58be
SS
5344 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
5345 else
4a64f543 5346 ui_out_message (uiout, 0,
e5a67952
MS
5347 "No breakpoint or watchpoint matching '%s'.\n",
5348 args);
d77f58be 5349 }
c906108c
SS
5350 }
5351 else
c4093a6a 5352 {
a6d9a66e
UW
5353 if (last_loc && !server_command)
5354 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 5355 }
c906108c 5356
4a64f543 5357 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 5358 there have been breakpoints? */
c906108c 5359 annotate_breakpoints_table_end ();
d77f58be
SS
5360
5361 return nr_printable_breakpoints;
c906108c
SS
5362}
5363
ad443146
SS
5364/* Display the value of default-collect in a way that is generally
5365 compatible with the breakpoint list. */
5366
5367static void
5368default_collect_info (void)
5369{
5370 /* If it has no value (which is frequently the case), say nothing; a
5371 message like "No default-collect." gets in user's face when it's
5372 not wanted. */
5373 if (!*default_collect)
5374 return;
5375
5376 /* The following phrase lines up nicely with per-tracepoint collect
5377 actions. */
5378 ui_out_text (uiout, "default collect ");
5379 ui_out_field_string (uiout, "default-collect", default_collect);
5380 ui_out_text (uiout, " \n");
5381}
5382
c906108c 5383static void
e5a67952 5384breakpoints_info (char *args, int from_tty)
c906108c 5385{
e5a67952 5386 breakpoint_1 (args, 0, NULL);
ad443146
SS
5387
5388 default_collect_info ();
d77f58be
SS
5389}
5390
5391static void
e5a67952 5392watchpoints_info (char *args, int from_tty)
d77f58be 5393{
e5a67952 5394 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
d77f58be
SS
5395
5396 if (num_printed == 0)
5397 {
e5a67952 5398 if (args == NULL || *args == '\0')
d77f58be
SS
5399 ui_out_message (uiout, 0, "No watchpoints.\n");
5400 else
e5a67952 5401 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
d77f58be 5402 }
c906108c
SS
5403}
5404
7a292a7a 5405static void
e5a67952 5406maintenance_info_breakpoints (char *args, int from_tty)
c906108c 5407{
e5a67952 5408 breakpoint_1 (args, 1, NULL);
ad443146
SS
5409
5410 default_collect_info ();
c906108c
SS
5411}
5412
0d381245 5413static int
714835d5 5414breakpoint_has_pc (struct breakpoint *b,
6c95b8df 5415 struct program_space *pspace,
714835d5 5416 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
5417{
5418 struct bp_location *bl = b->loc;
cc59ec59 5419
0d381245
VP
5420 for (; bl; bl = bl->next)
5421 {
6c95b8df
PA
5422 if (bl->pspace == pspace
5423 && bl->address == pc
0d381245
VP
5424 && (!overlay_debugging || bl->section == section))
5425 return 1;
5426 }
5427 return 0;
5428}
5429
6c95b8df
PA
5430/* Print a message describing any breakpoints set at PC. This
5431 concerns with logical breakpoints, so we match program spaces, not
5432 address spaces. */
c906108c
SS
5433
5434static void
6c95b8df
PA
5435describe_other_breakpoints (struct gdbarch *gdbarch,
5436 struct program_space *pspace, CORE_ADDR pc,
5af949e3 5437 struct obj_section *section, int thread)
c906108c 5438{
52f0bd74
AC
5439 int others = 0;
5440 struct breakpoint *b;
c906108c
SS
5441
5442 ALL_BREAKPOINTS (b)
6c95b8df 5443 others += breakpoint_has_pc (b, pspace, pc, section);
c906108c
SS
5444 if (others > 0)
5445 {
a3f17187
AC
5446 if (others == 1)
5447 printf_filtered (_("Note: breakpoint "));
5448 else /* if (others == ???) */
5449 printf_filtered (_("Note: breakpoints "));
c906108c 5450 ALL_BREAKPOINTS (b)
6c95b8df 5451 if (breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
5452 {
5453 others--;
5454 printf_filtered ("%d", b->number);
5455 if (b->thread == -1 && thread != -1)
5456 printf_filtered (" (all threads)");
5457 else if (b->thread != -1)
5458 printf_filtered (" (thread %d)", b->thread);
5459 printf_filtered ("%s%s ",
059fb39f 5460 ((b->enable_state == bp_disabled
8bea4e01
UW
5461 || b->enable_state == bp_call_disabled
5462 || b->enable_state == bp_startup_disabled)
0d381245
VP
5463 ? " (disabled)"
5464 : b->enable_state == bp_permanent
5465 ? " (permanent)"
5466 : ""),
5467 (others > 1) ? ","
5468 : ((others == 1) ? " and" : ""));
5469 }
a3f17187 5470 printf_filtered (_("also set at pc "));
5af949e3 5471 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
5472 printf_filtered (".\n");
5473 }
5474}
5475\f
5476/* Set the default place to put a breakpoint
5477 for the `break' command with no arguments. */
5478
5479void
6c95b8df
PA
5480set_default_breakpoint (int valid, struct program_space *pspace,
5481 CORE_ADDR addr, struct symtab *symtab,
fba45db2 5482 int line)
c906108c
SS
5483{
5484 default_breakpoint_valid = valid;
6c95b8df 5485 default_breakpoint_pspace = pspace;
c906108c
SS
5486 default_breakpoint_address = addr;
5487 default_breakpoint_symtab = symtab;
5488 default_breakpoint_line = line;
5489}
5490
e4f237da
KB
5491/* Return true iff it is meaningful to use the address member of
5492 BPT. For some breakpoint types, the address member is irrelevant
5493 and it makes no sense to attempt to compare it to other addresses
5494 (or use it for any other purpose either).
5495
4a64f543
MS
5496 More specifically, each of the following breakpoint types will
5497 always have a zero valued address and we don't want to mark
5498 breakpoints of any of these types to be a duplicate of an actual
5499 breakpoint at address zero:
e4f237da
KB
5500
5501 bp_watchpoint
2d134ed3
PA
5502 bp_catchpoint
5503
5504*/
e4f237da
KB
5505
5506static int
5507breakpoint_address_is_meaningful (struct breakpoint *bpt)
5508{
5509 enum bptype type = bpt->type;
5510
2d134ed3
PA
5511 return (type != bp_watchpoint && type != bp_catchpoint);
5512}
5513
5514/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
5515 true if LOC1 and LOC2 represent the same watchpoint location. */
5516
5517static int
4a64f543
MS
5518watchpoint_locations_match (struct bp_location *loc1,
5519 struct bp_location *loc2)
2d134ed3 5520{
2bdf28a0
JK
5521 /* Both of them must not be in moribund_locations. */
5522 gdb_assert (loc1->owner != NULL);
5523 gdb_assert (loc2->owner != NULL);
5524
4a64f543
MS
5525 /* If the target can evaluate the condition expression in hardware,
5526 then we we need to insert both watchpoints even if they are at
5527 the same place. Otherwise the watchpoint will only trigger when
5528 the condition of whichever watchpoint was inserted evaluates to
5529 true, not giving a chance for GDB to check the condition of the
5530 other watchpoint. */
0cf6dd15 5531 if ((loc1->owner->cond_exp
4a64f543
MS
5532 && target_can_accel_watchpoint_condition (loc1->address,
5533 loc1->length,
0cf6dd15
TJB
5534 loc1->watchpoint_type,
5535 loc1->owner->cond_exp))
5536 || (loc2->owner->cond_exp
4a64f543
MS
5537 && target_can_accel_watchpoint_condition (loc2->address,
5538 loc2->length,
0cf6dd15
TJB
5539 loc2->watchpoint_type,
5540 loc2->owner->cond_exp)))
5541 return 0;
5542
85d721b8
PA
5543 /* Note that this checks the owner's type, not the location's. In
5544 case the target does not support read watchpoints, but does
5545 support access watchpoints, we'll have bp_read_watchpoint
5546 watchpoints with hw_access locations. Those should be considered
5547 duplicates of hw_read locations. The hw_read locations will
5548 become hw_access locations later. */
2d134ed3
PA
5549 return (loc1->owner->type == loc2->owner->type
5550 && loc1->pspace->aspace == loc2->pspace->aspace
5551 && loc1->address == loc2->address
5552 && loc1->length == loc2->length);
e4f237da
KB
5553}
5554
6c95b8df
PA
5555/* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
5556 same breakpoint location. In most targets, this can only be true
5557 if ASPACE1 matches ASPACE2. On targets that have global
5558 breakpoints, the address space doesn't really matter. */
5559
5560static int
5561breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
5562 struct address_space *aspace2, CORE_ADDR addr2)
5563{
5564 return ((gdbarch_has_global_breakpoints (target_gdbarch)
5565 || aspace1 == aspace2)
5566 && addr1 == addr2);
5567}
5568
f1310107
TJB
5569/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
5570 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
5571 matches ASPACE2. On targets that have global breakpoints, the address
5572 space doesn't really matter. */
5573
5574static int
5575breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
5576 int len1, struct address_space *aspace2,
5577 CORE_ADDR addr2)
5578{
5579 return ((gdbarch_has_global_breakpoints (target_gdbarch)
5580 || aspace1 == aspace2)
5581 && addr2 >= addr1 && addr2 < addr1 + len1);
5582}
5583
5584/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
5585 a ranged breakpoint. In most targets, a match happens only if ASPACE
5586 matches the breakpoint's address space. On targets that have global
5587 breakpoints, the address space doesn't really matter. */
5588
5589static int
5590breakpoint_location_address_match (struct bp_location *bl,
5591 struct address_space *aspace,
5592 CORE_ADDR addr)
5593{
5594 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
5595 aspace, addr)
5596 || (bl->length
5597 && breakpoint_address_match_range (bl->pspace->aspace,
5598 bl->address, bl->length,
5599 aspace, addr)));
5600}
5601
2d134ed3
PA
5602/* Assuming LOC1 and LOC2's types' have meaningful target addresses
5603 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
5604 represent the same location. */
5605
5606static int
4a64f543
MS
5607breakpoint_locations_match (struct bp_location *loc1,
5608 struct bp_location *loc2)
2d134ed3 5609{
2bdf28a0
JK
5610 int hw_point1, hw_point2;
5611
5612 /* Both of them must not be in moribund_locations. */
5613 gdb_assert (loc1->owner != NULL);
5614 gdb_assert (loc2->owner != NULL);
5615
5616 hw_point1 = is_hardware_watchpoint (loc1->owner);
5617 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
5618
5619 if (hw_point1 != hw_point2)
5620 return 0;
5621 else if (hw_point1)
5622 return watchpoint_locations_match (loc1, loc2);
5623 else
f1310107
TJB
5624 /* We compare bp_location.length in order to cover ranged breakpoints. */
5625 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
5626 loc2->pspace->aspace, loc2->address)
5627 && loc1->length == loc2->length);
2d134ed3
PA
5628}
5629
76897487
KB
5630static void
5631breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
5632 int bnum, int have_bnum)
5633{
f63fbe86
MS
5634 /* The longest string possibly returned by hex_string_custom
5635 is 50 chars. These must be at least that big for safety. */
5636 char astr1[64];
5637 char astr2[64];
76897487 5638
bb599908
PH
5639 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
5640 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 5641 if (have_bnum)
8a3fe4f8 5642 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
5643 bnum, astr1, astr2);
5644 else
8a3fe4f8 5645 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
5646}
5647
4a64f543
MS
5648/* Adjust a breakpoint's address to account for architectural
5649 constraints on breakpoint placement. Return the adjusted address.
5650 Note: Very few targets require this kind of adjustment. For most
5651 targets, this function is simply the identity function. */
76897487
KB
5652
5653static CORE_ADDR
a6d9a66e
UW
5654adjust_breakpoint_address (struct gdbarch *gdbarch,
5655 CORE_ADDR bpaddr, enum bptype bptype)
76897487 5656{
a6d9a66e 5657 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
5658 {
5659 /* Very few targets need any kind of breakpoint adjustment. */
5660 return bpaddr;
5661 }
88f7da05
KB
5662 else if (bptype == bp_watchpoint
5663 || bptype == bp_hardware_watchpoint
5664 || bptype == bp_read_watchpoint
5665 || bptype == bp_access_watchpoint
fe798b75 5666 || bptype == bp_catchpoint)
88f7da05
KB
5667 {
5668 /* Watchpoints and the various bp_catch_* eventpoints should not
5669 have their addresses modified. */
5670 return bpaddr;
5671 }
76897487
KB
5672 else
5673 {
5674 CORE_ADDR adjusted_bpaddr;
5675
5676 /* Some targets have architectural constraints on the placement
5677 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 5678 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
5679
5680 /* An adjusted breakpoint address can significantly alter
5681 a user's expectations. Print a warning if an adjustment
5682 is required. */
5683 if (adjusted_bpaddr != bpaddr)
5684 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
5685
5686 return adjusted_bpaddr;
5687 }
5688}
5689
28010a5d
PA
5690void
5691init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
5692 struct breakpoint *owner)
7cc221ef 5693{
7cc221ef
DJ
5694 memset (loc, 0, sizeof (*loc));
5695
28010a5d
PA
5696 loc->ops = ops;
5697 loc->owner = owner;
511a6cd4 5698 loc->cond = NULL;
0d381245
VP
5699 loc->shlib_disabled = 0;
5700 loc->enabled = 1;
e049a4b5 5701
28010a5d 5702 switch (owner->type)
e049a4b5
DJ
5703 {
5704 case bp_breakpoint:
5705 case bp_until:
5706 case bp_finish:
5707 case bp_longjmp:
5708 case bp_longjmp_resume:
186c406b
TT
5709 case bp_exception:
5710 case bp_exception_resume:
e049a4b5 5711 case bp_step_resume:
2c03e5be 5712 case bp_hp_step_resume:
e049a4b5
DJ
5713 case bp_watchpoint_scope:
5714 case bp_call_dummy:
aa7d318d 5715 case bp_std_terminate:
e049a4b5
DJ
5716 case bp_shlib_event:
5717 case bp_thread_event:
5718 case bp_overlay_event:
4efc6507 5719 case bp_jit_event:
0fd8e87f 5720 case bp_longjmp_master:
aa7d318d 5721 case bp_std_terminate_master:
186c406b 5722 case bp_exception_master:
0e30163f
JK
5723 case bp_gnu_ifunc_resolver:
5724 case bp_gnu_ifunc_resolver_return:
e049a4b5
DJ
5725 loc->loc_type = bp_loc_software_breakpoint;
5726 break;
5727 case bp_hardware_breakpoint:
5728 loc->loc_type = bp_loc_hardware_breakpoint;
5729 break;
5730 case bp_hardware_watchpoint:
5731 case bp_read_watchpoint:
5732 case bp_access_watchpoint:
5733 loc->loc_type = bp_loc_hardware_watchpoint;
5734 break;
5735 case bp_watchpoint:
ce78b96d 5736 case bp_catchpoint:
15c3d785
PA
5737 case bp_tracepoint:
5738 case bp_fast_tracepoint:
0fb4aa4b 5739 case bp_static_tracepoint:
e049a4b5
DJ
5740 loc->loc_type = bp_loc_other;
5741 break;
5742 default:
e2e0b3e5 5743 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
5744 }
5745
f431efe5 5746 loc->refc = 1;
28010a5d
PA
5747}
5748
5749/* Allocate a struct bp_location. */
5750
5751static struct bp_location *
5752allocate_bp_location (struct breakpoint *bpt)
5753{
5754 struct bp_location *loc;
5755
5756 if (bpt->ops && bpt->ops->allocate_location)
5757 return bpt->ops->allocate_location (bpt);
5758
5759 loc = xmalloc (sizeof (struct bp_location));
5760 init_bp_location (loc, NULL, bpt);
7cc221ef
DJ
5761 return loc;
5762}
5763
f431efe5
PA
5764static void
5765free_bp_location (struct bp_location *loc)
fe3f5fa8 5766{
28010a5d
PA
5767 if (loc->ops && loc->ops->dtor)
5768 loc->ops->dtor (loc);
5769
fe3f5fa8
VP
5770 if (loc->cond)
5771 xfree (loc->cond);
74960c60
VP
5772
5773 if (loc->function_name)
5774 xfree (loc->function_name);
f431efe5 5775
fe3f5fa8
VP
5776 xfree (loc);
5777}
5778
f431efe5
PA
5779/* Increment reference count. */
5780
5781static void
5782incref_bp_location (struct bp_location *bl)
5783{
5784 ++bl->refc;
5785}
5786
5787/* Decrement reference count. If the reference count reaches 0,
5788 destroy the bp_location. Sets *BLP to NULL. */
5789
5790static void
5791decref_bp_location (struct bp_location **blp)
5792{
0807b50c
PA
5793 gdb_assert ((*blp)->refc > 0);
5794
f431efe5
PA
5795 if (--(*blp)->refc == 0)
5796 free_bp_location (*blp);
5797 *blp = NULL;
5798}
5799
346774a9 5800/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 5801
346774a9
PA
5802static void
5803add_to_breakpoint_chain (struct breakpoint *b)
c906108c 5804{
346774a9 5805 struct breakpoint *b1;
c906108c 5806
346774a9
PA
5807 /* Add this breakpoint to the end of the chain so that a list of
5808 breakpoints will come out in order of increasing numbers. */
5809
5810 b1 = breakpoint_chain;
5811 if (b1 == 0)
5812 breakpoint_chain = b;
5813 else
5814 {
5815 while (b1->next)
5816 b1 = b1->next;
5817 b1->next = b;
5818 }
5819}
5820
5821/* Initializes breakpoint B with type BPTYPE and no locations yet. */
5822
5823static void
5824init_raw_breakpoint_without_location (struct breakpoint *b,
5825 struct gdbarch *gdbarch,
28010a5d
PA
5826 enum bptype bptype,
5827 struct breakpoint_ops *ops)
346774a9 5828{
c906108c 5829 memset (b, 0, sizeof (*b));
2219d63c 5830
28010a5d 5831 b->ops = ops;
4d28f7a8 5832 b->type = bptype;
a6d9a66e 5833 b->gdbarch = gdbarch;
c906108c
SS
5834 b->language = current_language->la_language;
5835 b->input_radix = input_radix;
5836 b->thread = -1;
b5de0fa7 5837 b->enable_state = bp_enabled;
c906108c
SS
5838 b->next = 0;
5839 b->silent = 0;
5840 b->ignore_count = 0;
5841 b->commands = NULL;
818dd999 5842 b->frame_id = null_frame_id;
0d381245 5843 b->condition_not_parsed = 0;
84f4c1fe 5844 b->py_bp_object = NULL;
d0fb5eae 5845 b->related_breakpoint = b;
346774a9
PA
5846}
5847
5848/* Helper to set_raw_breakpoint below. Creates a breakpoint
5849 that has type BPTYPE and has no locations as yet. */
5850/* This function is used in gdbtk sources and thus can not be made
5851 static. */
5852
5853static struct breakpoint *
5854set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
5855 enum bptype bptype)
5856{
5857 struct breakpoint *b = XNEW (struct breakpoint);
5858
28010a5d 5859 init_raw_breakpoint_without_location (b, gdbarch, bptype, NULL);
c56053d2 5860 add_to_breakpoint_chain (b);
0d381245
VP
5861 return b;
5862}
5863
0e30163f
JK
5864/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
5865 resolutions should be made as the user specified the location explicitly
5866 enough. */
5867
0d381245 5868static void
0e30163f 5869set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 5870{
2bdf28a0
JK
5871 gdb_assert (loc->owner != NULL);
5872
0d381245 5873 if (loc->owner->type == bp_breakpoint
1042e4c0 5874 || loc->owner->type == bp_hardware_breakpoint
d77f58be 5875 || is_tracepoint (loc->owner))
0d381245 5876 {
0e30163f
JK
5877 int is_gnu_ifunc;
5878
5879 find_pc_partial_function_gnu_ifunc (loc->address, &loc->function_name,
5880 NULL, NULL, &is_gnu_ifunc);
5881
5882 if (is_gnu_ifunc && !explicit_loc)
5883 {
5884 struct breakpoint *b = loc->owner;
5885
5886 gdb_assert (loc->pspace == current_program_space);
5887 if (gnu_ifunc_resolve_name (loc->function_name,
5888 &loc->requested_address))
5889 {
5890 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
5891 loc->address = adjust_breakpoint_address (loc->gdbarch,
5892 loc->requested_address,
5893 b->type);
5894 }
5895 else if (b->type == bp_breakpoint && b->loc == loc
5896 && loc->next == NULL && b->related_breakpoint == b)
5897 {
5898 /* Create only the whole new breakpoint of this type but do not
5899 mess more complicated breakpoints with multiple locations. */
5900 b->type = bp_gnu_ifunc_resolver;
5901 }
5902 }
5903
0d381245
VP
5904 if (loc->function_name)
5905 loc->function_name = xstrdup (loc->function_name);
5906 }
5907}
5908
a6d9a66e
UW
5909/* Attempt to determine architecture of location identified by SAL. */
5910static struct gdbarch *
5911get_sal_arch (struct symtab_and_line sal)
5912{
5913 if (sal.section)
5914 return get_objfile_arch (sal.section->objfile);
5915 if (sal.symtab)
5916 return get_objfile_arch (sal.symtab->objfile);
5917
5918 return NULL;
5919}
5920
346774a9
PA
5921/* Low level routine for partially initializing a breakpoint of type
5922 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 5923 file name, and line number are provided by SAL.
0d381245
VP
5924
5925 It is expected that the caller will complete the initialization of
5926 the newly created breakpoint struct as well as output any status
c56053d2 5927 information regarding the creation of a new breakpoint. */
0d381245 5928
346774a9
PA
5929static void
5930init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d
PA
5931 struct symtab_and_line sal, enum bptype bptype,
5932 struct breakpoint_ops *ops)
0d381245 5933{
0d381245 5934 CORE_ADDR adjusted_address;
a6d9a66e
UW
5935 struct gdbarch *loc_gdbarch;
5936
28010a5d 5937 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 5938
a6d9a66e
UW
5939 loc_gdbarch = get_sal_arch (sal);
5940 if (!loc_gdbarch)
5941 loc_gdbarch = b->gdbarch;
0d381245 5942
6c95b8df
PA
5943 if (bptype != bp_catchpoint)
5944 gdb_assert (sal.pspace != NULL);
5945
0d381245
VP
5946 /* Adjust the breakpoint's address prior to allocating a location.
5947 Once we call allocate_bp_location(), that mostly uninitialized
5948 location will be placed on the location chain. Adjustment of the
8defab1a 5949 breakpoint may cause target_read_memory() to be called and we do
0d381245
VP
5950 not want its scan of the location chain to find a breakpoint and
5951 location that's only been partially initialized. */
4a64f543
MS
5952 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
5953 sal.pc, b->type);
0d381245 5954
39d61571 5955 b->loc = allocate_bp_location (b);
a6d9a66e 5956 b->loc->gdbarch = loc_gdbarch;
0d381245
VP
5957 b->loc->requested_address = sal.pc;
5958 b->loc->address = adjusted_address;
6c95b8df
PA
5959 b->loc->pspace = sal.pspace;
5960
5961 /* Store the program space that was used to set the breakpoint, for
5962 breakpoint resetting. */
5963 b->pspace = sal.pspace;
0d381245
VP
5964
5965 if (sal.symtab == NULL)
5966 b->source_file = NULL;
5967 else
1b36a34b 5968 b->source_file = xstrdup (sal.symtab->filename);
0d381245
VP
5969 b->loc->section = sal.section;
5970 b->line_number = sal.line;
5971
0e30163f
JK
5972 set_breakpoint_location_function (b->loc,
5973 sal.explicit_pc || sal.explicit_line);
c906108c 5974
c906108c 5975 breakpoints_changed ();
346774a9 5976}
c906108c 5977
346774a9
PA
5978/* set_raw_breakpoint is a low level routine for allocating and
5979 partially initializing a breakpoint of type BPTYPE. The newly
5980 created breakpoint's address, section, source file name, and line
5981 number are provided by SAL. The newly created and partially
5982 initialized breakpoint is added to the breakpoint chain and
5983 is also returned as the value of this function.
5984
5985 It is expected that the caller will complete the initialization of
5986 the newly created breakpoint struct as well as output any status
5987 information regarding the creation of a new breakpoint. In
5988 particular, set_raw_breakpoint does NOT set the breakpoint
5989 number! Care should be taken to not allow an error to occur
5990 prior to completing the initialization of the breakpoint. If this
5991 should happen, a bogus breakpoint will be left on the chain. */
5992
5993struct breakpoint *
5994set_raw_breakpoint (struct gdbarch *gdbarch,
5995 struct symtab_and_line sal, enum bptype bptype)
5996{
5997 struct breakpoint *b = XNEW (struct breakpoint);
5998
28010a5d 5999 init_raw_breakpoint (b, gdbarch, sal, bptype, NULL);
c56053d2 6000 add_to_breakpoint_chain (b);
c906108c
SS
6001 return b;
6002}
6003
c2c6d25f
JM
6004
6005/* Note that the breakpoint object B describes a permanent breakpoint
6006 instruction, hard-wired into the inferior's code. */
6007void
6008make_breakpoint_permanent (struct breakpoint *b)
6009{
0d381245 6010 struct bp_location *bl;
cc59ec59 6011
b5de0fa7 6012 b->enable_state = bp_permanent;
c2c6d25f 6013
4a64f543
MS
6014 /* By definition, permanent breakpoints are already present in the
6015 code. Mark all locations as inserted. For now,
6016 make_breakpoint_permanent is called in just one place, so it's
6017 hard to say if it's reasonable to have permanent breakpoint with
6018 multiple locations or not, but it's easy to implmement. */
0d381245
VP
6019 for (bl = b->loc; bl; bl = bl->next)
6020 bl->inserted = 1;
c2c6d25f
JM
6021}
6022
53a5351d 6023/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
6024 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
6025 initiated the operation. */
c906108c
SS
6026
6027void
186c406b 6028set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 6029{
35df4500 6030 struct breakpoint *b, *b_tmp;
186c406b 6031 int thread = tp->num;
0fd8e87f
UW
6032
6033 /* To avoid having to rescan all objfile symbols at every step,
6034 we maintain a list of continually-inserted but always disabled
6035 longjmp "master" breakpoints. Here, we simply create momentary
6036 clones of those and enable them for the requested thread. */
35df4500 6037 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 6038 if (b->pspace == current_program_space
186c406b
TT
6039 && (b->type == bp_longjmp_master
6040 || b->type == bp_exception_master))
0fd8e87f
UW
6041 {
6042 struct breakpoint *clone = clone_momentary_breakpoint (b);
cc59ec59 6043
186c406b 6044 clone->type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
0fd8e87f
UW
6045 clone->thread = thread;
6046 }
186c406b
TT
6047
6048 tp->initiating_frame = frame;
c906108c
SS
6049}
6050
611c83ae 6051/* Delete all longjmp breakpoints from THREAD. */
c906108c 6052void
611c83ae 6053delete_longjmp_breakpoint (int thread)
c906108c 6054{
35df4500 6055 struct breakpoint *b, *b_tmp;
c906108c 6056
35df4500 6057 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 6058 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
6059 {
6060 if (b->thread == thread)
6061 delete_breakpoint (b);
6062 }
c906108c
SS
6063}
6064
1900040c
MS
6065void
6066enable_overlay_breakpoints (void)
6067{
52f0bd74 6068 struct breakpoint *b;
1900040c
MS
6069
6070 ALL_BREAKPOINTS (b)
6071 if (b->type == bp_overlay_event)
6072 {
6073 b->enable_state = bp_enabled;
b60e7edf 6074 update_global_location_list (1);
c02f5703 6075 overlay_events_enabled = 1;
1900040c
MS
6076 }
6077}
6078
6079void
6080disable_overlay_breakpoints (void)
6081{
52f0bd74 6082 struct breakpoint *b;
1900040c
MS
6083
6084 ALL_BREAKPOINTS (b)
6085 if (b->type == bp_overlay_event)
6086 {
6087 b->enable_state = bp_disabled;
b60e7edf 6088 update_global_location_list (0);
c02f5703 6089 overlay_events_enabled = 0;
1900040c
MS
6090 }
6091}
6092
aa7d318d
TT
6093/* Set an active std::terminate breakpoint for each std::terminate
6094 master breakpoint. */
6095void
6096set_std_terminate_breakpoint (void)
6097{
35df4500 6098 struct breakpoint *b, *b_tmp;
aa7d318d 6099
35df4500 6100 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
6101 if (b->pspace == current_program_space
6102 && b->type == bp_std_terminate_master)
6103 {
6104 struct breakpoint *clone = clone_momentary_breakpoint (b);
6105 clone->type = bp_std_terminate;
6106 }
6107}
6108
6109/* Delete all the std::terminate breakpoints. */
6110void
6111delete_std_terminate_breakpoint (void)
6112{
35df4500 6113 struct breakpoint *b, *b_tmp;
aa7d318d 6114
35df4500 6115 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
6116 if (b->type == bp_std_terminate)
6117 delete_breakpoint (b);
6118}
6119
c4093a6a 6120struct breakpoint *
a6d9a66e 6121create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
6122{
6123 struct breakpoint *b;
c4093a6a 6124
a6d9a66e 6125 b = create_internal_breakpoint (gdbarch, address, bp_thread_event);
c4093a6a 6126
b5de0fa7 6127 b->enable_state = bp_enabled;
c4093a6a 6128 /* addr_string has to be used or breakpoint_re_set will delete me. */
5af949e3
UW
6129 b->addr_string
6130 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
c4093a6a 6131
b60e7edf 6132 update_global_location_list_nothrow (1);
74960c60 6133
c4093a6a
JM
6134 return b;
6135}
6136
6137void
6138remove_thread_event_breakpoints (void)
6139{
35df4500 6140 struct breakpoint *b, *b_tmp;
c4093a6a 6141
35df4500 6142 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
6143 if (b->type == bp_thread_event
6144 && b->loc->pspace == current_program_space)
c4093a6a
JM
6145 delete_breakpoint (b);
6146}
6147
0101ce28
JJ
6148struct lang_and_radix
6149 {
6150 enum language lang;
6151 int radix;
6152 };
6153
4efc6507
DE
6154/* Create a breakpoint for JIT code registration and unregistration. */
6155
6156struct breakpoint *
6157create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
6158{
6159 struct breakpoint *b;
6160
6161 b = create_internal_breakpoint (gdbarch, address, bp_jit_event);
6162 update_global_location_list_nothrow (1);
6163 return b;
6164}
0101ce28 6165
03673fc7
PP
6166/* Remove JIT code registration and unregistration breakpoint(s). */
6167
6168void
6169remove_jit_event_breakpoints (void)
6170{
6171 struct breakpoint *b, *b_tmp;
6172
6173 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6174 if (b->type == bp_jit_event
6175 && b->loc->pspace == current_program_space)
6176 delete_breakpoint (b);
6177}
6178
cae688ec
JJ
6179void
6180remove_solib_event_breakpoints (void)
6181{
35df4500 6182 struct breakpoint *b, *b_tmp;
cae688ec 6183
35df4500 6184 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
6185 if (b->type == bp_shlib_event
6186 && b->loc->pspace == current_program_space)
cae688ec
JJ
6187 delete_breakpoint (b);
6188}
6189
6190struct breakpoint *
a6d9a66e 6191create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
cae688ec
JJ
6192{
6193 struct breakpoint *b;
6194
a6d9a66e 6195 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event);
b60e7edf 6196 update_global_location_list_nothrow (1);
cae688ec
JJ
6197 return b;
6198}
6199
6200/* Disable any breakpoints that are on code in shared libraries. Only
6201 apply to enabled breakpoints, disabled ones can just stay disabled. */
6202
6203void
cb851954 6204disable_breakpoints_in_shlibs (void)
cae688ec 6205{
876fa593 6206 struct bp_location *loc, **locp_tmp;
cae688ec 6207
876fa593 6208 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 6209 {
2bdf28a0 6210 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 6211 struct breakpoint *b = loc->owner;
2bdf28a0 6212
4a64f543
MS
6213 /* We apply the check to all breakpoints, including disabled for
6214 those with loc->duplicate set. This is so that when breakpoint
6215 becomes enabled, or the duplicate is removed, gdb will try to
6216 insert all breakpoints. If we don't set shlib_disabled here,
6217 we'll try to insert those breakpoints and fail. */
1042e4c0 6218 if (((b->type == bp_breakpoint)
508ccb1f 6219 || (b->type == bp_jit_event)
1042e4c0 6220 || (b->type == bp_hardware_breakpoint)
d77f58be 6221 || (is_tracepoint (b)))
6c95b8df 6222 && loc->pspace == current_program_space
0d381245 6223 && !loc->shlib_disabled
a77053c2 6224#ifdef PC_SOLIB
0d381245 6225 && PC_SOLIB (loc->address)
a77053c2 6226#else
6c95b8df 6227 && solib_name_from_address (loc->pspace, loc->address)
a77053c2
MK
6228#endif
6229 )
0d381245
VP
6230 {
6231 loc->shlib_disabled = 1;
6232 }
cae688ec
JJ
6233 }
6234}
6235
7a9dd1b2 6236/* Disable any breakpoints that are in an unloaded shared library.
4a64f543
MS
6237 Only apply to enabled breakpoints, disabled ones can just stay
6238 disabled. */
84acb35a 6239
75149521 6240static void
84acb35a
JJ
6241disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
6242{
876fa593 6243 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
6244 int disabled_shlib_breaks = 0;
6245
c86cf029
VP
6246 /* SunOS a.out shared libraries are always mapped, so do not
6247 disable breakpoints; they will only be reported as unloaded
6248 through clear_solib when GDB discards its shared library
6249 list. See clear_solib for more information. */
6250 if (exec_bfd != NULL
6251 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
6252 return;
6253
876fa593 6254 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 6255 {
2bdf28a0 6256 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 6257 struct breakpoint *b = loc->owner;
cc59ec59 6258
0d381245
VP
6259 if ((loc->loc_type == bp_loc_hardware_breakpoint
6260 || loc->loc_type == bp_loc_software_breakpoint)
6c95b8df 6261 && solib->pspace == loc->pspace
e2dd7057 6262 && !loc->shlib_disabled
508ccb1f
TT
6263 && (b->type == bp_breakpoint
6264 || b->type == bp_jit_event
6265 || b->type == bp_hardware_breakpoint)
e2dd7057 6266 && solib_contains_address_p (solib, loc->address))
84acb35a 6267 {
e2dd7057
PP
6268 loc->shlib_disabled = 1;
6269 /* At this point, we cannot rely on remove_breakpoint
6270 succeeding so we must mark the breakpoint as not inserted
6271 to prevent future errors occurring in remove_breakpoints. */
6272 loc->inserted = 0;
8d3788bd
VP
6273
6274 /* This may cause duplicate notifications for the same breakpoint. */
6275 observer_notify_breakpoint_modified (b);
6276
e2dd7057
PP
6277 if (!disabled_shlib_breaks)
6278 {
6279 target_terminal_ours_for_output ();
3e43a32a
MS
6280 warning (_("Temporarily disabling breakpoints "
6281 "for unloaded shared library \"%s\""),
e2dd7057 6282 solib->so_name);
84acb35a 6283 }
e2dd7057 6284 disabled_shlib_breaks = 1;
84acb35a
JJ
6285 }
6286 }
84acb35a
JJ
6287}
6288
ce78b96d
JB
6289/* FORK & VFORK catchpoints. */
6290
e29a4733
PA
6291/* An instance of this type is used to represent a fork or vfork
6292 catchpoint. It includes a "struct breakpoint" as a kind of base
6293 class; users downcast to "struct breakpoint *" when needed. A
6294 breakpoint is really of this type iff its ops pointer points to
6295 CATCH_FORK_BREAKPOINT_OPS. */
6296
6297struct fork_catchpoint
6298{
6299 /* The base class. */
6300 struct breakpoint base;
6301
6302 /* Process id of a child process whose forking triggered this
6303 catchpoint. This field is only valid immediately after this
6304 catchpoint has triggered. */
6305 ptid_t forked_inferior_pid;
6306};
6307
4a64f543
MS
6308/* Implement the "insert" breakpoint_ops method for fork
6309 catchpoints. */
ce78b96d 6310
77b06cd7
TJB
6311static int
6312insert_catch_fork (struct bp_location *bl)
ce78b96d 6313{
77b06cd7 6314 return target_insert_fork_catchpoint (PIDGET (inferior_ptid));
ce78b96d
JB
6315}
6316
4a64f543
MS
6317/* Implement the "remove" breakpoint_ops method for fork
6318 catchpoints. */
ce78b96d
JB
6319
6320static int
77b06cd7 6321remove_catch_fork (struct bp_location *bl)
ce78b96d
JB
6322{
6323 return target_remove_fork_catchpoint (PIDGET (inferior_ptid));
6324}
6325
6326/* Implement the "breakpoint_hit" breakpoint_ops method for fork
6327 catchpoints. */
6328
6329static int
f1310107
TJB
6330breakpoint_hit_catch_fork (const struct bp_location *bl,
6331 struct address_space *aspace, CORE_ADDR bp_addr)
ce78b96d 6332{
e29a4733
PA
6333 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
6334
6335 return inferior_has_forked (inferior_ptid, &c->forked_inferior_pid);
ce78b96d
JB
6336}
6337
4a64f543
MS
6338/* Implement the "print_it" breakpoint_ops method for fork
6339 catchpoints. */
ce78b96d
JB
6340
6341static enum print_stop_action
6342print_it_catch_fork (struct breakpoint *b)
6343{
e29a4733
PA
6344 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
6345
ce78b96d
JB
6346 annotate_catchpoint (b->number);
6347 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
e29a4733 6348 b->number, ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
6349 return PRINT_SRC_AND_LOC;
6350}
6351
4a64f543
MS
6352/* Implement the "print_one" breakpoint_ops method for fork
6353 catchpoints. */
ce78b96d
JB
6354
6355static void
a6d9a66e 6356print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 6357{
e29a4733 6358 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d
TT
6359 struct value_print_options opts;
6360
6361 get_user_print_options (&opts);
6362
4a64f543
MS
6363 /* Field 4, the address, is omitted (which makes the columns not
6364 line up too nicely with the headers, but the effect is relatively
6365 readable). */
79a45b7d 6366 if (opts.addressprint)
ce78b96d
JB
6367 ui_out_field_skip (uiout, "addr");
6368 annotate_field (5);
6369 ui_out_text (uiout, "fork");
e29a4733 6370 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
6371 {
6372 ui_out_text (uiout, ", process ");
6373 ui_out_field_int (uiout, "what",
e29a4733 6374 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
6375 ui_out_spaces (uiout, 1);
6376 }
6377}
6378
6379/* Implement the "print_mention" breakpoint_ops method for fork
6380 catchpoints. */
6381
6382static void
6383print_mention_catch_fork (struct breakpoint *b)
6384{
6385 printf_filtered (_("Catchpoint %d (fork)"), b->number);
6386}
6387
6149aea9
PA
6388/* Implement the "print_recreate" breakpoint_ops method for fork
6389 catchpoints. */
6390
6391static void
6392print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
6393{
6394 fprintf_unfiltered (fp, "catch fork");
6395}
6396
ce78b96d
JB
6397/* The breakpoint_ops structure to be used in fork catchpoints. */
6398
6399static struct breakpoint_ops catch_fork_breakpoint_ops =
6400{
be5c67c1 6401 NULL, /* dtor */
28010a5d
PA
6402 NULL, /* allocate_location */
6403 NULL, /* re_set */
ce78b96d
JB
6404 insert_catch_fork,
6405 remove_catch_fork,
6406 breakpoint_hit_catch_fork,
28010a5d 6407 NULL, /* check_status */
e09342b5 6408 NULL, /* resources_needed */
9c06b0b4 6409 NULL, /* works_in_software_mode */
ce78b96d
JB
6410 print_it_catch_fork,
6411 print_one_catch_fork,
f1310107 6412 NULL, /* print_one_detail */
6149aea9
PA
6413 print_mention_catch_fork,
6414 print_recreate_catch_fork
ce78b96d
JB
6415};
6416
4a64f543
MS
6417/* Implement the "insert" breakpoint_ops method for vfork
6418 catchpoints. */
ce78b96d 6419
77b06cd7
TJB
6420static int
6421insert_catch_vfork (struct bp_location *bl)
ce78b96d 6422{
77b06cd7 6423 return target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
ce78b96d
JB
6424}
6425
4a64f543
MS
6426/* Implement the "remove" breakpoint_ops method for vfork
6427 catchpoints. */
ce78b96d
JB
6428
6429static int
77b06cd7 6430remove_catch_vfork (struct bp_location *bl)
ce78b96d
JB
6431{
6432 return target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
6433}
6434
6435/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
6436 catchpoints. */
6437
6438static int
f1310107
TJB
6439breakpoint_hit_catch_vfork (const struct bp_location *bl,
6440 struct address_space *aspace, CORE_ADDR bp_addr)
ce78b96d 6441{
e29a4733
PA
6442 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
6443
6444 return inferior_has_vforked (inferior_ptid, &c->forked_inferior_pid);
ce78b96d
JB
6445}
6446
4a64f543
MS
6447/* Implement the "print_it" breakpoint_ops method for vfork
6448 catchpoints. */
ce78b96d
JB
6449
6450static enum print_stop_action
6451print_it_catch_vfork (struct breakpoint *b)
6452{
e29a4733
PA
6453 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
6454
ce78b96d
JB
6455 annotate_catchpoint (b->number);
6456 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
e29a4733 6457 b->number, ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
6458 return PRINT_SRC_AND_LOC;
6459}
6460
4a64f543
MS
6461/* Implement the "print_one" breakpoint_ops method for vfork
6462 catchpoints. */
ce78b96d
JB
6463
6464static void
a6d9a66e 6465print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 6466{
e29a4733 6467 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d
TT
6468 struct value_print_options opts;
6469
6470 get_user_print_options (&opts);
4a64f543
MS
6471 /* Field 4, the address, is omitted (which makes the columns not
6472 line up too nicely with the headers, but the effect is relatively
6473 readable). */
79a45b7d 6474 if (opts.addressprint)
ce78b96d
JB
6475 ui_out_field_skip (uiout, "addr");
6476 annotate_field (5);
6477 ui_out_text (uiout, "vfork");
e29a4733 6478 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
6479 {
6480 ui_out_text (uiout, ", process ");
6481 ui_out_field_int (uiout, "what",
e29a4733 6482 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
6483 ui_out_spaces (uiout, 1);
6484 }
6485}
6486
6487/* Implement the "print_mention" breakpoint_ops method for vfork
6488 catchpoints. */
6489
6490static void
6491print_mention_catch_vfork (struct breakpoint *b)
6492{
6493 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
6494}
6495
6149aea9
PA
6496/* Implement the "print_recreate" breakpoint_ops method for vfork
6497 catchpoints. */
6498
6499static void
6500print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
6501{
6502 fprintf_unfiltered (fp, "catch vfork");
6503}
6504
ce78b96d
JB
6505/* The breakpoint_ops structure to be used in vfork catchpoints. */
6506
6507static struct breakpoint_ops catch_vfork_breakpoint_ops =
6508{
be5c67c1 6509 NULL, /* dtor */
28010a5d
PA
6510 NULL, /* allocate_location */
6511 NULL, /* re_set */
ce78b96d
JB
6512 insert_catch_vfork,
6513 remove_catch_vfork,
6514 breakpoint_hit_catch_vfork,
28010a5d 6515 NULL, /* check_status */
e09342b5 6516 NULL, /* resources_needed */
9c06b0b4 6517 NULL, /* works_in_software_mode */
ce78b96d
JB
6518 print_it_catch_vfork,
6519 print_one_catch_vfork,
f1310107 6520 NULL, /* print_one_detail */
6149aea9
PA
6521 print_mention_catch_vfork,
6522 print_recreate_catch_vfork
ce78b96d
JB
6523};
6524
be5c67c1
PA
6525/* An instance of this type is used to represent a syscall catchpoint.
6526 It includes a "struct breakpoint" as a kind of base class; users
6527 downcast to "struct breakpoint *" when needed. A breakpoint is
6528 really of this type iff its ops pointer points to
6529 CATCH_SYSCALL_BREAKPOINT_OPS. */
6530
6531struct syscall_catchpoint
6532{
6533 /* The base class. */
6534 struct breakpoint base;
6535
6536 /* Syscall numbers used for the 'catch syscall' feature. If no
6537 syscall has been specified for filtering, its value is NULL.
6538 Otherwise, it holds a list of all syscalls to be caught. The
6539 list elements are allocated with xmalloc. */
6540 VEC(int) *syscalls_to_be_caught;
6541};
6542
6543/* Implement the "dtor" breakpoint_ops method for syscall
6544 catchpoints. */
6545
6546static void
6547dtor_catch_syscall (struct breakpoint *b)
6548{
6549 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
6550
6551 VEC_free (int, c->syscalls_to_be_caught);
6552}
6553
a96d9b2e
SDJ
6554/* Implement the "insert" breakpoint_ops method for syscall
6555 catchpoints. */
6556
77b06cd7
TJB
6557static int
6558insert_catch_syscall (struct bp_location *bl)
a96d9b2e 6559{
be5c67c1 6560 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e
SDJ
6561 struct inferior *inf = current_inferior ();
6562
6563 ++inf->total_syscalls_count;
be5c67c1 6564 if (!c->syscalls_to_be_caught)
a96d9b2e
SDJ
6565 ++inf->any_syscall_count;
6566 else
6567 {
6568 int i, iter;
cc59ec59 6569
a96d9b2e 6570 for (i = 0;
be5c67c1 6571 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6572 i++)
6573 {
6574 int elem;
cc59ec59 6575
a96d9b2e
SDJ
6576 if (iter >= VEC_length (int, inf->syscalls_counts))
6577 {
6578 int old_size = VEC_length (int, inf->syscalls_counts);
3e43a32a
MS
6579 uintptr_t vec_addr_offset
6580 = old_size * ((uintptr_t) sizeof (int));
a96d9b2e
SDJ
6581 uintptr_t vec_addr;
6582 VEC_safe_grow (int, inf->syscalls_counts, iter + 1);
6583 vec_addr = (uintptr_t) VEC_address (int, inf->syscalls_counts) +
6584 vec_addr_offset;
6585 memset ((void *) vec_addr, 0,
6586 (iter + 1 - old_size) * sizeof (int));
6587 }
6588 elem = VEC_index (int, inf->syscalls_counts, iter);
6589 VEC_replace (int, inf->syscalls_counts, iter, ++elem);
6590 }
6591 }
6592
77b06cd7
TJB
6593 return target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6594 inf->total_syscalls_count != 0,
6595 inf->any_syscall_count,
6596 VEC_length (int, inf->syscalls_counts),
6597 VEC_address (int, inf->syscalls_counts));
a96d9b2e
SDJ
6598}
6599
6600/* Implement the "remove" breakpoint_ops method for syscall
6601 catchpoints. */
6602
6603static int
77b06cd7 6604remove_catch_syscall (struct bp_location *bl)
a96d9b2e 6605{
be5c67c1 6606 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e
SDJ
6607 struct inferior *inf = current_inferior ();
6608
6609 --inf->total_syscalls_count;
be5c67c1 6610 if (!c->syscalls_to_be_caught)
a96d9b2e
SDJ
6611 --inf->any_syscall_count;
6612 else
6613 {
6614 int i, iter;
cc59ec59 6615
a96d9b2e 6616 for (i = 0;
be5c67c1 6617 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6618 i++)
6619 {
6620 int elem;
6621 if (iter >= VEC_length (int, inf->syscalls_counts))
6622 /* Shouldn't happen. */
6623 continue;
6624 elem = VEC_index (int, inf->syscalls_counts, iter);
6625 VEC_replace (int, inf->syscalls_counts, iter, --elem);
6626 }
6627 }
6628
6629 return target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6630 inf->total_syscalls_count != 0,
6631 inf->any_syscall_count,
6632 VEC_length (int, inf->syscalls_counts),
3e43a32a
MS
6633 VEC_address (int,
6634 inf->syscalls_counts));
a96d9b2e
SDJ
6635}
6636
6637/* Implement the "breakpoint_hit" breakpoint_ops method for syscall
6638 catchpoints. */
6639
6640static int
f1310107
TJB
6641breakpoint_hit_catch_syscall (const struct bp_location *bl,
6642 struct address_space *aspace, CORE_ADDR bp_addr)
a96d9b2e 6643{
4a64f543
MS
6644 /* We must check if we are catching specific syscalls in this
6645 breakpoint. If we are, then we must guarantee that the called
6646 syscall is the same syscall we are catching. */
a96d9b2e 6647 int syscall_number = 0;
be5c67c1
PA
6648 const struct syscall_catchpoint *c
6649 = (const struct syscall_catchpoint *) bl->owner;
a96d9b2e
SDJ
6650
6651 if (!inferior_has_called_syscall (inferior_ptid, &syscall_number))
6652 return 0;
6653
6654 /* Now, checking if the syscall is the same. */
be5c67c1 6655 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
6656 {
6657 int i, iter;
cc59ec59 6658
a96d9b2e 6659 for (i = 0;
be5c67c1 6660 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6661 i++)
6662 if (syscall_number == iter)
6663 break;
6664 /* Not the same. */
6665 if (!iter)
6666 return 0;
6667 }
6668
6669 return 1;
6670}
6671
6672/* Implement the "print_it" breakpoint_ops method for syscall
6673 catchpoints. */
6674
6675static enum print_stop_action
6676print_it_catch_syscall (struct breakpoint *b)
6677{
6678 /* These are needed because we want to know in which state a
6679 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
6680 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
6681 must print "called syscall" or "returned from syscall". */
6682 ptid_t ptid;
6683 struct target_waitstatus last;
6684 struct syscall s;
6685 struct cleanup *old_chain;
6686 char *syscall_id;
6687
6688 get_last_target_status (&ptid, &last);
6689
6690 get_syscall_by_number (last.value.syscall_number, &s);
6691
6692 annotate_catchpoint (b->number);
6693
6694 if (s.name == NULL)
6695 syscall_id = xstrprintf ("%d", last.value.syscall_number);
6696 else
6697 syscall_id = xstrprintf ("'%s'", s.name);
6698
6699 old_chain = make_cleanup (xfree, syscall_id);
6700
6701 if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY)
6702 printf_filtered (_("\nCatchpoint %d (call to syscall %s), "),
6703 b->number, syscall_id);
6704 else if (last.kind == TARGET_WAITKIND_SYSCALL_RETURN)
6705 printf_filtered (_("\nCatchpoint %d (returned from syscall %s), "),
6706 b->number, syscall_id);
6707
6708 do_cleanups (old_chain);
6709
6710 return PRINT_SRC_AND_LOC;
6711}
6712
6713/* Implement the "print_one" breakpoint_ops method for syscall
6714 catchpoints. */
6715
6716static void
6717print_one_catch_syscall (struct breakpoint *b,
f1310107 6718 struct bp_location **last_loc)
a96d9b2e 6719{
be5c67c1 6720 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
a96d9b2e
SDJ
6721 struct value_print_options opts;
6722
6723 get_user_print_options (&opts);
4a64f543
MS
6724 /* Field 4, the address, is omitted (which makes the columns not
6725 line up too nicely with the headers, but the effect is relatively
6726 readable). */
a96d9b2e
SDJ
6727 if (opts.addressprint)
6728 ui_out_field_skip (uiout, "addr");
6729 annotate_field (5);
6730
be5c67c1
PA
6731 if (c->syscalls_to_be_caught
6732 && VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
6733 ui_out_text (uiout, "syscalls \"");
6734 else
6735 ui_out_text (uiout, "syscall \"");
6736
be5c67c1 6737 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
6738 {
6739 int i, iter;
6740 char *text = xstrprintf ("%s", "");
cc59ec59 6741
a96d9b2e 6742 for (i = 0;
be5c67c1 6743 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6744 i++)
6745 {
6746 char *x = text;
6747 struct syscall s;
6748 get_syscall_by_number (iter, &s);
6749
6750 if (s.name != NULL)
6751 text = xstrprintf ("%s%s, ", text, s.name);
6752 else
6753 text = xstrprintf ("%s%d, ", text, iter);
6754
6755 /* We have to xfree the last 'text' (now stored at 'x')
6756 because xstrprintf dinamically allocates new space for it
6757 on every call. */
6758 xfree (x);
6759 }
6760 /* Remove the last comma. */
6761 text[strlen (text) - 2] = '\0';
6762 ui_out_field_string (uiout, "what", text);
6763 }
6764 else
6765 ui_out_field_string (uiout, "what", "<any syscall>");
6766 ui_out_text (uiout, "\" ");
6767}
6768
6769/* Implement the "print_mention" breakpoint_ops method for syscall
6770 catchpoints. */
6771
6772static void
6773print_mention_catch_syscall (struct breakpoint *b)
6774{
be5c67c1
PA
6775 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
6776
6777 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
6778 {
6779 int i, iter;
6780
be5c67c1 6781 if (VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
6782 printf_filtered (_("Catchpoint %d (syscalls"), b->number);
6783 else
6784 printf_filtered (_("Catchpoint %d (syscall"), b->number);
6785
6786 for (i = 0;
be5c67c1 6787 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6788 i++)
6789 {
6790 struct syscall s;
6791 get_syscall_by_number (iter, &s);
6792
6793 if (s.name)
6794 printf_filtered (" '%s' [%d]", s.name, s.number);
6795 else
6796 printf_filtered (" %d", s.number);
6797 }
6798 printf_filtered (")");
6799 }
6800 else
6801 printf_filtered (_("Catchpoint %d (any syscall)"),
6802 b->number);
6803}
6804
6149aea9
PA
6805/* Implement the "print_recreate" breakpoint_ops method for syscall
6806 catchpoints. */
6807
6808static void
6809print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp)
6810{
be5c67c1
PA
6811 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
6812
6149aea9
PA
6813 fprintf_unfiltered (fp, "catch syscall");
6814
be5c67c1 6815 if (c->syscalls_to_be_caught)
6149aea9
PA
6816 {
6817 int i, iter;
6818
6819 for (i = 0;
be5c67c1 6820 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
6149aea9
PA
6821 i++)
6822 {
6823 struct syscall s;
6824
6825 get_syscall_by_number (iter, &s);
6826 if (s.name)
6827 fprintf_unfiltered (fp, " %s", s.name);
6828 else
6829 fprintf_unfiltered (fp, " %d", s.number);
6830 }
6831 }
6832}
6833
a96d9b2e
SDJ
6834/* The breakpoint_ops structure to be used in syscall catchpoints. */
6835
6836static struct breakpoint_ops catch_syscall_breakpoint_ops =
6837{
be5c67c1 6838 dtor_catch_syscall,
28010a5d
PA
6839 NULL, /* allocate_location */
6840 NULL, /* re_set */
a96d9b2e
SDJ
6841 insert_catch_syscall,
6842 remove_catch_syscall,
6843 breakpoint_hit_catch_syscall,
28010a5d 6844 NULL, /* check_status */
e09342b5 6845 NULL, /* resources_needed */
9c06b0b4 6846 NULL, /* works_in_software_mode */
a96d9b2e
SDJ
6847 print_it_catch_syscall,
6848 print_one_catch_syscall,
f1310107 6849 NULL, /* print_one_detail */
6149aea9
PA
6850 print_mention_catch_syscall,
6851 print_recreate_catch_syscall
a96d9b2e
SDJ
6852};
6853
6854/* Returns non-zero if 'b' is a syscall catchpoint. */
6855
6856static int
6857syscall_catchpoint_p (struct breakpoint *b)
6858{
6859 return (b->ops == &catch_syscall_breakpoint_ops);
6860}
6861
346774a9
PA
6862/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
6863 is non-zero, then make the breakpoint temporary. If COND_STRING is
6864 not NULL, then store it in the breakpoint. OPS, if not NULL, is
6865 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 6866
346774a9
PA
6867static void
6868init_catchpoint (struct breakpoint *b,
6869 struct gdbarch *gdbarch, int tempflag,
6870 char *cond_string,
6871 struct breakpoint_ops *ops)
c906108c 6872{
c5aa993b 6873 struct symtab_and_line sal;
346774a9 6874
fe39c653 6875 init_sal (&sal);
6c95b8df 6876 sal.pspace = current_program_space;
c5aa993b 6877
28010a5d 6878 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 6879
1b36a34b 6880 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 6881 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
6882}
6883
28010a5d
PA
6884void
6885install_breakpoint (struct breakpoint *b)
c56053d2
PA
6886{
6887 add_to_breakpoint_chain (b);
6888 set_breakpoint_count (breakpoint_count + 1);
6889 b->number = breakpoint_count;
6890 mention (b);
6891 observer_notify_breakpoint_created (b);
6892 update_global_location_list (1);
6893}
6894
9b70b993 6895static void
a6d9a66e
UW
6896create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
6897 int tempflag, char *cond_string,
ce78b96d 6898 struct breakpoint_ops *ops)
c906108c 6899{
e29a4733 6900 struct fork_catchpoint *c = XNEW (struct fork_catchpoint);
ce78b96d 6901
e29a4733
PA
6902 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
6903
6904 c->forked_inferior_pid = null_ptid;
6905
28010a5d 6906 install_breakpoint (&c->base);
c906108c
SS
6907}
6908
fe798b75
JB
6909/* Exec catchpoints. */
6910
b4d90040
PA
6911/* An instance of this type is used to represent an exec catchpoint.
6912 It includes a "struct breakpoint" as a kind of base class; users
6913 downcast to "struct breakpoint *" when needed. A breakpoint is
6914 really of this type iff its ops pointer points to
6915 CATCH_EXEC_BREAKPOINT_OPS. */
6916
6917struct exec_catchpoint
6918{
6919 /* The base class. */
6920 struct breakpoint base;
6921
6922 /* Filename of a program whose exec triggered this catchpoint.
6923 This field is only valid immediately after this catchpoint has
6924 triggered. */
6925 char *exec_pathname;
6926};
6927
6928/* Implement the "dtor" breakpoint_ops method for exec
6929 catchpoints. */
6930
6931static void
6932dtor_catch_exec (struct breakpoint *b)
6933{
6934 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
6935
6936 xfree (c->exec_pathname);
6937}
6938
77b06cd7
TJB
6939static int
6940insert_catch_exec (struct bp_location *bl)
c906108c 6941{
77b06cd7 6942 return target_insert_exec_catchpoint (PIDGET (inferior_ptid));
fe798b75 6943}
c906108c 6944
fe798b75 6945static int
77b06cd7 6946remove_catch_exec (struct bp_location *bl)
fe798b75
JB
6947{
6948 return target_remove_exec_catchpoint (PIDGET (inferior_ptid));
6949}
c906108c 6950
fe798b75 6951static int
f1310107
TJB
6952breakpoint_hit_catch_exec (const struct bp_location *bl,
6953 struct address_space *aspace, CORE_ADDR bp_addr)
fe798b75 6954{
b4d90040
PA
6955 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
6956
6957 return inferior_has_execd (inferior_ptid, &c->exec_pathname);
fe798b75 6958}
c906108c 6959
fe798b75
JB
6960static enum print_stop_action
6961print_it_catch_exec (struct breakpoint *b)
6962{
b4d90040
PA
6963 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
6964
fe798b75
JB
6965 annotate_catchpoint (b->number);
6966 printf_filtered (_("\nCatchpoint %d (exec'd %s), "), b->number,
b4d90040 6967 c->exec_pathname);
fe798b75 6968 return PRINT_SRC_AND_LOC;
c906108c
SS
6969}
6970
fe798b75 6971static void
a6d9a66e 6972print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 6973{
b4d90040 6974 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75
JB
6975 struct value_print_options opts;
6976
6977 get_user_print_options (&opts);
6978
6979 /* Field 4, the address, is omitted (which makes the columns
6980 not line up too nicely with the headers, but the effect
6981 is relatively readable). */
6982 if (opts.addressprint)
6983 ui_out_field_skip (uiout, "addr");
6984 annotate_field (5);
6985 ui_out_text (uiout, "exec");
b4d90040 6986 if (c->exec_pathname != NULL)
fe798b75
JB
6987 {
6988 ui_out_text (uiout, ", program \"");
b4d90040 6989 ui_out_field_string (uiout, "what", c->exec_pathname);
fe798b75
JB
6990 ui_out_text (uiout, "\" ");
6991 }
6992}
6993
6994static void
6995print_mention_catch_exec (struct breakpoint *b)
6996{
6997 printf_filtered (_("Catchpoint %d (exec)"), b->number);
6998}
6999
6149aea9
PA
7000/* Implement the "print_recreate" breakpoint_ops method for exec
7001 catchpoints. */
7002
7003static void
7004print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
7005{
7006 fprintf_unfiltered (fp, "catch exec");
7007}
7008
fe798b75
JB
7009static struct breakpoint_ops catch_exec_breakpoint_ops =
7010{
b4d90040 7011 dtor_catch_exec,
28010a5d
PA
7012 NULL, /* allocate_location */
7013 NULL, /* re_set */
fe798b75
JB
7014 insert_catch_exec,
7015 remove_catch_exec,
7016 breakpoint_hit_catch_exec,
28010a5d 7017 NULL, /* check_status */
e09342b5 7018 NULL, /* resources_needed */
9c06b0b4 7019 NULL, /* works_in_software_mode */
fe798b75
JB
7020 print_it_catch_exec,
7021 print_one_catch_exec,
f1310107 7022 NULL, /* print_one_detail */
6149aea9
PA
7023 print_mention_catch_exec,
7024 print_recreate_catch_exec
fe798b75
JB
7025};
7026
a96d9b2e
SDJ
7027static void
7028create_syscall_event_catchpoint (int tempflag, VEC(int) *filter,
7029 struct breakpoint_ops *ops)
7030{
be5c67c1 7031 struct syscall_catchpoint *c;
a96d9b2e 7032 struct gdbarch *gdbarch = get_current_arch ();
a96d9b2e 7033
be5c67c1
PA
7034 c = XNEW (struct syscall_catchpoint);
7035 init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops);
7036 c->syscalls_to_be_caught = filter;
a96d9b2e 7037
28010a5d 7038 install_breakpoint (&c->base);
a96d9b2e
SDJ
7039}
7040
c906108c 7041static int
fba45db2 7042hw_breakpoint_used_count (void)
c906108c 7043{
c906108c 7044 int i = 0;
f1310107
TJB
7045 struct breakpoint *b;
7046 struct bp_location *bl;
c906108c
SS
7047
7048 ALL_BREAKPOINTS (b)
c5aa993b 7049 {
d6b74ac4 7050 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
7051 for (bl = b->loc; bl; bl = bl->next)
7052 {
7053 /* Special types of hardware breakpoints may use more than
7054 one register. */
7055 if (b->ops && b->ops->resources_needed)
7056 i += b->ops->resources_needed (bl);
7057 else
7058 i++;
7059 }
c5aa993b 7060 }
c906108c
SS
7061
7062 return i;
7063}
7064
7065static int
fba45db2 7066hw_watchpoint_used_count (enum bptype type, int *other_type_used)
c906108c 7067{
c906108c 7068 int i = 0;
e09342b5
TJB
7069 struct breakpoint *b;
7070 struct bp_location *bl;
c906108c
SS
7071
7072 *other_type_used = 0;
7073 ALL_BREAKPOINTS (b)
e09342b5
TJB
7074 {
7075 if (!breakpoint_enabled (b))
7076 continue;
7077
c5aa993b 7078 if (b->type == type)
e09342b5
TJB
7079 for (bl = b->loc; bl; bl = bl->next)
7080 {
7081 /* Special types of hardware watchpoints may use more than
7082 one register. */
7083 if (b->ops && b->ops->resources_needed)
7084 i += b->ops->resources_needed (bl);
7085 else
7086 i++;
7087 }
cc60f2e3 7088 else if (is_hardware_watchpoint (b))
c5aa993b 7089 *other_type_used = 1;
e09342b5
TJB
7090 }
7091
c906108c
SS
7092 return i;
7093}
7094
c906108c 7095void
fba45db2 7096disable_watchpoints_before_interactive_call_start (void)
c906108c 7097{
c5aa993b 7098 struct breakpoint *b;
c906108c
SS
7099
7100 ALL_BREAKPOINTS (b)
c5aa993b 7101 {
cc60f2e3 7102 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 7103 {
b5de0fa7 7104 b->enable_state = bp_call_disabled;
b60e7edf 7105 update_global_location_list (0);
c5aa993b
JM
7106 }
7107 }
c906108c
SS
7108}
7109
7110void
fba45db2 7111enable_watchpoints_after_interactive_call_stop (void)
c906108c 7112{
c5aa993b 7113 struct breakpoint *b;
c906108c
SS
7114
7115 ALL_BREAKPOINTS (b)
c5aa993b 7116 {
cc60f2e3 7117 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 7118 {
b5de0fa7 7119 b->enable_state = bp_enabled;
b60e7edf 7120 update_global_location_list (1);
c5aa993b
JM
7121 }
7122 }
c906108c
SS
7123}
7124
8bea4e01
UW
7125void
7126disable_breakpoints_before_startup (void)
7127{
7128 struct breakpoint *b;
7129 int found = 0;
7130
7131 ALL_BREAKPOINTS (b)
7132 {
6c95b8df
PA
7133 if (b->pspace != current_program_space)
7134 continue;
7135
8bea4e01
UW
7136 if ((b->type == bp_breakpoint
7137 || b->type == bp_hardware_breakpoint)
7138 && breakpoint_enabled (b))
7139 {
7140 b->enable_state = bp_startup_disabled;
7141 found = 1;
7142 }
7143 }
7144
7145 if (found)
7146 update_global_location_list (0);
7147
6c95b8df 7148 current_program_space->executing_startup = 1;
8bea4e01
UW
7149}
7150
7151void
7152enable_breakpoints_after_startup (void)
7153{
7154 struct breakpoint *b;
7155 int found = 0;
7156
6c95b8df 7157 current_program_space->executing_startup = 0;
8bea4e01
UW
7158
7159 ALL_BREAKPOINTS (b)
7160 {
6c95b8df
PA
7161 if (b->pspace != current_program_space)
7162 continue;
7163
8bea4e01
UW
7164 if ((b->type == bp_breakpoint
7165 || b->type == bp_hardware_breakpoint)
7166 && b->enable_state == bp_startup_disabled)
7167 {
7168 b->enable_state = bp_enabled;
7169 found = 1;
7170 }
7171 }
7172
7173 if (found)
7174 breakpoint_re_set ();
7175}
7176
c906108c
SS
7177
7178/* Set a breakpoint that will evaporate an end of command
7179 at address specified by SAL.
7180 Restrict it to frame FRAME if FRAME is nonzero. */
7181
7182struct breakpoint *
a6d9a66e
UW
7183set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
7184 struct frame_id frame_id, enum bptype type)
c906108c 7185{
52f0bd74 7186 struct breakpoint *b;
edb3359d
DJ
7187
7188 /* If FRAME_ID is valid, it should be a real frame, not an inlined
7189 one. */
7190 gdb_assert (!frame_id_inlined_p (frame_id));
7191
a6d9a66e 7192 b = set_raw_breakpoint (gdbarch, sal, type);
b5de0fa7
EZ
7193 b->enable_state = bp_enabled;
7194 b->disposition = disp_donttouch;
818dd999 7195 b->frame_id = frame_id;
c906108c 7196
4a64f543
MS
7197 /* If we're debugging a multi-threaded program, then we want
7198 momentary breakpoints to be active in only a single thread of
7199 control. */
39f77062
KB
7200 if (in_thread_list (inferior_ptid))
7201 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 7202
b60e7edf 7203 update_global_location_list_nothrow (1);
74960c60 7204
c906108c
SS
7205 return b;
7206}
611c83ae 7207
e58b0e63
PA
7208/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
7209 ORIG is NULL. */
7210
7211struct breakpoint *
7212clone_momentary_breakpoint (struct breakpoint *orig)
7213{
7214 struct breakpoint *copy;
7215
7216 /* If there's nothing to clone, then return nothing. */
7217 if (orig == NULL)
7218 return NULL;
7219
a6d9a66e 7220 copy = set_raw_breakpoint_without_location (orig->gdbarch, orig->type);
e58b0e63 7221 copy->loc = allocate_bp_location (copy);
0e30163f 7222 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 7223
a6d9a66e 7224 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
7225 copy->loc->requested_address = orig->loc->requested_address;
7226 copy->loc->address = orig->loc->address;
7227 copy->loc->section = orig->loc->section;
6c95b8df 7228 copy->loc->pspace = orig->loc->pspace;
e58b0e63
PA
7229
7230 if (orig->source_file == NULL)
7231 copy->source_file = NULL;
7232 else
7233 copy->source_file = xstrdup (orig->source_file);
7234
7235 copy->line_number = orig->line_number;
7236 copy->frame_id = orig->frame_id;
7237 copy->thread = orig->thread;
6c95b8df 7238 copy->pspace = orig->pspace;
e58b0e63
PA
7239
7240 copy->enable_state = bp_enabled;
7241 copy->disposition = disp_donttouch;
7242 copy->number = internal_breakpoint_number--;
7243
7244 update_global_location_list_nothrow (0);
7245 return copy;
7246}
7247
611c83ae 7248struct breakpoint *
a6d9a66e
UW
7249set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
7250 enum bptype type)
611c83ae
PA
7251{
7252 struct symtab_and_line sal;
7253
7254 sal = find_pc_line (pc, 0);
7255 sal.pc = pc;
7256 sal.section = find_pc_overlay (pc);
7257 sal.explicit_pc = 1;
7258
a6d9a66e 7259 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 7260}
c906108c 7261\f
c5aa993b 7262
c906108c
SS
7263/* Tell the user we have just set a breakpoint B. */
7264
7265static void
fba45db2 7266mention (struct breakpoint *b)
c906108c
SS
7267{
7268 int say_where = 0;
fa8a61dc 7269 struct cleanup *ui_out_chain;
79a45b7d
TT
7270 struct value_print_options opts;
7271
7272 get_user_print_options (&opts);
8b93c638 7273
3086aeae
DJ
7274 if (b->ops != NULL && b->ops->print_mention != NULL)
7275 b->ops->print_mention (b);
7276 else
7277 switch (b->type)
7278 {
7279 case bp_none:
3e43a32a
MS
7280 printf_filtered (_("(apparently deleted?) Eventpoint %d: "),
7281 b->number);
3086aeae
DJ
7282 break;
7283 case bp_watchpoint:
7284 ui_out_text (uiout, "Watchpoint ");
7285 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
7286 ui_out_field_int (uiout, "number", b->number);
7287 ui_out_text (uiout, ": ");
fa8a61dc 7288 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7289 do_cleanups (ui_out_chain);
7290 break;
7291 case bp_hardware_watchpoint:
7292 ui_out_text (uiout, "Hardware watchpoint ");
7293 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
7294 ui_out_field_int (uiout, "number", b->number);
7295 ui_out_text (uiout, ": ");
fa8a61dc 7296 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7297 do_cleanups (ui_out_chain);
7298 break;
7299 case bp_read_watchpoint:
7300 ui_out_text (uiout, "Hardware read watchpoint ");
7301 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
7302 ui_out_field_int (uiout, "number", b->number);
7303 ui_out_text (uiout, ": ");
fa8a61dc 7304 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7305 do_cleanups (ui_out_chain);
7306 break;
7307 case bp_access_watchpoint:
7308 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
7309 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
7310 ui_out_field_int (uiout, "number", b->number);
7311 ui_out_text (uiout, ": ");
fa8a61dc 7312 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7313 do_cleanups (ui_out_chain);
7314 break;
7315 case bp_breakpoint:
0e30163f 7316 case bp_gnu_ifunc_resolver:
3086aeae
DJ
7317 if (ui_out_is_mi_like_p (uiout))
7318 {
7319 say_where = 0;
7320 break;
7321 }
2cec12e5
AR
7322 if (b->disposition == disp_del)
7323 printf_filtered (_("Temporary breakpoint"));
7324 else
7325 printf_filtered (_("Breakpoint"));
7326 printf_filtered (_(" %d"), b->number);
0e30163f
JK
7327 if (b->type == bp_gnu_ifunc_resolver)
7328 printf_filtered (_(" at gnu-indirect-function resolver"));
3086aeae
DJ
7329 say_where = 1;
7330 break;
7331 case bp_hardware_breakpoint:
7332 if (ui_out_is_mi_like_p (uiout))
7333 {
7334 say_where = 0;
7335 break;
7336 }
a3f17187 7337 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
3086aeae
DJ
7338 say_where = 1;
7339 break;
1042e4c0
SS
7340 case bp_tracepoint:
7341 if (ui_out_is_mi_like_p (uiout))
7342 {
7343 say_where = 0;
7344 break;
7345 }
7346 printf_filtered (_("Tracepoint"));
7347 printf_filtered (_(" %d"), b->number);
7348 say_where = 1;
7349 break;
7a697b8d
SS
7350 case bp_fast_tracepoint:
7351 if (ui_out_is_mi_like_p (uiout))
7352 {
7353 say_where = 0;
7354 break;
7355 }
7356 printf_filtered (_("Fast tracepoint"));
7357 printf_filtered (_(" %d"), b->number);
7358 say_where = 1;
7359 break;
0fb4aa4b
PA
7360 case bp_static_tracepoint:
7361 if (ui_out_is_mi_like_p (uiout))
7362 {
7363 say_where = 0;
7364 break;
7365 }
7366 printf_filtered (_("Static tracepoint"));
7367 printf_filtered (_(" %d"), b->number);
7368 say_where = 1;
7369 break;
3086aeae
DJ
7370
7371 case bp_until:
7372 case bp_finish:
7373 case bp_longjmp:
7374 case bp_longjmp_resume:
186c406b
TT
7375 case bp_exception:
7376 case bp_exception_resume:
3086aeae 7377 case bp_step_resume:
2c03e5be 7378 case bp_hp_step_resume:
3086aeae 7379 case bp_call_dummy:
aa7d318d 7380 case bp_std_terminate:
3086aeae
DJ
7381 case bp_watchpoint_scope:
7382 case bp_shlib_event:
7383 case bp_thread_event:
7384 case bp_overlay_event:
4efc6507 7385 case bp_jit_event:
0fd8e87f 7386 case bp_longjmp_master:
aa7d318d 7387 case bp_std_terminate_master:
186c406b 7388 case bp_exception_master:
0e30163f 7389 case bp_gnu_ifunc_resolver_return:
3086aeae
DJ
7390 break;
7391 }
c906108c 7392
c906108c
SS
7393 if (say_where)
7394 {
a3f17187
AC
7395 /* i18n: cagney/2005-02-11: Below needs to be merged into a
7396 single string. */
0d381245 7397 if (b->loc == NULL)
c906108c 7398 {
a3f17187 7399 printf_filtered (_(" (%s) pending."), b->addr_string);
0101ce28
JJ
7400 }
7401 else
7402 {
79a45b7d 7403 if (opts.addressprint || b->source_file == NULL)
0101ce28
JJ
7404 {
7405 printf_filtered (" at ");
5af949e3
UW
7406 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
7407 gdb_stdout);
0101ce28
JJ
7408 }
7409 if (b->source_file)
7410 printf_filtered (": file %s, line %d.",
7411 b->source_file, b->line_number);
0d381245
VP
7412
7413 if (b->loc->next)
7414 {
7415 struct bp_location *loc = b->loc;
7416 int n = 0;
7417 for (; loc; loc = loc->next)
7418 ++n;
7419 printf_filtered (" (%d locations)", n);
7420 }
7421
c906108c 7422 }
c906108c 7423 }
9dc5e2a9 7424 if (ui_out_is_mi_like_p (uiout))
fb40c209 7425 return;
c906108c
SS
7426 printf_filtered ("\n");
7427}
c906108c 7428\f
c5aa993b 7429
0d381245 7430static struct bp_location *
39d61571 7431add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
7432 const struct symtab_and_line *sal)
7433{
7434 struct bp_location *loc, **tmp;
7435
39d61571 7436 loc = allocate_bp_location (b);
0d381245
VP
7437 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
7438 ;
7439 *tmp = loc;
a6d9a66e
UW
7440 loc->gdbarch = get_sal_arch (*sal);
7441 if (!loc->gdbarch)
7442 loc->gdbarch = b->gdbarch;
0d381245 7443 loc->requested_address = sal->pc;
a6d9a66e
UW
7444 loc->address = adjust_breakpoint_address (loc->gdbarch,
7445 loc->requested_address, b->type);
6c95b8df
PA
7446 loc->pspace = sal->pspace;
7447 gdb_assert (loc->pspace != NULL);
0d381245
VP
7448 loc->section = sal->section;
7449
0e30163f
JK
7450 set_breakpoint_location_function (loc,
7451 sal->explicit_pc || sal->explicit_line);
0d381245
VP
7452 return loc;
7453}
514f746b
AR
7454\f
7455
7456/* Return 1 if LOC is pointing to a permanent breakpoint,
7457 return 0 otherwise. */
7458
7459static int
7460bp_loc_is_permanent (struct bp_location *loc)
7461{
7462 int len;
7463 CORE_ADDR addr;
7464 const gdb_byte *brk;
7465 gdb_byte *target_mem;
939c61fa
JK
7466 struct cleanup *cleanup;
7467 int retval = 0;
514f746b
AR
7468
7469 gdb_assert (loc != NULL);
7470
7471 addr = loc->address;
a6d9a66e 7472 brk = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len);
514f746b 7473
939c61fa
JK
7474 /* Software breakpoints unsupported? */
7475 if (brk == NULL)
7476 return 0;
7477
514f746b
AR
7478 target_mem = alloca (len);
7479
939c61fa
JK
7480 /* Enable the automatic memory restoration from breakpoints while
7481 we read the memory. Otherwise we could say about our temporary
7482 breakpoints they are permanent. */
6c95b8df
PA
7483 cleanup = save_current_space_and_thread ();
7484
7485 switch_to_program_space_and_thread (loc->pspace);
7486 make_show_memory_breakpoints_cleanup (0);
939c61fa 7487
514f746b
AR
7488 if (target_read_memory (loc->address, target_mem, len) == 0
7489 && memcmp (target_mem, brk, len) == 0)
939c61fa 7490 retval = 1;
514f746b 7491
939c61fa
JK
7492 do_cleanups (cleanup);
7493
7494 return retval;
514f746b
AR
7495}
7496
7497
c3f6f71d 7498
018d34a4
VP
7499/* Create a breakpoint with SAL as location. Use ADDR_STRING
7500 as textual description of the location, and COND_STRING
db107f19 7501 as condition expression. */
018d34a4
VP
7502
7503static void
8cdf0e15
VP
7504create_breakpoint_sal (struct gdbarch *gdbarch,
7505 struct symtabs_and_lines sals, char *addr_string,
7506 char *cond_string,
7507 enum bptype type, enum bpdisp disposition,
7508 int thread, int task, int ignore_count,
84f4c1fe 7509 struct breakpoint_ops *ops, int from_tty,
56435ebe 7510 int enabled, int internal, int display_canonical)
018d34a4 7511{
0d381245
VP
7512 struct breakpoint *b = NULL;
7513 int i;
018d34a4
VP
7514
7515 if (type == bp_hardware_breakpoint)
7516 {
7517 int i = hw_breakpoint_used_count ();
7518 int target_resources_ok =
d92524f1 7519 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
7520 i + 1, 0);
7521 if (target_resources_ok == 0)
7522 error (_("No hardware breakpoint support in the target."));
7523 else if (target_resources_ok < 0)
7524 error (_("Hardware breakpoints used exceeds limit."));
7525 }
7526
6c95b8df
PA
7527 gdb_assert (sals.nelts > 0);
7528
0d381245
VP
7529 for (i = 0; i < sals.nelts; ++i)
7530 {
7531 struct symtab_and_line sal = sals.sals[i];
7532 struct bp_location *loc;
7533
7534 if (from_tty)
5af949e3
UW
7535 {
7536 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
7537 if (!loc_gdbarch)
7538 loc_gdbarch = gdbarch;
7539
7540 describe_other_breakpoints (loc_gdbarch,
6c95b8df 7541 sal.pspace, sal.pc, sal.section, thread);
5af949e3 7542 }
0d381245
VP
7543
7544 if (i == 0)
7545 {
a6d9a66e 7546 b = set_raw_breakpoint (gdbarch, sal, type);
84f4c1fe 7547 set_breakpoint_number (internal, b);
0d381245 7548 b->thread = thread;
4a306c9a 7549 b->task = task;
018d34a4 7550
0d381245
VP
7551 b->cond_string = cond_string;
7552 b->ignore_count = ignore_count;
41447f92 7553 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 7554 b->disposition = disposition;
6c95b8df
PA
7555 b->pspace = sals.sals[0].pspace;
7556
0fb4aa4b
PA
7557 if (type == bp_static_tracepoint)
7558 {
7559 struct static_tracepoint_marker marker;
7560
7561 if (is_marker_spec (addr_string))
7562 {
7563 /* We already know the marker exists, otherwise, we
7564 wouldn't see a sal for it. */
7565 char *p = &addr_string[3];
7566 char *endp;
7567 char *marker_str;
7568 int i;
7569
e9cafbcc 7570 p = skip_spaces (p);
0fb4aa4b 7571
e9cafbcc 7572 endp = skip_to_space (p);
0fb4aa4b
PA
7573
7574 marker_str = savestring (p, endp - p);
7575 b->static_trace_marker_id = marker_str;
7576
3e43a32a
MS
7577 printf_filtered (_("Probed static tracepoint "
7578 "marker \"%s\"\n"),
0fb4aa4b
PA
7579 b->static_trace_marker_id);
7580 }
7581 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
7582 {
7583 b->static_trace_marker_id = xstrdup (marker.str_id);
7584 release_static_tracepoint_marker (&marker);
7585
3e43a32a
MS
7586 printf_filtered (_("Probed static tracepoint "
7587 "marker \"%s\"\n"),
0fb4aa4b
PA
7588 b->static_trace_marker_id);
7589 }
7590 else
3e43a32a
MS
7591 warning (_("Couldn't determine the static "
7592 "tracepoint marker to probe"));
0fb4aa4b
PA
7593 }
7594
6c95b8df 7595 if (enabled && b->pspace->executing_startup
8bea4e01
UW
7596 && (b->type == bp_breakpoint
7597 || b->type == bp_hardware_breakpoint))
7598 b->enable_state = bp_startup_disabled;
7599
0d381245
VP
7600 loc = b->loc;
7601 }
7602 else
018d34a4 7603 {
39d61571 7604 loc = add_location_to_breakpoint (b, &sal);
0d381245
VP
7605 }
7606
514f746b
AR
7607 if (bp_loc_is_permanent (loc))
7608 make_breakpoint_permanent (b);
7609
0d381245
VP
7610 if (b->cond_string)
7611 {
7612 char *arg = b->cond_string;
d32a6982 7613 loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
0d381245 7614 if (*arg)
db107f19 7615 error (_("Garbage %s follows condition"), arg);
018d34a4 7616 }
0d381245 7617 }
018d34a4 7618
56435ebe 7619 b->display_canonical = display_canonical;
018d34a4
VP
7620 if (addr_string)
7621 b->addr_string = addr_string;
7622 else
7623 /* addr_string has to be used or breakpoint_re_set will delete
7624 me. */
5af949e3
UW
7625 b->addr_string
7626 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
018d34a4 7627
604133b5 7628 b->ops = ops;
8d3788bd
VP
7629 /* Do not mention breakpoints with a negative number, but do
7630 notify observers. */
7631 if (!internal)
84f4c1fe 7632 mention (b);
8d3788bd 7633 observer_notify_breakpoint_created (b);
018d34a4
VP
7634}
7635
ed0616c6
VP
7636/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
7637 elements to fill the void space. */
2c0b251b
PA
7638static void
7639remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
ed0616c6
VP
7640{
7641 int i = index_to_remove+1;
7642 int last_index = sal->nelts-1;
7643
7644 for (;i <= last_index; ++i)
7645 sal->sals[i-1] = sal->sals[i];
7646
7647 --(sal->nelts);
7648}
7649
6c95b8df
PA
7650/* If appropriate, obtains all sals that correspond to the same file
7651 and line as SAL, in all program spaces. Users debugging with IDEs,
7652 will want to set a breakpoint at foo.c:line, and not really care
7653 about program spaces. This is done only if SAL does not have
7654 explicit PC and has line and file information. If we got just a
7655 single expanded sal, return the original.
ed0616c6 7656
6c95b8df
PA
7657 Otherwise, if SAL.explicit_line is not set, filter out all sals for
7658 which the name of enclosing function is different from SAL. This
7659 makes sure that if we have breakpoint originally set in template
7660 instantiation, say foo<int>(), we won't expand SAL to locations at
7661 the same line in all existing instantiations of 'foo'. */
ed0616c6 7662
2c0b251b 7663static struct symtabs_and_lines
ed0616c6
VP
7664expand_line_sal_maybe (struct symtab_and_line sal)
7665{
7666 struct symtabs_and_lines expanded;
7667 CORE_ADDR original_pc = sal.pc;
7668 char *original_function = NULL;
7669 int found;
7670 int i;
6c95b8df 7671 struct cleanup *old_chain;
ed0616c6
VP
7672
7673 /* If we have explicit pc, don't expand.
7674 If we have no line number, we can't expand. */
7675 if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
7676 {
7677 expanded.nelts = 1;
7678 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7679 expanded.sals[0] = sal;
7680 return expanded;
7681 }
7682
7683 sal.pc = 0;
6c95b8df
PA
7684
7685 old_chain = save_current_space_and_thread ();
7686
7687 switch_to_program_space_and_thread (sal.pspace);
7688
ed0616c6 7689 find_pc_partial_function (original_pc, &original_function, NULL, NULL);
6c95b8df
PA
7690
7691 /* Note that expand_line_sal visits *all* program spaces. */
ed0616c6 7692 expanded = expand_line_sal (sal);
6c95b8df 7693
ed0616c6
VP
7694 if (expanded.nelts == 1)
7695 {
3dba1c98
JB
7696 /* We had one sal, we got one sal. Return that sal, adjusting it
7697 past the function prologue if necessary. */
ed0616c6
VP
7698 xfree (expanded.sals);
7699 expanded.nelts = 1;
7700 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7701 sal.pc = original_pc;
7702 expanded.sals[0] = sal;
3dba1c98 7703 skip_prologue_sal (&expanded.sals[0]);
6c95b8df 7704 do_cleanups (old_chain);
ed0616c6
VP
7705 return expanded;
7706 }
7707
7708 if (!sal.explicit_line)
7709 {
7710 CORE_ADDR func_addr, func_end;
7711 for (i = 0; i < expanded.nelts; ++i)
7712 {
7713 CORE_ADDR pc = expanded.sals[i].pc;
7714 char *this_function;
6c95b8df
PA
7715
7716 /* We need to switch threads as well since we're about to
7717 read memory. */
7718 switch_to_program_space_and_thread (expanded.sals[i].pspace);
7719
ed0616c6
VP
7720 if (find_pc_partial_function (pc, &this_function,
7721 &func_addr, &func_end))
7722 {
059fb39f
PM
7723 if (this_function
7724 && strcmp (this_function, original_function) != 0)
ed0616c6
VP
7725 {
7726 remove_sal (&expanded, i);
7727 --i;
7728 }
ed0616c6
VP
7729 }
7730 }
7731 }
059acae7
UW
7732
7733 /* Skip the function prologue if necessary. */
7734 for (i = 0; i < expanded.nelts; ++i)
7735 skip_prologue_sal (&expanded.sals[i]);
ed0616c6 7736
6c95b8df
PA
7737 do_cleanups (old_chain);
7738
ed0616c6
VP
7739 if (expanded.nelts <= 1)
7740 {
4a64f543
MS
7741 /* This is un ugly workaround. If we get zero expanded sals
7742 then something is really wrong. Fix that by returning the
7743 original sal. */
7744
ed0616c6
VP
7745 xfree (expanded.sals);
7746 expanded.nelts = 1;
7747 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7748 sal.pc = original_pc;
7749 expanded.sals[0] = sal;
7750 return expanded;
7751 }
7752
7753 if (original_pc)
7754 {
7755 found = 0;
7756 for (i = 0; i < expanded.nelts; ++i)
7757 if (expanded.sals[i].pc == original_pc)
7758 {
7759 found = 1;
7760 break;
7761 }
7762 gdb_assert (found);
7763 }
7764
7765 return expanded;
7766}
7767
018d34a4
VP
7768/* Add SALS.nelts breakpoints to the breakpoint table. For each
7769 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
7770 value. COND_STRING, if not NULL, specified the condition to be
7771 used for all breakpoints. Essentially the only case where
7772 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
7773 function. In that case, it's still not possible to specify
7774 separate conditions for different overloaded functions, so
7775 we take just a single condition string.
7776
c3f6f71d 7777 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 7778 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
7779 array contents). If the function fails (error() is called), the
7780 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 7781 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
7782
7783static void
8cdf0e15 7784create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2
TT
7785 struct symtabs_and_lines sals,
7786 struct linespec_result *canonical,
8cdf0e15
VP
7787 char *cond_string,
7788 enum bptype type, enum bpdisp disposition,
7789 int thread, int task, int ignore_count,
7790 struct breakpoint_ops *ops, int from_tty,
84f4c1fe 7791 int enabled, int internal)
c906108c 7792{
018d34a4 7793 int i;
cc59ec59 7794
018d34a4 7795 for (i = 0; i < sals.nelts; ++i)
c3f6f71d 7796 {
ed0616c6
VP
7797 struct symtabs_and_lines expanded =
7798 expand_line_sal_maybe (sals.sals[i]);
0d381245 7799
7efd8fc2 7800 create_breakpoint_sal (gdbarch, expanded, canonical->canonical[i],
8cdf0e15 7801 cond_string, type, disposition,
84f4c1fe 7802 thread, task, ignore_count, ops,
56435ebe
TT
7803 from_tty, enabled, internal,
7804 canonical->special_display);
c3f6f71d 7805 }
c3f6f71d 7806}
c906108c 7807
9998af43 7808/* Parse ADDRESS which is assumed to be a SAL specification possibly
c3f6f71d 7809 followed by conditionals. On return, SALS contains an array of SAL
4a64f543 7810 addresses found. ADDR_STRING contains a vector of (canonical)
9998af43
TJB
7811 address strings. ADDRESS points to the end of the SAL.
7812
7813 The array and the line spec strings are allocated on the heap, it is
7814 the caller's responsibility to free them. */
c906108c 7815
b9362cc7 7816static void
c3f6f71d
JM
7817parse_breakpoint_sals (char **address,
7818 struct symtabs_and_lines *sals,
58438ac1 7819 struct linespec_result *canonical)
c3f6f71d
JM
7820{
7821 char *addr_start = *address;
cc59ec59 7822
c3f6f71d 7823 /* If no arg given, or if first arg is 'if ', use the default
4a64f543 7824 breakpoint. */
c3f6f71d
JM
7825 if ((*address) == NULL
7826 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c
SS
7827 {
7828 if (default_breakpoint_valid)
7829 {
c3f6f71d 7830 struct symtab_and_line sal;
cc59ec59 7831
4a64f543 7832 init_sal (&sal); /* Initialize to zeroes. */
c3f6f71d 7833 sals->sals = (struct symtab_and_line *)
c906108c
SS
7834 xmalloc (sizeof (struct symtab_and_line));
7835 sal.pc = default_breakpoint_address;
7836 sal.line = default_breakpoint_line;
7837 sal.symtab = default_breakpoint_symtab;
6c95b8df 7838 sal.pspace = default_breakpoint_pspace;
c5aa993b 7839 sal.section = find_pc_overlay (sal.pc);
00903456 7840
4a64f543
MS
7841 /* "break" without arguments is equivalent to "break *PC"
7842 where PC is the default_breakpoint_address. So make sure
7843 to set sal.explicit_pc to prevent GDB from trying to
7844 expand the list of sals to include all other instances
7845 with the same symtab and line. */
00903456
JK
7846 sal.explicit_pc = 1;
7847
c3f6f71d
JM
7848 sals->sals[0] = sal;
7849 sals->nelts = 1;
c906108c
SS
7850 }
7851 else
8a3fe4f8 7852 error (_("No default breakpoint address now."));
c906108c
SS
7853 }
7854 else
7855 {
c906108c 7856 /* Force almost all breakpoints to be in terms of the
4a64f543
MS
7857 current_source_symtab (which is decode_line_1's default).
7858 This should produce the results we want almost all of the
7859 time while leaving default_breakpoint_* alone.
7860
1aeae86e
AF
7861 ObjC: However, don't match an Objective-C method name which
7862 may have a '+' or '-' succeeded by a '[' */
0378c332 7863
c214a6fd 7864 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
0378c332 7865
c906108c 7866 if (default_breakpoint_valid
0378c332 7867 && (!cursal.symtab
1aeae86e
AF
7868 || ((strchr ("+-", (*address)[0]) != NULL)
7869 && ((*address)[1] != '['))))
c3f6f71d 7870 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
58438ac1 7871 default_breakpoint_line, canonical);
c906108c 7872 else
0101ce28 7873 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
58438ac1 7874 canonical);
c906108c 7875 }
4a64f543 7876 /* For any SAL that didn't have a canonical string, fill one in. */
7efd8fc2 7877 if (sals->nelts > 0 && canonical->canonical == NULL)
38a714bb 7878 canonical->canonical = xcalloc (sals->nelts, sizeof (char *));
c3f6f71d 7879 if (addr_start != (*address))
c906108c 7880 {
c3f6f71d 7881 int i;
cc59ec59 7882
c3f6f71d 7883 for (i = 0; i < sals->nelts; i++)
c906108c 7884 {
4a64f543 7885 /* Add the string if not present. */
7efd8fc2
TT
7886 if (canonical->canonical[i] == NULL)
7887 canonical->canonical[i] = savestring (addr_start,
7888 (*address) - addr_start);
c906108c
SS
7889 }
7890 }
c3f6f71d 7891}
c906108c 7892
c906108c 7893
c3f6f71d 7894/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 7895 inserted as a breakpoint. If it can't throw an error. */
c906108c 7896
b9362cc7 7897static void
23e7acfb 7898breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
7899{
7900 int i;
cc59ec59 7901
c3f6f71d 7902 for (i = 0; i < sals->nelts; i++)
ee53e872 7903 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
7904}
7905
7a697b8d
SS
7906/* Fast tracepoints may have restrictions on valid locations. For
7907 instance, a fast tracepoint using a jump instead of a trap will
7908 likely have to overwrite more bytes than a trap would, and so can
7909 only be placed where the instruction is longer than the jump, or a
7910 multi-instruction sequence does not have a jump into the middle of
7911 it, etc. */
7912
7913static void
7914check_fast_tracepoint_sals (struct gdbarch *gdbarch,
7915 struct symtabs_and_lines *sals)
7916{
7917 int i, rslt;
7918 struct symtab_and_line *sal;
7919 char *msg;
7920 struct cleanup *old_chain;
7921
7922 for (i = 0; i < sals->nelts; i++)
7923 {
7924 sal = &sals->sals[i];
7925
7926 rslt = gdbarch_fast_tracepoint_valid_at (gdbarch, sal->pc,
7927 NULL, &msg);
7928 old_chain = make_cleanup (xfree, msg);
7929
7930 if (!rslt)
7931 error (_("May not have a fast tracepoint at 0x%s%s"),
7932 paddress (gdbarch, sal->pc), (msg ? msg : ""));
7933
7934 do_cleanups (old_chain);
7935 }
7936}
7937
018d34a4
VP
7938/* Given TOK, a string specification of condition and thread, as
7939 accepted by the 'break' command, extract the condition
7940 string and thread number and set *COND_STRING and *THREAD.
4a64f543 7941 PC identifies the context at which the condition should be parsed.
018d34a4
VP
7942 If no condition is found, *COND_STRING is set to NULL.
7943 If no thread is found, *THREAD is set to -1. */
7944static void
7945find_condition_and_thread (char *tok, CORE_ADDR pc,
4a306c9a 7946 char **cond_string, int *thread, int *task)
018d34a4
VP
7947{
7948 *cond_string = NULL;
7949 *thread = -1;
7950 while (tok && *tok)
7951 {
7952 char *end_tok;
7953 int toklen;
7954 char *cond_start = NULL;
7955 char *cond_end = NULL;
cc59ec59 7956
e9cafbcc 7957 tok = skip_spaces (tok);
018d34a4 7958
e9cafbcc 7959 end_tok = skip_to_space (tok);
018d34a4
VP
7960
7961 toklen = end_tok - tok;
7962
7963 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
7964 {
f7545552
TT
7965 struct expression *expr;
7966
018d34a4 7967 tok = cond_start = end_tok + 1;
f7545552
TT
7968 expr = parse_exp_1 (&tok, block_for_pc (pc), 0);
7969 xfree (expr);
018d34a4
VP
7970 cond_end = tok;
7971 *cond_string = savestring (cond_start,
7972 cond_end - cond_start);
7973 }
7974 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
7975 {
7976 char *tmptok;
7977
7978 tok = end_tok + 1;
7979 tmptok = tok;
7980 *thread = strtol (tok, &tok, 0);
7981 if (tok == tmptok)
7982 error (_("Junk after thread keyword."));
7983 if (!valid_thread_id (*thread))
7984 error (_("Unknown thread %d."), *thread);
7985 }
4a306c9a
JB
7986 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
7987 {
7988 char *tmptok;
7989
7990 tok = end_tok + 1;
7991 tmptok = tok;
7992 *task = strtol (tok, &tok, 0);
7993 if (tok == tmptok)
7994 error (_("Junk after task keyword."));
7995 if (!valid_task_id (*task))
b6199126 7996 error (_("Unknown task %d."), *task);
4a306c9a 7997 }
018d34a4
VP
7998 else
7999 error (_("Junk at end of arguments."));
8000 }
8001}
8002
0fb4aa4b
PA
8003/* Decode a static tracepoint marker spec. */
8004
8005static struct symtabs_and_lines
8006decode_static_tracepoint_spec (char **arg_p)
8007{
8008 VEC(static_tracepoint_marker_p) *markers = NULL;
8009 struct symtabs_and_lines sals;
8010 struct symtab_and_line sal;
8011 struct symbol *sym;
8012 struct cleanup *old_chain;
8013 char *p = &(*arg_p)[3];
8014 char *endp;
8015 char *marker_str;
8016 int i;
8017
e9cafbcc 8018 p = skip_spaces (p);
0fb4aa4b 8019
e9cafbcc 8020 endp = skip_to_space (p);
0fb4aa4b
PA
8021
8022 marker_str = savestring (p, endp - p);
8023 old_chain = make_cleanup (xfree, marker_str);
8024
8025 markers = target_static_tracepoint_markers_by_strid (marker_str);
8026 if (VEC_empty(static_tracepoint_marker_p, markers))
8027 error (_("No known static tracepoint marker named %s"), marker_str);
8028
8029 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
8030 sals.sals = xmalloc (sizeof *sals.sals * sals.nelts);
8031
8032 for (i = 0; i < sals.nelts; i++)
8033 {
8034 struct static_tracepoint_marker *marker;
8035
8036 marker = VEC_index (static_tracepoint_marker_p, markers, i);
8037
8038 init_sal (&sals.sals[i]);
8039
8040 sals.sals[i] = find_pc_line (marker->address, 0);
8041 sals.sals[i].pc = marker->address;
8042
8043 release_static_tracepoint_marker (marker);
8044 }
8045
8046 do_cleanups (old_chain);
8047
8048 *arg_p = endp;
8049 return sals;
8050}
8051
fd9b8c24
PA
8052/* Set a breakpoint. This function is shared between CLI and MI
8053 functions for setting a breakpoint. This function has two major
8054 modes of operations, selected by the PARSE_CONDITION_AND_THREAD
8055 parameter. If non-zero, the function will parse arg, extracting
4a64f543
MS
8056 breakpoint location, address and thread. Otherwise, ARG is just
8057 the location of breakpoint, with condition and thread specified by
8058 the COND_STRING and THREAD parameters. If INTERNAL is non-zero,
8059 the breakpoint number will be allocated from the internal
8060 breakpoint count. Returns true if any breakpoint was created;
8061 false otherwise. */
0101ce28 8062
8cdf0e15
VP
8063int
8064create_breakpoint (struct gdbarch *gdbarch,
8065 char *arg, char *cond_string, int thread,
8066 int parse_condition_and_thread,
0fb4aa4b 8067 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
8068 int ignore_count,
8069 enum auto_boolean pending_break_support,
8070 struct breakpoint_ops *ops,
84f4c1fe 8071 int from_tty, int enabled, int internal)
c3f6f71d 8072{
b78a6381 8073 volatile struct gdb_exception e;
c3f6f71d 8074 struct symtabs_and_lines sals;
0101ce28 8075 struct symtab_and_line pending_sal;
0101ce28 8076 char *copy_arg;
c3f6f71d 8077 char *addr_start = arg;
7efd8fc2 8078 struct linespec_result canonical;
c3f6f71d 8079 struct cleanup *old_chain;
80c99de1 8080 struct cleanup *bkpt_chain = NULL;
05ff989b 8081 int i;
0101ce28 8082 int pending = 0;
4a306c9a 8083 int task = 0;
86b17b60 8084 int prev_bkpt_count = breakpoint_count;
c3f6f71d 8085
c3f6f71d
JM
8086 sals.sals = NULL;
8087 sals.nelts = 0;
7efd8fc2 8088 init_linespec_result (&canonical);
c3f6f71d 8089
0fb4aa4b
PA
8090 if (type_wanted == bp_static_tracepoint && is_marker_spec (arg))
8091 {
8092 int i;
8093
8094 sals = decode_static_tracepoint_spec (&arg);
8095
8096 copy_arg = savestring (addr_start, arg - addr_start);
38a714bb 8097 canonical.canonical = xcalloc (sals.nelts, sizeof (char *));
0fb4aa4b 8098 for (i = 0; i < sals.nelts; i++)
7efd8fc2 8099 canonical.canonical[i] = xstrdup (copy_arg);
0fb4aa4b
PA
8100 goto done;
8101 }
8102
b78a6381
TT
8103 TRY_CATCH (e, RETURN_MASK_ALL)
8104 {
58438ac1 8105 parse_breakpoint_sals (&arg, &sals, &canonical);
b78a6381 8106 }
0101ce28
JJ
8107
8108 /* If caller is interested in rc value from parse, set value. */
05ff989b 8109 switch (e.reason)
0101ce28 8110 {
05ff989b 8111 case RETURN_QUIT:
98deb0da 8112 throw_exception (e);
05ff989b
AC
8113 case RETURN_ERROR:
8114 switch (e.error)
0101ce28 8115 {
05ff989b 8116 case NOT_FOUND_ERROR:
0101ce28 8117
05ff989b
AC
8118 /* If pending breakpoint support is turned off, throw
8119 error. */
fa8d40ab
JJ
8120
8121 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
8122 throw_exception (e);
8123
8124 exception_print (gdb_stderr, e);
fa8d40ab 8125
05ff989b
AC
8126 /* If pending breakpoint support is auto query and the user
8127 selects no, then simply return the error code. */
059fb39f 8128 if (pending_break_support == AUTO_BOOLEAN_AUTO
3e43a32a
MS
8129 && !nquery (_("Make breakpoint pending on "
8130 "future shared library load? ")))
fd9b8c24 8131 return 0;
fa8d40ab 8132
05ff989b
AC
8133 /* At this point, either the user was queried about setting
8134 a pending breakpoint and selected yes, or pending
8135 breakpoint behavior is on and thus a pending breakpoint
8136 is defaulted on behalf of the user. */
0101ce28 8137 copy_arg = xstrdup (addr_start);
7efd8fc2 8138 canonical.canonical = &copy_arg;
0101ce28
JJ
8139 sals.nelts = 1;
8140 sals.sals = &pending_sal;
8141 pending_sal.pc = 0;
8142 pending = 1;
05ff989b
AC
8143 break;
8144 default:
98deb0da 8145 throw_exception (e);
0101ce28 8146 }
2abae994 8147 break;
05ff989b
AC
8148 default:
8149 if (!sals.nelts)
fd9b8c24 8150 return 0;
0101ce28 8151 }
c3f6f71d 8152
0fb4aa4b
PA
8153 done:
8154
4a64f543 8155 /* Create a chain of things that always need to be cleaned up. */
c3f6f71d
JM
8156 old_chain = make_cleanup (null_cleanup, 0);
8157
0101ce28
JJ
8158 if (!pending)
8159 {
8160 /* Make sure that all storage allocated to SALS gets freed. */
8161 make_cleanup (xfree, sals.sals);
8162
7efd8fc2
TT
8163 /* Cleanup the canonical array but not its contents. */
8164 make_cleanup (xfree, canonical.canonical);
0101ce28 8165 }
c3f6f71d 8166
c3f6f71d
JM
8167 /* ----------------------------- SNIP -----------------------------
8168 Anything added to the cleanup chain beyond this point is assumed
8169 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
8170 then the memory is not reclaimed. */
8171 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 8172
7efd8fc2 8173 /* Mark the contents of the canonical for cleanup. These go on
80c99de1 8174 the bkpt_chain and only occur if the breakpoint create fails. */
c3f6f71d
JM
8175 for (i = 0; i < sals.nelts; i++)
8176 {
7efd8fc2
TT
8177 if (canonical.canonical[i] != NULL)
8178 make_cleanup (xfree, canonical.canonical[i]);
c3f6f71d
JM
8179 }
8180
8181 /* Resolve all line numbers to PC's and verify that the addresses
8182 are ok for the target. */
0101ce28 8183 if (!pending)
23e7acfb 8184 breakpoint_sals_to_pc (&sals);
c3f6f71d 8185
7a697b8d
SS
8186 /* Fast tracepoints may have additional restrictions on location. */
8187 if (type_wanted == bp_fast_tracepoint)
8188 check_fast_tracepoint_sals (gdbarch, &sals);
8189
c3f6f71d
JM
8190 /* Verify that condition can be parsed, before setting any
8191 breakpoints. Allocate a separate condition expression for each
4a64f543 8192 breakpoint. */
0101ce28 8193 if (!pending)
c3f6f71d 8194 {
2f069f6f 8195 if (parse_condition_and_thread)
72b2ff0e
VP
8196 {
8197 /* Here we only parse 'arg' to separate condition
8198 from thread number, so parsing in context of first
8199 sal is OK. When setting the breakpoint we'll
8200 re-parse it in context of each sal. */
8201 cond_string = NULL;
8202 thread = -1;
4a306c9a
JB
8203 find_condition_and_thread (arg, sals.sals[0].pc, &cond_string,
8204 &thread, &task);
72b2ff0e
VP
8205 if (cond_string)
8206 make_cleanup (xfree, cond_string);
8207 }
2f069f6f 8208 else
72b2ff0e
VP
8209 {
8210 /* Create a private copy of condition string. */
8211 if (cond_string)
8212 {
8213 cond_string = xstrdup (cond_string);
8214 make_cleanup (xfree, cond_string);
8215 }
8216 }
0fb4aa4b
PA
8217
8218 /* If the user is creating a static tracepoint by marker id
8219 (strace -m MARKER_ID), then store the sals index, so that
8220 breakpoint_re_set can try to match up which of the newly
8221 found markers corresponds to this one, and, don't try to
8222 expand multiple locations for each sal, given than SALS
8223 already should contain all sals for MARKER_ID. */
8224 if (type_wanted == bp_static_tracepoint
7efd8fc2 8225 && is_marker_spec (canonical.canonical[0]))
0fb4aa4b
PA
8226 {
8227 int i;
8228
8229 for (i = 0; i < sals.nelts; ++i)
8230 {
8231 struct symtabs_and_lines expanded;
8232 struct breakpoint *tp;
8233 struct cleanup *old_chain;
8234
8235 expanded.nelts = 1;
8236 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
8237 expanded.sals[0] = sals.sals[i];
8238 old_chain = make_cleanup (xfree, expanded.sals);
8239
7efd8fc2 8240 create_breakpoint_sal (gdbarch, expanded, canonical.canonical[i],
0fb4aa4b
PA
8241 cond_string, type_wanted,
8242 tempflag ? disp_del : disp_donttouch,
8243 thread, task, ignore_count, ops,
56435ebe
TT
8244 from_tty, enabled, internal,
8245 canonical.special_display);
0fb4aa4b
PA
8246
8247 do_cleanups (old_chain);
8248
8249 /* Get the tracepoint we just created. */
84f4c1fe
PM
8250 if (internal)
8251 tp = get_breakpoint (internal_breakpoint_number);
8252 else
8253 tp = get_breakpoint (breakpoint_count);
0fb4aa4b
PA
8254 gdb_assert (tp != NULL);
8255
8256 /* Given that its possible to have multiple markers with
8257 the same string id, if the user is creating a static
8258 tracepoint by marker id ("strace -m MARKER_ID"), then
8259 store the sals index, so that breakpoint_re_set can
8260 try to match up which of the newly found markers
8261 corresponds to this one */
8262 tp->static_trace_marker_id_idx = i;
8263 }
8264 }
8265 else
7efd8fc2 8266 create_breakpoints_sal (gdbarch, sals, &canonical, cond_string,
3e43a32a
MS
8267 type_wanted,
8268 tempflag ? disp_del : disp_donttouch,
0fb4aa4b 8269 thread, task, ignore_count, ops, from_tty,
84f4c1fe 8270 enabled, internal);
c906108c 8271 }
0101ce28
JJ
8272 else
8273 {
0101ce28
JJ
8274 struct breakpoint *b;
8275
0101ce28
JJ
8276 make_cleanup (xfree, copy_arg);
8277
a6d9a66e 8278 b = set_raw_breakpoint_without_location (gdbarch, type_wanted);
84f4c1fe 8279 set_breakpoint_number (internal, b);
72b2ff0e 8280 b->thread = -1;
7efd8fc2 8281 b->addr_string = canonical.canonical[0];
72b2ff0e 8282 b->cond_string = NULL;
0101ce28 8283 b->ignore_count = ignore_count;
0101ce28 8284 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 8285 b->condition_not_parsed = 1;
604133b5 8286 b->ops = ops;
41447f92 8287 b->enable_state = enabled ? bp_enabled : bp_disabled;
6c95b8df 8288 b->pspace = current_program_space;
84f4c1fe 8289 b->py_bp_object = NULL;
74960c60 8290
6c95b8df 8291 if (enabled && b->pspace->executing_startup
8bea4e01
UW
8292 && (b->type == bp_breakpoint
8293 || b->type == bp_hardware_breakpoint))
8294 b->enable_state = bp_startup_disabled;
8295
8d3788bd 8296 if (!internal)
84f4c1fe
PM
8297 /* Do not mention breakpoints with a negative number,
8298 but do notify observers. */
8d3788bd
VP
8299 mention (b);
8300 observer_notify_breakpoint_created (b);
0101ce28
JJ
8301 }
8302
c3f6f71d 8303 if (sals.nelts > 1)
95a42b64 8304 {
3e43a32a
MS
8305 warning (_("Multiple breakpoints were set.\nUse the "
8306 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 8307 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
8308 }
8309
80c99de1
PA
8310 /* That's it. Discard the cleanups for data inserted into the
8311 breakpoint. */
8312 discard_cleanups (bkpt_chain);
8313 /* But cleanup everything else. */
c3f6f71d 8314 do_cleanups (old_chain);
217dc9e2 8315
80c99de1 8316 /* error call may happen here - have BKPT_CHAIN already discarded. */
217dc9e2 8317 update_global_location_list (1);
fd9b8c24
PA
8318
8319 return 1;
c3f6f71d 8320}
c906108c 8321
72b2ff0e
VP
8322/* Set a breakpoint.
8323 ARG is a string describing breakpoint address,
8324 condition, and thread.
8325 FLAG specifies if a breakpoint is hardware on,
8326 and if breakpoint is temporary, using BP_HARDWARE_FLAG
8327 and BP_TEMPFLAG. */
8328
98deb0da 8329static void
72b2ff0e 8330break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 8331{
72b2ff0e 8332 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
8333 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
8334 ? bp_hardware_breakpoint
8335 : bp_breakpoint);
c3f6f71d 8336
8cdf0e15
VP
8337 create_breakpoint (get_current_arch (),
8338 arg,
8339 NULL, 0, 1 /* parse arg */,
0fb4aa4b 8340 tempflag, type_wanted,
8cdf0e15
VP
8341 0 /* Ignore count */,
8342 pending_break_support,
8343 NULL /* breakpoint_ops */,
8344 from_tty,
84f4c1fe
PM
8345 1 /* enabled */,
8346 0 /* internal */);
c906108c
SS
8347}
8348
72b2ff0e 8349
c906108c
SS
8350/* Helper function for break_command_1 and disassemble_command. */
8351
8352void
fba45db2 8353resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
8354{
8355 CORE_ADDR pc;
8356
8357 if (sal->pc == 0 && sal->symtab != NULL)
8358 {
8359 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 8360 error (_("No line %d in file \"%s\"."),
c906108c
SS
8361 sal->line, sal->symtab->filename);
8362 sal->pc = pc;
6a048695 8363
4a64f543
MS
8364 /* If this SAL corresponds to a breakpoint inserted using a line
8365 number, then skip the function prologue if necessary. */
6a048695 8366 if (sal->explicit_line)
059acae7 8367 skip_prologue_sal (sal);
c906108c
SS
8368 }
8369
8370 if (sal->section == 0 && sal->symtab != NULL)
8371 {
8372 struct blockvector *bv;
c5aa993b
JM
8373 struct block *b;
8374 struct symbol *sym;
c906108c 8375
801e3a5b 8376 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
8377 if (bv != NULL)
8378 {
7f0df278 8379 sym = block_linkage_function (b);
c906108c
SS
8380 if (sym != NULL)
8381 {
8382 fixup_symbol_section (sym, sal->symtab->objfile);
714835d5 8383 sal->section = SYMBOL_OBJ_SECTION (sym);
c906108c
SS
8384 }
8385 else
8386 {
4a64f543
MS
8387 /* It really is worthwhile to have the section, so we'll
8388 just have to look harder. This case can be executed
8389 if we have line numbers but no functions (as can
8390 happen in assembly source). */
c906108c 8391
c5aa993b 8392 struct minimal_symbol *msym;
6c95b8df
PA
8393 struct cleanup *old_chain = save_current_space_and_thread ();
8394
8395 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
8396
8397 msym = lookup_minimal_symbol_by_pc (sal->pc);
8398 if (msym)
714835d5 8399 sal->section = SYMBOL_OBJ_SECTION (msym);
6c95b8df
PA
8400
8401 do_cleanups (old_chain);
c906108c
SS
8402 }
8403 }
8404 }
8405}
8406
8407void
fba45db2 8408break_command (char *arg, int from_tty)
c906108c 8409{
db107f19 8410 break_command_1 (arg, 0, from_tty);
c906108c
SS
8411}
8412
c906108c 8413void
fba45db2 8414tbreak_command (char *arg, int from_tty)
c906108c 8415{
db107f19 8416 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
8417}
8418
c906108c 8419static void
fba45db2 8420hbreak_command (char *arg, int from_tty)
c906108c 8421{
db107f19 8422 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
8423}
8424
8425static void
fba45db2 8426thbreak_command (char *arg, int from_tty)
c906108c 8427{
db107f19 8428 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
8429}
8430
8431static void
fba45db2 8432stop_command (char *arg, int from_tty)
c906108c 8433{
a3f17187 8434 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 8435Usage: stop in <function | address>\n\
a3f17187 8436 stop at <line>\n"));
c906108c
SS
8437}
8438
8439static void
fba45db2 8440stopin_command (char *arg, int from_tty)
c906108c
SS
8441{
8442 int badInput = 0;
8443
c5aa993b 8444 if (arg == (char *) NULL)
c906108c
SS
8445 badInput = 1;
8446 else if (*arg != '*')
8447 {
8448 char *argptr = arg;
8449 int hasColon = 0;
8450
4a64f543 8451 /* Look for a ':'. If this is a line number specification, then
53a5351d 8452 say it is bad, otherwise, it should be an address or
4a64f543 8453 function/method name. */
c906108c 8454 while (*argptr && !hasColon)
c5aa993b
JM
8455 {
8456 hasColon = (*argptr == ':');
8457 argptr++;
8458 }
c906108c
SS
8459
8460 if (hasColon)
c5aa993b 8461 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 8462 else
c5aa993b 8463 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
8464 }
8465
8466 if (badInput)
a3f17187 8467 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 8468 else
db107f19 8469 break_command_1 (arg, 0, from_tty);
c906108c
SS
8470}
8471
8472static void
fba45db2 8473stopat_command (char *arg, int from_tty)
c906108c
SS
8474{
8475 int badInput = 0;
8476
c5aa993b 8477 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
8478 badInput = 1;
8479 else
8480 {
8481 char *argptr = arg;
8482 int hasColon = 0;
8483
4a64f543
MS
8484 /* Look for a ':'. If there is a '::' then get out, otherwise
8485 it is probably a line number. */
c906108c 8486 while (*argptr && !hasColon)
c5aa993b
JM
8487 {
8488 hasColon = (*argptr == ':');
8489 argptr++;
8490 }
c906108c
SS
8491
8492 if (hasColon)
c5aa993b 8493 badInput = (*argptr == ':'); /* we have class::method */
c906108c 8494 else
c5aa993b 8495 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
8496 }
8497
8498 if (badInput)
a3f17187 8499 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 8500 else
db107f19 8501 break_command_1 (arg, 0, from_tty);
c906108c
SS
8502}
8503
f1310107
TJB
8504/* Implement the "breakpoint_hit" breakpoint_ops method for
8505 ranged breakpoints. */
8506
8507static int
8508breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
8509 struct address_space *aspace,
8510 CORE_ADDR bp_addr)
8511{
8512 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
8513 bl->length, aspace, bp_addr);
8514}
8515
8516/* Implement the "resources_needed" breakpoint_ops method for
8517 ranged breakpoints. */
8518
8519static int
8520resources_needed_ranged_breakpoint (const struct bp_location *bl)
8521{
8522 return target_ranged_break_num_registers ();
8523}
8524
8525/* Implement the "print_it" breakpoint_ops method for
8526 ranged breakpoints. */
8527
8528static enum print_stop_action
8529print_it_ranged_breakpoint (struct breakpoint *b)
8530{
8531 struct bp_location *bl = b->loc;
8532
8533 gdb_assert (b->type == bp_hardware_breakpoint);
8534
8535 /* Ranged breakpoints have only one location. */
8536 gdb_assert (bl && bl->next == NULL);
8537
8538 annotate_breakpoint (b->number);
8539 if (b->disposition == disp_del)
8540 ui_out_text (uiout, "\nTemporary ranged breakpoint ");
8541 else
8542 ui_out_text (uiout, "\nRanged breakpoint ");
8543 if (ui_out_is_mi_like_p (uiout))
8544 {
8545 ui_out_field_string (uiout, "reason",
8546 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
8547 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8548 }
8549 ui_out_field_int (uiout, "bkptno", b->number);
8550 ui_out_text (uiout, ", ");
8551
8552 return PRINT_SRC_AND_LOC;
8553}
8554
8555/* Implement the "print_one" breakpoint_ops method for
8556 ranged breakpoints. */
8557
8558static void
8559print_one_ranged_breakpoint (struct breakpoint *b,
8560 struct bp_location **last_loc)
8561{
8562 struct bp_location *bl = b->loc;
8563 struct value_print_options opts;
8564
8565 /* Ranged breakpoints have only one location. */
8566 gdb_assert (bl && bl->next == NULL);
8567
8568 get_user_print_options (&opts);
8569
8570 if (opts.addressprint)
8571 /* We don't print the address range here, it will be printed later
8572 by print_one_detail_ranged_breakpoint. */
8573 ui_out_field_skip (uiout, "addr");
8574 annotate_field (5);
8575 print_breakpoint_location (b, bl);
8576 *last_loc = bl;
8577}
8578
8579/* Implement the "print_one_detail" breakpoint_ops method for
8580 ranged breakpoints. */
8581
8582static void
8583print_one_detail_ranged_breakpoint (const struct breakpoint *b,
8584 struct ui_out *uiout)
8585{
8586 CORE_ADDR address_start, address_end;
8587 struct bp_location *bl = b->loc;
8588 struct ui_stream *stb = ui_out_stream_new (uiout);
8589 struct cleanup *cleanup = make_cleanup_ui_out_stream_delete (stb);
8590
8591 gdb_assert (bl);
8592
8593 address_start = bl->address;
8594 address_end = address_start + bl->length - 1;
8595
8596 ui_out_text (uiout, "\taddress range: ");
8597 fprintf_unfiltered (stb->stream, "[%s, %s]",
8598 print_core_address (bl->gdbarch, address_start),
8599 print_core_address (bl->gdbarch, address_end));
8600 ui_out_field_stream (uiout, "addr", stb);
8601 ui_out_text (uiout, "\n");
8602
8603 do_cleanups (cleanup);
8604}
8605
8606/* Implement the "print_mention" breakpoint_ops method for
8607 ranged breakpoints. */
8608
8609static void
8610print_mention_ranged_breakpoint (struct breakpoint *b)
8611{
8612 struct bp_location *bl = b->loc;
8613
8614 gdb_assert (bl);
8615 gdb_assert (b->type == bp_hardware_breakpoint);
8616
8617 if (ui_out_is_mi_like_p (uiout))
8618 return;
8619
8620 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
8621 b->number, paddress (bl->gdbarch, bl->address),
8622 paddress (bl->gdbarch, bl->address + bl->length - 1));
8623}
8624
8625/* Implement the "print_recreate" breakpoint_ops method for
8626 ranged breakpoints. */
8627
8628static void
8629print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
8630{
8631 fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string,
8632 b->addr_string_range_end);
8633}
8634
8635/* The breakpoint_ops structure to be used in ranged breakpoints. */
8636
8637static struct breakpoint_ops ranged_breakpoint_ops =
8638{
be5c67c1 8639 NULL, /* dtor */
28010a5d
PA
8640 NULL, /* allocate_location */
8641 NULL, /* re_set */
f1310107
TJB
8642 NULL, /* insert */
8643 NULL, /* remove */
8644 breakpoint_hit_ranged_breakpoint,
28010a5d 8645 NULL, /* check_status */
f1310107 8646 resources_needed_ranged_breakpoint,
9c06b0b4 8647 NULL, /* works_in_software_mode */
f1310107
TJB
8648 print_it_ranged_breakpoint,
8649 print_one_ranged_breakpoint,
8650 print_one_detail_ranged_breakpoint,
8651 print_mention_ranged_breakpoint,
8652 print_recreate_ranged_breakpoint
8653};
8654
8655/* Find the address where the end of the breakpoint range should be
8656 placed, given the SAL of the end of the range. This is so that if
8657 the user provides a line number, the end of the range is set to the
8658 last instruction of the given line. */
8659
8660static CORE_ADDR
8661find_breakpoint_range_end (struct symtab_and_line sal)
8662{
8663 CORE_ADDR end;
8664
8665 /* If the user provided a PC value, use it. Otherwise,
8666 find the address of the end of the given location. */
8667 if (sal.explicit_pc)
8668 end = sal.pc;
8669 else
8670 {
8671 int ret;
8672 CORE_ADDR start;
8673
8674 ret = find_line_pc_range (sal, &start, &end);
8675 if (!ret)
8676 error (_("Could not find location of the end of the range."));
8677
8678 /* find_line_pc_range returns the start of the next line. */
8679 end--;
8680 }
8681
8682 return end;
8683}
8684
8685/* Implement the "break-range" CLI command. */
8686
8687static void
8688break_range_command (char *arg, int from_tty)
8689{
8690 char *arg_start, *addr_string_start, *addr_string_end;
8691 struct linespec_result canonical_start, canonical_end;
8692 int bp_count, can_use_bp, length;
8693 CORE_ADDR end;
8694 struct breakpoint *b;
8695 struct symtab_and_line sal_start, sal_end;
8696 struct symtabs_and_lines sals_start, sals_end;
8697 struct cleanup *cleanup_bkpt;
8698
8699 /* We don't support software ranged breakpoints. */
8700 if (target_ranged_break_num_registers () < 0)
8701 error (_("This target does not support hardware ranged breakpoints."));
8702
8703 bp_count = hw_breakpoint_used_count ();
8704 bp_count += target_ranged_break_num_registers ();
8705 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
8706 bp_count, 0);
8707 if (can_use_bp < 0)
8708 error (_("Hardware breakpoints used exceeds limit."));
8709
8710 if (arg == NULL || arg[0] == '\0')
8711 error(_("No address range specified."));
8712
8713 sals_start.sals = NULL;
8714 sals_start.nelts = 0;
8715 init_linespec_result (&canonical_start);
8716
8717 while (*arg == ' ' || *arg == '\t')
8718 arg++;
8719
58438ac1 8720 parse_breakpoint_sals (&arg, &sals_start, &canonical_start);
f1310107
TJB
8721
8722 sal_start = sals_start.sals[0];
8723 addr_string_start = canonical_start.canonical[0];
8724 cleanup_bkpt = make_cleanup (xfree, addr_string_start);
8725 xfree (sals_start.sals);
8726 xfree (canonical_start.canonical);
8727
8728 if (arg[0] != ',')
8729 error (_("Too few arguments."));
8730 else if (sals_start.nelts == 0)
8731 error (_("Could not find location of the beginning of the range."));
8732 else if (sals_start.nelts != 1)
8733 error (_("Cannot create a ranged breakpoint with multiple locations."));
8734
8735 resolve_sal_pc (&sal_start);
8736
8737 arg++; /* Skip the comma. */
8738 while (*arg == ' ' || *arg == '\t')
8739 arg++;
8740
8741 /* Parse the end location. */
8742
8743 sals_end.sals = NULL;
8744 sals_end.nelts = 0;
8745 init_linespec_result (&canonical_end);
8746 arg_start = arg;
8747
423f41a5 8748 /* We call decode_line_1 directly here instead of using
f1310107
TJB
8749 parse_breakpoint_sals because we need to specify the start location's
8750 symtab and line as the default symtab and line for the end of the
8751 range. This makes it possible to have ranges like "foo.c:27, +14",
8752 where +14 means 14 lines from the start location. */
8753 sals_end = decode_line_1 (&arg, 1, sal_start.symtab, sal_start.line,
58438ac1 8754 &canonical_end);
f1310107
TJB
8755
8756 /* canonical_end can be NULL if it was of the form "*0xdeadbeef". */
8757 if (canonical_end.canonical == NULL)
38a714bb 8758 canonical_end.canonical = xcalloc (1, sizeof (char *));
f1310107
TJB
8759 /* Add the string if not present. */
8760 if (arg_start != arg && canonical_end.canonical[0] == NULL)
8761 canonical_end.canonical[0] = savestring (arg_start, arg - arg_start);
8762
8763 sal_end = sals_end.sals[0];
8764 addr_string_end = canonical_end.canonical[0];
8765 make_cleanup (xfree, addr_string_end);
8766 xfree (sals_end.sals);
8767 xfree (canonical_end.canonical);
8768
8769 if (sals_end.nelts == 0)
8770 error (_("Could not find location of the end of the range."));
8771 else if (sals_end.nelts != 1)
8772 error (_("Cannot create a ranged breakpoint with multiple locations."));
8773
8774 resolve_sal_pc (&sal_end);
8775
8776 end = find_breakpoint_range_end (sal_end);
8777 if (sal_start.pc > end)
8778 error (_("Invalid address range, end preceeds start."));
8779
8780 length = end - sal_start.pc + 1;
8781 if (length < 0)
8782 /* Length overflowed. */
8783 error (_("Address range too large."));
8784 else if (length == 1)
8785 {
8786 /* This range is simple enough to be handled by
8787 the `hbreak' command. */
8788 hbreak_command (addr_string_start, 1);
8789
8790 do_cleanups (cleanup_bkpt);
8791
8792 return;
8793 }
8794
8795 /* Now set up the breakpoint. */
8796 b = set_raw_breakpoint (get_current_arch (), sal_start,
8797 bp_hardware_breakpoint);
8798 set_breakpoint_count (breakpoint_count + 1);
8799 b->number = breakpoint_count;
8800 b->disposition = disp_donttouch;
8801 b->addr_string = addr_string_start;
8802 b->addr_string_range_end = addr_string_end;
8803 b->ops = &ranged_breakpoint_ops;
8804 b->loc->length = length;
8805
8806 discard_cleanups (cleanup_bkpt);
8807
8808 mention (b);
8d3788bd 8809 observer_notify_breakpoint_created (b);
f1310107
TJB
8810 update_global_location_list (1);
8811}
8812
4a64f543
MS
8813/* Return non-zero if EXP is verified as constant. Returned zero
8814 means EXP is variable. Also the constant detection may fail for
8815 some constant expressions and in such case still falsely return
8816 zero. */
65d79d4b
SDJ
8817static int
8818watchpoint_exp_is_const (const struct expression *exp)
8819{
8820 int i = exp->nelts;
8821
8822 while (i > 0)
8823 {
8824 int oplenp, argsp;
8825
8826 /* We are only interested in the descriptor of each element. */
8827 operator_length (exp, i, &oplenp, &argsp);
8828 i -= oplenp;
8829
8830 switch (exp->elts[i].opcode)
8831 {
8832 case BINOP_ADD:
8833 case BINOP_SUB:
8834 case BINOP_MUL:
8835 case BINOP_DIV:
8836 case BINOP_REM:
8837 case BINOP_MOD:
8838 case BINOP_LSH:
8839 case BINOP_RSH:
8840 case BINOP_LOGICAL_AND:
8841 case BINOP_LOGICAL_OR:
8842 case BINOP_BITWISE_AND:
8843 case BINOP_BITWISE_IOR:
8844 case BINOP_BITWISE_XOR:
8845 case BINOP_EQUAL:
8846 case BINOP_NOTEQUAL:
8847 case BINOP_LESS:
8848 case BINOP_GTR:
8849 case BINOP_LEQ:
8850 case BINOP_GEQ:
8851 case BINOP_REPEAT:
8852 case BINOP_COMMA:
8853 case BINOP_EXP:
8854 case BINOP_MIN:
8855 case BINOP_MAX:
8856 case BINOP_INTDIV:
8857 case BINOP_CONCAT:
8858 case BINOP_IN:
8859 case BINOP_RANGE:
8860 case TERNOP_COND:
8861 case TERNOP_SLICE:
8862 case TERNOP_SLICE_COUNT:
8863
8864 case OP_LONG:
8865 case OP_DOUBLE:
8866 case OP_DECFLOAT:
8867 case OP_LAST:
8868 case OP_COMPLEX:
8869 case OP_STRING:
8870 case OP_BITSTRING:
8871 case OP_ARRAY:
8872 case OP_TYPE:
8873 case OP_NAME:
8874 case OP_OBJC_NSSTRING:
8875
8876 case UNOP_NEG:
8877 case UNOP_LOGICAL_NOT:
8878 case UNOP_COMPLEMENT:
8879 case UNOP_ADDR:
8880 case UNOP_HIGH:
4a64f543
MS
8881 /* Unary, binary and ternary operators: We have to check
8882 their operands. If they are constant, then so is the
8883 result of that operation. For instance, if A and B are
8884 determined to be constants, then so is "A + B".
8885
8886 UNOP_IND is one exception to the rule above, because the
8887 value of *ADDR is not necessarily a constant, even when
8888 ADDR is. */
65d79d4b
SDJ
8889 break;
8890
8891 case OP_VAR_VALUE:
8892 /* Check whether the associated symbol is a constant.
4a64f543 8893
65d79d4b 8894 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
8895 possible that a buggy compiler could mark a variable as
8896 constant even when it is not, and TYPE_CONST would return
8897 true in this case, while SYMBOL_CLASS wouldn't.
8898
8899 We also have to check for function symbols because they
8900 are always constant. */
65d79d4b
SDJ
8901 {
8902 struct symbol *s = exp->elts[i + 2].symbol;
8903
8904 if (SYMBOL_CLASS (s) != LOC_BLOCK
8905 && SYMBOL_CLASS (s) != LOC_CONST
8906 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
8907 return 0;
8908 break;
8909 }
8910
8911 /* The default action is to return 0 because we are using
8912 the optimistic approach here: If we don't know something,
8913 then it is not a constant. */
8914 default:
8915 return 0;
8916 }
8917 }
8918
8919 return 1;
8920}
8921
77b06cd7
TJB
8922/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
8923
8924static int
8925insert_watchpoint (struct bp_location *bl)
8926{
e09342b5
TJB
8927 int length = bl->owner->exact? 1 : bl->length;
8928
8929 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
8930 bl->owner->cond_exp);
77b06cd7
TJB
8931}
8932
8933/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
8934
8935static int
8936remove_watchpoint (struct bp_location *bl)
8937{
e09342b5
TJB
8938 int length = bl->owner->exact? 1 : bl->length;
8939
8940 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
8941 bl->owner->cond_exp);
8942}
8943
8944/* Implement the "resources_needed" breakpoint_ops method for
8945 hardware watchpoints. */
8946
8947static int
8948resources_needed_watchpoint (const struct bp_location *bl)
8949{
90e4670f 8950 int length = bl->owner->exact? 1 : bl->length;
e09342b5 8951
90e4670f 8952 return target_region_ok_for_hw_watchpoint (bl->address, length);
77b06cd7
TJB
8953}
8954
9c06b0b4
TJB
8955/* Implement the "works_in_software_mode" breakpoint_ops method for
8956 hardware watchpoints. */
8957
8958int
8959works_in_software_mode_watchpoint (const struct breakpoint *b)
8960{
8961 return b->type == bp_hardware_watchpoint;
8962}
8963
77b06cd7
TJB
8964/* The breakpoint_ops structure to be used in hardware watchpoints. */
8965
8966static struct breakpoint_ops watchpoint_breakpoint_ops =
8967{
be5c67c1 8968 NULL, /* dtor */
28010a5d
PA
8969 NULL, /* allocate_location */
8970 NULL, /* re_set */
77b06cd7
TJB
8971 insert_watchpoint,
8972 remove_watchpoint,
8973 NULL, /* breakpoint_hit */
28010a5d 8974 NULL, /* check_status */
e09342b5 8975 resources_needed_watchpoint,
9c06b0b4 8976 works_in_software_mode_watchpoint,
77b06cd7
TJB
8977 NULL, /* print_it */
8978 NULL, /* print_one */
f1310107 8979 NULL, /* print_one_detail */
77b06cd7
TJB
8980 NULL, /* print_mention */
8981 NULL /* print_recreate */
8982};
8983
9c06b0b4
TJB
8984/* Implement the "insert" breakpoint_ops method for
8985 masked hardware watchpoints. */
8986
8987static int
8988insert_masked_watchpoint (struct bp_location *bl)
8989{
8990 return target_insert_mask_watchpoint (bl->address, bl->owner->hw_wp_mask,
8991 bl->watchpoint_type);
8992}
8993
8994/* Implement the "remove" breakpoint_ops method for
8995 masked hardware watchpoints. */
8996
8997static int
8998remove_masked_watchpoint (struct bp_location *bl)
8999{
9000 return target_remove_mask_watchpoint (bl->address, bl->owner->hw_wp_mask,
9001 bl->watchpoint_type);
9002}
9003
9004/* Implement the "resources_needed" breakpoint_ops method for
9005 masked hardware watchpoints. */
9006
9007static int
9008resources_needed_masked_watchpoint (const struct bp_location *bl)
9009{
9010 return target_masked_watch_num_registers (bl->address,
9011 bl->owner->hw_wp_mask);
9012}
9013
9014/* Implement the "works_in_software_mode" breakpoint_ops method for
9015 masked hardware watchpoints. */
9016
9017static int
9018works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
9019{
9020 return 0;
9021}
9022
9023/* Implement the "print_it" breakpoint_ops method for
9024 masked hardware watchpoints. */
9025
9026static enum print_stop_action
9027print_it_masked_watchpoint (struct breakpoint *b)
9028{
9029 /* Masked watchpoints have only one location. */
9030 gdb_assert (b->loc && b->loc->next == NULL);
9031
9032 switch (b->type)
9033 {
9034 case bp_hardware_watchpoint:
9035 annotate_watchpoint (b->number);
9036 if (ui_out_is_mi_like_p (uiout))
9037 ui_out_field_string
9038 (uiout, "reason",
9039 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
9040 break;
9041
9042 case bp_read_watchpoint:
9043 if (ui_out_is_mi_like_p (uiout))
9044 ui_out_field_string
9045 (uiout, "reason",
9046 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
9047 break;
9048
9049 case bp_access_watchpoint:
9050 if (ui_out_is_mi_like_p (uiout))
9051 ui_out_field_string
9052 (uiout, "reason",
9053 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
9054 break;
9055 default:
9056 internal_error (__FILE__, __LINE__,
9057 _("Invalid hardware watchpoint type."));
9058 }
9059
9060 mention (b);
9061 ui_out_text (uiout, _("\n\
9062Check the underlying instruction at PC for the memory\n\
9063address and value which triggered this watchpoint.\n"));
9064 ui_out_text (uiout, "\n");
9065
9066 /* More than one watchpoint may have been triggered. */
9067 return PRINT_UNKNOWN;
9068}
9069
9070/* Implement the "print_one_detail" breakpoint_ops method for
9071 masked hardware watchpoints. */
9072
9073static void
9074print_one_detail_masked_watchpoint (const struct breakpoint *b,
9075 struct ui_out *uiout)
9076{
9077 /* Masked watchpoints have only one location. */
9078 gdb_assert (b->loc && b->loc->next == NULL);
9079
9080 ui_out_text (uiout, "\tmask ");
9081 ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, b->hw_wp_mask);
9082 ui_out_text (uiout, "\n");
9083}
9084
9085/* Implement the "print_mention" breakpoint_ops method for
9086 masked hardware watchpoints. */
9087
9088static void
9089print_mention_masked_watchpoint (struct breakpoint *b)
9090{
9091 struct cleanup *ui_out_chain;
9092
9093 switch (b->type)
9094 {
9095 case bp_hardware_watchpoint:
9096 ui_out_text (uiout, "Masked hardware watchpoint ");
9097 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
9098 break;
9099 case bp_read_watchpoint:
9100 ui_out_text (uiout, "Masked hardware read watchpoint ");
9101 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
9102 break;
9103 case bp_access_watchpoint:
9104 ui_out_text (uiout, "Masked hardware access (read/write) watchpoint ");
9105 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
9106 break;
9107 default:
9108 internal_error (__FILE__, __LINE__,
9109 _("Invalid hardware watchpoint type."));
9110 }
9111
9112 ui_out_field_int (uiout, "number", b->number);
9113 ui_out_text (uiout, ": ");
9114 ui_out_field_string (uiout, "exp", b->exp_string);
9115 do_cleanups (ui_out_chain);
9116}
9117
9118/* Implement the "print_recreate" breakpoint_ops method for
9119 masked hardware watchpoints. */
9120
9121static void
9122print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
9123{
9124 char tmp[40];
9125
9126 switch (b->type)
9127 {
9128 case bp_hardware_watchpoint:
9129 fprintf_unfiltered (fp, "watch");
9130 break;
9131 case bp_read_watchpoint:
9132 fprintf_unfiltered (fp, "rwatch");
9133 break;
9134 case bp_access_watchpoint:
9135 fprintf_unfiltered (fp, "awatch");
9136 break;
9137 default:
9138 internal_error (__FILE__, __LINE__,
9139 _("Invalid hardware watchpoint type."));
9140 }
9141
9142 sprintf_vma (tmp, b->hw_wp_mask);
9143 fprintf_unfiltered (fp, " %s mask 0x%s", b->exp_string, tmp);
9144}
9145
9146/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
9147
9148static struct breakpoint_ops masked_watchpoint_breakpoint_ops =
9149{
be5c67c1 9150 NULL, /* dtor */
28010a5d
PA
9151 NULL, /* allocate_location */
9152 NULL, /* re_set */
9c06b0b4
TJB
9153 insert_masked_watchpoint,
9154 remove_masked_watchpoint,
9155 NULL, /* breakpoint_hit */
28010a5d 9156 NULL, /* check_status */
9c06b0b4
TJB
9157 resources_needed_masked_watchpoint,
9158 works_in_software_mode_masked_watchpoint,
9159 print_it_masked_watchpoint,
9160 NULL, /* print_one */
9161 print_one_detail_masked_watchpoint,
9162 print_mention_masked_watchpoint,
9163 print_recreate_masked_watchpoint
9164};
9165
9166/* Tell whether the given watchpoint is a masked hardware watchpoint. */
9167
9168static int
9169is_masked_watchpoint (const struct breakpoint *b)
9170{
9171 return b->ops == &masked_watchpoint_breakpoint_ops;
9172}
9173
53a5351d
JM
9174/* accessflag: hw_write: watch write,
9175 hw_read: watch read,
9176 hw_access: watch access (read or write) */
c906108c 9177static void
84f4c1fe
PM
9178watch_command_1 (char *arg, int accessflag, int from_tty,
9179 int just_location, int internal)
c906108c 9180{
a9634178 9181 volatile struct gdb_exception e;
d983da9c 9182 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c 9183 struct expression *exp;
60e1c644 9184 struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 9185 struct value *val, *mark, *result;
c906108c 9186 struct frame_info *frame;
c906108c
SS
9187 char *exp_start = NULL;
9188 char *exp_end = NULL;
9c06b0b4
TJB
9189 char *tok, *end_tok;
9190 int toklen = -1;
c906108c
SS
9191 char *cond_start = NULL;
9192 char *cond_end = NULL;
c906108c 9193 enum bptype bp_type;
37e4754d 9194 int thread = -1;
0cf6dd15 9195 int pc = 0;
9c06b0b4
TJB
9196 /* Flag to indicate whether we are going to use masks for
9197 the hardware watchpoint. */
9198 int use_mask = 0;
9199 CORE_ADDR mask = 0;
c906108c 9200
37e4754d
LM
9201 /* Make sure that we actually have parameters to parse. */
9202 if (arg != NULL && arg[0] != '\0')
9203 {
9c06b0b4 9204 char *value_start;
37e4754d 9205
9c06b0b4
TJB
9206 /* Look for "parameter value" pairs at the end
9207 of the arguments string. */
9208 for (tok = arg + strlen (arg) - 1; tok > arg; tok--)
9209 {
9210 /* Skip whitespace at the end of the argument list. */
9211 while (tok > arg && (*tok == ' ' || *tok == '\t'))
9212 tok--;
9213
9214 /* Find the beginning of the last token.
9215 This is the value of the parameter. */
9216 while (tok > arg && (*tok != ' ' && *tok != '\t'))
9217 tok--;
9218 value_start = tok + 1;
9219
9220 /* Skip whitespace. */
9221 while (tok > arg && (*tok == ' ' || *tok == '\t'))
9222 tok--;
9223
9224 end_tok = tok;
9225
9226 /* Find the beginning of the second to last token.
9227 This is the parameter itself. */
9228 while (tok > arg && (*tok != ' ' && *tok != '\t'))
9229 tok--;
9230 tok++;
9231 toklen = end_tok - tok + 1;
9232
9233 if (toklen == 6 && !strncmp (tok, "thread", 6))
9234 {
9235 /* At this point we've found a "thread" token, which means
9236 the user is trying to set a watchpoint that triggers
9237 only in a specific thread. */
9238 char *endp;
37e4754d 9239
9c06b0b4
TJB
9240 if (thread != -1)
9241 error(_("You can specify only one thread."));
37e4754d 9242
9c06b0b4
TJB
9243 /* Extract the thread ID from the next token. */
9244 thread = strtol (value_start, &endp, 0);
37e4754d 9245
9c06b0b4
TJB
9246 /* Check if the user provided a valid numeric value for the
9247 thread ID. */
9248 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
9249 error (_("Invalid thread ID specification %s."), value_start);
9250
9251 /* Check if the thread actually exists. */
9252 if (!valid_thread_id (thread))
9253 error (_("Unknown thread %d."), thread);
9254 }
9255 else if (toklen == 4 && !strncmp (tok, "mask", 4))
9256 {
9257 /* We've found a "mask" token, which means the user wants to
9258 create a hardware watchpoint that is going to have the mask
9259 facility. */
9260 struct value *mask_value, *mark;
37e4754d 9261
9c06b0b4
TJB
9262 if (use_mask)
9263 error(_("You can specify only one mask."));
37e4754d 9264
9c06b0b4 9265 use_mask = just_location = 1;
37e4754d 9266
9c06b0b4
TJB
9267 mark = value_mark ();
9268 mask_value = parse_to_comma_and_eval (&value_start);
9269 mask = value_as_address (mask_value);
9270 value_free_to_mark (mark);
9271 }
9272 else
9273 /* We didn't recognize what we found. We should stop here. */
9274 break;
37e4754d 9275
9c06b0b4
TJB
9276 /* Truncate the string and get rid of the "parameter value" pair before
9277 the arguments string is parsed by the parse_exp_1 function. */
9278 *tok = '\0';
9279 }
37e4754d
LM
9280 }
9281
9282 /* Parse the rest of the arguments. */
c906108c
SS
9283 innermost_block = NULL;
9284 exp_start = arg;
9285 exp = parse_exp_1 (&arg, 0, 0);
9286 exp_end = arg;
fa8a61dc
TT
9287 /* Remove trailing whitespace from the expression before saving it.
9288 This makes the eventual display of the expression string a bit
9289 prettier. */
9290 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
9291 --exp_end;
9292
65d79d4b
SDJ
9293 /* Checking if the expression is not constant. */
9294 if (watchpoint_exp_is_const (exp))
9295 {
9296 int len;
9297
9298 len = exp_end - exp_start;
9299 while (len > 0 && isspace (exp_start[len - 1]))
9300 len--;
9301 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
9302 }
9303
c906108c
SS
9304 exp_valid_block = innermost_block;
9305 mark = value_mark ();
a1442452 9306 fetch_subexp_value (exp, &pc, &val, &result, NULL);
06a64a0b
TT
9307
9308 if (just_location)
9309 {
9c06b0b4
TJB
9310 int ret;
9311
06a64a0b 9312 exp_valid_block = NULL;
a1442452 9313 val = value_addr (result);
06a64a0b
TT
9314 release_value (val);
9315 value_free_to_mark (mark);
9c06b0b4
TJB
9316
9317 if (use_mask)
9318 {
9319 ret = target_masked_watch_num_registers (value_as_address (val),
9320 mask);
9321 if (ret == -1)
9322 error (_("This target does not support masked watchpoints."));
9323 else if (ret == -2)
9324 error (_("Invalid mask or memory region."));
9325 }
06a64a0b
TT
9326 }
9327 else if (val != NULL)
fa4727a6 9328 release_value (val);
c906108c 9329
e9cafbcc
TT
9330 tok = skip_spaces (arg);
9331 end_tok = skip_to_space (tok);
c906108c
SS
9332
9333 toklen = end_tok - tok;
9334 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9335 {
2d134ed3
PA
9336 struct expression *cond;
9337
60e1c644 9338 innermost_block = NULL;
c906108c
SS
9339 tok = cond_start = end_tok + 1;
9340 cond = parse_exp_1 (&tok, 0, 0);
60e1c644
PA
9341
9342 /* The watchpoint expression may not be local, but the condition
9343 may still be. E.g.: `watch global if local > 0'. */
9344 cond_exp_valid_block = innermost_block;
9345
2d134ed3 9346 xfree (cond);
c906108c
SS
9347 cond_end = tok;
9348 }
9349 if (*tok)
8a3fe4f8 9350 error (_("Junk at end of command."));
c906108c 9351
53a5351d 9352 if (accessflag == hw_read)
c5aa993b 9353 bp_type = bp_read_watchpoint;
53a5351d 9354 else if (accessflag == hw_access)
c5aa993b
JM
9355 bp_type = bp_access_watchpoint;
9356 else
9357 bp_type = bp_hardware_watchpoint;
c906108c 9358
d983da9c 9359 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
9360
9361 /* If the expression is "local", then set up a "watchpoint scope"
9362 breakpoint at the point where we've left the scope of the watchpoint
9363 expression. Create the scope breakpoint before the watchpoint, so
9364 that we will encounter it first in bpstat_stop_status. */
60e1c644 9365 if (exp_valid_block && frame)
d983da9c 9366 {
edb3359d
DJ
9367 if (frame_id_p (frame_unwind_caller_id (frame)))
9368 {
9369 scope_breakpoint
a6d9a66e
UW
9370 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
9371 frame_unwind_caller_pc (frame),
edb3359d 9372 bp_watchpoint_scope);
d983da9c 9373
edb3359d 9374 scope_breakpoint->enable_state = bp_enabled;
d983da9c 9375
edb3359d
DJ
9376 /* Automatically delete the breakpoint when it hits. */
9377 scope_breakpoint->disposition = disp_del;
d983da9c 9378
edb3359d
DJ
9379 /* Only break in the proper frame (help with recursion). */
9380 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 9381
edb3359d 9382 /* Set the address at which we will stop. */
a6d9a66e
UW
9383 scope_breakpoint->loc->gdbarch
9384 = frame_unwind_caller_arch (frame);
edb3359d
DJ
9385 scope_breakpoint->loc->requested_address
9386 = frame_unwind_caller_pc (frame);
9387 scope_breakpoint->loc->address
a6d9a66e
UW
9388 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
9389 scope_breakpoint->loc->requested_address,
edb3359d
DJ
9390 scope_breakpoint->type);
9391 }
d983da9c
DJ
9392 }
9393
c906108c 9394 /* Now set up the breakpoint. */
2d134ed3 9395 b = set_raw_breakpoint_without_location (NULL, bp_type);
37e4754d 9396 b->thread = thread;
b5de0fa7 9397 b->disposition = disp_donttouch;
c906108c
SS
9398 b->exp = exp;
9399 b->exp_valid_block = exp_valid_block;
60e1c644 9400 b->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
9401 if (just_location)
9402 {
9403 struct type *t = value_type (val);
9404 CORE_ADDR addr = value_as_address (val);
9405 char *name;
9406
9407 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
9408 name = type_to_string (t);
9409
d63d0675
JK
9410 b->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
9411 core_addr_to_string (addr));
06a64a0b
TT
9412 xfree (name);
9413
4a4106ca 9414 b->exp_string = xstrprintf ("-location %.*s",
d63d0675
JK
9415 (int) (exp_end - exp_start), exp_start);
9416
06a64a0b
TT
9417 /* The above expression is in C. */
9418 b->language = language_c;
9419 }
9420 else
9421 b->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
9422
9423 if (use_mask)
9424 {
9425 b->hw_wp_mask = mask;
9426 b->ops = &masked_watchpoint_breakpoint_ops;
9427 }
9428 else
9429 {
9430 b->val = val;
9431 b->val_valid = 1;
9432 b->ops = &watchpoint_breakpoint_ops;
9433 }
77b06cd7 9434
c906108c
SS
9435 if (cond_start)
9436 b->cond_string = savestring (cond_start, cond_end - cond_start);
9437 else
9438 b->cond_string = 0;
c5aa993b 9439
c906108c 9440 if (frame)
f6bc2008
PA
9441 {
9442 b->watchpoint_frame = get_frame_id (frame);
9443 b->watchpoint_thread = inferior_ptid;
9444 }
c906108c 9445 else
f6bc2008
PA
9446 {
9447 b->watchpoint_frame = null_frame_id;
9448 b->watchpoint_thread = null_ptid;
9449 }
c906108c 9450
d983da9c 9451 if (scope_breakpoint != NULL)
c906108c 9452 {
d983da9c
DJ
9453 /* The scope breakpoint is related to the watchpoint. We will
9454 need to act on them together. */
9455 b->related_breakpoint = scope_breakpoint;
9456 scope_breakpoint->related_breakpoint = b;
c906108c 9457 }
d983da9c 9458
06a64a0b
TT
9459 if (!just_location)
9460 value_free_to_mark (mark);
2d134ed3 9461
a9634178
TJB
9462 TRY_CATCH (e, RETURN_MASK_ALL)
9463 {
9464 /* Finally update the new watchpoint. This creates the locations
9465 that should be inserted. */
9466 update_watchpoint (b, 1);
9467 }
9468 if (e.reason < 0)
9469 {
9470 delete_breakpoint (b);
9471 throw_exception (e);
9472 }
9473
9474 set_breakpoint_number (internal, b);
8d3788bd
VP
9475
9476 /* Do not mention breakpoints with a negative number, but do
a9634178 9477 notify observers. */
8d3788bd 9478 if (!internal)
84f4c1fe 9479 mention (b);
8d3788bd
VP
9480 observer_notify_breakpoint_created (b);
9481
b60e7edf 9482 update_global_location_list (1);
c906108c
SS
9483}
9484
e09342b5 9485/* Return count of debug registers needed to watch the given expression.
e09342b5 9486 If the watchpoint cannot be handled in hardware return zero. */
c906108c 9487
c906108c 9488static int
a9634178 9489can_use_hardware_watchpoint (struct value *v)
c906108c
SS
9490{
9491 int found_memory_cnt = 0;
2e70b7b9 9492 struct value *head = v;
c906108c
SS
9493
9494 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 9495 if (!can_use_hw_watchpoints)
c906108c 9496 return 0;
c5aa993b 9497
5c44784c
JM
9498 /* Make sure that the value of the expression depends only upon
9499 memory contents, and values computed from them within GDB. If we
9500 find any register references or function calls, we can't use a
9501 hardware watchpoint.
9502
9503 The idea here is that evaluating an expression generates a series
9504 of values, one holding the value of every subexpression. (The
9505 expression a*b+c has five subexpressions: a, b, a*b, c, and
9506 a*b+c.) GDB's values hold almost enough information to establish
9507 the criteria given above --- they identify memory lvalues,
9508 register lvalues, computed values, etcetera. So we can evaluate
9509 the expression, and then scan the chain of values that leaves
9510 behind to decide whether we can detect any possible change to the
9511 expression's final value using only hardware watchpoints.
9512
9513 However, I don't think that the values returned by inferior
9514 function calls are special in any way. So this function may not
9515 notice that an expression involving an inferior function call
9516 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 9517 for (; v; v = value_next (v))
c906108c 9518 {
5c44784c 9519 if (VALUE_LVAL (v) == lval_memory)
c906108c 9520 {
8464be76
DJ
9521 if (v != head && value_lazy (v))
9522 /* A lazy memory lvalue in the chain is one that GDB never
9523 needed to fetch; we either just used its address (e.g.,
9524 `a' in `a.b') or we never needed it at all (e.g., `a'
9525 in `a,b'). This doesn't apply to HEAD; if that is
9526 lazy then it was not readable, but watch it anyway. */
5c44784c 9527 ;
53a5351d 9528 else
5c44784c
JM
9529 {
9530 /* Ahh, memory we actually used! Check if we can cover
9531 it with hardware watchpoints. */
df407dfe 9532 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
9533
9534 /* We only watch structs and arrays if user asked for it
9535 explicitly, never if they just happen to appear in a
9536 middle of some value chain. */
9537 if (v == head
9538 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
9539 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
9540 {
42ae5230 9541 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
9542 int len;
9543 int num_regs;
9544
a9634178 9545 len = (target_exact_watchpoints
e09342b5
TJB
9546 && is_scalar_type_recursive (vtype))?
9547 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 9548
e09342b5
TJB
9549 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
9550 if (!num_regs)
2e70b7b9
MS
9551 return 0;
9552 else
e09342b5 9553 found_memory_cnt += num_regs;
2e70b7b9 9554 }
5c44784c 9555 }
c5aa993b 9556 }
5086187c
AC
9557 else if (VALUE_LVAL (v) != not_lval
9558 && deprecated_value_modifiable (v) == 0)
38b6c3b3 9559 return 0; /* These are values from the history (e.g., $1). */
5086187c 9560 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 9561 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
9562 }
9563
9564 /* The expression itself looks suitable for using a hardware
9565 watchpoint, but give the target machine a chance to reject it. */
9566 return found_memory_cnt;
9567}
9568
8b93c638 9569void
84f4c1fe 9570watch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9571{
84f4c1fe 9572 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
9573}
9574
9575/* A helper function that looks for an argument at the start of a
9576 string. The argument must also either be at the end of the string,
9577 or be followed by whitespace. Returns 1 if it finds the argument,
9578 0 otherwise. If the argument is found, it updates *STR. */
9579
9580static int
9581check_for_argument (char **str, char *arg, int arg_len)
9582{
9583 if (strncmp (*str, arg, arg_len) == 0
9584 && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len])))
9585 {
9586 *str += arg_len;
9587 return 1;
9588 }
9589 return 0;
9590}
9591
9592/* A helper function that looks for the "-location" argument and then
9593 calls watch_command_1. */
9594
9595static void
9596watch_maybe_just_location (char *arg, int accessflag, int from_tty)
9597{
9598 int just_location = 0;
9599
9600 if (arg
9601 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
9602 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
9603 {
e9cafbcc 9604 arg = skip_spaces (arg);
06a64a0b
TT
9605 just_location = 1;
9606 }
9607
84f4c1fe 9608 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 9609}
8926118c 9610
c5aa993b 9611static void
fba45db2 9612watch_command (char *arg, int from_tty)
c906108c 9613{
06a64a0b 9614 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
9615}
9616
8b93c638 9617void
84f4c1fe 9618rwatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9619{
84f4c1fe 9620 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 9621}
8926118c 9622
c5aa993b 9623static void
fba45db2 9624rwatch_command (char *arg, int from_tty)
c906108c 9625{
06a64a0b 9626 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
9627}
9628
8b93c638 9629void
84f4c1fe 9630awatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9631{
84f4c1fe 9632 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 9633}
8926118c 9634
c5aa993b 9635static void
fba45db2 9636awatch_command (char *arg, int from_tty)
c906108c 9637{
06a64a0b 9638 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 9639}
c906108c 9640\f
c5aa993b 9641
43ff13b4 9642/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
9643 because it uses the mechanisms of breakpoints. */
9644
bfec99b2
PA
9645struct until_break_command_continuation_args
9646{
9647 struct breakpoint *breakpoint;
9648 struct breakpoint *breakpoint2;
186c406b 9649 int thread_num;
bfec99b2
PA
9650};
9651
43ff13b4 9652/* This function is called by fetch_inferior_event via the
4a64f543 9653 cmd_continuation pointer, to complete the until command. It takes
43ff13b4 9654 care of cleaning up the temporary breakpoints set up by the until
4a64f543 9655 command. */
c2c6d25f 9656static void
fa4cd53f 9657until_break_command_continuation (void *arg, int err)
43ff13b4 9658{
bfec99b2
PA
9659 struct until_break_command_continuation_args *a = arg;
9660
9661 delete_breakpoint (a->breakpoint);
9662 if (a->breakpoint2)
9663 delete_breakpoint (a->breakpoint2);
186c406b 9664 delete_longjmp_breakpoint (a->thread_num);
43ff13b4
JM
9665}
9666
c906108c 9667void
ae66c1fc 9668until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
9669{
9670 struct symtabs_and_lines sals;
9671 struct symtab_and_line sal;
206415a3 9672 struct frame_info *frame = get_selected_frame (NULL);
c906108c 9673 struct breakpoint *breakpoint;
f107f563 9674 struct breakpoint *breakpoint2 = NULL;
c906108c 9675 struct cleanup *old_chain;
186c406b
TT
9676 int thread;
9677 struct thread_info *tp;
c906108c
SS
9678
9679 clear_proceed_status ();
9680
9681 /* Set a breakpoint where the user wants it and at return from
4a64f543 9682 this function. */
c5aa993b 9683
c906108c
SS
9684 if (default_breakpoint_valid)
9685 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
58438ac1 9686 default_breakpoint_line, NULL);
c906108c 9687 else
58438ac1 9688 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, 0, NULL);
c5aa993b 9689
c906108c 9690 if (sals.nelts != 1)
8a3fe4f8 9691 error (_("Couldn't get information on specified line."));
c5aa993b 9692
c906108c 9693 sal = sals.sals[0];
4a64f543 9694 xfree (sals.sals); /* malloc'd, so freed. */
c5aa993b 9695
c906108c 9696 if (*arg)
8a3fe4f8 9697 error (_("Junk at end of arguments."));
c5aa993b 9698
c906108c 9699 resolve_sal_pc (&sal);
c5aa993b 9700
ae66c1fc
EZ
9701 if (anywhere)
9702 /* If the user told us to continue until a specified location,
9703 we don't specify a frame at which we need to stop. */
a6d9a66e
UW
9704 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
9705 null_frame_id, bp_until);
ae66c1fc 9706 else
4a64f543
MS
9707 /* Otherwise, specify the selected frame, because we want to stop
9708 only at the very same frame. */
a6d9a66e
UW
9709 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
9710 get_stack_frame_id (frame),
ae66c1fc 9711 bp_until);
c5aa993b 9712
f107f563 9713 old_chain = make_cleanup_delete_breakpoint (breakpoint);
c906108c 9714
186c406b
TT
9715 tp = inferior_thread ();
9716 thread = tp->num;
9717
ae66c1fc
EZ
9718 /* Keep within the current frame, or in frames called by the current
9719 one. */
edb3359d
DJ
9720
9721 if (frame_id_p (frame_unwind_caller_id (frame)))
c906108c 9722 {
edb3359d
DJ
9723 sal = find_pc_line (frame_unwind_caller_pc (frame), 0);
9724 sal.pc = frame_unwind_caller_pc (frame);
a6d9a66e
UW
9725 breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame),
9726 sal,
edb3359d 9727 frame_unwind_caller_id (frame),
f107f563
VP
9728 bp_until);
9729 make_cleanup_delete_breakpoint (breakpoint2);
186c406b
TT
9730
9731 set_longjmp_breakpoint (tp, frame_unwind_caller_id (frame));
9732 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 9733 }
c5aa993b 9734
c906108c 9735 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
f107f563 9736
4a64f543
MS
9737 /* If we are running asynchronously, and proceed call above has
9738 actually managed to start the target, arrange for breakpoints to
9739 be deleted when the target stops. Otherwise, we're already
9740 stopped and delete breakpoints via cleanup chain. */
f107f563 9741
8ea051c5 9742 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 9743 {
bfec99b2
PA
9744 struct until_break_command_continuation_args *args;
9745 args = xmalloc (sizeof (*args));
f107f563 9746
bfec99b2
PA
9747 args->breakpoint = breakpoint;
9748 args->breakpoint2 = breakpoint2;
186c406b 9749 args->thread_num = thread;
f107f563
VP
9750
9751 discard_cleanups (old_chain);
95e54da7
PA
9752 add_continuation (inferior_thread (),
9753 until_break_command_continuation, args,
604ead4a 9754 xfree);
f107f563
VP
9755 }
9756 else
c5aa993b 9757 do_cleanups (old_chain);
c906108c 9758}
ae66c1fc 9759
c906108c
SS
9760/* This function attempts to parse an optional "if <cond>" clause
9761 from the arg string. If one is not found, it returns NULL.
c5aa993b 9762
c906108c
SS
9763 Else, it returns a pointer to the condition string. (It does not
9764 attempt to evaluate the string against a particular block.) And,
9765 it updates arg to point to the first character following the parsed
4a64f543 9766 if clause in the arg string. */
53a5351d 9767
c906108c 9768static char *
fba45db2 9769ep_parse_optional_if_clause (char **arg)
c906108c 9770{
c5aa993b
JM
9771 char *cond_string;
9772
9773 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 9774 return NULL;
c5aa993b 9775
4a64f543 9776 /* Skip the "if" keyword. */
c906108c 9777 (*arg) += 2;
c5aa993b 9778
c906108c 9779 /* Skip any extra leading whitespace, and record the start of the
4a64f543 9780 condition string. */
e9cafbcc 9781 *arg = skip_spaces (*arg);
c906108c 9782 cond_string = *arg;
c5aa993b 9783
4a64f543
MS
9784 /* Assume that the condition occupies the remainder of the arg
9785 string. */
c906108c 9786 (*arg) += strlen (cond_string);
c5aa993b 9787
c906108c
SS
9788 return cond_string;
9789}
c5aa993b 9790
c906108c
SS
9791/* Commands to deal with catching events, such as signals, exceptions,
9792 process start/exit, etc. */
c5aa993b
JM
9793
9794typedef enum
9795{
44feb3ce
TT
9796 catch_fork_temporary, catch_vfork_temporary,
9797 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
9798}
9799catch_fork_kind;
9800
c906108c 9801static void
cc59ec59
MS
9802catch_fork_command_1 (char *arg, int from_tty,
9803 struct cmd_list_element *command)
c906108c 9804{
a6d9a66e 9805 struct gdbarch *gdbarch = get_current_arch ();
c5aa993b 9806 char *cond_string = NULL;
44feb3ce
TT
9807 catch_fork_kind fork_kind;
9808 int tempflag;
9809
9810 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
9811 tempflag = (fork_kind == catch_fork_temporary
9812 || fork_kind == catch_vfork_temporary);
c5aa993b 9813
44feb3ce
TT
9814 if (!arg)
9815 arg = "";
e9cafbcc 9816 arg = skip_spaces (arg);
c5aa993b 9817
c906108c 9818 /* The allowed syntax is:
c5aa993b
JM
9819 catch [v]fork
9820 catch [v]fork if <cond>
9821
4a64f543 9822 First, check if there's an if clause. */
c906108c 9823 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 9824
c906108c 9825 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 9826 error (_("Junk at end of arguments."));
c5aa993b 9827
c906108c 9828 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 9829 and enable reporting of such events. */
c5aa993b
JM
9830 switch (fork_kind)
9831 {
44feb3ce
TT
9832 case catch_fork_temporary:
9833 case catch_fork_permanent:
a6d9a66e 9834 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 9835 &catch_fork_breakpoint_ops);
c906108c 9836 break;
44feb3ce
TT
9837 case catch_vfork_temporary:
9838 case catch_vfork_permanent:
a6d9a66e 9839 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 9840 &catch_vfork_breakpoint_ops);
c906108c 9841 break;
c5aa993b 9842 default:
8a3fe4f8 9843 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 9844 break;
c5aa993b 9845 }
c906108c
SS
9846}
9847
9848static void
cc59ec59
MS
9849catch_exec_command_1 (char *arg, int from_tty,
9850 struct cmd_list_element *command)
c906108c 9851{
b4d90040 9852 struct exec_catchpoint *c;
a6d9a66e 9853 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 9854 int tempflag;
c5aa993b 9855 char *cond_string = NULL;
c906108c 9856
44feb3ce
TT
9857 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9858
9859 if (!arg)
9860 arg = "";
e9cafbcc 9861 arg = skip_spaces (arg);
c906108c
SS
9862
9863 /* The allowed syntax is:
c5aa993b
JM
9864 catch exec
9865 catch exec if <cond>
c906108c 9866
4a64f543 9867 First, check if there's an if clause. */
c906108c
SS
9868 cond_string = ep_parse_optional_if_clause (&arg);
9869
9870 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 9871 error (_("Junk at end of arguments."));
c906108c 9872
b4d90040
PA
9873 c = XNEW (struct exec_catchpoint);
9874 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
9875 &catch_exec_breakpoint_ops);
9876 c->exec_pathname = NULL;
9877
28010a5d 9878 install_breakpoint (&c->base);
c906108c 9879}
c5aa993b 9880
3086aeae 9881static enum print_stop_action
ba770c9c 9882print_it_exception_catchpoint (struct breakpoint *b)
3086aeae 9883{
ade92717 9884 int bp_temp, bp_throw;
3086aeae 9885
ade92717 9886 annotate_catchpoint (b->number);
3086aeae 9887
ade92717
AR
9888 bp_throw = strstr (b->addr_string, "throw") != NULL;
9889 if (b->loc->address != b->loc->requested_address)
9890 breakpoint_adjustment_warning (b->loc->requested_address,
9891 b->loc->address,
9892 b->number, 1);
df2b6d2d 9893 bp_temp = b->disposition == disp_del;
ade92717
AR
9894 ui_out_text (uiout,
9895 bp_temp ? "Temporary catchpoint "
9896 : "Catchpoint ");
9897 if (!ui_out_is_mi_like_p (uiout))
9898 ui_out_field_int (uiout, "bkptno", b->number);
9899 ui_out_text (uiout,
c0b37c48
AR
9900 bp_throw ? " (exception thrown), "
9901 : " (exception caught), ");
ade92717
AR
9902 if (ui_out_is_mi_like_p (uiout))
9903 {
9904 ui_out_field_string (uiout, "reason",
9905 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
9906 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
9907 ui_out_field_int (uiout, "bkptno", b->number);
9908 }
3086aeae
DJ
9909 return PRINT_SRC_AND_LOC;
9910}
9911
9912static void
cc59ec59
MS
9913print_one_exception_catchpoint (struct breakpoint *b,
9914 struct bp_location **last_loc)
3086aeae 9915{
79a45b7d 9916 struct value_print_options opts;
cc59ec59 9917
79a45b7d
TT
9918 get_user_print_options (&opts);
9919 if (opts.addressprint)
3086aeae
DJ
9920 {
9921 annotate_field (4);
604133b5
AR
9922 if (b->loc == NULL || b->loc->shlib_disabled)
9923 ui_out_field_string (uiout, "addr", "<PENDING>");
9924 else
5af949e3
UW
9925 ui_out_field_core_addr (uiout, "addr",
9926 b->loc->gdbarch, b->loc->address);
3086aeae
DJ
9927 }
9928 annotate_field (5);
604133b5 9929 if (b->loc)
a6d9a66e 9930 *last_loc = b->loc;
3086aeae
DJ
9931 if (strstr (b->addr_string, "throw") != NULL)
9932 ui_out_field_string (uiout, "what", "exception throw");
9933 else
9934 ui_out_field_string (uiout, "what", "exception catch");
9935}
9936
9937static void
9938print_mention_exception_catchpoint (struct breakpoint *b)
9939{
ade92717
AR
9940 int bp_temp;
9941 int bp_throw;
9942
df2b6d2d 9943 bp_temp = b->disposition == disp_del;
ade92717
AR
9944 bp_throw = strstr (b->addr_string, "throw") != NULL;
9945 ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ")
9946 : _("Catchpoint "));
9947 ui_out_field_int (uiout, "bkptno", b->number);
9948 ui_out_text (uiout, bp_throw ? _(" (throw)")
9949 : _(" (catch)"));
3086aeae
DJ
9950}
9951
6149aea9
PA
9952/* Implement the "print_recreate" breakpoint_ops method for throw and
9953 catch catchpoints. */
9954
9955static void
4a64f543
MS
9956print_recreate_exception_catchpoint (struct breakpoint *b,
9957 struct ui_file *fp)
6149aea9
PA
9958{
9959 int bp_temp;
9960 int bp_throw;
9961
9962 bp_temp = b->disposition == disp_del;
9963 bp_throw = strstr (b->addr_string, "throw") != NULL;
9964 fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch ");
9965 fprintf_unfiltered (fp, bp_throw ? "throw" : "catch");
9966}
9967
3086aeae 9968static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
be5c67c1 9969 NULL, /* dtor */
28010a5d
PA
9970 NULL, /* allocate_location */
9971 NULL, /* re_set */
ce78b96d
JB
9972 NULL, /* insert */
9973 NULL, /* remove */
9974 NULL, /* breakpoint_hit */
28010a5d 9975 NULL, /* check_status */
e09342b5 9976 NULL, /* resources_needed */
9c06b0b4 9977 NULL, /* works_in_software_mode */
ba770c9c 9978 print_it_exception_catchpoint,
3086aeae 9979 print_one_exception_catchpoint,
f1310107 9980 NULL, /* print_one_detail */
6149aea9
PA
9981 print_mention_exception_catchpoint,
9982 print_recreate_exception_catchpoint
3086aeae
DJ
9983};
9984
9985static int
9986handle_gnu_v3_exceptions (int tempflag, char *cond_string,
9987 enum exception_event_kind ex_event, int from_tty)
9988{
604133b5
AR
9989 char *trigger_func_name;
9990
3086aeae 9991 if (ex_event == EX_EVENT_CATCH)
604133b5 9992 trigger_func_name = "__cxa_begin_catch";
3086aeae 9993 else
604133b5 9994 trigger_func_name = "__cxa_throw";
3086aeae 9995
8cdf0e15
VP
9996 create_breakpoint (get_current_arch (),
9997 trigger_func_name, cond_string, -1,
9998 0 /* condition and thread are valid. */,
0fb4aa4b 9999 tempflag, bp_breakpoint,
8cdf0e15
VP
10000 0,
10001 AUTO_BOOLEAN_TRUE /* pending */,
10002 &gnu_v3_exception_catchpoint_ops, from_tty,
84f4c1fe
PM
10003 1 /* enabled */,
10004 0 /* internal */);
3086aeae 10005
3086aeae
DJ
10006 return 1;
10007}
10008
4a64f543 10009/* Deal with "catch catch" and "catch throw" commands. */
c906108c
SS
10010
10011static void
fba45db2
KB
10012catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
10013 int tempflag, int from_tty)
c906108c 10014{
c5aa993b 10015 char *cond_string = NULL;
c5aa993b 10016
44feb3ce
TT
10017 if (!arg)
10018 arg = "";
e9cafbcc 10019 arg = skip_spaces (arg);
c5aa993b 10020
c906108c
SS
10021 cond_string = ep_parse_optional_if_clause (&arg);
10022
10023 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 10024 error (_("Junk at end of arguments."));
c906108c 10025
059fb39f
PM
10026 if (ex_event != EX_EVENT_THROW
10027 && ex_event != EX_EVENT_CATCH)
8a3fe4f8 10028 error (_("Unsupported or unknown exception event; cannot catch it"));
c906108c 10029
3086aeae
DJ
10030 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
10031 return;
10032
8a3fe4f8 10033 warning (_("Unsupported with this platform/compiler combination."));
c906108c
SS
10034}
10035
44feb3ce
TT
10036/* Implementation of "catch catch" command. */
10037
10038static void
10039catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
10040{
10041 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 10042
44feb3ce
TT
10043 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
10044}
10045
10046/* Implementation of "catch throw" command. */
10047
10048static void
10049catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
10050{
10051 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 10052
44feb3ce
TT
10053 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
10054}
10055
9ac4176b 10056void
28010a5d
PA
10057init_ada_exception_breakpoint (struct breakpoint *b,
10058 struct gdbarch *gdbarch,
10059 struct symtab_and_line sal,
10060 char *addr_string,
10061 struct breakpoint_ops *ops,
10062 int tempflag,
10063 int from_tty)
f7f9143b 10064{
f7f9143b
JB
10065 if (from_tty)
10066 {
5af949e3
UW
10067 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
10068 if (!loc_gdbarch)
10069 loc_gdbarch = gdbarch;
10070
6c95b8df
PA
10071 describe_other_breakpoints (loc_gdbarch,
10072 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
10073 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
10074 version for exception catchpoints, because two catchpoints
10075 used for different exception names will use the same address.
10076 In this case, a "breakpoint ... also set at..." warning is
4a64f543 10077 unproductive. Besides, the warning phrasing is also a bit
f7f9143b
JB
10078 inapropriate, we should use the word catchpoint, and tell
10079 the user what type of catchpoint it is. The above is good
10080 enough for now, though. */
10081 }
10082
28010a5d 10083 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b
JB
10084
10085 b->enable_state = bp_enabled;
10086 b->disposition = tempflag ? disp_del : disp_donttouch;
f7f9143b
JB
10087 b->addr_string = addr_string;
10088 b->language = language_ada;
f7f9143b
JB
10089}
10090
a96d9b2e
SDJ
10091/* Cleanup function for a syscall filter list. */
10092static void
10093clean_up_filters (void *arg)
10094{
10095 VEC(int) *iter = *(VEC(int) **) arg;
10096 VEC_free (int, iter);
10097}
10098
10099/* Splits the argument using space as delimiter. Returns an xmalloc'd
10100 filter list, or NULL if no filtering is required. */
10101static VEC(int) *
10102catch_syscall_split_args (char *arg)
10103{
10104 VEC(int) *result = NULL;
10105 struct cleanup *cleanup = make_cleanup (clean_up_filters, &result);
10106
10107 while (*arg != '\0')
10108 {
10109 int i, syscall_number;
10110 char *endptr;
10111 char cur_name[128];
10112 struct syscall s;
10113
10114 /* Skip whitespace. */
10115 while (isspace (*arg))
10116 arg++;
10117
10118 for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i)
10119 cur_name[i] = arg[i];
10120 cur_name[i] = '\0';
10121 arg += i;
10122
10123 /* Check if the user provided a syscall name or a number. */
10124 syscall_number = (int) strtol (cur_name, &endptr, 0);
10125 if (*endptr == '\0')
bccd0dd2 10126 get_syscall_by_number (syscall_number, &s);
a96d9b2e
SDJ
10127 else
10128 {
10129 /* We have a name. Let's check if it's valid and convert it
10130 to a number. */
10131 get_syscall_by_name (cur_name, &s);
10132
10133 if (s.number == UNKNOWN_SYSCALL)
4a64f543
MS
10134 /* Here we have to issue an error instead of a warning,
10135 because GDB cannot do anything useful if there's no
10136 syscall number to be caught. */
a96d9b2e
SDJ
10137 error (_("Unknown syscall name '%s'."), cur_name);
10138 }
10139
10140 /* Ok, it's valid. */
10141 VEC_safe_push (int, result, s.number);
10142 }
10143
10144 discard_cleanups (cleanup);
10145 return result;
10146}
10147
10148/* Implement the "catch syscall" command. */
10149
10150static void
cc59ec59
MS
10151catch_syscall_command_1 (char *arg, int from_tty,
10152 struct cmd_list_element *command)
a96d9b2e
SDJ
10153{
10154 int tempflag;
10155 VEC(int) *filter;
10156 struct syscall s;
10157 struct gdbarch *gdbarch = get_current_arch ();
10158
10159 /* Checking if the feature if supported. */
10160 if (gdbarch_get_syscall_number_p (gdbarch) == 0)
10161 error (_("The feature 'catch syscall' is not supported on \
ea666128 10162this architecture yet."));
a96d9b2e
SDJ
10163
10164 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
10165
e9cafbcc 10166 arg = skip_spaces (arg);
a96d9b2e
SDJ
10167
10168 /* We need to do this first "dummy" translation in order
10169 to get the syscall XML file loaded or, most important,
10170 to display a warning to the user if there's no XML file
10171 for his/her architecture. */
10172 get_syscall_by_number (0, &s);
10173
10174 /* The allowed syntax is:
10175 catch syscall
10176 catch syscall <name | number> [<name | number> ... <name | number>]
10177
10178 Let's check if there's a syscall name. */
10179
10180 if (arg != NULL)
10181 filter = catch_syscall_split_args (arg);
10182 else
10183 filter = NULL;
10184
10185 create_syscall_event_catchpoint (tempflag, filter,
10186 &catch_syscall_breakpoint_ops);
10187}
10188
c906108c 10189static void
fba45db2 10190catch_command (char *arg, int from_tty)
c906108c 10191{
44feb3ce 10192 error (_("Catch requires an event name."));
c906108c
SS
10193}
10194\f
10195
10196static void
fba45db2 10197tcatch_command (char *arg, int from_tty)
c906108c 10198{
44feb3ce 10199 error (_("Catch requires an event name."));
c906108c
SS
10200}
10201
80f8a6eb 10202/* Delete breakpoints by address or line. */
c906108c
SS
10203
10204static void
fba45db2 10205clear_command (char *arg, int from_tty)
c906108c 10206{
d6e956e5
VP
10207 struct breakpoint *b;
10208 VEC(breakpoint_p) *found = 0;
10209 int ix;
c906108c
SS
10210 int default_match;
10211 struct symtabs_and_lines sals;
10212 struct symtab_and_line sal;
c906108c
SS
10213 int i;
10214
10215 if (arg)
10216 {
10217 sals = decode_line_spec (arg, 1);
10218 default_match = 0;
10219 }
10220 else
10221 {
c5aa993b 10222 sals.sals = (struct symtab_and_line *)
c906108c 10223 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 10224 make_cleanup (xfree, sals.sals);
4a64f543 10225 init_sal (&sal); /* Initialize to zeroes. */
c906108c
SS
10226 sal.line = default_breakpoint_line;
10227 sal.symtab = default_breakpoint_symtab;
10228 sal.pc = default_breakpoint_address;
6c95b8df 10229 sal.pspace = default_breakpoint_pspace;
c906108c 10230 if (sal.symtab == 0)
8a3fe4f8 10231 error (_("No source file specified."));
c906108c
SS
10232
10233 sals.sals[0] = sal;
10234 sals.nelts = 1;
10235
10236 default_match = 1;
10237 }
10238
4a64f543
MS
10239 /* We don't call resolve_sal_pc here. That's not as bad as it
10240 seems, because all existing breakpoints typically have both
10241 file/line and pc set. So, if clear is given file/line, we can
10242 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
10243
10244 We only support clearing given the address explicitly
10245 present in breakpoint table. Say, we've set breakpoint
4a64f543 10246 at file:line. There were several PC values for that file:line,
ed0616c6 10247 due to optimization, all in one block.
4a64f543
MS
10248
10249 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
10250 PC corresponding to the same file:line, the breakpoint won't
10251 be cleared. We probably can still clear the breakpoint, but
10252 since the other PC value is never presented to user, user
10253 can only find it by guessing, and it does not seem important
10254 to support that. */
10255
4a64f543
MS
10256 /* For each line spec given, delete bps which correspond to it. Do
10257 it in two passes, solely to preserve the current behavior that
10258 from_tty is forced true if we delete more than one
10259 breakpoint. */
c906108c 10260
80f8a6eb 10261 found = NULL;
c906108c
SS
10262 for (i = 0; i < sals.nelts; i++)
10263 {
10264 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
10265 If line given (pc == 0), clear all bpts on specified line.
10266 If defaulting, clear all bpts on default line
c906108c 10267 or at default pc.
c5aa993b
JM
10268
10269 defaulting sal.pc != 0 tests to do
10270
10271 0 1 pc
10272 1 1 pc _and_ line
10273 0 0 line
10274 1 0 <can't happen> */
c906108c
SS
10275
10276 sal = sals.sals[i];
c906108c 10277
4a64f543 10278 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 10279 ALL_BREAKPOINTS (b)
c5aa993b 10280 {
0d381245 10281 int match = 0;
4a64f543 10282 /* Are we going to delete b? */
cc60f2e3 10283 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
10284 {
10285 struct bp_location *loc = b->loc;
10286 for (; loc; loc = loc->next)
10287 {
6c95b8df
PA
10288 int pc_match = sal.pc
10289 && (loc->pspace == sal.pspace)
0d381245
VP
10290 && (loc->address == sal.pc)
10291 && (!section_is_overlay (loc->section)
10292 || loc->section == sal.section);
10293 int line_match = ((default_match || (0 == sal.pc))
10294 && b->source_file != NULL
10295 && sal.symtab != NULL
6c95b8df 10296 && sal.pspace == loc->pspace
0ba1096a
KT
10297 && filename_cmp (b->source_file,
10298 sal.symtab->filename) == 0
0d381245
VP
10299 && b->line_number == sal.line);
10300 if (pc_match || line_match)
10301 {
10302 match = 1;
10303 break;
10304 }
10305 }
10306 }
10307
10308 if (match)
d6e956e5 10309 VEC_safe_push(breakpoint_p, found, b);
c906108c 10310 }
80f8a6eb
MS
10311 }
10312 /* Now go thru the 'found' chain and delete them. */
d6e956e5 10313 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
10314 {
10315 if (arg)
8a3fe4f8 10316 error (_("No breakpoint at %s."), arg);
80f8a6eb 10317 else
8a3fe4f8 10318 error (_("No breakpoint at this line."));
80f8a6eb 10319 }
c906108c 10320
d6e956e5 10321 if (VEC_length(breakpoint_p, found) > 1)
4a64f543 10322 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 10323 if (from_tty)
a3f17187 10324 {
d6e956e5 10325 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
10326 printf_unfiltered (_("Deleted breakpoint "));
10327 else
10328 printf_unfiltered (_("Deleted breakpoints "));
10329 }
80f8a6eb 10330 breakpoints_changed ();
d6e956e5
VP
10331
10332 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 10333 {
c5aa993b 10334 if (from_tty)
d6e956e5
VP
10335 printf_unfiltered ("%d ", b->number);
10336 delete_breakpoint (b);
c906108c 10337 }
80f8a6eb
MS
10338 if (from_tty)
10339 putchar_unfiltered ('\n');
c906108c
SS
10340}
10341\f
10342/* Delete breakpoint in BS if they are `delete' breakpoints and
10343 all breakpoints that are marked for deletion, whether hit or not.
10344 This is called after any breakpoint is hit, or after errors. */
10345
10346void
fba45db2 10347breakpoint_auto_delete (bpstat bs)
c906108c 10348{
35df4500 10349 struct breakpoint *b, *b_tmp;
c906108c
SS
10350
10351 for (; bs; bs = bs->next)
f431efe5
PA
10352 if (bs->breakpoint_at
10353 && bs->breakpoint_at->disposition == disp_del
c906108c 10354 && bs->stop)
f431efe5 10355 delete_breakpoint (bs->breakpoint_at);
c906108c 10356
35df4500 10357 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 10358 {
b5de0fa7 10359 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
10360 delete_breakpoint (b);
10361 }
c906108c
SS
10362}
10363
4a64f543
MS
10364/* A comparison function for bp_location AP and BP being interfaced to
10365 qsort. Sort elements primarily by their ADDRESS (no matter what
10366 does breakpoint_address_is_meaningful say for its OWNER),
10367 secondarily by ordering first bp_permanent OWNERed elements and
10368 terciarily just ensuring the array is sorted stable way despite
10369 qsort being an instable algorithm. */
876fa593
JK
10370
10371static int
494cfb0f 10372bp_location_compare (const void *ap, const void *bp)
876fa593 10373{
494cfb0f
JK
10374 struct bp_location *a = *(void **) ap;
10375 struct bp_location *b = *(void **) bp;
2bdf28a0 10376 /* A and B come from existing breakpoints having non-NULL OWNER. */
876fa593
JK
10377 int a_perm = a->owner->enable_state == bp_permanent;
10378 int b_perm = b->owner->enable_state == bp_permanent;
10379
10380 if (a->address != b->address)
10381 return (a->address > b->address) - (a->address < b->address);
10382
10383 /* Sort permanent breakpoints first. */
10384 if (a_perm != b_perm)
10385 return (a_perm < b_perm) - (a_perm > b_perm);
10386
4a64f543
MS
10387 /* Make the user-visible order stable across GDB runs. Locations of
10388 the same breakpoint can be sorted in arbitrary order. */
876fa593
JK
10389
10390 if (a->owner->number != b->owner->number)
10391 return (a->owner->number > b->owner->number)
10392 - (a->owner->number < b->owner->number);
10393
10394 return (a > b) - (a < b);
10395}
10396
876fa593 10397/* Set bp_location_placed_address_before_address_max and
4a64f543
MS
10398 bp_location_shadow_len_after_address_max according to the current
10399 content of the bp_location array. */
f7545552
TT
10400
10401static void
876fa593 10402bp_location_target_extensions_update (void)
f7545552 10403{
876fa593
JK
10404 struct bp_location *bl, **blp_tmp;
10405
10406 bp_location_placed_address_before_address_max = 0;
10407 bp_location_shadow_len_after_address_max = 0;
10408
10409 ALL_BP_LOCATIONS (bl, blp_tmp)
10410 {
10411 CORE_ADDR start, end, addr;
10412
10413 if (!bp_location_has_shadow (bl))
10414 continue;
10415
10416 start = bl->target_info.placed_address;
10417 end = start + bl->target_info.shadow_len;
10418
10419 gdb_assert (bl->address >= start);
10420 addr = bl->address - start;
10421 if (addr > bp_location_placed_address_before_address_max)
10422 bp_location_placed_address_before_address_max = addr;
10423
10424 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
10425
10426 gdb_assert (bl->address < end);
10427 addr = end - bl->address;
10428 if (addr > bp_location_shadow_len_after_address_max)
10429 bp_location_shadow_len_after_address_max = addr;
10430 }
f7545552
TT
10431}
10432
4cd9bd08 10433/* If SHOULD_INSERT is false, do not insert any breakpoint locations
b60e7edf
PA
10434 into the inferior, only remove already-inserted locations that no
10435 longer should be inserted. Functions that delete a breakpoint or
10436 breakpoints should pass false, so that deleting a breakpoint
10437 doesn't have the side effect of inserting the locations of other
10438 breakpoints that are marked not-inserted, but should_be_inserted
10439 returns true on them.
10440
10441 This behaviour is useful is situations close to tear-down -- e.g.,
10442 after an exec, while the target still has execution, but breakpoint
10443 shadows of the previous executable image should *NOT* be restored
10444 to the new image; or before detaching, where the target still has
10445 execution and wants to delete breakpoints from GDB's lists, and all
10446 breakpoints had already been removed from the inferior. */
10447
0d381245 10448static void
b60e7edf 10449update_global_location_list (int should_insert)
0d381245 10450{
74960c60 10451 struct breakpoint *b;
876fa593 10452 struct bp_location **locp, *loc;
f7545552
TT
10453 struct cleanup *cleanups;
10454
2d134ed3
PA
10455 /* Used in the duplicates detection below. When iterating over all
10456 bp_locations, points to the first bp_location of a given address.
10457 Breakpoints and watchpoints of different types are never
10458 duplicates of each other. Keep one pointer for each type of
10459 breakpoint/watchpoint, so we only need to loop over all locations
10460 once. */
10461 struct bp_location *bp_loc_first; /* breakpoint */
10462 struct bp_location *wp_loc_first; /* hardware watchpoint */
10463 struct bp_location *awp_loc_first; /* access watchpoint */
10464 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 10465
4a64f543
MS
10466 /* Saved former bp_location array which we compare against the newly
10467 built bp_location from the current state of ALL_BREAKPOINTS. */
876fa593
JK
10468 struct bp_location **old_location, **old_locp;
10469 unsigned old_location_count;
10470
10471 old_location = bp_location;
10472 old_location_count = bp_location_count;
10473 bp_location = NULL;
10474 bp_location_count = 0;
10475 cleanups = make_cleanup (xfree, old_location);
0d381245 10476
74960c60 10477 ALL_BREAKPOINTS (b)
876fa593
JK
10478 for (loc = b->loc; loc; loc = loc->next)
10479 bp_location_count++;
10480
10481 bp_location = xmalloc (sizeof (*bp_location) * bp_location_count);
10482 locp = bp_location;
10483 ALL_BREAKPOINTS (b)
10484 for (loc = b->loc; loc; loc = loc->next)
10485 *locp++ = loc;
10486 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 10487 bp_location_compare);
876fa593
JK
10488
10489 bp_location_target_extensions_update ();
74960c60 10490
4a64f543
MS
10491 /* Identify bp_location instances that are no longer present in the
10492 new list, and therefore should be freed. Note that it's not
10493 necessary that those locations should be removed from inferior --
10494 if there's another location at the same address (previously
10495 marked as duplicate), we don't need to remove/insert the
10496 location.
876fa593 10497
4a64f543
MS
10498 LOCP is kept in sync with OLD_LOCP, each pointing to the current
10499 and former bp_location array state respectively. */
876fa593
JK
10500
10501 locp = bp_location;
10502 for (old_locp = old_location; old_locp < old_location + old_location_count;
10503 old_locp++)
74960c60 10504 {
876fa593 10505 struct bp_location *old_loc = *old_locp;
c7d46a38 10506 struct bp_location **loc2p;
876fa593 10507
4a64f543
MS
10508 /* Tells if 'old_loc' is found amoung the new locations. If
10509 not, we have to free it. */
c7d46a38 10510 int found_object = 0;
20874c92
VP
10511 /* Tells if the location should remain inserted in the target. */
10512 int keep_in_target = 0;
10513 int removed = 0;
876fa593 10514
4a64f543
MS
10515 /* Skip LOCP entries which will definitely never be needed.
10516 Stop either at or being the one matching OLD_LOC. */
876fa593 10517 while (locp < bp_location + bp_location_count
c7d46a38 10518 && (*locp)->address < old_loc->address)
876fa593 10519 locp++;
c7d46a38
PA
10520
10521 for (loc2p = locp;
10522 (loc2p < bp_location + bp_location_count
10523 && (*loc2p)->address == old_loc->address);
10524 loc2p++)
10525 {
10526 if (*loc2p == old_loc)
10527 {
10528 found_object = 1;
10529 break;
10530 }
10531 }
74960c60 10532
4a64f543
MS
10533 /* If this location is no longer present, and inserted, look if
10534 there's maybe a new location at the same address. If so,
10535 mark that one inserted, and don't remove this one. This is
10536 needed so that we don't have a time window where a breakpoint
10537 at certain location is not inserted. */
74960c60 10538
876fa593 10539 if (old_loc->inserted)
0d381245 10540 {
4a64f543
MS
10541 /* If the location is inserted now, we might have to remove
10542 it. */
74960c60 10543
876fa593 10544 if (found_object && should_be_inserted (old_loc))
74960c60 10545 {
4a64f543
MS
10546 /* The location is still present in the location list,
10547 and still should be inserted. Don't do anything. */
20874c92 10548 keep_in_target = 1;
74960c60
VP
10549 }
10550 else
10551 {
4a64f543
MS
10552 /* The location is either no longer present, or got
10553 disabled. See if there's another location at the
10554 same address, in which case we don't need to remove
10555 this one from the target. */
876fa593 10556
2bdf28a0 10557 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
10558 if (breakpoint_address_is_meaningful (old_loc->owner))
10559 {
876fa593 10560 for (loc2p = locp;
c7d46a38
PA
10561 (loc2p < bp_location + bp_location_count
10562 && (*loc2p)->address == old_loc->address);
876fa593
JK
10563 loc2p++)
10564 {
10565 struct bp_location *loc2 = *loc2p;
10566
2d134ed3 10567 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38
PA
10568 {
10569 /* For the sake of should_be_inserted.
4a64f543
MS
10570 Duplicates check below will fix up this
10571 later. */
c7d46a38 10572 loc2->duplicate = 0;
85d721b8
PA
10573
10574 /* Read watchpoint locations are switched to
10575 access watchpoints, if the former are not
10576 supported, but the latter are. */
10577 if (is_hardware_watchpoint (old_loc->owner))
10578 {
10579 gdb_assert (is_hardware_watchpoint (loc2->owner));
10580 loc2->watchpoint_type = old_loc->watchpoint_type;
10581 }
10582
c7d46a38
PA
10583 if (loc2 != old_loc && should_be_inserted (loc2))
10584 {
10585 loc2->inserted = 1;
10586 loc2->target_info = old_loc->target_info;
10587 keep_in_target = 1;
10588 break;
10589 }
876fa593
JK
10590 }
10591 }
10592 }
74960c60
VP
10593 }
10594
20874c92
VP
10595 if (!keep_in_target)
10596 {
876fa593 10597 if (remove_breakpoint (old_loc, mark_uninserted))
20874c92 10598 {
4a64f543
MS
10599 /* This is just about all we can do. We could keep
10600 this location on the global list, and try to
10601 remove it next time, but there's no particular
10602 reason why we will succeed next time.
20874c92 10603
4a64f543
MS
10604 Note that at this point, old_loc->owner is still
10605 valid, as delete_breakpoint frees the breakpoint
10606 only after calling us. */
3e43a32a
MS
10607 printf_filtered (_("warning: Error removing "
10608 "breakpoint %d\n"),
876fa593 10609 old_loc->owner->number);
20874c92
VP
10610 }
10611 removed = 1;
10612 }
0d381245 10613 }
74960c60
VP
10614
10615 if (!found_object)
1c5cfe86 10616 {
db82e815
PA
10617 if (removed && non_stop
10618 && breakpoint_address_is_meaningful (old_loc->owner)
10619 && !is_hardware_watchpoint (old_loc->owner))
20874c92 10620 {
db82e815
PA
10621 /* This location was removed from the target. In
10622 non-stop mode, a race condition is possible where
10623 we've removed a breakpoint, but stop events for that
10624 breakpoint are already queued and will arrive later.
10625 We apply an heuristic to be able to distinguish such
10626 SIGTRAPs from other random SIGTRAPs: we keep this
10627 breakpoint location for a bit, and will retire it
10628 after we see some number of events. The theory here
10629 is that reporting of events should, "on the average",
10630 be fair, so after a while we'll see events from all
10631 threads that have anything of interest, and no longer
10632 need to keep this breakpoint location around. We
10633 don't hold locations forever so to reduce chances of
10634 mistaking a non-breakpoint SIGTRAP for a breakpoint
10635 SIGTRAP.
10636
10637 The heuristic failing can be disastrous on
10638 decr_pc_after_break targets.
10639
10640 On decr_pc_after_break targets, like e.g., x86-linux,
10641 if we fail to recognize a late breakpoint SIGTRAP,
10642 because events_till_retirement has reached 0 too
10643 soon, we'll fail to do the PC adjustment, and report
10644 a random SIGTRAP to the user. When the user resumes
10645 the inferior, it will most likely immediately crash
2dec564e 10646 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
10647 corrupted, because of being resumed e.g., in the
10648 middle of a multi-byte instruction, or skipped a
10649 one-byte instruction. This was actually seen happen
10650 on native x86-linux, and should be less rare on
10651 targets that do not support new thread events, like
10652 remote, due to the heuristic depending on
10653 thread_count.
10654
10655 Mistaking a random SIGTRAP for a breakpoint trap
10656 causes similar symptoms (PC adjustment applied when
10657 it shouldn't), but then again, playing with SIGTRAPs
10658 behind the debugger's back is asking for trouble.
10659
10660 Since hardware watchpoint traps are always
10661 distinguishable from other traps, so we don't need to
10662 apply keep hardware watchpoint moribund locations
10663 around. We simply always ignore hardware watchpoint
10664 traps we can no longer explain. */
10665
876fa593
JK
10666 old_loc->events_till_retirement = 3 * (thread_count () + 1);
10667 old_loc->owner = NULL;
20874c92 10668
876fa593 10669 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
10670 }
10671 else
f431efe5
PA
10672 {
10673 old_loc->owner = NULL;
10674 decref_bp_location (&old_loc);
10675 }
20874c92 10676 }
74960c60 10677 }
1c5cfe86 10678
2d134ed3
PA
10679 /* Rescan breakpoints at the same address and section, marking the
10680 first one as "first" and any others as "duplicates". This is so
10681 that the bpt instruction is only inserted once. If we have a
10682 permanent breakpoint at the same place as BPT, make that one the
10683 official one, and the rest as duplicates. Permanent breakpoints
10684 are sorted first for the same address.
10685
10686 Do the same for hardware watchpoints, but also considering the
10687 watchpoint's type (regular/access/read) and length. */
876fa593 10688
2d134ed3
PA
10689 bp_loc_first = NULL;
10690 wp_loc_first = NULL;
10691 awp_loc_first = NULL;
10692 rwp_loc_first = NULL;
876fa593 10693 ALL_BP_LOCATIONS (loc, locp)
74960c60 10694 {
4a64f543
MS
10695 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
10696 non-NULL. */
876fa593 10697 struct breakpoint *b = loc->owner;
2d134ed3 10698 struct bp_location **loc_first_p;
876fa593
JK
10699
10700 if (b->enable_state == bp_disabled
10701 || b->enable_state == bp_call_disabled
10702 || b->enable_state == bp_startup_disabled
10703 || !loc->enabled
10704 || loc->shlib_disabled
15c3d785 10705 || !breakpoint_address_is_meaningful (b)
d77f58be 10706 || is_tracepoint (b))
876fa593
JK
10707 continue;
10708
10709 /* Permanent breakpoint should always be inserted. */
10710 if (b->enable_state == bp_permanent && ! loc->inserted)
10711 internal_error (__FILE__, __LINE__,
10712 _("allegedly permanent breakpoint is not "
10713 "actually inserted"));
10714
2d134ed3
PA
10715 if (b->type == bp_hardware_watchpoint)
10716 loc_first_p = &wp_loc_first;
10717 else if (b->type == bp_read_watchpoint)
10718 loc_first_p = &rwp_loc_first;
10719 else if (b->type == bp_access_watchpoint)
10720 loc_first_p = &awp_loc_first;
10721 else
10722 loc_first_p = &bp_loc_first;
10723
10724 if (*loc_first_p == NULL
10725 || (overlay_debugging && loc->section != (*loc_first_p)->section)
10726 || !breakpoint_locations_match (loc, *loc_first_p))
876fa593 10727 {
2d134ed3 10728 *loc_first_p = loc;
876fa593
JK
10729 loc->duplicate = 0;
10730 continue;
10731 }
10732
10733 loc->duplicate = 1;
10734
2d134ed3
PA
10735 if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted
10736 && b->enable_state != bp_permanent)
876fa593
JK
10737 internal_error (__FILE__, __LINE__,
10738 _("another breakpoint was inserted on top of "
10739 "a permanent breakpoint"));
0d381245 10740 }
74960c60 10741
50c71eaf 10742 if (breakpoints_always_inserted_mode () && should_insert
c35b1492 10743 && (have_live_inferiors ()
2567c7d9 10744 || (gdbarch_has_global_breakpoints (target_gdbarch))))
74960c60 10745 insert_breakpoint_locations ();
f7545552
TT
10746
10747 do_cleanups (cleanups);
74960c60
VP
10748}
10749
20874c92
VP
10750void
10751breakpoint_retire_moribund (void)
10752{
10753 struct bp_location *loc;
10754 int ix;
10755
10756 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
10757 if (--(loc->events_till_retirement) == 0)
10758 {
f431efe5 10759 decref_bp_location (&loc);
20874c92
VP
10760 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
10761 --ix;
10762 }
10763}
10764
74960c60 10765static void
b60e7edf 10766update_global_location_list_nothrow (int inserting)
74960c60
VP
10767{
10768 struct gdb_exception e;
cc59ec59 10769
74960c60 10770 TRY_CATCH (e, RETURN_MASK_ERROR)
b60e7edf 10771 update_global_location_list (inserting);
0d381245
VP
10772}
10773
f431efe5
PA
10774/* Clear BKP from a BPS. */
10775
a474d7c2 10776static void
f431efe5 10777bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
a474d7c2
PA
10778{
10779 bpstat bs;
cc59ec59 10780
a474d7c2 10781 for (bs = bps; bs; bs = bs->next)
f431efe5 10782 if (bs->breakpoint_at == bpt)
a474d7c2
PA
10783 {
10784 bs->breakpoint_at = NULL;
10785 bs->old_val = NULL;
10786 /* bs->commands will be freed later. */
10787 }
10788}
10789
10790/* Callback for iterate_over_threads. */
10791static int
f431efe5 10792bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
a474d7c2 10793{
f431efe5 10794 struct breakpoint *bpt = data;
cc59ec59 10795
16c381f0 10796 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
a474d7c2
PA
10797 return 0;
10798}
10799
53a5351d 10800/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 10801 structures. */
c906108c
SS
10802
10803void
fba45db2 10804delete_breakpoint (struct breakpoint *bpt)
c906108c 10805{
52f0bd74 10806 struct breakpoint *b;
c906108c 10807
8a3fe4f8 10808 gdb_assert (bpt != NULL);
c906108c 10809
4a64f543
MS
10810 /* Has this bp already been deleted? This can happen because
10811 multiple lists can hold pointers to bp's. bpstat lists are
10812 especial culprits.
10813
10814 One example of this happening is a watchpoint's scope bp. When
10815 the scope bp triggers, we notice that the watchpoint is out of
10816 scope, and delete it. We also delete its scope bp. But the
10817 scope bp is marked "auto-deleting", and is already on a bpstat.
10818 That bpstat is then checked for auto-deleting bp's, which are
10819 deleted.
10820
10821 A real solution to this problem might involve reference counts in
10822 bp's, and/or giving them pointers back to their referencing
10823 bpstat's, and teaching delete_breakpoint to only free a bp's
10824 storage when no more references were extent. A cheaper bandaid
10825 was chosen. */
c906108c
SS
10826 if (bpt->type == bp_none)
10827 return;
10828
4a64f543
MS
10829 /* At least avoid this stale reference until the reference counting
10830 of breakpoints gets resolved. */
d0fb5eae 10831 if (bpt->related_breakpoint != bpt)
e5a0a904 10832 {
d0fb5eae
JK
10833 struct breakpoint *related;
10834
10835 if (bpt->type == bp_watchpoint_scope)
10836 watchpoint_del_at_next_stop (bpt->related_breakpoint);
10837 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
10838 watchpoint_del_at_next_stop (bpt);
10839
10840 /* Unlink bpt from the bpt->related_breakpoint ring. */
10841 for (related = bpt; related->related_breakpoint != bpt;
10842 related = related->related_breakpoint);
10843 related->related_breakpoint = bpt->related_breakpoint;
10844 bpt->related_breakpoint = bpt;
e5a0a904
JK
10845 }
10846
a9634178
TJB
10847 /* watch_command_1 creates a watchpoint but only sets its number if
10848 update_watchpoint succeeds in creating its bp_locations. If there's
10849 a problem in that process, we'll be asked to delete the half-created
10850 watchpoint. In that case, don't announce the deletion. */
10851 if (bpt->number)
10852 observer_notify_breakpoint_deleted (bpt);
c906108c 10853
c906108c
SS
10854 if (breakpoint_chain == bpt)
10855 breakpoint_chain = bpt->next;
10856
c906108c
SS
10857 ALL_BREAKPOINTS (b)
10858 if (b->next == bpt)
c5aa993b
JM
10859 {
10860 b->next = bpt->next;
10861 break;
10862 }
c906108c 10863
be5c67c1
PA
10864 if (bpt->ops != NULL && bpt->ops->dtor != NULL)
10865 bpt->ops->dtor (bpt);
10866
9add0f1b 10867 decref_counted_command_line (&bpt->commands);
60e1c644
PA
10868 xfree (bpt->cond_string);
10869 xfree (bpt->cond_exp);
10870 xfree (bpt->addr_string);
f1310107 10871 xfree (bpt->addr_string_range_end);
60e1c644
PA
10872 xfree (bpt->exp);
10873 xfree (bpt->exp_string);
d63d0675 10874 xfree (bpt->exp_string_reparse);
60e1c644
PA
10875 value_free (bpt->val);
10876 xfree (bpt->source_file);
c906108c 10877
f431efe5
PA
10878
10879 /* Be sure no bpstat's are pointing at the breakpoint after it's
10880 been freed. */
10881 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
10882 in all threeds for now. Note that we cannot just remove bpstats
10883 pointing at bpt from the stop_bpstat list entirely, as breakpoint
10884 commands are associated with the bpstat; if we remove it here,
10885 then the later call to bpstat_do_actions (&stop_bpstat); in
10886 event-top.c won't do anything, and temporary breakpoints with
10887 commands won't work. */
10888
10889 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
10890
4a64f543
MS
10891 /* Now that breakpoint is removed from breakpoint list, update the
10892 global location list. This will remove locations that used to
10893 belong to this breakpoint. Do this before freeing the breakpoint
10894 itself, since remove_breakpoint looks at location's owner. It
10895 might be better design to have location completely
10896 self-contained, but it's not the case now. */
b60e7edf 10897 update_global_location_list (0);
74960c60
VP
10898
10899
4a64f543
MS
10900 /* On the chance that someone will soon try again to delete this
10901 same bp, we mark it as deleted before freeing its storage. */
c906108c
SS
10902 bpt->type = bp_none;
10903
b8c9b27d 10904 xfree (bpt);
c906108c
SS
10905}
10906
4d6140d9
AC
10907static void
10908do_delete_breakpoint_cleanup (void *b)
10909{
10910 delete_breakpoint (b);
10911}
10912
10913struct cleanup *
10914make_cleanup_delete_breakpoint (struct breakpoint *b)
10915{
10916 return make_cleanup (do_delete_breakpoint_cleanup, b);
10917}
10918
51be5b68
PA
10919/* Iterator function to call a user-provided callback function once
10920 for each of B and its related breakpoints. */
10921
10922static void
10923iterate_over_related_breakpoints (struct breakpoint *b,
10924 void (*function) (struct breakpoint *,
10925 void *),
10926 void *data)
10927{
10928 struct breakpoint *related;
10929
10930 related = b;
10931 do
10932 {
10933 struct breakpoint *next;
10934
10935 /* FUNCTION may delete RELATED. */
10936 next = related->related_breakpoint;
10937
10938 if (next == related)
10939 {
10940 /* RELATED is the last ring entry. */
10941 function (related, data);
10942
10943 /* FUNCTION may have deleted it, so we'd never reach back to
10944 B. There's nothing left to do anyway, so just break
10945 out. */
10946 break;
10947 }
10948 else
10949 function (related, data);
10950
10951 related = next;
10952 }
10953 while (related != b);
10954}
95a42b64
TT
10955
10956static void
10957do_delete_breakpoint (struct breakpoint *b, void *ignore)
10958{
10959 delete_breakpoint (b);
10960}
10961
51be5b68
PA
10962/* A callback for map_breakpoint_numbers that calls
10963 delete_breakpoint. */
10964
10965static void
10966do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
10967{
10968 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
10969}
10970
c906108c 10971void
fba45db2 10972delete_command (char *arg, int from_tty)
c906108c 10973{
35df4500 10974 struct breakpoint *b, *b_tmp;
c906108c 10975
ea9365bb
TT
10976 dont_repeat ();
10977
c906108c
SS
10978 if (arg == 0)
10979 {
10980 int breaks_to_delete = 0;
10981
46c6471b
PA
10982 /* Delete all breakpoints if no argument. Do not delete
10983 internal breakpoints, these have to be deleted with an
10984 explicit breakpoint number argument. */
c5aa993b 10985 ALL_BREAKPOINTS (b)
46c6471b 10986 if (user_breakpoint_p (b))
973d738b
DJ
10987 {
10988 breaks_to_delete = 1;
10989 break;
10990 }
c906108c
SS
10991
10992 /* Ask user only if there are some breakpoints to delete. */
10993 if (!from_tty
e2e0b3e5 10994 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 10995 {
35df4500 10996 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 10997 if (user_breakpoint_p (b))
c5aa993b 10998 delete_breakpoint (b);
c906108c
SS
10999 }
11000 }
11001 else
51be5b68 11002 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
c906108c
SS
11003}
11004
0d381245
VP
11005static int
11006all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 11007{
0d381245
VP
11008 for (; loc; loc = loc->next)
11009 if (!loc->shlib_disabled)
11010 return 0;
11011 return 1;
fe3f5fa8
VP
11012}
11013
776592bf
DE
11014/* Subroutine of update_breakpoint_locations to simplify it.
11015 Return non-zero if multiple fns in list LOC have the same name.
11016 Null names are ignored. */
11017
11018static int
11019ambiguous_names_p (struct bp_location *loc)
11020{
11021 struct bp_location *l;
11022 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
11023 (int (*) (const void *,
11024 const void *)) streq,
776592bf
DE
11025 NULL, xcalloc, xfree);
11026
11027 for (l = loc; l != NULL; l = l->next)
11028 {
11029 const char **slot;
11030 const char *name = l->function_name;
11031
11032 /* Allow for some names to be NULL, ignore them. */
11033 if (name == NULL)
11034 continue;
11035
11036 slot = (const char **) htab_find_slot (htab, (const void *) name,
11037 INSERT);
4a64f543
MS
11038 /* NOTE: We can assume slot != NULL here because xcalloc never
11039 returns NULL. */
776592bf
DE
11040 if (*slot != NULL)
11041 {
11042 htab_delete (htab);
11043 return 1;
11044 }
11045 *slot = name;
11046 }
11047
11048 htab_delete (htab);
11049 return 0;
11050}
11051
0fb4aa4b
PA
11052/* When symbols change, it probably means the sources changed as well,
11053 and it might mean the static tracepoint markers are no longer at
11054 the same address or line numbers they used to be at last we
11055 checked. Losing your static tracepoints whenever you rebuild is
11056 undesirable. This function tries to resync/rematch gdb static
11057 tracepoints with the markers on the target, for static tracepoints
11058 that have not been set by marker id. Static tracepoint that have
11059 been set by marker id are reset by marker id in breakpoint_re_set.
11060 The heuristic is:
11061
11062 1) For a tracepoint set at a specific address, look for a marker at
11063 the old PC. If one is found there, assume to be the same marker.
11064 If the name / string id of the marker found is different from the
11065 previous known name, assume that means the user renamed the marker
11066 in the sources, and output a warning.
11067
11068 2) For a tracepoint set at a given line number, look for a marker
11069 at the new address of the old line number. If one is found there,
11070 assume to be the same marker. If the name / string id of the
11071 marker found is different from the previous known name, assume that
11072 means the user renamed the marker in the sources, and output a
11073 warning.
11074
11075 3) If a marker is no longer found at the same address or line, it
11076 may mean the marker no longer exists. But it may also just mean
11077 the code changed a bit. Maybe the user added a few lines of code
11078 that made the marker move up or down (in line number terms). Ask
11079 the target for info about the marker with the string id as we knew
11080 it. If found, update line number and address in the matching
11081 static tracepoint. This will get confused if there's more than one
11082 marker with the same ID (possible in UST, although unadvised
11083 precisely because it confuses tools). */
11084
11085static struct symtab_and_line
11086update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
11087{
11088 struct static_tracepoint_marker marker;
11089 CORE_ADDR pc;
11090 int i;
11091
11092 pc = sal.pc;
11093 if (sal.line)
11094 find_line_pc (sal.symtab, sal.line, &pc);
11095
11096 if (target_static_tracepoint_marker_at (pc, &marker))
11097 {
11098 if (strcmp (b->static_trace_marker_id, marker.str_id) != 0)
11099 warning (_("static tracepoint %d changed probed marker from %s to %s"),
11100 b->number,
11101 b->static_trace_marker_id, marker.str_id);
11102
11103 xfree (b->static_trace_marker_id);
11104 b->static_trace_marker_id = xstrdup (marker.str_id);
11105 release_static_tracepoint_marker (&marker);
11106
11107 return sal;
11108 }
11109
11110 /* Old marker wasn't found on target at lineno. Try looking it up
11111 by string ID. */
11112 if (!sal.explicit_pc
11113 && sal.line != 0
11114 && sal.symtab != NULL
11115 && b->static_trace_marker_id != NULL)
11116 {
11117 VEC(static_tracepoint_marker_p) *markers;
11118
11119 markers
11120 = target_static_tracepoint_markers_by_strid (b->static_trace_marker_id);
11121
11122 if (!VEC_empty(static_tracepoint_marker_p, markers))
11123 {
11124 struct symtab_and_line sal;
11125 struct symbol *sym;
11126 struct static_tracepoint_marker *marker;
11127
11128 marker = VEC_index (static_tracepoint_marker_p, markers, 0);
11129
11130 xfree (b->static_trace_marker_id);
11131 b->static_trace_marker_id = xstrdup (marker->str_id);
11132
11133 warning (_("marker for static tracepoint %d (%s) not "
11134 "found at previous line number"),
11135 b->number, b->static_trace_marker_id);
11136
11137 init_sal (&sal);
11138
11139 sal.pc = marker->address;
11140
11141 sal = find_pc_line (marker->address, 0);
11142 sym = find_pc_sect_function (marker->address, NULL);
11143 ui_out_text (uiout, "Now in ");
11144 if (sym)
11145 {
11146 ui_out_field_string (uiout, "func",
11147 SYMBOL_PRINT_NAME (sym));
11148 ui_out_text (uiout, " at ");
11149 }
11150 ui_out_field_string (uiout, "file", sal.symtab->filename);
11151 ui_out_text (uiout, ":");
11152
11153 if (ui_out_is_mi_like_p (uiout))
11154 {
11155 char *fullname = symtab_to_fullname (sal.symtab);
11156
11157 if (fullname)
11158 ui_out_field_string (uiout, "fullname", fullname);
11159 }
11160
11161 ui_out_field_int (uiout, "line", sal.line);
11162 ui_out_text (uiout, "\n");
11163
11164 b->line_number = sal.line;
11165
11166 xfree (b->source_file);
11167 if (sym)
11168 b->source_file = xstrdup (sal.symtab->filename);
11169 else
11170 b->source_file = NULL;
11171
11172 xfree (b->addr_string);
11173 b->addr_string = xstrprintf ("%s:%d",
11174 sal.symtab->filename, b->line_number);
11175
11176 /* Might be nice to check if function changed, and warn if
11177 so. */
11178
11179 release_static_tracepoint_marker (marker);
11180 }
11181 }
11182 return sal;
11183}
11184
8d3788bd
VP
11185/* Returns 1 iff locations A and B are sufficiently same that
11186 we don't need to report breakpoint as changed. */
11187
11188static int
11189locations_are_equal (struct bp_location *a, struct bp_location *b)
11190{
11191 while (a && b)
11192 {
11193 if (a->address != b->address)
11194 return 0;
11195
11196 if (a->shlib_disabled != b->shlib_disabled)
11197 return 0;
11198
11199 if (a->enabled != b->enabled)
11200 return 0;
11201
11202 a = a->next;
11203 b = b->next;
11204 }
11205
11206 if ((a == NULL) != (b == NULL))
11207 return 0;
11208
11209 return 1;
11210}
11211
f1310107
TJB
11212/* Create new breakpoint locations for B (a hardware or software breakpoint)
11213 based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is
11214 a ranged breakpoint. */
11215
0e30163f 11216void
0d381245 11217update_breakpoint_locations (struct breakpoint *b,
f1310107
TJB
11218 struct symtabs_and_lines sals,
11219 struct symtabs_and_lines sals_end)
fe3f5fa8
VP
11220{
11221 int i;
0d381245
VP
11222 struct bp_location *existing_locations = b->loc;
11223
f1310107
TJB
11224 /* Ranged breakpoints have only one start location and one end location. */
11225 gdb_assert (sals_end.nelts == 0 || (sals.nelts == 1 && sals_end.nelts == 1));
11226
4a64f543
MS
11227 /* If there's no new locations, and all existing locations are
11228 pending, don't do anything. This optimizes the common case where
11229 all locations are in the same shared library, that was unloaded.
11230 We'd like to retain the location, so that when the library is
11231 loaded again, we don't loose the enabled/disabled status of the
11232 individual locations. */
0d381245 11233 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
11234 return;
11235
fe3f5fa8
VP
11236 b->loc = NULL;
11237
0d381245 11238 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 11239 {
0d381245 11240 struct bp_location *new_loc =
39d61571 11241 add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 11242
0d381245
VP
11243 /* Reparse conditions, they might contain references to the
11244 old symtab. */
11245 if (b->cond_string != NULL)
11246 {
f1310107 11247 char *s;
0d381245 11248 struct gdb_exception e;
fe3f5fa8 11249
0d381245
VP
11250 s = b->cond_string;
11251 TRY_CATCH (e, RETURN_MASK_ERROR)
11252 {
11253 new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
11254 0);
11255 }
11256 if (e.reason < 0)
11257 {
3e43a32a
MS
11258 warning (_("failed to reevaluate condition "
11259 "for breakpoint %d: %s"),
0d381245
VP
11260 b->number, e.message);
11261 new_loc->enabled = 0;
11262 }
11263 }
fe3f5fa8 11264
0d381245
VP
11265 if (b->source_file != NULL)
11266 xfree (b->source_file);
11267 if (sals.sals[i].symtab == NULL)
11268 b->source_file = NULL;
11269 else
1b36a34b 11270 b->source_file = xstrdup (sals.sals[i].symtab->filename);
fe3f5fa8 11271
0d381245
VP
11272 if (b->line_number == 0)
11273 b->line_number = sals.sals[i].line;
f1310107
TJB
11274
11275 if (sals_end.nelts)
11276 {
11277 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
11278
11279 new_loc->length = end - sals.sals[0].pc + 1;
11280 }
0d381245 11281 }
fe3f5fa8 11282
514f746b
AR
11283 /* Update locations of permanent breakpoints. */
11284 if (b->enable_state == bp_permanent)
11285 make_breakpoint_permanent (b);
11286
4a64f543
MS
11287 /* If possible, carry over 'disable' status from existing
11288 breakpoints. */
0d381245
VP
11289 {
11290 struct bp_location *e = existing_locations;
776592bf
DE
11291 /* If there are multiple breakpoints with the same function name,
11292 e.g. for inline functions, comparing function names won't work.
11293 Instead compare pc addresses; this is just a heuristic as things
11294 may have moved, but in practice it gives the correct answer
11295 often enough until a better solution is found. */
11296 int have_ambiguous_names = ambiguous_names_p (b->loc);
11297
0d381245
VP
11298 for (; e; e = e->next)
11299 {
11300 if (!e->enabled && e->function_name)
11301 {
11302 struct bp_location *l = b->loc;
776592bf
DE
11303 if (have_ambiguous_names)
11304 {
11305 for (; l; l = l->next)
f1310107 11306 if (breakpoint_locations_match (e, l))
776592bf
DE
11307 {
11308 l->enabled = 0;
11309 break;
11310 }
11311 }
11312 else
11313 {
11314 for (; l; l = l->next)
11315 if (l->function_name
11316 && strcmp (e->function_name, l->function_name) == 0)
11317 {
11318 l->enabled = 0;
11319 break;
11320 }
11321 }
0d381245
VP
11322 }
11323 }
11324 }
fe3f5fa8 11325
8d3788bd
VP
11326 if (!locations_are_equal (existing_locations, b->loc))
11327 observer_notify_breakpoint_modified (b);
11328
b60e7edf 11329 update_global_location_list (1);
fe3f5fa8
VP
11330}
11331
ef23e705
TJB
11332/* Find the SaL locations corresponding to the given ADDR_STRING.
11333 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
11334
11335static struct symtabs_and_lines
11336addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found)
11337{
11338 char *s;
58438ac1 11339 int marker_spec;
02d20e4a 11340 struct symtabs_and_lines sals = {0};
ef23e705
TJB
11341 struct gdb_exception e;
11342
11343 s = addr_string;
11344 marker_spec = b->type == bp_static_tracepoint && is_marker_spec (s);
11345
11346 TRY_CATCH (e, RETURN_MASK_ERROR)
11347 {
11348 if (marker_spec)
11349 {
11350 sals = decode_static_tracepoint_spec (&s);
11351 if (sals.nelts > b->static_trace_marker_id_idx)
11352 {
11353 sals.sals[0] = sals.sals[b->static_trace_marker_id_idx];
11354 sals.nelts = 1;
11355 }
11356 else
11357 error (_("marker %s not found"), b->static_trace_marker_id);
11358 }
11359 else
58438ac1 11360 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, NULL);
ef23e705
TJB
11361 }
11362 if (e.reason < 0)
11363 {
11364 int not_found_and_ok = 0;
11365 /* For pending breakpoints, it's expected that parsing will
11366 fail until the right shared library is loaded. User has
11367 already told to create pending breakpoints and don't need
11368 extra messages. If breakpoint is in bp_shlib_disabled
11369 state, then user already saw the message about that
11370 breakpoint being disabled, and don't want to see more
11371 errors. */
58438ac1 11372 if (e.error == NOT_FOUND_ERROR
ef23e705
TJB
11373 && (b->condition_not_parsed
11374 || (b->loc && b->loc->shlib_disabled)
11375 || b->enable_state == bp_disabled))
11376 not_found_and_ok = 1;
11377
11378 if (!not_found_and_ok)
11379 {
11380 /* We surely don't want to warn about the same breakpoint
11381 10 times. One solution, implemented here, is disable
11382 the breakpoint on error. Another solution would be to
11383 have separate 'warning emitted' flag. Since this
11384 happens only when a binary has changed, I don't know
11385 which approach is better. */
11386 b->enable_state = bp_disabled;
11387 throw_exception (e);
11388 }
11389 }
11390
58438ac1 11391 if (e.reason == 0 || e.error != NOT_FOUND_ERROR)
ef23e705
TJB
11392 {
11393 gdb_assert (sals.nelts == 1);
11394
11395 resolve_sal_pc (&sals.sals[0]);
11396 if (b->condition_not_parsed && s && s[0])
11397 {
11398 char *cond_string = 0;
11399 int thread = -1;
11400 int task = 0;
11401
11402 find_condition_and_thread (s, sals.sals[0].pc,
11403 &cond_string, &thread, &task);
11404 if (cond_string)
11405 b->cond_string = cond_string;
11406 b->thread = thread;
11407 b->task = task;
11408 b->condition_not_parsed = 0;
11409 }
11410
11411 if (b->type == bp_static_tracepoint && !marker_spec)
11412 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
ef23e705 11413
58438ac1
TT
11414 *found = 1;
11415 }
11416 else
11417 *found = 0;
ef23e705
TJB
11418
11419 return sals;
11420}
11421
28010a5d
PA
11422void
11423breakpoint_re_set_default (struct breakpoint *b)
ef23e705
TJB
11424{
11425 int found;
f1310107 11426 struct symtabs_and_lines sals, sals_end;
ef23e705 11427 struct symtabs_and_lines expanded = {0};
f1310107 11428 struct symtabs_and_lines expanded_end = {0};
ef23e705
TJB
11429
11430 sals = addr_string_to_sals (b, b->addr_string, &found);
11431 if (found)
11432 {
11433 make_cleanup (xfree, sals.sals);
11434 expanded = expand_line_sal_maybe (sals.sals[0]);
11435 }
11436
f1310107
TJB
11437 if (b->addr_string_range_end)
11438 {
11439 sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found);
11440 if (found)
11441 {
11442 make_cleanup (xfree, sals_end.sals);
11443 expanded_end = expand_line_sal_maybe (sals_end.sals[0]);
11444 }
11445 }
11446
11447 update_breakpoint_locations (b, expanded, expanded_end);
28010a5d
PA
11448}
11449
11450/* Prepare the global context for a re-set of breakpoint B. */
11451
11452static struct cleanup *
11453prepare_re_set_context (struct breakpoint *b)
11454{
11455 struct cleanup *cleanups;
11456
11457 input_radix = b->input_radix;
11458 cleanups = save_current_space_and_thread ();
11459 switch_to_program_space_and_thread (b->pspace);
11460 set_language (b->language);
11461
11462 return cleanups;
ef23e705
TJB
11463}
11464
c906108c
SS
11465/* Reset a breakpoint given it's struct breakpoint * BINT.
11466 The value we return ends up being the return value from catch_errors.
11467 Unused in this case. */
11468
11469static int
4efb68b1 11470breakpoint_re_set_one (void *bint)
c906108c 11471{
4a64f543 11472 /* Get past catch_errs. */
53a5351d 11473 struct breakpoint *b = (struct breakpoint *) bint;
c906108c 11474
28010a5d
PA
11475 if (b->ops != NULL && b->ops->re_set != NULL)
11476 {
11477 struct cleanup *cleanups;
11478
11479 cleanups = prepare_re_set_context (b);
11480 b->ops->re_set (b);
11481 do_cleanups (cleanups);
11482
11483 return 0;
11484 }
11485
c906108c
SS
11486 switch (b->type)
11487 {
11488 case bp_none:
8a3fe4f8 11489 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
53a5351d 11490 b->number);
c906108c
SS
11491 return 0;
11492 case bp_breakpoint:
11493 case bp_hardware_breakpoint:
1042e4c0 11494 case bp_tracepoint:
7a697b8d 11495 case bp_fast_tracepoint:
0fb4aa4b 11496 case bp_static_tracepoint:
0e30163f 11497 case bp_gnu_ifunc_resolver:
8bea4e01
UW
11498 /* Do not attempt to re-set breakpoints disabled during startup. */
11499 if (b->enable_state == bp_startup_disabled)
11500 return 0;
11501
c906108c
SS
11502 if (b->addr_string == NULL)
11503 {
4a64f543 11504 /* Anything without a string can't be re-set. */
c906108c
SS
11505 delete_breakpoint (b);
11506 return 0;
11507 }
c906108c 11508
28010a5d
PA
11509 {
11510 struct cleanup *cleanups;
11511
11512 cleanups = prepare_re_set_context (b);
11513 breakpoint_re_set_default (b);
11514 do_cleanups (cleanups);
11515 }
c906108c
SS
11516 break;
11517
11518 case bp_watchpoint:
11519 case bp_hardware_watchpoint:
11520 case bp_read_watchpoint:
11521 case bp_access_watchpoint:
4a64f543
MS
11522 /* Watchpoint can be either on expression using entirely global
11523 variables, or it can be on local variables.
11524
11525 Watchpoints of the first kind are never auto-deleted, and
11526 even persist across program restarts. Since they can use
11527 variables from shared libraries, we need to reparse
11528 expression as libraries are loaded and unloaded.
11529
11530 Watchpoints on local variables can also change meaning as
11531 result of solib event. For example, if a watchpoint uses
11532 both a local and a global variables in expression, it's a
11533 local watchpoint, but unloading of a shared library will make
11534 the expression invalid. This is not a very common use case,
11535 but we still re-evaluate expression, to avoid surprises to
11536 the user.
0b3de036
VP
11537
11538 Note that for local watchpoints, we re-evaluate it only if
11539 watchpoints frame id is still valid. If it's not, it means
4a64f543
MS
11540 the watchpoint is out of scope and will be deleted soon. In
11541 fact, I'm not sure we'll ever be called in this case.
0b3de036
VP
11542
11543 If a local watchpoint's frame id is still valid, then
4a64f543 11544 b->exp_valid_block is likewise valid, and we can safely use it.
0b3de036
VP
11545
11546 Don't do anything about disabled watchpoints, since they will
11547 be reevaluated again when enabled. */
a5606eee 11548 update_watchpoint (b, 1 /* reparse */);
c906108c 11549 break;
c5aa993b
JM
11550 /* We needn't really do anything to reset these, since the mask
11551 that requests them is unaffected by e.g., new libraries being
4a64f543 11552 loaded. */
ce78b96d 11553 case bp_catchpoint:
c906108c 11554 break;
c5aa993b 11555
c906108c 11556 default:
a3f17187 11557 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
c906108c 11558 /* fall through */
0fd8e87f
UW
11559 /* Delete overlay event and longjmp master breakpoints; they will be
11560 reset later by breakpoint_re_set. */
1900040c 11561 case bp_overlay_event:
0fd8e87f 11562 case bp_longjmp_master:
aa7d318d 11563 case bp_std_terminate_master:
186c406b 11564 case bp_exception_master:
c906108c
SS
11565 delete_breakpoint (b);
11566 break;
11567
c5aa993b
JM
11568 /* This breakpoint is special, it's set up when the inferior
11569 starts and we really don't want to touch it. */
c906108c
SS
11570 case bp_shlib_event:
11571
c4093a6a
JM
11572 /* Like bp_shlib_event, this breakpoint type is special.
11573 Once it is set up, we do not want to touch it. */
11574 case bp_thread_event:
11575
4a64f543
MS
11576 /* Keep temporary breakpoints, which can be encountered when we
11577 step over a dlopen call and SOLIB_ADD is resetting the
11578 breakpoints. Otherwise these should have been blown away via
11579 the cleanup chain or by breakpoint_init_inferior when we
11580 rerun the executable. */
c906108c
SS
11581 case bp_until:
11582 case bp_finish:
11583 case bp_watchpoint_scope:
11584 case bp_call_dummy:
aa7d318d 11585 case bp_std_terminate:
c906108c 11586 case bp_step_resume:
2c03e5be 11587 case bp_hp_step_resume:
611c83ae
PA
11588 case bp_longjmp:
11589 case bp_longjmp_resume:
186c406b
TT
11590 case bp_exception:
11591 case bp_exception_resume:
4efc6507 11592 case bp_jit_event:
0e30163f 11593 case bp_gnu_ifunc_resolver_return:
c906108c
SS
11594 break;
11595 }
11596
11597 return 0;
11598}
11599
69de3c6a 11600/* Re-set all breakpoints after symbols have been re-loaded. */
c906108c 11601void
69de3c6a 11602breakpoint_re_set (void)
c906108c 11603{
35df4500 11604 struct breakpoint *b, *b_tmp;
c906108c
SS
11605 enum language save_language;
11606 int save_input_radix;
6c95b8df 11607 struct cleanup *old_chain;
c5aa993b 11608
c906108c
SS
11609 save_language = current_language->la_language;
11610 save_input_radix = input_radix;
6c95b8df
PA
11611 old_chain = save_current_program_space ();
11612
35df4500 11613 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 11614 {
4a64f543 11615 /* Format possible error msg. */
fe3f5fa8 11616 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
11617 b->number);
11618 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 11619 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 11620 do_cleanups (cleanups);
c5aa993b 11621 }
c906108c
SS
11622 set_language (save_language);
11623 input_radix = save_input_radix;
e62c965a 11624
0756c555 11625 jit_breakpoint_re_set ();
4efc6507 11626
6c95b8df
PA
11627 do_cleanups (old_chain);
11628
af02033e
PP
11629 create_overlay_event_breakpoint ();
11630 create_longjmp_master_breakpoint ();
11631 create_std_terminate_master_breakpoint ();
186c406b 11632 create_exception_master_breakpoint ();
c906108c
SS
11633}
11634\f
c906108c
SS
11635/* Reset the thread number of this breakpoint:
11636
11637 - If the breakpoint is for all threads, leave it as-is.
4a64f543 11638 - Else, reset it to the current thread for inferior_ptid. */
c906108c 11639void
fba45db2 11640breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
11641{
11642 if (b->thread != -1)
11643 {
39f77062
KB
11644 if (in_thread_list (inferior_ptid))
11645 b->thread = pid_to_thread_id (inferior_ptid);
6c95b8df
PA
11646
11647 /* We're being called after following a fork. The new fork is
11648 selected as current, and unless this was a vfork will have a
11649 different program space from the original thread. Reset that
11650 as well. */
11651 b->loc->pspace = current_program_space;
c906108c
SS
11652 }
11653}
11654
03ac34d5
MS
11655/* Set ignore-count of breakpoint number BPTNUM to COUNT.
11656 If from_tty is nonzero, it prints a message to that effect,
11657 which ends with a period (no newline). */
11658
c906108c 11659void
fba45db2 11660set_ignore_count (int bptnum, int count, int from_tty)
c906108c 11661{
52f0bd74 11662 struct breakpoint *b;
c906108c
SS
11663
11664 if (count < 0)
11665 count = 0;
11666
11667 ALL_BREAKPOINTS (b)
11668 if (b->number == bptnum)
c5aa993b 11669 {
d77f58be
SS
11670 if (is_tracepoint (b))
11671 {
11672 if (from_tty && count != 0)
11673 printf_filtered (_("Ignore count ignored for tracepoint %d."),
11674 bptnum);
11675 return;
11676 }
11677
c5aa993b 11678 b->ignore_count = count;
221ea385
KS
11679 if (from_tty)
11680 {
11681 if (count == 0)
3e43a32a
MS
11682 printf_filtered (_("Will stop next time "
11683 "breakpoint %d is reached."),
221ea385
KS
11684 bptnum);
11685 else if (count == 1)
a3f17187 11686 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
11687 bptnum);
11688 else
3e43a32a
MS
11689 printf_filtered (_("Will ignore next %d "
11690 "crossings of breakpoint %d."),
221ea385
KS
11691 count, bptnum);
11692 }
c5aa993b 11693 breakpoints_changed ();
8d3788bd 11694 observer_notify_breakpoint_modified (b);
c5aa993b
JM
11695 return;
11696 }
c906108c 11697
8a3fe4f8 11698 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
11699}
11700
c906108c
SS
11701/* Command to set ignore-count of breakpoint N to COUNT. */
11702
11703static void
fba45db2 11704ignore_command (char *args, int from_tty)
c906108c
SS
11705{
11706 char *p = args;
52f0bd74 11707 int num;
c906108c
SS
11708
11709 if (p == 0)
e2e0b3e5 11710 error_no_arg (_("a breakpoint number"));
c5aa993b 11711
c906108c 11712 num = get_number (&p);
5c44784c 11713 if (num == 0)
8a3fe4f8 11714 error (_("bad breakpoint number: '%s'"), args);
c906108c 11715 if (*p == 0)
8a3fe4f8 11716 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
11717
11718 set_ignore_count (num,
11719 longest_to_int (value_as_long (parse_and_eval (p))),
11720 from_tty);
221ea385
KS
11721 if (from_tty)
11722 printf_filtered ("\n");
c906108c
SS
11723}
11724\f
11725/* Call FUNCTION on each of the breakpoints
11726 whose numbers are given in ARGS. */
11727
11728static void
95a42b64
TT
11729map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
11730 void *),
11731 void *data)
c906108c 11732{
52f0bd74
AC
11733 int num;
11734 struct breakpoint *b, *tmp;
11cf8741 11735 int match;
197f0a60 11736 struct get_number_or_range_state state;
c906108c 11737
197f0a60 11738 if (args == 0)
e2e0b3e5 11739 error_no_arg (_("one or more breakpoint numbers"));
c906108c 11740
197f0a60
TT
11741 init_number_or_range (&state, args);
11742
11743 while (!state.finished)
c906108c 11744 {
197f0a60
TT
11745 char *p = state.string;
11746
11cf8741 11747 match = 0;
c5aa993b 11748
197f0a60 11749 num = get_number_or_range (&state);
5c44784c 11750 if (num == 0)
c5aa993b 11751 {
8a3fe4f8 11752 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
11753 }
11754 else
11755 {
11756 ALL_BREAKPOINTS_SAFE (b, tmp)
11757 if (b->number == num)
11758 {
11cf8741 11759 match = 1;
cdac0397 11760 function (b, data);
11cf8741 11761 break;
5c44784c 11762 }
11cf8741 11763 if (match == 0)
a3f17187 11764 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 11765 }
c906108c
SS
11766 }
11767}
11768
0d381245
VP
11769static struct bp_location *
11770find_location_by_number (char *number)
11771{
11772 char *dot = strchr (number, '.');
11773 char *p1;
11774 int bp_num;
11775 int loc_num;
11776 struct breakpoint *b;
11777 struct bp_location *loc;
11778
11779 *dot = '\0';
11780
11781 p1 = number;
197f0a60 11782 bp_num = get_number (&p1);
0d381245
VP
11783 if (bp_num == 0)
11784 error (_("Bad breakpoint number '%s'"), number);
11785
11786 ALL_BREAKPOINTS (b)
11787 if (b->number == bp_num)
11788 {
11789 break;
11790 }
11791
11792 if (!b || b->number != bp_num)
11793 error (_("Bad breakpoint number '%s'"), number);
11794
11795 p1 = dot+1;
197f0a60 11796 loc_num = get_number (&p1);
0d381245
VP
11797 if (loc_num == 0)
11798 error (_("Bad breakpoint location number '%s'"), number);
11799
11800 --loc_num;
11801 loc = b->loc;
11802 for (;loc_num && loc; --loc_num, loc = loc->next)
11803 ;
11804 if (!loc)
11805 error (_("Bad breakpoint location number '%s'"), dot+1);
11806
11807 return loc;
11808}
11809
11810
1900040c
MS
11811/* Set ignore-count of breakpoint number BPTNUM to COUNT.
11812 If from_tty is nonzero, it prints a message to that effect,
11813 which ends with a period (no newline). */
11814
c906108c 11815void
fba45db2 11816disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
11817{
11818 /* Never disable a watchpoint scope breakpoint; we want to
11819 hit them when we leave scope so we can delete both the
11820 watchpoint and its scope breakpoint at that time. */
11821 if (bpt->type == bp_watchpoint_scope)
11822 return;
11823
c2c6d25f 11824 /* You can't disable permanent breakpoints. */
b5de0fa7 11825 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
11826 return;
11827
b5de0fa7 11828 bpt->enable_state = bp_disabled;
c906108c 11829
d248b706
KY
11830 if (target_supports_enable_disable_tracepoint ()
11831 && current_trace_status ()->running && is_tracepoint (bpt))
11832 {
11833 struct bp_location *location;
11834
11835 for (location = bpt->loc; location; location = location->next)
11836 target_disable_tracepoint (location);
11837 }
11838
b60e7edf 11839 update_global_location_list (0);
c906108c 11840
8d3788bd 11841 observer_notify_breakpoint_modified (bpt);
c906108c
SS
11842}
11843
51be5b68
PA
11844/* A callback for iterate_over_related_breakpoints. */
11845
11846static void
11847do_disable_breakpoint (struct breakpoint *b, void *ignore)
11848{
11849 disable_breakpoint (b);
11850}
11851
95a42b64
TT
11852/* A callback for map_breakpoint_numbers that calls
11853 disable_breakpoint. */
11854
11855static void
11856do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
11857{
51be5b68 11858 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
95a42b64
TT
11859}
11860
c906108c 11861static void
fba45db2 11862disable_command (char *args, int from_tty)
c906108c 11863{
c906108c 11864 if (args == 0)
46c6471b
PA
11865 {
11866 struct breakpoint *bpt;
11867
11868 ALL_BREAKPOINTS (bpt)
11869 if (user_breakpoint_p (bpt))
11870 disable_breakpoint (bpt);
11871 }
0d381245
VP
11872 else if (strchr (args, '.'))
11873 {
11874 struct bp_location *loc = find_location_by_number (args);
11875 if (loc)
d248b706
KY
11876 {
11877 loc->enabled = 0;
11878 if (target_supports_enable_disable_tracepoint ()
11879 && current_trace_status ()->running && loc->owner
11880 && is_tracepoint (loc->owner))
11881 target_disable_tracepoint (loc);
11882 }
b60e7edf 11883 update_global_location_list (0);
0d381245 11884 }
c906108c 11885 else
95a42b64 11886 map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL);
c906108c
SS
11887}
11888
11889static void
51be5b68 11890enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition)
c906108c 11891{
afe38095 11892 int target_resources_ok;
c906108c
SS
11893
11894 if (bpt->type == bp_hardware_breakpoint)
11895 {
11896 int i;
c5aa993b 11897 i = hw_breakpoint_used_count ();
53a5351d 11898 target_resources_ok =
d92524f1 11899 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 11900 i + 1, 0);
c906108c 11901 if (target_resources_ok == 0)
8a3fe4f8 11902 error (_("No hardware breakpoint support in the target."));
c906108c 11903 else if (target_resources_ok < 0)
8a3fe4f8 11904 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
11905 }
11906
cc60f2e3 11907 if (is_watchpoint (bpt))
c906108c 11908 {
d07205c2
JK
11909 /* Initialize it just to avoid a GCC false warning. */
11910 enum enable_state orig_enable_state = 0;
dde02812
ES
11911 struct gdb_exception e;
11912
11913 TRY_CATCH (e, RETURN_MASK_ALL)
c906108c 11914 {
1e718ff1
TJB
11915 orig_enable_state = bpt->enable_state;
11916 bpt->enable_state = bp_enabled;
dde02812 11917 update_watchpoint (bpt, 1 /* reparse */);
c906108c 11918 }
dde02812 11919 if (e.reason < 0)
c5aa993b 11920 {
1e718ff1 11921 bpt->enable_state = orig_enable_state;
dde02812
ES
11922 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
11923 bpt->number);
11924 return;
c5aa993b 11925 }
c906108c 11926 }
0101ce28 11927
b4c291bb
KH
11928 if (bpt->enable_state != bp_permanent)
11929 bpt->enable_state = bp_enabled;
d248b706
KY
11930
11931 if (target_supports_enable_disable_tracepoint ()
11932 && current_trace_status ()->running && is_tracepoint (bpt))
11933 {
11934 struct bp_location *location;
11935
11936 for (location = bpt->loc; location; location = location->next)
11937 target_enable_tracepoint (location);
11938 }
11939
b4c291bb 11940 bpt->disposition = disposition;
b60e7edf 11941 update_global_location_list (1);
b4c291bb
KH
11942 breakpoints_changed ();
11943
8d3788bd 11944 observer_notify_breakpoint_modified (bpt);
c906108c
SS
11945}
11946
fe3f5fa8 11947
c906108c 11948void
fba45db2 11949enable_breakpoint (struct breakpoint *bpt)
c906108c 11950{
51be5b68
PA
11951 enable_breakpoint_disp (bpt, bpt->disposition);
11952}
11953
11954static void
11955do_enable_breakpoint (struct breakpoint *bpt, void *arg)
11956{
11957 enable_breakpoint (bpt);
c906108c
SS
11958}
11959
95a42b64
TT
11960/* A callback for map_breakpoint_numbers that calls
11961 enable_breakpoint. */
11962
11963static void
11964do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
11965{
51be5b68 11966 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
95a42b64
TT
11967}
11968
c906108c
SS
11969/* The enable command enables the specified breakpoints (or all defined
11970 breakpoints) so they once again become (or continue to be) effective
1272ad14 11971 in stopping the inferior. */
c906108c 11972
c906108c 11973static void
fba45db2 11974enable_command (char *args, int from_tty)
c906108c 11975{
c906108c 11976 if (args == 0)
46c6471b
PA
11977 {
11978 struct breakpoint *bpt;
11979
11980 ALL_BREAKPOINTS (bpt)
11981 if (user_breakpoint_p (bpt))
11982 enable_breakpoint (bpt);
11983 }
0d381245
VP
11984 else if (strchr (args, '.'))
11985 {
11986 struct bp_location *loc = find_location_by_number (args);
11987 if (loc)
d248b706
KY
11988 {
11989 loc->enabled = 1;
11990 if (target_supports_enable_disable_tracepoint ()
11991 && current_trace_status ()->running && loc->owner
11992 && is_tracepoint (loc->owner))
11993 target_enable_tracepoint (loc);
11994 }
b60e7edf 11995 update_global_location_list (1);
0d381245 11996 }
c906108c 11997 else
95a42b64 11998 map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL);
c906108c
SS
11999}
12000
12001static void
51be5b68
PA
12002do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
12003{
12004 enum bpdisp disp = *(enum bpdisp *) arg;
12005
12006 enable_breakpoint_disp (bpt, disp);
12007}
12008
12009static void
12010do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 12011{
51be5b68
PA
12012 enum bpdisp disp = disp_disable;
12013
12014 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
12015}
12016
c906108c 12017static void
fba45db2 12018enable_once_command (char *args, int from_tty)
c906108c 12019{
51be5b68 12020 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
c906108c
SS
12021}
12022
12023static void
51be5b68 12024do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 12025{
51be5b68
PA
12026 enum bpdisp disp = disp_del;
12027
12028 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
12029}
12030
c906108c 12031static void
fba45db2 12032enable_delete_command (char *args, int from_tty)
c906108c 12033{
51be5b68 12034 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
c906108c
SS
12035}
12036\f
fa8d40ab
JJ
12037static void
12038set_breakpoint_cmd (char *args, int from_tty)
12039{
12040}
12041
12042static void
12043show_breakpoint_cmd (char *args, int from_tty)
12044{
12045}
12046
1f3b5d1b
PP
12047/* Invalidate last known value of any hardware watchpoint if
12048 the memory which that value represents has been written to by
12049 GDB itself. */
12050
12051static void
12052invalidate_bp_value_on_memory_change (CORE_ADDR addr, int len,
12053 const bfd_byte *data)
12054{
12055 struct breakpoint *bp;
12056
12057 ALL_BREAKPOINTS (bp)
12058 if (bp->enable_state == bp_enabled
12059 && bp->type == bp_hardware_watchpoint
12060 && bp->val_valid && bp->val)
12061 {
12062 struct bp_location *loc;
12063
12064 for (loc = bp->loc; loc != NULL; loc = loc->next)
12065 if (loc->loc_type == bp_loc_hardware_watchpoint
12066 && loc->address + loc->length > addr
12067 && addr + len > loc->address)
12068 {
12069 value_free (bp->val);
12070 bp->val = NULL;
12071 bp->val_valid = 0;
12072 }
12073 }
12074}
12075
c906108c
SS
12076/* Use default_breakpoint_'s, or nothing if they aren't valid. */
12077
12078struct symtabs_and_lines
fba45db2 12079decode_line_spec_1 (char *string, int funfirstline)
c906108c
SS
12080{
12081 struct symtabs_and_lines sals;
cc59ec59 12082
c906108c 12083 if (string == 0)
8a3fe4f8 12084 error (_("Empty line specification."));
c906108c
SS
12085 if (default_breakpoint_valid)
12086 sals = decode_line_1 (&string, funfirstline,
53a5351d
JM
12087 default_breakpoint_symtab,
12088 default_breakpoint_line,
58438ac1 12089 NULL);
c906108c
SS
12090 else
12091 sals = decode_line_1 (&string, funfirstline,
58438ac1 12092 (struct symtab *) NULL, 0, NULL);
c906108c 12093 if (*string)
8a3fe4f8 12094 error (_("Junk at end of line specification: %s"), string);
c906108c
SS
12095 return sals;
12096}
8181d85f
DJ
12097
12098/* Create and insert a raw software breakpoint at PC. Return an
12099 identifier, which should be used to remove the breakpoint later.
12100 In general, places which call this should be using something on the
12101 breakpoint chain instead; this function should be eliminated
12102 someday. */
12103
12104void *
6c95b8df
PA
12105deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch,
12106 struct address_space *aspace, CORE_ADDR pc)
8181d85f
DJ
12107{
12108 struct bp_target_info *bp_tgt;
12109
6c95b8df 12110 bp_tgt = XZALLOC (struct bp_target_info);
8181d85f 12111
6c95b8df 12112 bp_tgt->placed_address_space = aspace;
8181d85f 12113 bp_tgt->placed_address = pc;
6c95b8df 12114
a6d9a66e 12115 if (target_insert_breakpoint (gdbarch, bp_tgt) != 0)
8181d85f
DJ
12116 {
12117 /* Could not insert the breakpoint. */
12118 xfree (bp_tgt);
12119 return NULL;
12120 }
12121
12122 return bp_tgt;
12123}
12124
4a64f543
MS
12125/* Remove a breakpoint BP inserted by
12126 deprecated_insert_raw_breakpoint. */
8181d85f
DJ
12127
12128int
a6d9a66e 12129deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp)
8181d85f
DJ
12130{
12131 struct bp_target_info *bp_tgt = bp;
12132 int ret;
12133
a6d9a66e 12134 ret = target_remove_breakpoint (gdbarch, bp_tgt);
8181d85f
DJ
12135 xfree (bp_tgt);
12136
12137 return ret;
12138}
12139
4a64f543
MS
12140/* One (or perhaps two) breakpoints used for software single
12141 stepping. */
8181d85f
DJ
12142
12143static void *single_step_breakpoints[2];
a6d9a66e 12144static struct gdbarch *single_step_gdbarch[2];
8181d85f
DJ
12145
12146/* Create and insert a breakpoint for software single step. */
12147
12148void
6c95b8df 12149insert_single_step_breakpoint (struct gdbarch *gdbarch,
4a64f543
MS
12150 struct address_space *aspace,
12151 CORE_ADDR next_pc)
8181d85f
DJ
12152{
12153 void **bpt_p;
12154
12155 if (single_step_breakpoints[0] == NULL)
a6d9a66e
UW
12156 {
12157 bpt_p = &single_step_breakpoints[0];
12158 single_step_gdbarch[0] = gdbarch;
12159 }
8181d85f
DJ
12160 else
12161 {
12162 gdb_assert (single_step_breakpoints[1] == NULL);
12163 bpt_p = &single_step_breakpoints[1];
a6d9a66e 12164 single_step_gdbarch[1] = gdbarch;
8181d85f
DJ
12165 }
12166
4a64f543
MS
12167 /* NOTE drow/2006-04-11: A future improvement to this function would
12168 be to only create the breakpoints once, and actually put them on
12169 the breakpoint chain. That would let us use set_raw_breakpoint.
12170 We could adjust the addresses each time they were needed. Doing
12171 this requires corresponding changes elsewhere where single step
12172 breakpoints are handled, however. So, for now, we use this. */
8181d85f 12173
6c95b8df 12174 *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc);
8181d85f 12175 if (*bpt_p == NULL)
5af949e3
UW
12176 error (_("Could not insert single-step breakpoint at %s"),
12177 paddress (gdbarch, next_pc));
8181d85f
DJ
12178}
12179
f02253f1
HZ
12180/* Check if the breakpoints used for software single stepping
12181 were inserted or not. */
12182
12183int
12184single_step_breakpoints_inserted (void)
12185{
12186 return (single_step_breakpoints[0] != NULL
12187 || single_step_breakpoints[1] != NULL);
12188}
12189
8181d85f
DJ
12190/* Remove and delete any breakpoints used for software single step. */
12191
12192void
12193remove_single_step_breakpoints (void)
12194{
12195 gdb_assert (single_step_breakpoints[0] != NULL);
12196
12197 /* See insert_single_step_breakpoint for more about this deprecated
12198 call. */
a6d9a66e
UW
12199 deprecated_remove_raw_breakpoint (single_step_gdbarch[0],
12200 single_step_breakpoints[0]);
12201 single_step_gdbarch[0] = NULL;
8181d85f
DJ
12202 single_step_breakpoints[0] = NULL;
12203
12204 if (single_step_breakpoints[1] != NULL)
12205 {
a6d9a66e
UW
12206 deprecated_remove_raw_breakpoint (single_step_gdbarch[1],
12207 single_step_breakpoints[1]);
12208 single_step_gdbarch[1] = NULL;
8181d85f
DJ
12209 single_step_breakpoints[1] = NULL;
12210 }
12211}
12212
d03285ec
UW
12213/* Delete software single step breakpoints without removing them from
12214 the inferior. This is intended to be used if the inferior's address
12215 space where they were inserted is already gone, e.g. after exit or
12216 exec. */
12217
12218void
12219cancel_single_step_breakpoints (void)
12220{
12221 int i;
12222
12223 for (i = 0; i < 2; i++)
12224 if (single_step_breakpoints[i])
12225 {
12226 xfree (single_step_breakpoints[i]);
12227 single_step_breakpoints[i] = NULL;
12228 single_step_gdbarch[i] = NULL;
12229 }
12230}
12231
12232/* Detach software single-step breakpoints from INFERIOR_PTID without
12233 removing them. */
12234
12235static void
12236detach_single_step_breakpoints (void)
12237{
12238 int i;
12239
12240 for (i = 0; i < 2; i++)
12241 if (single_step_breakpoints[i])
12242 target_remove_breakpoint (single_step_gdbarch[i],
12243 single_step_breakpoints[i]);
12244}
12245
4a64f543
MS
12246/* Check whether a software single-step breakpoint is inserted at
12247 PC. */
1aafd4da
UW
12248
12249static int
cc59ec59
MS
12250single_step_breakpoint_inserted_here_p (struct address_space *aspace,
12251 CORE_ADDR pc)
1aafd4da
UW
12252{
12253 int i;
12254
12255 for (i = 0; i < 2; i++)
12256 {
12257 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
6c95b8df
PA
12258 if (bp_tgt
12259 && breakpoint_address_match (bp_tgt->placed_address_space,
12260 bp_tgt->placed_address,
12261 aspace, pc))
1aafd4da
UW
12262 return 1;
12263 }
12264
12265 return 0;
12266}
12267
a96d9b2e
SDJ
12268/* Returns 0 if 'bp' is NOT a syscall catchpoint,
12269 non-zero otherwise. */
12270static int
12271is_syscall_catchpoint_enabled (struct breakpoint *bp)
12272{
12273 if (syscall_catchpoint_p (bp)
12274 && bp->enable_state != bp_disabled
12275 && bp->enable_state != bp_call_disabled)
12276 return 1;
12277 else
12278 return 0;
12279}
12280
12281int
12282catch_syscall_enabled (void)
12283{
12284 struct inferior *inf = current_inferior ();
12285
12286 return inf->total_syscalls_count != 0;
12287}
12288
12289int
12290catching_syscall_number (int syscall_number)
12291{
12292 struct breakpoint *bp;
12293
12294 ALL_BREAKPOINTS (bp)
12295 if (is_syscall_catchpoint_enabled (bp))
12296 {
be5c67c1
PA
12297 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp;
12298
12299 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
12300 {
12301 int i, iter;
12302 for (i = 0;
be5c67c1 12303 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
12304 i++)
12305 if (syscall_number == iter)
12306 return 1;
12307 }
12308 else
12309 return 1;
12310 }
12311
12312 return 0;
12313}
12314
12315/* Complete syscall names. Used by "catch syscall". */
12316static char **
12317catch_syscall_completer (struct cmd_list_element *cmd,
12318 char *text, char *word)
12319{
12320 const char **list = get_syscall_names ();
c38eea1a
MS
12321 char **retlist
12322 = (list == NULL) ? NULL : complete_on_enum (list, text, word);
cc59ec59 12323
c38eea1a
MS
12324 xfree (list);
12325 return retlist;
a96d9b2e
SDJ
12326}
12327
1042e4c0
SS
12328/* Tracepoint-specific operations. */
12329
12330/* Set tracepoint count to NUM. */
12331static void
12332set_tracepoint_count (int num)
12333{
12334 tracepoint_count = num;
4fa62494 12335 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
12336}
12337
12338void
12339trace_command (char *arg, int from_tty)
12340{
8cdf0e15
VP
12341 if (create_breakpoint (get_current_arch (),
12342 arg,
12343 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
12344 0 /* tempflag */,
12345 bp_tracepoint /* type_wanted */,
8cdf0e15
VP
12346 0 /* Ignore count */,
12347 pending_break_support,
12348 NULL,
12349 from_tty,
84f4c1fe
PM
12350 1 /* enabled */,
12351 0 /* internal */))
fd9b8c24 12352 set_tracepoint_count (breakpoint_count);
1042e4c0
SS
12353}
12354
7a697b8d
SS
12355void
12356ftrace_command (char *arg, int from_tty)
12357{
8cdf0e15
VP
12358 if (create_breakpoint (get_current_arch (),
12359 arg,
12360 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
12361 0 /* tempflag */,
12362 bp_fast_tracepoint /* type_wanted */,
12363 0 /* Ignore count */,
12364 pending_break_support,
12365 NULL,
12366 from_tty,
84f4c1fe
PM
12367 1 /* enabled */,
12368 0 /* internal */))
0fb4aa4b
PA
12369 set_tracepoint_count (breakpoint_count);
12370}
12371
12372/* strace command implementation. Creates a static tracepoint. */
12373
12374void
12375strace_command (char *arg, int from_tty)
12376{
12377 if (create_breakpoint (get_current_arch (),
12378 arg,
12379 NULL, 0, 1 /* parse arg */,
12380 0 /* tempflag */,
12381 bp_static_tracepoint /* type_wanted */,
8cdf0e15
VP
12382 0 /* Ignore count */,
12383 pending_break_support,
12384 NULL,
12385 from_tty,
84f4c1fe
PM
12386 1 /* enabled */,
12387 0 /* internal */))
fd9b8c24 12388 set_tracepoint_count (breakpoint_count);
7a697b8d
SS
12389}
12390
409873ef
SS
12391/* Set up a fake reader function that gets command lines from a linked
12392 list that was acquired during tracepoint uploading. */
12393
12394static struct uploaded_tp *this_utp;
3149d8c1 12395static int next_cmd;
409873ef
SS
12396
12397static char *
12398read_uploaded_action (void)
12399{
12400 char *rslt;
12401
3149d8c1 12402 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 12403
3149d8c1 12404 next_cmd++;
409873ef
SS
12405
12406 return rslt;
12407}
12408
00bf0b85
SS
12409/* Given information about a tracepoint as recorded on a target (which
12410 can be either a live system or a trace file), attempt to create an
12411 equivalent GDB tracepoint. This is not a reliable process, since
12412 the target does not necessarily have all the information used when
12413 the tracepoint was originally defined. */
12414
12415struct breakpoint *
12416create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 12417{
409873ef 12418 char *addr_str, small_buf[100];
d5551862 12419 struct breakpoint *tp;
fd9b8c24 12420
409873ef
SS
12421 if (utp->at_string)
12422 addr_str = utp->at_string;
12423 else
12424 {
12425 /* In the absence of a source location, fall back to raw
12426 address. Since there is no way to confirm that the address
12427 means the same thing as when the trace was started, warn the
12428 user. */
3e43a32a
MS
12429 warning (_("Uploaded tracepoint %d has no "
12430 "source location, using raw address"),
409873ef
SS
12431 utp->number);
12432 sprintf (small_buf, "*%s", hex_string (utp->addr));
12433 addr_str = small_buf;
12434 }
12435
12436 /* There's not much we can do with a sequence of bytecodes. */
12437 if (utp->cond && !utp->cond_string)
3e43a32a
MS
12438 warning (_("Uploaded tracepoint %d condition "
12439 "has no source form, ignoring it"),
409873ef 12440 utp->number);
d5551862 12441
8cdf0e15 12442 if (!create_breakpoint (get_current_arch (),
409873ef
SS
12443 addr_str,
12444 utp->cond_string, -1, 0 /* parse cond/thread */,
8cdf0e15 12445 0 /* tempflag */,
0fb4aa4b 12446 utp->type /* type_wanted */,
8cdf0e15
VP
12447 0 /* Ignore count */,
12448 pending_break_support,
12449 NULL,
12450 0 /* from_tty */,
84f4c1fe
PM
12451 utp->enabled /* enabled */,
12452 0 /* internal */))
fd9b8c24
PA
12453 return NULL;
12454
00bf0b85
SS
12455 set_tracepoint_count (breakpoint_count);
12456
409873ef 12457 /* Get the tracepoint we just created. */
fd9b8c24
PA
12458 tp = get_tracepoint (tracepoint_count);
12459 gdb_assert (tp != NULL);
d5551862 12460
00bf0b85
SS
12461 if (utp->pass > 0)
12462 {
409873ef 12463 sprintf (small_buf, "%d %d", utp->pass, tp->number);
00bf0b85 12464
409873ef 12465 trace_pass_command (small_buf, 0);
00bf0b85
SS
12466 }
12467
409873ef
SS
12468 /* If we have uploaded versions of the original commands, set up a
12469 special-purpose "reader" function and call the usual command line
12470 reader, then pass the result to the breakpoint command-setting
12471 function. */
3149d8c1 12472 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 12473 {
409873ef 12474 struct command_line *cmd_list;
00bf0b85 12475
409873ef 12476 this_utp = utp;
3149d8c1 12477 next_cmd = 0;
d5551862 12478
409873ef
SS
12479 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
12480
12481 breakpoint_set_commands (tp, cmd_list);
00bf0b85 12482 }
3149d8c1
SS
12483 else if (!VEC_empty (char_ptr, utp->actions)
12484 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
12485 warning (_("Uploaded tracepoint %d actions "
12486 "have no source form, ignoring them"),
409873ef 12487 utp->number);
00bf0b85
SS
12488
12489 return tp;
12490 }
12491
1042e4c0
SS
12492/* Print information on tracepoint number TPNUM_EXP, or all if
12493 omitted. */
12494
12495static void
e5a67952 12496tracepoints_info (char *args, int from_tty)
1042e4c0 12497{
e5a67952 12498 int num_printed;
1042e4c0 12499
e5a67952 12500 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
12501
12502 if (num_printed == 0)
1042e4c0 12503 {
e5a67952 12504 if (args == NULL || *args == '\0')
d77f58be
SS
12505 ui_out_message (uiout, 0, "No tracepoints.\n");
12506 else
e5a67952 12507 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
1042e4c0 12508 }
ad443146
SS
12509
12510 default_collect_info ();
1042e4c0
SS
12511}
12512
4a64f543 12513/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
12514 Not supported by all targets. */
12515static void
12516enable_trace_command (char *args, int from_tty)
12517{
12518 enable_command (args, from_tty);
12519}
12520
4a64f543 12521/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
12522 Not supported by all targets. */
12523static void
12524disable_trace_command (char *args, int from_tty)
12525{
12526 disable_command (args, from_tty);
12527}
12528
4a64f543 12529/* Remove a tracepoint (or all if no argument). */
1042e4c0
SS
12530static void
12531delete_trace_command (char *arg, int from_tty)
12532{
35df4500 12533 struct breakpoint *b, *b_tmp;
1042e4c0
SS
12534
12535 dont_repeat ();
12536
12537 if (arg == 0)
12538 {
12539 int breaks_to_delete = 0;
12540
12541 /* Delete all breakpoints if no argument.
12542 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
12543 have to be deleted with an explicit breakpoint number
12544 argument. */
1042e4c0 12545 ALL_TRACEPOINTS (b)
46c6471b 12546 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
12547 {
12548 breaks_to_delete = 1;
12549 break;
12550 }
1042e4c0
SS
12551
12552 /* Ask user only if there are some breakpoints to delete. */
12553 if (!from_tty
12554 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
12555 {
35df4500 12556 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 12557 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 12558 delete_breakpoint (b);
1042e4c0
SS
12559 }
12560 }
12561 else
51be5b68 12562 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
1042e4c0
SS
12563}
12564
197f0a60
TT
12565/* Helper function for trace_pass_command. */
12566
12567static void
12568trace_pass_set_count (struct breakpoint *bp, int count, int from_tty)
12569{
12570 bp->pass_count = count;
12571 observer_notify_tracepoint_modified (bp->number);
12572 if (from_tty)
12573 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
12574 bp->number, count);
12575}
12576
1042e4c0
SS
12577/* Set passcount for tracepoint.
12578
12579 First command argument is passcount, second is tracepoint number.
12580 If tracepoint number omitted, apply to most recently defined.
12581 Also accepts special argument "all". */
12582
12583static void
12584trace_pass_command (char *args, int from_tty)
12585{
197f0a60 12586 struct breakpoint *t1;
1042e4c0 12587 unsigned int count;
1042e4c0
SS
12588
12589 if (args == 0 || *args == 0)
3e43a32a
MS
12590 error (_("passcount command requires an "
12591 "argument (count + optional TP num)"));
1042e4c0 12592
4a64f543 12593 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0
SS
12594
12595 while (*args && isspace ((int) *args))
12596 args++;
12597
12598 if (*args && strncasecmp (args, "all", 3) == 0)
12599 {
12600 args += 3; /* Skip special argument "all". */
1042e4c0
SS
12601 if (*args)
12602 error (_("Junk at end of arguments."));
1042e4c0 12603
197f0a60
TT
12604 ALL_TRACEPOINTS (t1)
12605 {
12606 trace_pass_set_count (t1, count, from_tty);
12607 }
12608 }
12609 else if (*args == '\0')
1042e4c0 12610 {
197f0a60 12611 t1 = get_tracepoint_by_number (&args, NULL, 1);
1042e4c0 12612 if (t1)
197f0a60
TT
12613 trace_pass_set_count (t1, count, from_tty);
12614 }
12615 else
12616 {
12617 struct get_number_or_range_state state;
12618
12619 init_number_or_range (&state, args);
12620 while (!state.finished)
1042e4c0 12621 {
197f0a60
TT
12622 t1 = get_tracepoint_by_number (&args, &state, 1);
12623 if (t1)
12624 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
12625 }
12626 }
1042e4c0
SS
12627}
12628
12629struct breakpoint *
12630get_tracepoint (int num)
12631{
12632 struct breakpoint *t;
12633
12634 ALL_TRACEPOINTS (t)
12635 if (t->number == num)
12636 return t;
12637
12638 return NULL;
12639}
12640
d5551862
SS
12641/* Find the tracepoint with the given target-side number (which may be
12642 different from the tracepoint number after disconnecting and
12643 reconnecting). */
12644
12645struct breakpoint *
12646get_tracepoint_by_number_on_target (int num)
12647{
12648 struct breakpoint *t;
12649
12650 ALL_TRACEPOINTS (t)
12651 if (t->number_on_target == num)
12652 return t;
12653
12654 return NULL;
12655}
12656
1042e4c0 12657/* Utility: parse a tracepoint number and look it up in the list.
197f0a60
TT
12658 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
12659 If OPTIONAL_P is true, then if the argument is missing, the most
1042e4c0
SS
12660 recent tracepoint (tracepoint_count) is returned. */
12661struct breakpoint *
197f0a60
TT
12662get_tracepoint_by_number (char **arg,
12663 struct get_number_or_range_state *state,
12664 int optional_p)
1042e4c0
SS
12665{
12666 extern int tracepoint_count;
12667 struct breakpoint *t;
12668 int tpnum;
12669 char *instring = arg == NULL ? NULL : *arg;
12670
197f0a60
TT
12671 if (state)
12672 {
12673 gdb_assert (!state->finished);
12674 tpnum = get_number_or_range (state);
12675 }
12676 else if (arg == NULL || *arg == NULL || ! **arg)
1042e4c0
SS
12677 {
12678 if (optional_p)
12679 tpnum = tracepoint_count;
12680 else
12681 error_no_arg (_("tracepoint number"));
12682 }
12683 else
197f0a60 12684 tpnum = get_number (arg);
1042e4c0
SS
12685
12686 if (tpnum <= 0)
12687 {
12688 if (instring && *instring)
12689 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
12690 instring);
12691 else
3e43a32a
MS
12692 printf_filtered (_("Tracepoint argument missing "
12693 "and no previous tracepoint\n"));
1042e4c0
SS
12694 return NULL;
12695 }
12696
12697 ALL_TRACEPOINTS (t)
12698 if (t->number == tpnum)
12699 {
12700 return t;
12701 }
12702
1042e4c0
SS
12703 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
12704 return NULL;
12705}
12706
6149aea9
PA
12707/* Save information on user settable breakpoints (watchpoints, etc) to
12708 a new script file named FILENAME. If FILTER is non-NULL, call it
12709 on each breakpoint and only include the ones for which it returns
12710 non-zero. */
12711
1042e4c0 12712static void
6149aea9
PA
12713save_breakpoints (char *filename, int from_tty,
12714 int (*filter) (const struct breakpoint *))
1042e4c0
SS
12715{
12716 struct breakpoint *tp;
6149aea9 12717 int any = 0;
a7bdde9e 12718 char *pathname;
1042e4c0 12719 struct cleanup *cleanup;
a7bdde9e 12720 struct ui_file *fp;
6149aea9 12721 int extra_trace_bits = 0;
1042e4c0 12722
6149aea9
PA
12723 if (filename == 0 || *filename == 0)
12724 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
12725
12726 /* See if we have anything to save. */
6149aea9 12727 ALL_BREAKPOINTS (tp)
1042e4c0 12728 {
6149aea9 12729 /* Skip internal and momentary breakpoints. */
09d682a4 12730 if (!user_breakpoint_p (tp))
6149aea9
PA
12731 continue;
12732
12733 /* If we have a filter, only save the breakpoints it accepts. */
12734 if (filter && !filter (tp))
12735 continue;
12736
12737 any = 1;
12738
12739 if (is_tracepoint (tp))
12740 {
12741 extra_trace_bits = 1;
12742
12743 /* We can stop searching. */
12744 break;
12745 }
1042e4c0 12746 }
6149aea9
PA
12747
12748 if (!any)
1042e4c0 12749 {
6149aea9 12750 warning (_("Nothing to save."));
1042e4c0
SS
12751 return;
12752 }
12753
6149aea9 12754 pathname = tilde_expand (filename);
1042e4c0 12755 cleanup = make_cleanup (xfree, pathname);
a7bdde9e 12756 fp = gdb_fopen (pathname, "w");
059fb39f 12757 if (!fp)
6149aea9
PA
12758 error (_("Unable to open file '%s' for saving (%s)"),
12759 filename, safe_strerror (errno));
a7bdde9e 12760 make_cleanup_ui_file_delete (fp);
8bf6485c 12761
6149aea9
PA
12762 if (extra_trace_bits)
12763 save_trace_state_variables (fp);
8bf6485c 12764
6149aea9 12765 ALL_BREAKPOINTS (tp)
1042e4c0 12766 {
6149aea9 12767 /* Skip internal and momentary breakpoints. */
09d682a4 12768 if (!user_breakpoint_p (tp))
6149aea9 12769 continue;
8bf6485c 12770
6149aea9
PA
12771 /* If we have a filter, only save the breakpoints it accepts. */
12772 if (filter && !filter (tp))
12773 continue;
12774
26063d49 12775 if (tp->ops != NULL && tp->ops->print_recreate != NULL)
6149aea9 12776 (tp->ops->print_recreate) (tp, fp);
1042e4c0
SS
12777 else
12778 {
6149aea9
PA
12779 if (tp->type == bp_fast_tracepoint)
12780 fprintf_unfiltered (fp, "ftrace");
0fb4aa4b
PA
12781 if (tp->type == bp_static_tracepoint)
12782 fprintf_unfiltered (fp, "strace");
6149aea9
PA
12783 else if (tp->type == bp_tracepoint)
12784 fprintf_unfiltered (fp, "trace");
12785 else if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12786 fprintf_unfiltered (fp, "tbreak");
12787 else if (tp->type == bp_breakpoint)
12788 fprintf_unfiltered (fp, "break");
12789 else if (tp->type == bp_hardware_breakpoint
12790 && tp->disposition == disp_del)
12791 fprintf_unfiltered (fp, "thbreak");
12792 else if (tp->type == bp_hardware_breakpoint)
12793 fprintf_unfiltered (fp, "hbreak");
12794 else if (tp->type == bp_watchpoint)
12795 fprintf_unfiltered (fp, "watch");
12796 else if (tp->type == bp_hardware_watchpoint)
12797 fprintf_unfiltered (fp, "watch");
12798 else if (tp->type == bp_read_watchpoint)
12799 fprintf_unfiltered (fp, "rwatch");
12800 else if (tp->type == bp_access_watchpoint)
12801 fprintf_unfiltered (fp, "awatch");
12802 else
12803 internal_error (__FILE__, __LINE__,
12804 _("unhandled breakpoint type %d"), (int) tp->type);
12805
12806 if (tp->exp_string)
12807 fprintf_unfiltered (fp, " %s", tp->exp_string);
12808 else if (tp->addr_string)
12809 fprintf_unfiltered (fp, " %s", tp->addr_string);
12810 else
12811 {
12812 char tmp[40];
12813
12814 sprintf_vma (tmp, tp->loc->address);
12815 fprintf_unfiltered (fp, " *0x%s", tmp);
12816 }
1042e4c0
SS
12817 }
12818
6149aea9
PA
12819 if (tp->thread != -1)
12820 fprintf_unfiltered (fp, " thread %d", tp->thread);
12821
12822 if (tp->task != 0)
12823 fprintf_unfiltered (fp, " task %d", tp->task);
8bf6485c
SS
12824
12825 fprintf_unfiltered (fp, "\n");
12826
6149aea9
PA
12827 /* Note, we can't rely on tp->number for anything, as we can't
12828 assume the recreated breakpoint numbers will match. Use $bpnum
12829 instead. */
12830
12831 if (tp->cond_string)
12832 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
12833
12834 if (tp->ignore_count)
12835 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
12836
1042e4c0 12837 if (tp->pass_count)
a7bdde9e 12838 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
1042e4c0 12839
a7bdde9e 12840 if (tp->commands)
1042e4c0 12841 {
a7bdde9e
VP
12842 volatile struct gdb_exception ex;
12843
6149aea9 12844 fprintf_unfiltered (fp, " commands\n");
a7bdde9e
VP
12845
12846 ui_out_redirect (uiout, fp);
14dba4b4 12847 TRY_CATCH (ex, RETURN_MASK_ALL)
1042e4c0 12848 {
9add0f1b 12849 print_command_lines (uiout, tp->commands->commands, 2);
a7bdde9e
VP
12850 }
12851 ui_out_redirect (uiout, NULL);
1042e4c0 12852
a7bdde9e
VP
12853 if (ex.reason < 0)
12854 throw_exception (ex);
1042e4c0 12855
a7bdde9e 12856 fprintf_unfiltered (fp, " end\n");
1042e4c0 12857 }
6149aea9
PA
12858
12859 if (tp->enable_state == bp_disabled)
12860 fprintf_unfiltered (fp, "disable\n");
12861
12862 /* If this is a multi-location breakpoint, check if the locations
12863 should be individually disabled. Watchpoint locations are
12864 special, and not user visible. */
12865 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
12866 {
12867 struct bp_location *loc;
12868 int n = 1;
12869
12870 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
12871 if (!loc->enabled)
12872 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
12873 }
1042e4c0 12874 }
8bf6485c 12875
6149aea9 12876 if (extra_trace_bits && *default_collect)
8bf6485c
SS
12877 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
12878
1042e4c0
SS
12879 do_cleanups (cleanup);
12880 if (from_tty)
6149aea9
PA
12881 printf_filtered (_("Saved to file '%s'.\n"), filename);
12882}
12883
12884/* The `save breakpoints' command. */
12885
12886static void
12887save_breakpoints_command (char *args, int from_tty)
12888{
12889 save_breakpoints (args, from_tty, NULL);
12890}
12891
12892/* The `save tracepoints' command. */
12893
12894static void
12895save_tracepoints_command (char *args, int from_tty)
12896{
12897 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
12898}
12899
12900/* Create a vector of all tracepoints. */
12901
12902VEC(breakpoint_p) *
eeae04df 12903all_tracepoints (void)
1042e4c0
SS
12904{
12905 VEC(breakpoint_p) *tp_vec = 0;
12906 struct breakpoint *tp;
12907
12908 ALL_TRACEPOINTS (tp)
12909 {
12910 VEC_safe_push (breakpoint_p, tp_vec, tp);
12911 }
12912
12913 return tp_vec;
12914}
12915
c906108c 12916\f
4a64f543
MS
12917/* This help string is used for the break, hbreak, tbreak and thbreak
12918 commands. It is defined as a macro to prevent duplication.
12919 COMMAND should be a string constant containing the name of the
12920 command. */
31e2b00f
AS
12921#define BREAK_ARGS_HELP(command) \
12922command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
12923LOCATION may be a line number, function name, or \"*\" and an address.\n\
12924If a line number is specified, break at start of code for that line.\n\
12925If a function is specified, break at start of code for that function.\n\
12926If an address is specified, break at that exact address.\n\
dc10affe
PA
12927With no LOCATION, uses current execution address of the selected\n\
12928stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
12929\n\
12930THREADNUM is the number from \"info threads\".\n\
12931CONDITION is a boolean expression.\n\
12932\n\
d41c0fc8
PA
12933Multiple breakpoints at one place are permitted, and useful if their\n\
12934conditions are different.\n\
31e2b00f
AS
12935\n\
12936Do \"help breakpoints\" for info on other commands dealing with breakpoints."
12937
44feb3ce
TT
12938/* List of subcommands for "catch". */
12939static struct cmd_list_element *catch_cmdlist;
12940
12941/* List of subcommands for "tcatch". */
12942static struct cmd_list_element *tcatch_cmdlist;
12943
9ac4176b 12944void
44feb3ce
TT
12945add_catch_command (char *name, char *docstring,
12946 void (*sfunc) (char *args, int from_tty,
12947 struct cmd_list_element *command),
a96d9b2e
SDJ
12948 char **(*completer) (struct cmd_list_element *cmd,
12949 char *text, char *word),
44feb3ce
TT
12950 void *user_data_catch,
12951 void *user_data_tcatch)
12952{
12953 struct cmd_list_element *command;
12954
12955 command = add_cmd (name, class_breakpoint, NULL, docstring,
12956 &catch_cmdlist);
12957 set_cmd_sfunc (command, sfunc);
12958 set_cmd_context (command, user_data_catch);
a96d9b2e 12959 set_cmd_completer (command, completer);
44feb3ce
TT
12960
12961 command = add_cmd (name, class_breakpoint, NULL, docstring,
12962 &tcatch_cmdlist);
12963 set_cmd_sfunc (command, sfunc);
12964 set_cmd_context (command, user_data_tcatch);
a96d9b2e 12965 set_cmd_completer (command, completer);
44feb3ce
TT
12966}
12967
6c95b8df 12968static void
a79b8f6e 12969clear_syscall_counts (struct inferior *inf)
6c95b8df 12970{
6c95b8df
PA
12971 inf->total_syscalls_count = 0;
12972 inf->any_syscall_count = 0;
12973 VEC_free (int, inf->syscalls_counts);
12974}
12975
6149aea9
PA
12976static void
12977save_command (char *arg, int from_tty)
12978{
3e43a32a
MS
12979 printf_unfiltered (_("\"save\" must be followed by "
12980 "the name of a save subcommand.\n"));
6149aea9
PA
12981 help_list (save_cmdlist, "save ", -1, gdb_stdout);
12982}
12983
84f4c1fe
PM
12984struct breakpoint *
12985iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
12986 void *data)
12987{
35df4500 12988 struct breakpoint *b, *b_tmp;
84f4c1fe 12989
35df4500 12990 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
12991 {
12992 if ((*callback) (b, data))
12993 return b;
12994 }
12995
12996 return NULL;
12997}
12998
c906108c 12999void
fba45db2 13000_initialize_breakpoint (void)
c906108c
SS
13001{
13002 struct cmd_list_element *c;
13003
84acb35a 13004 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
6c95b8df 13005 observer_attach_inferior_exit (clear_syscall_counts);
1f3b5d1b 13006 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 13007
17450429
PP
13008 breakpoint_objfile_key = register_objfile_data ();
13009
c906108c
SS
13010 breakpoint_chain = 0;
13011 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
13012 before a breakpoint is set. */
13013 breakpoint_count = 0;
13014
1042e4c0
SS
13015 tracepoint_count = 0;
13016
1bedd215
AC
13017 add_com ("ignore", class_breakpoint, ignore_command, _("\
13018Set ignore-count of breakpoint number N to COUNT.\n\
13019Usage is `ignore N COUNT'."));
c906108c 13020 if (xdb_commands)
c5aa993b 13021 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 13022
1bedd215
AC
13023 add_com ("commands", class_breakpoint, commands_command, _("\
13024Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
13025Give breakpoint number as argument after \"commands\".\n\
13026With no argument, the targeted breakpoint is the last one set.\n\
13027The commands themselves follow starting on the next line.\n\
13028Type a line containing \"end\" to indicate the end of them.\n\
13029Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 13030then no output is printed when it is hit, except what the commands print."));
c906108c 13031
1bedd215
AC
13032 add_com ("condition", class_breakpoint, condition_command, _("\
13033Specify breakpoint number N to break only if COND is true.\n\
c906108c 13034Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 13035expression to be evaluated whenever breakpoint N is reached."));
c906108c 13036
1bedd215 13037 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 13038Set a temporary breakpoint.\n\
c906108c
SS
13039Like \"break\" except the breakpoint is only temporary,\n\
13040so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
13041by using \"enable delete\" on the breakpoint number.\n\
13042\n"
13043BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 13044 set_cmd_completer (c, location_completer);
c94fdfd0 13045
1bedd215 13046 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 13047Set a hardware assisted breakpoint.\n\
c906108c 13048Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
13049some target hardware may not have this support.\n\
13050\n"
13051BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 13052 set_cmd_completer (c, location_completer);
c906108c 13053
1bedd215 13054 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 13055Set a temporary hardware assisted breakpoint.\n\
c906108c 13056Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
13057so it will be deleted when hit.\n\
13058\n"
13059BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 13060 set_cmd_completer (c, location_completer);
c906108c 13061
1bedd215
AC
13062 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
13063Enable some breakpoints.\n\
c906108c
SS
13064Give breakpoint numbers (separated by spaces) as arguments.\n\
13065With no subcommand, breakpoints are enabled until you command otherwise.\n\
13066This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 13067With a subcommand you can enable temporarily."),
c906108c
SS
13068 &enablelist, "enable ", 1, &cmdlist);
13069 if (xdb_commands)
1bedd215
AC
13070 add_com ("ab", class_breakpoint, enable_command, _("\
13071Enable some breakpoints.\n\
c906108c
SS
13072Give breakpoint numbers (separated by spaces) as arguments.\n\
13073With no subcommand, breakpoints are enabled until you command otherwise.\n\
13074This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 13075With a subcommand you can enable temporarily."));
c906108c
SS
13076
13077 add_com_alias ("en", "enable", class_breakpoint, 1);
13078
84951ab5 13079 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 13080Enable some breakpoints.\n\
c906108c
SS
13081Give breakpoint numbers (separated by spaces) as arguments.\n\
13082This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 13083May be abbreviated to simply \"enable\".\n"),
c5aa993b 13084 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 13085
1a966eab
AC
13086 add_cmd ("once", no_class, enable_once_command, _("\
13087Enable breakpoints for one hit. Give breakpoint numbers.\n\
13088If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
13089 &enablebreaklist);
13090
1a966eab
AC
13091 add_cmd ("delete", no_class, enable_delete_command, _("\
13092Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
13093If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
13094 &enablebreaklist);
13095
1a966eab
AC
13096 add_cmd ("delete", no_class, enable_delete_command, _("\
13097Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
13098If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
13099 &enablelist);
13100
1a966eab
AC
13101 add_cmd ("once", no_class, enable_once_command, _("\
13102Enable breakpoints for one hit. Give breakpoint numbers.\n\
13103If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
13104 &enablelist);
13105
1bedd215
AC
13106 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
13107Disable some breakpoints.\n\
c906108c
SS
13108Arguments are breakpoint numbers with spaces in between.\n\
13109To disable all breakpoints, give no argument.\n\
64b9b334 13110A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
13111 &disablelist, "disable ", 1, &cmdlist);
13112 add_com_alias ("dis", "disable", class_breakpoint, 1);
13113 add_com_alias ("disa", "disable", class_breakpoint, 1);
13114 if (xdb_commands)
1bedd215
AC
13115 add_com ("sb", class_breakpoint, disable_command, _("\
13116Disable some breakpoints.\n\
c906108c
SS
13117Arguments are breakpoint numbers with spaces in between.\n\
13118To disable all breakpoints, give no argument.\n\
64b9b334 13119A disabled breakpoint is not forgotten, but has no effect until re-enabled."));
c906108c 13120
1a966eab
AC
13121 add_cmd ("breakpoints", class_alias, disable_command, _("\
13122Disable some breakpoints.\n\
c906108c
SS
13123Arguments are breakpoint numbers with spaces in between.\n\
13124To disable all breakpoints, give no argument.\n\
64b9b334 13125A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 13126This command may be abbreviated \"disable\"."),
c906108c
SS
13127 &disablelist);
13128
1bedd215
AC
13129 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
13130Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
13131Arguments are breakpoint numbers with spaces in between.\n\
13132To delete all breakpoints, give no argument.\n\
13133\n\
13134Also a prefix command for deletion of other GDB objects.\n\
1bedd215 13135The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
13136 &deletelist, "delete ", 1, &cmdlist);
13137 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 13138 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 13139 if (xdb_commands)
1bedd215
AC
13140 add_com ("db", class_breakpoint, delete_command, _("\
13141Delete some breakpoints.\n\
c906108c 13142Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 13143To delete all breakpoints, give no argument.\n"));
c906108c 13144
1a966eab
AC
13145 add_cmd ("breakpoints", class_alias, delete_command, _("\
13146Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
13147Arguments are breakpoint numbers with spaces in between.\n\
13148To delete all breakpoints, give no argument.\n\
1a966eab 13149This command may be abbreviated \"delete\"."),
c906108c
SS
13150 &deletelist);
13151
1bedd215
AC
13152 add_com ("clear", class_breakpoint, clear_command, _("\
13153Clear breakpoint at specified line or function.\n\
c906108c
SS
13154Argument may be line number, function name, or \"*\" and an address.\n\
13155If line number is specified, all breakpoints in that line are cleared.\n\
13156If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
13157If an address is specified, breakpoints at that address are cleared.\n\
13158\n\
13159With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
13160is executing in.\n\
13161\n\
1bedd215 13162See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 13163 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 13164
1bedd215 13165 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
13166Set breakpoint at specified line or function.\n"
13167BREAK_ARGS_HELP ("break")));
5ba2abeb 13168 set_cmd_completer (c, location_completer);
c94fdfd0 13169
c906108c
SS
13170 add_com_alias ("b", "break", class_run, 1);
13171 add_com_alias ("br", "break", class_run, 1);
13172 add_com_alias ("bre", "break", class_run, 1);
13173 add_com_alias ("brea", "break", class_run, 1);
13174
7681d515
PM
13175 if (xdb_commands)
13176 add_com_alias ("ba", "break", class_breakpoint, 1);
c906108c
SS
13177
13178 if (dbx_commands)
13179 {
1bedd215
AC
13180 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
13181Break in function/address or break at a line in the current file."),
c5aa993b
JM
13182 &stoplist, "stop ", 1, &cmdlist);
13183 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 13184 _("Break in function or address."), &stoplist);
c5aa993b 13185 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 13186 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
13187 add_com ("status", class_info, breakpoints_info, _("\
13188Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
13189The \"Type\" column indicates one of:\n\
13190\tbreakpoint - normal breakpoint\n\
13191\twatchpoint - watchpoint\n\
13192The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
13193the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
13194breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
13195address and file/line number respectively.\n\
13196\n\
13197Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
13198are set to the address of the last breakpoint listed unless the command\n\
13199is prefixed with \"server \".\n\n\
c906108c 13200Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 13201breakpoint set."));
c906108c
SS
13202 }
13203
1bedd215 13204 add_info ("breakpoints", breakpoints_info, _("\
e5a67952 13205Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
13206The \"Type\" column indicates one of:\n\
13207\tbreakpoint - normal breakpoint\n\
13208\twatchpoint - watchpoint\n\
13209The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
13210the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
13211breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
13212address and file/line number respectively.\n\
13213\n\
13214Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
13215are set to the address of the last breakpoint listed unless the command\n\
13216is prefixed with \"server \".\n\n\
c906108c 13217Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 13218breakpoint set."));
c906108c 13219
6b04bdb7
MS
13220 add_info_alias ("b", "breakpoints", 1);
13221
c906108c 13222 if (xdb_commands)
1bedd215
AC
13223 add_com ("lb", class_breakpoint, breakpoints_info, _("\
13224Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
13225The \"Type\" column indicates one of:\n\
13226\tbreakpoint - normal breakpoint\n\
13227\twatchpoint - watchpoint\n\
13228The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
13229the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
13230breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
13231address and file/line number respectively.\n\
13232\n\
13233Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
13234are set to the address of the last breakpoint listed unless the command\n\
13235is prefixed with \"server \".\n\n\
c906108c 13236Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 13237breakpoint set."));
c906108c 13238
1a966eab
AC
13239 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
13240Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
13241The \"Type\" column indicates one of:\n\
13242\tbreakpoint - normal breakpoint\n\
13243\twatchpoint - watchpoint\n\
13244\tlongjmp - internal breakpoint used to step through longjmp()\n\
13245\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
13246\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
13247\tfinish - internal breakpoint used by the \"finish\" command\n\
13248The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
13249the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
13250breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
13251address and file/line number respectively.\n\
13252\n\
13253Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
13254are set to the address of the last breakpoint listed unless the command\n\
13255is prefixed with \"server \".\n\n\
c906108c 13256Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 13257breakpoint set."),
c906108c
SS
13258 &maintenanceinfolist);
13259
44feb3ce
TT
13260 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
13261Set catchpoints to catch events."),
13262 &catch_cmdlist, "catch ",
13263 0/*allow-unknown*/, &cmdlist);
13264
13265 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
13266Set temporary catchpoints to catch events."),
13267 &tcatch_cmdlist, "tcatch ",
13268 0/*allow-unknown*/, &cmdlist);
13269
13270 /* Add catch and tcatch sub-commands. */
13271 add_catch_command ("catch", _("\
13272Catch an exception, when caught.\n\
13273With an argument, catch only exceptions with the given name."),
13274 catch_catch_command,
a96d9b2e 13275 NULL,
44feb3ce
TT
13276 CATCH_PERMANENT,
13277 CATCH_TEMPORARY);
13278 add_catch_command ("throw", _("\
13279Catch an exception, when thrown.\n\
13280With an argument, catch only exceptions with the given name."),
13281 catch_throw_command,
a96d9b2e 13282 NULL,
44feb3ce
TT
13283 CATCH_PERMANENT,
13284 CATCH_TEMPORARY);
13285 add_catch_command ("fork", _("Catch calls to fork."),
13286 catch_fork_command_1,
a96d9b2e 13287 NULL,
44feb3ce
TT
13288 (void *) (uintptr_t) catch_fork_permanent,
13289 (void *) (uintptr_t) catch_fork_temporary);
13290 add_catch_command ("vfork", _("Catch calls to vfork."),
13291 catch_fork_command_1,
a96d9b2e 13292 NULL,
44feb3ce
TT
13293 (void *) (uintptr_t) catch_vfork_permanent,
13294 (void *) (uintptr_t) catch_vfork_temporary);
13295 add_catch_command ("exec", _("Catch calls to exec."),
13296 catch_exec_command_1,
a96d9b2e
SDJ
13297 NULL,
13298 CATCH_PERMANENT,
13299 CATCH_TEMPORARY);
13300 add_catch_command ("syscall", _("\
13301Catch system calls by their names and/or numbers.\n\
13302Arguments say which system calls to catch. If no arguments\n\
13303are given, every system call will be caught.\n\
13304Arguments, if given, should be one or more system call names\n\
13305(if your system supports that), or system call numbers."),
13306 catch_syscall_command_1,
13307 catch_syscall_completer,
44feb3ce
TT
13308 CATCH_PERMANENT,
13309 CATCH_TEMPORARY);
c5aa993b 13310
1bedd215
AC
13311 c = add_com ("watch", class_breakpoint, watch_command, _("\
13312Set a watchpoint for an expression.\n\
06a64a0b 13313Usage: watch [-l|-location] EXPRESSION\n\
c906108c 13314A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
13315an expression changes.\n\
13316If -l or -location is given, this evaluates EXPRESSION and watches\n\
13317the memory to which it refers."));
65d12d83 13318 set_cmd_completer (c, expression_completer);
c906108c 13319
1bedd215
AC
13320 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
13321Set a read watchpoint for an expression.\n\
06a64a0b 13322Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 13323A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
13324an expression is read.\n\
13325If -l or -location is given, this evaluates EXPRESSION and watches\n\
13326the memory to which it refers."));
65d12d83 13327 set_cmd_completer (c, expression_completer);
c906108c 13328
1bedd215
AC
13329 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
13330Set a watchpoint for an expression.\n\
06a64a0b 13331Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 13332A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
13333an expression is either read or written.\n\
13334If -l or -location is given, this evaluates EXPRESSION and watches\n\
13335the memory to which it refers."));
65d12d83 13336 set_cmd_completer (c, expression_completer);
c906108c 13337
d77f58be 13338 add_info ("watchpoints", watchpoints_info, _("\
e5a67952 13339Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 13340
920d2a44
AC
13341 /* XXX: cagney/2005-02-23: This should be a boolean, and should
13342 respond to changes - contrary to the description. */
85c07804
AC
13343 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
13344 &can_use_hw_watchpoints, _("\
13345Set debugger's willingness to use watchpoint hardware."), _("\
13346Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
13347If zero, gdb will not use hardware for new watchpoints, even if\n\
13348such is available. (However, any hardware watchpoints that were\n\
13349created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
13350hardware.)"),
13351 NULL,
920d2a44 13352 show_can_use_hw_watchpoints,
85c07804 13353 &setlist, &showlist);
c906108c
SS
13354
13355 can_use_hw_watchpoints = 1;
fa8d40ab 13356
1042e4c0
SS
13357 /* Tracepoint manipulation commands. */
13358
13359 c = add_com ("trace", class_breakpoint, trace_command, _("\
13360Set a tracepoint at specified line or function.\n\
13361\n"
13362BREAK_ARGS_HELP ("trace") "\n\
13363Do \"help tracepoints\" for info on other tracepoint commands."));
13364 set_cmd_completer (c, location_completer);
13365
13366 add_com_alias ("tp", "trace", class_alias, 0);
13367 add_com_alias ("tr", "trace", class_alias, 1);
13368 add_com_alias ("tra", "trace", class_alias, 1);
13369 add_com_alias ("trac", "trace", class_alias, 1);
13370
7a697b8d
SS
13371 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
13372Set a fast tracepoint at specified line or function.\n\
13373\n"
13374BREAK_ARGS_HELP ("ftrace") "\n\
13375Do \"help tracepoints\" for info on other tracepoint commands."));
13376 set_cmd_completer (c, location_completer);
13377
0fb4aa4b
PA
13378 c = add_com ("strace", class_breakpoint, strace_command, _("\
13379Set a static tracepoint at specified line, function or marker.\n\
13380\n\
13381strace [LOCATION] [if CONDITION]\n\
13382LOCATION may be a line number, function name, \"*\" and an address,\n\
13383or -m MARKER_ID.\n\
13384If a line number is specified, probe the marker at start of code\n\
13385for that line. If a function is specified, probe the marker at start\n\
13386of code for that function. If an address is specified, probe the marker\n\
13387at that exact address. If a marker id is specified, probe the marker\n\
13388with that name. With no LOCATION, uses current execution address of\n\
13389the selected stack frame.\n\
13390Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
13391This collects arbitrary user data passed in the probe point call to the\n\
13392tracing library. You can inspect it when analyzing the trace buffer,\n\
13393by printing the $_sdata variable like any other convenience variable.\n\
13394\n\
13395CONDITION is a boolean expression.\n\
13396\n\
d41c0fc8
PA
13397Multiple tracepoints at one place are permitted, and useful if their\n\
13398conditions are different.\n\
0fb4aa4b
PA
13399\n\
13400Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
13401Do \"help tracepoints\" for info on other tracepoint commands."));
13402 set_cmd_completer (c, location_completer);
13403
1042e4c0 13404 add_info ("tracepoints", tracepoints_info, _("\
e5a67952 13405Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
13406Convenience variable \"$tpnum\" contains the number of the\n\
13407last tracepoint set."));
13408
13409 add_info_alias ("tp", "tracepoints", 1);
13410
13411 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
13412Delete specified tracepoints.\n\
13413Arguments are tracepoint numbers, separated by spaces.\n\
13414No argument means delete all tracepoints."),
13415 &deletelist);
13416
13417 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
13418Disable specified tracepoints.\n\
13419Arguments are tracepoint numbers, separated by spaces.\n\
13420No argument means disable all tracepoints."),
13421 &disablelist);
13422 deprecate_cmd (c, "disable");
13423
13424 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
13425Enable specified tracepoints.\n\
13426Arguments are tracepoint numbers, separated by spaces.\n\
13427No argument means enable all tracepoints."),
13428 &enablelist);
13429 deprecate_cmd (c, "enable");
13430
13431 add_com ("passcount", class_trace, trace_pass_command, _("\
13432Set the passcount for a tracepoint.\n\
13433The trace will end when the tracepoint has been passed 'count' times.\n\
13434Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
13435if TPNUM is omitted, passcount refers to the last tracepoint defined."));
13436
6149aea9
PA
13437 add_prefix_cmd ("save", class_breakpoint, save_command,
13438 _("Save breakpoint definitions as a script."),
13439 &save_cmdlist, "save ",
13440 0/*allow-unknown*/, &cmdlist);
13441
13442 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
13443Save current breakpoint definitions as a script.\n\
cce7e648 13444This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
13445catchpoints, tracepoints). Use the 'source' command in another debug\n\
13446session to restore them."),
13447 &save_cmdlist);
13448 set_cmd_completer (c, filename_completer);
13449
13450 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 13451Save current tracepoint definitions as a script.\n\
6149aea9
PA
13452Use the 'source' command in another debug session to restore them."),
13453 &save_cmdlist);
1042e4c0
SS
13454 set_cmd_completer (c, filename_completer);
13455
6149aea9
PA
13456 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
13457 deprecate_cmd (c, "save tracepoints");
13458
1bedd215 13459 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
13460Breakpoint specific settings\n\
13461Configure various breakpoint-specific variables such as\n\
1bedd215 13462pending breakpoint behavior"),
fa8d40ab
JJ
13463 &breakpoint_set_cmdlist, "set breakpoint ",
13464 0/*allow-unknown*/, &setlist);
1bedd215 13465 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
13466Breakpoint specific settings\n\
13467Configure various breakpoint-specific variables such as\n\
1bedd215 13468pending breakpoint behavior"),
fa8d40ab
JJ
13469 &breakpoint_show_cmdlist, "show breakpoint ",
13470 0/*allow-unknown*/, &showlist);
13471
7915a72c
AC
13472 add_setshow_auto_boolean_cmd ("pending", no_class,
13473 &pending_break_support, _("\
13474Set debugger's behavior regarding pending breakpoints."), _("\
13475Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
13476If on, an unrecognized breakpoint location will cause gdb to create a\n\
13477pending breakpoint. If off, an unrecognized breakpoint location results in\n\
13478an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 13479user-query to see if a pending breakpoint should be created."),
2c5b56ce 13480 NULL,
920d2a44 13481 show_pending_break_support,
6e1d7d6c
AC
13482 &breakpoint_set_cmdlist,
13483 &breakpoint_show_cmdlist);
fa8d40ab
JJ
13484
13485 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
13486
13487 add_setshow_boolean_cmd ("auto-hw", no_class,
13488 &automatic_hardware_breakpoints, _("\
13489Set automatic usage of hardware breakpoints."), _("\
13490Show automatic usage of hardware breakpoints."), _("\
13491If set, the debugger will automatically use hardware breakpoints for\n\
13492breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
13493a warning will be emitted for such breakpoints."),
13494 NULL,
13495 show_automatic_hardware_breakpoints,
13496 &breakpoint_set_cmdlist,
13497 &breakpoint_show_cmdlist);
74960c60 13498
33e5cbd6
PA
13499 add_setshow_enum_cmd ("always-inserted", class_support,
13500 always_inserted_enums, &always_inserted_mode, _("\
74960c60
VP
13501Set mode for inserting breakpoints."), _("\
13502Show mode for inserting breakpoints."), _("\
33e5cbd6
PA
13503When this mode is off, breakpoints are inserted in inferior when it is\n\
13504resumed, and removed when execution stops. When this mode is on,\n\
13505breakpoints are inserted immediately and removed only when the user\n\
13506deletes the breakpoint. When this mode is auto (which is the default),\n\
13507the behaviour depends on the non-stop setting (see help set non-stop).\n\
13508In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
13509behaves as if always-inserted mode is on; if gdb is controlling the\n\
13510inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
74960c60
VP
13511 NULL,
13512 &show_always_inserted_mode,
13513 &breakpoint_set_cmdlist,
13514 &breakpoint_show_cmdlist);
f1310107
TJB
13515
13516 add_com ("break-range", class_breakpoint, break_range_command, _("\
13517Set a breakpoint for an address range.\n\
13518break-range START-LOCATION, END-LOCATION\n\
13519where START-LOCATION and END-LOCATION can be one of the following:\n\
13520 LINENUM, for that line in the current file,\n\
13521 FILE:LINENUM, for that line in that file,\n\
13522 +OFFSET, for that number of lines after the current line\n\
13523 or the start of the range\n\
13524 FUNCTION, for the first line in that function,\n\
13525 FILE:FUNCTION, to distinguish among like-named static functions.\n\
13526 *ADDRESS, for the instruction at that address.\n\
13527\n\
13528The breakpoint will stop execution of the inferior whenever it executes\n\
13529an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
13530range (including START-LOCATION and END-LOCATION)."));
13531
765dc015 13532 automatic_hardware_breakpoints = 1;
f3b1572e
PA
13533
13534 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
c906108c 13535}
This page took 2.097116 seconds and 4 git commands to generate.