Move ChangeLog entry to correct directory.
[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"
c906108c 67
1042e4c0
SS
68/* readline include files */
69#include "readline/readline.h"
70#include "readline/history.h"
71
72/* readline defines this. */
73#undef savestring
74
034dad6f 75#include "mi/mi-common.h"
7371cf6d 76#include "python/python.h"
104c1213 77
44feb3ce
TT
78/* Arguments to pass as context to some catch command handlers. */
79#define CATCH_PERMANENT ((void *) (uintptr_t) 0)
80#define CATCH_TEMPORARY ((void *) (uintptr_t) 1)
c906108c 81
4a64f543 82/* Prototypes for local functions. */
c906108c 83
a14ed312 84static void enable_delete_command (char *, int);
c906108c 85
a14ed312 86static void enable_once_command (char *, int);
c906108c 87
a14ed312 88static void disable_command (char *, int);
c906108c 89
a14ed312 90static void enable_command (char *, int);
c906108c 91
95a42b64
TT
92static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
93 void *),
94 void *);
c906108c 95
a14ed312 96static void ignore_command (char *, int);
c906108c 97
4efb68b1 98static int breakpoint_re_set_one (void *);
c906108c 99
a14ed312 100static void clear_command (char *, int);
c906108c 101
a14ed312 102static void catch_command (char *, int);
c906108c 103
e09342b5 104static int can_use_hardware_watchpoint (struct value *, int);
c906108c 105
98deb0da 106static void break_command_1 (char *, int, int);
c906108c 107
a14ed312 108static void mention (struct breakpoint *);
c906108c 109
4a64f543
MS
110/* This function is used in gdbtk sources and thus can not be made
111 static. */
63c252f8 112struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
a6d9a66e
UW
113 struct symtab_and_line,
114 enum bptype);
c906108c 115
76897487
KB
116static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
117
a6d9a66e
UW
118static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
119 CORE_ADDR bpaddr,
88f7da05 120 enum bptype bptype);
76897487 121
6c95b8df
PA
122static void describe_other_breakpoints (struct gdbarch *,
123 struct program_space *, CORE_ADDR,
5af949e3 124 struct obj_section *, int);
c906108c 125
6c95b8df
PA
126static int breakpoint_address_match (struct address_space *aspace1,
127 CORE_ADDR addr1,
128 struct address_space *aspace2,
129 CORE_ADDR addr2);
130
85d721b8
PA
131static int watchpoint_locations_match (struct bp_location *loc1,
132 struct bp_location *loc2);
133
f1310107
TJB
134static int breakpoint_location_address_match (struct bp_location *bl,
135 struct address_space *aspace,
136 CORE_ADDR addr);
137
a14ed312 138static void breakpoints_info (char *, int);
c906108c 139
d77f58be
SS
140static void watchpoints_info (char *, int);
141
e5a67952
MS
142static int breakpoint_1 (char *, int,
143 int (*) (const struct breakpoint *));
c906108c 144
4efb68b1 145static int breakpoint_cond_eval (void *);
c906108c 146
4efb68b1 147static void cleanup_executing_breakpoints (void *);
c906108c 148
a14ed312 149static void commands_command (char *, int);
c906108c 150
a14ed312 151static void condition_command (char *, int);
c906108c 152
c5aa993b
JM
153typedef enum
154 {
155 mark_inserted,
156 mark_uninserted
157 }
158insertion_state_t;
c906108c 159
0bde7532 160static int remove_breakpoint (struct bp_location *, insertion_state_t);
6c95b8df 161static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
c906108c 162
a14ed312 163static enum print_stop_action print_it_typical (bpstat);
e514a9d6
JM
164
165static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 166
4efb68b1 167static int watchpoint_check (void *);
c906108c 168
a14ed312 169static void maintenance_info_breakpoints (char *, int);
c906108c 170
a14ed312 171static int hw_breakpoint_used_count (void);
c906108c 172
a14ed312 173static int hw_watchpoint_used_count (enum bptype, int *);
c906108c 174
a14ed312 175static void hbreak_command (char *, int);
c906108c 176
a14ed312 177static void thbreak_command (char *, int);
c906108c 178
a14ed312 179static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
c906108c 180
a14ed312 181static void stop_command (char *arg, int from_tty);
7a292a7a 182
a14ed312 183static void stopin_command (char *arg, int from_tty);
7a292a7a 184
a14ed312 185static void stopat_command (char *arg, int from_tty);
7a292a7a 186
a14ed312 187static char *ep_parse_optional_if_clause (char **arg);
7a292a7a 188
d85310f7
MS
189static void catch_exception_command_1 (enum exception_event_kind ex_event,
190 char *arg, int tempflag, int from_tty);
7a292a7a 191
a14ed312 192static void tcatch_command (char *arg, int from_tty);
7a292a7a 193
d03285ec
UW
194static void detach_single_step_breakpoints (void);
195
6c95b8df
PA
196static int single_step_breakpoint_inserted_here_p (struct address_space *,
197 CORE_ADDR pc);
1aafd4da 198
fe3f5fa8 199static void free_bp_location (struct bp_location *loc);
f431efe5
PA
200static void incref_bp_location (struct bp_location *loc);
201static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 202
39d61571 203static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 204
b60e7edf 205static void update_global_location_list (int);
a5606eee 206
b60e7edf 207static void update_global_location_list_nothrow (int);
74960c60 208
d77f58be 209static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60 210
d77f58be 211static int is_watchpoint (const struct breakpoint *bpt);
60e1c644 212
74960c60 213static void insert_breakpoint_locations (void);
a5606eee 214
a96d9b2e
SDJ
215static int syscall_catchpoint_p (struct breakpoint *b);
216
1042e4c0
SS
217static void tracepoints_info (char *, int);
218
219static void delete_trace_command (char *, int);
220
221static void enable_trace_command (char *, int);
222
223static void disable_trace_command (char *, int);
224
225static void trace_pass_command (char *, int);
226
0fb4aa4b
PA
227/* Assuming we're creating a static tracepoint, does S look like a
228 static tracepoint marker spec ("-m MARKER_ID")? */
229#define is_marker_spec(s) \
f5a8e22b 230 (s != NULL && strncmp (s, "-m", 2) == 0 && ((s)[2] == ' ' || (s)[2] == '\t'))
0fb4aa4b 231
5cea2a26
PA
232/* A reference-counted struct command_line. This lets multiple
233 breakpoints share a single command list. */
234struct counted_command_line
235{
236 /* The reference count. */
237 int refc;
238
239 /* The command list. */
240 struct command_line *commands;
241};
242
243struct command_line *
244breakpoint_commands (struct breakpoint *b)
245{
246 return b->commands ? b->commands->commands : NULL;
247}
3daf8fe5 248
f3b1572e
PA
249/* Flag indicating that a command has proceeded the inferior past the
250 current breakpoint. */
251
252static int breakpoint_proceeded;
253
2cec12e5
AR
254static const char *
255bpdisp_text (enum bpdisp disp)
256{
4a64f543
MS
257 /* NOTE: the following values are a part of MI protocol and
258 represent values of 'disp' field returned when inferior stops at
259 a breakpoint. */
bc043ef3 260 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 261
2cec12e5
AR
262 return bpdisps[(int) disp];
263}
c906108c 264
4a64f543 265/* Prototypes for exported functions. */
c906108c 266/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 267 if such is available. */
c906108c
SS
268static int can_use_hw_watchpoints;
269
920d2a44
AC
270static void
271show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
272 struct cmd_list_element *c,
273 const char *value)
274{
3e43a32a
MS
275 fprintf_filtered (file,
276 _("Debugger's willingness to use "
277 "watchpoint hardware is %s.\n"),
920d2a44
AC
278 value);
279}
280
fa8d40ab
JJ
281/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
282 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 283 for unrecognized breakpoint locations.
fa8d40ab
JJ
284 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
285static enum auto_boolean pending_break_support;
920d2a44
AC
286static void
287show_pending_break_support (struct ui_file *file, int from_tty,
288 struct cmd_list_element *c,
289 const char *value)
290{
3e43a32a
MS
291 fprintf_filtered (file,
292 _("Debugger's behavior regarding "
293 "pending breakpoints is %s.\n"),
920d2a44
AC
294 value);
295}
fa8d40ab 296
765dc015 297/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 298 set with "break" but falling in read-only memory.
765dc015
VP
299 If 0, gdb will warn about such breakpoints, but won't automatically
300 use hardware breakpoints. */
301static int automatic_hardware_breakpoints;
302static void
303show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
304 struct cmd_list_element *c,
305 const char *value)
306{
3e43a32a
MS
307 fprintf_filtered (file,
308 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
309 value);
310}
311
33e5cbd6
PA
312/* If on, gdb will keep breakpoints inserted even as inferior is
313 stopped, and immediately insert any new breakpoints. If off, gdb
314 will insert breakpoints into inferior only when resuming it, and
315 will remove breakpoints upon stop. If auto, GDB will behave as ON
316 if in non-stop mode, and as OFF if all-stop mode.*/
317
318static const char always_inserted_auto[] = "auto";
319static const char always_inserted_on[] = "on";
320static const char always_inserted_off[] = "off";
321static const char *always_inserted_enums[] = {
322 always_inserted_auto,
323 always_inserted_off,
324 always_inserted_on,
325 NULL
326};
327static const char *always_inserted_mode = always_inserted_auto;
328static void
74960c60 329show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 330 struct cmd_list_element *c, const char *value)
74960c60 331{
33e5cbd6 332 if (always_inserted_mode == always_inserted_auto)
3e43a32a
MS
333 fprintf_filtered (file,
334 _("Always inserted breakpoint "
335 "mode is %s (currently %s).\n"),
33e5cbd6
PA
336 value,
337 breakpoints_always_inserted_mode () ? "on" : "off");
338 else
3e43a32a
MS
339 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
340 value);
74960c60
VP
341}
342
33e5cbd6
PA
343int
344breakpoints_always_inserted_mode (void)
345{
346 return (always_inserted_mode == always_inserted_on
347 || (always_inserted_mode == always_inserted_auto && non_stop));
348}
765dc015 349
a14ed312 350void _initialize_breakpoint (void);
c906108c 351
c906108c
SS
352/* Are we executing breakpoint commands? */
353static int executing_breakpoint_commands;
354
c02f5703
MS
355/* Are overlay event breakpoints enabled? */
356static int overlay_events_enabled;
357
e09342b5
TJB
358/* See description in breakpoint.h. */
359int target_exact_watchpoints = 0;
360
c906108c 361/* Walk the following statement or block through all breakpoints.
4a64f543
MS
362 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the
363 current breakpoint. */
c906108c 364
5c44784c 365#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 366
5c44784c
JM
367#define ALL_BREAKPOINTS_SAFE(B,TMP) \
368 for (B = breakpoint_chain; \
369 B ? (TMP=B->next, 1): 0; \
370 B = TMP)
c906108c 371
4a64f543
MS
372/* Similar iterator for the low-level breakpoints. SAFE variant is
373 not provided so update_global_location_list must not be called
374 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 375
876fa593
JK
376#define ALL_BP_LOCATIONS(B,BP_TMP) \
377 for (BP_TMP = bp_location; \
378 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
379 BP_TMP++)
7cc221ef 380
1042e4c0
SS
381/* Iterator for tracepoints only. */
382
383#define ALL_TRACEPOINTS(B) \
384 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 385 if (is_tracepoint (B))
1042e4c0 386
7cc221ef 387/* Chains of all breakpoints defined. */
c906108c
SS
388
389struct breakpoint *breakpoint_chain;
390
876fa593
JK
391/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
392
393static struct bp_location **bp_location;
394
395/* Number of elements of BP_LOCATION. */
396
397static unsigned bp_location_count;
398
4a64f543
MS
399/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
400 ADDRESS for the current elements of BP_LOCATION which get a valid
401 result from bp_location_has_shadow. You can use it for roughly
402 limiting the subrange of BP_LOCATION to scan for shadow bytes for
403 an address you need to read. */
876fa593
JK
404
405static CORE_ADDR bp_location_placed_address_before_address_max;
406
4a64f543
MS
407/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
408 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
409 BP_LOCATION which get a valid result from bp_location_has_shadow.
410 You can use it for roughly limiting the subrange of BP_LOCATION to
411 scan for shadow bytes for an address you need to read. */
876fa593
JK
412
413static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 414
4a64f543
MS
415/* The locations that no longer correspond to any breakpoint, unlinked
416 from bp_location array, but for which a hit may still be reported
417 by a target. */
20874c92
VP
418VEC(bp_location_p) *moribund_locations = NULL;
419
c906108c
SS
420/* Number of last breakpoint made. */
421
95a42b64
TT
422static int breakpoint_count;
423
86b17b60
PA
424/* The value of `breakpoint_count' before the last command that
425 created breakpoints. If the last (break-like) command created more
426 than one breakpoint, then the difference between BREAKPOINT_COUNT
427 and PREV_BREAKPOINT_COUNT is more than one. */
428static int prev_breakpoint_count;
c906108c 429
1042e4c0
SS
430/* Number of last tracepoint made. */
431
95a42b64 432static int tracepoint_count;
1042e4c0 433
6149aea9
PA
434static struct cmd_list_element *breakpoint_set_cmdlist;
435static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 436struct cmd_list_element *save_cmdlist;
6149aea9 437
468d015d
JJ
438/* Return whether a breakpoint is an active enabled breakpoint. */
439static int
440breakpoint_enabled (struct breakpoint *b)
441{
0d381245 442 return (b->enable_state == bp_enabled);
468d015d
JJ
443}
444
c906108c
SS
445/* Set breakpoint count to NUM. */
446
95a42b64 447static void
fba45db2 448set_breakpoint_count (int num)
c906108c 449{
86b17b60 450 prev_breakpoint_count = breakpoint_count;
c906108c 451 breakpoint_count = num;
4fa62494 452 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
453}
454
86b17b60
PA
455/* Used by `start_rbreak_breakpoints' below, to record the current
456 breakpoint count before "rbreak" creates any breakpoint. */
457static int rbreak_start_breakpoint_count;
458
95a42b64
TT
459/* Called at the start an "rbreak" command to record the first
460 breakpoint made. */
86b17b60 461
95a42b64
TT
462void
463start_rbreak_breakpoints (void)
464{
86b17b60 465 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
466}
467
468/* Called at the end of an "rbreak" command to record the last
469 breakpoint made. */
86b17b60 470
95a42b64
TT
471void
472end_rbreak_breakpoints (void)
473{
86b17b60 474 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
475}
476
4a64f543 477/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
478
479void
fba45db2 480clear_breakpoint_hit_counts (void)
c906108c
SS
481{
482 struct breakpoint *b;
483
484 ALL_BREAKPOINTS (b)
485 b->hit_count = 0;
486}
487
9add0f1b
TT
488/* Allocate a new counted_command_line with reference count of 1.
489 The new structure owns COMMANDS. */
490
491static struct counted_command_line *
492alloc_counted_command_line (struct command_line *commands)
493{
494 struct counted_command_line *result
495 = xmalloc (sizeof (struct counted_command_line));
cc59ec59 496
9add0f1b
TT
497 result->refc = 1;
498 result->commands = commands;
499 return result;
500}
501
502/* Increment reference count. This does nothing if CMD is NULL. */
503
504static void
505incref_counted_command_line (struct counted_command_line *cmd)
506{
507 if (cmd)
508 ++cmd->refc;
509}
510
511/* Decrement reference count. If the reference count reaches 0,
512 destroy the counted_command_line. Sets *CMDP to NULL. This does
513 nothing if *CMDP is NULL. */
514
515static void
516decref_counted_command_line (struct counted_command_line **cmdp)
517{
518 if (*cmdp)
519 {
520 if (--(*cmdp)->refc == 0)
521 {
522 free_command_lines (&(*cmdp)->commands);
523 xfree (*cmdp);
524 }
525 *cmdp = NULL;
526 }
527}
528
529/* A cleanup function that calls decref_counted_command_line. */
530
531static void
532do_cleanup_counted_command_line (void *arg)
533{
534 decref_counted_command_line (arg);
535}
536
537/* Create a cleanup that calls decref_counted_command_line on the
538 argument. */
539
540static struct cleanup *
541make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
542{
543 return make_cleanup (do_cleanup_counted_command_line, cmdp);
544}
545
c906108c
SS
546/* Default address, symtab and line to put a breakpoint at
547 for "break" command with no arg.
4a64f543 548 If default_breakpoint_valid is zero, the other three are
c906108c
SS
549 not valid, and "break" with no arg is an error.
550
551 This set by print_stack_frame, which calls set_default_breakpoint. */
552
553int default_breakpoint_valid;
554CORE_ADDR default_breakpoint_address;
555struct symtab *default_breakpoint_symtab;
556int default_breakpoint_line;
6c95b8df
PA
557struct program_space *default_breakpoint_pspace;
558
c906108c 559\f
48cb2d85
VP
560/* Return the breakpoint with the specified number, or NULL
561 if the number does not refer to an existing breakpoint. */
562
563struct breakpoint *
564get_breakpoint (int num)
565{
566 struct breakpoint *b;
567
568 ALL_BREAKPOINTS (b)
569 if (b->number == num)
570 return b;
571
572 return NULL;
573}
5c44784c 574
c906108c 575\f
adc36818
PM
576
577void
578set_breakpoint_condition (struct breakpoint *b, char *exp,
579 int from_tty)
580{
581 struct bp_location *loc = b->loc;
582
583 for (; loc; loc = loc->next)
584 {
585 xfree (loc->cond);
586 loc->cond = NULL;
587 }
588 xfree (b->cond_string);
589 b->cond_string = NULL;
590 xfree (b->cond_exp);
591 b->cond_exp = NULL;
592
593 if (*exp == 0)
594 {
595 if (from_tty)
596 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
597 }
598 else
599 {
600 char *arg = exp;
cc59ec59 601
adc36818
PM
602 /* I don't know if it matters whether this is the string the user
603 typed in or the decompiled expression. */
604 b->cond_string = xstrdup (arg);
605 b->condition_not_parsed = 0;
606
607 if (is_watchpoint (b))
608 {
609 innermost_block = NULL;
610 arg = exp;
611 b->cond_exp = parse_exp_1 (&arg, 0, 0);
612 if (*arg)
613 error (_("Junk at end of expression"));
614 b->cond_exp_valid_block = innermost_block;
615 }
616 else
617 {
618 for (loc = b->loc; loc; loc = loc->next)
619 {
620 arg = exp;
621 loc->cond =
622 parse_exp_1 (&arg, block_for_pc (loc->address), 0);
623 if (*arg)
624 error (_("Junk at end of expression"));
625 }
626 }
627 }
628 breakpoints_changed ();
629 observer_notify_breakpoint_modified (b->number);
630}
631
c906108c
SS
632/* condition N EXP -- set break condition of breakpoint N to EXP. */
633
634static void
fba45db2 635condition_command (char *arg, int from_tty)
c906108c 636{
52f0bd74 637 struct breakpoint *b;
c906108c 638 char *p;
52f0bd74 639 int bnum;
c906108c
SS
640
641 if (arg == 0)
e2e0b3e5 642 error_no_arg (_("breakpoint number"));
c906108c
SS
643
644 p = arg;
645 bnum = get_number (&p);
5c44784c 646 if (bnum == 0)
8a3fe4f8 647 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
648
649 ALL_BREAKPOINTS (b)
650 if (b->number == bnum)
2f069f6f 651 {
7371cf6d
PM
652 /* Check if this breakpoint has a Python object assigned to
653 it, and if it has a definition of the "stop"
654 method. This method and conditions entered into GDB from
655 the CLI are mutually exclusive. */
656 if (b->py_bp_object
657 && gdbpy_breakpoint_has_py_cond (b->py_bp_object))
658 error (_("Cannot set a condition where a Python 'stop' "
659 "method has been defined in the breakpoint."));
2566ad2d 660 set_breakpoint_condition (b, p, from_tty);
2f069f6f
JB
661 return;
662 }
c906108c 663
8a3fe4f8 664 error (_("No breakpoint number %d."), bnum);
c906108c
SS
665}
666
a7bdde9e
VP
667/* Check that COMMAND do not contain commands that are suitable
668 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
669 Throw if any such commands is found. */
670
a7bdde9e
VP
671static void
672check_no_tracepoint_commands (struct command_line *commands)
673{
674 struct command_line *c;
cc59ec59 675
a7bdde9e
VP
676 for (c = commands; c; c = c->next)
677 {
678 int i;
679
680 if (c->control_type == while_stepping_control)
3e43a32a
MS
681 error (_("The 'while-stepping' command can "
682 "only be used for tracepoints"));
a7bdde9e
VP
683
684 for (i = 0; i < c->body_count; ++i)
685 check_no_tracepoint_commands ((c->body_list)[i]);
686
687 /* Not that command parsing removes leading whitespace and comment
4a64f543 688 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
689 command directly. */
690 if (strstr (c->line, "collect ") == c->line)
691 error (_("The 'collect' command can only be used for tracepoints"));
692
51661e93
VP
693 if (strstr (c->line, "teval ") == c->line)
694 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
695 }
696}
697
d77f58be
SS
698/* Encapsulate tests for different types of tracepoints. */
699
a7bdde9e 700int
d77f58be 701is_tracepoint (const struct breakpoint *b)
a7bdde9e 702{
0fb4aa4b
PA
703 return (b->type == bp_tracepoint
704 || b->type == bp_fast_tracepoint
705 || b->type == bp_static_tracepoint);
a7bdde9e 706}
d77f58be 707
95a42b64
TT
708/* A helper function that validsates that COMMANDS are valid for a
709 breakpoint. This function will throw an exception if a problem is
710 found. */
48cb2d85 711
95a42b64
TT
712static void
713validate_commands_for_breakpoint (struct breakpoint *b,
714 struct command_line *commands)
48cb2d85 715{
d77f58be 716 if (is_tracepoint (b))
a7bdde9e 717 {
4a64f543
MS
718 /* We need to verify that each top-level element of commands is
719 valid for tracepoints, that there's at most one
720 while-stepping element, and that while-stepping's body has
721 valid tracing commands excluding nested while-stepping. */
a7bdde9e
VP
722 struct command_line *c;
723 struct command_line *while_stepping = 0;
724 for (c = commands; c; c = c->next)
725 {
a7bdde9e
VP
726 if (c->control_type == while_stepping_control)
727 {
728 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
729 error (_("The 'while-stepping' command "
730 "cannot be used for fast tracepoint"));
0fb4aa4b 731 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
732 error (_("The 'while-stepping' command "
733 "cannot be used for static tracepoint"));
a7bdde9e
VP
734
735 if (while_stepping)
3e43a32a
MS
736 error (_("The 'while-stepping' command "
737 "can be used only once"));
a7bdde9e
VP
738 else
739 while_stepping = c;
740 }
741 }
742 if (while_stepping)
743 {
744 struct command_line *c2;
745
746 gdb_assert (while_stepping->body_count == 1);
747 c2 = while_stepping->body_list[0];
748 for (; c2; c2 = c2->next)
749 {
a7bdde9e
VP
750 if (c2->control_type == while_stepping_control)
751 error (_("The 'while-stepping' command cannot be nested"));
752 }
753 }
754 }
755 else
756 {
757 check_no_tracepoint_commands (commands);
758 }
95a42b64
TT
759}
760
0fb4aa4b
PA
761/* Return a vector of all the static tracepoints set at ADDR. The
762 caller is responsible for releasing the vector. */
763
764VEC(breakpoint_p) *
765static_tracepoints_here (CORE_ADDR addr)
766{
767 struct breakpoint *b;
768 VEC(breakpoint_p) *found = 0;
769 struct bp_location *loc;
770
771 ALL_BREAKPOINTS (b)
772 if (b->type == bp_static_tracepoint)
773 {
774 for (loc = b->loc; loc; loc = loc->next)
775 if (loc->address == addr)
776 VEC_safe_push(breakpoint_p, found, b);
777 }
778
779 return found;
780}
781
95a42b64 782/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 783 validate that only allowed commands are included. */
95a42b64
TT
784
785void
4a64f543
MS
786breakpoint_set_commands (struct breakpoint *b,
787 struct command_line *commands)
95a42b64
TT
788{
789 validate_commands_for_breakpoint (b, commands);
a7bdde9e 790
9add0f1b
TT
791 decref_counted_command_line (&b->commands);
792 b->commands = alloc_counted_command_line (commands);
48cb2d85
VP
793 breakpoints_changed ();
794 observer_notify_breakpoint_modified (b->number);
795}
796
45a43567
TT
797/* Set the internal `silent' flag on the breakpoint. Note that this
798 is not the same as the "silent" that may appear in the breakpoint's
799 commands. */
800
801void
802breakpoint_set_silent (struct breakpoint *b, int silent)
803{
804 int old_silent = b->silent;
805
806 b->silent = silent;
807 if (old_silent != silent)
808 observer_notify_breakpoint_modified (b->number);
809}
810
811/* Set the thread for this breakpoint. If THREAD is -1, make the
812 breakpoint work for any thread. */
813
814void
815breakpoint_set_thread (struct breakpoint *b, int thread)
816{
817 int old_thread = b->thread;
818
819 b->thread = thread;
820 if (old_thread != thread)
821 observer_notify_breakpoint_modified (b->number);
822}
823
824/* Set the task for this breakpoint. If TASK is 0, make the
825 breakpoint work for any task. */
826
827void
828breakpoint_set_task (struct breakpoint *b, int task)
829{
830 int old_task = b->task;
831
832 b->task = task;
833 if (old_task != task)
834 observer_notify_breakpoint_modified (b->number);
835}
836
95a42b64
TT
837void
838check_tracepoint_command (char *line, void *closure)
a7bdde9e
VP
839{
840 struct breakpoint *b = closure;
cc59ec59 841
a7bdde9e
VP
842 validate_actionline (&line, b);
843}
844
95a42b64
TT
845/* A structure used to pass information through
846 map_breakpoint_numbers. */
847
848struct commands_info
849{
850 /* True if the command was typed at a tty. */
851 int from_tty;
86b17b60
PA
852
853 /* The breakpoint range spec. */
854 char *arg;
855
95a42b64
TT
856 /* Non-NULL if the body of the commands are being read from this
857 already-parsed command. */
858 struct command_line *control;
86b17b60 859
95a42b64
TT
860 /* The command lines read from the user, or NULL if they have not
861 yet been read. */
862 struct counted_command_line *cmd;
863};
864
865/* A callback for map_breakpoint_numbers that sets the commands for
866 commands_command. */
867
c906108c 868static void
95a42b64 869do_map_commands_command (struct breakpoint *b, void *data)
c906108c 870{
95a42b64 871 struct commands_info *info = data;
c906108c 872
95a42b64
TT
873 if (info->cmd == NULL)
874 {
875 struct command_line *l;
5c44784c 876
95a42b64
TT
877 if (info->control != NULL)
878 l = copy_command_lines (info->control->body_list[0]);
879 else
86b17b60
PA
880 {
881 struct cleanup *old_chain;
882 char *str;
c5aa993b 883
3e43a32a
MS
884 str = xstrprintf (_("Type commands for breakpoint(s) "
885 "%s, one per line."),
86b17b60
PA
886 info->arg);
887
888 old_chain = make_cleanup (xfree, str);
889
890 l = read_command_lines (str,
891 info->from_tty, 1,
d77f58be 892 (is_tracepoint (b)
86b17b60
PA
893 ? check_tracepoint_command : 0),
894 b);
895
896 do_cleanups (old_chain);
897 }
a7bdde9e 898
95a42b64
TT
899 info->cmd = alloc_counted_command_line (l);
900 }
901
902 /* If a breakpoint was on the list more than once, we don't need to
903 do anything. */
904 if (b->commands != info->cmd)
905 {
906 validate_commands_for_breakpoint (b, info->cmd->commands);
907 incref_counted_command_line (info->cmd);
908 decref_counted_command_line (&b->commands);
909 b->commands = info->cmd;
910 breakpoints_changed ();
911 observer_notify_breakpoint_modified (b->number);
c5aa993b 912 }
95a42b64
TT
913}
914
915static void
4a64f543
MS
916commands_command_1 (char *arg, int from_tty,
917 struct command_line *control)
95a42b64
TT
918{
919 struct cleanup *cleanups;
920 struct commands_info info;
921
922 info.from_tty = from_tty;
923 info.control = control;
924 info.cmd = NULL;
925 /* If we read command lines from the user, then `info' will hold an
926 extra reference to the commands that we must clean up. */
927 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
928
929 if (arg == NULL || !*arg)
930 {
86b17b60 931 if (breakpoint_count - prev_breakpoint_count > 1)
4a64f543
MS
932 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1,
933 breakpoint_count);
95a42b64
TT
934 else if (breakpoint_count > 0)
935 arg = xstrprintf ("%d", breakpoint_count);
86b17b60
PA
936 else
937 {
938 /* So that we don't try to free the incoming non-NULL
939 argument in the cleanup below. Mapping breakpoint
940 numbers will fail in this case. */
941 arg = NULL;
942 }
95a42b64 943 }
9766ced4
SS
944 else
945 /* The command loop has some static state, so we need to preserve
946 our argument. */
947 arg = xstrdup (arg);
86b17b60
PA
948
949 if (arg != NULL)
950 make_cleanup (xfree, arg);
951
952 info.arg = arg;
95a42b64
TT
953
954 map_breakpoint_numbers (arg, do_map_commands_command, &info);
955
956 if (info.cmd == NULL)
957 error (_("No breakpoints specified."));
958
959 do_cleanups (cleanups);
960}
961
962static void
963commands_command (char *arg, int from_tty)
964{
965 commands_command_1 (arg, from_tty, NULL);
c906108c 966}
40c03ae8
EZ
967
968/* Like commands_command, but instead of reading the commands from
969 input stream, takes them from an already parsed command structure.
970
971 This is used by cli-script.c to DTRT with breakpoint commands
972 that are part of if and while bodies. */
973enum command_control_type
974commands_from_control_command (char *arg, struct command_line *cmd)
975{
95a42b64
TT
976 commands_command_1 (arg, 0, cmd);
977 return simple_control;
40c03ae8 978}
876fa593
JK
979
980/* Return non-zero if BL->TARGET_INFO contains valid information. */
981
982static int
983bp_location_has_shadow (struct bp_location *bl)
984{
985 if (bl->loc_type != bp_loc_software_breakpoint)
986 return 0;
987 if (!bl->inserted)
988 return 0;
989 if (bl->target_info.shadow_len == 0)
990 /* bp isn't valid, or doesn't shadow memory. */
991 return 0;
992 return 1;
993}
994
8defab1a 995/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
996 by replacing any memory breakpoints with their shadowed contents.
997
998 The range of shadowed area by each bp_location is:
35df4500
TJB
999 bl->address - bp_location_placed_address_before_address_max
1000 up to bl->address + bp_location_shadow_len_after_address_max
876fa593
JK
1001 The range we were requested to resolve shadows for is:
1002 memaddr ... memaddr + len
1003 Thus the safe cutoff boundaries for performance optimization are
35df4500
TJB
1004 memaddr + len <= (bl->address
1005 - bp_location_placed_address_before_address_max)
876fa593 1006 and:
35df4500 1007 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1008
8defab1a
DJ
1009void
1010breakpoint_restore_shadows (gdb_byte *buf, ULONGEST memaddr, LONGEST len)
c906108c 1011{
4a64f543
MS
1012 /* Left boundary, right boundary and median element of our binary
1013 search. */
876fa593
JK
1014 unsigned bc_l, bc_r, bc;
1015
4a64f543
MS
1016 /* Find BC_L which is a leftmost element which may affect BUF
1017 content. It is safe to report lower value but a failure to
1018 report higher one. */
876fa593
JK
1019
1020 bc_l = 0;
1021 bc_r = bp_location_count;
1022 while (bc_l + 1 < bc_r)
1023 {
35df4500 1024 struct bp_location *bl;
876fa593
JK
1025
1026 bc = (bc_l + bc_r) / 2;
35df4500 1027 bl = bp_location[bc];
876fa593 1028
4a64f543
MS
1029 /* Check first BL->ADDRESS will not overflow due to the added
1030 constant. Then advance the left boundary only if we are sure
1031 the BC element can in no way affect the BUF content (MEMADDR
1032 to MEMADDR + LEN range).
876fa593 1033
4a64f543
MS
1034 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1035 offset so that we cannot miss a breakpoint with its shadow
1036 range tail still reaching MEMADDR. */
c5aa993b 1037
35df4500
TJB
1038 if ((bl->address + bp_location_shadow_len_after_address_max
1039 >= bl->address)
1040 && (bl->address + bp_location_shadow_len_after_address_max
1041 <= memaddr))
876fa593
JK
1042 bc_l = bc;
1043 else
1044 bc_r = bc;
1045 }
1046
128070bb
PA
1047 /* Due to the binary search above, we need to make sure we pick the
1048 first location that's at BC_L's address. E.g., if there are
1049 multiple locations at the same address, BC_L may end up pointing
1050 at a duplicate location, and miss the "master"/"inserted"
1051 location. Say, given locations L1, L2 and L3 at addresses A and
1052 B:
1053
1054 L1@A, L2@A, L3@B, ...
1055
1056 BC_L could end up pointing at location L2, while the "master"
1057 location could be L1. Since the `loc->inserted' flag is only set
1058 on "master" locations, we'd forget to restore the shadow of L1
1059 and L2. */
1060 while (bc_l > 0
1061 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1062 bc_l--;
1063
876fa593
JK
1064 /* Now do full processing of the found relevant range of elements. */
1065
1066 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1067 {
35df4500 1068 struct bp_location *bl = bp_location[bc];
876fa593
JK
1069 CORE_ADDR bp_addr = 0;
1070 int bp_size = 0;
1071 int bptoffset = 0;
1072
35df4500
TJB
1073 /* bp_location array has BL->OWNER always non-NULL. */
1074 if (bl->owner->type == bp_none)
8a3fe4f8 1075 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1076 bl->owner->number);
ffce0d52 1077
876fa593
JK
1078 /* Performance optimization: any futher element can no longer affect BUF
1079 content. */
1080
35df4500
TJB
1081 if (bl->address >= bp_location_placed_address_before_address_max
1082 && memaddr + len <= (bl->address
1083 - bp_location_placed_address_before_address_max))
876fa593
JK
1084 break;
1085
35df4500 1086 if (!bp_location_has_shadow (bl))
c5aa993b 1087 continue;
35df4500 1088 if (!breakpoint_address_match (bl->target_info.placed_address_space, 0,
6c95b8df
PA
1089 current_program_space->aspace, 0))
1090 continue;
1091
c5aa993b
JM
1092 /* Addresses and length of the part of the breakpoint that
1093 we need to copy. */
35df4500
TJB
1094 bp_addr = bl->target_info.placed_address;
1095 bp_size = bl->target_info.shadow_len;
8defab1a 1096
c5aa993b
JM
1097 if (bp_addr + bp_size <= memaddr)
1098 /* The breakpoint is entirely before the chunk of memory we
1099 are reading. */
1100 continue;
8defab1a 1101
c5aa993b
JM
1102 if (bp_addr >= memaddr + len)
1103 /* The breakpoint is entirely after the chunk of memory we are
4a64f543 1104 reading. */
c5aa993b 1105 continue;
c5aa993b 1106
8defab1a
DJ
1107 /* Offset within shadow_contents. */
1108 if (bp_addr < memaddr)
1109 {
1110 /* Only copy the second part of the breakpoint. */
1111 bp_size -= memaddr - bp_addr;
1112 bptoffset = memaddr - bp_addr;
1113 bp_addr = memaddr;
1114 }
c5aa993b 1115
8defab1a
DJ
1116 if (bp_addr + bp_size > memaddr + len)
1117 {
1118 /* Only copy the first part of the breakpoint. */
1119 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1120 }
c5aa993b 1121
8defab1a 1122 memcpy (buf + bp_addr - memaddr,
35df4500 1123 bl->target_info.shadow_contents + bptoffset, bp_size);
c5aa993b 1124 }
c906108c 1125}
c906108c 1126\f
c5aa993b 1127
60e1c644
PA
1128/* Return true if BPT is of any hardware watchpoint kind. */
1129
a5606eee 1130static int
d77f58be 1131is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1132{
1133 return (bpt->type == bp_hardware_watchpoint
1134 || bpt->type == bp_read_watchpoint
1135 || bpt->type == bp_access_watchpoint);
1136}
7270d8f2 1137
60e1c644
PA
1138/* Return true if BPT is of any watchpoint kind, hardware or
1139 software. */
1140
1141static int
d77f58be 1142is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1143{
1144 return (is_hardware_watchpoint (bpt)
1145 || bpt->type == bp_watchpoint);
1146}
1147
f6bc2008
PA
1148/* Assuming that B is a watchpoint: returns true if the current thread
1149 and its running state are safe to evaluate or update watchpoint B.
1150 Watchpoints on local expressions need to be evaluated in the
1151 context of the thread that was current when the watchpoint was
1152 created, and, that thread needs to be stopped to be able to select
1153 the correct frame context. Watchpoints on global expressions can
1154 be evaluated on any thread, and in any state. It is presently left
1155 to the target allowing memory accesses when threads are
1156 running. */
1157
1158static int
1159watchpoint_in_thread_scope (struct breakpoint *b)
1160{
1161 return (ptid_equal (b->watchpoint_thread, null_ptid)
1162 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1163 && !is_executing (inferior_ptid)));
1164}
1165
d0fb5eae
JK
1166/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1167 associated bp_watchpoint_scope breakpoint. */
1168
1169static void
1170watchpoint_del_at_next_stop (struct breakpoint *b)
1171{
1172 gdb_assert (is_watchpoint (b));
1173
1174 if (b->related_breakpoint != b)
1175 {
1176 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1177 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1178 b->related_breakpoint->disposition = disp_del_at_next_stop;
1179 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1180 b->related_breakpoint = b;
1181 }
1182 b->disposition = disp_del_at_next_stop;
1183}
1184
567e1b4e
JB
1185/* Assuming that B is a watchpoint:
1186 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1187 - Evaluate expression and store the result in B->val
567e1b4e
JB
1188 - Evaluate the condition if there is one, and store the result
1189 in b->loc->cond.
a5606eee
VP
1190 - Update the list of values that must be watched in B->loc.
1191
4a64f543
MS
1192 If the watchpoint disposition is disp_del_at_next_stop, then do
1193 nothing. If this is local watchpoint that is out of scope, delete
1194 it.
1195
1196 Even with `set breakpoint always-inserted on' the watchpoints are
1197 removed + inserted on each stop here. Normal breakpoints must
1198 never be removed because they might be missed by a running thread
1199 when debugging in non-stop mode. On the other hand, hardware
1200 watchpoints (is_hardware_watchpoint; processed here) are specific
1201 to each LWP since they are stored in each LWP's hardware debug
1202 registers. Therefore, such LWP must be stopped first in order to
1203 be able to modify its hardware watchpoints.
1204
1205 Hardware watchpoints must be reset exactly once after being
1206 presented to the user. It cannot be done sooner, because it would
1207 reset the data used to present the watchpoint hit to the user. And
1208 it must not be done later because it could display the same single
1209 watchpoint hit during multiple GDB stops. Note that the latter is
1210 relevant only to the hardware watchpoint types bp_read_watchpoint
1211 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1212 not user-visible - its hit is suppressed if the memory content has
1213 not changed.
1214
1215 The following constraints influence the location where we can reset
1216 hardware watchpoints:
1217
1218 * target_stopped_by_watchpoint and target_stopped_data_address are
1219 called several times when GDB stops.
1220
1221 [linux]
1222 * Multiple hardware watchpoints can be hit at the same time,
1223 causing GDB to stop. GDB only presents one hardware watchpoint
1224 hit at a time as the reason for stopping, and all the other hits
1225 are presented later, one after the other, each time the user
1226 requests the execution to be resumed. Execution is not resumed
1227 for the threads still having pending hit event stored in
1228 LWP_INFO->STATUS. While the watchpoint is already removed from
1229 the inferior on the first stop the thread hit event is kept being
1230 reported from its cached value by linux_nat_stopped_data_address
1231 until the real thread resume happens after the watchpoint gets
1232 presented and thus its LWP_INFO->STATUS gets reset.
1233
1234 Therefore the hardware watchpoint hit can get safely reset on the
1235 watchpoint removal from inferior. */
a79d3c27 1236
b40ce68a 1237static void
a5606eee 1238update_watchpoint (struct breakpoint *b, int reparse)
7270d8f2 1239{
a5606eee 1240 int within_current_scope;
a5606eee 1241 struct frame_id saved_frame_id;
66076460 1242 int frame_saved;
a5606eee 1243
d0fb5eae
JK
1244 gdb_assert (is_watchpoint (b));
1245
f6bc2008
PA
1246 /* If this is a local watchpoint, we only want to check if the
1247 watchpoint frame is in scope if the current thread is the thread
1248 that was used to create the watchpoint. */
1249 if (!watchpoint_in_thread_scope (b))
1250 return;
1251
a5606eee
VP
1252 if (b->disposition == disp_del_at_next_stop)
1253 return;
1254
66076460 1255 frame_saved = 0;
a5606eee
VP
1256
1257 /* Determine if the watchpoint is within scope. */
1258 if (b->exp_valid_block == NULL)
1259 within_current_scope = 1;
1260 else
1261 {
b5db5dfc
UW
1262 struct frame_info *fi = get_current_frame ();
1263 struct gdbarch *frame_arch = get_frame_arch (fi);
1264 CORE_ADDR frame_pc = get_frame_pc (fi);
1265
1266 /* If we're in a function epilogue, unwinding may not work
1267 properly, so do not attempt to recreate locations at this
1268 point. See similar comments in watchpoint_check. */
1269 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
1270 return;
66076460
DJ
1271
1272 /* Save the current frame's ID so we can restore it after
1273 evaluating the watchpoint expression on its own frame. */
1274 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1275 took a frame parameter, so that we didn't have to change the
1276 selected frame. */
1277 frame_saved = 1;
1278 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1279
a5606eee
VP
1280 fi = frame_find_by_id (b->watchpoint_frame);
1281 within_current_scope = (fi != NULL);
1282 if (within_current_scope)
1283 select_frame (fi);
1284 }
1285
b5db5dfc
UW
1286 /* We don't free locations. They are stored in the bp_location array
1287 and update_global_location_list will eventually delete them and
1288 remove breakpoints if needed. */
1289 b->loc = NULL;
1290
a5606eee
VP
1291 if (within_current_scope && reparse)
1292 {
1293 char *s;
d63d0675 1294
a5606eee
VP
1295 if (b->exp)
1296 {
1297 xfree (b->exp);
1298 b->exp = NULL;
1299 }
d63d0675 1300 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
a5606eee
VP
1301 b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
1302 /* If the meaning of expression itself changed, the old value is
1303 no longer relevant. We don't want to report a watchpoint hit
1304 to the user when the old value and the new value may actually
1305 be completely different objects. */
1306 value_free (b->val);
fa4727a6
DJ
1307 b->val = NULL;
1308 b->val_valid = 0;
60e1c644
PA
1309
1310 /* Note that unlike with breakpoints, the watchpoint's condition
1311 expression is stored in the breakpoint object, not in the
1312 locations (re)created below. */
1313 if (b->cond_string != NULL)
1314 {
1315 if (b->cond_exp != NULL)
1316 {
1317 xfree (b->cond_exp);
1318 b->cond_exp = NULL;
1319 }
1320
1321 s = b->cond_string;
1322 b->cond_exp = parse_exp_1 (&s, b->cond_exp_valid_block, 0);
1323 }
a5606eee 1324 }
a5606eee
VP
1325
1326 /* If we failed to parse the expression, for example because
1327 it refers to a global variable in a not-yet-loaded shared library,
1328 don't try to insert watchpoint. We don't automatically delete
1329 such watchpoint, though, since failure to parse expression
1330 is different from out-of-scope watchpoint. */
2d134ed3
PA
1331 if ( !target_has_execution)
1332 {
1333 /* Without execution, memory can't change. No use to try and
1334 set watchpoint locations. The watchpoint will be reset when
1335 the target gains execution, through breakpoint_re_set. */
1336 }
1337 else if (within_current_scope && b->exp)
a5606eee 1338 {
0cf6dd15 1339 int pc = 0;
fa4727a6 1340 struct value *val_chain, *v, *result, *next;
2d134ed3 1341 struct program_space *frame_pspace;
a5606eee 1342
0cf6dd15 1343 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain);
a5606eee 1344
a5606eee
VP
1345 /* Avoid setting b->val if it's already set. The meaning of
1346 b->val is 'the last value' user saw, and we should update
1347 it only if we reported that last value to user. As it
1348 happens, the code that reports it updates b->val directly. */
fa4727a6
DJ
1349 if (!b->val_valid)
1350 {
1351 b->val = v;
1352 b->val_valid = 1;
1353 }
a5606eee 1354
2d134ed3
PA
1355 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1356
a5606eee 1357 /* Look at each value on the value chain. */
9fa40276 1358 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1359 {
1360 /* If it's a memory location, and GDB actually needed
1361 its contents to evaluate the expression, then we
fa4727a6
DJ
1362 must watch it. If the first value returned is
1363 still lazy, that means an error occurred reading it;
1364 watch it anyway in case it becomes readable. */
a5606eee 1365 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1366 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1367 {
1368 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1369
a5606eee
VP
1370 /* We only watch structs and arrays if user asked
1371 for it explicitly, never if they just happen to
1372 appear in the middle of some value chain. */
fa4727a6 1373 if (v == result
a5606eee
VP
1374 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1375 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1376 {
1377 CORE_ADDR addr;
1378 int len, type;
1379 struct bp_location *loc, **tmp;
1380
42ae5230 1381 addr = value_address (v);
a5606eee
VP
1382 len = TYPE_LENGTH (value_type (v));
1383 type = hw_write;
1384 if (b->type == bp_read_watchpoint)
1385 type = hw_read;
1386 else if (b->type == bp_access_watchpoint)
1387 type = hw_access;
1388
39d61571 1389 loc = allocate_bp_location (b);
a5606eee
VP
1390 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1391 ;
1392 *tmp = loc;
a6d9a66e 1393 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1394
1395 loc->pspace = frame_pspace;
a5606eee
VP
1396 loc->address = addr;
1397 loc->length = len;
1398 loc->watchpoint_type = type;
1399 }
1400 }
9fa40276
TJB
1401 }
1402
1403 /* Change the type of breakpoint between hardware assisted or
1404 an ordinary watchpoint depending on the hardware support
1405 and free hardware slots. REPARSE is set when the inferior
1406 is started. */
1407 if ((b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
1408 && reparse)
1409 {
e09342b5 1410 int reg_cnt;
9fa40276
TJB
1411 enum bp_loc_type loc_type;
1412 struct bp_location *bl;
a5606eee 1413
e09342b5
TJB
1414 reg_cnt = can_use_hardware_watchpoint (val_chain, b->exact);
1415
1416 if (reg_cnt)
9fa40276
TJB
1417 {
1418 int i, target_resources_ok, other_type_used;
e09342b5 1419 enum enable_state orig_enable_state;
9fa40276
TJB
1420
1421 /* We need to determine how many resources are already
e09342b5
TJB
1422 used for all other hardware watchpoints plus this one
1423 to see if we still have enough resources to also fit
1424 this watchpoint in as well. To guarantee the
1425 hw_watchpoint_used_count call below counts this
1426 watchpoint, make sure that it is marked as a hardware
1427 watchpoint. */
1428 b->type = bp_hardware_watchpoint;
1429
1430 /* hw_watchpoint_used_count ignores disabled watchpoints,
1431 and b might be disabled if we're being called from
1432 do_enable_breakpoint. */
1433 orig_enable_state = b->enable_state;
1434 b->enable_state = bp_enabled;
1435
9fa40276
TJB
1436 i = hw_watchpoint_used_count (bp_hardware_watchpoint,
1437 &other_type_used);
9fa40276 1438
e09342b5
TJB
1439 b->enable_state = orig_enable_state;
1440
1441 target_resources_ok = target_can_use_hardware_watchpoint
1442 (bp_hardware_watchpoint, i, other_type_used);
1443 if (target_resources_ok <= 0)
1444 b->type = bp_watchpoint;
9fa40276
TJB
1445 }
1446 else
1447 b->type = bp_watchpoint;
1448
1449 loc_type = (b->type == bp_watchpoint? bp_loc_other
1450 : bp_loc_hardware_watchpoint);
1451 for (bl = b->loc; bl; bl = bl->next)
1452 bl->loc_type = loc_type;
1453 }
1454
1455 for (v = val_chain; v; v = next)
1456 {
a5606eee
VP
1457 next = value_next (v);
1458 if (v != b->val)
1459 value_free (v);
1460 }
1461
c7437ca6
PA
1462 /* If a software watchpoint is not watching any memory, then the
1463 above left it without any location set up. But,
1464 bpstat_stop_status requires a location to be able to report
1465 stops, so make sure there's at least a dummy one. */
1466 if (b->type == bp_watchpoint && b->loc == NULL)
1467 {
1468 b->loc = allocate_bp_location (b);
1469 b->loc->pspace = frame_pspace;
1470 b->loc->address = -1;
1471 b->loc->length = -1;
1472 b->loc->watchpoint_type = -1;
1473 }
a5606eee
VP
1474 }
1475 else if (!within_current_scope)
7270d8f2 1476 {
ac74f770
MS
1477 printf_filtered (_("\
1478Watchpoint %d deleted because the program has left the block\n\
1479in which its expression is valid.\n"),
a5606eee 1480 b->number);
d0fb5eae 1481 watchpoint_del_at_next_stop (b);
7270d8f2 1482 }
a5606eee
VP
1483
1484 /* Restore the selected frame. */
66076460
DJ
1485 if (frame_saved)
1486 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1487}
1488
a5606eee 1489
74960c60
VP
1490/* Returns 1 iff breakpoint location should be
1491 inserted in the inferior. */
1492static int
35df4500 1493should_be_inserted (struct bp_location *bl)
74960c60 1494{
35df4500 1495 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
1496 return 0;
1497
35df4500 1498 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
1499 return 0;
1500
35df4500 1501 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
1502 return 0;
1503
56710373
PA
1504 /* This is set for example, when we're attached to the parent of a
1505 vfork, and have detached from the child. The child is running
1506 free, and we expect it to do an exec or exit, at which point the
1507 OS makes the parent schedulable again (and the target reports
1508 that the vfork is done). Until the child is done with the shared
1509 memory region, do not insert breakpoints in the parent, otherwise
1510 the child could still trip on the parent's breakpoints. Since
1511 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 1512 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
1513 return 0;
1514
1042e4c0
SS
1515 /* Tracepoints are inserted by the target at a time of its choosing,
1516 not by us. */
35df4500 1517 if (is_tracepoint (bl->owner))
1042e4c0
SS
1518 return 0;
1519
74960c60
VP
1520 return 1;
1521}
1522
35df4500
TJB
1523/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
1524 location. Any error messages are printed to TMP_ERROR_STREAM; and
1525 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
879bfdc2 1526
4a64f543
MS
1527 NOTE drow/2003-09-09: This routine could be broken down to an
1528 object-style method for each breakpoint or catchpoint type. */
26bb91f3 1529static int
35df4500 1530insert_bp_location (struct bp_location *bl,
26bb91f3 1531 struct ui_file *tmp_error_stream,
fa3a767f 1532 int *disabled_breaks,
26bb91f3 1533 int *hw_breakpoint_error)
879bfdc2
DJ
1534{
1535 int val = 0;
1536
35df4500 1537 if (!should_be_inserted (bl) || bl->inserted)
879bfdc2
DJ
1538 return 0;
1539
8181d85f 1540 /* Initialize the target-specific information. */
35df4500
TJB
1541 memset (&bl->target_info, 0, sizeof (bl->target_info));
1542 bl->target_info.placed_address = bl->address;
1543 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 1544 bl->target_info.length = bl->length;
8181d85f 1545
35df4500
TJB
1546 if (bl->loc_type == bp_loc_software_breakpoint
1547 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 1548 {
35df4500 1549 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
1550 {
1551 /* If the explicitly specified breakpoint type
1552 is not hardware breakpoint, check the memory map to see
1553 if the breakpoint address is in read only memory or not.
4a64f543 1554
765dc015
VP
1555 Two important cases are:
1556 - location type is not hardware breakpoint, memory
1557 is readonly. We change the type of the location to
1558 hardware breakpoint.
4a64f543
MS
1559 - location type is hardware breakpoint, memory is
1560 read-write. This means we've previously made the
1561 location hardware one, but then the memory map changed,
1562 so we undo.
765dc015 1563
4a64f543
MS
1564 When breakpoints are removed, remove_breakpoints will use
1565 location types we've just set here, the only possible
1566 problem is that memory map has changed during running
1567 program, but it's not going to work anyway with current
1568 gdb. */
765dc015 1569 struct mem_region *mr
35df4500 1570 = lookup_mem_region (bl->target_info.placed_address);
765dc015
VP
1571
1572 if (mr)
1573 {
1574 if (automatic_hardware_breakpoints)
1575 {
765dc015
VP
1576 enum bp_loc_type new_type;
1577
1578 if (mr->attrib.mode != MEM_RW)
1579 new_type = bp_loc_hardware_breakpoint;
1580 else
1581 new_type = bp_loc_software_breakpoint;
1582
35df4500 1583 if (new_type != bl->loc_type)
765dc015
VP
1584 {
1585 static int said = 0;
cc59ec59 1586
35df4500 1587 bl->loc_type = new_type;
765dc015
VP
1588 if (!said)
1589 {
3e43a32a
MS
1590 fprintf_filtered (gdb_stdout,
1591 _("Note: automatically using "
1592 "hardware breakpoints for "
1593 "read-only addresses.\n"));
765dc015
VP
1594 said = 1;
1595 }
1596 }
1597 }
35df4500 1598 else if (bl->loc_type == bp_loc_software_breakpoint
765dc015 1599 && mr->attrib.mode != MEM_RW)
3e43a32a
MS
1600 warning (_("cannot set software breakpoint "
1601 "at readonly address %s"),
35df4500 1602 paddress (bl->gdbarch, bl->address));
765dc015
VP
1603 }
1604 }
1605
879bfdc2
DJ
1606 /* First check to see if we have to handle an overlay. */
1607 if (overlay_debugging == ovly_off
35df4500
TJB
1608 || bl->section == NULL
1609 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
1610 {
1611 /* No overlay handling: just set the breakpoint. */
1612
35df4500
TJB
1613 if (bl->loc_type == bp_loc_hardware_breakpoint)
1614 val = target_insert_hw_breakpoint (bl->gdbarch,
1615 &bl->target_info);
879bfdc2 1616 else
35df4500
TJB
1617 val = target_insert_breakpoint (bl->gdbarch,
1618 &bl->target_info);
879bfdc2
DJ
1619 }
1620 else
1621 {
4a64f543 1622 /* This breakpoint is in an overlay section.
879bfdc2
DJ
1623 Shall we set a breakpoint at the LMA? */
1624 if (!overlay_events_enabled)
1625 {
1626 /* Yes -- overlay event support is not active,
1627 so we must try to set a breakpoint at the LMA.
1628 This will not work for a hardware breakpoint. */
35df4500 1629 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 1630 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 1631 bl->owner->number);
879bfdc2
DJ
1632 else
1633 {
35df4500
TJB
1634 CORE_ADDR addr = overlay_unmapped_address (bl->address,
1635 bl->section);
879bfdc2 1636 /* Set a software (trap) breakpoint at the LMA. */
35df4500
TJB
1637 bl->overlay_target_info = bl->target_info;
1638 bl->overlay_target_info.placed_address = addr;
1639 val = target_insert_breakpoint (bl->gdbarch,
1640 &bl->overlay_target_info);
879bfdc2 1641 if (val != 0)
99361f52 1642 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
1643 "Overlay breakpoint %d "
1644 "failed: in ROM?\n",
35df4500 1645 bl->owner->number);
879bfdc2
DJ
1646 }
1647 }
1648 /* Shall we set a breakpoint at the VMA? */
35df4500 1649 if (section_is_mapped (bl->section))
879bfdc2
DJ
1650 {
1651 /* Yes. This overlay section is mapped into memory. */
35df4500
TJB
1652 if (bl->loc_type == bp_loc_hardware_breakpoint)
1653 val = target_insert_hw_breakpoint (bl->gdbarch,
1654 &bl->target_info);
879bfdc2 1655 else
35df4500
TJB
1656 val = target_insert_breakpoint (bl->gdbarch,
1657 &bl->target_info);
879bfdc2
DJ
1658 }
1659 else
1660 {
1661 /* No. This breakpoint will not be inserted.
1662 No error, but do not mark the bp as 'inserted'. */
1663 return 0;
1664 }
1665 }
1666
1667 if (val)
1668 {
1669 /* Can't set the breakpoint. */
35df4500 1670 if (solib_name_from_address (bl->pspace, bl->address))
879bfdc2 1671 {
4a64f543 1672 /* See also: disable_breakpoints_in_shlibs. */
879bfdc2 1673 val = 0;
35df4500 1674 bl->shlib_disabled = 1;
879bfdc2
DJ
1675 if (!*disabled_breaks)
1676 {
1677 fprintf_unfiltered (tmp_error_stream,
1678 "Cannot insert breakpoint %d.\n",
35df4500 1679 bl->owner->number);
879bfdc2 1680 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
1681 "Temporarily disabling shared "
1682 "library breakpoints:\n");
879bfdc2
DJ
1683 }
1684 *disabled_breaks = 1;
1685 fprintf_unfiltered (tmp_error_stream,
35df4500 1686 "breakpoint #%d\n", bl->owner->number);
879bfdc2
DJ
1687 }
1688 else
879bfdc2 1689 {
35df4500 1690 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2
DJ
1691 {
1692 *hw_breakpoint_error = 1;
3e43a32a
MS
1693 fprintf_unfiltered (tmp_error_stream,
1694 "Cannot insert hardware "
1695 "breakpoint %d.\n",
35df4500 1696 bl->owner->number);
879bfdc2
DJ
1697 }
1698 else
1699 {
1700 fprintf_unfiltered (tmp_error_stream,
1701 "Cannot insert breakpoint %d.\n",
35df4500 1702 bl->owner->number);
879bfdc2
DJ
1703 fprintf_filtered (tmp_error_stream,
1704 "Error accessing memory address ");
35df4500 1705 fputs_filtered (paddress (bl->gdbarch, bl->address),
5af949e3 1706 tmp_error_stream);
879bfdc2
DJ
1707 fprintf_filtered (tmp_error_stream, ": %s.\n",
1708 safe_strerror (val));
1709 }
1710
1711 }
1712 }
1713 else
35df4500 1714 bl->inserted = 1;
879bfdc2
DJ
1715
1716 return val;
1717 }
1718
35df4500 1719 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 1720 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 1721 watchpoints. It's not clear that it's necessary... */
35df4500 1722 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 1723 {
77b06cd7
TJB
1724 gdb_assert (bl->owner->ops != NULL
1725 && bl->owner->ops->insert_location != NULL);
1726
1727 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
1728
1729 /* If trying to set a read-watchpoint, and it turns out it's not
1730 supported, try emulating one with an access watchpoint. */
35df4500 1731 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
1732 {
1733 struct bp_location *loc, **loc_temp;
1734
1735 /* But don't try to insert it, if there's already another
1736 hw_access location that would be considered a duplicate
1737 of this one. */
1738 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 1739 if (loc != bl
85d721b8 1740 && loc->watchpoint_type == hw_access
35df4500 1741 && watchpoint_locations_match (bl, loc))
85d721b8 1742 {
35df4500
TJB
1743 bl->duplicate = 1;
1744 bl->inserted = 1;
1745 bl->target_info = loc->target_info;
1746 bl->watchpoint_type = hw_access;
85d721b8
PA
1747 val = 0;
1748 break;
1749 }
1750
1751 if (val == 1)
1752 {
77b06cd7
TJB
1753 bl->watchpoint_type = hw_access;
1754 val = bl->owner->ops->insert_location (bl);
1755
1756 if (val)
1757 /* Back to the original value. */
1758 bl->watchpoint_type = hw_read;
85d721b8
PA
1759 }
1760 }
1761
35df4500 1762 bl->inserted = (val == 0);
879bfdc2
DJ
1763 }
1764
35df4500 1765 else if (bl->owner->type == bp_catchpoint)
879bfdc2 1766 {
77b06cd7
TJB
1767 gdb_assert (bl->owner->ops != NULL
1768 && bl->owner->ops->insert_location != NULL);
1769
1770 val = bl->owner->ops->insert_location (bl);
1771 if (val)
1772 {
1773 bl->owner->enable_state = bp_disabled;
1774
1775 if (val == 1)
1776 warning (_("\
1777Error inserting catchpoint %d: Your system does not support this type\n\
1778of catchpoint."), bl->owner->number);
1779 else
1780 warning (_("Error inserting catchpoint %d."), bl->owner->number);
1781 }
1782
1783 bl->inserted = (val == 0);
1640b821
DJ
1784
1785 /* We've already printed an error message if there was a problem
1786 inserting this catchpoint, and we've disabled the catchpoint,
1787 so just return success. */
1788 return 0;
879bfdc2
DJ
1789 }
1790
1791 return 0;
1792}
1793
6c95b8df
PA
1794/* This function is called when program space PSPACE is about to be
1795 deleted. It takes care of updating breakpoints to not reference
1796 PSPACE anymore. */
1797
1798void
1799breakpoint_program_space_exit (struct program_space *pspace)
1800{
1801 struct breakpoint *b, *b_temp;
876fa593 1802 struct bp_location *loc, **loc_temp;
6c95b8df
PA
1803
1804 /* Remove any breakpoint that was set through this program space. */
1805 ALL_BREAKPOINTS_SAFE (b, b_temp)
1806 {
1807 if (b->pspace == pspace)
1808 delete_breakpoint (b);
1809 }
1810
1811 /* Breakpoints set through other program spaces could have locations
1812 bound to PSPACE as well. Remove those. */
876fa593 1813 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
1814 {
1815 struct bp_location *tmp;
1816
1817 if (loc->pspace == pspace)
1818 {
2bdf28a0 1819 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
1820 if (loc->owner->loc == loc)
1821 loc->owner->loc = loc->next;
1822 else
1823 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
1824 if (tmp->next == loc)
1825 {
1826 tmp->next = loc->next;
1827 break;
1828 }
1829 }
1830 }
1831
1832 /* Now update the global location list to permanently delete the
1833 removed locations above. */
1834 update_global_location_list (0);
1835}
1836
74960c60
VP
1837/* Make sure all breakpoints are inserted in inferior.
1838 Throws exception on any error.
1839 A breakpoint that is already inserted won't be inserted
1840 again, so calling this function twice is safe. */
1841void
1842insert_breakpoints (void)
1843{
1844 struct breakpoint *bpt;
1845
1846 ALL_BREAKPOINTS (bpt)
1847 if (is_hardware_watchpoint (bpt))
4a64f543 1848 update_watchpoint (bpt, 0 /* don't reparse. */);
74960c60 1849
b60e7edf 1850 update_global_location_list (1);
74960c60 1851
c35b1492
PA
1852 /* update_global_location_list does not insert breakpoints when
1853 always_inserted_mode is not enabled. Explicitly insert them
1854 now. */
1855 if (!breakpoints_always_inserted_mode ())
74960c60
VP
1856 insert_breakpoint_locations ();
1857}
1858
c906108c
SS
1859/* insert_breakpoints is used when starting or continuing the program.
1860 remove_breakpoints is used when the program stops.
1861 Both return zero if successful,
1862 or an `errno' value if could not write the inferior. */
1863
74960c60
VP
1864static void
1865insert_breakpoint_locations (void)
c906108c 1866{
a5606eee 1867 struct breakpoint *bpt;
35df4500 1868 struct bp_location *bl, **blp_tmp;
e236ba44 1869 int error = 0;
c906108c
SS
1870 int val = 0;
1871 int disabled_breaks = 0;
81d0cc19 1872 int hw_breakpoint_error = 0;
c906108c 1873
81d0cc19 1874 struct ui_file *tmp_error_stream = mem_fileopen ();
f7545552 1875 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 1876
81d0cc19
GS
1877 /* Explicitly mark the warning -- this will only be printed if
1878 there was an error. */
1879 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
6c95b8df
PA
1880
1881 save_current_space_and_thread ();
1882
35df4500 1883 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 1884 {
35df4500 1885 if (!should_be_inserted (bl) || bl->inserted)
879bfdc2
DJ
1886 continue;
1887
4a64f543
MS
1888 /* There is no point inserting thread-specific breakpoints if
1889 the thread no longer exists. ALL_BP_LOCATIONS bp_location
1890 has BL->OWNER always non-NULL. */
35df4500
TJB
1891 if (bl->owner->thread != -1
1892 && !valid_thread_id (bl->owner->thread))
f365de73
AS
1893 continue;
1894
35df4500 1895 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
1896
1897 /* For targets that support global breakpoints, there's no need
1898 to select an inferior to insert breakpoint to. In fact, even
1899 if we aren't attached to any process yet, we should still
1900 insert breakpoints. */
1901 if (!gdbarch_has_global_breakpoints (target_gdbarch)
1902 && ptid_equal (inferior_ptid, null_ptid))
1903 continue;
1904
35df4500 1905 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
879bfdc2
DJ
1906 &hw_breakpoint_error);
1907 if (val)
e236ba44 1908 error = val;
879bfdc2 1909 }
c906108c 1910
4a64f543
MS
1911 /* If we failed to insert all locations of a watchpoint, remove
1912 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
1913 ALL_BREAKPOINTS (bpt)
1914 {
1915 int some_failed = 0;
1916 struct bp_location *loc;
1917
1918 if (!is_hardware_watchpoint (bpt))
1919 continue;
1920
d6b74ac4 1921 if (!breakpoint_enabled (bpt))
a5606eee 1922 continue;
74960c60
VP
1923
1924 if (bpt->disposition == disp_del_at_next_stop)
1925 continue;
a5606eee
VP
1926
1927 for (loc = bpt->loc; loc; loc = loc->next)
56710373 1928 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
1929 {
1930 some_failed = 1;
1931 break;
1932 }
1933 if (some_failed)
1934 {
1935 for (loc = bpt->loc; loc; loc = loc->next)
1936 if (loc->inserted)
1937 remove_breakpoint (loc, mark_uninserted);
1938
1939 hw_breakpoint_error = 1;
1940 fprintf_unfiltered (tmp_error_stream,
1941 "Could not insert hardware watchpoint %d.\n",
1942 bpt->number);
1943 error = -1;
1944 }
1945 }
1946
e236ba44 1947 if (error)
81d0cc19
GS
1948 {
1949 /* If a hardware breakpoint or watchpoint was inserted, add a
1950 message about possibly exhausted resources. */
879bfdc2 1951 if (hw_breakpoint_error)
81d0cc19 1952 {
c6510018
MS
1953 fprintf_unfiltered (tmp_error_stream,
1954 "Could not insert hardware breakpoints:\n\
1955You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 1956 }
81d0cc19
GS
1957 target_terminal_ours_for_output ();
1958 error_stream (tmp_error_stream);
1959 }
f7545552
TT
1960
1961 do_cleanups (cleanups);
c906108c
SS
1962}
1963
c906108c 1964int
fba45db2 1965remove_breakpoints (void)
c906108c 1966{
35df4500 1967 struct bp_location *bl, **blp_tmp;
3a1bae8e 1968 int val = 0;
c906108c 1969
35df4500 1970 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 1971 {
35df4500
TJB
1972 if (bl->inserted)
1973 val |= remove_breakpoint (bl, mark_uninserted);
c5aa993b 1974 }
3a1bae8e 1975 return val;
c906108c
SS
1976}
1977
6c95b8df
PA
1978/* Remove breakpoints of process PID. */
1979
1980int
1981remove_breakpoints_pid (int pid)
1982{
35df4500 1983 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
1984 int val;
1985 struct inferior *inf = find_inferior_pid (pid);
1986
35df4500 1987 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 1988 {
35df4500 1989 if (bl->pspace != inf->pspace)
6c95b8df
PA
1990 continue;
1991
35df4500 1992 if (bl->inserted)
6c95b8df 1993 {
35df4500 1994 val = remove_breakpoint (bl, mark_uninserted);
6c95b8df
PA
1995 if (val != 0)
1996 return val;
1997 }
1998 }
1999 return 0;
2000}
2001
692590c1 2002int
80ce1ecb 2003remove_hw_watchpoints (void)
692590c1 2004{
35df4500 2005 struct bp_location *bl, **blp_tmp;
3a1bae8e 2006 int val = 0;
692590c1 2007
35df4500 2008 ALL_BP_LOCATIONS (bl, blp_tmp)
692590c1 2009 {
35df4500
TJB
2010 if (bl->inserted && bl->loc_type == bp_loc_hardware_watchpoint)
2011 val |= remove_breakpoint (bl, mark_uninserted);
692590c1 2012 }
3a1bae8e 2013 return val;
692590c1
MS
2014}
2015
c906108c 2016int
fba45db2 2017reattach_breakpoints (int pid)
c906108c 2018{
6c95b8df 2019 struct cleanup *old_chain;
35df4500 2020 struct bp_location *bl, **blp_tmp;
c906108c 2021 int val;
86b887df 2022 struct ui_file *tmp_error_stream;
fa3a767f 2023 int dummy1 = 0, dummy2 = 0;
6c95b8df
PA
2024 struct inferior *inf;
2025 struct thread_info *tp;
2026
2027 tp = any_live_thread_of_process (pid);
2028 if (tp == NULL)
2029 return 1;
2030
2031 inf = find_inferior_pid (pid);
2032 old_chain = save_inferior_ptid ();
2033
2034 inferior_ptid = tp->ptid;
a4954f26 2035
86b887df 2036 tmp_error_stream = mem_fileopen ();
a4954f26 2037 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 2038
35df4500 2039 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2040 {
35df4500 2041 if (bl->pspace != inf->pspace)
6c95b8df
PA
2042 continue;
2043
35df4500 2044 if (bl->inserted)
c5aa993b 2045 {
35df4500
TJB
2046 bl->inserted = 0;
2047 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2);
c5aa993b
JM
2048 if (val != 0)
2049 {
ce696e05 2050 do_cleanups (old_chain);
c5aa993b
JM
2051 return val;
2052 }
2053 }
2054 }
ce696e05 2055 do_cleanups (old_chain);
c906108c
SS
2056 return 0;
2057}
2058
e58b0e63
PA
2059static int internal_breakpoint_number = -1;
2060
84f4c1fe
PM
2061/* Set the breakpoint number of B, depending on the value of INTERNAL.
2062 If INTERNAL is non-zero, the breakpoint number will be populated
2063 from internal_breakpoint_number and that variable decremented.
2064 Otherwis the breakpoint number will be populated from
2065 breakpoint_count and that value incremented. Internal breakpoints
2066 do not set the internal var bpnum. */
2067static void
2068set_breakpoint_number (int internal, struct breakpoint *b)
2069{
2070 if (internal)
2071 b->number = internal_breakpoint_number--;
2072 else
2073 {
2074 set_breakpoint_count (breakpoint_count + 1);
2075 b->number = breakpoint_count;
2076 }
2077}
2078
e62c965a 2079static struct breakpoint *
a6d9a66e
UW
2080create_internal_breakpoint (struct gdbarch *gdbarch,
2081 CORE_ADDR address, enum bptype type)
e62c965a 2082{
e62c965a
PP
2083 struct symtab_and_line sal;
2084 struct breakpoint *b;
2085
4a64f543 2086 init_sal (&sal); /* Initialize to zeroes. */
e62c965a
PP
2087
2088 sal.pc = address;
2089 sal.section = find_pc_overlay (sal.pc);
6c95b8df 2090 sal.pspace = current_program_space;
e62c965a 2091
a6d9a66e 2092 b = set_raw_breakpoint (gdbarch, sal, type);
e62c965a
PP
2093 b->number = internal_breakpoint_number--;
2094 b->disposition = disp_donttouch;
2095
2096 return b;
2097}
2098
17450429
PP
2099static const char *const longjmp_names[] =
2100 {
2101 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
2102 };
2103#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
2104
2105/* Per-objfile data private to breakpoint.c. */
2106struct breakpoint_objfile_data
2107{
2108 /* Minimal symbol for "_ovly_debug_event" (if any). */
2109 struct minimal_symbol *overlay_msym;
2110
2111 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
2112 struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES];
2113
2114 /* Minimal symbol for "std::terminate()" (if any). */
2115 struct minimal_symbol *terminate_msym;
2116
2117 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
2118 struct minimal_symbol *exception_msym;
2119};
2120
2121static const struct objfile_data *breakpoint_objfile_key;
2122
2123/* Minimal symbol not found sentinel. */
2124static struct minimal_symbol msym_not_found;
2125
2126/* Returns TRUE if MSYM point to the "not found" sentinel. */
2127
2128static int
2129msym_not_found_p (const struct minimal_symbol *msym)
2130{
2131 return msym == &msym_not_found;
2132}
2133
2134/* Return per-objfile data needed by breakpoint.c.
2135 Allocate the data if necessary. */
2136
2137static struct breakpoint_objfile_data *
2138get_breakpoint_objfile_data (struct objfile *objfile)
2139{
2140 struct breakpoint_objfile_data *bp_objfile_data;
2141
2142 bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key);
2143 if (bp_objfile_data == NULL)
2144 {
2145 bp_objfile_data = obstack_alloc (&objfile->objfile_obstack,
2146 sizeof (*bp_objfile_data));
2147
2148 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
2149 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
2150 }
2151 return bp_objfile_data;
2152}
2153
e62c965a 2154static void
af02033e 2155create_overlay_event_breakpoint (void)
e62c965a 2156{
69de3c6a 2157 struct objfile *objfile;
af02033e 2158 const char *const func_name = "_ovly_debug_event";
e62c965a 2159
69de3c6a
PP
2160 ALL_OBJFILES (objfile)
2161 {
2162 struct breakpoint *b;
17450429
PP
2163 struct breakpoint_objfile_data *bp_objfile_data;
2164 CORE_ADDR addr;
69de3c6a 2165
17450429
PP
2166 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2167
2168 if (msym_not_found_p (bp_objfile_data->overlay_msym))
2169 continue;
2170
2171 if (bp_objfile_data->overlay_msym == NULL)
2172 {
2173 struct minimal_symbol *m;
2174
2175 m = lookup_minimal_symbol_text (func_name, objfile);
2176 if (m == NULL)
2177 {
2178 /* Avoid future lookups in this objfile. */
2179 bp_objfile_data->overlay_msym = &msym_not_found;
2180 continue;
2181 }
2182 bp_objfile_data->overlay_msym = m;
2183 }
e62c965a 2184
17450429
PP
2185 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
2186 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
69de3c6a
PP
2187 bp_overlay_event);
2188 b->addr_string = xstrdup (func_name);
e62c965a 2189
69de3c6a
PP
2190 if (overlay_debugging == ovly_auto)
2191 {
2192 b->enable_state = bp_enabled;
2193 overlay_events_enabled = 1;
2194 }
2195 else
2196 {
2197 b->enable_state = bp_disabled;
2198 overlay_events_enabled = 0;
2199 }
e62c965a
PP
2200 }
2201 update_global_location_list (1);
2202}
2203
0fd8e87f 2204static void
af02033e 2205create_longjmp_master_breakpoint (void)
0fd8e87f 2206{
6c95b8df 2207 struct program_space *pspace;
6c95b8df
PA
2208 struct cleanup *old_chain;
2209
2210 old_chain = save_current_program_space ();
0fd8e87f 2211
6c95b8df 2212 ALL_PSPACES (pspace)
af02033e
PP
2213 {
2214 struct objfile *objfile;
2215
2216 set_current_program_space (pspace);
2217
2218 ALL_OBJFILES (objfile)
0fd8e87f 2219 {
af02033e
PP
2220 int i;
2221 struct gdbarch *gdbarch;
17450429 2222 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 2223
af02033e
PP
2224 gdbarch = get_objfile_arch (objfile);
2225 if (!gdbarch_get_longjmp_target_p (gdbarch))
0fd8e87f
UW
2226 continue;
2227
17450429
PP
2228 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2229
2230 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
2231 {
2232 struct breakpoint *b;
af02033e 2233 const char *func_name;
17450429 2234 CORE_ADDR addr;
6c95b8df 2235
17450429 2236 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i]))
af02033e 2237 continue;
0fd8e87f 2238
17450429
PP
2239 func_name = longjmp_names[i];
2240 if (bp_objfile_data->longjmp_msym[i] == NULL)
2241 {
2242 struct minimal_symbol *m;
2243
2244 m = lookup_minimal_symbol_text (func_name, objfile);
2245 if (m == NULL)
2246 {
2247 /* Prevent future lookups in this objfile. */
2248 bp_objfile_data->longjmp_msym[i] = &msym_not_found;
2249 continue;
2250 }
2251 bp_objfile_data->longjmp_msym[i] = m;
2252 }
2253
2254 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
2255 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master);
af02033e
PP
2256 b->addr_string = xstrdup (func_name);
2257 b->enable_state = bp_disabled;
2258 }
0fd8e87f 2259 }
af02033e 2260 }
0fd8e87f 2261 update_global_location_list (1);
6c95b8df
PA
2262
2263 do_cleanups (old_chain);
0fd8e87f
UW
2264}
2265
af02033e 2266/* Create a master std::terminate breakpoint. */
aa7d318d 2267static void
af02033e 2268create_std_terminate_master_breakpoint (void)
aa7d318d
TT
2269{
2270 struct program_space *pspace;
aa7d318d 2271 struct cleanup *old_chain;
af02033e 2272 const char *const func_name = "std::terminate()";
aa7d318d
TT
2273
2274 old_chain = save_current_program_space ();
2275
2276 ALL_PSPACES (pspace)
17450429
PP
2277 {
2278 struct objfile *objfile;
2279 CORE_ADDR addr;
2280
2281 set_current_program_space (pspace);
2282
aa7d318d
TT
2283 ALL_OBJFILES (objfile)
2284 {
2285 struct breakpoint *b;
17450429 2286 struct breakpoint_objfile_data *bp_objfile_data;
aa7d318d 2287
17450429 2288 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 2289
17450429
PP
2290 if (msym_not_found_p (bp_objfile_data->terminate_msym))
2291 continue;
2292
2293 if (bp_objfile_data->terminate_msym == NULL)
2294 {
2295 struct minimal_symbol *m;
2296
2297 m = lookup_minimal_symbol (func_name, NULL, objfile);
2298 if (m == NULL || (MSYMBOL_TYPE (m) != mst_text
2299 && MSYMBOL_TYPE (m) != mst_file_text))
2300 {
2301 /* Prevent future lookups in this objfile. */
2302 bp_objfile_data->terminate_msym = &msym_not_found;
2303 continue;
2304 }
2305 bp_objfile_data->terminate_msym = m;
2306 }
aa7d318d 2307
17450429
PP
2308 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
2309 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
aa7d318d
TT
2310 bp_std_terminate_master);
2311 b->addr_string = xstrdup (func_name);
2312 b->enable_state = bp_disabled;
2313 }
17450429
PP
2314 }
2315
aa7d318d
TT
2316 update_global_location_list (1);
2317
2318 do_cleanups (old_chain);
2319}
2320
186c406b
TT
2321/* Install a master breakpoint on the unwinder's debug hook. */
2322
2323void
2324create_exception_master_breakpoint (void)
2325{
2326 struct objfile *objfile;
17450429 2327 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
2328
2329 ALL_OBJFILES (objfile)
2330 {
17450429
PP
2331 struct breakpoint *b;
2332 struct gdbarch *gdbarch;
2333 struct breakpoint_objfile_data *bp_objfile_data;
2334 CORE_ADDR addr;
2335
2336 bp_objfile_data = get_breakpoint_objfile_data (objfile);
2337
2338 if (msym_not_found_p (bp_objfile_data->exception_msym))
2339 continue;
2340
2341 gdbarch = get_objfile_arch (objfile);
186c406b 2342
17450429 2343 if (bp_objfile_data->exception_msym == NULL)
186c406b 2344 {
17450429 2345 struct minimal_symbol *debug_hook;
186c406b 2346
17450429
PP
2347 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
2348 if (debug_hook == NULL)
2349 {
2350 bp_objfile_data->exception_msym = &msym_not_found;
2351 continue;
2352 }
2353
2354 bp_objfile_data->exception_msym = debug_hook;
186c406b 2355 }
17450429
PP
2356
2357 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
2358 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
2359 &current_target);
2360 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master);
2361 b->addr_string = xstrdup (func_name);
2362 b->enable_state = bp_disabled;
186c406b
TT
2363 }
2364
2365 update_global_location_list (1);
2366}
2367
c906108c 2368void
fba45db2 2369update_breakpoints_after_exec (void)
c906108c 2370{
35df4500 2371 struct breakpoint *b, *b_tmp;
876fa593 2372 struct bp_location *bploc, **bplocp_tmp;
c906108c 2373
25b22b0a
PA
2374 /* We're about to delete breakpoints from GDB's lists. If the
2375 INSERTED flag is true, GDB will try to lift the breakpoints by
2376 writing the breakpoints' "shadow contents" back into memory. The
2377 "shadow contents" are NOT valid after an exec, so GDB should not
2378 do that. Instead, the target is responsible from marking
2379 breakpoints out as soon as it detects an exec. We don't do that
2380 here instead, because there may be other attempts to delete
2381 breakpoints after detecting an exec and before reaching here. */
876fa593 2382 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
2383 if (bploc->pspace == current_program_space)
2384 gdb_assert (!bploc->inserted);
c906108c 2385
35df4500 2386 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 2387 {
6c95b8df
PA
2388 if (b->pspace != current_program_space)
2389 continue;
2390
4a64f543 2391 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
2392 if (b->type == bp_shlib_event)
2393 {
2394 delete_breakpoint (b);
2395 continue;
2396 }
c906108c 2397
4a64f543 2398 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
2399 if (b->type == bp_jit_event)
2400 {
2401 delete_breakpoint (b);
2402 continue;
2403 }
2404
1900040c 2405 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
2406 as must overlay event and longjmp master breakpoints. */
2407 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
2408 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
2409 || b->type == bp_exception_master)
c4093a6a
JM
2410 {
2411 delete_breakpoint (b);
2412 continue;
2413 }
2414
4a64f543 2415 /* Step-resume breakpoints are meaningless after an exec(). */
c5aa993b
JM
2416 if (b->type == bp_step_resume)
2417 {
2418 delete_breakpoint (b);
2419 continue;
2420 }
2421
611c83ae
PA
2422 /* Longjmp and longjmp-resume breakpoints are also meaningless
2423 after an exec. */
186c406b
TT
2424 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
2425 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
2426 {
2427 delete_breakpoint (b);
2428 continue;
2429 }
2430
ce78b96d
JB
2431 if (b->type == bp_catchpoint)
2432 {
2433 /* For now, none of the bp_catchpoint breakpoints need to
2434 do anything at this point. In the future, if some of
2435 the catchpoints need to something, we will need to add
2436 a new method, and call this method from here. */
2437 continue;
2438 }
2439
c5aa993b
JM
2440 /* bp_finish is a special case. The only way we ought to be able
2441 to see one of these when an exec() has happened, is if the user
2442 caught a vfork, and then said "finish". Ordinarily a finish just
2443 carries them to the call-site of the current callee, by setting
2444 a temporary bp there and resuming. But in this case, the finish
2445 will carry them entirely through the vfork & exec.
2446
2447 We don't want to allow a bp_finish to remain inserted now. But
2448 we can't safely delete it, 'cause finish_command has a handle to
2449 the bp on a bpstat, and will later want to delete it. There's a
2450 chance (and I've seen it happen) that if we delete the bp_finish
2451 here, that its storage will get reused by the time finish_command
2452 gets 'round to deleting the "use to be a bp_finish" breakpoint.
2453 We really must allow finish_command to delete a bp_finish.
2454
53a5351d
JM
2455 In the absense of a general solution for the "how do we know
2456 it's safe to delete something others may have handles to?"
2457 problem, what we'll do here is just uninsert the bp_finish, and
2458 let finish_command delete it.
2459
2460 (We know the bp_finish is "doomed" in the sense that it's
2461 momentary, and will be deleted as soon as finish_command sees
2462 the inferior stopped. So it doesn't matter that the bp's
2463 address is probably bogus in the new a.out, unlike e.g., the
2464 solib breakpoints.) */
c5aa993b 2465
c5aa993b
JM
2466 if (b->type == bp_finish)
2467 {
2468 continue;
2469 }
2470
2471 /* Without a symbolic address, we have little hope of the
2472 pre-exec() address meaning the same thing in the post-exec()
4a64f543 2473 a.out. */
c5aa993b
JM
2474 if (b->addr_string == NULL)
2475 {
2476 delete_breakpoint (b);
2477 continue;
2478 }
c5aa993b 2479 }
1900040c 2480 /* FIXME what about longjmp breakpoints? Re-create them here? */
af02033e
PP
2481 create_overlay_event_breakpoint ();
2482 create_longjmp_master_breakpoint ();
2483 create_std_terminate_master_breakpoint ();
186c406b 2484 create_exception_master_breakpoint ();
c906108c
SS
2485}
2486
2487int
fba45db2 2488detach_breakpoints (int pid)
c906108c 2489{
35df4500 2490 struct bp_location *bl, **blp_tmp;
3a1bae8e 2491 int val = 0;
ce696e05 2492 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 2493 struct inferior *inf = current_inferior ();
c5aa993b 2494
39f77062 2495 if (pid == PIDGET (inferior_ptid))
8a3fe4f8 2496 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 2497
6c95b8df 2498 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
ce696e05 2499 inferior_ptid = pid_to_ptid (pid);
35df4500 2500 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2501 {
35df4500 2502 if (bl->pspace != inf->pspace)
6c95b8df
PA
2503 continue;
2504
35df4500
TJB
2505 if (bl->inserted)
2506 val |= remove_breakpoint_1 (bl, mark_inserted);
c5aa993b 2507 }
d03285ec
UW
2508
2509 /* Detach single-step breakpoints as well. */
2510 detach_single_step_breakpoints ();
2511
ce696e05 2512 do_cleanups (old_chain);
3a1bae8e 2513 return val;
c906108c
SS
2514}
2515
35df4500 2516/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
2517 Note that this is used to detach breakpoints from a child fork.
2518 When we get here, the child isn't in the inferior list, and neither
2519 do we have objects to represent its address space --- we should
35df4500 2520 *not* look at bl->pspace->aspace here. */
6c95b8df 2521
c906108c 2522static int
35df4500 2523remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
c906108c
SS
2524{
2525 int val;
c5aa993b 2526
35df4500
TJB
2527 /* BL is never in moribund_locations by our callers. */
2528 gdb_assert (bl->owner != NULL);
2bdf28a0 2529
35df4500 2530 if (bl->owner->enable_state == bp_permanent)
c2c6d25f
JM
2531 /* Permanent breakpoints cannot be inserted or removed. */
2532 return 0;
2533
74960c60
VP
2534 /* The type of none suggests that owner is actually deleted.
2535 This should not ever happen. */
35df4500 2536 gdb_assert (bl->owner->type != bp_none);
0bde7532 2537
35df4500
TJB
2538 if (bl->loc_type == bp_loc_software_breakpoint
2539 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 2540 {
c02f5703
MS
2541 /* "Normal" instruction breakpoint: either the standard
2542 trap-instruction bp (bp_breakpoint), or a
2543 bp_hardware_breakpoint. */
2544
2545 /* First check to see if we have to handle an overlay. */
2546 if (overlay_debugging == ovly_off
35df4500
TJB
2547 || bl->section == NULL
2548 || !(section_is_overlay (bl->section)))
c02f5703
MS
2549 {
2550 /* No overlay handling: just remove the breakpoint. */
2551
35df4500
TJB
2552 if (bl->loc_type == bp_loc_hardware_breakpoint)
2553 val = target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
c02f5703 2554 else
35df4500 2555 val = target_remove_breakpoint (bl->gdbarch, &bl->target_info);
c02f5703 2556 }
c906108c
SS
2557 else
2558 {
4a64f543 2559 /* This breakpoint is in an overlay section.
c02f5703
MS
2560 Did we set a breakpoint at the LMA? */
2561 if (!overlay_events_enabled)
2562 {
2563 /* Yes -- overlay event support is not active, so we
2564 should have set a breakpoint at the LMA. Remove it.
2565 */
c02f5703
MS
2566 /* Ignore any failures: if the LMA is in ROM, we will
2567 have already warned when we failed to insert it. */
35df4500
TJB
2568 if (bl->loc_type == bp_loc_hardware_breakpoint)
2569 target_remove_hw_breakpoint (bl->gdbarch,
2570 &bl->overlay_target_info);
c02f5703 2571 else
35df4500
TJB
2572 target_remove_breakpoint (bl->gdbarch,
2573 &bl->overlay_target_info);
c02f5703
MS
2574 }
2575 /* Did we set a breakpoint at the VMA?
2576 If so, we will have marked the breakpoint 'inserted'. */
35df4500 2577 if (bl->inserted)
c906108c 2578 {
c02f5703
MS
2579 /* Yes -- remove it. Previously we did not bother to
2580 remove the breakpoint if the section had been
2581 unmapped, but let's not rely on that being safe. We
2582 don't know what the overlay manager might do. */
35df4500
TJB
2583 if (bl->loc_type == bp_loc_hardware_breakpoint)
2584 val = target_remove_hw_breakpoint (bl->gdbarch,
2585 &bl->target_info);
aa67235e
UW
2586
2587 /* However, we should remove *software* breakpoints only
2588 if the section is still mapped, or else we overwrite
2589 wrong code with the saved shadow contents. */
35df4500
TJB
2590 else if (section_is_mapped (bl->section))
2591 val = target_remove_breakpoint (bl->gdbarch,
2592 &bl->target_info);
aa67235e
UW
2593 else
2594 val = 0;
c906108c 2595 }
c02f5703
MS
2596 else
2597 {
2598 /* No -- not inserted, so no need to remove. No error. */
2599 val = 0;
2600 }
c906108c 2601 }
879d1e6b
UW
2602
2603 /* In some cases, we might not be able to remove a breakpoint
2604 in a shared library that has already been removed, but we
2605 have not yet processed the shlib unload event. */
35df4500 2606 if (val && solib_name_from_address (bl->pspace, bl->address))
879d1e6b
UW
2607 val = 0;
2608
c906108c
SS
2609 if (val)
2610 return val;
35df4500 2611 bl->inserted = (is == mark_inserted);
c906108c 2612 }
35df4500 2613 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 2614 {
77b06cd7
TJB
2615 gdb_assert (bl->owner->ops != NULL
2616 && bl->owner->ops->remove_location != NULL);
2617
35df4500 2618 bl->inserted = (is == mark_inserted);
77b06cd7 2619 bl->owner->ops->remove_location (bl);
2e70b7b9 2620
c906108c 2621 /* Failure to remove any of the hardware watchpoints comes here. */
35df4500 2622 if ((is == mark_uninserted) && (bl->inserted))
8a3fe4f8 2623 warning (_("Could not remove hardware watchpoint %d."),
35df4500 2624 bl->owner->number);
c906108c 2625 }
35df4500
TJB
2626 else if (bl->owner->type == bp_catchpoint
2627 && breakpoint_enabled (bl->owner)
2628 && !bl->duplicate)
ce78b96d 2629 {
77b06cd7
TJB
2630 gdb_assert (bl->owner->ops != NULL
2631 && bl->owner->ops->remove_location != NULL);
ce78b96d 2632
77b06cd7 2633 val = bl->owner->ops->remove_location (bl);
ce78b96d
JB
2634 if (val)
2635 return val;
77b06cd7 2636
35df4500 2637 bl->inserted = (is == mark_inserted);
ce78b96d 2638 }
c906108c
SS
2639
2640 return 0;
2641}
2642
6c95b8df 2643static int
35df4500 2644remove_breakpoint (struct bp_location *bl, insertion_state_t is)
6c95b8df
PA
2645{
2646 int ret;
2647 struct cleanup *old_chain;
2648
35df4500
TJB
2649 /* BL is never in moribund_locations by our callers. */
2650 gdb_assert (bl->owner != NULL);
2bdf28a0 2651
35df4500 2652 if (bl->owner->enable_state == bp_permanent)
6c95b8df
PA
2653 /* Permanent breakpoints cannot be inserted or removed. */
2654 return 0;
2655
2656 /* The type of none suggests that owner is actually deleted.
2657 This should not ever happen. */
35df4500 2658 gdb_assert (bl->owner->type != bp_none);
6c95b8df
PA
2659
2660 old_chain = save_current_space_and_thread ();
2661
35df4500 2662 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 2663
35df4500 2664 ret = remove_breakpoint_1 (bl, is);
6c95b8df
PA
2665
2666 do_cleanups (old_chain);
2667 return ret;
2668}
2669
c906108c
SS
2670/* Clear the "inserted" flag in all breakpoints. */
2671
25b22b0a 2672void
fba45db2 2673mark_breakpoints_out (void)
c906108c 2674{
35df4500 2675 struct bp_location *bl, **blp_tmp;
c906108c 2676
35df4500
TJB
2677 ALL_BP_LOCATIONS (bl, blp_tmp)
2678 if (bl->pspace == current_program_space)
2679 bl->inserted = 0;
c906108c
SS
2680}
2681
53a5351d
JM
2682/* Clear the "inserted" flag in all breakpoints and delete any
2683 breakpoints which should go away between runs of the program.
c906108c
SS
2684
2685 Plus other such housekeeping that has to be done for breakpoints
2686 between runs.
2687
53a5351d
JM
2688 Note: this function gets called at the end of a run (by
2689 generic_mourn_inferior) and when a run begins (by
4a64f543 2690 init_wait_for_inferior). */
c906108c
SS
2691
2692
2693
2694void
fba45db2 2695breakpoint_init_inferior (enum inf_context context)
c906108c 2696{
35df4500
TJB
2697 struct breakpoint *b, *b_tmp;
2698 struct bp_location *bl, **blp_tmp;
1c5cfe86 2699 int ix;
6c95b8df 2700 struct program_space *pspace = current_program_space;
c906108c 2701
50c71eaf
PA
2702 /* If breakpoint locations are shared across processes, then there's
2703 nothing to do. */
2567c7d9 2704 if (gdbarch_has_global_breakpoints (target_gdbarch))
50c71eaf
PA
2705 return;
2706
35df4500 2707 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 2708 {
35df4500
TJB
2709 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
2710 if (bl->pspace == pspace
2711 && bl->owner->enable_state != bp_permanent)
2712 bl->inserted = 0;
6c95b8df 2713 }
075f6582 2714
35df4500 2715 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 2716 {
6c95b8df
PA
2717 if (b->loc && b->loc->pspace != pspace)
2718 continue;
2719
c5aa993b
JM
2720 switch (b->type)
2721 {
2722 case bp_call_dummy:
c906108c 2723
c5aa993b 2724 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
2725 cause problems when the inferior is rerun, so we better get
2726 rid of it. */
2727
2728 case bp_watchpoint_scope:
2729
2730 /* Also get rid of scope breakpoints. */
2731
2732 case bp_shlib_event:
2733
2734 /* Also remove solib event breakpoints. Their addresses may
2735 have changed since the last time we ran the program.
2736 Actually we may now be debugging against different target;
2737 and so the solib backend that installed this breakpoint may
2738 not be used in by the target. E.g.,
2739
2740 (gdb) file prog-linux
2741 (gdb) run # native linux target
2742 ...
2743 (gdb) kill
2744 (gdb) file prog-win.exe
2745 (gdb) tar rem :9999 # remote Windows gdbserver.
2746 */
c906108c 2747
c5aa993b
JM
2748 delete_breakpoint (b);
2749 break;
c906108c 2750
c5aa993b
JM
2751 case bp_watchpoint:
2752 case bp_hardware_watchpoint:
2753 case bp_read_watchpoint:
2754 case bp_access_watchpoint:
c906108c 2755
c5aa993b
JM
2756 /* Likewise for watchpoints on local expressions. */
2757 if (b->exp_valid_block != NULL)
2758 delete_breakpoint (b);
967af18d 2759 else if (context == inf_starting)
c860120c 2760 {
4a64f543
MS
2761 /* Reset val field to force reread of starting value in
2762 insert_breakpoints. */
c860120c
PM
2763 if (b->val)
2764 value_free (b->val);
2765 b->val = NULL;
fa4727a6 2766 b->val_valid = 0;
c860120c 2767 }
c5aa993b
JM
2768 break;
2769 default:
c5aa993b
JM
2770 break;
2771 }
2772 }
1c5cfe86
PA
2773
2774 /* Get rid of the moribund locations. */
35df4500
TJB
2775 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
2776 decref_bp_location (&bl);
1c5cfe86 2777 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
2778}
2779
6c95b8df
PA
2780/* These functions concern about actual breakpoints inserted in the
2781 target --- to e.g. check if we need to do decr_pc adjustment or if
2782 we need to hop over the bkpt --- so we check for address space
2783 match, not program space. */
2784
c2c6d25f
JM
2785/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
2786 exists at PC. It returns ordinary_breakpoint_here if it's an
2787 ordinary breakpoint, or permanent_breakpoint_here if it's a
2788 permanent breakpoint.
2789 - When continuing from a location with an ordinary breakpoint, we
2790 actually single step once before calling insert_breakpoints.
2791 - When continuing from a localion with a permanent breakpoint, we
2792 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
2793 the target, to advance the PC past the breakpoint. */
c906108c 2794
c2c6d25f 2795enum breakpoint_here
6c95b8df 2796breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 2797{
35df4500 2798 struct bp_location *bl, **blp_tmp;
c2c6d25f 2799 int any_breakpoint_here = 0;
c906108c 2800
35df4500 2801 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 2802 {
35df4500
TJB
2803 if (bl->loc_type != bp_loc_software_breakpoint
2804 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2805 continue;
2806
f1310107 2807 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500
TJB
2808 if ((breakpoint_enabled (bl->owner)
2809 || bl->owner->enable_state == bp_permanent)
f1310107 2810 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
2811 {
2812 if (overlay_debugging
35df4500
TJB
2813 && section_is_overlay (bl->section)
2814 && !section_is_mapped (bl->section))
075f6582 2815 continue; /* unmapped overlay -- can't be a match */
35df4500 2816 else if (bl->owner->enable_state == bp_permanent)
075f6582
DJ
2817 return permanent_breakpoint_here;
2818 else
2819 any_breakpoint_here = 1;
2820 }
2821 }
c906108c 2822
c2c6d25f 2823 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
2824}
2825
1c5cfe86
PA
2826/* Return true if there's a moribund breakpoint at PC. */
2827
2828int
6c95b8df 2829moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
2830{
2831 struct bp_location *loc;
2832 int ix;
2833
2834 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 2835 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
2836 return 1;
2837
2838 return 0;
2839}
c2c6d25f 2840
c36b740a 2841/* Returns non-zero if there's a breakpoint inserted at PC, which is
4a64f543
MS
2842 inserted using regular breakpoint_chain / bp_location array
2843 mechanism. This does not check for single-step breakpoints, which
2844 are inserted and removed using direct target manipulation. */
c906108c
SS
2845
2846int
4a64f543
MS
2847regular_breakpoint_inserted_here_p (struct address_space *aspace,
2848 CORE_ADDR pc)
c906108c 2849{
35df4500 2850 struct bp_location *bl, **blp_tmp;
c906108c 2851
35df4500 2852 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2853 {
35df4500
TJB
2854 if (bl->loc_type != bp_loc_software_breakpoint
2855 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2856 continue;
2857
35df4500 2858 if (bl->inserted
f1310107 2859 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
2860 {
2861 if (overlay_debugging
35df4500
TJB
2862 && section_is_overlay (bl->section)
2863 && !section_is_mapped (bl->section))
075f6582
DJ
2864 continue; /* unmapped overlay -- can't be a match */
2865 else
2866 return 1;
2867 }
c5aa993b 2868 }
c36b740a
VP
2869 return 0;
2870}
2871
2872/* Returns non-zero iff there's either regular breakpoint
2873 or a single step breakpoint inserted at PC. */
2874
2875int
6c95b8df 2876breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c36b740a 2877{
6c95b8df 2878 if (regular_breakpoint_inserted_here_p (aspace, pc))
c36b740a 2879 return 1;
c906108c 2880
6c95b8df 2881 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2882 return 1;
2883
c906108c
SS
2884 return 0;
2885}
2886
4fa8626c
DJ
2887/* This function returns non-zero iff there is a software breakpoint
2888 inserted at PC. */
2889
2890int
3e43a32a
MS
2891software_breakpoint_inserted_here_p (struct address_space *aspace,
2892 CORE_ADDR pc)
4fa8626c 2893{
35df4500 2894 struct bp_location *bl, **blp_tmp;
4fa8626c 2895
35df4500 2896 ALL_BP_LOCATIONS (bl, blp_tmp)
4fa8626c 2897 {
35df4500 2898 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
2899 continue;
2900
35df4500
TJB
2901 if (bl->inserted
2902 && breakpoint_address_match (bl->pspace->aspace, bl->address,
6c95b8df 2903 aspace, pc))
4fa8626c
DJ
2904 {
2905 if (overlay_debugging
35df4500
TJB
2906 && section_is_overlay (bl->section)
2907 && !section_is_mapped (bl->section))
4fa8626c
DJ
2908 continue; /* unmapped overlay -- can't be a match */
2909 else
2910 return 1;
2911 }
2912 }
2913
1aafd4da 2914 /* Also check for software single-step breakpoints. */
6c95b8df 2915 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2916 return 1;
2917
4fa8626c
DJ
2918 return 0;
2919}
2920
9093389c
PA
2921int
2922hardware_watchpoint_inserted_in_range (struct address_space *aspace,
2923 CORE_ADDR addr, ULONGEST len)
2924{
2925 struct breakpoint *bpt;
2926
2927 ALL_BREAKPOINTS (bpt)
2928 {
2929 struct bp_location *loc;
2930
2931 if (bpt->type != bp_hardware_watchpoint
2932 && bpt->type != bp_access_watchpoint)
2933 continue;
2934
2935 if (!breakpoint_enabled (bpt))
2936 continue;
2937
2938 for (loc = bpt->loc; loc; loc = loc->next)
2939 if (loc->pspace->aspace == aspace && loc->inserted)
2940 {
2941 CORE_ADDR l, h;
2942
2943 /* Check for intersection. */
2944 l = max (loc->address, addr);
2945 h = min (loc->address + loc->length, addr + len);
2946 if (l < h)
2947 return 1;
2948 }
2949 }
2950 return 0;
2951}
2952
075f6582
DJ
2953/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
2954 PC is valid for process/thread PTID. */
c906108c
SS
2955
2956int
6c95b8df
PA
2957breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc,
2958 ptid_t ptid)
c906108c 2959{
35df4500 2960 struct bp_location *bl, **blp_tmp;
4a306c9a 2961 /* The thread and task IDs associated to PTID, computed lazily. */
a6f1cd96 2962 int thread = -1;
4a306c9a 2963 int task = 0;
a6f1cd96 2964
35df4500 2965 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2966 {
35df4500
TJB
2967 if (bl->loc_type != bp_loc_software_breakpoint
2968 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
2969 continue;
2970
35df4500
TJB
2971 /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */
2972 if (!breakpoint_enabled (bl->owner)
2973 && bl->owner->enable_state != bp_permanent)
a6f1cd96
JB
2974 continue;
2975
f1310107 2976 if (!breakpoint_location_address_match (bl, aspace, pc))
a6f1cd96
JB
2977 continue;
2978
35df4500 2979 if (bl->owner->thread != -1)
075f6582 2980 {
a6f1cd96
JB
2981 /* This is a thread-specific breakpoint. Check that ptid
2982 matches that thread. If thread hasn't been computed yet,
2983 it is now time to do so. */
2984 if (thread == -1)
2985 thread = pid_to_thread_id (ptid);
35df4500 2986 if (bl->owner->thread != thread)
a6f1cd96 2987 continue;
075f6582 2988 }
a6f1cd96 2989
35df4500 2990 if (bl->owner->task != 0)
4a306c9a
JB
2991 {
2992 /* This is a task-specific breakpoint. Check that ptid
2993 matches that task. If task hasn't been computed yet,
2994 it is now time to do so. */
2995 if (task == 0)
2996 task = ada_get_task_number (ptid);
35df4500 2997 if (bl->owner->task != task)
4a306c9a
JB
2998 continue;
2999 }
3000
a6f1cd96 3001 if (overlay_debugging
35df4500
TJB
3002 && section_is_overlay (bl->section)
3003 && !section_is_mapped (bl->section))
a6f1cd96
JB
3004 continue; /* unmapped overlay -- can't be a match */
3005
3006 return 1;
c5aa993b 3007 }
c906108c
SS
3008
3009 return 0;
3010}
c906108c 3011\f
c5aa993b 3012
c906108c
SS
3013/* bpstat stuff. External routines' interfaces are documented
3014 in breakpoint.h. */
3015
3016int
fba45db2 3017ep_is_catchpoint (struct breakpoint *ep)
c906108c 3018{
533be4dd 3019 return (ep->type == bp_catchpoint);
c906108c
SS
3020}
3021
f431efe5
PA
3022/* Frees any storage that is part of a bpstat. Does not walk the
3023 'next' chain. */
3024
3025static void
198757a8
VP
3026bpstat_free (bpstat bs)
3027{
3028 if (bs->old_val != NULL)
3029 value_free (bs->old_val);
9add0f1b 3030 decref_counted_command_line (&bs->commands);
f431efe5 3031 decref_bp_location (&bs->bp_location_at);
198757a8
VP
3032 xfree (bs);
3033}
3034
c906108c
SS
3035/* Clear a bpstat so that it says we are not at any breakpoint.
3036 Also free any storage that is part of a bpstat. */
3037
3038void
fba45db2 3039bpstat_clear (bpstat *bsp)
c906108c
SS
3040{
3041 bpstat p;
3042 bpstat q;
3043
3044 if (bsp == 0)
3045 return;
3046 p = *bsp;
3047 while (p != NULL)
3048 {
3049 q = p->next;
198757a8 3050 bpstat_free (p);
c906108c
SS
3051 p = q;
3052 }
3053 *bsp = NULL;
3054}
3055
3056/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
3057 is part of the bpstat is copied as well. */
3058
3059bpstat
fba45db2 3060bpstat_copy (bpstat bs)
c906108c
SS
3061{
3062 bpstat p = NULL;
3063 bpstat tmp;
3064 bpstat retval = NULL;
3065
3066 if (bs == NULL)
3067 return bs;
3068
3069 for (; bs != NULL; bs = bs->next)
3070 {
3071 tmp = (bpstat) xmalloc (sizeof (*tmp));
3072 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 3073 incref_counted_command_line (tmp->commands);
f431efe5 3074 incref_bp_location (tmp->bp_location_at);
31cc81e9 3075 if (bs->old_val != NULL)
3c3185ac
JK
3076 {
3077 tmp->old_val = value_copy (bs->old_val);
3078 release_value (tmp->old_val);
3079 }
31cc81e9 3080
c906108c
SS
3081 if (p == NULL)
3082 /* This is the first thing in the chain. */
3083 retval = tmp;
3084 else
3085 p->next = tmp;
3086 p = tmp;
3087 }
3088 p->next = NULL;
3089 return retval;
3090}
3091
4a64f543 3092/* Find the bpstat associated with this breakpoint. */
c906108c
SS
3093
3094bpstat
fba45db2 3095bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 3096{
c5aa993b
JM
3097 if (bsp == NULL)
3098 return NULL;
c906108c 3099
c5aa993b
JM
3100 for (; bsp != NULL; bsp = bsp->next)
3101 {
f431efe5 3102 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
3103 return bsp;
3104 }
c906108c
SS
3105 return NULL;
3106}
3107
4a64f543
MS
3108/* Put in *NUM the breakpoint number of the first breakpoint we are
3109 stopped at. *BSP upon return is a bpstat which points to the
3110 remaining breakpoints stopped at (but which is not guaranteed to be
3111 good for anything but further calls to bpstat_num).
3112
8671a17b
PA
3113 Return 0 if passed a bpstat which does not indicate any breakpoints.
3114 Return -1 if stopped at a breakpoint that has been deleted since
3115 we set it.
3116 Return 1 otherwise. */
c906108c
SS
3117
3118int
8671a17b 3119bpstat_num (bpstat *bsp, int *num)
c906108c
SS
3120{
3121 struct breakpoint *b;
3122
3123 if ((*bsp) == NULL)
3124 return 0; /* No more breakpoint values */
8671a17b 3125
4a64f543
MS
3126 /* We assume we'll never have several bpstats that correspond to a
3127 single breakpoint -- otherwise, this function might return the
3128 same number more than once and this will look ugly. */
f431efe5 3129 b = (*bsp)->breakpoint_at;
8671a17b
PA
3130 *bsp = (*bsp)->next;
3131 if (b == NULL)
3132 return -1; /* breakpoint that's been deleted since */
3133
3134 *num = b->number; /* We have its number */
3135 return 1;
c906108c
SS
3136}
3137
3138/* Modify BS so that the actions will not be performed. */
3139
3140void
fba45db2 3141bpstat_clear_actions (bpstat bs)
c906108c
SS
3142{
3143 for (; bs != NULL; bs = bs->next)
3144 {
9add0f1b 3145 decref_counted_command_line (&bs->commands);
dde2d684 3146 bs->commands_left = NULL;
c906108c
SS
3147 if (bs->old_val != NULL)
3148 {
3149 value_free (bs->old_val);
3150 bs->old_val = NULL;
3151 }
3152 }
3153}
3154
f3b1572e
PA
3155/* Called when a command is about to proceed the inferior. */
3156
3157static void
3158breakpoint_about_to_proceed (void)
3159{
3160 if (!ptid_equal (inferior_ptid, null_ptid))
3161 {
3162 struct thread_info *tp = inferior_thread ();
3163
3164 /* Allow inferior function calls in breakpoint commands to not
3165 interrupt the command list. When the call finishes
3166 successfully, the inferior will be standing at the same
3167 breakpoint as if nothing happened. */
16c381f0 3168 if (tp->control.in_infcall)
f3b1572e
PA
3169 return;
3170 }
3171
3172 breakpoint_proceeded = 1;
3173}
3174
4a64f543
MS
3175/* Stub for cleaning up our state if we error-out of a breakpoint
3176 command. */
c906108c 3177static void
4efb68b1 3178cleanup_executing_breakpoints (void *ignore)
c906108c
SS
3179{
3180 executing_breakpoint_commands = 0;
3181}
3182
4a64f543
MS
3183/* Execute all the commands associated with all the breakpoints at
3184 this location. Any of these commands could cause the process to
3185 proceed beyond this point, etc. We look out for such changes by
3186 checking the global "breakpoint_proceeded" after each command.
c906108c 3187
347bddb7
PA
3188 Returns true if a breakpoint command resumed the inferior. In that
3189 case, it is the caller's responsibility to recall it again with the
3190 bpstat of the current thread. */
3191
3192static int
3193bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
3194{
3195 bpstat bs;
3196 struct cleanup *old_chain;
347bddb7 3197 int again = 0;
c906108c
SS
3198
3199 /* Avoid endless recursion if a `source' command is contained
3200 in bs->commands. */
3201 if (executing_breakpoint_commands)
347bddb7 3202 return 0;
c906108c
SS
3203
3204 executing_breakpoint_commands = 1;
3205 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
3206
4a64f543 3207 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
3208 bs = *bsp;
3209
3210 breakpoint_proceeded = 0;
3211 for (; bs != NULL; bs = bs->next)
3212 {
9add0f1b 3213 struct counted_command_line *ccmd;
6c50ab1c
JB
3214 struct command_line *cmd;
3215 struct cleanup *this_cmd_tree_chain;
3216
3217 /* Take ownership of the BSP's command tree, if it has one.
3218
3219 The command tree could legitimately contain commands like
3220 'step' and 'next', which call clear_proceed_status, which
3221 frees stop_bpstat's command tree. To make sure this doesn't
3222 free the tree we're executing out from under us, we need to
3223 take ownership of the tree ourselves. Since a given bpstat's
3224 commands are only executed once, we don't need to copy it; we
3225 can clear the pointer in the bpstat, and make sure we free
3226 the tree when we're done. */
9add0f1b
TT
3227 ccmd = bs->commands;
3228 bs->commands = NULL;
3229 this_cmd_tree_chain
3230 = make_cleanup_decref_counted_command_line (&ccmd);
3231 cmd = bs->commands_left;
3232 bs->commands_left = NULL;
6c50ab1c 3233
c906108c
SS
3234 while (cmd != NULL)
3235 {
3236 execute_control_command (cmd);
3237
3238 if (breakpoint_proceeded)
3239 break;
3240 else
3241 cmd = cmd->next;
3242 }
6c50ab1c
JB
3243
3244 /* We can free this command tree now. */
3245 do_cleanups (this_cmd_tree_chain);
3246
c906108c 3247 if (breakpoint_proceeded)
32c1e744
VP
3248 {
3249 if (target_can_async_p ())
347bddb7
PA
3250 /* If we are in async mode, then the target might be still
3251 running, not stopped at any breakpoint, so nothing for
3252 us to do here -- just return to the event loop. */
3253 ;
32c1e744
VP
3254 else
3255 /* In sync mode, when execute_control_command returns
3256 we're already standing on the next breakpoint.
347bddb7
PA
3257 Breakpoint commands for that stop were not run, since
3258 execute_command does not run breakpoint commands --
3259 only command_line_handler does, but that one is not
3260 involved in execution of breakpoint commands. So, we
3261 can now execute breakpoint commands. It should be
3262 noted that making execute_command do bpstat actions is
3263 not an option -- in this case we'll have recursive
3264 invocation of bpstat for each breakpoint with a
3265 command, and can easily blow up GDB stack. Instead, we
3266 return true, which will trigger the caller to recall us
3267 with the new stop_bpstat. */
3268 again = 1;
3269 break;
32c1e744 3270 }
c906108c 3271 }
c2b8ed2c 3272 do_cleanups (old_chain);
347bddb7
PA
3273 return again;
3274}
3275
3276void
3277bpstat_do_actions (void)
3278{
3279 /* Do any commands attached to breakpoint we are stopped at. */
3280 while (!ptid_equal (inferior_ptid, null_ptid)
3281 && target_has_execution
3282 && !is_exited (inferior_ptid)
3283 && !is_executing (inferior_ptid))
3284 /* Since in sync mode, bpstat_do_actions may resume the inferior,
3285 and only return when it is stopped at the next breakpoint, we
3286 keep doing breakpoint actions until it returns false to
3287 indicate the inferior was not resumed. */
16c381f0 3288 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 3289 break;
c906108c
SS
3290}
3291
fa4727a6
DJ
3292/* Print out the (old or new) value associated with a watchpoint. */
3293
3294static void
3295watchpoint_value_print (struct value *val, struct ui_file *stream)
3296{
3297 if (val == NULL)
3298 fprintf_unfiltered (stream, _("<unreadable>"));
3299 else
79a45b7d
TT
3300 {
3301 struct value_print_options opts;
3302 get_user_print_options (&opts);
3303 value_print (val, stream, &opts);
3304 }
fa4727a6
DJ
3305}
3306
e514a9d6 3307/* This is the normal print function for a bpstat. In the future,
c906108c 3308 much of this logic could (should?) be moved to bpstat_stop_status,
e514a9d6
JM
3309 by having it set different print_it values.
3310
3311 Current scheme: When we stop, bpstat_print() is called. It loops
3312 through the bpstat list of things causing this stop, calling the
4a64f543 3313 print_bp_stop_message function on each one. The behavior of the
e514a9d6 3314 print_bp_stop_message function depends on the print_it field of
4a64f543 3315 bpstat. If such field so indicates, call this function here.
e514a9d6
JM
3316
3317 Return values from this routine (ultimately used by bpstat_print()
3318 and normal_stop() to decide what to do):
3319 PRINT_NOTHING: Means we already printed all we needed to print,
3320 don't print anything else.
3321 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
3322 that something to be followed by a location.
3323 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
3324 that something to be followed by a location.
3325 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
3326 analysis. */
c906108c 3327
917317f4 3328static enum print_stop_action
fba45db2 3329print_it_typical (bpstat bs)
c906108c 3330{
f7545552 3331 struct cleanup *old_chain;
4f8d1dc6 3332 struct breakpoint *b;
89f9893c 3333 const struct bp_location *bl;
8b93c638 3334 struct ui_stream *stb;
f7545552
TT
3335 int bp_temp = 0;
3336 enum print_stop_action result;
3337
f431efe5
PA
3338 gdb_assert (bs->bp_location_at != NULL);
3339
3340 bl = bs->bp_location_at;
3341 b = bs->breakpoint_at;
c906108c 3342
f7545552
TT
3343 stb = ui_out_stream_new (uiout);
3344 old_chain = make_cleanup_ui_out_stream_delete (stb);
3345
4f8d1dc6 3346 switch (b->type)
c906108c 3347 {
e514a9d6
JM
3348 case bp_breakpoint:
3349 case bp_hardware_breakpoint:
f431efe5 3350 bp_temp = b->disposition == disp_del;
0d381245
VP
3351 if (bl->address != bl->requested_address)
3352 breakpoint_adjustment_warning (bl->requested_address,
3353 bl->address,
4f8d1dc6
VP
3354 b->number, 1);
3355 annotate_breakpoint (b->number);
2cec12e5
AR
3356 if (bp_temp)
3357 ui_out_text (uiout, "\nTemporary breakpoint ");
3358 else
3359 ui_out_text (uiout, "\nBreakpoint ");
9dc5e2a9 3360 if (ui_out_is_mi_like_p (uiout))
2cec12e5
AR
3361 {
3362 ui_out_field_string (uiout, "reason",
3363 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
3364 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
3365 }
4f8d1dc6 3366 ui_out_field_int (uiout, "bkptno", b->number);
8b93c638 3367 ui_out_text (uiout, ", ");
f7545552 3368 result = PRINT_SRC_AND_LOC;
e514a9d6
JM
3369 break;
3370
3371 case bp_shlib_event:
917317f4
JM
3372 /* Did we stop because the user set the stop_on_solib_events
3373 variable? (If so, we report this as a generic, "Stopped due
3374 to shlib event" message.) */
a3f17187 3375 printf_filtered (_("Stopped due to shared library event\n"));
f7545552 3376 result = PRINT_NOTHING;
e514a9d6
JM
3377 break;
3378
c4093a6a 3379 case bp_thread_event:
4a64f543 3380 /* Not sure how we will get here.
c4093a6a 3381 GDB should not stop for these breakpoints. */
a3f17187 3382 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
f7545552 3383 result = PRINT_NOTHING;
c4093a6a
JM
3384 break;
3385
1900040c 3386 case bp_overlay_event:
4a64f543 3387 /* By analogy with the thread event, GDB should not stop for these. */
a3f17187 3388 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
f7545552 3389 result = PRINT_NOTHING;
1900040c
MS
3390 break;
3391
0fd8e87f
UW
3392 case bp_longjmp_master:
3393 /* These should never be enabled. */
3394 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
3395 result = PRINT_NOTHING;
3396 break;
3397
aa7d318d
TT
3398 case bp_std_terminate_master:
3399 /* These should never be enabled. */
3e43a32a
MS
3400 printf_filtered (_("std::terminate Master Breakpoint: "
3401 "gdb should not stop!\n"));
aa7d318d
TT
3402 result = PRINT_NOTHING;
3403 break;
3404
186c406b
TT
3405 case bp_exception_master:
3406 /* These should never be enabled. */
3e43a32a
MS
3407 printf_filtered (_("Exception Master Breakpoint: "
3408 "gdb should not stop!\n"));
186c406b
TT
3409 result = PRINT_NOTHING;
3410 break;
3411
e514a9d6
JM
3412 case bp_watchpoint:
3413 case bp_hardware_watchpoint:
fa4727a6
DJ
3414 annotate_watchpoint (b->number);
3415 if (ui_out_is_mi_like_p (uiout))
3416 ui_out_field_string
3417 (uiout, "reason",
3418 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
3419 mention (b);
f7545552 3420 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
fa4727a6
DJ
3421 ui_out_text (uiout, "\nOld value = ");
3422 watchpoint_value_print (bs->old_val, stb->stream);
3423 ui_out_field_stream (uiout, "old", stb);
3424 ui_out_text (uiout, "\nNew value = ");
3425 watchpoint_value_print (b->val, stb->stream);
3426 ui_out_field_stream (uiout, "new", stb);
fa4727a6 3427 ui_out_text (uiout, "\n");
e514a9d6 3428 /* More than one watchpoint may have been triggered. */
f7545552 3429 result = PRINT_UNKNOWN;
e514a9d6
JM
3430 break;
3431
3432 case bp_read_watchpoint:
9dc5e2a9 3433 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3434 ui_out_field_string
3435 (uiout, "reason",
3436 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
4f8d1dc6 3437 mention (b);
f7545552 3438 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3439 ui_out_text (uiout, "\nValue = ");
fa4727a6 3440 watchpoint_value_print (b->val, stb->stream);
8b93c638 3441 ui_out_field_stream (uiout, "value", stb);
8b93c638 3442 ui_out_text (uiout, "\n");
f7545552 3443 result = PRINT_UNKNOWN;
e514a9d6
JM
3444 break;
3445
3446 case bp_access_watchpoint:
fa4727a6 3447 if (bs->old_val != NULL)
8b93c638 3448 {
4f8d1dc6 3449 annotate_watchpoint (b->number);
9dc5e2a9 3450 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3451 ui_out_field_string
3452 (uiout, "reason",
3453 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
4f8d1dc6 3454 mention (b);
f7545552 3455 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3456 ui_out_text (uiout, "\nOld value = ");
fa4727a6 3457 watchpoint_value_print (bs->old_val, stb->stream);
8b93c638 3458 ui_out_field_stream (uiout, "old", stb);
8b93c638
JM
3459 ui_out_text (uiout, "\nNew value = ");
3460 }
3461 else
3462 {
4f8d1dc6 3463 mention (b);
9dc5e2a9 3464 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3465 ui_out_field_string
3466 (uiout, "reason",
3467 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
f7545552 3468 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
3469 ui_out_text (uiout, "\nValue = ");
3470 }
fa4727a6 3471 watchpoint_value_print (b->val, stb->stream);
8b93c638 3472 ui_out_field_stream (uiout, "new", stb);
8b93c638 3473 ui_out_text (uiout, "\n");
f7545552 3474 result = PRINT_UNKNOWN;
e514a9d6 3475 break;
4ce44c66 3476
e514a9d6 3477 /* Fall through, we don't deal with these types of breakpoints
4a64f543 3478 here. */
e514a9d6 3479
11cf8741 3480 case bp_finish:
9dc5e2a9 3481 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3482 ui_out_field_string
3483 (uiout, "reason",
3484 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
f7545552 3485 result = PRINT_UNKNOWN;
8b93c638
JM
3486 break;
3487
e514a9d6 3488 case bp_until:
9dc5e2a9 3489 if (ui_out_is_mi_like_p (uiout))
1fbc2a49
NR
3490 ui_out_field_string
3491 (uiout, "reason",
3492 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
f7545552 3493 result = PRINT_UNKNOWN;
8b93c638
JM
3494 break;
3495
c2d11a7d 3496 case bp_none:
e514a9d6
JM
3497 case bp_longjmp:
3498 case bp_longjmp_resume:
186c406b
TT
3499 case bp_exception:
3500 case bp_exception_resume:
e514a9d6 3501 case bp_step_resume:
e514a9d6
JM
3502 case bp_watchpoint_scope:
3503 case bp_call_dummy:
aa7d318d 3504 case bp_std_terminate:
1042e4c0 3505 case bp_tracepoint:
7a697b8d 3506 case bp_fast_tracepoint:
4efc6507 3507 case bp_jit_event:
0e30163f
JK
3508 case bp_gnu_ifunc_resolver:
3509 case bp_gnu_ifunc_resolver_return:
e514a9d6 3510 default:
f7545552
TT
3511 result = PRINT_UNKNOWN;
3512 break;
e514a9d6 3513 }
f7545552
TT
3514
3515 do_cleanups (old_chain);
3516 return result;
e514a9d6
JM
3517}
3518
3519/* Generic routine for printing messages indicating why we
4a64f543 3520 stopped. The behavior of this function depends on the value
e514a9d6
JM
3521 'print_it' in the bpstat structure. Under some circumstances we
3522 may decide not to print anything here and delegate the task to
4a64f543 3523 normal_stop(). */
e514a9d6
JM
3524
3525static enum print_stop_action
3526print_bp_stop_message (bpstat bs)
3527{
3528 switch (bs->print_it)
3529 {
3530 case print_it_noop:
4a64f543 3531 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
3532 return PRINT_UNKNOWN;
3533 break;
3534
3535 case print_it_done:
3536 /* We still want to print the frame, but we already printed the
4a64f543 3537 relevant messages. */
e514a9d6
JM
3538 return PRINT_SRC_AND_LOC;
3539 break;
3540
3541 case print_it_normal:
4f8d1dc6 3542 {
f431efe5
PA
3543 struct breakpoint *b = bs->breakpoint_at;
3544
1a6a67de
TJB
3545 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
3546 which has since been deleted. */
3547 if (b == NULL)
3548 return PRINT_UNKNOWN;
3549
4f8d1dc6
VP
3550 /* Normal case. Call the breakpoint's print_it method, or
3551 print_it_typical. */
1a6a67de 3552 if (b->ops != NULL && b->ops->print_it != NULL)
4f8d1dc6
VP
3553 return b->ops->print_it (b);
3554 else
3555 return print_it_typical (bs);
3556 }
3557 break;
3086aeae 3558
e514a9d6 3559 default:
8e65ff28 3560 internal_error (__FILE__, __LINE__,
e2e0b3e5 3561 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 3562 break;
c906108c 3563 }
c906108c
SS
3564}
3565
e514a9d6
JM
3566/* Print a message indicating what happened. This is called from
3567 normal_stop(). The input to this routine is the head of the bpstat
3568 list - a list of the eventpoints that caused this stop. This
3569 routine calls the generic print routine for printing a message
3570 about reasons for stopping. This will print (for example) the
3571 "Breakpoint n," part of the output. The return value of this
3572 routine is one of:
c906108c 3573
4a64f543 3574 PRINT_UNKNOWN: Means we printed nothing.
917317f4 3575 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 3576 code to print the location. An example is
c5aa993b
JM
3577 "Breakpoint 1, " which should be followed by
3578 the location.
917317f4 3579 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
3580 to also print the location part of the message.
3581 An example is the catch/throw messages, which
4a64f543 3582 don't require a location appended to the end.
917317f4 3583 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 3584 further info to be printed. */
c906108c 3585
917317f4 3586enum print_stop_action
fba45db2 3587bpstat_print (bpstat bs)
c906108c
SS
3588{
3589 int val;
c5aa993b 3590
c906108c 3591 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
3592 (Currently all watchpoints go on the bpstat whether hit or not.
3593 That probably could (should) be changed, provided care is taken
c906108c 3594 with respect to bpstat_explains_signal). */
e514a9d6
JM
3595 for (; bs; bs = bs->next)
3596 {
3597 val = print_bp_stop_message (bs);
3598 if (val == PRINT_SRC_ONLY
3599 || val == PRINT_SRC_AND_LOC
3600 || val == PRINT_NOTHING)
3601 return val;
3602 }
c906108c 3603
e514a9d6 3604 /* We reached the end of the chain, or we got a null BS to start
4a64f543 3605 with and nothing was printed. */
917317f4 3606 return PRINT_UNKNOWN;
c906108c
SS
3607}
3608
4a64f543
MS
3609/* Evaluate the expression EXP and return 1 if value is zero. This is
3610 used inside a catch_errors to evaluate the breakpoint condition.
3611 The argument is a "struct expression *" that has been cast to a
3612 "char *" to make it pass through catch_errors. */
c906108c
SS
3613
3614static int
4efb68b1 3615breakpoint_cond_eval (void *exp)
c906108c 3616{
278cd55f 3617 struct value *mark = value_mark ();
c5aa993b 3618 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 3619
c906108c
SS
3620 value_free_to_mark (mark);
3621 return i;
3622}
3623
5760d0ab 3624/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c
SS
3625
3626static bpstat
5760d0ab 3627bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
c906108c
SS
3628{
3629 bpstat bs;
3630
3631 bs = (bpstat) xmalloc (sizeof (*bs));
5760d0ab
JK
3632 bs->next = NULL;
3633 **bs_link_pointer = bs;
3634 *bs_link_pointer = &bs->next;
f431efe5
PA
3635 bs->breakpoint_at = bl->owner;
3636 bs->bp_location_at = bl;
3637 incref_bp_location (bl);
c906108c
SS
3638 /* If the condition is false, etc., don't do the commands. */
3639 bs->commands = NULL;
9add0f1b 3640 bs->commands_left = NULL;
c906108c
SS
3641 bs->old_val = NULL;
3642 bs->print_it = print_it_normal;
3643 return bs;
3644}
3645\f
d983da9c
DJ
3646/* The target has stopped with waitstatus WS. Check if any hardware
3647 watchpoints have triggered, according to the target. */
3648
3649int
3650watchpoints_triggered (struct target_waitstatus *ws)
3651{
d92524f1 3652 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
3653 CORE_ADDR addr;
3654 struct breakpoint *b;
3655
3656 if (!stopped_by_watchpoint)
3657 {
3658 /* We were not stopped by a watchpoint. Mark all watchpoints
3659 as not triggered. */
3660 ALL_BREAKPOINTS (b)
cc60f2e3 3661 if (is_hardware_watchpoint (b))
d983da9c
DJ
3662 b->watchpoint_triggered = watch_triggered_no;
3663
3664 return 0;
3665 }
3666
3667 if (!target_stopped_data_address (&current_target, &addr))
3668 {
3669 /* We were stopped by a watchpoint, but we don't know where.
3670 Mark all watchpoints as unknown. */
3671 ALL_BREAKPOINTS (b)
cc60f2e3 3672 if (is_hardware_watchpoint (b))
d983da9c
DJ
3673 b->watchpoint_triggered = watch_triggered_unknown;
3674
3675 return stopped_by_watchpoint;
3676 }
3677
3678 /* The target could report the data address. Mark watchpoints
3679 affected by this data address as triggered, and all others as not
3680 triggered. */
3681
3682 ALL_BREAKPOINTS (b)
cc60f2e3 3683 if (is_hardware_watchpoint (b))
d983da9c 3684 {
a5606eee 3685 struct bp_location *loc;
d983da9c
DJ
3686
3687 b->watchpoint_triggered = watch_triggered_no;
a5606eee
VP
3688 for (loc = b->loc; loc; loc = loc->next)
3689 /* Exact match not required. Within range is
3690 sufficient. */
5009afc5
AS
3691 if (target_watchpoint_addr_within_range (&current_target,
3692 addr, loc->address,
3693 loc->length))
a5606eee
VP
3694 {
3695 b->watchpoint_triggered = watch_triggered_yes;
3696 break;
3697 }
d983da9c
DJ
3698 }
3699
3700 return 1;
3701}
3702
c906108c
SS
3703/* Possible return values for watchpoint_check (this can't be an enum
3704 because of check_errors). */
3705/* The watchpoint has been deleted. */
3706#define WP_DELETED 1
3707/* The value has changed. */
3708#define WP_VALUE_CHANGED 2
3709/* The value has not changed. */
3710#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
3711/* Ignore this watchpoint, no matter if the value changed or not. */
3712#define WP_IGNORE 4
c906108c
SS
3713
3714#define BP_TEMPFLAG 1
3715#define BP_HARDWAREFLAG 2
3716
4a64f543
MS
3717/* Evaluate watchpoint condition expression and check if its value
3718 changed.
553e4c11
JB
3719
3720 P should be a pointer to struct bpstat, but is defined as a void *
3721 in order for this function to be usable with catch_errors. */
c906108c
SS
3722
3723static int
4efb68b1 3724watchpoint_check (void *p)
c906108c
SS
3725{
3726 bpstat bs = (bpstat) p;
3727 struct breakpoint *b;
3728 struct frame_info *fr;
3729 int within_current_scope;
3730
f431efe5 3731 /* BS is built from an existing struct breakpoint. */
2bdf28a0 3732 gdb_assert (bs->breakpoint_at != NULL);
f431efe5 3733 b = bs->breakpoint_at;
c906108c 3734
d0fb5eae
JK
3735 gdb_assert (is_watchpoint (b));
3736
f6bc2008
PA
3737 /* If this is a local watchpoint, we only want to check if the
3738 watchpoint frame is in scope if the current thread is the thread
3739 that was used to create the watchpoint. */
3740 if (!watchpoint_in_thread_scope (b))
60e1c644 3741 return WP_IGNORE;
f6bc2008 3742
c906108c
SS
3743 if (b->exp_valid_block == NULL)
3744 within_current_scope = 1;
3745 else
3746 {
edb3359d
DJ
3747 struct frame_info *frame = get_current_frame ();
3748 struct gdbarch *frame_arch = get_frame_arch (frame);
3749 CORE_ADDR frame_pc = get_frame_pc (frame);
3750
4a64f543
MS
3751 /* in_function_epilogue_p() returns a non-zero value if we're
3752 still in the function but the stack frame has already been
3753 invalidated. Since we can't rely on the values of local
3754 variables after the stack has been destroyed, we are treating
3755 the watchpoint in that state as `not changed' without further
3756 checking. Don't mark watchpoints as changed if the current
3757 frame is in an epilogue - even if they are in some other
3758 frame, our view of the stack is likely to be wrong and
3759 frame_find_by_id could error out. */
a0f49112 3760 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
60e1c644 3761 return WP_IGNORE;
a0f49112 3762
101dcfbe 3763 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 3764 within_current_scope = (fr != NULL);
69fbadd5
DJ
3765
3766 /* If we've gotten confused in the unwinder, we might have
3767 returned a frame that can't describe this variable. */
edb3359d
DJ
3768 if (within_current_scope)
3769 {
3770 struct symbol *function;
3771
3772 function = get_frame_function (fr);
3773 if (function == NULL
3774 || !contained_in (b->exp_valid_block,
3775 SYMBOL_BLOCK_VALUE (function)))
3776 within_current_scope = 0;
3777 }
69fbadd5 3778
edb3359d 3779 if (within_current_scope)
c906108c
SS
3780 /* If we end up stopping, the current frame will get selected
3781 in normal_stop. So this call to select_frame won't affect
3782 the user. */
0f7d239c 3783 select_frame (fr);
c906108c 3784 }
c5aa993b 3785
c906108c
SS
3786 if (within_current_scope)
3787 {
4a64f543
MS
3788 /* We use value_{,free_to_}mark because it could be a *long*
3789 time before we return to the command level and call
3790 free_all_values. We can't call free_all_values because we
3791 might be in the middle of evaluating a function call. */
c906108c 3792
0cf6dd15 3793 int pc = 0;
278cd55f 3794 struct value *mark = value_mark ();
fa4727a6
DJ
3795 struct value *new_val;
3796
0cf6dd15 3797 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL);
218d2fc6 3798
4a64f543
MS
3799 /* We use value_equal_contents instead of value_equal because
3800 the latter coerces an array to a pointer, thus comparing just
3801 the address of the array instead of its contents. This is
3802 not what we want. */
fa4727a6 3803 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 3804 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 3805 {
fa4727a6
DJ
3806 if (new_val != NULL)
3807 {
3808 release_value (new_val);
3809 value_free_to_mark (mark);
3810 }
c906108c
SS
3811 bs->old_val = b->val;
3812 b->val = new_val;
fa4727a6 3813 b->val_valid = 1;
c906108c
SS
3814 return WP_VALUE_CHANGED;
3815 }
3816 else
3817 {
60e1c644 3818 /* Nothing changed. */
c906108c 3819 value_free_to_mark (mark);
c906108c
SS
3820 return WP_VALUE_NOT_CHANGED;
3821 }
3822 }
3823 else
3824 {
3825 /* This seems like the only logical thing to do because
c5aa993b
JM
3826 if we temporarily ignored the watchpoint, then when
3827 we reenter the block in which it is valid it contains
3828 garbage (in the case of a function, it may have two
3829 garbage values, one before and one after the prologue).
3830 So we can't even detect the first assignment to it and
3831 watch after that (since the garbage may or may not equal
3832 the first value assigned). */
4ce44c66
JM
3833 /* We print all the stop information in print_it_typical(), but
3834 in this case, by the time we call print_it_typical() this bp
4a64f543
MS
3835 will be deleted already. So we have no choice but print the
3836 information here. */
9dc5e2a9 3837 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3838 ui_out_field_string
3839 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 3840 ui_out_text (uiout, "\nWatchpoint ");
4f8d1dc6 3841 ui_out_field_int (uiout, "wpnum", b->number);
3e43a32a
MS
3842 ui_out_text (uiout,
3843 " deleted because the program has left the block in\n\
8b93c638 3844which its expression is valid.\n");
4ce44c66 3845
d0fb5eae 3846 watchpoint_del_at_next_stop (b);
c906108c
SS
3847
3848 return WP_DELETED;
3849 }
3850}
3851
18a18393
VP
3852/* Return true if it looks like target has stopped due to hitting
3853 breakpoint location BL. This function does not check if we
3854 should stop, only if BL explains the stop. */
3855static int
6c95b8df
PA
3856bpstat_check_location (const struct bp_location *bl,
3857 struct address_space *aspace, CORE_ADDR bp_addr)
18a18393
VP
3858{
3859 struct breakpoint *b = bl->owner;
3860
2bdf28a0
JK
3861 /* BL is from existing struct breakpoint. */
3862 gdb_assert (b != NULL);
3863
f1310107
TJB
3864 if (b->ops && b->ops->breakpoint_hit)
3865 return b->ops->breakpoint_hit (bl, aspace, bp_addr);
3866
e8595ef6
SS
3867 /* By definition, the inferior does not report stops at
3868 tracepoints. */
d77f58be 3869 if (is_tracepoint (b))
e8595ef6
SS
3870 return 0;
3871
cc60f2e3 3872 if (!is_watchpoint (b)
18a18393 3873 && b->type != bp_hardware_breakpoint
fe798b75 3874 && b->type != bp_catchpoint) /* a non-watchpoint bp */
18a18393 3875 {
6c95b8df
PA
3876 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
3877 aspace, bp_addr))
18a18393
VP
3878 return 0;
3879 if (overlay_debugging /* unmapped overlay section */
35df4500 3880 && section_is_overlay (bl->section)
18a18393
VP
3881 && !section_is_mapped (bl->section))
3882 return 0;
3883 }
cc60f2e3 3884
18a18393
VP
3885 /* Continuable hardware watchpoints are treated as non-existent if the
3886 reason we stopped wasn't a hardware watchpoint (we didn't stop on
3887 some data address). Otherwise gdb won't stop on a break instruction
3888 in the code (not from a breakpoint) when a hardware watchpoint has
3889 been defined. Also skip watchpoints which we know did not trigger
3890 (did not match the data address). */
cc60f2e3
PA
3891
3892 if (is_hardware_watchpoint (b)
18a18393
VP
3893 && b->watchpoint_triggered == watch_triggered_no)
3894 return 0;
f1310107 3895
18a18393
VP
3896 if (b->type == bp_hardware_breakpoint)
3897 {
3898 if (bl->address != bp_addr)
3899 return 0;
3900 if (overlay_debugging /* unmapped overlay section */
35df4500 3901 && section_is_overlay (bl->section)
18a18393
VP
3902 && !section_is_mapped (bl->section))
3903 return 0;
3904 }
ce78b96d 3905
18a18393
VP
3906 return 1;
3907}
3908
3909/* If BS refers to a watchpoint, determine if the watched values
3910 has actually changed, and we should stop. If not, set BS->stop
3911 to 0. */
3912static void
3913bpstat_check_watchpoint (bpstat bs)
3914{
2bdf28a0
JK
3915 const struct bp_location *bl;
3916 struct breakpoint *b;
3917
3918 /* BS is built for existing struct breakpoint. */
f431efe5 3919 bl = bs->bp_location_at;
2bdf28a0 3920 gdb_assert (bl != NULL);
f431efe5 3921 b = bs->breakpoint_at;
2bdf28a0 3922 gdb_assert (b != NULL);
18a18393 3923
cc60f2e3 3924 if (is_watchpoint (b))
18a18393 3925 {
18a18393
VP
3926 int must_check_value = 0;
3927
3928 if (b->type == bp_watchpoint)
3929 /* For a software watchpoint, we must always check the
3930 watched value. */
3931 must_check_value = 1;
3932 else if (b->watchpoint_triggered == watch_triggered_yes)
3933 /* We have a hardware watchpoint (read, write, or access)
3934 and the target earlier reported an address watched by
3935 this watchpoint. */
3936 must_check_value = 1;
3937 else if (b->watchpoint_triggered == watch_triggered_unknown
3938 && b->type == bp_hardware_watchpoint)
3939 /* We were stopped by a hardware watchpoint, but the target could
3940 not report the data address. We must check the watchpoint's
3941 value. Access and read watchpoints are out of luck; without
3942 a data address, we can't figure it out. */
3943 must_check_value = 1;
3944
3945 if (must_check_value)
3946 {
3e43a32a
MS
3947 char *message
3948 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3949 b->number);
18a18393
VP
3950 struct cleanup *cleanups = make_cleanup (xfree, message);
3951 int e = catch_errors (watchpoint_check, bs, message,
3952 RETURN_MASK_ALL);
3953 do_cleanups (cleanups);
3954 switch (e)
3955 {
3956 case WP_DELETED:
3957 /* We've already printed what needs to be printed. */
3958 bs->print_it = print_it_done;
3959 /* Stop. */
3960 break;
60e1c644
PA
3961 case WP_IGNORE:
3962 bs->print_it = print_it_noop;
3963 bs->stop = 0;
3964 break;
18a18393
VP
3965 case WP_VALUE_CHANGED:
3966 if (b->type == bp_read_watchpoint)
3967 {
85d721b8
PA
3968 /* There are two cases to consider here:
3969
4a64f543 3970 1. We're watching the triggered memory for reads.
85d721b8
PA
3971 In that case, trust the target, and always report
3972 the watchpoint hit to the user. Even though
3973 reads don't cause value changes, the value may
3974 have changed since the last time it was read, and
3975 since we're not trapping writes, we will not see
3976 those, and as such we should ignore our notion of
3977 old value.
3978
4a64f543 3979 2. We're watching the triggered memory for both
85d721b8
PA
3980 reads and writes. There are two ways this may
3981 happen:
3982
4a64f543 3983 2.1. This is a target that can't break on data
85d721b8
PA
3984 reads only, but can break on accesses (reads or
3985 writes), such as e.g., x86. We detect this case
3986 at the time we try to insert read watchpoints.
3987
4a64f543 3988 2.2. Otherwise, the target supports read
85d721b8
PA
3989 watchpoints, but, the user set an access or write
3990 watchpoint watching the same memory as this read
3991 watchpoint.
3992
3993 If we're watching memory writes as well as reads,
3994 ignore watchpoint hits when we find that the
3995 value hasn't changed, as reads don't cause
3996 changes. This still gives false positives when
3997 the program writes the same value to memory as
3998 what there was already in memory (we will confuse
3999 it for a read), but it's much better than
4000 nothing. */
4001
4002 int other_write_watchpoint = 0;
4003
4004 if (bl->watchpoint_type == hw_read)
4005 {
4006 struct breakpoint *other_b;
4007
4008 ALL_BREAKPOINTS (other_b)
4009 if ((other_b->type == bp_hardware_watchpoint
4010 || other_b->type == bp_access_watchpoint)
4011 && (other_b->watchpoint_triggered
4012 == watch_triggered_yes))
4013 {
4014 other_write_watchpoint = 1;
4015 break;
4016 }
4017 }
4018
4019 if (other_write_watchpoint
4020 || bl->watchpoint_type == hw_access)
4021 {
4022 /* We're watching the same memory for writes,
4023 and the value changed since the last time we
4024 updated it, so this trap must be for a write.
4025 Ignore it. */
4026 bs->print_it = print_it_noop;
4027 bs->stop = 0;
4028 }
18a18393
VP
4029 }
4030 break;
4031 case WP_VALUE_NOT_CHANGED:
4032 if (b->type == bp_hardware_watchpoint
4033 || b->type == bp_watchpoint)
4034 {
4035 /* Don't stop: write watchpoints shouldn't fire if
4036 the value hasn't changed. */
4037 bs->print_it = print_it_noop;
4038 bs->stop = 0;
4039 }
4040 /* Stop. */
4041 break;
4042 default:
4043 /* Can't happen. */
4044 case 0:
4045 /* Error from catch_errors. */
4046 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
d0fb5eae 4047 watchpoint_del_at_next_stop (b);
18a18393
VP
4048 /* We've already printed what needs to be printed. */
4049 bs->print_it = print_it_done;
4050 break;
4051 }
4052 }
4053 else /* must_check_value == 0 */
4054 {
4055 /* This is a case where some watchpoint(s) triggered, but
4056 not at the address of this watchpoint, or else no
4057 watchpoint triggered after all. So don't print
4058 anything for this watchpoint. */
4059 bs->print_it = print_it_noop;
4060 bs->stop = 0;
4061 }
4062 }
4063}
4064
4065
4066/* Check conditions (condition proper, frame, thread and ignore count)
4067 of breakpoint referred to by BS. If we should not stop for this
4068 breakpoint, set BS->stop to 0. */
f431efe5 4069
18a18393
VP
4070static void
4071bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
4072{
4073 int thread_id = pid_to_thread_id (ptid);
2bdf28a0
JK
4074 const struct bp_location *bl;
4075 struct breakpoint *b;
4076
4077 /* BS is built for existing struct breakpoint. */
f431efe5 4078 bl = bs->bp_location_at;
2bdf28a0 4079 gdb_assert (bl != NULL);
f431efe5 4080 b = bs->breakpoint_at;
2bdf28a0 4081 gdb_assert (b != NULL);
18a18393
VP
4082
4083 if (frame_id_p (b->frame_id)
edb3359d 4084 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393
VP
4085 bs->stop = 0;
4086 else if (bs->stop)
4087 {
4088 int value_is_zero = 0;
60e1c644
PA
4089 struct expression *cond;
4090
7371cf6d
PM
4091 /* Evaluate Python breakpoints that have a "stop"
4092 method implemented. */
4093 if (b->py_bp_object)
4094 bs->stop = gdbpy_should_stop (b->py_bp_object);
4095
60e1c644
PA
4096 if (is_watchpoint (b))
4097 cond = b->cond_exp;
4098 else
4099 cond = bl->cond;
4100
f431efe5 4101 if (cond && b->disposition != disp_del_at_next_stop)
18a18393 4102 {
60e1c644
PA
4103 int within_current_scope = 1;
4104
c5bc3a77
DJ
4105 /* We use value_mark and value_free_to_mark because it could
4106 be a long time before we return to the command level and
4107 call free_all_values. We can't call free_all_values
4108 because we might be in the middle of evaluating a
4109 function call. */
4110 struct value *mark = value_mark ();
4111
edb3359d
DJ
4112 /* Need to select the frame, with all that implies so that
4113 the conditions will have the right context. Because we
4114 use the frame, we will not see an inlined function's
4115 variables when we arrive at a breakpoint at the start
4116 of the inlined function; the current frame will be the
4117 call site. */
60e1c644
PA
4118 if (!is_watchpoint (b) || b->cond_exp_valid_block == NULL)
4119 select_frame (get_current_frame ());
4120 else
4121 {
4122 struct frame_info *frame;
4123
4124 /* For local watchpoint expressions, which particular
4125 instance of a local is being watched matters, so we
4126 keep track of the frame to evaluate the expression
4127 in. To evaluate the condition however, it doesn't
4128 really matter which instantiation of the function
4129 where the condition makes sense triggers the
4130 watchpoint. This allows an expression like "watch
4131 global if q > 10" set in `func', catch writes to
4132 global on all threads that call `func', or catch
4133 writes on all recursive calls of `func' by a single
4134 thread. We simply always evaluate the condition in
4135 the innermost frame that's executing where it makes
4136 sense to evaluate the condition. It seems
4137 intuitive. */
4138 frame = block_innermost_frame (b->cond_exp_valid_block);
4139 if (frame != NULL)
4140 select_frame (frame);
4141 else
4142 within_current_scope = 0;
4143 }
4144 if (within_current_scope)
4145 value_is_zero
4146 = catch_errors (breakpoint_cond_eval, cond,
4147 "Error in testing breakpoint condition:\n",
4148 RETURN_MASK_ALL);
4149 else
4150 {
4151 warning (_("Watchpoint condition cannot be tested "
4152 "in the current scope"));
4153 /* If we failed to set the right context for this
4154 watchpoint, unconditionally report it. */
4155 value_is_zero = 0;
4156 }
4a64f543 4157 /* FIXME-someday, should give breakpoint #. */
c5bc3a77 4158 value_free_to_mark (mark);
18a18393 4159 }
60e1c644
PA
4160
4161 if (cond && value_is_zero)
18a18393
VP
4162 {
4163 bs->stop = 0;
4164 }
4165 else if (b->thread != -1 && b->thread != thread_id)
4166 {
4167 bs->stop = 0;
4168 }
4169 else if (b->ignore_count > 0)
4170 {
4171 b->ignore_count--;
4172 annotate_ignore_count_change ();
4173 bs->stop = 0;
4a64f543 4174 /* Increase the hit count even though we don't stop. */
18a18393
VP
4175 ++(b->hit_count);
4176 }
4177 }
4178}
4179
4180
9709f61c 4181/* Get a bpstat associated with having just stopped at address
d983da9c 4182 BP_ADDR in thread PTID.
c906108c 4183
d983da9c 4184 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
4185 don't understand this stop. Result is a chain of bpstat's such
4186 that:
c906108c 4187
c5aa993b 4188 if we don't understand the stop, the result is a null pointer.
c906108c 4189
c5aa993b 4190 if we understand why we stopped, the result is not null.
c906108c 4191
c5aa993b
JM
4192 Each element of the chain refers to a particular breakpoint or
4193 watchpoint at which we have stopped. (We may have stopped for
4194 several reasons concurrently.)
c906108c 4195
c5aa993b
JM
4196 Each element of the chain has valid next, breakpoint_at,
4197 commands, FIXME??? fields. */
c906108c
SS
4198
4199bpstat
6c95b8df
PA
4200bpstat_stop_status (struct address_space *aspace,
4201 CORE_ADDR bp_addr, ptid_t ptid)
c906108c 4202{
0d381245 4203 struct breakpoint *b = NULL;
afe38095 4204 struct bp_location *bl;
20874c92 4205 struct bp_location *loc;
5760d0ab
JK
4206 /* First item of allocated bpstat's. */
4207 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 4208 /* Pointer to the last thing in the chain currently. */
5760d0ab 4209 bpstat bs;
20874c92 4210 int ix;
429374b8 4211 int need_remove_insert;
f431efe5 4212 int removed_any;
c906108c 4213
f431efe5
PA
4214 /* First, build the bpstat chain with locations that explain a
4215 target stop, while being careful to not set the target running,
4216 as that may invalidate locations (in particular watchpoint
4217 locations are recreated). Resuming will happen here with
4218 breakpoint conditions or watchpoint expressions that include
4219 inferior function calls. */
c5aa993b 4220
429374b8
JK
4221 ALL_BREAKPOINTS (b)
4222 {
4223 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
4224 continue;
a5606eee 4225
429374b8
JK
4226 for (bl = b->loc; bl != NULL; bl = bl->next)
4227 {
4a64f543
MS
4228 /* For hardware watchpoints, we look only at the first
4229 location. The watchpoint_check function will work on the
4230 entire expression, not the individual locations. For
4231 read watchpoints, the watchpoints_triggered function has
4232 checked all locations already. */
429374b8
JK
4233 if (b->type == bp_hardware_watchpoint && bl != b->loc)
4234 break;
18a18393 4235
429374b8
JK
4236 if (bl->shlib_disabled)
4237 continue;
c5aa993b 4238
429374b8
JK
4239 if (!bpstat_check_location (bl, aspace, bp_addr))
4240 continue;
c5aa993b 4241
4a64f543
MS
4242 /* Come here if it's a watchpoint, or if the break address
4243 matches. */
c5aa993b 4244
4a64f543
MS
4245 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
4246 explain stop. */
c5aa993b 4247
f431efe5
PA
4248 /* Assume we stop. Should we find a watchpoint that is not
4249 actually triggered, or if the condition of the breakpoint
4250 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
4251 bs->stop = 1;
4252 bs->print = 1;
d983da9c 4253
f431efe5
PA
4254 /* If this is a scope breakpoint, mark the associated
4255 watchpoint as triggered so that we will handle the
4256 out-of-scope event. We'll get to the watchpoint next
4257 iteration. */
d0fb5eae 4258 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
f431efe5
PA
4259 b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
4260 }
4261 }
4262
4263 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
4264 {
f1310107 4265 if (breakpoint_location_address_match (loc, aspace, bp_addr))
f431efe5 4266 {
5760d0ab 4267 bs = bpstat_alloc (loc, &bs_link);
f431efe5
PA
4268 /* For hits of moribund locations, we should just proceed. */
4269 bs->stop = 0;
4270 bs->print = 0;
4271 bs->print_it = print_it_noop;
4272 }
4273 }
4274
f431efe5
PA
4275 /* Now go through the locations that caused the target to stop, and
4276 check whether we're interested in reporting this stop to higher
4277 layers, or whether we should resume the target transparently. */
4278
4279 removed_any = 0;
4280
5760d0ab 4281 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
4282 {
4283 if (!bs->stop)
4284 continue;
4285
4286 bpstat_check_watchpoint (bs);
4287 if (!bs->stop)
4288 continue;
4289
4290 b = bs->breakpoint_at;
18a18393 4291
429374b8 4292 if (b->type == bp_thread_event || b->type == bp_overlay_event
aa7d318d 4293 || b->type == bp_longjmp_master
186c406b
TT
4294 || b->type == bp_std_terminate_master
4295 || b->type == bp_exception_master)
429374b8
JK
4296 /* We do not stop for these. */
4297 bs->stop = 0;
4298 else
4299 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 4300
429374b8
JK
4301 if (bs->stop)
4302 {
4303 ++(b->hit_count);
c906108c 4304
4a64f543 4305 /* We will stop here. */
429374b8
JK
4306 if (b->disposition == disp_disable)
4307 {
4308 if (b->enable_state != bp_permanent)
4309 b->enable_state = bp_disabled;
f431efe5 4310 removed_any = 1;
429374b8
JK
4311 }
4312 if (b->silent)
4313 bs->print = 0;
4314 bs->commands = b->commands;
9add0f1b
TT
4315 incref_counted_command_line (bs->commands);
4316 bs->commands_left = bs->commands ? bs->commands->commands : NULL;
4317 if (bs->commands_left
4318 && (strcmp ("silent", bs->commands_left->line) == 0
4319 || (xdb_commands
4320 && strcmp ("Q",
4321 bs->commands_left->line) == 0)))
429374b8 4322 {
9add0f1b 4323 bs->commands_left = bs->commands_left->next;
429374b8
JK
4324 bs->print = 0;
4325 }
429374b8
JK
4326 }
4327
4328 /* Print nothing for this entry if we dont stop or dont print. */
4329 if (bs->stop == 0 || bs->print == 0)
4330 bs->print_it = print_it_noop;
429374b8 4331 }
876fa593 4332
d983da9c
DJ
4333 /* If we aren't stopping, the value of some hardware watchpoint may
4334 not have changed, but the intermediate memory locations we are
4335 watching may have. Don't bother if we're stopping; this will get
4336 done later. */
d832cb68 4337 need_remove_insert = 0;
5760d0ab
JK
4338 if (! bpstat_causes_stop (bs_head))
4339 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 4340 if (!bs->stop
f431efe5
PA
4341 && bs->breakpoint_at
4342 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 4343 {
4a64f543 4344 update_watchpoint (bs->breakpoint_at, 0 /* don't reparse. */);
d832cb68 4345 need_remove_insert = 1;
d983da9c
DJ
4346 }
4347
d832cb68 4348 if (need_remove_insert)
2d134ed3 4349 update_global_location_list (1);
f431efe5
PA
4350 else if (removed_any)
4351 update_global_location_list (0);
d832cb68 4352
5760d0ab 4353 return bs_head;
c906108c 4354}
628fe4e4
JK
4355
4356static void
4357handle_jit_event (void)
4358{
4359 struct frame_info *frame;
4360 struct gdbarch *gdbarch;
4361
4362 /* Switch terminal for any messages produced by
4363 breakpoint_re_set. */
4364 target_terminal_ours_for_output ();
4365
4366 frame = get_current_frame ();
4367 gdbarch = get_frame_arch (frame);
4368
4369 jit_event_handler (gdbarch);
4370
4371 target_terminal_inferior ();
4372}
4373
4374/* Prepare WHAT final decision for infrun. */
4375
4376/* Decide what infrun needs to do with this bpstat. */
4377
c906108c 4378struct bpstat_what
0e30163f 4379bpstat_what (bpstat bs_head)
c906108c 4380{
c906108c 4381 struct bpstat_what retval;
628fe4e4
JK
4382 /* We need to defer calling `solib_add', as adding new symbols
4383 resets breakpoints, which in turn deletes breakpoint locations,
4384 and hence may clear unprocessed entries in the BS chain. */
4385 int shlib_event = 0;
4386 int jit_event = 0;
0e30163f 4387 bpstat bs;
c906108c 4388
628fe4e4 4389 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 4390 retval.call_dummy = STOP_NONE;
186c406b 4391 retval.is_longjmp = 0;
628fe4e4 4392
0e30163f 4393 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 4394 {
628fe4e4
JK
4395 /* Extract this BS's action. After processing each BS, we check
4396 if its action overrides all we've seem so far. */
4397 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
4398 enum bptype bptype;
4399
c906108c 4400 if (bs->breakpoint_at == NULL)
628fe4e4
JK
4401 {
4402 /* I suspect this can happen if it was a momentary
4403 breakpoint which has since been deleted. */
4404 bptype = bp_none;
4405 }
f431efe5 4406 else if (bs->breakpoint_at == NULL)
628fe4e4 4407 bptype = bp_none;
20874c92 4408 else
f431efe5 4409 bptype = bs->breakpoint_at->type;
628fe4e4
JK
4410
4411 switch (bptype)
c906108c
SS
4412 {
4413 case bp_none:
628fe4e4 4414 break;
c906108c
SS
4415 case bp_breakpoint:
4416 case bp_hardware_breakpoint:
4417 case bp_until:
4418 case bp_finish:
4419 if (bs->stop)
4420 {
4421 if (bs->print)
628fe4e4 4422 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4423 else
628fe4e4 4424 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4425 }
4426 else
628fe4e4 4427 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
4428 break;
4429 case bp_watchpoint:
4430 case bp_hardware_watchpoint:
4431 case bp_read_watchpoint:
4432 case bp_access_watchpoint:
4433 if (bs->stop)
4434 {
4435 if (bs->print)
628fe4e4 4436 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4437 else
628fe4e4 4438 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4439 }
4440 else
628fe4e4
JK
4441 {
4442 /* There was a watchpoint, but we're not stopping.
4443 This requires no further action. */
4444 }
c906108c
SS
4445 break;
4446 case bp_longjmp:
186c406b 4447 case bp_exception:
628fe4e4 4448 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
186c406b 4449 retval.is_longjmp = bptype == bp_longjmp;
c906108c
SS
4450 break;
4451 case bp_longjmp_resume:
186c406b 4452 case bp_exception_resume:
628fe4e4 4453 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
186c406b 4454 retval.is_longjmp = bptype == bp_longjmp_resume;
c906108c
SS
4455 break;
4456 case bp_step_resume:
4457 if (bs->stop)
628fe4e4
JK
4458 this_action = BPSTAT_WHAT_STEP_RESUME;
4459 else
c906108c 4460 {
628fe4e4
JK
4461 /* It is for the wrong frame. */
4462 this_action = BPSTAT_WHAT_SINGLE;
c906108c 4463 }
c906108c 4464 break;
c906108c 4465 case bp_watchpoint_scope:
c4093a6a 4466 case bp_thread_event:
1900040c 4467 case bp_overlay_event:
0fd8e87f 4468 case bp_longjmp_master:
aa7d318d 4469 case bp_std_terminate_master:
186c406b 4470 case bp_exception_master:
628fe4e4 4471 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 4472 break;
ce78b96d 4473 case bp_catchpoint:
c5aa993b
JM
4474 if (bs->stop)
4475 {
4476 if (bs->print)
628fe4e4 4477 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 4478 else
628fe4e4 4479 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
4480 }
4481 else
628fe4e4
JK
4482 {
4483 /* There was a catchpoint, but we're not stopping.
4484 This requires no further action. */
4485 }
4486 break;
4487 case bp_shlib_event:
4488 shlib_event = 1;
4489
4490 /* If requested, stop when the dynamic linker notifies GDB
4491 of events. This allows the user to get control and place
4492 breakpoints in initializer routines for dynamically
4493 loaded objects (among other things). */
4494 if (stop_on_solib_events)
4495 this_action = BPSTAT_WHAT_STOP_NOISY;
4496 else
4497 this_action = BPSTAT_WHAT_SINGLE;
4498 break;
4499 case bp_jit_event:
4500 jit_event = 1;
4501 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 4502 break;
c906108c 4503 case bp_call_dummy:
53a5351d
JM
4504 /* Make sure the action is stop (silent or noisy),
4505 so infrun.c pops the dummy frame. */
aa7d318d 4506 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 4507 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
4508 break;
4509 case bp_std_terminate:
4510 /* Make sure the action is stop (silent or noisy),
4511 so infrun.c pops the dummy frame. */
aa7d318d 4512 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 4513 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 4514 break;
1042e4c0 4515 case bp_tracepoint:
7a697b8d 4516 case bp_fast_tracepoint:
0fb4aa4b 4517 case bp_static_tracepoint:
1042e4c0
SS
4518 /* Tracepoint hits should not be reported back to GDB, and
4519 if one got through somehow, it should have been filtered
4520 out already. */
4521 internal_error (__FILE__, __LINE__,
7a697b8d 4522 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
4523 break;
4524 case bp_gnu_ifunc_resolver:
4525 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
4526 this_action = BPSTAT_WHAT_SINGLE;
4527 break;
4528 case bp_gnu_ifunc_resolver_return:
4529 /* The breakpoint will be removed, execution will restart from the
4530 PC of the former breakpoint. */
4531 this_action = BPSTAT_WHAT_KEEP_CHECKING;
4532 break;
628fe4e4
JK
4533 default:
4534 internal_error (__FILE__, __LINE__,
4535 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 4536 }
628fe4e4
JK
4537
4538 retval.main_action = max (retval.main_action, this_action);
c906108c 4539 }
628fe4e4 4540
0e30163f
JK
4541 /* These operations may affect the bs->breakpoint_at state so they are
4542 delayed after MAIN_ACTION is decided above. */
4543
628fe4e4
JK
4544 if (shlib_event)
4545 {
4546 if (debug_infrun)
4547 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_shlib_event\n");
4548
4549 /* Check for any newly added shared libraries if we're supposed
4550 to be adding them automatically. */
4551
4552 /* Switch terminal for any messages produced by
4553 breakpoint_re_set. */
4554 target_terminal_ours_for_output ();
4555
4556#ifdef SOLIB_ADD
4557 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
4558#else
4559 solib_add (NULL, 0, &current_target, auto_solib_add);
4560#endif
4561
4562 target_terminal_inferior ();
4563 }
4564
4565 if (jit_event)
4566 {
4567 if (debug_infrun)
4568 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n");
4569
4570 handle_jit_event ();
4571 }
4572
0e30163f
JK
4573 for (bs = bs_head; bs != NULL; bs = bs->next)
4574 {
4575 struct breakpoint *b = bs->breakpoint_at;
4576
4577 if (b == NULL)
4578 continue;
4579 switch (b->type)
4580 {
4581 case bp_gnu_ifunc_resolver:
4582 gnu_ifunc_resolver_stop (b);
4583 break;
4584 case bp_gnu_ifunc_resolver_return:
4585 gnu_ifunc_resolver_return_stop (b);
4586 break;
4587 }
4588 }
4589
c906108c
SS
4590 return retval;
4591}
4592
4593/* Nonzero if we should step constantly (e.g. watchpoints on machines
4594 without hardware support). This isn't related to a specific bpstat,
4595 just to things like whether watchpoints are set. */
4596
c5aa993b 4597int
fba45db2 4598bpstat_should_step (void)
c906108c
SS
4599{
4600 struct breakpoint *b;
cc59ec59 4601
c906108c 4602 ALL_BREAKPOINTS (b)
717a8278 4603 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 4604 return 1;
c906108c
SS
4605 return 0;
4606}
4607
67822962
PA
4608int
4609bpstat_causes_stop (bpstat bs)
4610{
4611 for (; bs != NULL; bs = bs->next)
4612 if (bs->stop)
4613 return 1;
4614
4615 return 0;
4616}
4617
c906108c 4618\f
c5aa993b 4619
170b53b2
UW
4620/* Compute a string of spaces suitable to indent the next line
4621 so it starts at the position corresponding to the table column
4622 named COL_NAME in the currently active table of UIOUT. */
4623
4624static char *
4625wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
4626{
4627 static char wrap_indent[80];
4628 int i, total_width, width, align;
4629 char *text;
4630
4631 total_width = 0;
4632 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
4633 {
4634 if (strcmp (text, col_name) == 0)
4635 {
4636 gdb_assert (total_width < sizeof wrap_indent);
4637 memset (wrap_indent, ' ', total_width);
4638 wrap_indent[total_width] = 0;
4639
4640 return wrap_indent;
4641 }
4642
4643 total_width += width + 1;
4644 }
4645
4646 return NULL;
4647}
4648
859825b8
JK
4649/* Print the LOC location out of the list of B->LOC locations. */
4650
170b53b2
UW
4651static void
4652print_breakpoint_location (struct breakpoint *b,
4653 struct bp_location *loc)
0d381245 4654{
6c95b8df
PA
4655 struct cleanup *old_chain = save_current_program_space ();
4656
859825b8
JK
4657 if (loc != NULL && loc->shlib_disabled)
4658 loc = NULL;
4659
6c95b8df
PA
4660 if (loc != NULL)
4661 set_current_program_space (loc->pspace);
4662
56435ebe
TT
4663 if (b->display_canonical)
4664 ui_out_field_string (uiout, "what", b->addr_string);
4665 else if (b->source_file && loc)
0d381245
VP
4666 {
4667 struct symbol *sym
4668 = find_pc_sect_function (loc->address, loc->section);
4669 if (sym)
4670 {
4671 ui_out_text (uiout, "in ");
4672 ui_out_field_string (uiout, "func",
4673 SYMBOL_PRINT_NAME (sym));
170b53b2
UW
4674 ui_out_text (uiout, " ");
4675 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
4676 ui_out_text (uiout, "at ");
0d381245
VP
4677 }
4678 ui_out_field_string (uiout, "file", b->source_file);
4679 ui_out_text (uiout, ":");
4680
4681 if (ui_out_is_mi_like_p (uiout))
4682 {
4683 struct symtab_and_line sal = find_pc_line (loc->address, 0);
4684 char *fullname = symtab_to_fullname (sal.symtab);
4685
4686 if (fullname)
4687 ui_out_field_string (uiout, "fullname", fullname);
4688 }
4689
4690 ui_out_field_int (uiout, "line", b->line_number);
4691 }
859825b8 4692 else if (loc)
0d381245 4693 {
170b53b2
UW
4694 struct ui_stream *stb = ui_out_stream_new (uiout);
4695 struct cleanup *stb_chain = make_cleanup_ui_out_stream_delete (stb);
4696
22e722e1
DJ
4697 print_address_symbolic (loc->gdbarch, loc->address, stb->stream,
4698 demangle, "");
0d381245 4699 ui_out_field_stream (uiout, "at", stb);
170b53b2
UW
4700
4701 do_cleanups (stb_chain);
0d381245 4702 }
859825b8
JK
4703 else
4704 ui_out_field_string (uiout, "pending", b->addr_string);
6c95b8df
PA
4705
4706 do_cleanups (old_chain);
0d381245
VP
4707}
4708
269b11a2
PA
4709static const char *
4710bptype_string (enum bptype type)
c906108c 4711{
c4093a6a
JM
4712 struct ep_type_description
4713 {
4714 enum bptype type;
4715 char *description;
4716 };
4717 static struct ep_type_description bptypes[] =
c906108c 4718 {
c5aa993b
JM
4719 {bp_none, "?deleted?"},
4720 {bp_breakpoint, "breakpoint"},
c906108c 4721 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
4722 {bp_until, "until"},
4723 {bp_finish, "finish"},
4724 {bp_watchpoint, "watchpoint"},
c906108c 4725 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
4726 {bp_read_watchpoint, "read watchpoint"},
4727 {bp_access_watchpoint, "acc watchpoint"},
4728 {bp_longjmp, "longjmp"},
4729 {bp_longjmp_resume, "longjmp resume"},
186c406b
TT
4730 {bp_exception, "exception"},
4731 {bp_exception_resume, "exception resume"},
c5aa993b 4732 {bp_step_resume, "step resume"},
c5aa993b
JM
4733 {bp_watchpoint_scope, "watchpoint scope"},
4734 {bp_call_dummy, "call dummy"},
aa7d318d 4735 {bp_std_terminate, "std::terminate"},
c5aa993b 4736 {bp_shlib_event, "shlib events"},
c4093a6a 4737 {bp_thread_event, "thread events"},
1900040c 4738 {bp_overlay_event, "overlay events"},
0fd8e87f 4739 {bp_longjmp_master, "longjmp master"},
aa7d318d 4740 {bp_std_terminate_master, "std::terminate master"},
186c406b 4741 {bp_exception_master, "exception master"},
ce78b96d 4742 {bp_catchpoint, "catchpoint"},
1042e4c0 4743 {bp_tracepoint, "tracepoint"},
7a697b8d 4744 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 4745 {bp_static_tracepoint, "static tracepoint"},
4efc6507 4746 {bp_jit_event, "jit events"},
0e30163f
JK
4747 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
4748 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 4749 };
269b11a2
PA
4750
4751 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
4752 || ((int) type != bptypes[(int) type].type))
4753 internal_error (__FILE__, __LINE__,
4754 _("bptypes table does not describe type #%d."),
4755 (int) type);
4756
4757 return bptypes[(int) type].description;
4758}
4759
4760/* Print B to gdb_stdout. */
4761
4762static void
4763print_one_breakpoint_location (struct breakpoint *b,
4764 struct bp_location *loc,
4765 int loc_number,
4766 struct bp_location **last_loc,
269b11a2
PA
4767 int allflag)
4768{
4769 struct command_line *l;
c2c6d25f 4770 static char bpenables[] = "nynny";
3b31d625 4771 struct cleanup *bkpt_chain;
c906108c 4772
0d381245
VP
4773 int header_of_multiple = 0;
4774 int part_of_multiple = (loc != NULL);
79a45b7d
TT
4775 struct value_print_options opts;
4776
4777 get_user_print_options (&opts);
0d381245
VP
4778
4779 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
4780 /* See comment in print_one_breakpoint concerning treatment of
4781 breakpoints with single disabled location. */
0d381245
VP
4782 if (loc == NULL
4783 && (b->loc != NULL
4784 && (b->loc->next != NULL || !b->loc->enabled)))
4785 header_of_multiple = 1;
4786 if (loc == NULL)
4787 loc = b->loc;
4788
c4093a6a 4789 annotate_record ();
3b31d625 4790 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
c4093a6a
JM
4791
4792 /* 1 */
4793 annotate_field (0);
0d381245
VP
4794 if (part_of_multiple)
4795 {
4796 char *formatted;
0c6773c1 4797 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
4798 ui_out_field_string (uiout, "number", formatted);
4799 xfree (formatted);
4800 }
4801 else
4802 {
4803 ui_out_field_int (uiout, "number", b->number);
4804 }
c4093a6a
JM
4805
4806 /* 2 */
4807 annotate_field (1);
0d381245
VP
4808 if (part_of_multiple)
4809 ui_out_field_skip (uiout, "type");
269b11a2
PA
4810 else
4811 ui_out_field_string (uiout, "type", bptype_string (b->type));
c4093a6a
JM
4812
4813 /* 3 */
4814 annotate_field (2);
0d381245
VP
4815 if (part_of_multiple)
4816 ui_out_field_skip (uiout, "disp");
4817 else
2cec12e5 4818 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 4819
c4093a6a
JM
4820
4821 /* 4 */
4822 annotate_field (3);
0d381245 4823 if (part_of_multiple)
54e52265 4824 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 4825 else
4a64f543
MS
4826 ui_out_field_fmt (uiout, "enabled", "%c",
4827 bpenables[(int) b->enable_state]);
54e52265 4828 ui_out_spaces (uiout, 2);
0d381245 4829
c4093a6a
JM
4830
4831 /* 5 and 6 */
3086aeae 4832 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 4833 {
4a64f543
MS
4834 /* Although the print_one can possibly print all locations,
4835 calling it here is not likely to get any nice result. So,
4836 make sure there's just one location. */
0d381245 4837 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 4838 b->ops->print_one (b, last_loc);
0d381245 4839 }
3086aeae
DJ
4840 else
4841 switch (b->type)
4842 {
4843 case bp_none:
4844 internal_error (__FILE__, __LINE__,
e2e0b3e5 4845 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 4846 break;
c906108c 4847
3086aeae
DJ
4848 case bp_watchpoint:
4849 case bp_hardware_watchpoint:
4850 case bp_read_watchpoint:
4851 case bp_access_watchpoint:
4852 /* Field 4, the address, is omitted (which makes the columns
4853 not line up too nicely with the headers, but the effect
4854 is relatively readable). */
79a45b7d 4855 if (opts.addressprint)
3086aeae
DJ
4856 ui_out_field_skip (uiout, "addr");
4857 annotate_field (5);
fa8a61dc 4858 ui_out_field_string (uiout, "what", b->exp_string);
3086aeae
DJ
4859 break;
4860
3086aeae
DJ
4861 case bp_breakpoint:
4862 case bp_hardware_breakpoint:
4863 case bp_until:
4864 case bp_finish:
4865 case bp_longjmp:
4866 case bp_longjmp_resume:
186c406b
TT
4867 case bp_exception:
4868 case bp_exception_resume:
3086aeae 4869 case bp_step_resume:
3086aeae
DJ
4870 case bp_watchpoint_scope:
4871 case bp_call_dummy:
aa7d318d 4872 case bp_std_terminate:
3086aeae
DJ
4873 case bp_shlib_event:
4874 case bp_thread_event:
4875 case bp_overlay_event:
0fd8e87f 4876 case bp_longjmp_master:
aa7d318d 4877 case bp_std_terminate_master:
186c406b 4878 case bp_exception_master:
1042e4c0 4879 case bp_tracepoint:
7a697b8d 4880 case bp_fast_tracepoint:
0fb4aa4b 4881 case bp_static_tracepoint:
4efc6507 4882 case bp_jit_event:
0e30163f
JK
4883 case bp_gnu_ifunc_resolver:
4884 case bp_gnu_ifunc_resolver_return:
79a45b7d 4885 if (opts.addressprint)
3086aeae
DJ
4886 {
4887 annotate_field (4);
54e52265 4888 if (header_of_multiple)
0d381245 4889 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 4890 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 4891 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 4892 else
5af949e3
UW
4893 ui_out_field_core_addr (uiout, "addr",
4894 loc->gdbarch, loc->address);
3086aeae
DJ
4895 }
4896 annotate_field (5);
0d381245 4897 if (!header_of_multiple)
170b53b2 4898 print_breakpoint_location (b, loc);
0d381245 4899 if (b->loc)
a6d9a66e 4900 *last_loc = b->loc;
3086aeae
DJ
4901 break;
4902 }
c906108c 4903
6c95b8df
PA
4904
4905 /* For backward compatibility, don't display inferiors unless there
4906 are several. */
4907 if (loc != NULL
4908 && !header_of_multiple
4909 && (allflag
4910 || (!gdbarch_has_global_breakpoints (target_gdbarch)
4911 && (number_of_program_spaces () > 1
4912 || number_of_inferiors () > 1)
4a64f543
MS
4913 /* LOC is for existing B, it cannot be in
4914 moribund_locations and thus having NULL OWNER. */
6c95b8df
PA
4915 && loc->owner->type != bp_catchpoint)))
4916 {
4917 struct inferior *inf;
4918 int first = 1;
4919
4920 for (inf = inferior_list; inf != NULL; inf = inf->next)
4921 {
4922 if (inf->pspace == loc->pspace)
4923 {
4924 if (first)
4925 {
4926 first = 0;
4927 ui_out_text (uiout, " inf ");
4928 }
4929 else
4930 ui_out_text (uiout, ", ");
4931 ui_out_text (uiout, plongest (inf->num));
4932 }
4933 }
4934 }
4935
4a306c9a 4936 if (!part_of_multiple)
c4093a6a 4937 {
4a306c9a
JB
4938 if (b->thread != -1)
4939 {
4940 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 4941 "stop only in" line a little further down. */
4a306c9a
JB
4942 ui_out_text (uiout, " thread ");
4943 ui_out_field_int (uiout, "thread", b->thread);
4944 }
4945 else if (b->task != 0)
4946 {
4947 ui_out_text (uiout, " task ");
4948 ui_out_field_int (uiout, "task", b->task);
4949 }
c4093a6a 4950 }
f1310107 4951
8b93c638 4952 ui_out_text (uiout, "\n");
f1310107
TJB
4953
4954 if (!part_of_multiple && b->ops && b->ops->print_one_detail)
4955 b->ops->print_one_detail (b, uiout);
4956
0fb4aa4b
PA
4957 if (!part_of_multiple && b->static_trace_marker_id)
4958 {
4959 gdb_assert (b->type == bp_static_tracepoint);
4960
4961 ui_out_text (uiout, "\tmarker id is ");
4962 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
4963 b->static_trace_marker_id);
4964 ui_out_text (uiout, "\n");
4965 }
4966
0d381245 4967 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
4968 {
4969 annotate_field (6);
8b93c638 4970 ui_out_text (uiout, "\tstop only in stack frame at ");
818dd999
AC
4971 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
4972 the frame ID. */
5af949e3
UW
4973 ui_out_field_core_addr (uiout, "frame",
4974 b->gdbarch, b->frame_id.stack_addr);
8b93c638 4975 ui_out_text (uiout, "\n");
c4093a6a
JM
4976 }
4977
0d381245 4978 if (!part_of_multiple && b->cond_string && !ada_exception_catchpoint_p (b))
c4093a6a 4979 {
f7f9143b
JB
4980 /* We do not print the condition for Ada exception catchpoints
4981 because the condition is an internal implementation detail
4982 that we do not want to expose to the user. */
c4093a6a 4983 annotate_field (7);
d77f58be 4984 if (is_tracepoint (b))
1042e4c0
SS
4985 ui_out_text (uiout, "\ttrace only if ");
4986 else
4987 ui_out_text (uiout, "\tstop only if ");
0101ce28
JJ
4988 ui_out_field_string (uiout, "cond", b->cond_string);
4989 ui_out_text (uiout, "\n");
4990 }
4991
0d381245 4992 if (!part_of_multiple && b->thread != -1)
c4093a6a 4993 {
4a64f543 4994 /* FIXME should make an annotation for this. */
8b93c638
JM
4995 ui_out_text (uiout, "\tstop only in thread ");
4996 ui_out_field_int (uiout, "thread", b->thread);
4997 ui_out_text (uiout, "\n");
c4093a6a
JM
4998 }
4999
63c715c6 5000 if (!part_of_multiple && b->hit_count)
c4093a6a 5001 {
4a64f543 5002 /* FIXME should make an annotation for this. */
8b93c638
JM
5003 if (ep_is_catchpoint (b))
5004 ui_out_text (uiout, "\tcatchpoint");
5005 else
5006 ui_out_text (uiout, "\tbreakpoint");
5007 ui_out_text (uiout, " already hit ");
5008 ui_out_field_int (uiout, "times", b->hit_count);
5009 if (b->hit_count == 1)
5010 ui_out_text (uiout, " time\n");
5011 else
5012 ui_out_text (uiout, " times\n");
c4093a6a
JM
5013 }
5014
4a64f543
MS
5015 /* Output the count also if it is zero, but only if this is mi.
5016 FIXME: Should have a better test for this. */
9dc5e2a9 5017 if (ui_out_is_mi_like_p (uiout))
63c715c6 5018 if (!part_of_multiple && b->hit_count == 0)
fb40c209 5019 ui_out_field_int (uiout, "times", b->hit_count);
8b93c638 5020
0d381245 5021 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
5022 {
5023 annotate_field (8);
8b93c638
JM
5024 ui_out_text (uiout, "\tignore next ");
5025 ui_out_field_int (uiout, "ignore", b->ignore_count);
5026 ui_out_text (uiout, " hits\n");
c4093a6a 5027 }
059fb39f 5028
9add0f1b 5029 l = b->commands ? b->commands->commands : NULL;
059fb39f 5030 if (!part_of_multiple && l)
c4093a6a 5031 {
3b31d625
EZ
5032 struct cleanup *script_chain;
5033
c4093a6a 5034 annotate_field (9);
3b31d625 5035 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 5036 print_command_lines (uiout, l, 4);
3b31d625 5037 do_cleanups (script_chain);
c4093a6a 5038 }
d24317b4 5039
1042e4c0
SS
5040 if (!part_of_multiple && b->pass_count)
5041 {
5042 annotate_field (10);
5043 ui_out_text (uiout, "\tpass count ");
5044 ui_out_field_int (uiout, "pass", b->pass_count);
5045 ui_out_text (uiout, " \n");
5046 }
5047
d24317b4
VP
5048 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
5049 {
5050 if (b->addr_string)
5051 ui_out_field_string (uiout, "original-location", b->addr_string);
5052 else if (b->exp_string)
5053 ui_out_field_string (uiout, "original-location", b->exp_string);
5054 }
5055
3b31d625 5056 do_cleanups (bkpt_chain);
c4093a6a 5057}
c5aa993b 5058
0d381245
VP
5059static void
5060print_one_breakpoint (struct breakpoint *b,
4a64f543 5061 struct bp_location **last_loc,
6c95b8df 5062 int allflag)
0d381245 5063{
12c5a436 5064 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
0d381245
VP
5065
5066 /* If this breakpoint has custom print function,
5067 it's already printed. Otherwise, print individual
5068 locations, if any. */
5069 if (b->ops == NULL || b->ops->print_one == NULL)
5070 {
4a64f543
MS
5071 /* If breakpoint has a single location that is disabled, we
5072 print it as if it had several locations, since otherwise it's
5073 hard to represent "breakpoint enabled, location disabled"
5074 situation.
5075
5076 Note that while hardware watchpoints have several locations
a3be7890 5077 internally, that's not a property exposed to user. */
0d381245 5078 if (b->loc
a5606eee 5079 && !is_hardware_watchpoint (b)
0d381245 5080 && (b->loc->next || !b->loc->enabled)
a5606eee 5081 && !ui_out_is_mi_like_p (uiout))
0d381245
VP
5082 {
5083 struct bp_location *loc;
5084 int n = 1;
5085 for (loc = b->loc; loc; loc = loc->next, ++n)
12c5a436 5086 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
0d381245
VP
5087 }
5088 }
5089}
5090
a6d9a66e
UW
5091static int
5092breakpoint_address_bits (struct breakpoint *b)
5093{
5094 int print_address_bits = 0;
5095 struct bp_location *loc;
5096
5097 for (loc = b->loc; loc; loc = loc->next)
5098 {
c7437ca6
PA
5099 int addr_bit;
5100
5101 /* Software watchpoints that aren't watching memory don't have
5102 an address to print. */
5103 if (b->type == bp_watchpoint && loc->watchpoint_type == -1)
5104 continue;
5105
5106 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
5107 if (addr_bit > print_address_bits)
5108 print_address_bits = addr_bit;
5109 }
5110
5111 return print_address_bits;
5112}
0d381245 5113
c4093a6a
JM
5114struct captured_breakpoint_query_args
5115 {
5116 int bnum;
5117 };
c5aa993b 5118
c4093a6a 5119static int
2b65245e 5120do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
5121{
5122 struct captured_breakpoint_query_args *args = data;
52f0bd74 5123 struct breakpoint *b;
a6d9a66e 5124 struct bp_location *dummy_loc = NULL;
cc59ec59 5125
c4093a6a
JM
5126 ALL_BREAKPOINTS (b)
5127 {
5128 if (args->bnum == b->number)
c5aa993b 5129 {
12c5a436 5130 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 5131 return GDB_RC_OK;
c5aa993b 5132 }
c4093a6a
JM
5133 }
5134 return GDB_RC_NONE;
5135}
c5aa993b 5136
c4093a6a 5137enum gdb_rc
4a64f543
MS
5138gdb_breakpoint_query (struct ui_out *uiout, int bnum,
5139 char **error_message)
c4093a6a
JM
5140{
5141 struct captured_breakpoint_query_args args;
cc59ec59 5142
c4093a6a
JM
5143 args.bnum = bnum;
5144 /* For the moment we don't trust print_one_breakpoint() to not throw
4a64f543 5145 an error. */
b0b13bb4
DJ
5146 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
5147 error_message, RETURN_MASK_ALL) < 0)
5148 return GDB_RC_FAIL;
5149 else
5150 return GDB_RC_OK;
c4093a6a 5151}
c5aa993b 5152
7f3b0473 5153/* Return non-zero if B is user settable (breakpoints, watchpoints,
4a64f543 5154 catchpoints, et.al.). */
7f3b0473
AC
5155
5156static int
5157user_settable_breakpoint (const struct breakpoint *b)
5158{
5159 return (b->type == bp_breakpoint
ce78b96d 5160 || b->type == bp_catchpoint
7f3b0473 5161 || b->type == bp_hardware_breakpoint
d77f58be 5162 || is_tracepoint (b)
0e30163f
JK
5163 || is_watchpoint (b)
5164 || b->type == bp_gnu_ifunc_resolver);
7f3b0473 5165}
4a64f543 5166
09d682a4
TT
5167/* Return true if this breakpoint was set by the user, false if it is
5168 internal or momentary. */
5169
5170int
5171user_breakpoint_p (struct breakpoint *b)
5172{
5173 return user_settable_breakpoint (b) && b->number > 0;
5174}
5175
7f3b0473 5176/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
5177 number BNUM. If BNUM is -1 print all user-settable breakpoints.
5178 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
5179 FILTER is non-NULL, call it on each breakpoint and only include the
5180 ones for which it returns non-zero. Return the total number of
5181 breakpoints listed. */
c906108c 5182
d77f58be 5183static int
e5a67952 5184breakpoint_1 (char *args, int allflag,
4a64f543 5185 int (*filter) (const struct breakpoint *))
c4093a6a 5186{
52f0bd74 5187 struct breakpoint *b;
a6d9a66e 5188 struct bp_location *last_loc = NULL;
7f3b0473 5189 int nr_printable_breakpoints;
3b31d625 5190 struct cleanup *bkpttbl_chain;
79a45b7d 5191 struct value_print_options opts;
a6d9a66e 5192 int print_address_bits = 0;
269b11a2
PA
5193 int print_type_col_width = 14;
5194
79a45b7d
TT
5195 get_user_print_options (&opts);
5196
4a64f543
MS
5197 /* Compute the number of rows in the table, as well as the size
5198 required for address fields. */
7f3b0473
AC
5199 nr_printable_breakpoints = 0;
5200 ALL_BREAKPOINTS (b)
e5a67952
MS
5201 {
5202 /* If we have a filter, only list the breakpoints it accepts. */
5203 if (filter && !filter (b))
5204 continue;
5205
5206 /* If we have an "args" string, it is a list of breakpoints to
5207 accept. Skip the others. */
5208 if (args != NULL && *args != '\0')
5209 {
5210 if (allflag && parse_and_eval_long (args) != b->number)
5211 continue;
5212 if (!allflag && !number_is_in_list (args, b->number))
5213 continue;
5214 }
269b11a2 5215
e5a67952
MS
5216 if (allflag || user_breakpoint_p (b))
5217 {
5218 int addr_bit, type_len;
a6d9a66e 5219
e5a67952
MS
5220 addr_bit = breakpoint_address_bits (b);
5221 if (addr_bit > print_address_bits)
5222 print_address_bits = addr_bit;
269b11a2 5223
e5a67952
MS
5224 type_len = strlen (bptype_string (b->type));
5225 if (type_len > print_type_col_width)
5226 print_type_col_width = type_len;
5227
5228 nr_printable_breakpoints++;
5229 }
5230 }
7f3b0473 5231
79a45b7d 5232 if (opts.addressprint)
3b31d625 5233 bkpttbl_chain
3e43a32a
MS
5234 = make_cleanup_ui_out_table_begin_end (uiout, 6,
5235 nr_printable_breakpoints,
3b31d625 5236 "BreakpointTable");
8b93c638 5237 else
3b31d625 5238 bkpttbl_chain
3e43a32a
MS
5239 = make_cleanup_ui_out_table_begin_end (uiout, 5,
5240 nr_printable_breakpoints,
3b31d625 5241 "BreakpointTable");
8b93c638 5242
7f3b0473 5243 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
5244 annotate_breakpoints_headers ();
5245 if (nr_printable_breakpoints > 0)
5246 annotate_field (0);
4a64f543 5247 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
5248 if (nr_printable_breakpoints > 0)
5249 annotate_field (1);
269b11a2 5250 ui_out_table_header (uiout, print_type_col_width, ui_left,
4a64f543 5251 "type", "Type"); /* 2 */
d7faa9e7
AC
5252 if (nr_printable_breakpoints > 0)
5253 annotate_field (2);
4a64f543 5254 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
d7faa9e7
AC
5255 if (nr_printable_breakpoints > 0)
5256 annotate_field (3);
54e52265 5257 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 5258 if (opts.addressprint)
e5a67952
MS
5259 {
5260 if (nr_printable_breakpoints > 0)
5261 annotate_field (4);
5262 if (print_address_bits <= 32)
5263 ui_out_table_header (uiout, 10, ui_left,
5264 "addr", "Address"); /* 5 */
5265 else
5266 ui_out_table_header (uiout, 18, ui_left,
5267 "addr", "Address"); /* 5 */
5268 }
d7faa9e7
AC
5269 if (nr_printable_breakpoints > 0)
5270 annotate_field (5);
5271 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
5272 ui_out_table_body (uiout);
5273 if (nr_printable_breakpoints > 0)
5274 annotate_breakpoints_table ();
7f3b0473 5275
c4093a6a 5276 ALL_BREAKPOINTS (b)
e5a67952
MS
5277 {
5278 QUIT;
5279 /* If we have a filter, only list the breakpoints it accepts. */
5280 if (filter && !filter (b))
5281 continue;
5282
5283 /* If we have an "args" string, it is a list of breakpoints to
5284 accept. Skip the others. */
5285
5286 if (args != NULL && *args != '\0')
5287 {
5288 if (allflag) /* maintenance info breakpoint */
5289 {
5290 if (parse_and_eval_long (args) != b->number)
5291 continue;
5292 }
5293 else /* all others */
5294 {
5295 if (!number_is_in_list (args, b->number))
5296 continue;
5297 }
5298 }
5299 /* We only print out user settable breakpoints unless the
5300 allflag is set. */
5301 if (allflag || user_breakpoint_p (b))
12c5a436 5302 print_one_breakpoint (b, &last_loc, allflag);
e5a67952
MS
5303 }
5304
3b31d625 5305 do_cleanups (bkpttbl_chain);
698384cd 5306
7f3b0473 5307 if (nr_printable_breakpoints == 0)
c906108c 5308 {
4a64f543
MS
5309 /* If there's a filter, let the caller decide how to report
5310 empty list. */
d77f58be
SS
5311 if (!filter)
5312 {
e5a67952 5313 if (args == NULL || *args == '\0')
d77f58be
SS
5314 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
5315 else
4a64f543 5316 ui_out_message (uiout, 0,
e5a67952
MS
5317 "No breakpoint or watchpoint matching '%s'.\n",
5318 args);
d77f58be 5319 }
c906108c
SS
5320 }
5321 else
c4093a6a 5322 {
a6d9a66e
UW
5323 if (last_loc && !server_command)
5324 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 5325 }
c906108c 5326
4a64f543 5327 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 5328 there have been breakpoints? */
c906108c 5329 annotate_breakpoints_table_end ();
d77f58be
SS
5330
5331 return nr_printable_breakpoints;
c906108c
SS
5332}
5333
ad443146
SS
5334/* Display the value of default-collect in a way that is generally
5335 compatible with the breakpoint list. */
5336
5337static void
5338default_collect_info (void)
5339{
5340 /* If it has no value (which is frequently the case), say nothing; a
5341 message like "No default-collect." gets in user's face when it's
5342 not wanted. */
5343 if (!*default_collect)
5344 return;
5345
5346 /* The following phrase lines up nicely with per-tracepoint collect
5347 actions. */
5348 ui_out_text (uiout, "default collect ");
5349 ui_out_field_string (uiout, "default-collect", default_collect);
5350 ui_out_text (uiout, " \n");
5351}
5352
c906108c 5353static void
e5a67952 5354breakpoints_info (char *args, int from_tty)
c906108c 5355{
e5a67952 5356 breakpoint_1 (args, 0, NULL);
ad443146
SS
5357
5358 default_collect_info ();
d77f58be
SS
5359}
5360
5361static void
e5a67952 5362watchpoints_info (char *args, int from_tty)
d77f58be 5363{
e5a67952 5364 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
d77f58be
SS
5365
5366 if (num_printed == 0)
5367 {
e5a67952 5368 if (args == NULL || *args == '\0')
d77f58be
SS
5369 ui_out_message (uiout, 0, "No watchpoints.\n");
5370 else
e5a67952 5371 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
d77f58be 5372 }
c906108c
SS
5373}
5374
7a292a7a 5375static void
e5a67952 5376maintenance_info_breakpoints (char *args, int from_tty)
c906108c 5377{
e5a67952 5378 breakpoint_1 (args, 1, NULL);
ad443146
SS
5379
5380 default_collect_info ();
c906108c
SS
5381}
5382
0d381245 5383static int
714835d5 5384breakpoint_has_pc (struct breakpoint *b,
6c95b8df 5385 struct program_space *pspace,
714835d5 5386 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
5387{
5388 struct bp_location *bl = b->loc;
cc59ec59 5389
0d381245
VP
5390 for (; bl; bl = bl->next)
5391 {
6c95b8df
PA
5392 if (bl->pspace == pspace
5393 && bl->address == pc
0d381245
VP
5394 && (!overlay_debugging || bl->section == section))
5395 return 1;
5396 }
5397 return 0;
5398}
5399
6c95b8df
PA
5400/* Print a message describing any breakpoints set at PC. This
5401 concerns with logical breakpoints, so we match program spaces, not
5402 address spaces. */
c906108c
SS
5403
5404static void
6c95b8df
PA
5405describe_other_breakpoints (struct gdbarch *gdbarch,
5406 struct program_space *pspace, CORE_ADDR pc,
5af949e3 5407 struct obj_section *section, int thread)
c906108c 5408{
52f0bd74
AC
5409 int others = 0;
5410 struct breakpoint *b;
c906108c
SS
5411
5412 ALL_BREAKPOINTS (b)
6c95b8df 5413 others += breakpoint_has_pc (b, pspace, pc, section);
c906108c
SS
5414 if (others > 0)
5415 {
a3f17187
AC
5416 if (others == 1)
5417 printf_filtered (_("Note: breakpoint "));
5418 else /* if (others == ???) */
5419 printf_filtered (_("Note: breakpoints "));
c906108c 5420 ALL_BREAKPOINTS (b)
6c95b8df 5421 if (breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
5422 {
5423 others--;
5424 printf_filtered ("%d", b->number);
5425 if (b->thread == -1 && thread != -1)
5426 printf_filtered (" (all threads)");
5427 else if (b->thread != -1)
5428 printf_filtered (" (thread %d)", b->thread);
5429 printf_filtered ("%s%s ",
059fb39f 5430 ((b->enable_state == bp_disabled
8bea4e01
UW
5431 || b->enable_state == bp_call_disabled
5432 || b->enable_state == bp_startup_disabled)
0d381245
VP
5433 ? " (disabled)"
5434 : b->enable_state == bp_permanent
5435 ? " (permanent)"
5436 : ""),
5437 (others > 1) ? ","
5438 : ((others == 1) ? " and" : ""));
5439 }
a3f17187 5440 printf_filtered (_("also set at pc "));
5af949e3 5441 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
5442 printf_filtered (".\n");
5443 }
5444}
5445\f
5446/* Set the default place to put a breakpoint
5447 for the `break' command with no arguments. */
5448
5449void
6c95b8df
PA
5450set_default_breakpoint (int valid, struct program_space *pspace,
5451 CORE_ADDR addr, struct symtab *symtab,
fba45db2 5452 int line)
c906108c
SS
5453{
5454 default_breakpoint_valid = valid;
6c95b8df 5455 default_breakpoint_pspace = pspace;
c906108c
SS
5456 default_breakpoint_address = addr;
5457 default_breakpoint_symtab = symtab;
5458 default_breakpoint_line = line;
5459}
5460
e4f237da
KB
5461/* Return true iff it is meaningful to use the address member of
5462 BPT. For some breakpoint types, the address member is irrelevant
5463 and it makes no sense to attempt to compare it to other addresses
5464 (or use it for any other purpose either).
5465
4a64f543
MS
5466 More specifically, each of the following breakpoint types will
5467 always have a zero valued address and we don't want to mark
5468 breakpoints of any of these types to be a duplicate of an actual
5469 breakpoint at address zero:
e4f237da
KB
5470
5471 bp_watchpoint
2d134ed3
PA
5472 bp_catchpoint
5473
5474*/
e4f237da
KB
5475
5476static int
5477breakpoint_address_is_meaningful (struct breakpoint *bpt)
5478{
5479 enum bptype type = bpt->type;
5480
2d134ed3
PA
5481 return (type != bp_watchpoint && type != bp_catchpoint);
5482}
5483
5484/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
5485 true if LOC1 and LOC2 represent the same watchpoint location. */
5486
5487static int
4a64f543
MS
5488watchpoint_locations_match (struct bp_location *loc1,
5489 struct bp_location *loc2)
2d134ed3 5490{
2bdf28a0
JK
5491 /* Both of them must not be in moribund_locations. */
5492 gdb_assert (loc1->owner != NULL);
5493 gdb_assert (loc2->owner != NULL);
5494
4a64f543
MS
5495 /* If the target can evaluate the condition expression in hardware,
5496 then we we need to insert both watchpoints even if they are at
5497 the same place. Otherwise the watchpoint will only trigger when
5498 the condition of whichever watchpoint was inserted evaluates to
5499 true, not giving a chance for GDB to check the condition of the
5500 other watchpoint. */
0cf6dd15 5501 if ((loc1->owner->cond_exp
4a64f543
MS
5502 && target_can_accel_watchpoint_condition (loc1->address,
5503 loc1->length,
0cf6dd15
TJB
5504 loc1->watchpoint_type,
5505 loc1->owner->cond_exp))
5506 || (loc2->owner->cond_exp
4a64f543
MS
5507 && target_can_accel_watchpoint_condition (loc2->address,
5508 loc2->length,
0cf6dd15
TJB
5509 loc2->watchpoint_type,
5510 loc2->owner->cond_exp)))
5511 return 0;
5512
85d721b8
PA
5513 /* Note that this checks the owner's type, not the location's. In
5514 case the target does not support read watchpoints, but does
5515 support access watchpoints, we'll have bp_read_watchpoint
5516 watchpoints with hw_access locations. Those should be considered
5517 duplicates of hw_read locations. The hw_read locations will
5518 become hw_access locations later. */
2d134ed3
PA
5519 return (loc1->owner->type == loc2->owner->type
5520 && loc1->pspace->aspace == loc2->pspace->aspace
5521 && loc1->address == loc2->address
5522 && loc1->length == loc2->length);
e4f237da
KB
5523}
5524
6c95b8df
PA
5525/* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
5526 same breakpoint location. In most targets, this can only be true
5527 if ASPACE1 matches ASPACE2. On targets that have global
5528 breakpoints, the address space doesn't really matter. */
5529
5530static int
5531breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
5532 struct address_space *aspace2, CORE_ADDR addr2)
5533{
5534 return ((gdbarch_has_global_breakpoints (target_gdbarch)
5535 || aspace1 == aspace2)
5536 && addr1 == addr2);
5537}
5538
f1310107
TJB
5539/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
5540 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
5541 matches ASPACE2. On targets that have global breakpoints, the address
5542 space doesn't really matter. */
5543
5544static int
5545breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
5546 int len1, struct address_space *aspace2,
5547 CORE_ADDR addr2)
5548{
5549 return ((gdbarch_has_global_breakpoints (target_gdbarch)
5550 || aspace1 == aspace2)
5551 && addr2 >= addr1 && addr2 < addr1 + len1);
5552}
5553
5554/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
5555 a ranged breakpoint. In most targets, a match happens only if ASPACE
5556 matches the breakpoint's address space. On targets that have global
5557 breakpoints, the address space doesn't really matter. */
5558
5559static int
5560breakpoint_location_address_match (struct bp_location *bl,
5561 struct address_space *aspace,
5562 CORE_ADDR addr)
5563{
5564 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
5565 aspace, addr)
5566 || (bl->length
5567 && breakpoint_address_match_range (bl->pspace->aspace,
5568 bl->address, bl->length,
5569 aspace, addr)));
5570}
5571
2d134ed3
PA
5572/* Assuming LOC1 and LOC2's types' have meaningful target addresses
5573 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
5574 represent the same location. */
5575
5576static int
4a64f543
MS
5577breakpoint_locations_match (struct bp_location *loc1,
5578 struct bp_location *loc2)
2d134ed3 5579{
2bdf28a0
JK
5580 int hw_point1, hw_point2;
5581
5582 /* Both of them must not be in moribund_locations. */
5583 gdb_assert (loc1->owner != NULL);
5584 gdb_assert (loc2->owner != NULL);
5585
5586 hw_point1 = is_hardware_watchpoint (loc1->owner);
5587 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
5588
5589 if (hw_point1 != hw_point2)
5590 return 0;
5591 else if (hw_point1)
5592 return watchpoint_locations_match (loc1, loc2);
5593 else
f1310107
TJB
5594 /* We compare bp_location.length in order to cover ranged breakpoints. */
5595 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
5596 loc2->pspace->aspace, loc2->address)
5597 && loc1->length == loc2->length);
2d134ed3
PA
5598}
5599
76897487
KB
5600static void
5601breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
5602 int bnum, int have_bnum)
5603{
f63fbe86
MS
5604 /* The longest string possibly returned by hex_string_custom
5605 is 50 chars. These must be at least that big for safety. */
5606 char astr1[64];
5607 char astr2[64];
76897487 5608
bb599908
PH
5609 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
5610 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 5611 if (have_bnum)
8a3fe4f8 5612 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
5613 bnum, astr1, astr2);
5614 else
8a3fe4f8 5615 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
5616}
5617
4a64f543
MS
5618/* Adjust a breakpoint's address to account for architectural
5619 constraints on breakpoint placement. Return the adjusted address.
5620 Note: Very few targets require this kind of adjustment. For most
5621 targets, this function is simply the identity function. */
76897487
KB
5622
5623static CORE_ADDR
a6d9a66e
UW
5624adjust_breakpoint_address (struct gdbarch *gdbarch,
5625 CORE_ADDR bpaddr, enum bptype bptype)
76897487 5626{
a6d9a66e 5627 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
5628 {
5629 /* Very few targets need any kind of breakpoint adjustment. */
5630 return bpaddr;
5631 }
88f7da05
KB
5632 else if (bptype == bp_watchpoint
5633 || bptype == bp_hardware_watchpoint
5634 || bptype == bp_read_watchpoint
5635 || bptype == bp_access_watchpoint
fe798b75 5636 || bptype == bp_catchpoint)
88f7da05
KB
5637 {
5638 /* Watchpoints and the various bp_catch_* eventpoints should not
5639 have their addresses modified. */
5640 return bpaddr;
5641 }
76897487
KB
5642 else
5643 {
5644 CORE_ADDR adjusted_bpaddr;
5645
5646 /* Some targets have architectural constraints on the placement
5647 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 5648 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
5649
5650 /* An adjusted breakpoint address can significantly alter
5651 a user's expectations. Print a warning if an adjustment
5652 is required. */
5653 if (adjusted_bpaddr != bpaddr)
5654 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
5655
5656 return adjusted_bpaddr;
5657 }
5658}
5659
7cc221ef
DJ
5660/* Allocate a struct bp_location. */
5661
26bb91f3 5662static struct bp_location *
39d61571 5663allocate_bp_location (struct breakpoint *bpt)
7cc221ef 5664{
afe38095 5665 struct bp_location *loc;
7cc221ef
DJ
5666
5667 loc = xmalloc (sizeof (struct bp_location));
5668 memset (loc, 0, sizeof (*loc));
5669
e049a4b5 5670 loc->owner = bpt;
511a6cd4 5671 loc->cond = NULL;
0d381245
VP
5672 loc->shlib_disabled = 0;
5673 loc->enabled = 1;
e049a4b5 5674
39d61571 5675 switch (bpt->type)
e049a4b5
DJ
5676 {
5677 case bp_breakpoint:
5678 case bp_until:
5679 case bp_finish:
5680 case bp_longjmp:
5681 case bp_longjmp_resume:
186c406b
TT
5682 case bp_exception:
5683 case bp_exception_resume:
e049a4b5 5684 case bp_step_resume:
e049a4b5
DJ
5685 case bp_watchpoint_scope:
5686 case bp_call_dummy:
aa7d318d 5687 case bp_std_terminate:
e049a4b5
DJ
5688 case bp_shlib_event:
5689 case bp_thread_event:
5690 case bp_overlay_event:
4efc6507 5691 case bp_jit_event:
0fd8e87f 5692 case bp_longjmp_master:
aa7d318d 5693 case bp_std_terminate_master:
186c406b 5694 case bp_exception_master:
0e30163f
JK
5695 case bp_gnu_ifunc_resolver:
5696 case bp_gnu_ifunc_resolver_return:
e049a4b5
DJ
5697 loc->loc_type = bp_loc_software_breakpoint;
5698 break;
5699 case bp_hardware_breakpoint:
5700 loc->loc_type = bp_loc_hardware_breakpoint;
5701 break;
5702 case bp_hardware_watchpoint:
5703 case bp_read_watchpoint:
5704 case bp_access_watchpoint:
5705 loc->loc_type = bp_loc_hardware_watchpoint;
5706 break;
5707 case bp_watchpoint:
ce78b96d 5708 case bp_catchpoint:
15c3d785
PA
5709 case bp_tracepoint:
5710 case bp_fast_tracepoint:
0fb4aa4b 5711 case bp_static_tracepoint:
e049a4b5
DJ
5712 loc->loc_type = bp_loc_other;
5713 break;
5714 default:
e2e0b3e5 5715 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
5716 }
5717
f431efe5 5718 loc->refc = 1;
7cc221ef
DJ
5719 return loc;
5720}
5721
f431efe5
PA
5722static void
5723free_bp_location (struct bp_location *loc)
fe3f5fa8
VP
5724{
5725 if (loc->cond)
5726 xfree (loc->cond);
74960c60
VP
5727
5728 if (loc->function_name)
5729 xfree (loc->function_name);
f431efe5 5730
fe3f5fa8
VP
5731 xfree (loc);
5732}
5733
f431efe5
PA
5734/* Increment reference count. */
5735
5736static void
5737incref_bp_location (struct bp_location *bl)
5738{
5739 ++bl->refc;
5740}
5741
5742/* Decrement reference count. If the reference count reaches 0,
5743 destroy the bp_location. Sets *BLP to NULL. */
5744
5745static void
5746decref_bp_location (struct bp_location **blp)
5747{
0807b50c
PA
5748 gdb_assert ((*blp)->refc > 0);
5749
f431efe5
PA
5750 if (--(*blp)->refc == 0)
5751 free_bp_location (*blp);
5752 *blp = NULL;
5753}
5754
4a64f543
MS
5755/* Helper to set_raw_breakpoint below. Creates a breakpoint that has
5756 type BPTYPE and has no locations as yet. */
5757/* This function is used in gdbtk sources and thus can not be made
5758 static. */
c906108c 5759
c40e75cd 5760static struct breakpoint *
a6d9a66e
UW
5761set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
5762 enum bptype bptype)
c906108c 5763{
52f0bd74 5764 struct breakpoint *b, *b1;
c906108c
SS
5765
5766 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
5767 memset (b, 0, sizeof (*b));
2219d63c 5768
4d28f7a8 5769 b->type = bptype;
a6d9a66e 5770 b->gdbarch = gdbarch;
c906108c
SS
5771 b->language = current_language->la_language;
5772 b->input_radix = input_radix;
5773 b->thread = -1;
b5de0fa7 5774 b->enable_state = bp_enabled;
c906108c
SS
5775 b->next = 0;
5776 b->silent = 0;
5777 b->ignore_count = 0;
5778 b->commands = NULL;
818dd999 5779 b->frame_id = null_frame_id;
3a3e9ee3 5780 b->forked_inferior_pid = null_ptid;
c906108c 5781 b->exec_pathname = NULL;
a96d9b2e 5782 b->syscalls_to_be_caught = NULL;
3086aeae 5783 b->ops = NULL;
0d381245 5784 b->condition_not_parsed = 0;
84f4c1fe 5785 b->py_bp_object = NULL;
d0fb5eae 5786 b->related_breakpoint = b;
c906108c 5787
4a64f543
MS
5788 /* Add this breakpoint to the end of the chain so that a list of
5789 breakpoints will come out in order of increasing numbers. */
c906108c
SS
5790
5791 b1 = breakpoint_chain;
5792 if (b1 == 0)
5793 breakpoint_chain = b;
5794 else
5795 {
5796 while (b1->next)
5797 b1 = b1->next;
5798 b1->next = b;
5799 }
0d381245
VP
5800 return b;
5801}
5802
0e30163f
JK
5803/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
5804 resolutions should be made as the user specified the location explicitly
5805 enough. */
5806
0d381245 5807static void
0e30163f 5808set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 5809{
2bdf28a0
JK
5810 gdb_assert (loc->owner != NULL);
5811
0d381245 5812 if (loc->owner->type == bp_breakpoint
1042e4c0 5813 || loc->owner->type == bp_hardware_breakpoint
d77f58be 5814 || is_tracepoint (loc->owner))
0d381245 5815 {
0e30163f
JK
5816 int is_gnu_ifunc;
5817
5818 find_pc_partial_function_gnu_ifunc (loc->address, &loc->function_name,
5819 NULL, NULL, &is_gnu_ifunc);
5820
5821 if (is_gnu_ifunc && !explicit_loc)
5822 {
5823 struct breakpoint *b = loc->owner;
5824
5825 gdb_assert (loc->pspace == current_program_space);
5826 if (gnu_ifunc_resolve_name (loc->function_name,
5827 &loc->requested_address))
5828 {
5829 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
5830 loc->address = adjust_breakpoint_address (loc->gdbarch,
5831 loc->requested_address,
5832 b->type);
5833 }
5834 else if (b->type == bp_breakpoint && b->loc == loc
5835 && loc->next == NULL && b->related_breakpoint == b)
5836 {
5837 /* Create only the whole new breakpoint of this type but do not
5838 mess more complicated breakpoints with multiple locations. */
5839 b->type = bp_gnu_ifunc_resolver;
5840 }
5841 }
5842
0d381245
VP
5843 if (loc->function_name)
5844 loc->function_name = xstrdup (loc->function_name);
5845 }
5846}
5847
a6d9a66e
UW
5848/* Attempt to determine architecture of location identified by SAL. */
5849static struct gdbarch *
5850get_sal_arch (struct symtab_and_line sal)
5851{
5852 if (sal.section)
5853 return get_objfile_arch (sal.section->objfile);
5854 if (sal.symtab)
5855 return get_objfile_arch (sal.symtab->objfile);
5856
5857 return NULL;
5858}
5859
0d381245
VP
5860/* set_raw_breakpoint is a low level routine for allocating and
5861 partially initializing a breakpoint of type BPTYPE. The newly
5862 created breakpoint's address, section, source file name, and line
5863 number are provided by SAL. The newly created and partially
5864 initialized breakpoint is added to the breakpoint chain and
5865 is also returned as the value of this function.
5866
5867 It is expected that the caller will complete the initialization of
5868 the newly created breakpoint struct as well as output any status
5869 information regarding the creation of a new breakpoint. In
5870 particular, set_raw_breakpoint does NOT set the breakpoint
5871 number! Care should be taken to not allow an error to occur
5872 prior to completing the initialization of the breakpoint. If this
5873 should happen, a bogus breakpoint will be left on the chain. */
5874
63c252f8 5875struct breakpoint *
a6d9a66e
UW
5876set_raw_breakpoint (struct gdbarch *gdbarch,
5877 struct symtab_and_line sal, enum bptype bptype)
0d381245 5878{
4a64f543
MS
5879 struct breakpoint *b = set_raw_breakpoint_without_location (gdbarch,
5880 bptype);
0d381245 5881 CORE_ADDR adjusted_address;
a6d9a66e
UW
5882 struct gdbarch *loc_gdbarch;
5883
5884 loc_gdbarch = get_sal_arch (sal);
5885 if (!loc_gdbarch)
5886 loc_gdbarch = b->gdbarch;
0d381245 5887
6c95b8df
PA
5888 if (bptype != bp_catchpoint)
5889 gdb_assert (sal.pspace != NULL);
5890
0d381245
VP
5891 /* Adjust the breakpoint's address prior to allocating a location.
5892 Once we call allocate_bp_location(), that mostly uninitialized
5893 location will be placed on the location chain. Adjustment of the
8defab1a 5894 breakpoint may cause target_read_memory() to be called and we do
0d381245
VP
5895 not want its scan of the location chain to find a breakpoint and
5896 location that's only been partially initialized. */
4a64f543
MS
5897 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
5898 sal.pc, b->type);
0d381245 5899
39d61571 5900 b->loc = allocate_bp_location (b);
a6d9a66e 5901 b->loc->gdbarch = loc_gdbarch;
0d381245
VP
5902 b->loc->requested_address = sal.pc;
5903 b->loc->address = adjusted_address;
6c95b8df
PA
5904 b->loc->pspace = sal.pspace;
5905
5906 /* Store the program space that was used to set the breakpoint, for
5907 breakpoint resetting. */
5908 b->pspace = sal.pspace;
0d381245
VP
5909
5910 if (sal.symtab == NULL)
5911 b->source_file = NULL;
5912 else
1b36a34b 5913 b->source_file = xstrdup (sal.symtab->filename);
0d381245
VP
5914 b->loc->section = sal.section;
5915 b->line_number = sal.line;
5916
0e30163f
JK
5917 set_breakpoint_location_function (b->loc,
5918 sal.explicit_pc || sal.explicit_line);
c906108c 5919
c906108c
SS
5920 breakpoints_changed ();
5921
5922 return b;
5923}
5924
c2c6d25f
JM
5925
5926/* Note that the breakpoint object B describes a permanent breakpoint
5927 instruction, hard-wired into the inferior's code. */
5928void
5929make_breakpoint_permanent (struct breakpoint *b)
5930{
0d381245 5931 struct bp_location *bl;
cc59ec59 5932
b5de0fa7 5933 b->enable_state = bp_permanent;
c2c6d25f 5934
4a64f543
MS
5935 /* By definition, permanent breakpoints are already present in the
5936 code. Mark all locations as inserted. For now,
5937 make_breakpoint_permanent is called in just one place, so it's
5938 hard to say if it's reasonable to have permanent breakpoint with
5939 multiple locations or not, but it's easy to implmement. */
0d381245
VP
5940 for (bl = b->loc; bl; bl = bl->next)
5941 bl->inserted = 1;
c2c6d25f
JM
5942}
5943
53a5351d 5944/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
5945 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
5946 initiated the operation. */
c906108c
SS
5947
5948void
186c406b 5949set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 5950{
35df4500 5951 struct breakpoint *b, *b_tmp;
186c406b 5952 int thread = tp->num;
0fd8e87f
UW
5953
5954 /* To avoid having to rescan all objfile symbols at every step,
5955 we maintain a list of continually-inserted but always disabled
5956 longjmp "master" breakpoints. Here, we simply create momentary
5957 clones of those and enable them for the requested thread. */
35df4500 5958 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 5959 if (b->pspace == current_program_space
186c406b
TT
5960 && (b->type == bp_longjmp_master
5961 || b->type == bp_exception_master))
0fd8e87f
UW
5962 {
5963 struct breakpoint *clone = clone_momentary_breakpoint (b);
cc59ec59 5964
186c406b 5965 clone->type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
0fd8e87f
UW
5966 clone->thread = thread;
5967 }
186c406b
TT
5968
5969 tp->initiating_frame = frame;
c906108c
SS
5970}
5971
611c83ae 5972/* Delete all longjmp breakpoints from THREAD. */
c906108c 5973void
611c83ae 5974delete_longjmp_breakpoint (int thread)
c906108c 5975{
35df4500 5976 struct breakpoint *b, *b_tmp;
c906108c 5977
35df4500 5978 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 5979 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
5980 {
5981 if (b->thread == thread)
5982 delete_breakpoint (b);
5983 }
c906108c
SS
5984}
5985
1900040c
MS
5986void
5987enable_overlay_breakpoints (void)
5988{
52f0bd74 5989 struct breakpoint *b;
1900040c
MS
5990
5991 ALL_BREAKPOINTS (b)
5992 if (b->type == bp_overlay_event)
5993 {
5994 b->enable_state = bp_enabled;
b60e7edf 5995 update_global_location_list (1);
c02f5703 5996 overlay_events_enabled = 1;
1900040c
MS
5997 }
5998}
5999
6000void
6001disable_overlay_breakpoints (void)
6002{
52f0bd74 6003 struct breakpoint *b;
1900040c
MS
6004
6005 ALL_BREAKPOINTS (b)
6006 if (b->type == bp_overlay_event)
6007 {
6008 b->enable_state = bp_disabled;
b60e7edf 6009 update_global_location_list (0);
c02f5703 6010 overlay_events_enabled = 0;
1900040c
MS
6011 }
6012}
6013
aa7d318d
TT
6014/* Set an active std::terminate breakpoint for each std::terminate
6015 master breakpoint. */
6016void
6017set_std_terminate_breakpoint (void)
6018{
35df4500 6019 struct breakpoint *b, *b_tmp;
aa7d318d 6020
35df4500 6021 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
6022 if (b->pspace == current_program_space
6023 && b->type == bp_std_terminate_master)
6024 {
6025 struct breakpoint *clone = clone_momentary_breakpoint (b);
6026 clone->type = bp_std_terminate;
6027 }
6028}
6029
6030/* Delete all the std::terminate breakpoints. */
6031void
6032delete_std_terminate_breakpoint (void)
6033{
35df4500 6034 struct breakpoint *b, *b_tmp;
aa7d318d 6035
35df4500 6036 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
6037 if (b->type == bp_std_terminate)
6038 delete_breakpoint (b);
6039}
6040
c4093a6a 6041struct breakpoint *
a6d9a66e 6042create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
6043{
6044 struct breakpoint *b;
c4093a6a 6045
a6d9a66e 6046 b = create_internal_breakpoint (gdbarch, address, bp_thread_event);
c4093a6a 6047
b5de0fa7 6048 b->enable_state = bp_enabled;
c4093a6a 6049 /* addr_string has to be used or breakpoint_re_set will delete me. */
5af949e3
UW
6050 b->addr_string
6051 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
c4093a6a 6052
b60e7edf 6053 update_global_location_list_nothrow (1);
74960c60 6054
c4093a6a
JM
6055 return b;
6056}
6057
6058void
6059remove_thread_event_breakpoints (void)
6060{
35df4500 6061 struct breakpoint *b, *b_tmp;
c4093a6a 6062
35df4500 6063 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
6064 if (b->type == bp_thread_event
6065 && b->loc->pspace == current_program_space)
c4093a6a
JM
6066 delete_breakpoint (b);
6067}
6068
0101ce28
JJ
6069struct captured_parse_breakpoint_args
6070 {
6071 char **arg_p;
6072 struct symtabs_and_lines *sals_p;
7efd8fc2 6073 struct linespec_result *canonical_p;
0101ce28
JJ
6074 int *not_found_ptr;
6075 };
6076
6077struct lang_and_radix
6078 {
6079 enum language lang;
6080 int radix;
6081 };
6082
4efc6507
DE
6083/* Create a breakpoint for JIT code registration and unregistration. */
6084
6085struct breakpoint *
6086create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
6087{
6088 struct breakpoint *b;
6089
6090 b = create_internal_breakpoint (gdbarch, address, bp_jit_event);
6091 update_global_location_list_nothrow (1);
6092 return b;
6093}
0101ce28 6094
03673fc7
PP
6095/* Remove JIT code registration and unregistration breakpoint(s). */
6096
6097void
6098remove_jit_event_breakpoints (void)
6099{
6100 struct breakpoint *b, *b_tmp;
6101
6102 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6103 if (b->type == bp_jit_event
6104 && b->loc->pspace == current_program_space)
6105 delete_breakpoint (b);
6106}
6107
cae688ec
JJ
6108void
6109remove_solib_event_breakpoints (void)
6110{
35df4500 6111 struct breakpoint *b, *b_tmp;
cae688ec 6112
35df4500 6113 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
6114 if (b->type == bp_shlib_event
6115 && b->loc->pspace == current_program_space)
cae688ec
JJ
6116 delete_breakpoint (b);
6117}
6118
6119struct breakpoint *
a6d9a66e 6120create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
cae688ec
JJ
6121{
6122 struct breakpoint *b;
6123
a6d9a66e 6124 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event);
b60e7edf 6125 update_global_location_list_nothrow (1);
cae688ec
JJ
6126 return b;
6127}
6128
6129/* Disable any breakpoints that are on code in shared libraries. Only
6130 apply to enabled breakpoints, disabled ones can just stay disabled. */
6131
6132void
cb851954 6133disable_breakpoints_in_shlibs (void)
cae688ec 6134{
876fa593 6135 struct bp_location *loc, **locp_tmp;
cae688ec 6136
876fa593 6137 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 6138 {
2bdf28a0 6139 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 6140 struct breakpoint *b = loc->owner;
2bdf28a0 6141
4a64f543
MS
6142 /* We apply the check to all breakpoints, including disabled for
6143 those with loc->duplicate set. This is so that when breakpoint
6144 becomes enabled, or the duplicate is removed, gdb will try to
6145 insert all breakpoints. If we don't set shlib_disabled here,
6146 we'll try to insert those breakpoints and fail. */
1042e4c0 6147 if (((b->type == bp_breakpoint)
508ccb1f 6148 || (b->type == bp_jit_event)
1042e4c0 6149 || (b->type == bp_hardware_breakpoint)
d77f58be 6150 || (is_tracepoint (b)))
6c95b8df 6151 && loc->pspace == current_program_space
0d381245 6152 && !loc->shlib_disabled
a77053c2 6153#ifdef PC_SOLIB
0d381245 6154 && PC_SOLIB (loc->address)
a77053c2 6155#else
6c95b8df 6156 && solib_name_from_address (loc->pspace, loc->address)
a77053c2
MK
6157#endif
6158 )
0d381245
VP
6159 {
6160 loc->shlib_disabled = 1;
6161 }
cae688ec
JJ
6162 }
6163}
6164
4a64f543
MS
6165/* Disable any breakpoints that are in in an unloaded shared library.
6166 Only apply to enabled breakpoints, disabled ones can just stay
6167 disabled. */
84acb35a 6168
75149521 6169static void
84acb35a
JJ
6170disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
6171{
876fa593 6172 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
6173 int disabled_shlib_breaks = 0;
6174
c86cf029
VP
6175 /* SunOS a.out shared libraries are always mapped, so do not
6176 disable breakpoints; they will only be reported as unloaded
6177 through clear_solib when GDB discards its shared library
6178 list. See clear_solib for more information. */
6179 if (exec_bfd != NULL
6180 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
6181 return;
6182
876fa593 6183 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 6184 {
2bdf28a0 6185 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 6186 struct breakpoint *b = loc->owner;
cc59ec59 6187
0d381245
VP
6188 if ((loc->loc_type == bp_loc_hardware_breakpoint
6189 || loc->loc_type == bp_loc_software_breakpoint)
6c95b8df 6190 && solib->pspace == loc->pspace
e2dd7057 6191 && !loc->shlib_disabled
508ccb1f
TT
6192 && (b->type == bp_breakpoint
6193 || b->type == bp_jit_event
6194 || b->type == bp_hardware_breakpoint)
e2dd7057 6195 && solib_contains_address_p (solib, loc->address))
84acb35a 6196 {
e2dd7057
PP
6197 loc->shlib_disabled = 1;
6198 /* At this point, we cannot rely on remove_breakpoint
6199 succeeding so we must mark the breakpoint as not inserted
6200 to prevent future errors occurring in remove_breakpoints. */
6201 loc->inserted = 0;
6202 if (!disabled_shlib_breaks)
6203 {
6204 target_terminal_ours_for_output ();
3e43a32a
MS
6205 warning (_("Temporarily disabling breakpoints "
6206 "for unloaded shared library \"%s\""),
e2dd7057 6207 solib->so_name);
84acb35a 6208 }
e2dd7057 6209 disabled_shlib_breaks = 1;
84acb35a
JJ
6210 }
6211 }
84acb35a
JJ
6212}
6213
ce78b96d
JB
6214/* FORK & VFORK catchpoints. */
6215
4a64f543
MS
6216/* Implement the "insert" breakpoint_ops method for fork
6217 catchpoints. */
ce78b96d 6218
77b06cd7
TJB
6219static int
6220insert_catch_fork (struct bp_location *bl)
ce78b96d 6221{
77b06cd7 6222 return target_insert_fork_catchpoint (PIDGET (inferior_ptid));
ce78b96d
JB
6223}
6224
4a64f543
MS
6225/* Implement the "remove" breakpoint_ops method for fork
6226 catchpoints. */
ce78b96d
JB
6227
6228static int
77b06cd7 6229remove_catch_fork (struct bp_location *bl)
ce78b96d
JB
6230{
6231 return target_remove_fork_catchpoint (PIDGET (inferior_ptid));
6232}
6233
6234/* Implement the "breakpoint_hit" breakpoint_ops method for fork
6235 catchpoints. */
6236
6237static int
f1310107
TJB
6238breakpoint_hit_catch_fork (const struct bp_location *bl,
6239 struct address_space *aspace, CORE_ADDR bp_addr)
ce78b96d 6240{
f1310107 6241 return inferior_has_forked (inferior_ptid, &bl->owner->forked_inferior_pid);
ce78b96d
JB
6242}
6243
4a64f543
MS
6244/* Implement the "print_it" breakpoint_ops method for fork
6245 catchpoints. */
ce78b96d
JB
6246
6247static enum print_stop_action
6248print_it_catch_fork (struct breakpoint *b)
6249{
6250 annotate_catchpoint (b->number);
6251 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
6252 b->number, ptid_get_pid (b->forked_inferior_pid));
6253 return PRINT_SRC_AND_LOC;
6254}
6255
4a64f543
MS
6256/* Implement the "print_one" breakpoint_ops method for fork
6257 catchpoints. */
ce78b96d
JB
6258
6259static void
a6d9a66e 6260print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 6261{
79a45b7d
TT
6262 struct value_print_options opts;
6263
6264 get_user_print_options (&opts);
6265
4a64f543
MS
6266 /* Field 4, the address, is omitted (which makes the columns not
6267 line up too nicely with the headers, but the effect is relatively
6268 readable). */
79a45b7d 6269 if (opts.addressprint)
ce78b96d
JB
6270 ui_out_field_skip (uiout, "addr");
6271 annotate_field (5);
6272 ui_out_text (uiout, "fork");
6273 if (!ptid_equal (b->forked_inferior_pid, null_ptid))
6274 {
6275 ui_out_text (uiout, ", process ");
6276 ui_out_field_int (uiout, "what",
6277 ptid_get_pid (b->forked_inferior_pid));
6278 ui_out_spaces (uiout, 1);
6279 }
6280}
6281
6282/* Implement the "print_mention" breakpoint_ops method for fork
6283 catchpoints. */
6284
6285static void
6286print_mention_catch_fork (struct breakpoint *b)
6287{
6288 printf_filtered (_("Catchpoint %d (fork)"), b->number);
6289}
6290
6149aea9
PA
6291/* Implement the "print_recreate" breakpoint_ops method for fork
6292 catchpoints. */
6293
6294static void
6295print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
6296{
6297 fprintf_unfiltered (fp, "catch fork");
6298}
6299
ce78b96d
JB
6300/* The breakpoint_ops structure to be used in fork catchpoints. */
6301
6302static struct breakpoint_ops catch_fork_breakpoint_ops =
6303{
6304 insert_catch_fork,
6305 remove_catch_fork,
6306 breakpoint_hit_catch_fork,
e09342b5 6307 NULL, /* resources_needed */
ce78b96d
JB
6308 print_it_catch_fork,
6309 print_one_catch_fork,
f1310107 6310 NULL, /* print_one_detail */
6149aea9
PA
6311 print_mention_catch_fork,
6312 print_recreate_catch_fork
ce78b96d
JB
6313};
6314
4a64f543
MS
6315/* Implement the "insert" breakpoint_ops method for vfork
6316 catchpoints. */
ce78b96d 6317
77b06cd7
TJB
6318static int
6319insert_catch_vfork (struct bp_location *bl)
ce78b96d 6320{
77b06cd7 6321 return target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
ce78b96d
JB
6322}
6323
4a64f543
MS
6324/* Implement the "remove" breakpoint_ops method for vfork
6325 catchpoints. */
ce78b96d
JB
6326
6327static int
77b06cd7 6328remove_catch_vfork (struct bp_location *bl)
ce78b96d
JB
6329{
6330 return target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
6331}
6332
6333/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
6334 catchpoints. */
6335
6336static int
f1310107
TJB
6337breakpoint_hit_catch_vfork (const struct bp_location *bl,
6338 struct address_space *aspace, CORE_ADDR bp_addr)
ce78b96d 6339{
f1310107 6340 return inferior_has_vforked (inferior_ptid, &bl->owner->forked_inferior_pid);
ce78b96d
JB
6341}
6342
4a64f543
MS
6343/* Implement the "print_it" breakpoint_ops method for vfork
6344 catchpoints. */
ce78b96d
JB
6345
6346static enum print_stop_action
6347print_it_catch_vfork (struct breakpoint *b)
6348{
6349 annotate_catchpoint (b->number);
6350 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
6351 b->number, ptid_get_pid (b->forked_inferior_pid));
6352 return PRINT_SRC_AND_LOC;
6353}
6354
4a64f543
MS
6355/* Implement the "print_one" breakpoint_ops method for vfork
6356 catchpoints. */
ce78b96d
JB
6357
6358static void
a6d9a66e 6359print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 6360{
79a45b7d
TT
6361 struct value_print_options opts;
6362
6363 get_user_print_options (&opts);
4a64f543
MS
6364 /* Field 4, the address, is omitted (which makes the columns not
6365 line up too nicely with the headers, but the effect is relatively
6366 readable). */
79a45b7d 6367 if (opts.addressprint)
ce78b96d
JB
6368 ui_out_field_skip (uiout, "addr");
6369 annotate_field (5);
6370 ui_out_text (uiout, "vfork");
6371 if (!ptid_equal (b->forked_inferior_pid, null_ptid))
6372 {
6373 ui_out_text (uiout, ", process ");
6374 ui_out_field_int (uiout, "what",
6375 ptid_get_pid (b->forked_inferior_pid));
6376 ui_out_spaces (uiout, 1);
6377 }
6378}
6379
6380/* Implement the "print_mention" breakpoint_ops method for vfork
6381 catchpoints. */
6382
6383static void
6384print_mention_catch_vfork (struct breakpoint *b)
6385{
6386 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
6387}
6388
6149aea9
PA
6389/* Implement the "print_recreate" breakpoint_ops method for vfork
6390 catchpoints. */
6391
6392static void
6393print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
6394{
6395 fprintf_unfiltered (fp, "catch vfork");
6396}
6397
ce78b96d
JB
6398/* The breakpoint_ops structure to be used in vfork catchpoints. */
6399
6400static struct breakpoint_ops catch_vfork_breakpoint_ops =
6401{
6402 insert_catch_vfork,
6403 remove_catch_vfork,
6404 breakpoint_hit_catch_vfork,
e09342b5 6405 NULL, /* resources_needed */
ce78b96d
JB
6406 print_it_catch_vfork,
6407 print_one_catch_vfork,
f1310107 6408 NULL, /* print_one_detail */
6149aea9
PA
6409 print_mention_catch_vfork,
6410 print_recreate_catch_vfork
ce78b96d
JB
6411};
6412
a96d9b2e
SDJ
6413/* Implement the "insert" breakpoint_ops method for syscall
6414 catchpoints. */
6415
77b06cd7
TJB
6416static int
6417insert_catch_syscall (struct bp_location *bl)
a96d9b2e
SDJ
6418{
6419 struct inferior *inf = current_inferior ();
6420
6421 ++inf->total_syscalls_count;
77b06cd7 6422 if (!bl->owner->syscalls_to_be_caught)
a96d9b2e
SDJ
6423 ++inf->any_syscall_count;
6424 else
6425 {
6426 int i, iter;
cc59ec59 6427
a96d9b2e 6428 for (i = 0;
77b06cd7 6429 VEC_iterate (int, bl->owner->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6430 i++)
6431 {
6432 int elem;
cc59ec59 6433
a96d9b2e
SDJ
6434 if (iter >= VEC_length (int, inf->syscalls_counts))
6435 {
6436 int old_size = VEC_length (int, inf->syscalls_counts);
3e43a32a
MS
6437 uintptr_t vec_addr_offset
6438 = old_size * ((uintptr_t) sizeof (int));
a96d9b2e
SDJ
6439 uintptr_t vec_addr;
6440 VEC_safe_grow (int, inf->syscalls_counts, iter + 1);
6441 vec_addr = (uintptr_t) VEC_address (int, inf->syscalls_counts) +
6442 vec_addr_offset;
6443 memset ((void *) vec_addr, 0,
6444 (iter + 1 - old_size) * sizeof (int));
6445 }
6446 elem = VEC_index (int, inf->syscalls_counts, iter);
6447 VEC_replace (int, inf->syscalls_counts, iter, ++elem);
6448 }
6449 }
6450
77b06cd7
TJB
6451 return target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6452 inf->total_syscalls_count != 0,
6453 inf->any_syscall_count,
6454 VEC_length (int, inf->syscalls_counts),
6455 VEC_address (int, inf->syscalls_counts));
a96d9b2e
SDJ
6456}
6457
6458/* Implement the "remove" breakpoint_ops method for syscall
6459 catchpoints. */
6460
6461static int
77b06cd7 6462remove_catch_syscall (struct bp_location *bl)
a96d9b2e
SDJ
6463{
6464 struct inferior *inf = current_inferior ();
6465
6466 --inf->total_syscalls_count;
77b06cd7 6467 if (!bl->owner->syscalls_to_be_caught)
a96d9b2e
SDJ
6468 --inf->any_syscall_count;
6469 else
6470 {
6471 int i, iter;
cc59ec59 6472
a96d9b2e 6473 for (i = 0;
77b06cd7 6474 VEC_iterate (int, bl->owner->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
6475 i++)
6476 {
6477 int elem;
6478 if (iter >= VEC_length (int, inf->syscalls_counts))
6479 /* Shouldn't happen. */
6480 continue;
6481 elem = VEC_index (int, inf->syscalls_counts, iter);
6482 VEC_replace (int, inf->syscalls_counts, iter, --elem);
6483 }
6484 }
6485
6486 return target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6487 inf->total_syscalls_count != 0,
6488 inf->any_syscall_count,
6489 VEC_length (int, inf->syscalls_counts),
3e43a32a
MS
6490 VEC_address (int,
6491 inf->syscalls_counts));
a96d9b2e
SDJ
6492}
6493
6494/* Implement the "breakpoint_hit" breakpoint_ops method for syscall
6495 catchpoints. */
6496
6497static int
f1310107
TJB
6498breakpoint_hit_catch_syscall (const struct bp_location *bl,
6499 struct address_space *aspace, CORE_ADDR bp_addr)
a96d9b2e 6500{
4a64f543
MS
6501 /* We must check if we are catching specific syscalls in this
6502 breakpoint. If we are, then we must guarantee that the called
6503 syscall is the same syscall we are catching. */
a96d9b2e 6504 int syscall_number = 0;
f1310107 6505 const struct breakpoint *b = bl->owner;
a96d9b2e
SDJ
6506
6507 if (!inferior_has_called_syscall (inferior_ptid, &syscall_number))
6508 return 0;
6509
6510 /* Now, checking if the syscall is the same. */
6511 if (b->syscalls_to_be_caught)
6512 {
6513 int i, iter;
cc59ec59 6514
a96d9b2e
SDJ
6515 for (i = 0;
6516 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6517 i++)
6518 if (syscall_number == iter)
6519 break;
6520 /* Not the same. */
6521 if (!iter)
6522 return 0;
6523 }
6524
6525 return 1;
6526}
6527
6528/* Implement the "print_it" breakpoint_ops method for syscall
6529 catchpoints. */
6530
6531static enum print_stop_action
6532print_it_catch_syscall (struct breakpoint *b)
6533{
6534 /* These are needed because we want to know in which state a
6535 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
6536 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
6537 must print "called syscall" or "returned from syscall". */
6538 ptid_t ptid;
6539 struct target_waitstatus last;
6540 struct syscall s;
6541 struct cleanup *old_chain;
6542 char *syscall_id;
6543
6544 get_last_target_status (&ptid, &last);
6545
6546 get_syscall_by_number (last.value.syscall_number, &s);
6547
6548 annotate_catchpoint (b->number);
6549
6550 if (s.name == NULL)
6551 syscall_id = xstrprintf ("%d", last.value.syscall_number);
6552 else
6553 syscall_id = xstrprintf ("'%s'", s.name);
6554
6555 old_chain = make_cleanup (xfree, syscall_id);
6556
6557 if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY)
6558 printf_filtered (_("\nCatchpoint %d (call to syscall %s), "),
6559 b->number, syscall_id);
6560 else if (last.kind == TARGET_WAITKIND_SYSCALL_RETURN)
6561 printf_filtered (_("\nCatchpoint %d (returned from syscall %s), "),
6562 b->number, syscall_id);
6563
6564 do_cleanups (old_chain);
6565
6566 return PRINT_SRC_AND_LOC;
6567}
6568
6569/* Implement the "print_one" breakpoint_ops method for syscall
6570 catchpoints. */
6571
6572static void
6573print_one_catch_syscall (struct breakpoint *b,
f1310107 6574 struct bp_location **last_loc)
a96d9b2e
SDJ
6575{
6576 struct value_print_options opts;
6577
6578 get_user_print_options (&opts);
4a64f543
MS
6579 /* Field 4, the address, is omitted (which makes the columns not
6580 line up too nicely with the headers, but the effect is relatively
6581 readable). */
a96d9b2e
SDJ
6582 if (opts.addressprint)
6583 ui_out_field_skip (uiout, "addr");
6584 annotate_field (5);
6585
6586 if (b->syscalls_to_be_caught
6587 && VEC_length (int, b->syscalls_to_be_caught) > 1)
6588 ui_out_text (uiout, "syscalls \"");
6589 else
6590 ui_out_text (uiout, "syscall \"");
6591
6592 if (b->syscalls_to_be_caught)
6593 {
6594 int i, iter;
6595 char *text = xstrprintf ("%s", "");
cc59ec59 6596
a96d9b2e
SDJ
6597 for (i = 0;
6598 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6599 i++)
6600 {
6601 char *x = text;
6602 struct syscall s;
6603 get_syscall_by_number (iter, &s);
6604
6605 if (s.name != NULL)
6606 text = xstrprintf ("%s%s, ", text, s.name);
6607 else
6608 text = xstrprintf ("%s%d, ", text, iter);
6609
6610 /* We have to xfree the last 'text' (now stored at 'x')
6611 because xstrprintf dinamically allocates new space for it
6612 on every call. */
6613 xfree (x);
6614 }
6615 /* Remove the last comma. */
6616 text[strlen (text) - 2] = '\0';
6617 ui_out_field_string (uiout, "what", text);
6618 }
6619 else
6620 ui_out_field_string (uiout, "what", "<any syscall>");
6621 ui_out_text (uiout, "\" ");
6622}
6623
6624/* Implement the "print_mention" breakpoint_ops method for syscall
6625 catchpoints. */
6626
6627static void
6628print_mention_catch_syscall (struct breakpoint *b)
6629{
6630 if (b->syscalls_to_be_caught)
6631 {
6632 int i, iter;
6633
6634 if (VEC_length (int, b->syscalls_to_be_caught) > 1)
6635 printf_filtered (_("Catchpoint %d (syscalls"), b->number);
6636 else
6637 printf_filtered (_("Catchpoint %d (syscall"), b->number);
6638
6639 for (i = 0;
6640 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6641 i++)
6642 {
6643 struct syscall s;
6644 get_syscall_by_number (iter, &s);
6645
6646 if (s.name)
6647 printf_filtered (" '%s' [%d]", s.name, s.number);
6648 else
6649 printf_filtered (" %d", s.number);
6650 }
6651 printf_filtered (")");
6652 }
6653 else
6654 printf_filtered (_("Catchpoint %d (any syscall)"),
6655 b->number);
6656}
6657
6149aea9
PA
6658/* Implement the "print_recreate" breakpoint_ops method for syscall
6659 catchpoints. */
6660
6661static void
6662print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp)
6663{
6664 fprintf_unfiltered (fp, "catch syscall");
6665
6666 if (b->syscalls_to_be_caught)
6667 {
6668 int i, iter;
6669
6670 for (i = 0;
6671 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6672 i++)
6673 {
6674 struct syscall s;
6675
6676 get_syscall_by_number (iter, &s);
6677 if (s.name)
6678 fprintf_unfiltered (fp, " %s", s.name);
6679 else
6680 fprintf_unfiltered (fp, " %d", s.number);
6681 }
6682 }
6683}
6684
a96d9b2e
SDJ
6685/* The breakpoint_ops structure to be used in syscall catchpoints. */
6686
6687static struct breakpoint_ops catch_syscall_breakpoint_ops =
6688{
6689 insert_catch_syscall,
6690 remove_catch_syscall,
6691 breakpoint_hit_catch_syscall,
e09342b5 6692 NULL, /* resources_needed */
a96d9b2e
SDJ
6693 print_it_catch_syscall,
6694 print_one_catch_syscall,
f1310107 6695 NULL, /* print_one_detail */
6149aea9
PA
6696 print_mention_catch_syscall,
6697 print_recreate_catch_syscall
a96d9b2e
SDJ
6698};
6699
6700/* Returns non-zero if 'b' is a syscall catchpoint. */
6701
6702static int
6703syscall_catchpoint_p (struct breakpoint *b)
6704{
6705 return (b->ops == &catch_syscall_breakpoint_ops);
6706}
6707
6708/* Create a new breakpoint of the bp_catchpoint kind and return it,
6709 but does NOT mention it nor update the global location list.
6710 This is useful if you need to fill more fields in the
6711 struct breakpoint before calling mention.
ce78b96d
JB
6712
6713 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6714 If COND_STRING is not NULL, then store it in the breakpoint.
6715 OPS, if not NULL, is the breakpoint_ops structure associated
6716 to the catchpoint. */
6717
6718static struct breakpoint *
a96d9b2e
SDJ
6719create_catchpoint_without_mention (struct gdbarch *gdbarch, int tempflag,
6720 char *cond_string,
6721 struct breakpoint_ops *ops)
c906108c 6722{
c5aa993b
JM
6723 struct symtab_and_line sal;
6724 struct breakpoint *b;
c5aa993b 6725
fe39c653 6726 init_sal (&sal);
6c95b8df 6727 sal.pspace = current_program_space;
c5aa993b 6728
a6d9a66e 6729 b = set_raw_breakpoint (gdbarch, sal, bp_catchpoint);
c906108c
SS
6730 set_breakpoint_count (breakpoint_count + 1);
6731 b->number = breakpoint_count;
ce78b96d 6732
1b36a34b 6733 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
ce78b96d 6734 b->thread = -1;
c906108c 6735 b->addr_string = NULL;
b5de0fa7
EZ
6736 b->enable_state = bp_enabled;
6737 b->disposition = tempflag ? disp_del : disp_donttouch;
ce78b96d 6738 b->ops = ops;
c5aa993b 6739
a96d9b2e
SDJ
6740 return b;
6741}
6742
6743/* Create a new breakpoint of the bp_catchpoint kind and return it.
6744
6745 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6746 If COND_STRING is not NULL, then store it in the breakpoint.
6747 OPS, if not NULL, is the breakpoint_ops structure associated
6748 to the catchpoint. */
6749
6750static struct breakpoint *
6751create_catchpoint (struct gdbarch *gdbarch, int tempflag,
6752 char *cond_string, struct breakpoint_ops *ops)
6753{
6754 struct breakpoint *b =
6755 create_catchpoint_without_mention (gdbarch, tempflag, cond_string, ops);
6756
c906108c 6757 mention (b);
ce78b96d 6758 update_global_location_list (1);
c906108c 6759
ce78b96d 6760 return b;
c906108c 6761}
c5aa993b 6762
9b70b993 6763static void
a6d9a66e
UW
6764create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
6765 int tempflag, char *cond_string,
ce78b96d 6766 struct breakpoint_ops *ops)
c906108c 6767{
a6d9a66e
UW
6768 struct breakpoint *b
6769 = create_catchpoint (gdbarch, tempflag, cond_string, ops);
ce78b96d
JB
6770
6771 /* FIXME: We should put this information in a breakpoint private data
6772 area. */
6773 b->forked_inferior_pid = null_ptid;
c906108c
SS
6774}
6775
fe798b75
JB
6776/* Exec catchpoints. */
6777
77b06cd7
TJB
6778static int
6779insert_catch_exec (struct bp_location *bl)
c906108c 6780{
77b06cd7 6781 return target_insert_exec_catchpoint (PIDGET (inferior_ptid));
fe798b75 6782}
c906108c 6783
fe798b75 6784static int
77b06cd7 6785remove_catch_exec (struct bp_location *bl)
fe798b75
JB
6786{
6787 return target_remove_exec_catchpoint (PIDGET (inferior_ptid));
6788}
c906108c 6789
fe798b75 6790static int
f1310107
TJB
6791breakpoint_hit_catch_exec (const struct bp_location *bl,
6792 struct address_space *aspace, CORE_ADDR bp_addr)
fe798b75 6793{
f1310107 6794 return inferior_has_execd (inferior_ptid, &bl->owner->exec_pathname);
fe798b75 6795}
c906108c 6796
fe798b75
JB
6797static enum print_stop_action
6798print_it_catch_exec (struct breakpoint *b)
6799{
6800 annotate_catchpoint (b->number);
6801 printf_filtered (_("\nCatchpoint %d (exec'd %s), "), b->number,
6802 b->exec_pathname);
6803 return PRINT_SRC_AND_LOC;
c906108c
SS
6804}
6805
fe798b75 6806static void
a6d9a66e 6807print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75
JB
6808{
6809 struct value_print_options opts;
6810
6811 get_user_print_options (&opts);
6812
6813 /* Field 4, the address, is omitted (which makes the columns
6814 not line up too nicely with the headers, but the effect
6815 is relatively readable). */
6816 if (opts.addressprint)
6817 ui_out_field_skip (uiout, "addr");
6818 annotate_field (5);
6819 ui_out_text (uiout, "exec");
6820 if (b->exec_pathname != NULL)
6821 {
6822 ui_out_text (uiout, ", program \"");
6823 ui_out_field_string (uiout, "what", b->exec_pathname);
6824 ui_out_text (uiout, "\" ");
6825 }
6826}
6827
6828static void
6829print_mention_catch_exec (struct breakpoint *b)
6830{
6831 printf_filtered (_("Catchpoint %d (exec)"), b->number);
6832}
6833
6149aea9
PA
6834/* Implement the "print_recreate" breakpoint_ops method for exec
6835 catchpoints. */
6836
6837static void
6838print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
6839{
6840 fprintf_unfiltered (fp, "catch exec");
6841}
6842
fe798b75
JB
6843static struct breakpoint_ops catch_exec_breakpoint_ops =
6844{
6845 insert_catch_exec,
6846 remove_catch_exec,
6847 breakpoint_hit_catch_exec,
e09342b5 6848 NULL, /* resources_needed */
fe798b75
JB
6849 print_it_catch_exec,
6850 print_one_catch_exec,
f1310107 6851 NULL, /* print_one_detail */
6149aea9
PA
6852 print_mention_catch_exec,
6853 print_recreate_catch_exec
fe798b75
JB
6854};
6855
a96d9b2e
SDJ
6856static void
6857create_syscall_event_catchpoint (int tempflag, VEC(int) *filter,
6858 struct breakpoint_ops *ops)
6859{
6860 struct gdbarch *gdbarch = get_current_arch ();
6861 struct breakpoint *b =
6862 create_catchpoint_without_mention (gdbarch, tempflag, NULL, ops);
6863
6864 b->syscalls_to_be_caught = filter;
6865
6866 /* Now, we have to mention the breakpoint and update the global
6867 location list. */
6868 mention (b);
6869 update_global_location_list (1);
6870}
6871
c906108c 6872static int
fba45db2 6873hw_breakpoint_used_count (void)
c906108c 6874{
c906108c 6875 int i = 0;
f1310107
TJB
6876 struct breakpoint *b;
6877 struct bp_location *bl;
c906108c
SS
6878
6879 ALL_BREAKPOINTS (b)
c5aa993b 6880 {
d6b74ac4 6881 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
6882 for (bl = b->loc; bl; bl = bl->next)
6883 {
6884 /* Special types of hardware breakpoints may use more than
6885 one register. */
6886 if (b->ops && b->ops->resources_needed)
6887 i += b->ops->resources_needed (bl);
6888 else
6889 i++;
6890 }
c5aa993b 6891 }
c906108c
SS
6892
6893 return i;
6894}
6895
6896static int
fba45db2 6897hw_watchpoint_used_count (enum bptype type, int *other_type_used)
c906108c 6898{
c906108c 6899 int i = 0;
e09342b5
TJB
6900 struct breakpoint *b;
6901 struct bp_location *bl;
c906108c
SS
6902
6903 *other_type_used = 0;
6904 ALL_BREAKPOINTS (b)
e09342b5
TJB
6905 {
6906 if (!breakpoint_enabled (b))
6907 continue;
6908
c5aa993b 6909 if (b->type == type)
e09342b5
TJB
6910 for (bl = b->loc; bl; bl = bl->next)
6911 {
6912 /* Special types of hardware watchpoints may use more than
6913 one register. */
6914 if (b->ops && b->ops->resources_needed)
6915 i += b->ops->resources_needed (bl);
6916 else
6917 i++;
6918 }
cc60f2e3 6919 else if (is_hardware_watchpoint (b))
c5aa993b 6920 *other_type_used = 1;
e09342b5
TJB
6921 }
6922
c906108c
SS
6923 return i;
6924}
6925
c906108c 6926void
fba45db2 6927disable_watchpoints_before_interactive_call_start (void)
c906108c 6928{
c5aa993b 6929 struct breakpoint *b;
c906108c
SS
6930
6931 ALL_BREAKPOINTS (b)
c5aa993b 6932 {
cc60f2e3 6933 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 6934 {
b5de0fa7 6935 b->enable_state = bp_call_disabled;
b60e7edf 6936 update_global_location_list (0);
c5aa993b
JM
6937 }
6938 }
c906108c
SS
6939}
6940
6941void
fba45db2 6942enable_watchpoints_after_interactive_call_stop (void)
c906108c 6943{
c5aa993b 6944 struct breakpoint *b;
c906108c
SS
6945
6946 ALL_BREAKPOINTS (b)
c5aa993b 6947 {
cc60f2e3 6948 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 6949 {
b5de0fa7 6950 b->enable_state = bp_enabled;
b60e7edf 6951 update_global_location_list (1);
c5aa993b
JM
6952 }
6953 }
c906108c
SS
6954}
6955
8bea4e01
UW
6956void
6957disable_breakpoints_before_startup (void)
6958{
6959 struct breakpoint *b;
6960 int found = 0;
6961
6962 ALL_BREAKPOINTS (b)
6963 {
6c95b8df
PA
6964 if (b->pspace != current_program_space)
6965 continue;
6966
8bea4e01
UW
6967 if ((b->type == bp_breakpoint
6968 || b->type == bp_hardware_breakpoint)
6969 && breakpoint_enabled (b))
6970 {
6971 b->enable_state = bp_startup_disabled;
6972 found = 1;
6973 }
6974 }
6975
6976 if (found)
6977 update_global_location_list (0);
6978
6c95b8df 6979 current_program_space->executing_startup = 1;
8bea4e01
UW
6980}
6981
6982void
6983enable_breakpoints_after_startup (void)
6984{
6985 struct breakpoint *b;
6986 int found = 0;
6987
6c95b8df 6988 current_program_space->executing_startup = 0;
8bea4e01
UW
6989
6990 ALL_BREAKPOINTS (b)
6991 {
6c95b8df
PA
6992 if (b->pspace != current_program_space)
6993 continue;
6994
8bea4e01
UW
6995 if ((b->type == bp_breakpoint
6996 || b->type == bp_hardware_breakpoint)
6997 && b->enable_state == bp_startup_disabled)
6998 {
6999 b->enable_state = bp_enabled;
7000 found = 1;
7001 }
7002 }
7003
7004 if (found)
7005 breakpoint_re_set ();
7006}
7007
c906108c
SS
7008
7009/* Set a breakpoint that will evaporate an end of command
7010 at address specified by SAL.
7011 Restrict it to frame FRAME if FRAME is nonzero. */
7012
7013struct breakpoint *
a6d9a66e
UW
7014set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
7015 struct frame_id frame_id, enum bptype type)
c906108c 7016{
52f0bd74 7017 struct breakpoint *b;
edb3359d
DJ
7018
7019 /* If FRAME_ID is valid, it should be a real frame, not an inlined
7020 one. */
7021 gdb_assert (!frame_id_inlined_p (frame_id));
7022
a6d9a66e 7023 b = set_raw_breakpoint (gdbarch, sal, type);
b5de0fa7
EZ
7024 b->enable_state = bp_enabled;
7025 b->disposition = disp_donttouch;
818dd999 7026 b->frame_id = frame_id;
c906108c 7027
4a64f543
MS
7028 /* If we're debugging a multi-threaded program, then we want
7029 momentary breakpoints to be active in only a single thread of
7030 control. */
39f77062
KB
7031 if (in_thread_list (inferior_ptid))
7032 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 7033
b60e7edf 7034 update_global_location_list_nothrow (1);
74960c60 7035
c906108c
SS
7036 return b;
7037}
611c83ae 7038
e58b0e63
PA
7039/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
7040 ORIG is NULL. */
7041
7042struct breakpoint *
7043clone_momentary_breakpoint (struct breakpoint *orig)
7044{
7045 struct breakpoint *copy;
7046
7047 /* If there's nothing to clone, then return nothing. */
7048 if (orig == NULL)
7049 return NULL;
7050
a6d9a66e 7051 copy = set_raw_breakpoint_without_location (orig->gdbarch, orig->type);
e58b0e63 7052 copy->loc = allocate_bp_location (copy);
0e30163f 7053 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 7054
a6d9a66e 7055 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
7056 copy->loc->requested_address = orig->loc->requested_address;
7057 copy->loc->address = orig->loc->address;
7058 copy->loc->section = orig->loc->section;
6c95b8df 7059 copy->loc->pspace = orig->loc->pspace;
e58b0e63
PA
7060
7061 if (orig->source_file == NULL)
7062 copy->source_file = NULL;
7063 else
7064 copy->source_file = xstrdup (orig->source_file);
7065
7066 copy->line_number = orig->line_number;
7067 copy->frame_id = orig->frame_id;
7068 copy->thread = orig->thread;
6c95b8df 7069 copy->pspace = orig->pspace;
e58b0e63
PA
7070
7071 copy->enable_state = bp_enabled;
7072 copy->disposition = disp_donttouch;
7073 copy->number = internal_breakpoint_number--;
7074
7075 update_global_location_list_nothrow (0);
7076 return copy;
7077}
7078
611c83ae 7079struct breakpoint *
a6d9a66e
UW
7080set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
7081 enum bptype type)
611c83ae
PA
7082{
7083 struct symtab_and_line sal;
7084
7085 sal = find_pc_line (pc, 0);
7086 sal.pc = pc;
7087 sal.section = find_pc_overlay (pc);
7088 sal.explicit_pc = 1;
7089
a6d9a66e 7090 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 7091}
c906108c 7092\f
c5aa993b 7093
c906108c
SS
7094/* Tell the user we have just set a breakpoint B. */
7095
7096static void
fba45db2 7097mention (struct breakpoint *b)
c906108c
SS
7098{
7099 int say_where = 0;
fa8a61dc 7100 struct cleanup *ui_out_chain;
79a45b7d
TT
7101 struct value_print_options opts;
7102
7103 get_user_print_options (&opts);
8b93c638 7104
9a4105ab
AC
7105 /* FIXME: This is misplaced; mention() is called by things (like
7106 hitting a watchpoint) other than breakpoint creation. It should
7107 be possible to clean this up and at the same time replace the
7f4b89d1 7108 random calls to breakpoint_changed with this hook. */
383f836e 7109 observer_notify_breakpoint_created (b->number);
c906108c 7110
3086aeae
DJ
7111 if (b->ops != NULL && b->ops->print_mention != NULL)
7112 b->ops->print_mention (b);
7113 else
7114 switch (b->type)
7115 {
7116 case bp_none:
3e43a32a
MS
7117 printf_filtered (_("(apparently deleted?) Eventpoint %d: "),
7118 b->number);
3086aeae
DJ
7119 break;
7120 case bp_watchpoint:
7121 ui_out_text (uiout, "Watchpoint ");
7122 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
7123 ui_out_field_int (uiout, "number", b->number);
7124 ui_out_text (uiout, ": ");
fa8a61dc 7125 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7126 do_cleanups (ui_out_chain);
7127 break;
7128 case bp_hardware_watchpoint:
7129 ui_out_text (uiout, "Hardware watchpoint ");
7130 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
7131 ui_out_field_int (uiout, "number", b->number);
7132 ui_out_text (uiout, ": ");
fa8a61dc 7133 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7134 do_cleanups (ui_out_chain);
7135 break;
7136 case bp_read_watchpoint:
7137 ui_out_text (uiout, "Hardware read watchpoint ");
7138 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
7139 ui_out_field_int (uiout, "number", b->number);
7140 ui_out_text (uiout, ": ");
fa8a61dc 7141 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7142 do_cleanups (ui_out_chain);
7143 break;
7144 case bp_access_watchpoint:
7145 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
7146 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
7147 ui_out_field_int (uiout, "number", b->number);
7148 ui_out_text (uiout, ": ");
fa8a61dc 7149 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
7150 do_cleanups (ui_out_chain);
7151 break;
7152 case bp_breakpoint:
0e30163f 7153 case bp_gnu_ifunc_resolver:
3086aeae
DJ
7154 if (ui_out_is_mi_like_p (uiout))
7155 {
7156 say_where = 0;
7157 break;
7158 }
2cec12e5
AR
7159 if (b->disposition == disp_del)
7160 printf_filtered (_("Temporary breakpoint"));
7161 else
7162 printf_filtered (_("Breakpoint"));
7163 printf_filtered (_(" %d"), b->number);
0e30163f
JK
7164 if (b->type == bp_gnu_ifunc_resolver)
7165 printf_filtered (_(" at gnu-indirect-function resolver"));
3086aeae
DJ
7166 say_where = 1;
7167 break;
7168 case bp_hardware_breakpoint:
7169 if (ui_out_is_mi_like_p (uiout))
7170 {
7171 say_where = 0;
7172 break;
7173 }
a3f17187 7174 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
3086aeae
DJ
7175 say_where = 1;
7176 break;
1042e4c0
SS
7177 case bp_tracepoint:
7178 if (ui_out_is_mi_like_p (uiout))
7179 {
7180 say_where = 0;
7181 break;
7182 }
7183 printf_filtered (_("Tracepoint"));
7184 printf_filtered (_(" %d"), b->number);
7185 say_where = 1;
7186 break;
7a697b8d
SS
7187 case bp_fast_tracepoint:
7188 if (ui_out_is_mi_like_p (uiout))
7189 {
7190 say_where = 0;
7191 break;
7192 }
7193 printf_filtered (_("Fast tracepoint"));
7194 printf_filtered (_(" %d"), b->number);
7195 say_where = 1;
7196 break;
0fb4aa4b
PA
7197 case bp_static_tracepoint:
7198 if (ui_out_is_mi_like_p (uiout))
7199 {
7200 say_where = 0;
7201 break;
7202 }
7203 printf_filtered (_("Static tracepoint"));
7204 printf_filtered (_(" %d"), b->number);
7205 say_where = 1;
7206 break;
3086aeae
DJ
7207
7208 case bp_until:
7209 case bp_finish:
7210 case bp_longjmp:
7211 case bp_longjmp_resume:
186c406b
TT
7212 case bp_exception:
7213 case bp_exception_resume:
3086aeae 7214 case bp_step_resume:
3086aeae 7215 case bp_call_dummy:
aa7d318d 7216 case bp_std_terminate:
3086aeae
DJ
7217 case bp_watchpoint_scope:
7218 case bp_shlib_event:
7219 case bp_thread_event:
7220 case bp_overlay_event:
4efc6507 7221 case bp_jit_event:
0fd8e87f 7222 case bp_longjmp_master:
aa7d318d 7223 case bp_std_terminate_master:
186c406b 7224 case bp_exception_master:
0e30163f 7225 case bp_gnu_ifunc_resolver_return:
3086aeae
DJ
7226 break;
7227 }
c906108c 7228
c906108c
SS
7229 if (say_where)
7230 {
a3f17187
AC
7231 /* i18n: cagney/2005-02-11: Below needs to be merged into a
7232 single string. */
0d381245 7233 if (b->loc == NULL)
c906108c 7234 {
a3f17187 7235 printf_filtered (_(" (%s) pending."), b->addr_string);
0101ce28
JJ
7236 }
7237 else
7238 {
79a45b7d 7239 if (opts.addressprint || b->source_file == NULL)
0101ce28
JJ
7240 {
7241 printf_filtered (" at ");
5af949e3
UW
7242 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
7243 gdb_stdout);
0101ce28
JJ
7244 }
7245 if (b->source_file)
7246 printf_filtered (": file %s, line %d.",
7247 b->source_file, b->line_number);
0d381245
VP
7248
7249 if (b->loc->next)
7250 {
7251 struct bp_location *loc = b->loc;
7252 int n = 0;
7253 for (; loc; loc = loc->next)
7254 ++n;
7255 printf_filtered (" (%d locations)", n);
7256 }
7257
c906108c 7258 }
c906108c 7259 }
9dc5e2a9 7260 if (ui_out_is_mi_like_p (uiout))
fb40c209 7261 return;
c906108c
SS
7262 printf_filtered ("\n");
7263}
c906108c 7264\f
c5aa993b 7265
0d381245 7266static struct bp_location *
39d61571 7267add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
7268 const struct symtab_and_line *sal)
7269{
7270 struct bp_location *loc, **tmp;
7271
39d61571 7272 loc = allocate_bp_location (b);
0d381245
VP
7273 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
7274 ;
7275 *tmp = loc;
a6d9a66e
UW
7276 loc->gdbarch = get_sal_arch (*sal);
7277 if (!loc->gdbarch)
7278 loc->gdbarch = b->gdbarch;
0d381245 7279 loc->requested_address = sal->pc;
a6d9a66e
UW
7280 loc->address = adjust_breakpoint_address (loc->gdbarch,
7281 loc->requested_address, b->type);
6c95b8df
PA
7282 loc->pspace = sal->pspace;
7283 gdb_assert (loc->pspace != NULL);
0d381245
VP
7284 loc->section = sal->section;
7285
0e30163f
JK
7286 set_breakpoint_location_function (loc,
7287 sal->explicit_pc || sal->explicit_line);
0d381245
VP
7288 return loc;
7289}
514f746b
AR
7290\f
7291
7292/* Return 1 if LOC is pointing to a permanent breakpoint,
7293 return 0 otherwise. */
7294
7295static int
7296bp_loc_is_permanent (struct bp_location *loc)
7297{
7298 int len;
7299 CORE_ADDR addr;
7300 const gdb_byte *brk;
7301 gdb_byte *target_mem;
939c61fa
JK
7302 struct cleanup *cleanup;
7303 int retval = 0;
514f746b
AR
7304
7305 gdb_assert (loc != NULL);
7306
7307 addr = loc->address;
a6d9a66e 7308 brk = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len);
514f746b 7309
939c61fa
JK
7310 /* Software breakpoints unsupported? */
7311 if (brk == NULL)
7312 return 0;
7313
514f746b
AR
7314 target_mem = alloca (len);
7315
939c61fa
JK
7316 /* Enable the automatic memory restoration from breakpoints while
7317 we read the memory. Otherwise we could say about our temporary
7318 breakpoints they are permanent. */
6c95b8df
PA
7319 cleanup = save_current_space_and_thread ();
7320
7321 switch_to_program_space_and_thread (loc->pspace);
7322 make_show_memory_breakpoints_cleanup (0);
939c61fa 7323
514f746b
AR
7324 if (target_read_memory (loc->address, target_mem, len) == 0
7325 && memcmp (target_mem, brk, len) == 0)
939c61fa 7326 retval = 1;
514f746b 7327
939c61fa
JK
7328 do_cleanups (cleanup);
7329
7330 return retval;
514f746b
AR
7331}
7332
7333
c3f6f71d 7334
018d34a4
VP
7335/* Create a breakpoint with SAL as location. Use ADDR_STRING
7336 as textual description of the location, and COND_STRING
db107f19 7337 as condition expression. */
018d34a4
VP
7338
7339static void
8cdf0e15
VP
7340create_breakpoint_sal (struct gdbarch *gdbarch,
7341 struct symtabs_and_lines sals, char *addr_string,
7342 char *cond_string,
7343 enum bptype type, enum bpdisp disposition,
7344 int thread, int task, int ignore_count,
84f4c1fe 7345 struct breakpoint_ops *ops, int from_tty,
56435ebe 7346 int enabled, int internal, int display_canonical)
018d34a4 7347{
0d381245
VP
7348 struct breakpoint *b = NULL;
7349 int i;
018d34a4
VP
7350
7351 if (type == bp_hardware_breakpoint)
7352 {
7353 int i = hw_breakpoint_used_count ();
7354 int target_resources_ok =
d92524f1 7355 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
7356 i + 1, 0);
7357 if (target_resources_ok == 0)
7358 error (_("No hardware breakpoint support in the target."));
7359 else if (target_resources_ok < 0)
7360 error (_("Hardware breakpoints used exceeds limit."));
7361 }
7362
6c95b8df
PA
7363 gdb_assert (sals.nelts > 0);
7364
0d381245
VP
7365 for (i = 0; i < sals.nelts; ++i)
7366 {
7367 struct symtab_and_line sal = sals.sals[i];
7368 struct bp_location *loc;
7369
7370 if (from_tty)
5af949e3
UW
7371 {
7372 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
7373 if (!loc_gdbarch)
7374 loc_gdbarch = gdbarch;
7375
7376 describe_other_breakpoints (loc_gdbarch,
6c95b8df 7377 sal.pspace, sal.pc, sal.section, thread);
5af949e3 7378 }
0d381245
VP
7379
7380 if (i == 0)
7381 {
a6d9a66e 7382 b = set_raw_breakpoint (gdbarch, sal, type);
84f4c1fe 7383 set_breakpoint_number (internal, b);
0d381245 7384 b->thread = thread;
4a306c9a 7385 b->task = task;
018d34a4 7386
0d381245
VP
7387 b->cond_string = cond_string;
7388 b->ignore_count = ignore_count;
41447f92 7389 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 7390 b->disposition = disposition;
6c95b8df
PA
7391 b->pspace = sals.sals[0].pspace;
7392
0fb4aa4b
PA
7393 if (type == bp_static_tracepoint)
7394 {
7395 struct static_tracepoint_marker marker;
7396
7397 if (is_marker_spec (addr_string))
7398 {
7399 /* We already know the marker exists, otherwise, we
7400 wouldn't see a sal for it. */
7401 char *p = &addr_string[3];
7402 char *endp;
7403 char *marker_str;
7404 int i;
7405
e9cafbcc 7406 p = skip_spaces (p);
0fb4aa4b 7407
e9cafbcc 7408 endp = skip_to_space (p);
0fb4aa4b
PA
7409
7410 marker_str = savestring (p, endp - p);
7411 b->static_trace_marker_id = marker_str;
7412
3e43a32a
MS
7413 printf_filtered (_("Probed static tracepoint "
7414 "marker \"%s\"\n"),
0fb4aa4b
PA
7415 b->static_trace_marker_id);
7416 }
7417 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
7418 {
7419 b->static_trace_marker_id = xstrdup (marker.str_id);
7420 release_static_tracepoint_marker (&marker);
7421
3e43a32a
MS
7422 printf_filtered (_("Probed static tracepoint "
7423 "marker \"%s\"\n"),
0fb4aa4b
PA
7424 b->static_trace_marker_id);
7425 }
7426 else
3e43a32a
MS
7427 warning (_("Couldn't determine the static "
7428 "tracepoint marker to probe"));
0fb4aa4b
PA
7429 }
7430
6c95b8df 7431 if (enabled && b->pspace->executing_startup
8bea4e01
UW
7432 && (b->type == bp_breakpoint
7433 || b->type == bp_hardware_breakpoint))
7434 b->enable_state = bp_startup_disabled;
7435
0d381245
VP
7436 loc = b->loc;
7437 }
7438 else
018d34a4 7439 {
39d61571 7440 loc = add_location_to_breakpoint (b, &sal);
0d381245
VP
7441 }
7442
514f746b
AR
7443 if (bp_loc_is_permanent (loc))
7444 make_breakpoint_permanent (b);
7445
0d381245
VP
7446 if (b->cond_string)
7447 {
7448 char *arg = b->cond_string;
d32a6982 7449 loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
0d381245 7450 if (*arg)
db107f19 7451 error (_("Garbage %s follows condition"), arg);
018d34a4 7452 }
0d381245 7453 }
018d34a4 7454
56435ebe 7455 b->display_canonical = display_canonical;
018d34a4
VP
7456 if (addr_string)
7457 b->addr_string = addr_string;
7458 else
7459 /* addr_string has to be used or breakpoint_re_set will delete
7460 me. */
5af949e3
UW
7461 b->addr_string
7462 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
018d34a4 7463
604133b5 7464 b->ops = ops;
84f4c1fe
PM
7465 if (internal)
7466 /* Do not mention breakpoints with a negative number, but do
7467 notify observers. */
7468 observer_notify_breakpoint_created (b->number);
7469 else
7470 mention (b);
018d34a4
VP
7471}
7472
ed0616c6
VP
7473/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
7474 elements to fill the void space. */
2c0b251b
PA
7475static void
7476remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
ed0616c6
VP
7477{
7478 int i = index_to_remove+1;
7479 int last_index = sal->nelts-1;
7480
7481 for (;i <= last_index; ++i)
7482 sal->sals[i-1] = sal->sals[i];
7483
7484 --(sal->nelts);
7485}
7486
6c95b8df
PA
7487/* If appropriate, obtains all sals that correspond to the same file
7488 and line as SAL, in all program spaces. Users debugging with IDEs,
7489 will want to set a breakpoint at foo.c:line, and not really care
7490 about program spaces. This is done only if SAL does not have
7491 explicit PC and has line and file information. If we got just a
7492 single expanded sal, return the original.
ed0616c6 7493
6c95b8df
PA
7494 Otherwise, if SAL.explicit_line is not set, filter out all sals for
7495 which the name of enclosing function is different from SAL. This
7496 makes sure that if we have breakpoint originally set in template
7497 instantiation, say foo<int>(), we won't expand SAL to locations at
7498 the same line in all existing instantiations of 'foo'. */
ed0616c6 7499
2c0b251b 7500static struct symtabs_and_lines
ed0616c6
VP
7501expand_line_sal_maybe (struct symtab_and_line sal)
7502{
7503 struct symtabs_and_lines expanded;
7504 CORE_ADDR original_pc = sal.pc;
7505 char *original_function = NULL;
7506 int found;
7507 int i;
6c95b8df 7508 struct cleanup *old_chain;
ed0616c6
VP
7509
7510 /* If we have explicit pc, don't expand.
7511 If we have no line number, we can't expand. */
7512 if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
7513 {
7514 expanded.nelts = 1;
7515 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7516 expanded.sals[0] = sal;
7517 return expanded;
7518 }
7519
7520 sal.pc = 0;
6c95b8df
PA
7521
7522 old_chain = save_current_space_and_thread ();
7523
7524 switch_to_program_space_and_thread (sal.pspace);
7525
ed0616c6 7526 find_pc_partial_function (original_pc, &original_function, NULL, NULL);
6c95b8df
PA
7527
7528 /* Note that expand_line_sal visits *all* program spaces. */
ed0616c6 7529 expanded = expand_line_sal (sal);
6c95b8df 7530
ed0616c6
VP
7531 if (expanded.nelts == 1)
7532 {
3dba1c98
JB
7533 /* We had one sal, we got one sal. Return that sal, adjusting it
7534 past the function prologue if necessary. */
ed0616c6
VP
7535 xfree (expanded.sals);
7536 expanded.nelts = 1;
7537 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7538 sal.pc = original_pc;
7539 expanded.sals[0] = sal;
3dba1c98 7540 skip_prologue_sal (&expanded.sals[0]);
6c95b8df 7541 do_cleanups (old_chain);
ed0616c6
VP
7542 return expanded;
7543 }
7544
7545 if (!sal.explicit_line)
7546 {
7547 CORE_ADDR func_addr, func_end;
7548 for (i = 0; i < expanded.nelts; ++i)
7549 {
7550 CORE_ADDR pc = expanded.sals[i].pc;
7551 char *this_function;
6c95b8df
PA
7552
7553 /* We need to switch threads as well since we're about to
7554 read memory. */
7555 switch_to_program_space_and_thread (expanded.sals[i].pspace);
7556
ed0616c6
VP
7557 if (find_pc_partial_function (pc, &this_function,
7558 &func_addr, &func_end))
7559 {
059fb39f
PM
7560 if (this_function
7561 && strcmp (this_function, original_function) != 0)
ed0616c6
VP
7562 {
7563 remove_sal (&expanded, i);
7564 --i;
7565 }
ed0616c6
VP
7566 }
7567 }
7568 }
059acae7
UW
7569
7570 /* Skip the function prologue if necessary. */
7571 for (i = 0; i < expanded.nelts; ++i)
7572 skip_prologue_sal (&expanded.sals[i]);
ed0616c6 7573
6c95b8df
PA
7574 do_cleanups (old_chain);
7575
ed0616c6
VP
7576 if (expanded.nelts <= 1)
7577 {
4a64f543
MS
7578 /* This is un ugly workaround. If we get zero expanded sals
7579 then something is really wrong. Fix that by returning the
7580 original sal. */
7581
ed0616c6
VP
7582 xfree (expanded.sals);
7583 expanded.nelts = 1;
7584 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7585 sal.pc = original_pc;
7586 expanded.sals[0] = sal;
7587 return expanded;
7588 }
7589
7590 if (original_pc)
7591 {
7592 found = 0;
7593 for (i = 0; i < expanded.nelts; ++i)
7594 if (expanded.sals[i].pc == original_pc)
7595 {
7596 found = 1;
7597 break;
7598 }
7599 gdb_assert (found);
7600 }
7601
7602 return expanded;
7603}
7604
018d34a4
VP
7605/* Add SALS.nelts breakpoints to the breakpoint table. For each
7606 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
7607 value. COND_STRING, if not NULL, specified the condition to be
7608 used for all breakpoints. Essentially the only case where
7609 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
7610 function. In that case, it's still not possible to specify
7611 separate conditions for different overloaded functions, so
7612 we take just a single condition string.
7613
c3f6f71d 7614 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 7615 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
7616 array contents). If the function fails (error() is called), the
7617 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 7618 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
7619
7620static void
8cdf0e15 7621create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2
TT
7622 struct symtabs_and_lines sals,
7623 struct linespec_result *canonical,
8cdf0e15
VP
7624 char *cond_string,
7625 enum bptype type, enum bpdisp disposition,
7626 int thread, int task, int ignore_count,
7627 struct breakpoint_ops *ops, int from_tty,
84f4c1fe 7628 int enabled, int internal)
c906108c 7629{
018d34a4 7630 int i;
cc59ec59 7631
018d34a4 7632 for (i = 0; i < sals.nelts; ++i)
c3f6f71d 7633 {
ed0616c6
VP
7634 struct symtabs_and_lines expanded =
7635 expand_line_sal_maybe (sals.sals[i]);
0d381245 7636
7efd8fc2 7637 create_breakpoint_sal (gdbarch, expanded, canonical->canonical[i],
8cdf0e15 7638 cond_string, type, disposition,
84f4c1fe 7639 thread, task, ignore_count, ops,
56435ebe
TT
7640 from_tty, enabled, internal,
7641 canonical->special_display);
c3f6f71d 7642 }
c3f6f71d 7643}
c906108c 7644
9998af43 7645/* Parse ADDRESS which is assumed to be a SAL specification possibly
c3f6f71d 7646 followed by conditionals. On return, SALS contains an array of SAL
4a64f543 7647 addresses found. ADDR_STRING contains a vector of (canonical)
9998af43
TJB
7648 address strings. ADDRESS points to the end of the SAL.
7649
7650 The array and the line spec strings are allocated on the heap, it is
7651 the caller's responsibility to free them. */
c906108c 7652
b9362cc7 7653static void
c3f6f71d
JM
7654parse_breakpoint_sals (char **address,
7655 struct symtabs_and_lines *sals,
7efd8fc2 7656 struct linespec_result *canonical,
0101ce28 7657 int *not_found_ptr)
c3f6f71d
JM
7658{
7659 char *addr_start = *address;
cc59ec59 7660
c3f6f71d 7661 /* If no arg given, or if first arg is 'if ', use the default
4a64f543 7662 breakpoint. */
c3f6f71d
JM
7663 if ((*address) == NULL
7664 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c
SS
7665 {
7666 if (default_breakpoint_valid)
7667 {
c3f6f71d 7668 struct symtab_and_line sal;
cc59ec59 7669
4a64f543 7670 init_sal (&sal); /* Initialize to zeroes. */
c3f6f71d 7671 sals->sals = (struct symtab_and_line *)
c906108c
SS
7672 xmalloc (sizeof (struct symtab_and_line));
7673 sal.pc = default_breakpoint_address;
7674 sal.line = default_breakpoint_line;
7675 sal.symtab = default_breakpoint_symtab;
6c95b8df 7676 sal.pspace = default_breakpoint_pspace;
c5aa993b 7677 sal.section = find_pc_overlay (sal.pc);
00903456 7678
4a64f543
MS
7679 /* "break" without arguments is equivalent to "break *PC"
7680 where PC is the default_breakpoint_address. So make sure
7681 to set sal.explicit_pc to prevent GDB from trying to
7682 expand the list of sals to include all other instances
7683 with the same symtab and line. */
00903456
JK
7684 sal.explicit_pc = 1;
7685
c3f6f71d
JM
7686 sals->sals[0] = sal;
7687 sals->nelts = 1;
c906108c
SS
7688 }
7689 else
8a3fe4f8 7690 error (_("No default breakpoint address now."));
c906108c
SS
7691 }
7692 else
7693 {
c906108c 7694 /* Force almost all breakpoints to be in terms of the
4a64f543
MS
7695 current_source_symtab (which is decode_line_1's default).
7696 This should produce the results we want almost all of the
7697 time while leaving default_breakpoint_* alone.
7698
1aeae86e
AF
7699 ObjC: However, don't match an Objective-C method name which
7700 may have a '+' or '-' succeeded by a '[' */
0378c332 7701
c214a6fd 7702 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
0378c332 7703
c906108c 7704 if (default_breakpoint_valid
0378c332 7705 && (!cursal.symtab
1aeae86e
AF
7706 || ((strchr ("+-", (*address)[0]) != NULL)
7707 && ((*address)[1] != '['))))
c3f6f71d 7708 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
7efd8fc2 7709 default_breakpoint_line, canonical,
0101ce28 7710 not_found_ptr);
c906108c 7711 else
0101ce28 7712 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
7efd8fc2 7713 canonical, not_found_ptr);
c906108c 7714 }
4a64f543 7715 /* For any SAL that didn't have a canonical string, fill one in. */
7efd8fc2
TT
7716 if (sals->nelts > 0 && canonical->canonical == NULL)
7717 canonical->canonical = xcalloc (sals->nelts, sizeof (char **));
c3f6f71d 7718 if (addr_start != (*address))
c906108c 7719 {
c3f6f71d 7720 int i;
cc59ec59 7721
c3f6f71d 7722 for (i = 0; i < sals->nelts; i++)
c906108c 7723 {
4a64f543 7724 /* Add the string if not present. */
7efd8fc2
TT
7725 if (canonical->canonical[i] == NULL)
7726 canonical->canonical[i] = savestring (addr_start,
7727 (*address) - addr_start);
c906108c
SS
7728 }
7729 }
c3f6f71d 7730}
c906108c 7731
c906108c 7732
c3f6f71d 7733/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 7734 inserted as a breakpoint. If it can't throw an error. */
c906108c 7735
b9362cc7 7736static void
23e7acfb 7737breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
7738{
7739 int i;
cc59ec59 7740
c3f6f71d 7741 for (i = 0; i < sals->nelts; i++)
ee53e872 7742 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
7743}
7744
7a697b8d
SS
7745/* Fast tracepoints may have restrictions on valid locations. For
7746 instance, a fast tracepoint using a jump instead of a trap will
7747 likely have to overwrite more bytes than a trap would, and so can
7748 only be placed where the instruction is longer than the jump, or a
7749 multi-instruction sequence does not have a jump into the middle of
7750 it, etc. */
7751
7752static void
7753check_fast_tracepoint_sals (struct gdbarch *gdbarch,
7754 struct symtabs_and_lines *sals)
7755{
7756 int i, rslt;
7757 struct symtab_and_line *sal;
7758 char *msg;
7759 struct cleanup *old_chain;
7760
7761 for (i = 0; i < sals->nelts; i++)
7762 {
7763 sal = &sals->sals[i];
7764
7765 rslt = gdbarch_fast_tracepoint_valid_at (gdbarch, sal->pc,
7766 NULL, &msg);
7767 old_chain = make_cleanup (xfree, msg);
7768
7769 if (!rslt)
7770 error (_("May not have a fast tracepoint at 0x%s%s"),
7771 paddress (gdbarch, sal->pc), (msg ? msg : ""));
7772
7773 do_cleanups (old_chain);
7774 }
7775}
7776
05ff989b 7777static void
0101ce28
JJ
7778do_captured_parse_breakpoint (struct ui_out *ui, void *data)
7779{
7780 struct captured_parse_breakpoint_args *args = data;
7781
7efd8fc2 7782 parse_breakpoint_sals (args->arg_p, args->sals_p, args->canonical_p,
0101ce28 7783 args->not_found_ptr);
0101ce28
JJ
7784}
7785
018d34a4
VP
7786/* Given TOK, a string specification of condition and thread, as
7787 accepted by the 'break' command, extract the condition
7788 string and thread number and set *COND_STRING and *THREAD.
4a64f543 7789 PC identifies the context at which the condition should be parsed.
018d34a4
VP
7790 If no condition is found, *COND_STRING is set to NULL.
7791 If no thread is found, *THREAD is set to -1. */
7792static void
7793find_condition_and_thread (char *tok, CORE_ADDR pc,
4a306c9a 7794 char **cond_string, int *thread, int *task)
018d34a4
VP
7795{
7796 *cond_string = NULL;
7797 *thread = -1;
7798 while (tok && *tok)
7799 {
7800 char *end_tok;
7801 int toklen;
7802 char *cond_start = NULL;
7803 char *cond_end = NULL;
cc59ec59 7804
e9cafbcc 7805 tok = skip_spaces (tok);
018d34a4 7806
e9cafbcc 7807 end_tok = skip_to_space (tok);
018d34a4
VP
7808
7809 toklen = end_tok - tok;
7810
7811 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
7812 {
f7545552
TT
7813 struct expression *expr;
7814
018d34a4 7815 tok = cond_start = end_tok + 1;
f7545552
TT
7816 expr = parse_exp_1 (&tok, block_for_pc (pc), 0);
7817 xfree (expr);
018d34a4
VP
7818 cond_end = tok;
7819 *cond_string = savestring (cond_start,
7820 cond_end - cond_start);
7821 }
7822 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
7823 {
7824 char *tmptok;
7825
7826 tok = end_tok + 1;
7827 tmptok = tok;
7828 *thread = strtol (tok, &tok, 0);
7829 if (tok == tmptok)
7830 error (_("Junk after thread keyword."));
7831 if (!valid_thread_id (*thread))
7832 error (_("Unknown thread %d."), *thread);
7833 }
4a306c9a
JB
7834 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
7835 {
7836 char *tmptok;
7837
7838 tok = end_tok + 1;
7839 tmptok = tok;
7840 *task = strtol (tok, &tok, 0);
7841 if (tok == tmptok)
7842 error (_("Junk after task keyword."));
7843 if (!valid_task_id (*task))
b6199126 7844 error (_("Unknown task %d."), *task);
4a306c9a 7845 }
018d34a4
VP
7846 else
7847 error (_("Junk at end of arguments."));
7848 }
7849}
7850
0fb4aa4b
PA
7851/* Decode a static tracepoint marker spec. */
7852
7853static struct symtabs_and_lines
7854decode_static_tracepoint_spec (char **arg_p)
7855{
7856 VEC(static_tracepoint_marker_p) *markers = NULL;
7857 struct symtabs_and_lines sals;
7858 struct symtab_and_line sal;
7859 struct symbol *sym;
7860 struct cleanup *old_chain;
7861 char *p = &(*arg_p)[3];
7862 char *endp;
7863 char *marker_str;
7864 int i;
7865
e9cafbcc 7866 p = skip_spaces (p);
0fb4aa4b 7867
e9cafbcc 7868 endp = skip_to_space (p);
0fb4aa4b
PA
7869
7870 marker_str = savestring (p, endp - p);
7871 old_chain = make_cleanup (xfree, marker_str);
7872
7873 markers = target_static_tracepoint_markers_by_strid (marker_str);
7874 if (VEC_empty(static_tracepoint_marker_p, markers))
7875 error (_("No known static tracepoint marker named %s"), marker_str);
7876
7877 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
7878 sals.sals = xmalloc (sizeof *sals.sals * sals.nelts);
7879
7880 for (i = 0; i < sals.nelts; i++)
7881 {
7882 struct static_tracepoint_marker *marker;
7883
7884 marker = VEC_index (static_tracepoint_marker_p, markers, i);
7885
7886 init_sal (&sals.sals[i]);
7887
7888 sals.sals[i] = find_pc_line (marker->address, 0);
7889 sals.sals[i].pc = marker->address;
7890
7891 release_static_tracepoint_marker (marker);
7892 }
7893
7894 do_cleanups (old_chain);
7895
7896 *arg_p = endp;
7897 return sals;
7898}
7899
fd9b8c24
PA
7900/* Set a breakpoint. This function is shared between CLI and MI
7901 functions for setting a breakpoint. This function has two major
7902 modes of operations, selected by the PARSE_CONDITION_AND_THREAD
7903 parameter. If non-zero, the function will parse arg, extracting
4a64f543
MS
7904 breakpoint location, address and thread. Otherwise, ARG is just
7905 the location of breakpoint, with condition and thread specified by
7906 the COND_STRING and THREAD parameters. If INTERNAL is non-zero,
7907 the breakpoint number will be allocated from the internal
7908 breakpoint count. Returns true if any breakpoint was created;
7909 false otherwise. */
0101ce28 7910
8cdf0e15
VP
7911int
7912create_breakpoint (struct gdbarch *gdbarch,
7913 char *arg, char *cond_string, int thread,
7914 int parse_condition_and_thread,
0fb4aa4b 7915 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
7916 int ignore_count,
7917 enum auto_boolean pending_break_support,
7918 struct breakpoint_ops *ops,
84f4c1fe 7919 int from_tty, int enabled, int internal)
c3f6f71d 7920{
71fff37b 7921 struct gdb_exception e;
c3f6f71d 7922 struct symtabs_and_lines sals;
0101ce28 7923 struct symtab_and_line pending_sal;
0101ce28 7924 char *copy_arg;
c3f6f71d 7925 char *addr_start = arg;
7efd8fc2 7926 struct linespec_result canonical;
c3f6f71d 7927 struct cleanup *old_chain;
80c99de1 7928 struct cleanup *bkpt_chain = NULL;
0101ce28 7929 struct captured_parse_breakpoint_args parse_args;
05ff989b 7930 int i;
0101ce28 7931 int pending = 0;
0101ce28 7932 int not_found = 0;
4a306c9a 7933 int task = 0;
86b17b60 7934 int prev_bkpt_count = breakpoint_count;
c3f6f71d 7935
c3f6f71d
JM
7936 sals.sals = NULL;
7937 sals.nelts = 0;
7efd8fc2 7938 init_linespec_result (&canonical);
c3f6f71d 7939
0101ce28
JJ
7940 parse_args.arg_p = &arg;
7941 parse_args.sals_p = &sals;
7efd8fc2 7942 parse_args.canonical_p = &canonical;
0101ce28
JJ
7943 parse_args.not_found_ptr = &not_found;
7944
0fb4aa4b
PA
7945 if (type_wanted == bp_static_tracepoint && is_marker_spec (arg))
7946 {
7947 int i;
7948
7949 sals = decode_static_tracepoint_spec (&arg);
7950
7951 copy_arg = savestring (addr_start, arg - addr_start);
7efd8fc2 7952 canonical.canonical = xcalloc (sals.nelts, sizeof (char **));
0fb4aa4b 7953 for (i = 0; i < sals.nelts; i++)
7efd8fc2 7954 canonical.canonical[i] = xstrdup (copy_arg);
0fb4aa4b
PA
7955 goto done;
7956 }
7957
05ff989b
AC
7958 e = catch_exception (uiout, do_captured_parse_breakpoint,
7959 &parse_args, RETURN_MASK_ALL);
0101ce28
JJ
7960
7961 /* If caller is interested in rc value from parse, set value. */
05ff989b 7962 switch (e.reason)
0101ce28 7963 {
05ff989b 7964 case RETURN_QUIT:
98deb0da 7965 throw_exception (e);
05ff989b
AC
7966 case RETURN_ERROR:
7967 switch (e.error)
0101ce28 7968 {
05ff989b 7969 case NOT_FOUND_ERROR:
0101ce28 7970
05ff989b
AC
7971 /* If pending breakpoint support is turned off, throw
7972 error. */
fa8d40ab
JJ
7973
7974 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
7975 throw_exception (e);
7976
7977 exception_print (gdb_stderr, e);
fa8d40ab 7978
05ff989b
AC
7979 /* If pending breakpoint support is auto query and the user
7980 selects no, then simply return the error code. */
059fb39f 7981 if (pending_break_support == AUTO_BOOLEAN_AUTO
3e43a32a
MS
7982 && !nquery (_("Make breakpoint pending on "
7983 "future shared library load? ")))
fd9b8c24 7984 return 0;
fa8d40ab 7985
05ff989b
AC
7986 /* At this point, either the user was queried about setting
7987 a pending breakpoint and selected yes, or pending
7988 breakpoint behavior is on and thus a pending breakpoint
7989 is defaulted on behalf of the user. */
0101ce28 7990 copy_arg = xstrdup (addr_start);
7efd8fc2 7991 canonical.canonical = &copy_arg;
0101ce28
JJ
7992 sals.nelts = 1;
7993 sals.sals = &pending_sal;
7994 pending_sal.pc = 0;
7995 pending = 1;
05ff989b
AC
7996 break;
7997 default:
98deb0da 7998 throw_exception (e);
0101ce28 7999 }
2abae994 8000 break;
05ff989b
AC
8001 default:
8002 if (!sals.nelts)
fd9b8c24 8003 return 0;
0101ce28 8004 }
c3f6f71d 8005
0fb4aa4b
PA
8006 done:
8007
4a64f543 8008 /* Create a chain of things that always need to be cleaned up. */
c3f6f71d
JM
8009 old_chain = make_cleanup (null_cleanup, 0);
8010
0101ce28
JJ
8011 if (!pending)
8012 {
8013 /* Make sure that all storage allocated to SALS gets freed. */
8014 make_cleanup (xfree, sals.sals);
8015
7efd8fc2
TT
8016 /* Cleanup the canonical array but not its contents. */
8017 make_cleanup (xfree, canonical.canonical);
0101ce28 8018 }
c3f6f71d 8019
c3f6f71d
JM
8020 /* ----------------------------- SNIP -----------------------------
8021 Anything added to the cleanup chain beyond this point is assumed
8022 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
8023 then the memory is not reclaimed. */
8024 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 8025
7efd8fc2 8026 /* Mark the contents of the canonical for cleanup. These go on
80c99de1 8027 the bkpt_chain and only occur if the breakpoint create fails. */
c3f6f71d
JM
8028 for (i = 0; i < sals.nelts; i++)
8029 {
7efd8fc2
TT
8030 if (canonical.canonical[i] != NULL)
8031 make_cleanup (xfree, canonical.canonical[i]);
c3f6f71d
JM
8032 }
8033
8034 /* Resolve all line numbers to PC's and verify that the addresses
8035 are ok for the target. */
0101ce28 8036 if (!pending)
23e7acfb 8037 breakpoint_sals_to_pc (&sals);
c3f6f71d 8038
7a697b8d
SS
8039 /* Fast tracepoints may have additional restrictions on location. */
8040 if (type_wanted == bp_fast_tracepoint)
8041 check_fast_tracepoint_sals (gdbarch, &sals);
8042
c3f6f71d
JM
8043 /* Verify that condition can be parsed, before setting any
8044 breakpoints. Allocate a separate condition expression for each
4a64f543 8045 breakpoint. */
0101ce28 8046 if (!pending)
c3f6f71d 8047 {
2f069f6f 8048 if (parse_condition_and_thread)
72b2ff0e
VP
8049 {
8050 /* Here we only parse 'arg' to separate condition
8051 from thread number, so parsing in context of first
8052 sal is OK. When setting the breakpoint we'll
8053 re-parse it in context of each sal. */
8054 cond_string = NULL;
8055 thread = -1;
4a306c9a
JB
8056 find_condition_and_thread (arg, sals.sals[0].pc, &cond_string,
8057 &thread, &task);
72b2ff0e
VP
8058 if (cond_string)
8059 make_cleanup (xfree, cond_string);
8060 }
2f069f6f 8061 else
72b2ff0e
VP
8062 {
8063 /* Create a private copy of condition string. */
8064 if (cond_string)
8065 {
8066 cond_string = xstrdup (cond_string);
8067 make_cleanup (xfree, cond_string);
8068 }
8069 }
0fb4aa4b
PA
8070
8071 /* If the user is creating a static tracepoint by marker id
8072 (strace -m MARKER_ID), then store the sals index, so that
8073 breakpoint_re_set can try to match up which of the newly
8074 found markers corresponds to this one, and, don't try to
8075 expand multiple locations for each sal, given than SALS
8076 already should contain all sals for MARKER_ID. */
8077 if (type_wanted == bp_static_tracepoint
7efd8fc2 8078 && is_marker_spec (canonical.canonical[0]))
0fb4aa4b
PA
8079 {
8080 int i;
8081
8082 for (i = 0; i < sals.nelts; ++i)
8083 {
8084 struct symtabs_and_lines expanded;
8085 struct breakpoint *tp;
8086 struct cleanup *old_chain;
8087
8088 expanded.nelts = 1;
8089 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
8090 expanded.sals[0] = sals.sals[i];
8091 old_chain = make_cleanup (xfree, expanded.sals);
8092
7efd8fc2 8093 create_breakpoint_sal (gdbarch, expanded, canonical.canonical[i],
0fb4aa4b
PA
8094 cond_string, type_wanted,
8095 tempflag ? disp_del : disp_donttouch,
8096 thread, task, ignore_count, ops,
56435ebe
TT
8097 from_tty, enabled, internal,
8098 canonical.special_display);
0fb4aa4b
PA
8099
8100 do_cleanups (old_chain);
8101
8102 /* Get the tracepoint we just created. */
84f4c1fe
PM
8103 if (internal)
8104 tp = get_breakpoint (internal_breakpoint_number);
8105 else
8106 tp = get_breakpoint (breakpoint_count);
0fb4aa4b
PA
8107 gdb_assert (tp != NULL);
8108
8109 /* Given that its possible to have multiple markers with
8110 the same string id, if the user is creating a static
8111 tracepoint by marker id ("strace -m MARKER_ID"), then
8112 store the sals index, so that breakpoint_re_set can
8113 try to match up which of the newly found markers
8114 corresponds to this one */
8115 tp->static_trace_marker_id_idx = i;
8116 }
8117 }
8118 else
7efd8fc2 8119 create_breakpoints_sal (gdbarch, sals, &canonical, cond_string,
3e43a32a
MS
8120 type_wanted,
8121 tempflag ? disp_del : disp_donttouch,
0fb4aa4b 8122 thread, task, ignore_count, ops, from_tty,
84f4c1fe 8123 enabled, internal);
c906108c 8124 }
0101ce28
JJ
8125 else
8126 {
0101ce28
JJ
8127 struct breakpoint *b;
8128
0101ce28
JJ
8129 make_cleanup (xfree, copy_arg);
8130
a6d9a66e 8131 b = set_raw_breakpoint_without_location (gdbarch, type_wanted);
84f4c1fe 8132 set_breakpoint_number (internal, b);
72b2ff0e 8133 b->thread = -1;
7efd8fc2 8134 b->addr_string = canonical.canonical[0];
72b2ff0e 8135 b->cond_string = NULL;
0101ce28 8136 b->ignore_count = ignore_count;
0101ce28 8137 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 8138 b->condition_not_parsed = 1;
604133b5 8139 b->ops = ops;
41447f92 8140 b->enable_state = enabled ? bp_enabled : bp_disabled;
6c95b8df 8141 b->pspace = current_program_space;
84f4c1fe 8142 b->py_bp_object = NULL;
74960c60 8143
6c95b8df 8144 if (enabled && b->pspace->executing_startup
8bea4e01
UW
8145 && (b->type == bp_breakpoint
8146 || b->type == bp_hardware_breakpoint))
8147 b->enable_state = bp_startup_disabled;
8148
84f4c1fe
PM
8149 if (internal)
8150 /* Do not mention breakpoints with a negative number,
8151 but do notify observers. */
8152 observer_notify_breakpoint_created (b->number);
8153 else
8154 mention (b);
0101ce28
JJ
8155 }
8156
c3f6f71d 8157 if (sals.nelts > 1)
95a42b64 8158 {
3e43a32a
MS
8159 warning (_("Multiple breakpoints were set.\nUse the "
8160 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 8161 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
8162 }
8163
80c99de1
PA
8164 /* That's it. Discard the cleanups for data inserted into the
8165 breakpoint. */
8166 discard_cleanups (bkpt_chain);
8167 /* But cleanup everything else. */
c3f6f71d 8168 do_cleanups (old_chain);
217dc9e2 8169
80c99de1 8170 /* error call may happen here - have BKPT_CHAIN already discarded. */
217dc9e2 8171 update_global_location_list (1);
fd9b8c24
PA
8172
8173 return 1;
c3f6f71d 8174}
c906108c 8175
72b2ff0e
VP
8176/* Set a breakpoint.
8177 ARG is a string describing breakpoint address,
8178 condition, and thread.
8179 FLAG specifies if a breakpoint is hardware on,
8180 and if breakpoint is temporary, using BP_HARDWARE_FLAG
8181 and BP_TEMPFLAG. */
8182
98deb0da 8183static void
72b2ff0e 8184break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 8185{
72b2ff0e 8186 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
8187 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
8188 ? bp_hardware_breakpoint
8189 : bp_breakpoint);
c3f6f71d 8190
8cdf0e15
VP
8191 create_breakpoint (get_current_arch (),
8192 arg,
8193 NULL, 0, 1 /* parse arg */,
0fb4aa4b 8194 tempflag, type_wanted,
8cdf0e15
VP
8195 0 /* Ignore count */,
8196 pending_break_support,
8197 NULL /* breakpoint_ops */,
8198 from_tty,
84f4c1fe
PM
8199 1 /* enabled */,
8200 0 /* internal */);
c906108c
SS
8201}
8202
72b2ff0e 8203
c906108c
SS
8204/* Helper function for break_command_1 and disassemble_command. */
8205
8206void
fba45db2 8207resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
8208{
8209 CORE_ADDR pc;
8210
8211 if (sal->pc == 0 && sal->symtab != NULL)
8212 {
8213 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 8214 error (_("No line %d in file \"%s\"."),
c906108c
SS
8215 sal->line, sal->symtab->filename);
8216 sal->pc = pc;
6a048695 8217
4a64f543
MS
8218 /* If this SAL corresponds to a breakpoint inserted using a line
8219 number, then skip the function prologue if necessary. */
6a048695 8220 if (sal->explicit_line)
059acae7 8221 skip_prologue_sal (sal);
c906108c
SS
8222 }
8223
8224 if (sal->section == 0 && sal->symtab != NULL)
8225 {
8226 struct blockvector *bv;
c5aa993b
JM
8227 struct block *b;
8228 struct symbol *sym;
c906108c 8229
801e3a5b 8230 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
8231 if (bv != NULL)
8232 {
7f0df278 8233 sym = block_linkage_function (b);
c906108c
SS
8234 if (sym != NULL)
8235 {
8236 fixup_symbol_section (sym, sal->symtab->objfile);
714835d5 8237 sal->section = SYMBOL_OBJ_SECTION (sym);
c906108c
SS
8238 }
8239 else
8240 {
4a64f543
MS
8241 /* It really is worthwhile to have the section, so we'll
8242 just have to look harder. This case can be executed
8243 if we have line numbers but no functions (as can
8244 happen in assembly source). */
c906108c 8245
c5aa993b 8246 struct minimal_symbol *msym;
6c95b8df
PA
8247 struct cleanup *old_chain = save_current_space_and_thread ();
8248
8249 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
8250
8251 msym = lookup_minimal_symbol_by_pc (sal->pc);
8252 if (msym)
714835d5 8253 sal->section = SYMBOL_OBJ_SECTION (msym);
6c95b8df
PA
8254
8255 do_cleanups (old_chain);
c906108c
SS
8256 }
8257 }
8258 }
8259}
8260
8261void
fba45db2 8262break_command (char *arg, int from_tty)
c906108c 8263{
db107f19 8264 break_command_1 (arg, 0, from_tty);
c906108c
SS
8265}
8266
c906108c 8267void
fba45db2 8268tbreak_command (char *arg, int from_tty)
c906108c 8269{
db107f19 8270 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
8271}
8272
c906108c 8273static void
fba45db2 8274hbreak_command (char *arg, int from_tty)
c906108c 8275{
db107f19 8276 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
8277}
8278
8279static void
fba45db2 8280thbreak_command (char *arg, int from_tty)
c906108c 8281{
db107f19 8282 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
8283}
8284
8285static void
fba45db2 8286stop_command (char *arg, int from_tty)
c906108c 8287{
a3f17187 8288 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 8289Usage: stop in <function | address>\n\
a3f17187 8290 stop at <line>\n"));
c906108c
SS
8291}
8292
8293static void
fba45db2 8294stopin_command (char *arg, int from_tty)
c906108c
SS
8295{
8296 int badInput = 0;
8297
c5aa993b 8298 if (arg == (char *) NULL)
c906108c
SS
8299 badInput = 1;
8300 else if (*arg != '*')
8301 {
8302 char *argptr = arg;
8303 int hasColon = 0;
8304
4a64f543 8305 /* Look for a ':'. If this is a line number specification, then
53a5351d 8306 say it is bad, otherwise, it should be an address or
4a64f543 8307 function/method name. */
c906108c 8308 while (*argptr && !hasColon)
c5aa993b
JM
8309 {
8310 hasColon = (*argptr == ':');
8311 argptr++;
8312 }
c906108c
SS
8313
8314 if (hasColon)
c5aa993b 8315 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 8316 else
c5aa993b 8317 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
8318 }
8319
8320 if (badInput)
a3f17187 8321 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 8322 else
db107f19 8323 break_command_1 (arg, 0, from_tty);
c906108c
SS
8324}
8325
8326static void
fba45db2 8327stopat_command (char *arg, int from_tty)
c906108c
SS
8328{
8329 int badInput = 0;
8330
c5aa993b 8331 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
8332 badInput = 1;
8333 else
8334 {
8335 char *argptr = arg;
8336 int hasColon = 0;
8337
4a64f543
MS
8338 /* Look for a ':'. If there is a '::' then get out, otherwise
8339 it is probably a line number. */
c906108c 8340 while (*argptr && !hasColon)
c5aa993b
JM
8341 {
8342 hasColon = (*argptr == ':');
8343 argptr++;
8344 }
c906108c
SS
8345
8346 if (hasColon)
c5aa993b 8347 badInput = (*argptr == ':'); /* we have class::method */
c906108c 8348 else
c5aa993b 8349 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
8350 }
8351
8352 if (badInput)
a3f17187 8353 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 8354 else
db107f19 8355 break_command_1 (arg, 0, from_tty);
c906108c
SS
8356}
8357
f1310107
TJB
8358/* Implement the "breakpoint_hit" breakpoint_ops method for
8359 ranged breakpoints. */
8360
8361static int
8362breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
8363 struct address_space *aspace,
8364 CORE_ADDR bp_addr)
8365{
8366 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
8367 bl->length, aspace, bp_addr);
8368}
8369
8370/* Implement the "resources_needed" breakpoint_ops method for
8371 ranged breakpoints. */
8372
8373static int
8374resources_needed_ranged_breakpoint (const struct bp_location *bl)
8375{
8376 return target_ranged_break_num_registers ();
8377}
8378
8379/* Implement the "print_it" breakpoint_ops method for
8380 ranged breakpoints. */
8381
8382static enum print_stop_action
8383print_it_ranged_breakpoint (struct breakpoint *b)
8384{
8385 struct bp_location *bl = b->loc;
8386
8387 gdb_assert (b->type == bp_hardware_breakpoint);
8388
8389 /* Ranged breakpoints have only one location. */
8390 gdb_assert (bl && bl->next == NULL);
8391
8392 annotate_breakpoint (b->number);
8393 if (b->disposition == disp_del)
8394 ui_out_text (uiout, "\nTemporary ranged breakpoint ");
8395 else
8396 ui_out_text (uiout, "\nRanged breakpoint ");
8397 if (ui_out_is_mi_like_p (uiout))
8398 {
8399 ui_out_field_string (uiout, "reason",
8400 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
8401 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8402 }
8403 ui_out_field_int (uiout, "bkptno", b->number);
8404 ui_out_text (uiout, ", ");
8405
8406 return PRINT_SRC_AND_LOC;
8407}
8408
8409/* Implement the "print_one" breakpoint_ops method for
8410 ranged breakpoints. */
8411
8412static void
8413print_one_ranged_breakpoint (struct breakpoint *b,
8414 struct bp_location **last_loc)
8415{
8416 struct bp_location *bl = b->loc;
8417 struct value_print_options opts;
8418
8419 /* Ranged breakpoints have only one location. */
8420 gdb_assert (bl && bl->next == NULL);
8421
8422 get_user_print_options (&opts);
8423
8424 if (opts.addressprint)
8425 /* We don't print the address range here, it will be printed later
8426 by print_one_detail_ranged_breakpoint. */
8427 ui_out_field_skip (uiout, "addr");
8428 annotate_field (5);
8429 print_breakpoint_location (b, bl);
8430 *last_loc = bl;
8431}
8432
8433/* Implement the "print_one_detail" breakpoint_ops method for
8434 ranged breakpoints. */
8435
8436static void
8437print_one_detail_ranged_breakpoint (const struct breakpoint *b,
8438 struct ui_out *uiout)
8439{
8440 CORE_ADDR address_start, address_end;
8441 struct bp_location *bl = b->loc;
8442 struct ui_stream *stb = ui_out_stream_new (uiout);
8443 struct cleanup *cleanup = make_cleanup_ui_out_stream_delete (stb);
8444
8445 gdb_assert (bl);
8446
8447 address_start = bl->address;
8448 address_end = address_start + bl->length - 1;
8449
8450 ui_out_text (uiout, "\taddress range: ");
8451 fprintf_unfiltered (stb->stream, "[%s, %s]",
8452 print_core_address (bl->gdbarch, address_start),
8453 print_core_address (bl->gdbarch, address_end));
8454 ui_out_field_stream (uiout, "addr", stb);
8455 ui_out_text (uiout, "\n");
8456
8457 do_cleanups (cleanup);
8458}
8459
8460/* Implement the "print_mention" breakpoint_ops method for
8461 ranged breakpoints. */
8462
8463static void
8464print_mention_ranged_breakpoint (struct breakpoint *b)
8465{
8466 struct bp_location *bl = b->loc;
8467
8468 gdb_assert (bl);
8469 gdb_assert (b->type == bp_hardware_breakpoint);
8470
8471 if (ui_out_is_mi_like_p (uiout))
8472 return;
8473
8474 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
8475 b->number, paddress (bl->gdbarch, bl->address),
8476 paddress (bl->gdbarch, bl->address + bl->length - 1));
8477}
8478
8479/* Implement the "print_recreate" breakpoint_ops method for
8480 ranged breakpoints. */
8481
8482static void
8483print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
8484{
8485 fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string,
8486 b->addr_string_range_end);
8487}
8488
8489/* The breakpoint_ops structure to be used in ranged breakpoints. */
8490
8491static struct breakpoint_ops ranged_breakpoint_ops =
8492{
8493 NULL, /* insert */
8494 NULL, /* remove */
8495 breakpoint_hit_ranged_breakpoint,
8496 resources_needed_ranged_breakpoint,
8497 print_it_ranged_breakpoint,
8498 print_one_ranged_breakpoint,
8499 print_one_detail_ranged_breakpoint,
8500 print_mention_ranged_breakpoint,
8501 print_recreate_ranged_breakpoint
8502};
8503
8504/* Find the address where the end of the breakpoint range should be
8505 placed, given the SAL of the end of the range. This is so that if
8506 the user provides a line number, the end of the range is set to the
8507 last instruction of the given line. */
8508
8509static CORE_ADDR
8510find_breakpoint_range_end (struct symtab_and_line sal)
8511{
8512 CORE_ADDR end;
8513
8514 /* If the user provided a PC value, use it. Otherwise,
8515 find the address of the end of the given location. */
8516 if (sal.explicit_pc)
8517 end = sal.pc;
8518 else
8519 {
8520 int ret;
8521 CORE_ADDR start;
8522
8523 ret = find_line_pc_range (sal, &start, &end);
8524 if (!ret)
8525 error (_("Could not find location of the end of the range."));
8526
8527 /* find_line_pc_range returns the start of the next line. */
8528 end--;
8529 }
8530
8531 return end;
8532}
8533
8534/* Implement the "break-range" CLI command. */
8535
8536static void
8537break_range_command (char *arg, int from_tty)
8538{
8539 char *arg_start, *addr_string_start, *addr_string_end;
8540 struct linespec_result canonical_start, canonical_end;
8541 int bp_count, can_use_bp, length;
8542 CORE_ADDR end;
8543 struct breakpoint *b;
8544 struct symtab_and_line sal_start, sal_end;
8545 struct symtabs_and_lines sals_start, sals_end;
8546 struct cleanup *cleanup_bkpt;
8547
8548 /* We don't support software ranged breakpoints. */
8549 if (target_ranged_break_num_registers () < 0)
8550 error (_("This target does not support hardware ranged breakpoints."));
8551
8552 bp_count = hw_breakpoint_used_count ();
8553 bp_count += target_ranged_break_num_registers ();
8554 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
8555 bp_count, 0);
8556 if (can_use_bp < 0)
8557 error (_("Hardware breakpoints used exceeds limit."));
8558
8559 if (arg == NULL || arg[0] == '\0')
8560 error(_("No address range specified."));
8561
8562 sals_start.sals = NULL;
8563 sals_start.nelts = 0;
8564 init_linespec_result (&canonical_start);
8565
8566 while (*arg == ' ' || *arg == '\t')
8567 arg++;
8568
8569 parse_breakpoint_sals (&arg, &sals_start, &canonical_start, NULL);
8570
8571 sal_start = sals_start.sals[0];
8572 addr_string_start = canonical_start.canonical[0];
8573 cleanup_bkpt = make_cleanup (xfree, addr_string_start);
8574 xfree (sals_start.sals);
8575 xfree (canonical_start.canonical);
8576
8577 if (arg[0] != ',')
8578 error (_("Too few arguments."));
8579 else if (sals_start.nelts == 0)
8580 error (_("Could not find location of the beginning of the range."));
8581 else if (sals_start.nelts != 1)
8582 error (_("Cannot create a ranged breakpoint with multiple locations."));
8583
8584 resolve_sal_pc (&sal_start);
8585
8586 arg++; /* Skip the comma. */
8587 while (*arg == ' ' || *arg == '\t')
8588 arg++;
8589
8590 /* Parse the end location. */
8591
8592 sals_end.sals = NULL;
8593 sals_end.nelts = 0;
8594 init_linespec_result (&canonical_end);
8595 arg_start = arg;
8596
8597 /* We call decode_line_n1 directly here instead of using
8598 parse_breakpoint_sals because we need to specify the start location's
8599 symtab and line as the default symtab and line for the end of the
8600 range. This makes it possible to have ranges like "foo.c:27, +14",
8601 where +14 means 14 lines from the start location. */
8602 sals_end = decode_line_1 (&arg, 1, sal_start.symtab, sal_start.line,
8603 &canonical_end, NULL);
8604
8605 /* canonical_end can be NULL if it was of the form "*0xdeadbeef". */
8606 if (canonical_end.canonical == NULL)
8607 canonical_end.canonical = xcalloc (1, sizeof (char **));
8608 /* Add the string if not present. */
8609 if (arg_start != arg && canonical_end.canonical[0] == NULL)
8610 canonical_end.canonical[0] = savestring (arg_start, arg - arg_start);
8611
8612 sal_end = sals_end.sals[0];
8613 addr_string_end = canonical_end.canonical[0];
8614 make_cleanup (xfree, addr_string_end);
8615 xfree (sals_end.sals);
8616 xfree (canonical_end.canonical);
8617
8618 if (sals_end.nelts == 0)
8619 error (_("Could not find location of the end of the range."));
8620 else if (sals_end.nelts != 1)
8621 error (_("Cannot create a ranged breakpoint with multiple locations."));
8622
8623 resolve_sal_pc (&sal_end);
8624
8625 end = find_breakpoint_range_end (sal_end);
8626 if (sal_start.pc > end)
8627 error (_("Invalid address range, end preceeds start."));
8628
8629 length = end - sal_start.pc + 1;
8630 if (length < 0)
8631 /* Length overflowed. */
8632 error (_("Address range too large."));
8633 else if (length == 1)
8634 {
8635 /* This range is simple enough to be handled by
8636 the `hbreak' command. */
8637 hbreak_command (addr_string_start, 1);
8638
8639 do_cleanups (cleanup_bkpt);
8640
8641 return;
8642 }
8643
8644 /* Now set up the breakpoint. */
8645 b = set_raw_breakpoint (get_current_arch (), sal_start,
8646 bp_hardware_breakpoint);
8647 set_breakpoint_count (breakpoint_count + 1);
8648 b->number = breakpoint_count;
8649 b->disposition = disp_donttouch;
8650 b->addr_string = addr_string_start;
8651 b->addr_string_range_end = addr_string_end;
8652 b->ops = &ranged_breakpoint_ops;
8653 b->loc->length = length;
8654
8655 discard_cleanups (cleanup_bkpt);
8656
8657 mention (b);
8658 update_global_location_list (1);
8659}
8660
4a64f543
MS
8661/* Return non-zero if EXP is verified as constant. Returned zero
8662 means EXP is variable. Also the constant detection may fail for
8663 some constant expressions and in such case still falsely return
8664 zero. */
65d79d4b
SDJ
8665static int
8666watchpoint_exp_is_const (const struct expression *exp)
8667{
8668 int i = exp->nelts;
8669
8670 while (i > 0)
8671 {
8672 int oplenp, argsp;
8673
8674 /* We are only interested in the descriptor of each element. */
8675 operator_length (exp, i, &oplenp, &argsp);
8676 i -= oplenp;
8677
8678 switch (exp->elts[i].opcode)
8679 {
8680 case BINOP_ADD:
8681 case BINOP_SUB:
8682 case BINOP_MUL:
8683 case BINOP_DIV:
8684 case BINOP_REM:
8685 case BINOP_MOD:
8686 case BINOP_LSH:
8687 case BINOP_RSH:
8688 case BINOP_LOGICAL_AND:
8689 case BINOP_LOGICAL_OR:
8690 case BINOP_BITWISE_AND:
8691 case BINOP_BITWISE_IOR:
8692 case BINOP_BITWISE_XOR:
8693 case BINOP_EQUAL:
8694 case BINOP_NOTEQUAL:
8695 case BINOP_LESS:
8696 case BINOP_GTR:
8697 case BINOP_LEQ:
8698 case BINOP_GEQ:
8699 case BINOP_REPEAT:
8700 case BINOP_COMMA:
8701 case BINOP_EXP:
8702 case BINOP_MIN:
8703 case BINOP_MAX:
8704 case BINOP_INTDIV:
8705 case BINOP_CONCAT:
8706 case BINOP_IN:
8707 case BINOP_RANGE:
8708 case TERNOP_COND:
8709 case TERNOP_SLICE:
8710 case TERNOP_SLICE_COUNT:
8711
8712 case OP_LONG:
8713 case OP_DOUBLE:
8714 case OP_DECFLOAT:
8715 case OP_LAST:
8716 case OP_COMPLEX:
8717 case OP_STRING:
8718 case OP_BITSTRING:
8719 case OP_ARRAY:
8720 case OP_TYPE:
8721 case OP_NAME:
8722 case OP_OBJC_NSSTRING:
8723
8724 case UNOP_NEG:
8725 case UNOP_LOGICAL_NOT:
8726 case UNOP_COMPLEMENT:
8727 case UNOP_ADDR:
8728 case UNOP_HIGH:
4a64f543
MS
8729 /* Unary, binary and ternary operators: We have to check
8730 their operands. If they are constant, then so is the
8731 result of that operation. For instance, if A and B are
8732 determined to be constants, then so is "A + B".
8733
8734 UNOP_IND is one exception to the rule above, because the
8735 value of *ADDR is not necessarily a constant, even when
8736 ADDR is. */
65d79d4b
SDJ
8737 break;
8738
8739 case OP_VAR_VALUE:
8740 /* Check whether the associated symbol is a constant.
4a64f543 8741
65d79d4b 8742 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
8743 possible that a buggy compiler could mark a variable as
8744 constant even when it is not, and TYPE_CONST would return
8745 true in this case, while SYMBOL_CLASS wouldn't.
8746
8747 We also have to check for function symbols because they
8748 are always constant. */
65d79d4b
SDJ
8749 {
8750 struct symbol *s = exp->elts[i + 2].symbol;
8751
8752 if (SYMBOL_CLASS (s) != LOC_BLOCK
8753 && SYMBOL_CLASS (s) != LOC_CONST
8754 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
8755 return 0;
8756 break;
8757 }
8758
8759 /* The default action is to return 0 because we are using
8760 the optimistic approach here: If we don't know something,
8761 then it is not a constant. */
8762 default:
8763 return 0;
8764 }
8765 }
8766
8767 return 1;
8768}
8769
77b06cd7
TJB
8770/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
8771
8772static int
8773insert_watchpoint (struct bp_location *bl)
8774{
e09342b5
TJB
8775 int length = bl->owner->exact? 1 : bl->length;
8776
8777 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
8778 bl->owner->cond_exp);
77b06cd7
TJB
8779}
8780
8781/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
8782
8783static int
8784remove_watchpoint (struct bp_location *bl)
8785{
e09342b5
TJB
8786 int length = bl->owner->exact? 1 : bl->length;
8787
8788 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
8789 bl->owner->cond_exp);
8790}
8791
8792/* Implement the "resources_needed" breakpoint_ops method for
8793 hardware watchpoints. */
8794
8795static int
8796resources_needed_watchpoint (const struct bp_location *bl)
8797{
90e4670f 8798 int length = bl->owner->exact? 1 : bl->length;
e09342b5 8799
90e4670f 8800 return target_region_ok_for_hw_watchpoint (bl->address, length);
77b06cd7
TJB
8801}
8802
8803/* The breakpoint_ops structure to be used in hardware watchpoints. */
8804
8805static struct breakpoint_ops watchpoint_breakpoint_ops =
8806{
8807 insert_watchpoint,
8808 remove_watchpoint,
8809 NULL, /* breakpoint_hit */
e09342b5 8810 resources_needed_watchpoint,
77b06cd7
TJB
8811 NULL, /* print_it */
8812 NULL, /* print_one */
f1310107 8813 NULL, /* print_one_detail */
77b06cd7
TJB
8814 NULL, /* print_mention */
8815 NULL /* print_recreate */
8816};
8817
53a5351d
JM
8818/* accessflag: hw_write: watch write,
8819 hw_read: watch read,
8820 hw_access: watch access (read or write) */
c906108c 8821static void
84f4c1fe
PM
8822watch_command_1 (char *arg, int accessflag, int from_tty,
8823 int just_location, int internal)
c906108c 8824{
d983da9c 8825 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c 8826 struct expression *exp;
60e1c644 8827 struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 8828 struct value *val, *mark, *result;
c906108c 8829 struct frame_info *frame;
c906108c
SS
8830 char *exp_start = NULL;
8831 char *exp_end = NULL;
37e4754d 8832 char *tok, *id_tok_start, *end_tok;
c906108c
SS
8833 int toklen;
8834 char *cond_start = NULL;
8835 char *cond_end = NULL;
c906108c
SS
8836 int i, other_type_used, target_resources_ok = 0;
8837 enum bptype bp_type;
e09342b5 8838 int reg_cnt = 0;
37e4754d 8839 int thread = -1;
0cf6dd15 8840 int pc = 0;
c906108c 8841
37e4754d
LM
8842 /* Make sure that we actually have parameters to parse. */
8843 if (arg != NULL && arg[0] != '\0')
8844 {
8845 toklen = strlen (arg); /* Size of argument list. */
8846
8847 /* Points tok to the end of the argument list. */
8848 tok = arg + toklen - 1;
8849
4a64f543
MS
8850 /* Go backwards in the parameters list. Skip the last
8851 parameter. If we're expecting a 'thread <thread_num>'
8852 parameter, this should be the thread identifier. */
37e4754d
LM
8853 while (tok > arg && (*tok == ' ' || *tok == '\t'))
8854 tok--;
8855 while (tok > arg && (*tok != ' ' && *tok != '\t'))
8856 tok--;
8857
8858 /* Points end_tok to the beginning of the last token. */
8859 id_tok_start = tok + 1;
8860
4a64f543
MS
8861 /* Go backwards in the parameters list. Skip one more
8862 parameter. If we're expecting a 'thread <thread_num>'
8863 parameter, we should reach a "thread" token. */
37e4754d
LM
8864 while (tok > arg && (*tok == ' ' || *tok == '\t'))
8865 tok--;
8866
8867 end_tok = tok;
8868
8869 while (tok > arg && (*tok != ' ' && *tok != '\t'))
8870 tok--;
8871
8872 /* Move the pointer forward to skip the whitespace and
8873 calculate the length of the token. */
8874 tok++;
8875 toklen = end_tok - tok;
8876
8877 if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
8878 {
8879 /* At this point we've found a "thread" token, which means
8880 the user is trying to set a watchpoint that triggers
8881 only in a specific thread. */
8882 char *endp;
8883
8884 /* Extract the thread ID from the next token. */
8885 thread = strtol (id_tok_start, &endp, 0);
8886
8887 /* Check if the user provided a valid numeric value for the
8888 thread ID. */
8889 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
8890 error (_("Invalid thread ID specification %s."), id_tok_start);
8891
8892 /* Check if the thread actually exists. */
8893 if (!valid_thread_id (thread))
8894 error (_("Unknown thread %d."), thread);
8895
8896 /* Truncate the string and get rid of the thread <thread_num>
8897 parameter before the parameter list is parsed by the
8898 evaluate_expression() function. */
8899 *tok = '\0';
8900 }
8901 }
8902
8903 /* Parse the rest of the arguments. */
c906108c
SS
8904 innermost_block = NULL;
8905 exp_start = arg;
8906 exp = parse_exp_1 (&arg, 0, 0);
8907 exp_end = arg;
fa8a61dc
TT
8908 /* Remove trailing whitespace from the expression before saving it.
8909 This makes the eventual display of the expression string a bit
8910 prettier. */
8911 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
8912 --exp_end;
8913
65d79d4b
SDJ
8914 /* Checking if the expression is not constant. */
8915 if (watchpoint_exp_is_const (exp))
8916 {
8917 int len;
8918
8919 len = exp_end - exp_start;
8920 while (len > 0 && isspace (exp_start[len - 1]))
8921 len--;
8922 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
8923 }
8924
c906108c
SS
8925 exp_valid_block = innermost_block;
8926 mark = value_mark ();
a1442452 8927 fetch_subexp_value (exp, &pc, &val, &result, NULL);
06a64a0b
TT
8928
8929 if (just_location)
8930 {
8931 exp_valid_block = NULL;
a1442452 8932 val = value_addr (result);
06a64a0b
TT
8933 release_value (val);
8934 value_free_to_mark (mark);
8935 }
8936 else if (val != NULL)
fa4727a6 8937 release_value (val);
c906108c 8938
e9cafbcc
TT
8939 tok = skip_spaces (arg);
8940 end_tok = skip_to_space (tok);
c906108c
SS
8941
8942 toklen = end_tok - tok;
8943 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
8944 {
2d134ed3
PA
8945 struct expression *cond;
8946
60e1c644 8947 innermost_block = NULL;
c906108c
SS
8948 tok = cond_start = end_tok + 1;
8949 cond = parse_exp_1 (&tok, 0, 0);
60e1c644
PA
8950
8951 /* The watchpoint expression may not be local, but the condition
8952 may still be. E.g.: `watch global if local > 0'. */
8953 cond_exp_valid_block = innermost_block;
8954
2d134ed3 8955 xfree (cond);
c906108c
SS
8956 cond_end = tok;
8957 }
8958 if (*tok)
8a3fe4f8 8959 error (_("Junk at end of command."));
c906108c 8960
53a5351d 8961 if (accessflag == hw_read)
c5aa993b 8962 bp_type = bp_read_watchpoint;
53a5351d 8963 else if (accessflag == hw_access)
c5aa993b
JM
8964 bp_type = bp_access_watchpoint;
8965 else
8966 bp_type = bp_hardware_watchpoint;
c906108c 8967
e09342b5
TJB
8968 reg_cnt = can_use_hardware_watchpoint (val, target_exact_watchpoints);
8969 if (reg_cnt == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 8970 error (_("Expression cannot be implemented with read/access watchpoint."));
e09342b5 8971 if (reg_cnt != 0)
c5aa993b
JM
8972 {
8973 i = hw_watchpoint_used_count (bp_type, &other_type_used);
53a5351d 8974 target_resources_ok =
e09342b5 8975 target_can_use_hardware_watchpoint (bp_type, i + reg_cnt,
53a5351d 8976 other_type_used);
c5aa993b 8977 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 8978 error (_("Target does not support this type of hardware watchpoint."));
53a5351d 8979
c5aa993b 8980 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
3e43a32a
MS
8981 error (_("Target can only support one kind "
8982 "of HW watchpoint at a time."));
c5aa993b 8983 }
c906108c 8984
4a64f543
MS
8985 /* Change the type of breakpoint to an ordinary watchpoint if a
8986 hardware watchpoint could not be set. */
e09342b5 8987 if (!reg_cnt || target_resources_ok <= 0)
4d28f7a8
KB
8988 bp_type = bp_watchpoint;
8989
d983da9c 8990 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
8991
8992 /* If the expression is "local", then set up a "watchpoint scope"
8993 breakpoint at the point where we've left the scope of the watchpoint
8994 expression. Create the scope breakpoint before the watchpoint, so
8995 that we will encounter it first in bpstat_stop_status. */
60e1c644 8996 if (exp_valid_block && frame)
d983da9c 8997 {
edb3359d
DJ
8998 if (frame_id_p (frame_unwind_caller_id (frame)))
8999 {
9000 scope_breakpoint
a6d9a66e
UW
9001 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
9002 frame_unwind_caller_pc (frame),
edb3359d 9003 bp_watchpoint_scope);
d983da9c 9004
edb3359d 9005 scope_breakpoint->enable_state = bp_enabled;
d983da9c 9006
edb3359d
DJ
9007 /* Automatically delete the breakpoint when it hits. */
9008 scope_breakpoint->disposition = disp_del;
d983da9c 9009
edb3359d
DJ
9010 /* Only break in the proper frame (help with recursion). */
9011 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 9012
edb3359d 9013 /* Set the address at which we will stop. */
a6d9a66e
UW
9014 scope_breakpoint->loc->gdbarch
9015 = frame_unwind_caller_arch (frame);
edb3359d
DJ
9016 scope_breakpoint->loc->requested_address
9017 = frame_unwind_caller_pc (frame);
9018 scope_breakpoint->loc->address
a6d9a66e
UW
9019 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
9020 scope_breakpoint->loc->requested_address,
edb3359d
DJ
9021 scope_breakpoint->type);
9022 }
d983da9c
DJ
9023 }
9024
c906108c 9025 /* Now set up the breakpoint. */
2d134ed3 9026 b = set_raw_breakpoint_without_location (NULL, bp_type);
84f4c1fe 9027 set_breakpoint_number (internal, b);
37e4754d 9028 b->thread = thread;
b5de0fa7 9029 b->disposition = disp_donttouch;
c906108c
SS
9030 b->exp = exp;
9031 b->exp_valid_block = exp_valid_block;
60e1c644 9032 b->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
9033 if (just_location)
9034 {
9035 struct type *t = value_type (val);
9036 CORE_ADDR addr = value_as_address (val);
9037 char *name;
9038
9039 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
9040 name = type_to_string (t);
9041
d63d0675
JK
9042 b->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
9043 core_addr_to_string (addr));
06a64a0b
TT
9044 xfree (name);
9045
d63d0675
JK
9046 b->exp_string = xstrprintf ("-location: %.*s",
9047 (int) (exp_end - exp_start), exp_start);
9048
06a64a0b
TT
9049 /* The above expression is in C. */
9050 b->language = language_c;
9051 }
9052 else
9053 b->exp_string = savestring (exp_start, exp_end - exp_start);
c906108c 9054 b->val = val;
fa4727a6 9055 b->val_valid = 1;
77b06cd7
TJB
9056 b->ops = &watchpoint_breakpoint_ops;
9057
e09342b5
TJB
9058 /* Use an exact watchpoint when there's only one memory region to be
9059 watched, and only one debug register is needed to watch it. */
9060 b->exact = target_exact_watchpoints && reg_cnt == 1;
9061
c906108c
SS
9062 if (cond_start)
9063 b->cond_string = savestring (cond_start, cond_end - cond_start);
9064 else
9065 b->cond_string = 0;
c5aa993b 9066
c906108c 9067 if (frame)
f6bc2008
PA
9068 {
9069 b->watchpoint_frame = get_frame_id (frame);
9070 b->watchpoint_thread = inferior_ptid;
9071 }
c906108c 9072 else
f6bc2008
PA
9073 {
9074 b->watchpoint_frame = null_frame_id;
9075 b->watchpoint_thread = null_ptid;
9076 }
c906108c 9077
d983da9c 9078 if (scope_breakpoint != NULL)
c906108c 9079 {
d983da9c
DJ
9080 /* The scope breakpoint is related to the watchpoint. We will
9081 need to act on them together. */
9082 b->related_breakpoint = scope_breakpoint;
9083 scope_breakpoint->related_breakpoint = b;
c906108c 9084 }
d983da9c 9085
06a64a0b
TT
9086 if (!just_location)
9087 value_free_to_mark (mark);
2d134ed3
PA
9088
9089 /* Finally update the new watchpoint. This creates the locations
9090 that should be inserted. */
9091 update_watchpoint (b, 1);
84f4c1fe
PM
9092 if (internal)
9093 /* Do not mention breakpoints with a negative number, but do
9094 notify observers. */
9095 observer_notify_breakpoint_created (b->number);
9096 else
9097 mention (b);
b60e7edf 9098 update_global_location_list (1);
c906108c
SS
9099}
9100
e09342b5
TJB
9101/* Return count of debug registers needed to watch the given expression.
9102 If EXACT_WATCHPOINTS is 1, then consider that only the address of
9103 the start of the watched region will be monitored (i.e., all accesses
9104 will be aligned). This uses less debug registers on some targets.
9105
9106 If the watchpoint cannot be handled in hardware return zero. */
c906108c 9107
c906108c 9108static int
e09342b5 9109can_use_hardware_watchpoint (struct value *v, int exact_watchpoints)
c906108c
SS
9110{
9111 int found_memory_cnt = 0;
2e70b7b9 9112 struct value *head = v;
c906108c
SS
9113
9114 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 9115 if (!can_use_hw_watchpoints)
c906108c 9116 return 0;
c5aa993b 9117
5c44784c
JM
9118 /* Make sure that the value of the expression depends only upon
9119 memory contents, and values computed from them within GDB. If we
9120 find any register references or function calls, we can't use a
9121 hardware watchpoint.
9122
9123 The idea here is that evaluating an expression generates a series
9124 of values, one holding the value of every subexpression. (The
9125 expression a*b+c has five subexpressions: a, b, a*b, c, and
9126 a*b+c.) GDB's values hold almost enough information to establish
9127 the criteria given above --- they identify memory lvalues,
9128 register lvalues, computed values, etcetera. So we can evaluate
9129 the expression, and then scan the chain of values that leaves
9130 behind to decide whether we can detect any possible change to the
9131 expression's final value using only hardware watchpoints.
9132
9133 However, I don't think that the values returned by inferior
9134 function calls are special in any way. So this function may not
9135 notice that an expression involving an inferior function call
9136 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 9137 for (; v; v = value_next (v))
c906108c 9138 {
5c44784c 9139 if (VALUE_LVAL (v) == lval_memory)
c906108c 9140 {
8464be76
DJ
9141 if (v != head && value_lazy (v))
9142 /* A lazy memory lvalue in the chain is one that GDB never
9143 needed to fetch; we either just used its address (e.g.,
9144 `a' in `a.b') or we never needed it at all (e.g., `a'
9145 in `a,b'). This doesn't apply to HEAD; if that is
9146 lazy then it was not readable, but watch it anyway. */
5c44784c 9147 ;
53a5351d 9148 else
5c44784c
JM
9149 {
9150 /* Ahh, memory we actually used! Check if we can cover
9151 it with hardware watchpoints. */
df407dfe 9152 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
9153
9154 /* We only watch structs and arrays if user asked for it
9155 explicitly, never if they just happen to appear in a
9156 middle of some value chain. */
9157 if (v == head
9158 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
9159 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
9160 {
42ae5230 9161 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
9162 int len;
9163 int num_regs;
9164
9165 len = (exact_watchpoints
9166 && is_scalar_type_recursive (vtype))?
9167 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 9168
e09342b5
TJB
9169 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
9170 if (!num_regs)
2e70b7b9
MS
9171 return 0;
9172 else
e09342b5 9173 found_memory_cnt += num_regs;
2e70b7b9 9174 }
5c44784c 9175 }
c5aa993b 9176 }
5086187c
AC
9177 else if (VALUE_LVAL (v) != not_lval
9178 && deprecated_value_modifiable (v) == 0)
38b6c3b3 9179 return 0; /* These are values from the history (e.g., $1). */
5086187c 9180 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 9181 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
9182 }
9183
9184 /* The expression itself looks suitable for using a hardware
9185 watchpoint, but give the target machine a chance to reject it. */
9186 return found_memory_cnt;
9187}
9188
8b93c638 9189void
84f4c1fe 9190watch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9191{
84f4c1fe 9192 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
9193}
9194
9195/* A helper function that looks for an argument at the start of a
9196 string. The argument must also either be at the end of the string,
9197 or be followed by whitespace. Returns 1 if it finds the argument,
9198 0 otherwise. If the argument is found, it updates *STR. */
9199
9200static int
9201check_for_argument (char **str, char *arg, int arg_len)
9202{
9203 if (strncmp (*str, arg, arg_len) == 0
9204 && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len])))
9205 {
9206 *str += arg_len;
9207 return 1;
9208 }
9209 return 0;
9210}
9211
9212/* A helper function that looks for the "-location" argument and then
9213 calls watch_command_1. */
9214
9215static void
9216watch_maybe_just_location (char *arg, int accessflag, int from_tty)
9217{
9218 int just_location = 0;
9219
9220 if (arg
9221 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
9222 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
9223 {
e9cafbcc 9224 arg = skip_spaces (arg);
06a64a0b
TT
9225 just_location = 1;
9226 }
9227
84f4c1fe 9228 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 9229}
8926118c 9230
c5aa993b 9231static void
fba45db2 9232watch_command (char *arg, int from_tty)
c906108c 9233{
06a64a0b 9234 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
9235}
9236
8b93c638 9237void
84f4c1fe 9238rwatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9239{
84f4c1fe 9240 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 9241}
8926118c 9242
c5aa993b 9243static void
fba45db2 9244rwatch_command (char *arg, int from_tty)
c906108c 9245{
06a64a0b 9246 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
9247}
9248
8b93c638 9249void
84f4c1fe 9250awatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 9251{
84f4c1fe 9252 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 9253}
8926118c 9254
c5aa993b 9255static void
fba45db2 9256awatch_command (char *arg, int from_tty)
c906108c 9257{
06a64a0b 9258 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 9259}
c906108c 9260\f
c5aa993b 9261
43ff13b4 9262/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
9263 because it uses the mechanisms of breakpoints. */
9264
bfec99b2
PA
9265struct until_break_command_continuation_args
9266{
9267 struct breakpoint *breakpoint;
9268 struct breakpoint *breakpoint2;
186c406b 9269 int thread_num;
bfec99b2
PA
9270};
9271
43ff13b4 9272/* This function is called by fetch_inferior_event via the
4a64f543 9273 cmd_continuation pointer, to complete the until command. It takes
43ff13b4 9274 care of cleaning up the temporary breakpoints set up by the until
4a64f543 9275 command. */
c2c6d25f 9276static void
604ead4a 9277until_break_command_continuation (void *arg)
43ff13b4 9278{
bfec99b2
PA
9279 struct until_break_command_continuation_args *a = arg;
9280
9281 delete_breakpoint (a->breakpoint);
9282 if (a->breakpoint2)
9283 delete_breakpoint (a->breakpoint2);
186c406b 9284 delete_longjmp_breakpoint (a->thread_num);
43ff13b4
JM
9285}
9286
c906108c 9287void
ae66c1fc 9288until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
9289{
9290 struct symtabs_and_lines sals;
9291 struct symtab_and_line sal;
206415a3 9292 struct frame_info *frame = get_selected_frame (NULL);
c906108c 9293 struct breakpoint *breakpoint;
f107f563 9294 struct breakpoint *breakpoint2 = NULL;
c906108c 9295 struct cleanup *old_chain;
186c406b
TT
9296 int thread;
9297 struct thread_info *tp;
c906108c
SS
9298
9299 clear_proceed_status ();
9300
9301 /* Set a breakpoint where the user wants it and at return from
4a64f543 9302 this function. */
c5aa993b 9303
c906108c
SS
9304 if (default_breakpoint_valid)
9305 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
7efd8fc2 9306 default_breakpoint_line, NULL, NULL);
c906108c 9307 else
7efd8fc2 9308 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, 0, NULL, NULL);
c5aa993b 9309
c906108c 9310 if (sals.nelts != 1)
8a3fe4f8 9311 error (_("Couldn't get information on specified line."));
c5aa993b 9312
c906108c 9313 sal = sals.sals[0];
4a64f543 9314 xfree (sals.sals); /* malloc'd, so freed. */
c5aa993b 9315
c906108c 9316 if (*arg)
8a3fe4f8 9317 error (_("Junk at end of arguments."));
c5aa993b 9318
c906108c 9319 resolve_sal_pc (&sal);
c5aa993b 9320
ae66c1fc
EZ
9321 if (anywhere)
9322 /* If the user told us to continue until a specified location,
9323 we don't specify a frame at which we need to stop. */
a6d9a66e
UW
9324 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
9325 null_frame_id, bp_until);
ae66c1fc 9326 else
4a64f543
MS
9327 /* Otherwise, specify the selected frame, because we want to stop
9328 only at the very same frame. */
a6d9a66e
UW
9329 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
9330 get_stack_frame_id (frame),
ae66c1fc 9331 bp_until);
c5aa993b 9332
f107f563 9333 old_chain = make_cleanup_delete_breakpoint (breakpoint);
c906108c 9334
186c406b
TT
9335 tp = inferior_thread ();
9336 thread = tp->num;
9337
ae66c1fc
EZ
9338 /* Keep within the current frame, or in frames called by the current
9339 one. */
edb3359d
DJ
9340
9341 if (frame_id_p (frame_unwind_caller_id (frame)))
c906108c 9342 {
edb3359d
DJ
9343 sal = find_pc_line (frame_unwind_caller_pc (frame), 0);
9344 sal.pc = frame_unwind_caller_pc (frame);
a6d9a66e
UW
9345 breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame),
9346 sal,
edb3359d 9347 frame_unwind_caller_id (frame),
f107f563
VP
9348 bp_until);
9349 make_cleanup_delete_breakpoint (breakpoint2);
186c406b
TT
9350
9351 set_longjmp_breakpoint (tp, frame_unwind_caller_id (frame));
9352 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 9353 }
c5aa993b 9354
c906108c 9355 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
f107f563 9356
4a64f543
MS
9357 /* If we are running asynchronously, and proceed call above has
9358 actually managed to start the target, arrange for breakpoints to
9359 be deleted when the target stops. Otherwise, we're already
9360 stopped and delete breakpoints via cleanup chain. */
f107f563 9361
8ea051c5 9362 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 9363 {
bfec99b2
PA
9364 struct until_break_command_continuation_args *args;
9365 args = xmalloc (sizeof (*args));
f107f563 9366
bfec99b2
PA
9367 args->breakpoint = breakpoint;
9368 args->breakpoint2 = breakpoint2;
186c406b 9369 args->thread_num = thread;
f107f563
VP
9370
9371 discard_cleanups (old_chain);
95e54da7
PA
9372 add_continuation (inferior_thread (),
9373 until_break_command_continuation, args,
604ead4a 9374 xfree);
f107f563
VP
9375 }
9376 else
c5aa993b 9377 do_cleanups (old_chain);
c906108c 9378}
ae66c1fc 9379
c906108c
SS
9380/* This function attempts to parse an optional "if <cond>" clause
9381 from the arg string. If one is not found, it returns NULL.
c5aa993b 9382
c906108c
SS
9383 Else, it returns a pointer to the condition string. (It does not
9384 attempt to evaluate the string against a particular block.) And,
9385 it updates arg to point to the first character following the parsed
4a64f543 9386 if clause in the arg string. */
53a5351d 9387
c906108c 9388static char *
fba45db2 9389ep_parse_optional_if_clause (char **arg)
c906108c 9390{
c5aa993b
JM
9391 char *cond_string;
9392
9393 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 9394 return NULL;
c5aa993b 9395
4a64f543 9396 /* Skip the "if" keyword. */
c906108c 9397 (*arg) += 2;
c5aa993b 9398
c906108c 9399 /* Skip any extra leading whitespace, and record the start of the
4a64f543 9400 condition string. */
e9cafbcc 9401 *arg = skip_spaces (*arg);
c906108c 9402 cond_string = *arg;
c5aa993b 9403
4a64f543
MS
9404 /* Assume that the condition occupies the remainder of the arg
9405 string. */
c906108c 9406 (*arg) += strlen (cond_string);
c5aa993b 9407
c906108c
SS
9408 return cond_string;
9409}
c5aa993b 9410
c906108c
SS
9411/* Commands to deal with catching events, such as signals, exceptions,
9412 process start/exit, etc. */
c5aa993b
JM
9413
9414typedef enum
9415{
44feb3ce
TT
9416 catch_fork_temporary, catch_vfork_temporary,
9417 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
9418}
9419catch_fork_kind;
9420
c906108c 9421static void
cc59ec59
MS
9422catch_fork_command_1 (char *arg, int from_tty,
9423 struct cmd_list_element *command)
c906108c 9424{
a6d9a66e 9425 struct gdbarch *gdbarch = get_current_arch ();
c5aa993b 9426 char *cond_string = NULL;
44feb3ce
TT
9427 catch_fork_kind fork_kind;
9428 int tempflag;
9429
9430 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
9431 tempflag = (fork_kind == catch_fork_temporary
9432 || fork_kind == catch_vfork_temporary);
c5aa993b 9433
44feb3ce
TT
9434 if (!arg)
9435 arg = "";
e9cafbcc 9436 arg = skip_spaces (arg);
c5aa993b 9437
c906108c 9438 /* The allowed syntax is:
c5aa993b
JM
9439 catch [v]fork
9440 catch [v]fork if <cond>
9441
4a64f543 9442 First, check if there's an if clause. */
c906108c 9443 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 9444
c906108c 9445 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 9446 error (_("Junk at end of arguments."));
c5aa993b 9447
c906108c 9448 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 9449 and enable reporting of such events. */
c5aa993b
JM
9450 switch (fork_kind)
9451 {
44feb3ce
TT
9452 case catch_fork_temporary:
9453 case catch_fork_permanent:
a6d9a66e 9454 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 9455 &catch_fork_breakpoint_ops);
c906108c 9456 break;
44feb3ce
TT
9457 case catch_vfork_temporary:
9458 case catch_vfork_permanent:
a6d9a66e 9459 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 9460 &catch_vfork_breakpoint_ops);
c906108c 9461 break;
c5aa993b 9462 default:
8a3fe4f8 9463 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 9464 break;
c5aa993b 9465 }
c906108c
SS
9466}
9467
9468static void
cc59ec59
MS
9469catch_exec_command_1 (char *arg, int from_tty,
9470 struct cmd_list_element *command)
c906108c 9471{
a6d9a66e 9472 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 9473 int tempflag;
c5aa993b 9474 char *cond_string = NULL;
c906108c 9475
44feb3ce
TT
9476 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9477
9478 if (!arg)
9479 arg = "";
e9cafbcc 9480 arg = skip_spaces (arg);
c906108c
SS
9481
9482 /* The allowed syntax is:
c5aa993b
JM
9483 catch exec
9484 catch exec if <cond>
c906108c 9485
4a64f543 9486 First, check if there's an if clause. */
c906108c
SS
9487 cond_string = ep_parse_optional_if_clause (&arg);
9488
9489 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 9490 error (_("Junk at end of arguments."));
c906108c
SS
9491
9492 /* If this target supports it, create an exec catchpoint
4a64f543 9493 and enable reporting of such events. */
a6d9a66e
UW
9494 create_catchpoint (gdbarch, tempflag, cond_string,
9495 &catch_exec_breakpoint_ops);
c906108c 9496}
c5aa993b 9497
3086aeae
DJ
9498static enum print_stop_action
9499print_exception_catchpoint (struct breakpoint *b)
9500{
ade92717 9501 int bp_temp, bp_throw;
3086aeae 9502
ade92717 9503 annotate_catchpoint (b->number);
3086aeae 9504
ade92717
AR
9505 bp_throw = strstr (b->addr_string, "throw") != NULL;
9506 if (b->loc->address != b->loc->requested_address)
9507 breakpoint_adjustment_warning (b->loc->requested_address,
9508 b->loc->address,
9509 b->number, 1);
df2b6d2d 9510 bp_temp = b->disposition == disp_del;
ade92717
AR
9511 ui_out_text (uiout,
9512 bp_temp ? "Temporary catchpoint "
9513 : "Catchpoint ");
9514 if (!ui_out_is_mi_like_p (uiout))
9515 ui_out_field_int (uiout, "bkptno", b->number);
9516 ui_out_text (uiout,
c0b37c48
AR
9517 bp_throw ? " (exception thrown), "
9518 : " (exception caught), ");
ade92717
AR
9519 if (ui_out_is_mi_like_p (uiout))
9520 {
9521 ui_out_field_string (uiout, "reason",
9522 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
9523 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
9524 ui_out_field_int (uiout, "bkptno", b->number);
9525 }
3086aeae
DJ
9526 return PRINT_SRC_AND_LOC;
9527}
9528
9529static void
cc59ec59
MS
9530print_one_exception_catchpoint (struct breakpoint *b,
9531 struct bp_location **last_loc)
3086aeae 9532{
79a45b7d 9533 struct value_print_options opts;
cc59ec59 9534
79a45b7d
TT
9535 get_user_print_options (&opts);
9536 if (opts.addressprint)
3086aeae
DJ
9537 {
9538 annotate_field (4);
604133b5
AR
9539 if (b->loc == NULL || b->loc->shlib_disabled)
9540 ui_out_field_string (uiout, "addr", "<PENDING>");
9541 else
5af949e3
UW
9542 ui_out_field_core_addr (uiout, "addr",
9543 b->loc->gdbarch, b->loc->address);
3086aeae
DJ
9544 }
9545 annotate_field (5);
604133b5 9546 if (b->loc)
a6d9a66e 9547 *last_loc = b->loc;
3086aeae
DJ
9548 if (strstr (b->addr_string, "throw") != NULL)
9549 ui_out_field_string (uiout, "what", "exception throw");
9550 else
9551 ui_out_field_string (uiout, "what", "exception catch");
9552}
9553
9554static void
9555print_mention_exception_catchpoint (struct breakpoint *b)
9556{
ade92717
AR
9557 int bp_temp;
9558 int bp_throw;
9559
df2b6d2d 9560 bp_temp = b->disposition == disp_del;
ade92717
AR
9561 bp_throw = strstr (b->addr_string, "throw") != NULL;
9562 ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ")
9563 : _("Catchpoint "));
9564 ui_out_field_int (uiout, "bkptno", b->number);
9565 ui_out_text (uiout, bp_throw ? _(" (throw)")
9566 : _(" (catch)"));
3086aeae
DJ
9567}
9568
6149aea9
PA
9569/* Implement the "print_recreate" breakpoint_ops method for throw and
9570 catch catchpoints. */
9571
9572static void
4a64f543
MS
9573print_recreate_exception_catchpoint (struct breakpoint *b,
9574 struct ui_file *fp)
6149aea9
PA
9575{
9576 int bp_temp;
9577 int bp_throw;
9578
9579 bp_temp = b->disposition == disp_del;
9580 bp_throw = strstr (b->addr_string, "throw") != NULL;
9581 fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch ");
9582 fprintf_unfiltered (fp, bp_throw ? "throw" : "catch");
9583}
9584
3086aeae 9585static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
ce78b96d
JB
9586 NULL, /* insert */
9587 NULL, /* remove */
9588 NULL, /* breakpoint_hit */
e09342b5 9589 NULL, /* resources_needed */
3086aeae
DJ
9590 print_exception_catchpoint,
9591 print_one_exception_catchpoint,
f1310107 9592 NULL, /* print_one_detail */
6149aea9
PA
9593 print_mention_exception_catchpoint,
9594 print_recreate_exception_catchpoint
3086aeae
DJ
9595};
9596
9597static int
9598handle_gnu_v3_exceptions (int tempflag, char *cond_string,
9599 enum exception_event_kind ex_event, int from_tty)
9600{
604133b5
AR
9601 char *trigger_func_name;
9602
3086aeae 9603 if (ex_event == EX_EVENT_CATCH)
604133b5 9604 trigger_func_name = "__cxa_begin_catch";
3086aeae 9605 else
604133b5 9606 trigger_func_name = "__cxa_throw";
3086aeae 9607
8cdf0e15
VP
9608 create_breakpoint (get_current_arch (),
9609 trigger_func_name, cond_string, -1,
9610 0 /* condition and thread are valid. */,
0fb4aa4b 9611 tempflag, bp_breakpoint,
8cdf0e15
VP
9612 0,
9613 AUTO_BOOLEAN_TRUE /* pending */,
9614 &gnu_v3_exception_catchpoint_ops, from_tty,
84f4c1fe
PM
9615 1 /* enabled */,
9616 0 /* internal */);
3086aeae 9617
3086aeae
DJ
9618 return 1;
9619}
9620
4a64f543 9621/* Deal with "catch catch" and "catch throw" commands. */
c906108c
SS
9622
9623static void
fba45db2
KB
9624catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
9625 int tempflag, int from_tty)
c906108c 9626{
c5aa993b 9627 char *cond_string = NULL;
c5aa993b 9628
44feb3ce
TT
9629 if (!arg)
9630 arg = "";
e9cafbcc 9631 arg = skip_spaces (arg);
c5aa993b 9632
c906108c
SS
9633 cond_string = ep_parse_optional_if_clause (&arg);
9634
9635 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 9636 error (_("Junk at end of arguments."));
c906108c 9637
059fb39f
PM
9638 if (ex_event != EX_EVENT_THROW
9639 && ex_event != EX_EVENT_CATCH)
8a3fe4f8 9640 error (_("Unsupported or unknown exception event; cannot catch it"));
c906108c 9641
3086aeae
DJ
9642 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
9643 return;
9644
8a3fe4f8 9645 warning (_("Unsupported with this platform/compiler combination."));
c906108c
SS
9646}
9647
44feb3ce
TT
9648/* Implementation of "catch catch" command. */
9649
9650static void
9651catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
9652{
9653 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 9654
44feb3ce
TT
9655 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
9656}
9657
9658/* Implementation of "catch throw" command. */
9659
9660static void
9661catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
9662{
9663 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 9664
44feb3ce
TT
9665 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
9666}
9667
f7f9143b
JB
9668/* Create a breakpoint struct for Ada exception catchpoints. */
9669
9670static void
a6d9a66e
UW
9671create_ada_exception_breakpoint (struct gdbarch *gdbarch,
9672 struct symtab_and_line sal,
f7f9143b
JB
9673 char *addr_string,
9674 char *exp_string,
9675 char *cond_string,
9676 struct expression *cond,
9677 struct breakpoint_ops *ops,
9678 int tempflag,
9679 int from_tty)
9680{
9681 struct breakpoint *b;
9682
9683 if (from_tty)
9684 {
5af949e3
UW
9685 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9686 if (!loc_gdbarch)
9687 loc_gdbarch = gdbarch;
9688
6c95b8df
PA
9689 describe_other_breakpoints (loc_gdbarch,
9690 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
9691 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
9692 version for exception catchpoints, because two catchpoints
9693 used for different exception names will use the same address.
9694 In this case, a "breakpoint ... also set at..." warning is
4a64f543 9695 unproductive. Besides, the warning phrasing is also a bit
f7f9143b
JB
9696 inapropriate, we should use the word catchpoint, and tell
9697 the user what type of catchpoint it is. The above is good
9698 enough for now, though. */
9699 }
9700
a6d9a66e 9701 b = set_raw_breakpoint (gdbarch, sal, bp_breakpoint);
f7f9143b
JB
9702 set_breakpoint_count (breakpoint_count + 1);
9703
9704 b->enable_state = bp_enabled;
9705 b->disposition = tempflag ? disp_del : disp_donttouch;
9706 b->number = breakpoint_count;
9707 b->ignore_count = 0;
511a6cd4 9708 b->loc->cond = cond;
f7f9143b
JB
9709 b->addr_string = addr_string;
9710 b->language = language_ada;
9711 b->cond_string = cond_string;
9712 b->exp_string = exp_string;
9713 b->thread = -1;
9714 b->ops = ops;
f7f9143b
JB
9715
9716 mention (b);
b60e7edf 9717 update_global_location_list (1);
f7f9143b
JB
9718}
9719
9720/* Implement the "catch exception" command. */
9721
9722static void
44feb3ce
TT
9723catch_ada_exception_command (char *arg, int from_tty,
9724 struct cmd_list_element *command)
f7f9143b 9725{
a6d9a66e 9726 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 9727 int tempflag;
f7f9143b 9728 struct symtab_and_line sal;
f7f9143b
JB
9729 char *addr_string = NULL;
9730 char *exp_string = NULL;
9731 char *cond_string = NULL;
9732 struct expression *cond = NULL;
9733 struct breakpoint_ops *ops = NULL;
9734
44feb3ce
TT
9735 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9736
9737 if (!arg)
9738 arg = "";
f7f9143b
JB
9739 sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
9740 &cond_string, &cond, &ops);
a6d9a66e 9741 create_ada_exception_breakpoint (gdbarch, sal, addr_string, exp_string,
f7f9143b
JB
9742 cond_string, cond, ops, tempflag,
9743 from_tty);
9744}
9745
a96d9b2e
SDJ
9746/* Cleanup function for a syscall filter list. */
9747static void
9748clean_up_filters (void *arg)
9749{
9750 VEC(int) *iter = *(VEC(int) **) arg;
9751 VEC_free (int, iter);
9752}
9753
9754/* Splits the argument using space as delimiter. Returns an xmalloc'd
9755 filter list, or NULL if no filtering is required. */
9756static VEC(int) *
9757catch_syscall_split_args (char *arg)
9758{
9759 VEC(int) *result = NULL;
9760 struct cleanup *cleanup = make_cleanup (clean_up_filters, &result);
9761
9762 while (*arg != '\0')
9763 {
9764 int i, syscall_number;
9765 char *endptr;
9766 char cur_name[128];
9767 struct syscall s;
9768
9769 /* Skip whitespace. */
9770 while (isspace (*arg))
9771 arg++;
9772
9773 for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i)
9774 cur_name[i] = arg[i];
9775 cur_name[i] = '\0';
9776 arg += i;
9777
9778 /* Check if the user provided a syscall name or a number. */
9779 syscall_number = (int) strtol (cur_name, &endptr, 0);
9780 if (*endptr == '\0')
bccd0dd2 9781 get_syscall_by_number (syscall_number, &s);
a96d9b2e
SDJ
9782 else
9783 {
9784 /* We have a name. Let's check if it's valid and convert it
9785 to a number. */
9786 get_syscall_by_name (cur_name, &s);
9787
9788 if (s.number == UNKNOWN_SYSCALL)
4a64f543
MS
9789 /* Here we have to issue an error instead of a warning,
9790 because GDB cannot do anything useful if there's no
9791 syscall number to be caught. */
a96d9b2e
SDJ
9792 error (_("Unknown syscall name '%s'."), cur_name);
9793 }
9794
9795 /* Ok, it's valid. */
9796 VEC_safe_push (int, result, s.number);
9797 }
9798
9799 discard_cleanups (cleanup);
9800 return result;
9801}
9802
9803/* Implement the "catch syscall" command. */
9804
9805static void
cc59ec59
MS
9806catch_syscall_command_1 (char *arg, int from_tty,
9807 struct cmd_list_element *command)
a96d9b2e
SDJ
9808{
9809 int tempflag;
9810 VEC(int) *filter;
9811 struct syscall s;
9812 struct gdbarch *gdbarch = get_current_arch ();
9813
9814 /* Checking if the feature if supported. */
9815 if (gdbarch_get_syscall_number_p (gdbarch) == 0)
9816 error (_("The feature 'catch syscall' is not supported on \
ea666128 9817this architecture yet."));
a96d9b2e
SDJ
9818
9819 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9820
e9cafbcc 9821 arg = skip_spaces (arg);
a96d9b2e
SDJ
9822
9823 /* We need to do this first "dummy" translation in order
9824 to get the syscall XML file loaded or, most important,
9825 to display a warning to the user if there's no XML file
9826 for his/her architecture. */
9827 get_syscall_by_number (0, &s);
9828
9829 /* The allowed syntax is:
9830 catch syscall
9831 catch syscall <name | number> [<name | number> ... <name | number>]
9832
9833 Let's check if there's a syscall name. */
9834
9835 if (arg != NULL)
9836 filter = catch_syscall_split_args (arg);
9837 else
9838 filter = NULL;
9839
9840 create_syscall_event_catchpoint (tempflag, filter,
9841 &catch_syscall_breakpoint_ops);
9842}
9843
f7f9143b
JB
9844/* Implement the "catch assert" command. */
9845
9846static void
3e43a32a
MS
9847catch_assert_command (char *arg, int from_tty,
9848 struct cmd_list_element *command)
f7f9143b 9849{
a6d9a66e 9850 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 9851 int tempflag;
f7f9143b
JB
9852 struct symtab_and_line sal;
9853 char *addr_string = NULL;
9854 struct breakpoint_ops *ops = NULL;
9855
44feb3ce
TT
9856 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9857
9858 if (!arg)
9859 arg = "";
f7f9143b 9860 sal = ada_decode_assert_location (arg, &addr_string, &ops);
a6d9a66e
UW
9861 create_ada_exception_breakpoint (gdbarch, sal, addr_string, NULL, NULL, NULL,
9862 ops, tempflag, from_tty);
f7f9143b
JB
9863}
9864
c906108c 9865static void
fba45db2 9866catch_command (char *arg, int from_tty)
c906108c 9867{
44feb3ce 9868 error (_("Catch requires an event name."));
c906108c
SS
9869}
9870\f
9871
9872static void
fba45db2 9873tcatch_command (char *arg, int from_tty)
c906108c 9874{
44feb3ce 9875 error (_("Catch requires an event name."));
c906108c
SS
9876}
9877
80f8a6eb 9878/* Delete breakpoints by address or line. */
c906108c
SS
9879
9880static void
fba45db2 9881clear_command (char *arg, int from_tty)
c906108c 9882{
d6e956e5
VP
9883 struct breakpoint *b;
9884 VEC(breakpoint_p) *found = 0;
9885 int ix;
c906108c
SS
9886 int default_match;
9887 struct symtabs_and_lines sals;
9888 struct symtab_and_line sal;
c906108c
SS
9889 int i;
9890
9891 if (arg)
9892 {
9893 sals = decode_line_spec (arg, 1);
9894 default_match = 0;
9895 }
9896 else
9897 {
c5aa993b 9898 sals.sals = (struct symtab_and_line *)
c906108c 9899 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 9900 make_cleanup (xfree, sals.sals);
4a64f543 9901 init_sal (&sal); /* Initialize to zeroes. */
c906108c
SS
9902 sal.line = default_breakpoint_line;
9903 sal.symtab = default_breakpoint_symtab;
9904 sal.pc = default_breakpoint_address;
6c95b8df 9905 sal.pspace = default_breakpoint_pspace;
c906108c 9906 if (sal.symtab == 0)
8a3fe4f8 9907 error (_("No source file specified."));
c906108c
SS
9908
9909 sals.sals[0] = sal;
9910 sals.nelts = 1;
9911
9912 default_match = 1;
9913 }
9914
4a64f543
MS
9915 /* We don't call resolve_sal_pc here. That's not as bad as it
9916 seems, because all existing breakpoints typically have both
9917 file/line and pc set. So, if clear is given file/line, we can
9918 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
9919
9920 We only support clearing given the address explicitly
9921 present in breakpoint table. Say, we've set breakpoint
4a64f543 9922 at file:line. There were several PC values for that file:line,
ed0616c6 9923 due to optimization, all in one block.
4a64f543
MS
9924
9925 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
9926 PC corresponding to the same file:line, the breakpoint won't
9927 be cleared. We probably can still clear the breakpoint, but
9928 since the other PC value is never presented to user, user
9929 can only find it by guessing, and it does not seem important
9930 to support that. */
9931
4a64f543
MS
9932 /* For each line spec given, delete bps which correspond to it. Do
9933 it in two passes, solely to preserve the current behavior that
9934 from_tty is forced true if we delete more than one
9935 breakpoint. */
c906108c 9936
80f8a6eb 9937 found = NULL;
c906108c
SS
9938 for (i = 0; i < sals.nelts; i++)
9939 {
9940 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
9941 If line given (pc == 0), clear all bpts on specified line.
9942 If defaulting, clear all bpts on default line
c906108c 9943 or at default pc.
c5aa993b
JM
9944
9945 defaulting sal.pc != 0 tests to do
9946
9947 0 1 pc
9948 1 1 pc _and_ line
9949 0 0 line
9950 1 0 <can't happen> */
c906108c
SS
9951
9952 sal = sals.sals[i];
c906108c 9953
4a64f543 9954 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 9955 ALL_BREAKPOINTS (b)
c5aa993b 9956 {
0d381245 9957 int match = 0;
4a64f543 9958 /* Are we going to delete b? */
cc60f2e3 9959 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
9960 {
9961 struct bp_location *loc = b->loc;
9962 for (; loc; loc = loc->next)
9963 {
6c95b8df
PA
9964 int pc_match = sal.pc
9965 && (loc->pspace == sal.pspace)
0d381245
VP
9966 && (loc->address == sal.pc)
9967 && (!section_is_overlay (loc->section)
9968 || loc->section == sal.section);
9969 int line_match = ((default_match || (0 == sal.pc))
9970 && b->source_file != NULL
9971 && sal.symtab != NULL
6c95b8df 9972 && sal.pspace == loc->pspace
0ba1096a
KT
9973 && filename_cmp (b->source_file,
9974 sal.symtab->filename) == 0
0d381245
VP
9975 && b->line_number == sal.line);
9976 if (pc_match || line_match)
9977 {
9978 match = 1;
9979 break;
9980 }
9981 }
9982 }
9983
9984 if (match)
d6e956e5 9985 VEC_safe_push(breakpoint_p, found, b);
c906108c 9986 }
80f8a6eb
MS
9987 }
9988 /* Now go thru the 'found' chain and delete them. */
d6e956e5 9989 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
9990 {
9991 if (arg)
8a3fe4f8 9992 error (_("No breakpoint at %s."), arg);
80f8a6eb 9993 else
8a3fe4f8 9994 error (_("No breakpoint at this line."));
80f8a6eb 9995 }
c906108c 9996
d6e956e5 9997 if (VEC_length(breakpoint_p, found) > 1)
4a64f543 9998 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 9999 if (from_tty)
a3f17187 10000 {
d6e956e5 10001 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
10002 printf_unfiltered (_("Deleted breakpoint "));
10003 else
10004 printf_unfiltered (_("Deleted breakpoints "));
10005 }
80f8a6eb 10006 breakpoints_changed ();
d6e956e5
VP
10007
10008 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 10009 {
c5aa993b 10010 if (from_tty)
d6e956e5
VP
10011 printf_unfiltered ("%d ", b->number);
10012 delete_breakpoint (b);
c906108c 10013 }
80f8a6eb
MS
10014 if (from_tty)
10015 putchar_unfiltered ('\n');
c906108c
SS
10016}
10017\f
10018/* Delete breakpoint in BS if they are `delete' breakpoints and
10019 all breakpoints that are marked for deletion, whether hit or not.
10020 This is called after any breakpoint is hit, or after errors. */
10021
10022void
fba45db2 10023breakpoint_auto_delete (bpstat bs)
c906108c 10024{
35df4500 10025 struct breakpoint *b, *b_tmp;
c906108c
SS
10026
10027 for (; bs; bs = bs->next)
f431efe5
PA
10028 if (bs->breakpoint_at
10029 && bs->breakpoint_at->disposition == disp_del
c906108c 10030 && bs->stop)
f431efe5 10031 delete_breakpoint (bs->breakpoint_at);
c906108c 10032
35df4500 10033 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 10034 {
b5de0fa7 10035 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
10036 delete_breakpoint (b);
10037 }
c906108c
SS
10038}
10039
4a64f543
MS
10040/* A comparison function for bp_location AP and BP being interfaced to
10041 qsort. Sort elements primarily by their ADDRESS (no matter what
10042 does breakpoint_address_is_meaningful say for its OWNER),
10043 secondarily by ordering first bp_permanent OWNERed elements and
10044 terciarily just ensuring the array is sorted stable way despite
10045 qsort being an instable algorithm. */
876fa593
JK
10046
10047static int
494cfb0f 10048bp_location_compare (const void *ap, const void *bp)
876fa593 10049{
494cfb0f
JK
10050 struct bp_location *a = *(void **) ap;
10051 struct bp_location *b = *(void **) bp;
2bdf28a0 10052 /* A and B come from existing breakpoints having non-NULL OWNER. */
876fa593
JK
10053 int a_perm = a->owner->enable_state == bp_permanent;
10054 int b_perm = b->owner->enable_state == bp_permanent;
10055
10056 if (a->address != b->address)
10057 return (a->address > b->address) - (a->address < b->address);
10058
10059 /* Sort permanent breakpoints first. */
10060 if (a_perm != b_perm)
10061 return (a_perm < b_perm) - (a_perm > b_perm);
10062
4a64f543
MS
10063 /* Make the user-visible order stable across GDB runs. Locations of
10064 the same breakpoint can be sorted in arbitrary order. */
876fa593
JK
10065
10066 if (a->owner->number != b->owner->number)
10067 return (a->owner->number > b->owner->number)
10068 - (a->owner->number < b->owner->number);
10069
10070 return (a > b) - (a < b);
10071}
10072
876fa593 10073/* Set bp_location_placed_address_before_address_max and
4a64f543
MS
10074 bp_location_shadow_len_after_address_max according to the current
10075 content of the bp_location array. */
f7545552
TT
10076
10077static void
876fa593 10078bp_location_target_extensions_update (void)
f7545552 10079{
876fa593
JK
10080 struct bp_location *bl, **blp_tmp;
10081
10082 bp_location_placed_address_before_address_max = 0;
10083 bp_location_shadow_len_after_address_max = 0;
10084
10085 ALL_BP_LOCATIONS (bl, blp_tmp)
10086 {
10087 CORE_ADDR start, end, addr;
10088
10089 if (!bp_location_has_shadow (bl))
10090 continue;
10091
10092 start = bl->target_info.placed_address;
10093 end = start + bl->target_info.shadow_len;
10094
10095 gdb_assert (bl->address >= start);
10096 addr = bl->address - start;
10097 if (addr > bp_location_placed_address_before_address_max)
10098 bp_location_placed_address_before_address_max = addr;
10099
10100 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
10101
10102 gdb_assert (bl->address < end);
10103 addr = end - bl->address;
10104 if (addr > bp_location_shadow_len_after_address_max)
10105 bp_location_shadow_len_after_address_max = addr;
10106 }
f7545552
TT
10107}
10108
4cd9bd08 10109/* If SHOULD_INSERT is false, do not insert any breakpoint locations
b60e7edf
PA
10110 into the inferior, only remove already-inserted locations that no
10111 longer should be inserted. Functions that delete a breakpoint or
10112 breakpoints should pass false, so that deleting a breakpoint
10113 doesn't have the side effect of inserting the locations of other
10114 breakpoints that are marked not-inserted, but should_be_inserted
10115 returns true on them.
10116
10117 This behaviour is useful is situations close to tear-down -- e.g.,
10118 after an exec, while the target still has execution, but breakpoint
10119 shadows of the previous executable image should *NOT* be restored
10120 to the new image; or before detaching, where the target still has
10121 execution and wants to delete breakpoints from GDB's lists, and all
10122 breakpoints had already been removed from the inferior. */
10123
0d381245 10124static void
b60e7edf 10125update_global_location_list (int should_insert)
0d381245 10126{
74960c60 10127 struct breakpoint *b;
876fa593 10128 struct bp_location **locp, *loc;
f7545552
TT
10129 struct cleanup *cleanups;
10130
2d134ed3
PA
10131 /* Used in the duplicates detection below. When iterating over all
10132 bp_locations, points to the first bp_location of a given address.
10133 Breakpoints and watchpoints of different types are never
10134 duplicates of each other. Keep one pointer for each type of
10135 breakpoint/watchpoint, so we only need to loop over all locations
10136 once. */
10137 struct bp_location *bp_loc_first; /* breakpoint */
10138 struct bp_location *wp_loc_first; /* hardware watchpoint */
10139 struct bp_location *awp_loc_first; /* access watchpoint */
10140 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 10141
4a64f543
MS
10142 /* Saved former bp_location array which we compare against the newly
10143 built bp_location from the current state of ALL_BREAKPOINTS. */
876fa593
JK
10144 struct bp_location **old_location, **old_locp;
10145 unsigned old_location_count;
10146
10147 old_location = bp_location;
10148 old_location_count = bp_location_count;
10149 bp_location = NULL;
10150 bp_location_count = 0;
10151 cleanups = make_cleanup (xfree, old_location);
0d381245 10152
74960c60 10153 ALL_BREAKPOINTS (b)
876fa593
JK
10154 for (loc = b->loc; loc; loc = loc->next)
10155 bp_location_count++;
10156
10157 bp_location = xmalloc (sizeof (*bp_location) * bp_location_count);
10158 locp = bp_location;
10159 ALL_BREAKPOINTS (b)
10160 for (loc = b->loc; loc; loc = loc->next)
10161 *locp++ = loc;
10162 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 10163 bp_location_compare);
876fa593
JK
10164
10165 bp_location_target_extensions_update ();
74960c60 10166
4a64f543
MS
10167 /* Identify bp_location instances that are no longer present in the
10168 new list, and therefore should be freed. Note that it's not
10169 necessary that those locations should be removed from inferior --
10170 if there's another location at the same address (previously
10171 marked as duplicate), we don't need to remove/insert the
10172 location.
876fa593 10173
4a64f543
MS
10174 LOCP is kept in sync with OLD_LOCP, each pointing to the current
10175 and former bp_location array state respectively. */
876fa593
JK
10176
10177 locp = bp_location;
10178 for (old_locp = old_location; old_locp < old_location + old_location_count;
10179 old_locp++)
74960c60 10180 {
876fa593 10181 struct bp_location *old_loc = *old_locp;
c7d46a38 10182 struct bp_location **loc2p;
876fa593 10183
4a64f543
MS
10184 /* Tells if 'old_loc' is found amoung the new locations. If
10185 not, we have to free it. */
c7d46a38 10186 int found_object = 0;
20874c92
VP
10187 /* Tells if the location should remain inserted in the target. */
10188 int keep_in_target = 0;
10189 int removed = 0;
876fa593 10190
4a64f543
MS
10191 /* Skip LOCP entries which will definitely never be needed.
10192 Stop either at or being the one matching OLD_LOC. */
876fa593 10193 while (locp < bp_location + bp_location_count
c7d46a38 10194 && (*locp)->address < old_loc->address)
876fa593 10195 locp++;
c7d46a38
PA
10196
10197 for (loc2p = locp;
10198 (loc2p < bp_location + bp_location_count
10199 && (*loc2p)->address == old_loc->address);
10200 loc2p++)
10201 {
10202 if (*loc2p == old_loc)
10203 {
10204 found_object = 1;
10205 break;
10206 }
10207 }
74960c60 10208
4a64f543
MS
10209 /* If this location is no longer present, and inserted, look if
10210 there's maybe a new location at the same address. If so,
10211 mark that one inserted, and don't remove this one. This is
10212 needed so that we don't have a time window where a breakpoint
10213 at certain location is not inserted. */
74960c60 10214
876fa593 10215 if (old_loc->inserted)
0d381245 10216 {
4a64f543
MS
10217 /* If the location is inserted now, we might have to remove
10218 it. */
74960c60 10219
876fa593 10220 if (found_object && should_be_inserted (old_loc))
74960c60 10221 {
4a64f543
MS
10222 /* The location is still present in the location list,
10223 and still should be inserted. Don't do anything. */
20874c92 10224 keep_in_target = 1;
74960c60
VP
10225 }
10226 else
10227 {
4a64f543
MS
10228 /* The location is either no longer present, or got
10229 disabled. See if there's another location at the
10230 same address, in which case we don't need to remove
10231 this one from the target. */
876fa593 10232
2bdf28a0 10233 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
10234 if (breakpoint_address_is_meaningful (old_loc->owner))
10235 {
876fa593 10236 for (loc2p = locp;
c7d46a38
PA
10237 (loc2p < bp_location + bp_location_count
10238 && (*loc2p)->address == old_loc->address);
876fa593
JK
10239 loc2p++)
10240 {
10241 struct bp_location *loc2 = *loc2p;
10242
2d134ed3 10243 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38
PA
10244 {
10245 /* For the sake of should_be_inserted.
4a64f543
MS
10246 Duplicates check below will fix up this
10247 later. */
c7d46a38 10248 loc2->duplicate = 0;
85d721b8
PA
10249
10250 /* Read watchpoint locations are switched to
10251 access watchpoints, if the former are not
10252 supported, but the latter are. */
10253 if (is_hardware_watchpoint (old_loc->owner))
10254 {
10255 gdb_assert (is_hardware_watchpoint (loc2->owner));
10256 loc2->watchpoint_type = old_loc->watchpoint_type;
10257 }
10258
c7d46a38
PA
10259 if (loc2 != old_loc && should_be_inserted (loc2))
10260 {
10261 loc2->inserted = 1;
10262 loc2->target_info = old_loc->target_info;
10263 keep_in_target = 1;
10264 break;
10265 }
876fa593
JK
10266 }
10267 }
10268 }
74960c60
VP
10269 }
10270
20874c92
VP
10271 if (!keep_in_target)
10272 {
876fa593 10273 if (remove_breakpoint (old_loc, mark_uninserted))
20874c92 10274 {
4a64f543
MS
10275 /* This is just about all we can do. We could keep
10276 this location on the global list, and try to
10277 remove it next time, but there's no particular
10278 reason why we will succeed next time.
20874c92 10279
4a64f543
MS
10280 Note that at this point, old_loc->owner is still
10281 valid, as delete_breakpoint frees the breakpoint
10282 only after calling us. */
3e43a32a
MS
10283 printf_filtered (_("warning: Error removing "
10284 "breakpoint %d\n"),
876fa593 10285 old_loc->owner->number);
20874c92
VP
10286 }
10287 removed = 1;
10288 }
0d381245 10289 }
74960c60
VP
10290
10291 if (!found_object)
1c5cfe86 10292 {
db82e815
PA
10293 if (removed && non_stop
10294 && breakpoint_address_is_meaningful (old_loc->owner)
10295 && !is_hardware_watchpoint (old_loc->owner))
20874c92 10296 {
db82e815
PA
10297 /* This location was removed from the target. In
10298 non-stop mode, a race condition is possible where
10299 we've removed a breakpoint, but stop events for that
10300 breakpoint are already queued and will arrive later.
10301 We apply an heuristic to be able to distinguish such
10302 SIGTRAPs from other random SIGTRAPs: we keep this
10303 breakpoint location for a bit, and will retire it
10304 after we see some number of events. The theory here
10305 is that reporting of events should, "on the average",
10306 be fair, so after a while we'll see events from all
10307 threads that have anything of interest, and no longer
10308 need to keep this breakpoint location around. We
10309 don't hold locations forever so to reduce chances of
10310 mistaking a non-breakpoint SIGTRAP for a breakpoint
10311 SIGTRAP.
10312
10313 The heuristic failing can be disastrous on
10314 decr_pc_after_break targets.
10315
10316 On decr_pc_after_break targets, like e.g., x86-linux,
10317 if we fail to recognize a late breakpoint SIGTRAP,
10318 because events_till_retirement has reached 0 too
10319 soon, we'll fail to do the PC adjustment, and report
10320 a random SIGTRAP to the user. When the user resumes
10321 the inferior, it will most likely immediately crash
2dec564e 10322 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
10323 corrupted, because of being resumed e.g., in the
10324 middle of a multi-byte instruction, or skipped a
10325 one-byte instruction. This was actually seen happen
10326 on native x86-linux, and should be less rare on
10327 targets that do not support new thread events, like
10328 remote, due to the heuristic depending on
10329 thread_count.
10330
10331 Mistaking a random SIGTRAP for a breakpoint trap
10332 causes similar symptoms (PC adjustment applied when
10333 it shouldn't), but then again, playing with SIGTRAPs
10334 behind the debugger's back is asking for trouble.
10335
10336 Since hardware watchpoint traps are always
10337 distinguishable from other traps, so we don't need to
10338 apply keep hardware watchpoint moribund locations
10339 around. We simply always ignore hardware watchpoint
10340 traps we can no longer explain. */
10341
876fa593
JK
10342 old_loc->events_till_retirement = 3 * (thread_count () + 1);
10343 old_loc->owner = NULL;
20874c92 10344
876fa593 10345 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
10346 }
10347 else
f431efe5
PA
10348 {
10349 old_loc->owner = NULL;
10350 decref_bp_location (&old_loc);
10351 }
20874c92 10352 }
74960c60 10353 }
1c5cfe86 10354
2d134ed3
PA
10355 /* Rescan breakpoints at the same address and section, marking the
10356 first one as "first" and any others as "duplicates". This is so
10357 that the bpt instruction is only inserted once. If we have a
10358 permanent breakpoint at the same place as BPT, make that one the
10359 official one, and the rest as duplicates. Permanent breakpoints
10360 are sorted first for the same address.
10361
10362 Do the same for hardware watchpoints, but also considering the
10363 watchpoint's type (regular/access/read) and length. */
876fa593 10364
2d134ed3
PA
10365 bp_loc_first = NULL;
10366 wp_loc_first = NULL;
10367 awp_loc_first = NULL;
10368 rwp_loc_first = NULL;
876fa593 10369 ALL_BP_LOCATIONS (loc, locp)
74960c60 10370 {
4a64f543
MS
10371 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
10372 non-NULL. */
876fa593 10373 struct breakpoint *b = loc->owner;
2d134ed3 10374 struct bp_location **loc_first_p;
876fa593
JK
10375
10376 if (b->enable_state == bp_disabled
10377 || b->enable_state == bp_call_disabled
10378 || b->enable_state == bp_startup_disabled
10379 || !loc->enabled
10380 || loc->shlib_disabled
15c3d785 10381 || !breakpoint_address_is_meaningful (b)
d77f58be 10382 || is_tracepoint (b))
876fa593
JK
10383 continue;
10384
10385 /* Permanent breakpoint should always be inserted. */
10386 if (b->enable_state == bp_permanent && ! loc->inserted)
10387 internal_error (__FILE__, __LINE__,
10388 _("allegedly permanent breakpoint is not "
10389 "actually inserted"));
10390
2d134ed3
PA
10391 if (b->type == bp_hardware_watchpoint)
10392 loc_first_p = &wp_loc_first;
10393 else if (b->type == bp_read_watchpoint)
10394 loc_first_p = &rwp_loc_first;
10395 else if (b->type == bp_access_watchpoint)
10396 loc_first_p = &awp_loc_first;
10397 else
10398 loc_first_p = &bp_loc_first;
10399
10400 if (*loc_first_p == NULL
10401 || (overlay_debugging && loc->section != (*loc_first_p)->section)
10402 || !breakpoint_locations_match (loc, *loc_first_p))
876fa593 10403 {
2d134ed3 10404 *loc_first_p = loc;
876fa593
JK
10405 loc->duplicate = 0;
10406 continue;
10407 }
10408
10409 loc->duplicate = 1;
10410
2d134ed3
PA
10411 if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted
10412 && b->enable_state != bp_permanent)
876fa593
JK
10413 internal_error (__FILE__, __LINE__,
10414 _("another breakpoint was inserted on top of "
10415 "a permanent breakpoint"));
0d381245 10416 }
74960c60 10417
50c71eaf 10418 if (breakpoints_always_inserted_mode () && should_insert
c35b1492 10419 && (have_live_inferiors ()
2567c7d9 10420 || (gdbarch_has_global_breakpoints (target_gdbarch))))
74960c60 10421 insert_breakpoint_locations ();
f7545552
TT
10422
10423 do_cleanups (cleanups);
74960c60
VP
10424}
10425
20874c92
VP
10426void
10427breakpoint_retire_moribund (void)
10428{
10429 struct bp_location *loc;
10430 int ix;
10431
10432 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
10433 if (--(loc->events_till_retirement) == 0)
10434 {
f431efe5 10435 decref_bp_location (&loc);
20874c92
VP
10436 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
10437 --ix;
10438 }
10439}
10440
74960c60 10441static void
b60e7edf 10442update_global_location_list_nothrow (int inserting)
74960c60
VP
10443{
10444 struct gdb_exception e;
cc59ec59 10445
74960c60 10446 TRY_CATCH (e, RETURN_MASK_ERROR)
b60e7edf 10447 update_global_location_list (inserting);
0d381245
VP
10448}
10449
f431efe5
PA
10450/* Clear BKP from a BPS. */
10451
a474d7c2 10452static void
f431efe5 10453bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
a474d7c2
PA
10454{
10455 bpstat bs;
cc59ec59 10456
a474d7c2 10457 for (bs = bps; bs; bs = bs->next)
f431efe5 10458 if (bs->breakpoint_at == bpt)
a474d7c2
PA
10459 {
10460 bs->breakpoint_at = NULL;
10461 bs->old_val = NULL;
10462 /* bs->commands will be freed later. */
10463 }
10464}
10465
10466/* Callback for iterate_over_threads. */
10467static int
f431efe5 10468bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
a474d7c2 10469{
f431efe5 10470 struct breakpoint *bpt = data;
cc59ec59 10471
16c381f0 10472 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
a474d7c2
PA
10473 return 0;
10474}
10475
53a5351d 10476/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 10477 structures. */
c906108c
SS
10478
10479void
fba45db2 10480delete_breakpoint (struct breakpoint *bpt)
c906108c 10481{
52f0bd74 10482 struct breakpoint *b;
c906108c 10483
8a3fe4f8 10484 gdb_assert (bpt != NULL);
c906108c 10485
4a64f543
MS
10486 /* Has this bp already been deleted? This can happen because
10487 multiple lists can hold pointers to bp's. bpstat lists are
10488 especial culprits.
10489
10490 One example of this happening is a watchpoint's scope bp. When
10491 the scope bp triggers, we notice that the watchpoint is out of
10492 scope, and delete it. We also delete its scope bp. But the
10493 scope bp is marked "auto-deleting", and is already on a bpstat.
10494 That bpstat is then checked for auto-deleting bp's, which are
10495 deleted.
10496
10497 A real solution to this problem might involve reference counts in
10498 bp's, and/or giving them pointers back to their referencing
10499 bpstat's, and teaching delete_breakpoint to only free a bp's
10500 storage when no more references were extent. A cheaper bandaid
10501 was chosen. */
c906108c
SS
10502 if (bpt->type == bp_none)
10503 return;
10504
4a64f543
MS
10505 /* At least avoid this stale reference until the reference counting
10506 of breakpoints gets resolved. */
d0fb5eae 10507 if (bpt->related_breakpoint != bpt)
e5a0a904 10508 {
d0fb5eae
JK
10509 struct breakpoint *related;
10510
10511 if (bpt->type == bp_watchpoint_scope)
10512 watchpoint_del_at_next_stop (bpt->related_breakpoint);
10513 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
10514 watchpoint_del_at_next_stop (bpt);
10515
10516 /* Unlink bpt from the bpt->related_breakpoint ring. */
10517 for (related = bpt; related->related_breakpoint != bpt;
10518 related = related->related_breakpoint);
10519 related->related_breakpoint = bpt->related_breakpoint;
10520 bpt->related_breakpoint = bpt;
e5a0a904
JK
10521 }
10522
383f836e 10523 observer_notify_breakpoint_deleted (bpt->number);
c906108c 10524
c906108c
SS
10525 if (breakpoint_chain == bpt)
10526 breakpoint_chain = bpt->next;
10527
c906108c
SS
10528 ALL_BREAKPOINTS (b)
10529 if (b->next == bpt)
c5aa993b
JM
10530 {
10531 b->next = bpt->next;
10532 break;
10533 }
c906108c 10534
9add0f1b 10535 decref_counted_command_line (&bpt->commands);
60e1c644
PA
10536 xfree (bpt->cond_string);
10537 xfree (bpt->cond_exp);
10538 xfree (bpt->addr_string);
f1310107 10539 xfree (bpt->addr_string_range_end);
60e1c644
PA
10540 xfree (bpt->exp);
10541 xfree (bpt->exp_string);
d63d0675 10542 xfree (bpt->exp_string_reparse);
60e1c644
PA
10543 value_free (bpt->val);
10544 xfree (bpt->source_file);
10545 xfree (bpt->exec_pathname);
a96d9b2e 10546 clean_up_filters (&bpt->syscalls_to_be_caught);
c906108c 10547
f431efe5
PA
10548
10549 /* Be sure no bpstat's are pointing at the breakpoint after it's
10550 been freed. */
10551 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
10552 in all threeds for now. Note that we cannot just remove bpstats
10553 pointing at bpt from the stop_bpstat list entirely, as breakpoint
10554 commands are associated with the bpstat; if we remove it here,
10555 then the later call to bpstat_do_actions (&stop_bpstat); in
10556 event-top.c won't do anything, and temporary breakpoints with
10557 commands won't work. */
10558
10559 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
10560
4a64f543
MS
10561 /* Now that breakpoint is removed from breakpoint list, update the
10562 global location list. This will remove locations that used to
10563 belong to this breakpoint. Do this before freeing the breakpoint
10564 itself, since remove_breakpoint looks at location's owner. It
10565 might be better design to have location completely
10566 self-contained, but it's not the case now. */
b60e7edf 10567 update_global_location_list (0);
74960c60
VP
10568
10569
4a64f543
MS
10570 /* On the chance that someone will soon try again to delete this
10571 same bp, we mark it as deleted before freeing its storage. */
c906108c
SS
10572 bpt->type = bp_none;
10573
b8c9b27d 10574 xfree (bpt);
c906108c
SS
10575}
10576
4d6140d9
AC
10577static void
10578do_delete_breakpoint_cleanup (void *b)
10579{
10580 delete_breakpoint (b);
10581}
10582
10583struct cleanup *
10584make_cleanup_delete_breakpoint (struct breakpoint *b)
10585{
10586 return make_cleanup (do_delete_breakpoint_cleanup, b);
10587}
10588
95a42b64
TT
10589/* A callback for map_breakpoint_numbers that calls
10590 delete_breakpoint. */
10591
10592static void
10593do_delete_breakpoint (struct breakpoint *b, void *ignore)
10594{
10595 delete_breakpoint (b);
10596}
10597
c906108c 10598void
fba45db2 10599delete_command (char *arg, int from_tty)
c906108c 10600{
35df4500 10601 struct breakpoint *b, *b_tmp;
c906108c 10602
ea9365bb
TT
10603 dont_repeat ();
10604
c906108c
SS
10605 if (arg == 0)
10606 {
10607 int breaks_to_delete = 0;
10608
10609 /* Delete all breakpoints if no argument.
4a64f543
MS
10610 Do not delete internal or call-dummy breakpoints, these have
10611 to be deleted with an explicit breakpoint number argument. */
c5aa993b
JM
10612 ALL_BREAKPOINTS (b)
10613 {
059fb39f 10614 if (b->type != bp_call_dummy
aa7d318d 10615 && b->type != bp_std_terminate
059fb39f 10616 && b->type != bp_shlib_event
4efc6507 10617 && b->type != bp_jit_event
059fb39f
PM
10618 && b->type != bp_thread_event
10619 && b->type != bp_overlay_event
0fd8e87f 10620 && b->type != bp_longjmp_master
aa7d318d 10621 && b->type != bp_std_terminate_master
186c406b 10622 && b->type != bp_exception_master
059fb39f 10623 && b->number >= 0)
973d738b
DJ
10624 {
10625 breaks_to_delete = 1;
10626 break;
10627 }
c5aa993b 10628 }
c906108c
SS
10629
10630 /* Ask user only if there are some breakpoints to delete. */
10631 if (!from_tty
e2e0b3e5 10632 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 10633 {
35df4500 10634 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 10635 {
059fb39f 10636 if (b->type != bp_call_dummy
aa7d318d 10637 && b->type != bp_std_terminate
059fb39f
PM
10638 && b->type != bp_shlib_event
10639 && b->type != bp_thread_event
4efc6507 10640 && b->type != bp_jit_event
059fb39f 10641 && b->type != bp_overlay_event
0fd8e87f 10642 && b->type != bp_longjmp_master
aa7d318d 10643 && b->type != bp_std_terminate_master
186c406b 10644 && b->type != bp_exception_master
059fb39f 10645 && b->number >= 0)
c5aa993b
JM
10646 delete_breakpoint (b);
10647 }
c906108c
SS
10648 }
10649 }
10650 else
95a42b64 10651 map_breakpoint_numbers (arg, do_delete_breakpoint, NULL);
c906108c
SS
10652}
10653
0d381245
VP
10654static int
10655all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 10656{
0d381245
VP
10657 for (; loc; loc = loc->next)
10658 if (!loc->shlib_disabled)
10659 return 0;
10660 return 1;
fe3f5fa8
VP
10661}
10662
776592bf
DE
10663/* Subroutine of update_breakpoint_locations to simplify it.
10664 Return non-zero if multiple fns in list LOC have the same name.
10665 Null names are ignored. */
10666
10667static int
10668ambiguous_names_p (struct bp_location *loc)
10669{
10670 struct bp_location *l;
10671 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
10672 (int (*) (const void *,
10673 const void *)) streq,
776592bf
DE
10674 NULL, xcalloc, xfree);
10675
10676 for (l = loc; l != NULL; l = l->next)
10677 {
10678 const char **slot;
10679 const char *name = l->function_name;
10680
10681 /* Allow for some names to be NULL, ignore them. */
10682 if (name == NULL)
10683 continue;
10684
10685 slot = (const char **) htab_find_slot (htab, (const void *) name,
10686 INSERT);
4a64f543
MS
10687 /* NOTE: We can assume slot != NULL here because xcalloc never
10688 returns NULL. */
776592bf
DE
10689 if (*slot != NULL)
10690 {
10691 htab_delete (htab);
10692 return 1;
10693 }
10694 *slot = name;
10695 }
10696
10697 htab_delete (htab);
10698 return 0;
10699}
10700
0fb4aa4b
PA
10701/* When symbols change, it probably means the sources changed as well,
10702 and it might mean the static tracepoint markers are no longer at
10703 the same address or line numbers they used to be at last we
10704 checked. Losing your static tracepoints whenever you rebuild is
10705 undesirable. This function tries to resync/rematch gdb static
10706 tracepoints with the markers on the target, for static tracepoints
10707 that have not been set by marker id. Static tracepoint that have
10708 been set by marker id are reset by marker id in breakpoint_re_set.
10709 The heuristic is:
10710
10711 1) For a tracepoint set at a specific address, look for a marker at
10712 the old PC. If one is found there, assume to be the same marker.
10713 If the name / string id of the marker found is different from the
10714 previous known name, assume that means the user renamed the marker
10715 in the sources, and output a warning.
10716
10717 2) For a tracepoint set at a given line number, look for a marker
10718 at the new address of the old line number. If one is found there,
10719 assume to be the same marker. If the name / string id of the
10720 marker found is different from the previous known name, assume that
10721 means the user renamed the marker in the sources, and output a
10722 warning.
10723
10724 3) If a marker is no longer found at the same address or line, it
10725 may mean the marker no longer exists. But it may also just mean
10726 the code changed a bit. Maybe the user added a few lines of code
10727 that made the marker move up or down (in line number terms). Ask
10728 the target for info about the marker with the string id as we knew
10729 it. If found, update line number and address in the matching
10730 static tracepoint. This will get confused if there's more than one
10731 marker with the same ID (possible in UST, although unadvised
10732 precisely because it confuses tools). */
10733
10734static struct symtab_and_line
10735update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
10736{
10737 struct static_tracepoint_marker marker;
10738 CORE_ADDR pc;
10739 int i;
10740
10741 pc = sal.pc;
10742 if (sal.line)
10743 find_line_pc (sal.symtab, sal.line, &pc);
10744
10745 if (target_static_tracepoint_marker_at (pc, &marker))
10746 {
10747 if (strcmp (b->static_trace_marker_id, marker.str_id) != 0)
10748 warning (_("static tracepoint %d changed probed marker from %s to %s"),
10749 b->number,
10750 b->static_trace_marker_id, marker.str_id);
10751
10752 xfree (b->static_trace_marker_id);
10753 b->static_trace_marker_id = xstrdup (marker.str_id);
10754 release_static_tracepoint_marker (&marker);
10755
10756 return sal;
10757 }
10758
10759 /* Old marker wasn't found on target at lineno. Try looking it up
10760 by string ID. */
10761 if (!sal.explicit_pc
10762 && sal.line != 0
10763 && sal.symtab != NULL
10764 && b->static_trace_marker_id != NULL)
10765 {
10766 VEC(static_tracepoint_marker_p) *markers;
10767
10768 markers
10769 = target_static_tracepoint_markers_by_strid (b->static_trace_marker_id);
10770
10771 if (!VEC_empty(static_tracepoint_marker_p, markers))
10772 {
10773 struct symtab_and_line sal;
10774 struct symbol *sym;
10775 struct static_tracepoint_marker *marker;
10776
10777 marker = VEC_index (static_tracepoint_marker_p, markers, 0);
10778
10779 xfree (b->static_trace_marker_id);
10780 b->static_trace_marker_id = xstrdup (marker->str_id);
10781
10782 warning (_("marker for static tracepoint %d (%s) not "
10783 "found at previous line number"),
10784 b->number, b->static_trace_marker_id);
10785
10786 init_sal (&sal);
10787
10788 sal.pc = marker->address;
10789
10790 sal = find_pc_line (marker->address, 0);
10791 sym = find_pc_sect_function (marker->address, NULL);
10792 ui_out_text (uiout, "Now in ");
10793 if (sym)
10794 {
10795 ui_out_field_string (uiout, "func",
10796 SYMBOL_PRINT_NAME (sym));
10797 ui_out_text (uiout, " at ");
10798 }
10799 ui_out_field_string (uiout, "file", sal.symtab->filename);
10800 ui_out_text (uiout, ":");
10801
10802 if (ui_out_is_mi_like_p (uiout))
10803 {
10804 char *fullname = symtab_to_fullname (sal.symtab);
10805
10806 if (fullname)
10807 ui_out_field_string (uiout, "fullname", fullname);
10808 }
10809
10810 ui_out_field_int (uiout, "line", sal.line);
10811 ui_out_text (uiout, "\n");
10812
10813 b->line_number = sal.line;
10814
10815 xfree (b->source_file);
10816 if (sym)
10817 b->source_file = xstrdup (sal.symtab->filename);
10818 else
10819 b->source_file = NULL;
10820
10821 xfree (b->addr_string);
10822 b->addr_string = xstrprintf ("%s:%d",
10823 sal.symtab->filename, b->line_number);
10824
10825 /* Might be nice to check if function changed, and warn if
10826 so. */
10827
10828 release_static_tracepoint_marker (marker);
10829 }
10830 }
10831 return sal;
10832}
10833
f1310107
TJB
10834/* Create new breakpoint locations for B (a hardware or software breakpoint)
10835 based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is
10836 a ranged breakpoint. */
10837
0e30163f 10838void
0d381245 10839update_breakpoint_locations (struct breakpoint *b,
f1310107
TJB
10840 struct symtabs_and_lines sals,
10841 struct symtabs_and_lines sals_end)
fe3f5fa8
VP
10842{
10843 int i;
0d381245
VP
10844 struct bp_location *existing_locations = b->loc;
10845
f1310107
TJB
10846 /* Ranged breakpoints have only one start location and one end location. */
10847 gdb_assert (sals_end.nelts == 0 || (sals.nelts == 1 && sals_end.nelts == 1));
10848
4a64f543
MS
10849 /* If there's no new locations, and all existing locations are
10850 pending, don't do anything. This optimizes the common case where
10851 all locations are in the same shared library, that was unloaded.
10852 We'd like to retain the location, so that when the library is
10853 loaded again, we don't loose the enabled/disabled status of the
10854 individual locations. */
0d381245 10855 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
10856 return;
10857
fe3f5fa8
VP
10858 b->loc = NULL;
10859
0d381245 10860 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 10861 {
0d381245 10862 struct bp_location *new_loc =
39d61571 10863 add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 10864
0d381245
VP
10865 /* Reparse conditions, they might contain references to the
10866 old symtab. */
10867 if (b->cond_string != NULL)
10868 {
f1310107 10869 char *s;
0d381245 10870 struct gdb_exception e;
fe3f5fa8 10871
0d381245
VP
10872 s = b->cond_string;
10873 TRY_CATCH (e, RETURN_MASK_ERROR)
10874 {
10875 new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
10876 0);
10877 }
10878 if (e.reason < 0)
10879 {
3e43a32a
MS
10880 warning (_("failed to reevaluate condition "
10881 "for breakpoint %d: %s"),
0d381245
VP
10882 b->number, e.message);
10883 new_loc->enabled = 0;
10884 }
10885 }
fe3f5fa8 10886
0d381245
VP
10887 if (b->source_file != NULL)
10888 xfree (b->source_file);
10889 if (sals.sals[i].symtab == NULL)
10890 b->source_file = NULL;
10891 else
1b36a34b 10892 b->source_file = xstrdup (sals.sals[i].symtab->filename);
fe3f5fa8 10893
0d381245
VP
10894 if (b->line_number == 0)
10895 b->line_number = sals.sals[i].line;
f1310107
TJB
10896
10897 if (sals_end.nelts)
10898 {
10899 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
10900
10901 new_loc->length = end - sals.sals[0].pc + 1;
10902 }
0d381245 10903 }
fe3f5fa8 10904
514f746b
AR
10905 /* Update locations of permanent breakpoints. */
10906 if (b->enable_state == bp_permanent)
10907 make_breakpoint_permanent (b);
10908
4a64f543
MS
10909 /* If possible, carry over 'disable' status from existing
10910 breakpoints. */
0d381245
VP
10911 {
10912 struct bp_location *e = existing_locations;
776592bf
DE
10913 /* If there are multiple breakpoints with the same function name,
10914 e.g. for inline functions, comparing function names won't work.
10915 Instead compare pc addresses; this is just a heuristic as things
10916 may have moved, but in practice it gives the correct answer
10917 often enough until a better solution is found. */
10918 int have_ambiguous_names = ambiguous_names_p (b->loc);
10919
0d381245
VP
10920 for (; e; e = e->next)
10921 {
10922 if (!e->enabled && e->function_name)
10923 {
10924 struct bp_location *l = b->loc;
776592bf
DE
10925 if (have_ambiguous_names)
10926 {
10927 for (; l; l = l->next)
f1310107 10928 if (breakpoint_locations_match (e, l))
776592bf
DE
10929 {
10930 l->enabled = 0;
10931 break;
10932 }
10933 }
10934 else
10935 {
10936 for (; l; l = l->next)
10937 if (l->function_name
10938 && strcmp (e->function_name, l->function_name) == 0)
10939 {
10940 l->enabled = 0;
10941 break;
10942 }
10943 }
0d381245
VP
10944 }
10945 }
10946 }
fe3f5fa8 10947
b60e7edf 10948 update_global_location_list (1);
fe3f5fa8
VP
10949}
10950
ef23e705
TJB
10951/* Find the SaL locations corresponding to the given ADDR_STRING.
10952 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
10953
10954static struct symtabs_and_lines
10955addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found)
10956{
10957 char *s;
10958 int marker_spec, not_found;
02d20e4a 10959 struct symtabs_and_lines sals = {0};
ef23e705
TJB
10960 struct gdb_exception e;
10961
10962 s = addr_string;
10963 marker_spec = b->type == bp_static_tracepoint && is_marker_spec (s);
10964
10965 TRY_CATCH (e, RETURN_MASK_ERROR)
10966 {
10967 if (marker_spec)
10968 {
10969 sals = decode_static_tracepoint_spec (&s);
10970 if (sals.nelts > b->static_trace_marker_id_idx)
10971 {
10972 sals.sals[0] = sals.sals[b->static_trace_marker_id_idx];
10973 sals.nelts = 1;
10974 }
10975 else
10976 error (_("marker %s not found"), b->static_trace_marker_id);
10977 }
10978 else
10979 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0,
10980 NULL, &not_found);
10981 }
10982 if (e.reason < 0)
10983 {
10984 int not_found_and_ok = 0;
10985 /* For pending breakpoints, it's expected that parsing will
10986 fail until the right shared library is loaded. User has
10987 already told to create pending breakpoints and don't need
10988 extra messages. If breakpoint is in bp_shlib_disabled
10989 state, then user already saw the message about that
10990 breakpoint being disabled, and don't want to see more
10991 errors. */
10992 if (not_found
10993 && (b->condition_not_parsed
10994 || (b->loc && b->loc->shlib_disabled)
10995 || b->enable_state == bp_disabled))
10996 not_found_and_ok = 1;
10997
10998 if (!not_found_and_ok)
10999 {
11000 /* We surely don't want to warn about the same breakpoint
11001 10 times. One solution, implemented here, is disable
11002 the breakpoint on error. Another solution would be to
11003 have separate 'warning emitted' flag. Since this
11004 happens only when a binary has changed, I don't know
11005 which approach is better. */
11006 b->enable_state = bp_disabled;
11007 throw_exception (e);
11008 }
11009 }
11010
11011 if (!not_found)
11012 {
11013 gdb_assert (sals.nelts == 1);
11014
11015 resolve_sal_pc (&sals.sals[0]);
11016 if (b->condition_not_parsed && s && s[0])
11017 {
11018 char *cond_string = 0;
11019 int thread = -1;
11020 int task = 0;
11021
11022 find_condition_and_thread (s, sals.sals[0].pc,
11023 &cond_string, &thread, &task);
11024 if (cond_string)
11025 b->cond_string = cond_string;
11026 b->thread = thread;
11027 b->task = task;
11028 b->condition_not_parsed = 0;
11029 }
11030
11031 if (b->type == bp_static_tracepoint && !marker_spec)
11032 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
11033 }
11034
11035 *found = !not_found;
11036
11037 return sals;
11038}
11039
11040/* Reevaluate a hardware or software breakpoint and recreate its locations.
11041 This is necessary after symbols are read (e.g., an executable or DSO
11042 was loaded, or the inferior just started). */
11043
11044static void
11045re_set_breakpoint (struct breakpoint *b)
11046{
11047 int found;
f1310107 11048 struct symtabs_and_lines sals, sals_end;
ef23e705 11049 struct symtabs_and_lines expanded = {0};
f1310107 11050 struct symtabs_and_lines expanded_end = {0};
ef23e705
TJB
11051 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
11052
11053 input_radix = b->input_radix;
11054 save_current_space_and_thread ();
11055 switch_to_program_space_and_thread (b->pspace);
11056 set_language (b->language);
11057
11058 sals = addr_string_to_sals (b, b->addr_string, &found);
11059 if (found)
11060 {
11061 make_cleanup (xfree, sals.sals);
11062 expanded = expand_line_sal_maybe (sals.sals[0]);
11063 }
11064
f1310107
TJB
11065 if (b->addr_string_range_end)
11066 {
11067 sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found);
11068 if (found)
11069 {
11070 make_cleanup (xfree, sals_end.sals);
11071 expanded_end = expand_line_sal_maybe (sals_end.sals[0]);
11072 }
11073 }
11074
11075 update_breakpoint_locations (b, expanded, expanded_end);
ef23e705
TJB
11076 do_cleanups (cleanups);
11077}
11078
c906108c
SS
11079/* Reset a breakpoint given it's struct breakpoint * BINT.
11080 The value we return ends up being the return value from catch_errors.
11081 Unused in this case. */
11082
11083static int
4efb68b1 11084breakpoint_re_set_one (void *bint)
c906108c 11085{
4a64f543 11086 /* Get past catch_errs. */
53a5351d 11087 struct breakpoint *b = (struct breakpoint *) bint;
c906108c
SS
11088
11089 switch (b->type)
11090 {
11091 case bp_none:
8a3fe4f8 11092 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
53a5351d 11093 b->number);
c906108c
SS
11094 return 0;
11095 case bp_breakpoint:
11096 case bp_hardware_breakpoint:
1042e4c0 11097 case bp_tracepoint:
7a697b8d 11098 case bp_fast_tracepoint:
0fb4aa4b 11099 case bp_static_tracepoint:
0e30163f 11100 case bp_gnu_ifunc_resolver:
8bea4e01
UW
11101 /* Do not attempt to re-set breakpoints disabled during startup. */
11102 if (b->enable_state == bp_startup_disabled)
11103 return 0;
11104
c906108c
SS
11105 if (b->addr_string == NULL)
11106 {
4a64f543 11107 /* Anything without a string can't be re-set. */
c906108c
SS
11108 delete_breakpoint (b);
11109 return 0;
11110 }
c906108c 11111
ef23e705 11112 re_set_breakpoint (b);
c906108c
SS
11113 break;
11114
11115 case bp_watchpoint:
11116 case bp_hardware_watchpoint:
11117 case bp_read_watchpoint:
11118 case bp_access_watchpoint:
4a64f543
MS
11119 /* Watchpoint can be either on expression using entirely global
11120 variables, or it can be on local variables.
11121
11122 Watchpoints of the first kind are never auto-deleted, and
11123 even persist across program restarts. Since they can use
11124 variables from shared libraries, we need to reparse
11125 expression as libraries are loaded and unloaded.
11126
11127 Watchpoints on local variables can also change meaning as
11128 result of solib event. For example, if a watchpoint uses
11129 both a local and a global variables in expression, it's a
11130 local watchpoint, but unloading of a shared library will make
11131 the expression invalid. This is not a very common use case,
11132 but we still re-evaluate expression, to avoid surprises to
11133 the user.
0b3de036
VP
11134
11135 Note that for local watchpoints, we re-evaluate it only if
11136 watchpoints frame id is still valid. If it's not, it means
4a64f543
MS
11137 the watchpoint is out of scope and will be deleted soon. In
11138 fact, I'm not sure we'll ever be called in this case.
0b3de036
VP
11139
11140 If a local watchpoint's frame id is still valid, then
4a64f543 11141 b->exp_valid_block is likewise valid, and we can safely use it.
0b3de036
VP
11142
11143 Don't do anything about disabled watchpoints, since they will
11144 be reevaluated again when enabled. */
a5606eee 11145 update_watchpoint (b, 1 /* reparse */);
c906108c 11146 break;
c5aa993b
JM
11147 /* We needn't really do anything to reset these, since the mask
11148 that requests them is unaffected by e.g., new libraries being
4a64f543 11149 loaded. */
ce78b96d 11150 case bp_catchpoint:
c906108c 11151 break;
c5aa993b 11152
c906108c 11153 default:
a3f17187 11154 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
c906108c 11155 /* fall through */
0fd8e87f
UW
11156 /* Delete overlay event and longjmp master breakpoints; they will be
11157 reset later by breakpoint_re_set. */
1900040c 11158 case bp_overlay_event:
0fd8e87f 11159 case bp_longjmp_master:
aa7d318d 11160 case bp_std_terminate_master:
186c406b 11161 case bp_exception_master:
c906108c
SS
11162 delete_breakpoint (b);
11163 break;
11164
c5aa993b
JM
11165 /* This breakpoint is special, it's set up when the inferior
11166 starts and we really don't want to touch it. */
c906108c
SS
11167 case bp_shlib_event:
11168
c4093a6a
JM
11169 /* Like bp_shlib_event, this breakpoint type is special.
11170 Once it is set up, we do not want to touch it. */
11171 case bp_thread_event:
11172
4a64f543
MS
11173 /* Keep temporary breakpoints, which can be encountered when we
11174 step over a dlopen call and SOLIB_ADD is resetting the
11175 breakpoints. Otherwise these should have been blown away via
11176 the cleanup chain or by breakpoint_init_inferior when we
11177 rerun the executable. */
c906108c
SS
11178 case bp_until:
11179 case bp_finish:
11180 case bp_watchpoint_scope:
11181 case bp_call_dummy:
aa7d318d 11182 case bp_std_terminate:
c906108c 11183 case bp_step_resume:
611c83ae
PA
11184 case bp_longjmp:
11185 case bp_longjmp_resume:
186c406b
TT
11186 case bp_exception:
11187 case bp_exception_resume:
4efc6507 11188 case bp_jit_event:
0e30163f 11189 case bp_gnu_ifunc_resolver_return:
c906108c
SS
11190 break;
11191 }
11192
11193 return 0;
11194}
11195
69de3c6a 11196/* Re-set all breakpoints after symbols have been re-loaded. */
c906108c 11197void
69de3c6a 11198breakpoint_re_set (void)
c906108c 11199{
35df4500 11200 struct breakpoint *b, *b_tmp;
c906108c
SS
11201 enum language save_language;
11202 int save_input_radix;
6c95b8df 11203 struct cleanup *old_chain;
c5aa993b 11204
c906108c
SS
11205 save_language = current_language->la_language;
11206 save_input_radix = input_radix;
6c95b8df
PA
11207 old_chain = save_current_program_space ();
11208
35df4500 11209 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 11210 {
4a64f543 11211 /* Format possible error msg. */
fe3f5fa8 11212 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
11213 b->number);
11214 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 11215 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 11216 do_cleanups (cleanups);
c5aa993b 11217 }
c906108c
SS
11218 set_language (save_language);
11219 input_radix = save_input_radix;
e62c965a 11220
0756c555 11221 jit_breakpoint_re_set ();
4efc6507 11222
6c95b8df
PA
11223 do_cleanups (old_chain);
11224
af02033e
PP
11225 create_overlay_event_breakpoint ();
11226 create_longjmp_master_breakpoint ();
11227 create_std_terminate_master_breakpoint ();
186c406b 11228 create_exception_master_breakpoint ();
c906108c
SS
11229}
11230\f
c906108c
SS
11231/* Reset the thread number of this breakpoint:
11232
11233 - If the breakpoint is for all threads, leave it as-is.
4a64f543 11234 - Else, reset it to the current thread for inferior_ptid. */
c906108c 11235void
fba45db2 11236breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
11237{
11238 if (b->thread != -1)
11239 {
39f77062
KB
11240 if (in_thread_list (inferior_ptid))
11241 b->thread = pid_to_thread_id (inferior_ptid);
6c95b8df
PA
11242
11243 /* We're being called after following a fork. The new fork is
11244 selected as current, and unless this was a vfork will have a
11245 different program space from the original thread. Reset that
11246 as well. */
11247 b->loc->pspace = current_program_space;
c906108c
SS
11248 }
11249}
11250
03ac34d5
MS
11251/* Set ignore-count of breakpoint number BPTNUM to COUNT.
11252 If from_tty is nonzero, it prints a message to that effect,
11253 which ends with a period (no newline). */
11254
c906108c 11255void
fba45db2 11256set_ignore_count (int bptnum, int count, int from_tty)
c906108c 11257{
52f0bd74 11258 struct breakpoint *b;
c906108c
SS
11259
11260 if (count < 0)
11261 count = 0;
11262
11263 ALL_BREAKPOINTS (b)
11264 if (b->number == bptnum)
c5aa993b 11265 {
d77f58be
SS
11266 if (is_tracepoint (b))
11267 {
11268 if (from_tty && count != 0)
11269 printf_filtered (_("Ignore count ignored for tracepoint %d."),
11270 bptnum);
11271 return;
11272 }
11273
c5aa993b 11274 b->ignore_count = count;
221ea385
KS
11275 if (from_tty)
11276 {
11277 if (count == 0)
3e43a32a
MS
11278 printf_filtered (_("Will stop next time "
11279 "breakpoint %d is reached."),
221ea385
KS
11280 bptnum);
11281 else if (count == 1)
a3f17187 11282 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
11283 bptnum);
11284 else
3e43a32a
MS
11285 printf_filtered (_("Will ignore next %d "
11286 "crossings of breakpoint %d."),
221ea385
KS
11287 count, bptnum);
11288 }
c5aa993b 11289 breakpoints_changed ();
383f836e 11290 observer_notify_breakpoint_modified (b->number);
c5aa993b
JM
11291 return;
11292 }
c906108c 11293
8a3fe4f8 11294 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
11295}
11296
c906108c
SS
11297/* Command to set ignore-count of breakpoint N to COUNT. */
11298
11299static void
fba45db2 11300ignore_command (char *args, int from_tty)
c906108c
SS
11301{
11302 char *p = args;
52f0bd74 11303 int num;
c906108c
SS
11304
11305 if (p == 0)
e2e0b3e5 11306 error_no_arg (_("a breakpoint number"));
c5aa993b 11307
c906108c 11308 num = get_number (&p);
5c44784c 11309 if (num == 0)
8a3fe4f8 11310 error (_("bad breakpoint number: '%s'"), args);
c906108c 11311 if (*p == 0)
8a3fe4f8 11312 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
11313
11314 set_ignore_count (num,
11315 longest_to_int (value_as_long (parse_and_eval (p))),
11316 from_tty);
221ea385
KS
11317 if (from_tty)
11318 printf_filtered ("\n");
c906108c
SS
11319}
11320\f
11321/* Call FUNCTION on each of the breakpoints
11322 whose numbers are given in ARGS. */
11323
11324static void
95a42b64
TT
11325map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
11326 void *),
11327 void *data)
c906108c 11328{
52f0bd74
AC
11329 int num;
11330 struct breakpoint *b, *tmp;
11cf8741 11331 int match;
197f0a60 11332 struct get_number_or_range_state state;
c906108c 11333
197f0a60 11334 if (args == 0)
e2e0b3e5 11335 error_no_arg (_("one or more breakpoint numbers"));
c906108c 11336
197f0a60
TT
11337 init_number_or_range (&state, args);
11338
11339 while (!state.finished)
c906108c 11340 {
197f0a60
TT
11341 char *p = state.string;
11342
11cf8741 11343 match = 0;
c5aa993b 11344
197f0a60 11345 num = get_number_or_range (&state);
5c44784c 11346 if (num == 0)
c5aa993b 11347 {
8a3fe4f8 11348 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
11349 }
11350 else
11351 {
11352 ALL_BREAKPOINTS_SAFE (b, tmp)
11353 if (b->number == num)
11354 {
d0fb5eae
JK
11355 struct breakpoint *related_breakpoint;
11356
11cf8741 11357 match = 1;
d0fb5eae
JK
11358 related_breakpoint = b;
11359 do
11360 {
11361 struct breakpoint *next_related_b;
11362
11363 /* FUNCTION can be also delete_breakpoint. */
11364 next_related_b = related_breakpoint->related_breakpoint;
11365 function (related_breakpoint, data);
11366
11367 /* For delete_breakpoint of the last entry of the ring we
11368 were traversing we would never get back to B. */
11369 if (next_related_b == related_breakpoint)
11370 break;
11371 related_breakpoint = next_related_b;
11372 }
11373 while (related_breakpoint != b);
11cf8741 11374 break;
5c44784c 11375 }
11cf8741 11376 if (match == 0)
a3f17187 11377 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 11378 }
c906108c
SS
11379 }
11380}
11381
0d381245
VP
11382static struct bp_location *
11383find_location_by_number (char *number)
11384{
11385 char *dot = strchr (number, '.');
11386 char *p1;
11387 int bp_num;
11388 int loc_num;
11389 struct breakpoint *b;
11390 struct bp_location *loc;
11391
11392 *dot = '\0';
11393
11394 p1 = number;
197f0a60 11395 bp_num = get_number (&p1);
0d381245
VP
11396 if (bp_num == 0)
11397 error (_("Bad breakpoint number '%s'"), number);
11398
11399 ALL_BREAKPOINTS (b)
11400 if (b->number == bp_num)
11401 {
11402 break;
11403 }
11404
11405 if (!b || b->number != bp_num)
11406 error (_("Bad breakpoint number '%s'"), number);
11407
11408 p1 = dot+1;
197f0a60 11409 loc_num = get_number (&p1);
0d381245
VP
11410 if (loc_num == 0)
11411 error (_("Bad breakpoint location number '%s'"), number);
11412
11413 --loc_num;
11414 loc = b->loc;
11415 for (;loc_num && loc; --loc_num, loc = loc->next)
11416 ;
11417 if (!loc)
11418 error (_("Bad breakpoint location number '%s'"), dot+1);
11419
11420 return loc;
11421}
11422
11423
1900040c
MS
11424/* Set ignore-count of breakpoint number BPTNUM to COUNT.
11425 If from_tty is nonzero, it prints a message to that effect,
11426 which ends with a period (no newline). */
11427
c906108c 11428void
fba45db2 11429disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
11430{
11431 /* Never disable a watchpoint scope breakpoint; we want to
11432 hit them when we leave scope so we can delete both the
11433 watchpoint and its scope breakpoint at that time. */
11434 if (bpt->type == bp_watchpoint_scope)
11435 return;
11436
c2c6d25f 11437 /* You can't disable permanent breakpoints. */
b5de0fa7 11438 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
11439 return;
11440
b5de0fa7 11441 bpt->enable_state = bp_disabled;
c906108c 11442
b60e7edf 11443 update_global_location_list (0);
c906108c 11444
383f836e 11445 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
11446}
11447
95a42b64
TT
11448/* A callback for map_breakpoint_numbers that calls
11449 disable_breakpoint. */
11450
11451static void
11452do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
11453{
11454 disable_breakpoint (b);
11455}
11456
c906108c 11457static void
fba45db2 11458disable_command (char *args, int from_tty)
c906108c 11459{
52f0bd74 11460 struct breakpoint *bpt;
cc59ec59 11461
c906108c
SS
11462 if (args == 0)
11463 ALL_BREAKPOINTS (bpt)
11464 switch (bpt->type)
c5aa993b
JM
11465 {
11466 case bp_none:
8a3fe4f8 11467 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
53a5351d 11468 bpt->number);
488919c4 11469 break;
c5aa993b 11470 case bp_breakpoint:
1042e4c0 11471 case bp_tracepoint:
7a697b8d 11472 case bp_fast_tracepoint:
0fb4aa4b 11473 case bp_static_tracepoint:
ce78b96d 11474 case bp_catchpoint:
c5aa993b
JM
11475 case bp_hardware_breakpoint:
11476 case bp_watchpoint:
11477 case bp_hardware_watchpoint:
11478 case bp_read_watchpoint:
11479 case bp_access_watchpoint:
11480 disable_breakpoint (bpt);
488919c4 11481 break;
c5aa993b 11482 default:
488919c4 11483 break;
c5aa993b 11484 }
0d381245
VP
11485 else if (strchr (args, '.'))
11486 {
11487 struct bp_location *loc = find_location_by_number (args);
11488 if (loc)
11489 loc->enabled = 0;
b60e7edf 11490 update_global_location_list (0);
0d381245 11491 }
c906108c 11492 else
95a42b64 11493 map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL);
c906108c
SS
11494}
11495
11496static void
fba45db2 11497do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
c906108c 11498{
afe38095 11499 int target_resources_ok;
c906108c
SS
11500
11501 if (bpt->type == bp_hardware_breakpoint)
11502 {
11503 int i;
c5aa993b 11504 i = hw_breakpoint_used_count ();
53a5351d 11505 target_resources_ok =
d92524f1 11506 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 11507 i + 1, 0);
c906108c 11508 if (target_resources_ok == 0)
8a3fe4f8 11509 error (_("No hardware breakpoint support in the target."));
c906108c 11510 else if (target_resources_ok < 0)
8a3fe4f8 11511 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
11512 }
11513
cc60f2e3 11514 if (is_watchpoint (bpt))
c906108c 11515 {
dde02812
ES
11516 struct gdb_exception e;
11517
11518 TRY_CATCH (e, RETURN_MASK_ALL)
c906108c 11519 {
dde02812 11520 update_watchpoint (bpt, 1 /* reparse */);
c906108c 11521 }
dde02812 11522 if (e.reason < 0)
c5aa993b 11523 {
dde02812
ES
11524 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
11525 bpt->number);
11526 return;
c5aa993b 11527 }
c906108c 11528 }
0101ce28 11529
b4c291bb
KH
11530 if (bpt->enable_state != bp_permanent)
11531 bpt->enable_state = bp_enabled;
11532 bpt->disposition = disposition;
b60e7edf 11533 update_global_location_list (1);
b4c291bb
KH
11534 breakpoints_changed ();
11535
383f836e 11536 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
11537}
11538
fe3f5fa8 11539
c906108c 11540void
fba45db2 11541enable_breakpoint (struct breakpoint *bpt)
c906108c
SS
11542{
11543 do_enable_breakpoint (bpt, bpt->disposition);
11544}
11545
95a42b64
TT
11546/* A callback for map_breakpoint_numbers that calls
11547 enable_breakpoint. */
11548
11549static void
11550do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
11551{
11552 enable_breakpoint (b);
11553}
11554
c906108c
SS
11555/* The enable command enables the specified breakpoints (or all defined
11556 breakpoints) so they once again become (or continue to be) effective
1272ad14 11557 in stopping the inferior. */
c906108c 11558
c906108c 11559static void
fba45db2 11560enable_command (char *args, int from_tty)
c906108c 11561{
52f0bd74 11562 struct breakpoint *bpt;
cc59ec59 11563
c906108c
SS
11564 if (args == 0)
11565 ALL_BREAKPOINTS (bpt)
11566 switch (bpt->type)
c5aa993b
JM
11567 {
11568 case bp_none:
8a3fe4f8 11569 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
53a5351d 11570 bpt->number);
488919c4 11571 break;
c5aa993b 11572 case bp_breakpoint:
1042e4c0 11573 case bp_tracepoint:
7a697b8d 11574 case bp_fast_tracepoint:
0fb4aa4b 11575 case bp_static_tracepoint:
ce78b96d 11576 case bp_catchpoint:
c5aa993b
JM
11577 case bp_hardware_breakpoint:
11578 case bp_watchpoint:
11579 case bp_hardware_watchpoint:
11580 case bp_read_watchpoint:
11581 case bp_access_watchpoint:
11582 enable_breakpoint (bpt);
488919c4 11583 break;
c5aa993b 11584 default:
488919c4 11585 break;
c5aa993b 11586 }
0d381245
VP
11587 else if (strchr (args, '.'))
11588 {
11589 struct bp_location *loc = find_location_by_number (args);
11590 if (loc)
11591 loc->enabled = 1;
b60e7edf 11592 update_global_location_list (1);
0d381245 11593 }
c906108c 11594 else
95a42b64 11595 map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL);
c906108c
SS
11596}
11597
11598static void
95a42b64 11599enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 11600{
b5de0fa7 11601 do_enable_breakpoint (bpt, disp_disable);
c906108c
SS
11602}
11603
c906108c 11604static void
fba45db2 11605enable_once_command (char *args, int from_tty)
c906108c 11606{
95a42b64 11607 map_breakpoint_numbers (args, enable_once_breakpoint, NULL);
c906108c
SS
11608}
11609
11610static void
95a42b64 11611enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 11612{
b5de0fa7 11613 do_enable_breakpoint (bpt, disp_del);
c906108c
SS
11614}
11615
c906108c 11616static void
fba45db2 11617enable_delete_command (char *args, int from_tty)
c906108c 11618{
95a42b64 11619 map_breakpoint_numbers (args, enable_delete_breakpoint, NULL);
c906108c
SS
11620}
11621\f
fa8d40ab
JJ
11622static void
11623set_breakpoint_cmd (char *args, int from_tty)
11624{
11625}
11626
11627static void
11628show_breakpoint_cmd (char *args, int from_tty)
11629{
11630}
11631
1f3b5d1b
PP
11632/* Invalidate last known value of any hardware watchpoint if
11633 the memory which that value represents has been written to by
11634 GDB itself. */
11635
11636static void
11637invalidate_bp_value_on_memory_change (CORE_ADDR addr, int len,
11638 const bfd_byte *data)
11639{
11640 struct breakpoint *bp;
11641
11642 ALL_BREAKPOINTS (bp)
11643 if (bp->enable_state == bp_enabled
11644 && bp->type == bp_hardware_watchpoint
11645 && bp->val_valid && bp->val)
11646 {
11647 struct bp_location *loc;
11648
11649 for (loc = bp->loc; loc != NULL; loc = loc->next)
11650 if (loc->loc_type == bp_loc_hardware_watchpoint
11651 && loc->address + loc->length > addr
11652 && addr + len > loc->address)
11653 {
11654 value_free (bp->val);
11655 bp->val = NULL;
11656 bp->val_valid = 0;
11657 }
11658 }
11659}
11660
c906108c
SS
11661/* Use default_breakpoint_'s, or nothing if they aren't valid. */
11662
11663struct symtabs_and_lines
fba45db2 11664decode_line_spec_1 (char *string, int funfirstline)
c906108c
SS
11665{
11666 struct symtabs_and_lines sals;
cc59ec59 11667
c906108c 11668 if (string == 0)
8a3fe4f8 11669 error (_("Empty line specification."));
c906108c
SS
11670 if (default_breakpoint_valid)
11671 sals = decode_line_1 (&string, funfirstline,
53a5351d
JM
11672 default_breakpoint_symtab,
11673 default_breakpoint_line,
7efd8fc2 11674 NULL, NULL);
c906108c
SS
11675 else
11676 sals = decode_line_1 (&string, funfirstline,
7efd8fc2 11677 (struct symtab *) NULL, 0, NULL, NULL);
c906108c 11678 if (*string)
8a3fe4f8 11679 error (_("Junk at end of line specification: %s"), string);
c906108c
SS
11680 return sals;
11681}
8181d85f
DJ
11682
11683/* Create and insert a raw software breakpoint at PC. Return an
11684 identifier, which should be used to remove the breakpoint later.
11685 In general, places which call this should be using something on the
11686 breakpoint chain instead; this function should be eliminated
11687 someday. */
11688
11689void *
6c95b8df
PA
11690deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch,
11691 struct address_space *aspace, CORE_ADDR pc)
8181d85f
DJ
11692{
11693 struct bp_target_info *bp_tgt;
11694
6c95b8df 11695 bp_tgt = XZALLOC (struct bp_target_info);
8181d85f 11696
6c95b8df 11697 bp_tgt->placed_address_space = aspace;
8181d85f 11698 bp_tgt->placed_address = pc;
6c95b8df 11699
a6d9a66e 11700 if (target_insert_breakpoint (gdbarch, bp_tgt) != 0)
8181d85f
DJ
11701 {
11702 /* Could not insert the breakpoint. */
11703 xfree (bp_tgt);
11704 return NULL;
11705 }
11706
11707 return bp_tgt;
11708}
11709
4a64f543
MS
11710/* Remove a breakpoint BP inserted by
11711 deprecated_insert_raw_breakpoint. */
8181d85f
DJ
11712
11713int
a6d9a66e 11714deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp)
8181d85f
DJ
11715{
11716 struct bp_target_info *bp_tgt = bp;
11717 int ret;
11718
a6d9a66e 11719 ret = target_remove_breakpoint (gdbarch, bp_tgt);
8181d85f
DJ
11720 xfree (bp_tgt);
11721
11722 return ret;
11723}
11724
4a64f543
MS
11725/* One (or perhaps two) breakpoints used for software single
11726 stepping. */
8181d85f
DJ
11727
11728static void *single_step_breakpoints[2];
a6d9a66e 11729static struct gdbarch *single_step_gdbarch[2];
8181d85f
DJ
11730
11731/* Create and insert a breakpoint for software single step. */
11732
11733void
6c95b8df 11734insert_single_step_breakpoint (struct gdbarch *gdbarch,
4a64f543
MS
11735 struct address_space *aspace,
11736 CORE_ADDR next_pc)
8181d85f
DJ
11737{
11738 void **bpt_p;
11739
11740 if (single_step_breakpoints[0] == NULL)
a6d9a66e
UW
11741 {
11742 bpt_p = &single_step_breakpoints[0];
11743 single_step_gdbarch[0] = gdbarch;
11744 }
8181d85f
DJ
11745 else
11746 {
11747 gdb_assert (single_step_breakpoints[1] == NULL);
11748 bpt_p = &single_step_breakpoints[1];
a6d9a66e 11749 single_step_gdbarch[1] = gdbarch;
8181d85f
DJ
11750 }
11751
4a64f543
MS
11752 /* NOTE drow/2006-04-11: A future improvement to this function would
11753 be to only create the breakpoints once, and actually put them on
11754 the breakpoint chain. That would let us use set_raw_breakpoint.
11755 We could adjust the addresses each time they were needed. Doing
11756 this requires corresponding changes elsewhere where single step
11757 breakpoints are handled, however. So, for now, we use this. */
8181d85f 11758
6c95b8df 11759 *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc);
8181d85f 11760 if (*bpt_p == NULL)
5af949e3
UW
11761 error (_("Could not insert single-step breakpoint at %s"),
11762 paddress (gdbarch, next_pc));
8181d85f
DJ
11763}
11764
f02253f1
HZ
11765/* Check if the breakpoints used for software single stepping
11766 were inserted or not. */
11767
11768int
11769single_step_breakpoints_inserted (void)
11770{
11771 return (single_step_breakpoints[0] != NULL
11772 || single_step_breakpoints[1] != NULL);
11773}
11774
8181d85f
DJ
11775/* Remove and delete any breakpoints used for software single step. */
11776
11777void
11778remove_single_step_breakpoints (void)
11779{
11780 gdb_assert (single_step_breakpoints[0] != NULL);
11781
11782 /* See insert_single_step_breakpoint for more about this deprecated
11783 call. */
a6d9a66e
UW
11784 deprecated_remove_raw_breakpoint (single_step_gdbarch[0],
11785 single_step_breakpoints[0]);
11786 single_step_gdbarch[0] = NULL;
8181d85f
DJ
11787 single_step_breakpoints[0] = NULL;
11788
11789 if (single_step_breakpoints[1] != NULL)
11790 {
a6d9a66e
UW
11791 deprecated_remove_raw_breakpoint (single_step_gdbarch[1],
11792 single_step_breakpoints[1]);
11793 single_step_gdbarch[1] = NULL;
8181d85f
DJ
11794 single_step_breakpoints[1] = NULL;
11795 }
11796}
11797
d03285ec
UW
11798/* Delete software single step breakpoints without removing them from
11799 the inferior. This is intended to be used if the inferior's address
11800 space where they were inserted is already gone, e.g. after exit or
11801 exec. */
11802
11803void
11804cancel_single_step_breakpoints (void)
11805{
11806 int i;
11807
11808 for (i = 0; i < 2; i++)
11809 if (single_step_breakpoints[i])
11810 {
11811 xfree (single_step_breakpoints[i]);
11812 single_step_breakpoints[i] = NULL;
11813 single_step_gdbarch[i] = NULL;
11814 }
11815}
11816
11817/* Detach software single-step breakpoints from INFERIOR_PTID without
11818 removing them. */
11819
11820static void
11821detach_single_step_breakpoints (void)
11822{
11823 int i;
11824
11825 for (i = 0; i < 2; i++)
11826 if (single_step_breakpoints[i])
11827 target_remove_breakpoint (single_step_gdbarch[i],
11828 single_step_breakpoints[i]);
11829}
11830
4a64f543
MS
11831/* Check whether a software single-step breakpoint is inserted at
11832 PC. */
1aafd4da
UW
11833
11834static int
cc59ec59
MS
11835single_step_breakpoint_inserted_here_p (struct address_space *aspace,
11836 CORE_ADDR pc)
1aafd4da
UW
11837{
11838 int i;
11839
11840 for (i = 0; i < 2; i++)
11841 {
11842 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
6c95b8df
PA
11843 if (bp_tgt
11844 && breakpoint_address_match (bp_tgt->placed_address_space,
11845 bp_tgt->placed_address,
11846 aspace, pc))
1aafd4da
UW
11847 return 1;
11848 }
11849
11850 return 0;
11851}
11852
a96d9b2e
SDJ
11853/* Returns 0 if 'bp' is NOT a syscall catchpoint,
11854 non-zero otherwise. */
11855static int
11856is_syscall_catchpoint_enabled (struct breakpoint *bp)
11857{
11858 if (syscall_catchpoint_p (bp)
11859 && bp->enable_state != bp_disabled
11860 && bp->enable_state != bp_call_disabled)
11861 return 1;
11862 else
11863 return 0;
11864}
11865
11866int
11867catch_syscall_enabled (void)
11868{
11869 struct inferior *inf = current_inferior ();
11870
11871 return inf->total_syscalls_count != 0;
11872}
11873
11874int
11875catching_syscall_number (int syscall_number)
11876{
11877 struct breakpoint *bp;
11878
11879 ALL_BREAKPOINTS (bp)
11880 if (is_syscall_catchpoint_enabled (bp))
11881 {
11882 if (bp->syscalls_to_be_caught)
11883 {
11884 int i, iter;
11885 for (i = 0;
11886 VEC_iterate (int, bp->syscalls_to_be_caught, i, iter);
11887 i++)
11888 if (syscall_number == iter)
11889 return 1;
11890 }
11891 else
11892 return 1;
11893 }
11894
11895 return 0;
11896}
11897
11898/* Complete syscall names. Used by "catch syscall". */
11899static char **
11900catch_syscall_completer (struct cmd_list_element *cmd,
11901 char *text, char *word)
11902{
11903 const char **list = get_syscall_names ();
c38eea1a
MS
11904 char **retlist
11905 = (list == NULL) ? NULL : complete_on_enum (list, text, word);
cc59ec59 11906
c38eea1a
MS
11907 xfree (list);
11908 return retlist;
a96d9b2e
SDJ
11909}
11910
1042e4c0
SS
11911/* Tracepoint-specific operations. */
11912
11913/* Set tracepoint count to NUM. */
11914static void
11915set_tracepoint_count (int num)
11916{
11917 tracepoint_count = num;
4fa62494 11918 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
11919}
11920
11921void
11922trace_command (char *arg, int from_tty)
11923{
8cdf0e15
VP
11924 if (create_breakpoint (get_current_arch (),
11925 arg,
11926 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
11927 0 /* tempflag */,
11928 bp_tracepoint /* type_wanted */,
8cdf0e15
VP
11929 0 /* Ignore count */,
11930 pending_break_support,
11931 NULL,
11932 from_tty,
84f4c1fe
PM
11933 1 /* enabled */,
11934 0 /* internal */))
fd9b8c24 11935 set_tracepoint_count (breakpoint_count);
1042e4c0
SS
11936}
11937
7a697b8d
SS
11938void
11939ftrace_command (char *arg, int from_tty)
11940{
8cdf0e15
VP
11941 if (create_breakpoint (get_current_arch (),
11942 arg,
11943 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
11944 0 /* tempflag */,
11945 bp_fast_tracepoint /* type_wanted */,
11946 0 /* Ignore count */,
11947 pending_break_support,
11948 NULL,
11949 from_tty,
84f4c1fe
PM
11950 1 /* enabled */,
11951 0 /* internal */))
0fb4aa4b
PA
11952 set_tracepoint_count (breakpoint_count);
11953}
11954
11955/* strace command implementation. Creates a static tracepoint. */
11956
11957void
11958strace_command (char *arg, int from_tty)
11959{
11960 if (create_breakpoint (get_current_arch (),
11961 arg,
11962 NULL, 0, 1 /* parse arg */,
11963 0 /* tempflag */,
11964 bp_static_tracepoint /* type_wanted */,
8cdf0e15
VP
11965 0 /* Ignore count */,
11966 pending_break_support,
11967 NULL,
11968 from_tty,
84f4c1fe
PM
11969 1 /* enabled */,
11970 0 /* internal */))
fd9b8c24 11971 set_tracepoint_count (breakpoint_count);
7a697b8d
SS
11972}
11973
409873ef
SS
11974/* Set up a fake reader function that gets command lines from a linked
11975 list that was acquired during tracepoint uploading. */
11976
11977static struct uploaded_tp *this_utp;
3149d8c1 11978static int next_cmd;
409873ef
SS
11979
11980static char *
11981read_uploaded_action (void)
11982{
11983 char *rslt;
11984
3149d8c1 11985 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 11986
3149d8c1 11987 next_cmd++;
409873ef
SS
11988
11989 return rslt;
11990}
11991
00bf0b85
SS
11992/* Given information about a tracepoint as recorded on a target (which
11993 can be either a live system or a trace file), attempt to create an
11994 equivalent GDB tracepoint. This is not a reliable process, since
11995 the target does not necessarily have all the information used when
11996 the tracepoint was originally defined. */
11997
11998struct breakpoint *
11999create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 12000{
409873ef 12001 char *addr_str, small_buf[100];
d5551862 12002 struct breakpoint *tp;
fd9b8c24 12003
409873ef
SS
12004 if (utp->at_string)
12005 addr_str = utp->at_string;
12006 else
12007 {
12008 /* In the absence of a source location, fall back to raw
12009 address. Since there is no way to confirm that the address
12010 means the same thing as when the trace was started, warn the
12011 user. */
3e43a32a
MS
12012 warning (_("Uploaded tracepoint %d has no "
12013 "source location, using raw address"),
409873ef
SS
12014 utp->number);
12015 sprintf (small_buf, "*%s", hex_string (utp->addr));
12016 addr_str = small_buf;
12017 }
12018
12019 /* There's not much we can do with a sequence of bytecodes. */
12020 if (utp->cond && !utp->cond_string)
3e43a32a
MS
12021 warning (_("Uploaded tracepoint %d condition "
12022 "has no source form, ignoring it"),
409873ef 12023 utp->number);
d5551862 12024
8cdf0e15 12025 if (!create_breakpoint (get_current_arch (),
409873ef
SS
12026 addr_str,
12027 utp->cond_string, -1, 0 /* parse cond/thread */,
8cdf0e15 12028 0 /* tempflag */,
0fb4aa4b 12029 utp->type /* type_wanted */,
8cdf0e15
VP
12030 0 /* Ignore count */,
12031 pending_break_support,
12032 NULL,
12033 0 /* from_tty */,
84f4c1fe
PM
12034 utp->enabled /* enabled */,
12035 0 /* internal */))
fd9b8c24
PA
12036 return NULL;
12037
00bf0b85
SS
12038 set_tracepoint_count (breakpoint_count);
12039
409873ef 12040 /* Get the tracepoint we just created. */
fd9b8c24
PA
12041 tp = get_tracepoint (tracepoint_count);
12042 gdb_assert (tp != NULL);
d5551862 12043
00bf0b85
SS
12044 if (utp->pass > 0)
12045 {
409873ef 12046 sprintf (small_buf, "%d %d", utp->pass, tp->number);
00bf0b85 12047
409873ef 12048 trace_pass_command (small_buf, 0);
00bf0b85
SS
12049 }
12050
409873ef
SS
12051 /* If we have uploaded versions of the original commands, set up a
12052 special-purpose "reader" function and call the usual command line
12053 reader, then pass the result to the breakpoint command-setting
12054 function. */
3149d8c1 12055 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 12056 {
409873ef 12057 struct command_line *cmd_list;
00bf0b85 12058
409873ef 12059 this_utp = utp;
3149d8c1 12060 next_cmd = 0;
d5551862 12061
409873ef
SS
12062 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
12063
12064 breakpoint_set_commands (tp, cmd_list);
00bf0b85 12065 }
3149d8c1
SS
12066 else if (!VEC_empty (char_ptr, utp->actions)
12067 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
12068 warning (_("Uploaded tracepoint %d actions "
12069 "have no source form, ignoring them"),
409873ef 12070 utp->number);
00bf0b85
SS
12071
12072 return tp;
12073 }
12074
1042e4c0
SS
12075/* Print information on tracepoint number TPNUM_EXP, or all if
12076 omitted. */
12077
12078static void
e5a67952 12079tracepoints_info (char *args, int from_tty)
1042e4c0 12080{
e5a67952 12081 int num_printed;
1042e4c0 12082
e5a67952 12083 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
12084
12085 if (num_printed == 0)
1042e4c0 12086 {
e5a67952 12087 if (args == NULL || *args == '\0')
d77f58be
SS
12088 ui_out_message (uiout, 0, "No tracepoints.\n");
12089 else
e5a67952 12090 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
1042e4c0 12091 }
ad443146
SS
12092
12093 default_collect_info ();
1042e4c0
SS
12094}
12095
4a64f543 12096/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
12097 Not supported by all targets. */
12098static void
12099enable_trace_command (char *args, int from_tty)
12100{
12101 enable_command (args, from_tty);
12102}
12103
4a64f543 12104/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
12105 Not supported by all targets. */
12106static void
12107disable_trace_command (char *args, int from_tty)
12108{
12109 disable_command (args, from_tty);
12110}
12111
4a64f543 12112/* Remove a tracepoint (or all if no argument). */
1042e4c0
SS
12113static void
12114delete_trace_command (char *arg, int from_tty)
12115{
35df4500 12116 struct breakpoint *b, *b_tmp;
1042e4c0
SS
12117
12118 dont_repeat ();
12119
12120 if (arg == 0)
12121 {
12122 int breaks_to_delete = 0;
12123
12124 /* Delete all breakpoints if no argument.
12125 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
12126 have to be deleted with an explicit breakpoint number
12127 argument. */
1042e4c0
SS
12128 ALL_TRACEPOINTS (b)
12129 {
12130 if (b->number >= 0)
12131 {
12132 breaks_to_delete = 1;
12133 break;
12134 }
12135 }
12136
12137 /* Ask user only if there are some breakpoints to delete. */
12138 if (!from_tty
12139 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
12140 {
35df4500 12141 ALL_BREAKPOINTS_SAFE (b, b_tmp)
1042e4c0 12142 {
d77f58be 12143 if (is_tracepoint (b)
059fb39f 12144 && b->number >= 0)
1042e4c0
SS
12145 delete_breakpoint (b);
12146 }
12147 }
12148 }
12149 else
95a42b64 12150 map_breakpoint_numbers (arg, do_delete_breakpoint, NULL);
1042e4c0
SS
12151}
12152
197f0a60
TT
12153/* Helper function for trace_pass_command. */
12154
12155static void
12156trace_pass_set_count (struct breakpoint *bp, int count, int from_tty)
12157{
12158 bp->pass_count = count;
12159 observer_notify_tracepoint_modified (bp->number);
12160 if (from_tty)
12161 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
12162 bp->number, count);
12163}
12164
1042e4c0
SS
12165/* Set passcount for tracepoint.
12166
12167 First command argument is passcount, second is tracepoint number.
12168 If tracepoint number omitted, apply to most recently defined.
12169 Also accepts special argument "all". */
12170
12171static void
12172trace_pass_command (char *args, int from_tty)
12173{
197f0a60 12174 struct breakpoint *t1;
1042e4c0 12175 unsigned int count;
1042e4c0
SS
12176
12177 if (args == 0 || *args == 0)
3e43a32a
MS
12178 error (_("passcount command requires an "
12179 "argument (count + optional TP num)"));
1042e4c0 12180
4a64f543 12181 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0
SS
12182
12183 while (*args && isspace ((int) *args))
12184 args++;
12185
12186 if (*args && strncasecmp (args, "all", 3) == 0)
12187 {
12188 args += 3; /* Skip special argument "all". */
1042e4c0
SS
12189 if (*args)
12190 error (_("Junk at end of arguments."));
1042e4c0 12191
197f0a60
TT
12192 ALL_TRACEPOINTS (t1)
12193 {
12194 trace_pass_set_count (t1, count, from_tty);
12195 }
12196 }
12197 else if (*args == '\0')
1042e4c0 12198 {
197f0a60 12199 t1 = get_tracepoint_by_number (&args, NULL, 1);
1042e4c0 12200 if (t1)
197f0a60
TT
12201 trace_pass_set_count (t1, count, from_tty);
12202 }
12203 else
12204 {
12205 struct get_number_or_range_state state;
12206
12207 init_number_or_range (&state, args);
12208 while (!state.finished)
1042e4c0 12209 {
197f0a60
TT
12210 t1 = get_tracepoint_by_number (&args, &state, 1);
12211 if (t1)
12212 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
12213 }
12214 }
1042e4c0
SS
12215}
12216
12217struct breakpoint *
12218get_tracepoint (int num)
12219{
12220 struct breakpoint *t;
12221
12222 ALL_TRACEPOINTS (t)
12223 if (t->number == num)
12224 return t;
12225
12226 return NULL;
12227}
12228
d5551862
SS
12229/* Find the tracepoint with the given target-side number (which may be
12230 different from the tracepoint number after disconnecting and
12231 reconnecting). */
12232
12233struct breakpoint *
12234get_tracepoint_by_number_on_target (int num)
12235{
12236 struct breakpoint *t;
12237
12238 ALL_TRACEPOINTS (t)
12239 if (t->number_on_target == num)
12240 return t;
12241
12242 return NULL;
12243}
12244
1042e4c0 12245/* Utility: parse a tracepoint number and look it up in the list.
197f0a60
TT
12246 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
12247 If OPTIONAL_P is true, then if the argument is missing, the most
1042e4c0
SS
12248 recent tracepoint (tracepoint_count) is returned. */
12249struct breakpoint *
197f0a60
TT
12250get_tracepoint_by_number (char **arg,
12251 struct get_number_or_range_state *state,
12252 int optional_p)
1042e4c0
SS
12253{
12254 extern int tracepoint_count;
12255 struct breakpoint *t;
12256 int tpnum;
12257 char *instring = arg == NULL ? NULL : *arg;
12258
197f0a60
TT
12259 if (state)
12260 {
12261 gdb_assert (!state->finished);
12262 tpnum = get_number_or_range (state);
12263 }
12264 else if (arg == NULL || *arg == NULL || ! **arg)
1042e4c0
SS
12265 {
12266 if (optional_p)
12267 tpnum = tracepoint_count;
12268 else
12269 error_no_arg (_("tracepoint number"));
12270 }
12271 else
197f0a60 12272 tpnum = get_number (arg);
1042e4c0
SS
12273
12274 if (tpnum <= 0)
12275 {
12276 if (instring && *instring)
12277 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
12278 instring);
12279 else
3e43a32a
MS
12280 printf_filtered (_("Tracepoint argument missing "
12281 "and no previous tracepoint\n"));
1042e4c0
SS
12282 return NULL;
12283 }
12284
12285 ALL_TRACEPOINTS (t)
12286 if (t->number == tpnum)
12287 {
12288 return t;
12289 }
12290
1042e4c0
SS
12291 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
12292 return NULL;
12293}
12294
6149aea9
PA
12295/* Save information on user settable breakpoints (watchpoints, etc) to
12296 a new script file named FILENAME. If FILTER is non-NULL, call it
12297 on each breakpoint and only include the ones for which it returns
12298 non-zero. */
12299
1042e4c0 12300static void
6149aea9
PA
12301save_breakpoints (char *filename, int from_tty,
12302 int (*filter) (const struct breakpoint *))
1042e4c0
SS
12303{
12304 struct breakpoint *tp;
6149aea9 12305 int any = 0;
a7bdde9e 12306 char *pathname;
1042e4c0 12307 struct cleanup *cleanup;
a7bdde9e 12308 struct ui_file *fp;
6149aea9 12309 int extra_trace_bits = 0;
1042e4c0 12310
6149aea9
PA
12311 if (filename == 0 || *filename == 0)
12312 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
12313
12314 /* See if we have anything to save. */
6149aea9 12315 ALL_BREAKPOINTS (tp)
1042e4c0 12316 {
6149aea9 12317 /* Skip internal and momentary breakpoints. */
09d682a4 12318 if (!user_breakpoint_p (tp))
6149aea9
PA
12319 continue;
12320
12321 /* If we have a filter, only save the breakpoints it accepts. */
12322 if (filter && !filter (tp))
12323 continue;
12324
12325 any = 1;
12326
12327 if (is_tracepoint (tp))
12328 {
12329 extra_trace_bits = 1;
12330
12331 /* We can stop searching. */
12332 break;
12333 }
1042e4c0 12334 }
6149aea9
PA
12335
12336 if (!any)
1042e4c0 12337 {
6149aea9 12338 warning (_("Nothing to save."));
1042e4c0
SS
12339 return;
12340 }
12341
6149aea9 12342 pathname = tilde_expand (filename);
1042e4c0 12343 cleanup = make_cleanup (xfree, pathname);
a7bdde9e 12344 fp = gdb_fopen (pathname, "w");
059fb39f 12345 if (!fp)
6149aea9
PA
12346 error (_("Unable to open file '%s' for saving (%s)"),
12347 filename, safe_strerror (errno));
a7bdde9e 12348 make_cleanup_ui_file_delete (fp);
8bf6485c 12349
6149aea9
PA
12350 if (extra_trace_bits)
12351 save_trace_state_variables (fp);
8bf6485c 12352
6149aea9 12353 ALL_BREAKPOINTS (tp)
1042e4c0 12354 {
6149aea9 12355 /* Skip internal and momentary breakpoints. */
09d682a4 12356 if (!user_breakpoint_p (tp))
6149aea9 12357 continue;
8bf6485c 12358
6149aea9
PA
12359 /* If we have a filter, only save the breakpoints it accepts. */
12360 if (filter && !filter (tp))
12361 continue;
12362
12363 if (tp->ops != NULL)
12364 (tp->ops->print_recreate) (tp, fp);
1042e4c0
SS
12365 else
12366 {
6149aea9
PA
12367 if (tp->type == bp_fast_tracepoint)
12368 fprintf_unfiltered (fp, "ftrace");
0fb4aa4b
PA
12369 if (tp->type == bp_static_tracepoint)
12370 fprintf_unfiltered (fp, "strace");
6149aea9
PA
12371 else if (tp->type == bp_tracepoint)
12372 fprintf_unfiltered (fp, "trace");
12373 else if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12374 fprintf_unfiltered (fp, "tbreak");
12375 else if (tp->type == bp_breakpoint)
12376 fprintf_unfiltered (fp, "break");
12377 else if (tp->type == bp_hardware_breakpoint
12378 && tp->disposition == disp_del)
12379 fprintf_unfiltered (fp, "thbreak");
12380 else if (tp->type == bp_hardware_breakpoint)
12381 fprintf_unfiltered (fp, "hbreak");
12382 else if (tp->type == bp_watchpoint)
12383 fprintf_unfiltered (fp, "watch");
12384 else if (tp->type == bp_hardware_watchpoint)
12385 fprintf_unfiltered (fp, "watch");
12386 else if (tp->type == bp_read_watchpoint)
12387 fprintf_unfiltered (fp, "rwatch");
12388 else if (tp->type == bp_access_watchpoint)
12389 fprintf_unfiltered (fp, "awatch");
12390 else
12391 internal_error (__FILE__, __LINE__,
12392 _("unhandled breakpoint type %d"), (int) tp->type);
12393
12394 if (tp->exp_string)
12395 fprintf_unfiltered (fp, " %s", tp->exp_string);
12396 else if (tp->addr_string)
12397 fprintf_unfiltered (fp, " %s", tp->addr_string);
12398 else
12399 {
12400 char tmp[40];
12401
12402 sprintf_vma (tmp, tp->loc->address);
12403 fprintf_unfiltered (fp, " *0x%s", tmp);
12404 }
1042e4c0
SS
12405 }
12406
6149aea9
PA
12407 if (tp->thread != -1)
12408 fprintf_unfiltered (fp, " thread %d", tp->thread);
12409
12410 if (tp->task != 0)
12411 fprintf_unfiltered (fp, " task %d", tp->task);
8bf6485c
SS
12412
12413 fprintf_unfiltered (fp, "\n");
12414
6149aea9
PA
12415 /* Note, we can't rely on tp->number for anything, as we can't
12416 assume the recreated breakpoint numbers will match. Use $bpnum
12417 instead. */
12418
12419 if (tp->cond_string)
12420 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
12421
12422 if (tp->ignore_count)
12423 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
12424
1042e4c0 12425 if (tp->pass_count)
a7bdde9e 12426 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
1042e4c0 12427
a7bdde9e 12428 if (tp->commands)
1042e4c0 12429 {
a7bdde9e
VP
12430 volatile struct gdb_exception ex;
12431
6149aea9 12432 fprintf_unfiltered (fp, " commands\n");
a7bdde9e
VP
12433
12434 ui_out_redirect (uiout, fp);
14dba4b4 12435 TRY_CATCH (ex, RETURN_MASK_ALL)
1042e4c0 12436 {
9add0f1b 12437 print_command_lines (uiout, tp->commands->commands, 2);
a7bdde9e
VP
12438 }
12439 ui_out_redirect (uiout, NULL);
1042e4c0 12440
a7bdde9e
VP
12441 if (ex.reason < 0)
12442 throw_exception (ex);
1042e4c0 12443
a7bdde9e 12444 fprintf_unfiltered (fp, " end\n");
1042e4c0 12445 }
6149aea9
PA
12446
12447 if (tp->enable_state == bp_disabled)
12448 fprintf_unfiltered (fp, "disable\n");
12449
12450 /* If this is a multi-location breakpoint, check if the locations
12451 should be individually disabled. Watchpoint locations are
12452 special, and not user visible. */
12453 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
12454 {
12455 struct bp_location *loc;
12456 int n = 1;
12457
12458 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
12459 if (!loc->enabled)
12460 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
12461 }
1042e4c0 12462 }
8bf6485c 12463
6149aea9 12464 if (extra_trace_bits && *default_collect)
8bf6485c
SS
12465 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
12466
1042e4c0
SS
12467 do_cleanups (cleanup);
12468 if (from_tty)
6149aea9
PA
12469 printf_filtered (_("Saved to file '%s'.\n"), filename);
12470}
12471
12472/* The `save breakpoints' command. */
12473
12474static void
12475save_breakpoints_command (char *args, int from_tty)
12476{
12477 save_breakpoints (args, from_tty, NULL);
12478}
12479
12480/* The `save tracepoints' command. */
12481
12482static void
12483save_tracepoints_command (char *args, int from_tty)
12484{
12485 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
12486}
12487
12488/* Create a vector of all tracepoints. */
12489
12490VEC(breakpoint_p) *
eeae04df 12491all_tracepoints (void)
1042e4c0
SS
12492{
12493 VEC(breakpoint_p) *tp_vec = 0;
12494 struct breakpoint *tp;
12495
12496 ALL_TRACEPOINTS (tp)
12497 {
12498 VEC_safe_push (breakpoint_p, tp_vec, tp);
12499 }
12500
12501 return tp_vec;
12502}
12503
c906108c 12504\f
4a64f543
MS
12505/* This help string is used for the break, hbreak, tbreak and thbreak
12506 commands. It is defined as a macro to prevent duplication.
12507 COMMAND should be a string constant containing the name of the
12508 command. */
31e2b00f
AS
12509#define BREAK_ARGS_HELP(command) \
12510command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
12511LOCATION may be a line number, function name, or \"*\" and an address.\n\
12512If a line number is specified, break at start of code for that line.\n\
12513If a function is specified, break at start of code for that function.\n\
12514If an address is specified, break at that exact address.\n\
dc10affe
PA
12515With no LOCATION, uses current execution address of the selected\n\
12516stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
12517\n\
12518THREADNUM is the number from \"info threads\".\n\
12519CONDITION is a boolean expression.\n\
12520\n\
d41c0fc8
PA
12521Multiple breakpoints at one place are permitted, and useful if their\n\
12522conditions are different.\n\
31e2b00f
AS
12523\n\
12524Do \"help breakpoints\" for info on other commands dealing with breakpoints."
12525
44feb3ce
TT
12526/* List of subcommands for "catch". */
12527static struct cmd_list_element *catch_cmdlist;
12528
12529/* List of subcommands for "tcatch". */
12530static struct cmd_list_element *tcatch_cmdlist;
12531
12532/* Like add_cmd, but add the command to both the "catch" and "tcatch"
12533 lists, and pass some additional user data to the command function. */
12534static void
12535add_catch_command (char *name, char *docstring,
12536 void (*sfunc) (char *args, int from_tty,
12537 struct cmd_list_element *command),
a96d9b2e
SDJ
12538 char **(*completer) (struct cmd_list_element *cmd,
12539 char *text, char *word),
44feb3ce
TT
12540 void *user_data_catch,
12541 void *user_data_tcatch)
12542{
12543 struct cmd_list_element *command;
12544
12545 command = add_cmd (name, class_breakpoint, NULL, docstring,
12546 &catch_cmdlist);
12547 set_cmd_sfunc (command, sfunc);
12548 set_cmd_context (command, user_data_catch);
a96d9b2e 12549 set_cmd_completer (command, completer);
44feb3ce
TT
12550
12551 command = add_cmd (name, class_breakpoint, NULL, docstring,
12552 &tcatch_cmdlist);
12553 set_cmd_sfunc (command, sfunc);
12554 set_cmd_context (command, user_data_tcatch);
a96d9b2e 12555 set_cmd_completer (command, completer);
44feb3ce
TT
12556}
12557
6c95b8df 12558static void
a79b8f6e 12559clear_syscall_counts (struct inferior *inf)
6c95b8df 12560{
6c95b8df
PA
12561 inf->total_syscalls_count = 0;
12562 inf->any_syscall_count = 0;
12563 VEC_free (int, inf->syscalls_counts);
12564}
12565
6149aea9
PA
12566static void
12567save_command (char *arg, int from_tty)
12568{
3e43a32a
MS
12569 printf_unfiltered (_("\"save\" must be followed by "
12570 "the name of a save subcommand.\n"));
6149aea9
PA
12571 help_list (save_cmdlist, "save ", -1, gdb_stdout);
12572}
12573
84f4c1fe
PM
12574struct breakpoint *
12575iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
12576 void *data)
12577{
35df4500 12578 struct breakpoint *b, *b_tmp;
84f4c1fe 12579
35df4500 12580 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
12581 {
12582 if ((*callback) (b, data))
12583 return b;
12584 }
12585
12586 return NULL;
12587}
12588
c906108c 12589void
fba45db2 12590_initialize_breakpoint (void)
c906108c
SS
12591{
12592 struct cmd_list_element *c;
12593
84acb35a 12594 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
6c95b8df 12595 observer_attach_inferior_exit (clear_syscall_counts);
1f3b5d1b 12596 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 12597
17450429
PP
12598 breakpoint_objfile_key = register_objfile_data ();
12599
c906108c
SS
12600 breakpoint_chain = 0;
12601 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
12602 before a breakpoint is set. */
12603 breakpoint_count = 0;
12604
1042e4c0
SS
12605 tracepoint_count = 0;
12606
1bedd215
AC
12607 add_com ("ignore", class_breakpoint, ignore_command, _("\
12608Set ignore-count of breakpoint number N to COUNT.\n\
12609Usage is `ignore N COUNT'."));
c906108c 12610 if (xdb_commands)
c5aa993b 12611 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 12612
1bedd215
AC
12613 add_com ("commands", class_breakpoint, commands_command, _("\
12614Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
12615Give breakpoint number as argument after \"commands\".\n\
12616With no argument, the targeted breakpoint is the last one set.\n\
12617The commands themselves follow starting on the next line.\n\
12618Type a line containing \"end\" to indicate the end of them.\n\
12619Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 12620then no output is printed when it is hit, except what the commands print."));
c906108c 12621
1bedd215
AC
12622 add_com ("condition", class_breakpoint, condition_command, _("\
12623Specify breakpoint number N to break only if COND is true.\n\
c906108c 12624Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 12625expression to be evaluated whenever breakpoint N is reached."));
c906108c 12626
1bedd215 12627 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 12628Set a temporary breakpoint.\n\
c906108c
SS
12629Like \"break\" except the breakpoint is only temporary,\n\
12630so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
12631by using \"enable delete\" on the breakpoint number.\n\
12632\n"
12633BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 12634 set_cmd_completer (c, location_completer);
c94fdfd0 12635
1bedd215 12636 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 12637Set a hardware assisted breakpoint.\n\
c906108c 12638Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
12639some target hardware may not have this support.\n\
12640\n"
12641BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 12642 set_cmd_completer (c, location_completer);
c906108c 12643
1bedd215 12644 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 12645Set a temporary hardware assisted breakpoint.\n\
c906108c 12646Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
12647so it will be deleted when hit.\n\
12648\n"
12649BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 12650 set_cmd_completer (c, location_completer);
c906108c 12651
1bedd215
AC
12652 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
12653Enable some breakpoints.\n\
c906108c
SS
12654Give breakpoint numbers (separated by spaces) as arguments.\n\
12655With no subcommand, breakpoints are enabled until you command otherwise.\n\
12656This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 12657With a subcommand you can enable temporarily."),
c906108c
SS
12658 &enablelist, "enable ", 1, &cmdlist);
12659 if (xdb_commands)
1bedd215
AC
12660 add_com ("ab", class_breakpoint, enable_command, _("\
12661Enable some breakpoints.\n\
c906108c
SS
12662Give breakpoint numbers (separated by spaces) as arguments.\n\
12663With no subcommand, breakpoints are enabled until you command otherwise.\n\
12664This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 12665With a subcommand you can enable temporarily."));
c906108c
SS
12666
12667 add_com_alias ("en", "enable", class_breakpoint, 1);
12668
84951ab5 12669 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 12670Enable some breakpoints.\n\
c906108c
SS
12671Give breakpoint numbers (separated by spaces) as arguments.\n\
12672This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 12673May be abbreviated to simply \"enable\".\n"),
c5aa993b 12674 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 12675
1a966eab
AC
12676 add_cmd ("once", no_class, enable_once_command, _("\
12677Enable breakpoints for one hit. Give breakpoint numbers.\n\
12678If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
12679 &enablebreaklist);
12680
1a966eab
AC
12681 add_cmd ("delete", no_class, enable_delete_command, _("\
12682Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
12683If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
12684 &enablebreaklist);
12685
1a966eab
AC
12686 add_cmd ("delete", no_class, enable_delete_command, _("\
12687Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
12688If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
12689 &enablelist);
12690
1a966eab
AC
12691 add_cmd ("once", no_class, enable_once_command, _("\
12692Enable breakpoints for one hit. Give breakpoint numbers.\n\
12693If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
12694 &enablelist);
12695
1bedd215
AC
12696 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
12697Disable some breakpoints.\n\
c906108c
SS
12698Arguments are breakpoint numbers with spaces in between.\n\
12699To disable all breakpoints, give no argument.\n\
1bedd215 12700A disabled breakpoint is not forgotten, but has no effect until reenabled."),
c906108c
SS
12701 &disablelist, "disable ", 1, &cmdlist);
12702 add_com_alias ("dis", "disable", class_breakpoint, 1);
12703 add_com_alias ("disa", "disable", class_breakpoint, 1);
12704 if (xdb_commands)
1bedd215
AC
12705 add_com ("sb", class_breakpoint, disable_command, _("\
12706Disable some breakpoints.\n\
c906108c
SS
12707Arguments are breakpoint numbers with spaces in between.\n\
12708To disable all breakpoints, give no argument.\n\
1bedd215 12709A disabled breakpoint is not forgotten, but has no effect until reenabled."));
c906108c 12710
1a966eab
AC
12711 add_cmd ("breakpoints", class_alias, disable_command, _("\
12712Disable some breakpoints.\n\
c906108c
SS
12713Arguments are breakpoint numbers with spaces in between.\n\
12714To disable all breakpoints, give no argument.\n\
12715A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
1a966eab 12716This command may be abbreviated \"disable\"."),
c906108c
SS
12717 &disablelist);
12718
1bedd215
AC
12719 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
12720Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
12721Arguments are breakpoint numbers with spaces in between.\n\
12722To delete all breakpoints, give no argument.\n\
12723\n\
12724Also a prefix command for deletion of other GDB objects.\n\
1bedd215 12725The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
12726 &deletelist, "delete ", 1, &cmdlist);
12727 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 12728 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 12729 if (xdb_commands)
1bedd215
AC
12730 add_com ("db", class_breakpoint, delete_command, _("\
12731Delete some breakpoints.\n\
c906108c 12732Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 12733To delete all breakpoints, give no argument.\n"));
c906108c 12734
1a966eab
AC
12735 add_cmd ("breakpoints", class_alias, delete_command, _("\
12736Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
12737Arguments are breakpoint numbers with spaces in between.\n\
12738To delete all breakpoints, give no argument.\n\
1a966eab 12739This command may be abbreviated \"delete\"."),
c906108c
SS
12740 &deletelist);
12741
1bedd215
AC
12742 add_com ("clear", class_breakpoint, clear_command, _("\
12743Clear breakpoint at specified line or function.\n\
c906108c
SS
12744Argument may be line number, function name, or \"*\" and an address.\n\
12745If line number is specified, all breakpoints in that line are cleared.\n\
12746If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
12747If an address is specified, breakpoints at that address are cleared.\n\
12748\n\
12749With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
12750is executing in.\n\
12751\n\
1bedd215 12752See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 12753 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 12754
1bedd215 12755 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
12756Set breakpoint at specified line or function.\n"
12757BREAK_ARGS_HELP ("break")));
5ba2abeb 12758 set_cmd_completer (c, location_completer);
c94fdfd0 12759
c906108c
SS
12760 add_com_alias ("b", "break", class_run, 1);
12761 add_com_alias ("br", "break", class_run, 1);
12762 add_com_alias ("bre", "break", class_run, 1);
12763 add_com_alias ("brea", "break", class_run, 1);
12764
7681d515
PM
12765 if (xdb_commands)
12766 add_com_alias ("ba", "break", class_breakpoint, 1);
c906108c
SS
12767
12768 if (dbx_commands)
12769 {
1bedd215
AC
12770 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
12771Break in function/address or break at a line in the current file."),
c5aa993b
JM
12772 &stoplist, "stop ", 1, &cmdlist);
12773 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 12774 _("Break in function or address."), &stoplist);
c5aa993b 12775 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 12776 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
12777 add_com ("status", class_info, breakpoints_info, _("\
12778Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
12779The \"Type\" column indicates one of:\n\
12780\tbreakpoint - normal breakpoint\n\
12781\twatchpoint - watchpoint\n\
12782The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
12783the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
12784breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
12785address and file/line number respectively.\n\
12786\n\
12787Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
12788are set to the address of the last breakpoint listed unless the command\n\
12789is prefixed with \"server \".\n\n\
c906108c 12790Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 12791breakpoint set."));
c906108c
SS
12792 }
12793
1bedd215 12794 add_info ("breakpoints", breakpoints_info, _("\
e5a67952 12795Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
12796The \"Type\" column indicates one of:\n\
12797\tbreakpoint - normal breakpoint\n\
12798\twatchpoint - watchpoint\n\
12799The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
12800the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
12801breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
12802address and file/line number respectively.\n\
12803\n\
12804Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
12805are set to the address of the last breakpoint listed unless the command\n\
12806is prefixed with \"server \".\n\n\
c906108c 12807Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 12808breakpoint set."));
c906108c 12809
6b04bdb7
MS
12810 add_info_alias ("b", "breakpoints", 1);
12811
c906108c 12812 if (xdb_commands)
1bedd215
AC
12813 add_com ("lb", class_breakpoint, breakpoints_info, _("\
12814Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
12815The \"Type\" column indicates one of:\n\
12816\tbreakpoint - normal breakpoint\n\
12817\twatchpoint - watchpoint\n\
12818The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
12819the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
12820breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
12821address and file/line number respectively.\n\
12822\n\
12823Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
12824are set to the address of the last breakpoint listed unless the command\n\
12825is prefixed with \"server \".\n\n\
c906108c 12826Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 12827breakpoint set."));
c906108c 12828
1a966eab
AC
12829 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
12830Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
12831The \"Type\" column indicates one of:\n\
12832\tbreakpoint - normal breakpoint\n\
12833\twatchpoint - watchpoint\n\
12834\tlongjmp - internal breakpoint used to step through longjmp()\n\
12835\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
12836\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
12837\tfinish - internal breakpoint used by the \"finish\" command\n\
12838The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
12839the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
12840breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
12841address and file/line number respectively.\n\
12842\n\
12843Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
12844are set to the address of the last breakpoint listed unless the command\n\
12845is prefixed with \"server \".\n\n\
c906108c 12846Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 12847breakpoint set."),
c906108c
SS
12848 &maintenanceinfolist);
12849
44feb3ce
TT
12850 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
12851Set catchpoints to catch events."),
12852 &catch_cmdlist, "catch ",
12853 0/*allow-unknown*/, &cmdlist);
12854
12855 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
12856Set temporary catchpoints to catch events."),
12857 &tcatch_cmdlist, "tcatch ",
12858 0/*allow-unknown*/, &cmdlist);
12859
12860 /* Add catch and tcatch sub-commands. */
12861 add_catch_command ("catch", _("\
12862Catch an exception, when caught.\n\
12863With an argument, catch only exceptions with the given name."),
12864 catch_catch_command,
a96d9b2e 12865 NULL,
44feb3ce
TT
12866 CATCH_PERMANENT,
12867 CATCH_TEMPORARY);
12868 add_catch_command ("throw", _("\
12869Catch an exception, when thrown.\n\
12870With an argument, catch only exceptions with the given name."),
12871 catch_throw_command,
a96d9b2e 12872 NULL,
44feb3ce
TT
12873 CATCH_PERMANENT,
12874 CATCH_TEMPORARY);
12875 add_catch_command ("fork", _("Catch calls to fork."),
12876 catch_fork_command_1,
a96d9b2e 12877 NULL,
44feb3ce
TT
12878 (void *) (uintptr_t) catch_fork_permanent,
12879 (void *) (uintptr_t) catch_fork_temporary);
12880 add_catch_command ("vfork", _("Catch calls to vfork."),
12881 catch_fork_command_1,
a96d9b2e 12882 NULL,
44feb3ce
TT
12883 (void *) (uintptr_t) catch_vfork_permanent,
12884 (void *) (uintptr_t) catch_vfork_temporary);
12885 add_catch_command ("exec", _("Catch calls to exec."),
12886 catch_exec_command_1,
a96d9b2e
SDJ
12887 NULL,
12888 CATCH_PERMANENT,
12889 CATCH_TEMPORARY);
12890 add_catch_command ("syscall", _("\
12891Catch system calls by their names and/or numbers.\n\
12892Arguments say which system calls to catch. If no arguments\n\
12893are given, every system call will be caught.\n\
12894Arguments, if given, should be one or more system call names\n\
12895(if your system supports that), or system call numbers."),
12896 catch_syscall_command_1,
12897 catch_syscall_completer,
44feb3ce
TT
12898 CATCH_PERMANENT,
12899 CATCH_TEMPORARY);
44feb3ce
TT
12900 add_catch_command ("exception", _("\
12901Catch Ada exceptions, when raised.\n\
12902With an argument, catch only exceptions with the given name."),
12903 catch_ada_exception_command,
a96d9b2e 12904 NULL,
44feb3ce
TT
12905 CATCH_PERMANENT,
12906 CATCH_TEMPORARY);
12907 add_catch_command ("assert", _("\
12908Catch failed Ada assertions, when raised.\n\
12909With an argument, catch only exceptions with the given name."),
12910 catch_assert_command,
a96d9b2e 12911 NULL,
44feb3ce
TT
12912 CATCH_PERMANENT,
12913 CATCH_TEMPORARY);
c5aa993b 12914
1bedd215
AC
12915 c = add_com ("watch", class_breakpoint, watch_command, _("\
12916Set a watchpoint for an expression.\n\
06a64a0b 12917Usage: watch [-l|-location] EXPRESSION\n\
c906108c 12918A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
12919an expression changes.\n\
12920If -l or -location is given, this evaluates EXPRESSION and watches\n\
12921the memory to which it refers."));
65d12d83 12922 set_cmd_completer (c, expression_completer);
c906108c 12923
1bedd215
AC
12924 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
12925Set a read watchpoint for an expression.\n\
06a64a0b 12926Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 12927A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
12928an expression is read.\n\
12929If -l or -location is given, this evaluates EXPRESSION and watches\n\
12930the memory to which it refers."));
65d12d83 12931 set_cmd_completer (c, expression_completer);
c906108c 12932
1bedd215
AC
12933 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
12934Set a watchpoint for an expression.\n\
06a64a0b 12935Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 12936A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
12937an expression is either read or written.\n\
12938If -l or -location is given, this evaluates EXPRESSION and watches\n\
12939the memory to which it refers."));
65d12d83 12940 set_cmd_completer (c, expression_completer);
c906108c 12941
d77f58be 12942 add_info ("watchpoints", watchpoints_info, _("\
e5a67952 12943Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 12944
920d2a44
AC
12945 /* XXX: cagney/2005-02-23: This should be a boolean, and should
12946 respond to changes - contrary to the description. */
85c07804
AC
12947 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
12948 &can_use_hw_watchpoints, _("\
12949Set debugger's willingness to use watchpoint hardware."), _("\
12950Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
12951If zero, gdb will not use hardware for new watchpoints, even if\n\
12952such is available. (However, any hardware watchpoints that were\n\
12953created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
12954hardware.)"),
12955 NULL,
920d2a44 12956 show_can_use_hw_watchpoints,
85c07804 12957 &setlist, &showlist);
c906108c
SS
12958
12959 can_use_hw_watchpoints = 1;
fa8d40ab 12960
1042e4c0
SS
12961 /* Tracepoint manipulation commands. */
12962
12963 c = add_com ("trace", class_breakpoint, trace_command, _("\
12964Set a tracepoint at specified line or function.\n\
12965\n"
12966BREAK_ARGS_HELP ("trace") "\n\
12967Do \"help tracepoints\" for info on other tracepoint commands."));
12968 set_cmd_completer (c, location_completer);
12969
12970 add_com_alias ("tp", "trace", class_alias, 0);
12971 add_com_alias ("tr", "trace", class_alias, 1);
12972 add_com_alias ("tra", "trace", class_alias, 1);
12973 add_com_alias ("trac", "trace", class_alias, 1);
12974
7a697b8d
SS
12975 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
12976Set a fast tracepoint at specified line or function.\n\
12977\n"
12978BREAK_ARGS_HELP ("ftrace") "\n\
12979Do \"help tracepoints\" for info on other tracepoint commands."));
12980 set_cmd_completer (c, location_completer);
12981
0fb4aa4b
PA
12982 c = add_com ("strace", class_breakpoint, strace_command, _("\
12983Set a static tracepoint at specified line, function or marker.\n\
12984\n\
12985strace [LOCATION] [if CONDITION]\n\
12986LOCATION may be a line number, function name, \"*\" and an address,\n\
12987or -m MARKER_ID.\n\
12988If a line number is specified, probe the marker at start of code\n\
12989for that line. If a function is specified, probe the marker at start\n\
12990of code for that function. If an address is specified, probe the marker\n\
12991at that exact address. If a marker id is specified, probe the marker\n\
12992with that name. With no LOCATION, uses current execution address of\n\
12993the selected stack frame.\n\
12994Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
12995This collects arbitrary user data passed in the probe point call to the\n\
12996tracing library. You can inspect it when analyzing the trace buffer,\n\
12997by printing the $_sdata variable like any other convenience variable.\n\
12998\n\
12999CONDITION is a boolean expression.\n\
13000\n\
d41c0fc8
PA
13001Multiple tracepoints at one place are permitted, and useful if their\n\
13002conditions are different.\n\
0fb4aa4b
PA
13003\n\
13004Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
13005Do \"help tracepoints\" for info on other tracepoint commands."));
13006 set_cmd_completer (c, location_completer);
13007
1042e4c0 13008 add_info ("tracepoints", tracepoints_info, _("\
e5a67952 13009Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
13010Convenience variable \"$tpnum\" contains the number of the\n\
13011last tracepoint set."));
13012
13013 add_info_alias ("tp", "tracepoints", 1);
13014
13015 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
13016Delete specified tracepoints.\n\
13017Arguments are tracepoint numbers, separated by spaces.\n\
13018No argument means delete all tracepoints."),
13019 &deletelist);
13020
13021 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
13022Disable specified tracepoints.\n\
13023Arguments are tracepoint numbers, separated by spaces.\n\
13024No argument means disable all tracepoints."),
13025 &disablelist);
13026 deprecate_cmd (c, "disable");
13027
13028 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
13029Enable specified tracepoints.\n\
13030Arguments are tracepoint numbers, separated by spaces.\n\
13031No argument means enable all tracepoints."),
13032 &enablelist);
13033 deprecate_cmd (c, "enable");
13034
13035 add_com ("passcount", class_trace, trace_pass_command, _("\
13036Set the passcount for a tracepoint.\n\
13037The trace will end when the tracepoint has been passed 'count' times.\n\
13038Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
13039if TPNUM is omitted, passcount refers to the last tracepoint defined."));
13040
6149aea9
PA
13041 add_prefix_cmd ("save", class_breakpoint, save_command,
13042 _("Save breakpoint definitions as a script."),
13043 &save_cmdlist, "save ",
13044 0/*allow-unknown*/, &cmdlist);
13045
13046 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
13047Save current breakpoint definitions as a script.\n\
cce7e648 13048This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
13049catchpoints, tracepoints). Use the 'source' command in another debug\n\
13050session to restore them."),
13051 &save_cmdlist);
13052 set_cmd_completer (c, filename_completer);
13053
13054 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 13055Save current tracepoint definitions as a script.\n\
6149aea9
PA
13056Use the 'source' command in another debug session to restore them."),
13057 &save_cmdlist);
1042e4c0
SS
13058 set_cmd_completer (c, filename_completer);
13059
6149aea9
PA
13060 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
13061 deprecate_cmd (c, "save tracepoints");
13062
1bedd215 13063 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
13064Breakpoint specific settings\n\
13065Configure various breakpoint-specific variables such as\n\
1bedd215 13066pending breakpoint behavior"),
fa8d40ab
JJ
13067 &breakpoint_set_cmdlist, "set breakpoint ",
13068 0/*allow-unknown*/, &setlist);
1bedd215 13069 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
13070Breakpoint specific settings\n\
13071Configure various breakpoint-specific variables such as\n\
1bedd215 13072pending breakpoint behavior"),
fa8d40ab
JJ
13073 &breakpoint_show_cmdlist, "show breakpoint ",
13074 0/*allow-unknown*/, &showlist);
13075
7915a72c
AC
13076 add_setshow_auto_boolean_cmd ("pending", no_class,
13077 &pending_break_support, _("\
13078Set debugger's behavior regarding pending breakpoints."), _("\
13079Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
13080If on, an unrecognized breakpoint location will cause gdb to create a\n\
13081pending breakpoint. If off, an unrecognized breakpoint location results in\n\
13082an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 13083user-query to see if a pending breakpoint should be created."),
2c5b56ce 13084 NULL,
920d2a44 13085 show_pending_break_support,
6e1d7d6c
AC
13086 &breakpoint_set_cmdlist,
13087 &breakpoint_show_cmdlist);
fa8d40ab
JJ
13088
13089 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
13090
13091 add_setshow_boolean_cmd ("auto-hw", no_class,
13092 &automatic_hardware_breakpoints, _("\
13093Set automatic usage of hardware breakpoints."), _("\
13094Show automatic usage of hardware breakpoints."), _("\
13095If set, the debugger will automatically use hardware breakpoints for\n\
13096breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
13097a warning will be emitted for such breakpoints."),
13098 NULL,
13099 show_automatic_hardware_breakpoints,
13100 &breakpoint_set_cmdlist,
13101 &breakpoint_show_cmdlist);
74960c60 13102
33e5cbd6
PA
13103 add_setshow_enum_cmd ("always-inserted", class_support,
13104 always_inserted_enums, &always_inserted_mode, _("\
74960c60
VP
13105Set mode for inserting breakpoints."), _("\
13106Show mode for inserting breakpoints."), _("\
33e5cbd6
PA
13107When this mode is off, breakpoints are inserted in inferior when it is\n\
13108resumed, and removed when execution stops. When this mode is on,\n\
13109breakpoints are inserted immediately and removed only when the user\n\
13110deletes the breakpoint. When this mode is auto (which is the default),\n\
13111the behaviour depends on the non-stop setting (see help set non-stop).\n\
13112In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
13113behaves as if always-inserted mode is on; if gdb is controlling the\n\
13114inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
74960c60
VP
13115 NULL,
13116 &show_always_inserted_mode,
13117 &breakpoint_set_cmdlist,
13118 &breakpoint_show_cmdlist);
f1310107
TJB
13119
13120 add_com ("break-range", class_breakpoint, break_range_command, _("\
13121Set a breakpoint for an address range.\n\
13122break-range START-LOCATION, END-LOCATION\n\
13123where START-LOCATION and END-LOCATION can be one of the following:\n\
13124 LINENUM, for that line in the current file,\n\
13125 FILE:LINENUM, for that line in that file,\n\
13126 +OFFSET, for that number of lines after the current line\n\
13127 or the start of the range\n\
13128 FUNCTION, for the first line in that function,\n\
13129 FILE:FUNCTION, to distinguish among like-named static functions.\n\
13130 *ADDRESS, for the instruction at that address.\n\
13131\n\
13132The breakpoint will stop execution of the inferior whenever it executes\n\
13133an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
13134range (including START-LOCATION and END-LOCATION)."));
13135
765dc015 13136 automatic_hardware_breakpoints = 1;
f3b1572e
PA
13137
13138 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
c906108c 13139}
This page took 1.89427 seconds and 4 git commands to generate.