* arm-tdep.c: Include features/arm-with-m.c.
[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,
4c38e0a4 5 2008, 2009, 2010 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"
42#include "annotate.h"
43#include "symfile.h"
44#include "objfiles.h"
0378c332 45#include "source.h"
c5f0f3d0 46#include "linespec.h"
c94fdfd0 47#include "completer.h"
5b7f31a4 48#include "gdb.h"
8b93c638 49#include "ui-out.h"
e1507482 50#include "cli/cli-script.h"
0225421b 51#include "gdb_assert.h"
fe898f56 52#include "block.h"
a77053c2 53#include "solib.h"
84acb35a
JJ
54#include "solist.h"
55#include "observer.h"
60250e8b 56#include "exceptions.h"
765dc015 57#include "memattr.h"
f7f9143b 58#include "ada-lang.h"
d1aa2f50 59#include "top.h"
fa4727a6 60#include "wrapper.h"
79a45b7d 61#include "valprint.h"
4efc6507 62#include "jit.h"
a96d9b2e 63#include "xml-syscall.h"
65d79d4b 64#include "parser-defs.h"
c906108c 65
1042e4c0
SS
66/* readline include files */
67#include "readline/readline.h"
68#include "readline/history.h"
69
70/* readline defines this. */
71#undef savestring
72
034dad6f 73#include "mi/mi-common.h"
104c1213 74
44feb3ce
TT
75/* Arguments to pass as context to some catch command handlers. */
76#define CATCH_PERMANENT ((void *) (uintptr_t) 0)
77#define CATCH_TEMPORARY ((void *) (uintptr_t) 1)
c906108c 78
44feb3ce 79/* Prototypes for local functions. */
c906108c 80
a14ed312 81static void enable_delete_command (char *, int);
c906108c 82
a14ed312 83static void enable_once_command (char *, int);
c906108c 84
a14ed312 85static void disable_command (char *, int);
c906108c 86
a14ed312 87static void enable_command (char *, int);
c906108c 88
95a42b64
TT
89static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
90 void *),
91 void *);
c906108c 92
a14ed312 93static void ignore_command (char *, int);
c906108c 94
4efb68b1 95static int breakpoint_re_set_one (void *);
c906108c 96
a14ed312 97static void clear_command (char *, int);
c906108c 98
a14ed312 99static void catch_command (char *, int);
c906108c 100
a14ed312 101static int can_use_hardware_watchpoint (struct value *);
c906108c 102
98deb0da 103static void break_command_1 (char *, int, int);
c906108c 104
a14ed312 105static void mention (struct breakpoint *);
c906108c 106
63c252f8
PM
107/* This function is used in gdbtk sources and thus can not be made static. */
108struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
a6d9a66e
UW
109 struct symtab_and_line,
110 enum bptype);
c906108c 111
76897487
KB
112static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
113
a6d9a66e
UW
114static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
115 CORE_ADDR bpaddr,
88f7da05 116 enum bptype bptype);
76897487 117
6c95b8df
PA
118static void describe_other_breakpoints (struct gdbarch *,
119 struct program_space *, CORE_ADDR,
5af949e3 120 struct obj_section *, int);
c906108c 121
6c95b8df
PA
122static int breakpoint_address_match (struct address_space *aspace1,
123 CORE_ADDR addr1,
124 struct address_space *aspace2,
125 CORE_ADDR addr2);
126
85d721b8
PA
127static int watchpoint_locations_match (struct bp_location *loc1,
128 struct bp_location *loc2);
129
a14ed312 130static void breakpoints_info (char *, int);
c906108c 131
d77f58be
SS
132static void watchpoints_info (char *, int);
133
134static int breakpoint_1 (int, int, int (*) (const struct breakpoint *));
c906108c 135
f431efe5 136static bpstat bpstat_alloc (struct bp_location *, bpstat);
c906108c 137
4efb68b1 138static int breakpoint_cond_eval (void *);
c906108c 139
4efb68b1 140static void cleanup_executing_breakpoints (void *);
c906108c 141
a14ed312 142static void commands_command (char *, int);
c906108c 143
a14ed312 144static void condition_command (char *, int);
c906108c 145
a14ed312 146static int get_number_trailer (char **, int);
c906108c 147
c5aa993b
JM
148typedef enum
149 {
150 mark_inserted,
151 mark_uninserted
152 }
153insertion_state_t;
c906108c 154
0bde7532 155static int remove_breakpoint (struct bp_location *, insertion_state_t);
6c95b8df 156static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
c906108c 157
a14ed312 158static enum print_stop_action print_it_typical (bpstat);
e514a9d6
JM
159
160static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 161
4efb68b1 162static int watchpoint_check (void *);
c906108c 163
a14ed312 164static void maintenance_info_breakpoints (char *, int);
c906108c 165
a14ed312 166static int hw_breakpoint_used_count (void);
c906108c 167
a14ed312 168static int hw_watchpoint_used_count (enum bptype, int *);
c906108c 169
a14ed312 170static void hbreak_command (char *, int);
c906108c 171
a14ed312 172static void thbreak_command (char *, int);
c906108c 173
a14ed312 174static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
c906108c 175
a14ed312 176static void stop_command (char *arg, int from_tty);
7a292a7a 177
a14ed312 178static void stopin_command (char *arg, int from_tty);
7a292a7a 179
a14ed312 180static void stopat_command (char *arg, int from_tty);
7a292a7a 181
a14ed312 182static char *ep_parse_optional_if_clause (char **arg);
7a292a7a 183
d85310f7
MS
184static void catch_exception_command_1 (enum exception_event_kind ex_event,
185 char *arg, int tempflag, int from_tty);
7a292a7a 186
a14ed312 187static void tcatch_command (char *arg, int from_tty);
7a292a7a 188
a14ed312 189static void ep_skip_leading_whitespace (char **s);
7a292a7a 190
d03285ec
UW
191static void detach_single_step_breakpoints (void);
192
6c95b8df
PA
193static int single_step_breakpoint_inserted_here_p (struct address_space *,
194 CORE_ADDR pc);
1aafd4da 195
fe3f5fa8 196static void free_bp_location (struct bp_location *loc);
f431efe5
PA
197static void incref_bp_location (struct bp_location *loc);
198static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 199
39d61571 200static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 201
b60e7edf 202static void update_global_location_list (int);
a5606eee 203
b60e7edf 204static void update_global_location_list_nothrow (int);
74960c60 205
d77f58be 206static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60 207
d77f58be 208static int is_watchpoint (const struct breakpoint *bpt);
60e1c644 209
74960c60 210static void insert_breakpoint_locations (void);
a5606eee 211
a96d9b2e
SDJ
212static int syscall_catchpoint_p (struct breakpoint *b);
213
1042e4c0
SS
214static void tracepoints_info (char *, int);
215
216static void delete_trace_command (char *, int);
217
218static void enable_trace_command (char *, int);
219
220static void disable_trace_command (char *, int);
221
222static void trace_pass_command (char *, int);
223
0fb4aa4b
PA
224/* Assuming we're creating a static tracepoint, does S look like a
225 static tracepoint marker spec ("-m MARKER_ID")? */
226#define is_marker_spec(s) \
227 (strncmp (s, "-m", 2) == 0 && ((s)[2] == ' ' || (s)[2] == '\t'))
228
5cea2a26
PA
229/* A reference-counted struct command_line. This lets multiple
230 breakpoints share a single command list. */
231struct counted_command_line
232{
233 /* The reference count. */
234 int refc;
235
236 /* The command list. */
237 struct command_line *commands;
238};
239
240struct command_line *
241breakpoint_commands (struct breakpoint *b)
242{
243 return b->commands ? b->commands->commands : NULL;
244}
3daf8fe5 245
f3b1572e
PA
246/* Flag indicating that a command has proceeded the inferior past the
247 current breakpoint. */
248
249static int breakpoint_proceeded;
250
2cec12e5
AR
251static const char *
252bpdisp_text (enum bpdisp disp)
253{
254 /* NOTE: the following values are a part of MI protocol and represent
255 values of 'disp' field returned when inferior stops at a breakpoint. */
bc043ef3 256 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 257
2cec12e5
AR
258 return bpdisps[(int) disp];
259}
c906108c 260
2cec12e5 261/* Prototypes for exported functions. */
c906108c
SS
262/* If FALSE, gdb will not use hardware support for watchpoints, even
263 if such is available. */
264static int can_use_hw_watchpoints;
265
920d2a44
AC
266static void
267show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
268 struct cmd_list_element *c,
269 const char *value)
270{
271 fprintf_filtered (file, _("\
272Debugger's willingness to use watchpoint hardware is %s.\n"),
273 value);
274}
275
fa8d40ab
JJ
276/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
277 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
278 for unrecognized breakpoint locations.
279 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
280static enum auto_boolean pending_break_support;
920d2a44
AC
281static void
282show_pending_break_support (struct ui_file *file, int from_tty,
283 struct cmd_list_element *c,
284 const char *value)
285{
286 fprintf_filtered (file, _("\
287Debugger's behavior regarding pending breakpoints is %s.\n"),
288 value);
289}
fa8d40ab 290
765dc015
VP
291/* If 1, gdb will automatically use hardware breakpoints for breakpoints
292 set with "break" but falling in read-only memory.
293 If 0, gdb will warn about such breakpoints, but won't automatically
294 use hardware breakpoints. */
295static int automatic_hardware_breakpoints;
296static void
297show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
298 struct cmd_list_element *c,
299 const char *value)
300{
301 fprintf_filtered (file, _("\
302Automatic usage of hardware breakpoints is %s.\n"),
303 value);
304}
305
33e5cbd6
PA
306/* If on, gdb will keep breakpoints inserted even as inferior is
307 stopped, and immediately insert any new breakpoints. If off, gdb
308 will insert breakpoints into inferior only when resuming it, and
309 will remove breakpoints upon stop. If auto, GDB will behave as ON
310 if in non-stop mode, and as OFF if all-stop mode.*/
311
312static const char always_inserted_auto[] = "auto";
313static const char always_inserted_on[] = "on";
314static const char always_inserted_off[] = "off";
315static const char *always_inserted_enums[] = {
316 always_inserted_auto,
317 always_inserted_off,
318 always_inserted_on,
319 NULL
320};
321static const char *always_inserted_mode = always_inserted_auto;
322static void
74960c60 323show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 324 struct cmd_list_element *c, const char *value)
74960c60 325{
33e5cbd6
PA
326 if (always_inserted_mode == always_inserted_auto)
327 fprintf_filtered (file, _("\
328Always inserted breakpoint mode is %s (currently %s).\n"),
329 value,
330 breakpoints_always_inserted_mode () ? "on" : "off");
331 else
332 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"), value);
74960c60
VP
333}
334
33e5cbd6
PA
335int
336breakpoints_always_inserted_mode (void)
337{
338 return (always_inserted_mode == always_inserted_on
339 || (always_inserted_mode == always_inserted_auto && non_stop));
340}
765dc015 341
a14ed312 342void _initialize_breakpoint (void);
c906108c 343
c906108c
SS
344/* Are we executing breakpoint commands? */
345static int executing_breakpoint_commands;
346
c02f5703
MS
347/* Are overlay event breakpoints enabled? */
348static int overlay_events_enabled;
349
c906108c
SS
350/* Walk the following statement or block through all breakpoints.
351 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
352 breakpoint. */
353
5c44784c 354#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 355
5c44784c
JM
356#define ALL_BREAKPOINTS_SAFE(B,TMP) \
357 for (B = breakpoint_chain; \
358 B ? (TMP=B->next, 1): 0; \
359 B = TMP)
c906108c 360
876fa593
JK
361/* Similar iterator for the low-level breakpoints. SAFE variant is not
362 provided so update_global_location_list must not be called while executing
363 the block of ALL_BP_LOCATIONS. */
7cc221ef 364
876fa593
JK
365#define ALL_BP_LOCATIONS(B,BP_TMP) \
366 for (BP_TMP = bp_location; \
367 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
368 BP_TMP++)
7cc221ef 369
1042e4c0
SS
370/* Iterator for tracepoints only. */
371
372#define ALL_TRACEPOINTS(B) \
373 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 374 if (is_tracepoint (B))
1042e4c0 375
7cc221ef 376/* Chains of all breakpoints defined. */
c906108c
SS
377
378struct breakpoint *breakpoint_chain;
379
876fa593
JK
380/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
381
382static struct bp_location **bp_location;
383
384/* Number of elements of BP_LOCATION. */
385
386static unsigned bp_location_count;
387
388/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and ADDRESS
389 for the current elements of BP_LOCATION which get a valid result from
390 bp_location_has_shadow. You can use it for roughly limiting the subrange of
391 BP_LOCATION to scan for shadow bytes for an address you need to read. */
392
393static CORE_ADDR bp_location_placed_address_before_address_max;
394
395/* Maximum offset plus alignment between
396 bp_target_info.PLACED_ADDRESS + bp_target_info.SHADOW_LEN and ADDRESS for
397 the current elements of BP_LOCATION which get a valid result from
398 bp_location_has_shadow. You can use it for roughly limiting the subrange of
399 BP_LOCATION to scan for shadow bytes for an address you need to read. */
400
401static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 402
20874c92 403/* The locations that no longer correspond to any breakpoint,
876fa593 404 unlinked from bp_location array, but for which a hit
20874c92
VP
405 may still be reported by a target. */
406VEC(bp_location_p) *moribund_locations = NULL;
407
c906108c
SS
408/* Number of last breakpoint made. */
409
95a42b64
TT
410static int breakpoint_count;
411
86b17b60
PA
412/* The value of `breakpoint_count' before the last command that
413 created breakpoints. If the last (break-like) command created more
414 than one breakpoint, then the difference between BREAKPOINT_COUNT
415 and PREV_BREAKPOINT_COUNT is more than one. */
416static int prev_breakpoint_count;
c906108c 417
1042e4c0
SS
418/* Number of last tracepoint made. */
419
95a42b64 420static int tracepoint_count;
1042e4c0 421
6149aea9
PA
422static struct cmd_list_element *breakpoint_set_cmdlist;
423static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 424struct cmd_list_element *save_cmdlist;
6149aea9 425
468d015d
JJ
426/* Return whether a breakpoint is an active enabled breakpoint. */
427static int
428breakpoint_enabled (struct breakpoint *b)
429{
0d381245 430 return (b->enable_state == bp_enabled);
468d015d
JJ
431}
432
c906108c
SS
433/* Set breakpoint count to NUM. */
434
95a42b64 435static void
fba45db2 436set_breakpoint_count (int num)
c906108c 437{
86b17b60 438 prev_breakpoint_count = breakpoint_count;
c906108c 439 breakpoint_count = num;
4fa62494 440 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
441}
442
86b17b60
PA
443/* Used by `start_rbreak_breakpoints' below, to record the current
444 breakpoint count before "rbreak" creates any breakpoint. */
445static int rbreak_start_breakpoint_count;
446
95a42b64
TT
447/* Called at the start an "rbreak" command to record the first
448 breakpoint made. */
86b17b60 449
95a42b64
TT
450void
451start_rbreak_breakpoints (void)
452{
86b17b60 453 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
454}
455
456/* Called at the end of an "rbreak" command to record the last
457 breakpoint made. */
86b17b60 458
95a42b64
TT
459void
460end_rbreak_breakpoints (void)
461{
86b17b60 462 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
463}
464
c906108c
SS
465/* Used in run_command to zero the hit count when a new run starts. */
466
467void
fba45db2 468clear_breakpoint_hit_counts (void)
c906108c
SS
469{
470 struct breakpoint *b;
471
472 ALL_BREAKPOINTS (b)
473 b->hit_count = 0;
474}
475
9add0f1b
TT
476/* Allocate a new counted_command_line with reference count of 1.
477 The new structure owns COMMANDS. */
478
479static struct counted_command_line *
480alloc_counted_command_line (struct command_line *commands)
481{
482 struct counted_command_line *result
483 = xmalloc (sizeof (struct counted_command_line));
cc59ec59 484
9add0f1b
TT
485 result->refc = 1;
486 result->commands = commands;
487 return result;
488}
489
490/* Increment reference count. This does nothing if CMD is NULL. */
491
492static void
493incref_counted_command_line (struct counted_command_line *cmd)
494{
495 if (cmd)
496 ++cmd->refc;
497}
498
499/* Decrement reference count. If the reference count reaches 0,
500 destroy the counted_command_line. Sets *CMDP to NULL. This does
501 nothing if *CMDP is NULL. */
502
503static void
504decref_counted_command_line (struct counted_command_line **cmdp)
505{
506 if (*cmdp)
507 {
508 if (--(*cmdp)->refc == 0)
509 {
510 free_command_lines (&(*cmdp)->commands);
511 xfree (*cmdp);
512 }
513 *cmdp = NULL;
514 }
515}
516
517/* A cleanup function that calls decref_counted_command_line. */
518
519static void
520do_cleanup_counted_command_line (void *arg)
521{
522 decref_counted_command_line (arg);
523}
524
525/* Create a cleanup that calls decref_counted_command_line on the
526 argument. */
527
528static struct cleanup *
529make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
530{
531 return make_cleanup (do_cleanup_counted_command_line, cmdp);
532}
533
c906108c
SS
534/* Default address, symtab and line to put a breakpoint at
535 for "break" command with no arg.
536 if default_breakpoint_valid is zero, the other three are
537 not valid, and "break" with no arg is an error.
538
539 This set by print_stack_frame, which calls set_default_breakpoint. */
540
541int default_breakpoint_valid;
542CORE_ADDR default_breakpoint_address;
543struct symtab *default_breakpoint_symtab;
544int default_breakpoint_line;
6c95b8df
PA
545struct program_space *default_breakpoint_pspace;
546
c906108c
SS
547\f
548/* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
549 Advance *PP after the string and any trailing whitespace.
550
551 Currently the string can either be a number or "$" followed by the name
552 of a convenience variable. Making it an expression wouldn't work well
5c44784c 553 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
40c03ae8
EZ
554
555 If the string is a NULL pointer, that denotes the last breakpoint.
5c44784c
JM
556
557 TRAILER is a character which can be found after the number; most
558 commonly this is `-'. If you don't want a trailer, use \0. */
c906108c 559static int
fba45db2 560get_number_trailer (char **pp, int trailer)
c906108c 561{
5c44784c 562 int retval = 0; /* default */
c906108c
SS
563 char *p = *pp;
564
565 if (p == NULL)
566 /* Empty line means refer to the last breakpoint. */
567 return breakpoint_count;
568 else if (*p == '$')
569 {
570 /* Make a copy of the name, so we can null-terminate it
c5aa993b 571 to pass to lookup_internalvar(). */
c906108c
SS
572 char *varname;
573 char *start = ++p;
4fa62494 574 LONGEST val;
c906108c
SS
575
576 while (isalnum (*p) || *p == '_')
577 p++;
578 varname = (char *) alloca (p - start + 1);
579 strncpy (varname, start, p - start);
580 varname[p - start] = '\0';
4fa62494
UW
581 if (get_internalvar_integer (lookup_internalvar (varname), &val))
582 retval = (int) val;
5c44784c
JM
583 else
584 {
a3f17187 585 printf_filtered (_("Convenience variable must have integer value.\n"));
5c44784c
JM
586 retval = 0;
587 }
c906108c
SS
588 }
589 else
590 {
591 if (*p == '-')
592 ++p;
593 while (*p >= '0' && *p <= '9')
594 ++p;
595 if (p == *pp)
596 /* There is no number here. (e.g. "cond a == b"). */
5c44784c
JM
597 {
598 /* Skip non-numeric token */
599 while (*p && !isspace((int) *p))
600 ++p;
601 /* Return zero, which caller must interpret as error. */
602 retval = 0;
603 }
604 else
605 retval = atoi (*pp);
606 }
607 if (!(isspace (*p) || *p == '\0' || *p == trailer))
608 {
609 /* Trailing junk: return 0 and let caller print error msg. */
610 while (!(isspace (*p) || *p == '\0' || *p == trailer))
611 ++p;
612 retval = 0;
c906108c 613 }
c906108c
SS
614 while (isspace (*p))
615 p++;
616 *pp = p;
617 return retval;
618}
5c44784c 619
11cf8741 620
5c44784c
JM
621/* Like get_number_trailer, but don't allow a trailer. */
622int
fba45db2 623get_number (char **pp)
5c44784c
JM
624{
625 return get_number_trailer (pp, '\0');
626}
627
628/* Parse a number or a range.
629 * A number will be of the form handled by get_number.
630 * A range will be of the form <number1> - <number2>, and
631 * will represent all the integers between number1 and number2,
632 * inclusive.
633 *
634 * While processing a range, this fuction is called iteratively;
635 * At each call it will return the next value in the range.
636 *
637 * At the beginning of parsing a range, the char pointer PP will
638 * be advanced past <number1> and left pointing at the '-' token.
639 * Subsequent calls will not advance the pointer until the range
640 * is completed. The call that completes the range will advance
641 * pointer PP past <number2>.
642 */
643
644int
fba45db2 645get_number_or_range (char **pp)
5c44784c
JM
646{
647 static int last_retval, end_value;
648 static char *end_ptr;
649 static int in_range = 0;
650
651 if (**pp != '-')
652 {
653 /* Default case: pp is pointing either to a solo number,
654 or to the first number of a range. */
655 last_retval = get_number_trailer (pp, '-');
656 if (**pp == '-')
657 {
658 char **temp;
659
660 /* This is the start of a range (<number1> - <number2>).
661 Skip the '-', parse and remember the second number,
662 and also remember the end of the final token. */
663
664 temp = &end_ptr;
665 end_ptr = *pp + 1;
666 while (isspace ((int) *end_ptr))
667 end_ptr++; /* skip white space */
668 end_value = get_number (temp);
669 if (end_value < last_retval)
670 {
8a3fe4f8 671 error (_("inverted range"));
5c44784c
JM
672 }
673 else if (end_value == last_retval)
674 {
675 /* degenerate range (number1 == number2). Advance the
676 token pointer so that the range will be treated as a
677 single number. */
678 *pp = end_ptr;
679 }
680 else
681 in_range = 1;
682 }
683 }
684 else if (! in_range)
8a3fe4f8 685 error (_("negative value"));
5c44784c
JM
686 else
687 {
688 /* pp points to the '-' that betokens a range. All
689 number-parsing has already been done. Return the next
690 integer value (one greater than the saved previous value).
691 Do not advance the token pointer 'pp' until the end of range
692 is reached. */
693
694 if (++last_retval == end_value)
695 {
696 /* End of range reached; advance token pointer. */
697 *pp = end_ptr;
698 in_range = 0;
699 }
700 }
701 return last_retval;
702}
703
48cb2d85
VP
704/* Return the breakpoint with the specified number, or NULL
705 if the number does not refer to an existing breakpoint. */
706
707struct breakpoint *
708get_breakpoint (int num)
709{
710 struct breakpoint *b;
711
712 ALL_BREAKPOINTS (b)
713 if (b->number == num)
714 return b;
715
716 return NULL;
717}
5c44784c 718
c906108c 719\f
adc36818
PM
720
721void
722set_breakpoint_condition (struct breakpoint *b, char *exp,
723 int from_tty)
724{
725 struct bp_location *loc = b->loc;
726
727 for (; loc; loc = loc->next)
728 {
729 xfree (loc->cond);
730 loc->cond = NULL;
731 }
732 xfree (b->cond_string);
733 b->cond_string = NULL;
734 xfree (b->cond_exp);
735 b->cond_exp = NULL;
736
737 if (*exp == 0)
738 {
739 if (from_tty)
740 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
741 }
742 else
743 {
744 char *arg = exp;
cc59ec59 745
adc36818
PM
746 /* I don't know if it matters whether this is the string the user
747 typed in or the decompiled expression. */
748 b->cond_string = xstrdup (arg);
749 b->condition_not_parsed = 0;
750
751 if (is_watchpoint (b))
752 {
753 innermost_block = NULL;
754 arg = exp;
755 b->cond_exp = parse_exp_1 (&arg, 0, 0);
756 if (*arg)
757 error (_("Junk at end of expression"));
758 b->cond_exp_valid_block = innermost_block;
759 }
760 else
761 {
762 for (loc = b->loc; loc; loc = loc->next)
763 {
764 arg = exp;
765 loc->cond =
766 parse_exp_1 (&arg, block_for_pc (loc->address), 0);
767 if (*arg)
768 error (_("Junk at end of expression"));
769 }
770 }
771 }
772 breakpoints_changed ();
773 observer_notify_breakpoint_modified (b->number);
774}
775
c906108c
SS
776/* condition N EXP -- set break condition of breakpoint N to EXP. */
777
778static void
fba45db2 779condition_command (char *arg, int from_tty)
c906108c 780{
52f0bd74 781 struct breakpoint *b;
c906108c 782 char *p;
52f0bd74 783 int bnum;
c906108c
SS
784
785 if (arg == 0)
e2e0b3e5 786 error_no_arg (_("breakpoint number"));
c906108c
SS
787
788 p = arg;
789 bnum = get_number (&p);
5c44784c 790 if (bnum == 0)
8a3fe4f8 791 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
792
793 ALL_BREAKPOINTS (b)
794 if (b->number == bnum)
2f069f6f 795 {
2566ad2d 796 set_breakpoint_condition (b, p, from_tty);
2f069f6f
JB
797 return;
798 }
c906108c 799
8a3fe4f8 800 error (_("No breakpoint number %d."), bnum);
c906108c
SS
801}
802
a7bdde9e
VP
803/* Check that COMMAND do not contain commands that are suitable
804 only for tracepoints and not suitable for ordinary breakpoints.
805 Throw if any such commands is found.
806*/
807static void
808check_no_tracepoint_commands (struct command_line *commands)
809{
810 struct command_line *c;
cc59ec59 811
a7bdde9e
VP
812 for (c = commands; c; c = c->next)
813 {
814 int i;
815
816 if (c->control_type == while_stepping_control)
817 error (_("The 'while-stepping' command can only be used for tracepoints"));
818
819 for (i = 0; i < c->body_count; ++i)
820 check_no_tracepoint_commands ((c->body_list)[i]);
821
822 /* Not that command parsing removes leading whitespace and comment
823 lines and also empty lines. So, we only need to check for
824 command directly. */
825 if (strstr (c->line, "collect ") == c->line)
826 error (_("The 'collect' command can only be used for tracepoints"));
827
51661e93
VP
828 if (strstr (c->line, "teval ") == c->line)
829 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
830 }
831}
832
d77f58be
SS
833/* Encapsulate tests for different types of tracepoints. */
834
a7bdde9e 835int
d77f58be 836is_tracepoint (const struct breakpoint *b)
a7bdde9e 837{
0fb4aa4b
PA
838 return (b->type == bp_tracepoint
839 || b->type == bp_fast_tracepoint
840 || b->type == bp_static_tracepoint);
a7bdde9e 841}
d77f58be 842
95a42b64
TT
843/* A helper function that validsates that COMMANDS are valid for a
844 breakpoint. This function will throw an exception if a problem is
845 found. */
48cb2d85 846
95a42b64
TT
847static void
848validate_commands_for_breakpoint (struct breakpoint *b,
849 struct command_line *commands)
48cb2d85 850{
d77f58be 851 if (is_tracepoint (b))
a7bdde9e
VP
852 {
853 /* We need to verify that each top-level element of commands
854 is valid for tracepoints, that there's at most one while-stepping
855 element, and that while-stepping's body has valid tracing commands
856 excluding nested while-stepping. */
857 struct command_line *c;
858 struct command_line *while_stepping = 0;
859 for (c = commands; c; c = c->next)
860 {
a7bdde9e
VP
861 if (c->control_type == while_stepping_control)
862 {
863 if (b->type == bp_fast_tracepoint)
0fb4aa4b
PA
864 error (_("\
865The 'while-stepping' command cannot be used for fast tracepoint"));
866 else if (b->type == bp_static_tracepoint)
867 error (_("\
868The 'while-stepping' command cannot be used for static tracepoint"));
a7bdde9e
VP
869
870 if (while_stepping)
871 error (_("The 'while-stepping' command can be used only once"));
872 else
873 while_stepping = c;
874 }
875 }
876 if (while_stepping)
877 {
878 struct command_line *c2;
879
880 gdb_assert (while_stepping->body_count == 1);
881 c2 = while_stepping->body_list[0];
882 for (; c2; c2 = c2->next)
883 {
a7bdde9e
VP
884 if (c2->control_type == while_stepping_control)
885 error (_("The 'while-stepping' command cannot be nested"));
886 }
887 }
888 }
889 else
890 {
891 check_no_tracepoint_commands (commands);
892 }
95a42b64
TT
893}
894
0fb4aa4b
PA
895/* Return a vector of all the static tracepoints set at ADDR. The
896 caller is responsible for releasing the vector. */
897
898VEC(breakpoint_p) *
899static_tracepoints_here (CORE_ADDR addr)
900{
901 struct breakpoint *b;
902 VEC(breakpoint_p) *found = 0;
903 struct bp_location *loc;
904
905 ALL_BREAKPOINTS (b)
906 if (b->type == bp_static_tracepoint)
907 {
908 for (loc = b->loc; loc; loc = loc->next)
909 if (loc->address == addr)
910 VEC_safe_push(breakpoint_p, found, b);
911 }
912
913 return found;
914}
915
95a42b64
TT
916/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
917 validate that only allowed commands are included.
918*/
919
920void
921breakpoint_set_commands (struct breakpoint *b, struct command_line *commands)
922{
923 validate_commands_for_breakpoint (b, commands);
a7bdde9e 924
9add0f1b
TT
925 decref_counted_command_line (&b->commands);
926 b->commands = alloc_counted_command_line (commands);
48cb2d85
VP
927 breakpoints_changed ();
928 observer_notify_breakpoint_modified (b->number);
929}
930
95a42b64
TT
931void
932check_tracepoint_command (char *line, void *closure)
a7bdde9e
VP
933{
934 struct breakpoint *b = closure;
cc59ec59 935
a7bdde9e
VP
936 validate_actionline (&line, b);
937}
938
95a42b64
TT
939/* A structure used to pass information through
940 map_breakpoint_numbers. */
941
942struct commands_info
943{
944 /* True if the command was typed at a tty. */
945 int from_tty;
86b17b60
PA
946
947 /* The breakpoint range spec. */
948 char *arg;
949
95a42b64
TT
950 /* Non-NULL if the body of the commands are being read from this
951 already-parsed command. */
952 struct command_line *control;
86b17b60 953
95a42b64
TT
954 /* The command lines read from the user, or NULL if they have not
955 yet been read. */
956 struct counted_command_line *cmd;
957};
958
959/* A callback for map_breakpoint_numbers that sets the commands for
960 commands_command. */
961
c906108c 962static void
95a42b64 963do_map_commands_command (struct breakpoint *b, void *data)
c906108c 964{
95a42b64 965 struct commands_info *info = data;
c906108c 966
95a42b64
TT
967 if (info->cmd == NULL)
968 {
969 struct command_line *l;
5c44784c 970
95a42b64
TT
971 if (info->control != NULL)
972 l = copy_command_lines (info->control->body_list[0]);
973 else
86b17b60
PA
974 {
975 struct cleanup *old_chain;
976 char *str;
c5aa993b 977
86b17b60
PA
978 str = xstrprintf (_("Type commands for breakpoint(s) %s, one per line."),
979 info->arg);
980
981 old_chain = make_cleanup (xfree, str);
982
983 l = read_command_lines (str,
984 info->from_tty, 1,
d77f58be 985 (is_tracepoint (b)
86b17b60
PA
986 ? check_tracepoint_command : 0),
987 b);
988
989 do_cleanups (old_chain);
990 }
a7bdde9e 991
95a42b64
TT
992 info->cmd = alloc_counted_command_line (l);
993 }
994
995 /* If a breakpoint was on the list more than once, we don't need to
996 do anything. */
997 if (b->commands != info->cmd)
998 {
999 validate_commands_for_breakpoint (b, info->cmd->commands);
1000 incref_counted_command_line (info->cmd);
1001 decref_counted_command_line (&b->commands);
1002 b->commands = info->cmd;
1003 breakpoints_changed ();
1004 observer_notify_breakpoint_modified (b->number);
c5aa993b 1005 }
95a42b64
TT
1006}
1007
1008static void
1009commands_command_1 (char *arg, int from_tty, struct command_line *control)
1010{
1011 struct cleanup *cleanups;
1012 struct commands_info info;
1013
1014 info.from_tty = from_tty;
1015 info.control = control;
1016 info.cmd = NULL;
1017 /* If we read command lines from the user, then `info' will hold an
1018 extra reference to the commands that we must clean up. */
1019 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
1020
1021 if (arg == NULL || !*arg)
1022 {
86b17b60
PA
1023 if (breakpoint_count - prev_breakpoint_count > 1)
1024 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1, breakpoint_count);
95a42b64
TT
1025 else if (breakpoint_count > 0)
1026 arg = xstrprintf ("%d", breakpoint_count);
86b17b60
PA
1027 else
1028 {
1029 /* So that we don't try to free the incoming non-NULL
1030 argument in the cleanup below. Mapping breakpoint
1031 numbers will fail in this case. */
1032 arg = NULL;
1033 }
95a42b64 1034 }
9766ced4
SS
1035 else
1036 /* The command loop has some static state, so we need to preserve
1037 our argument. */
1038 arg = xstrdup (arg);
86b17b60
PA
1039
1040 if (arg != NULL)
1041 make_cleanup (xfree, arg);
1042
1043 info.arg = arg;
95a42b64
TT
1044
1045 map_breakpoint_numbers (arg, do_map_commands_command, &info);
1046
1047 if (info.cmd == NULL)
1048 error (_("No breakpoints specified."));
1049
1050 do_cleanups (cleanups);
1051}
1052
1053static void
1054commands_command (char *arg, int from_tty)
1055{
1056 commands_command_1 (arg, from_tty, NULL);
c906108c 1057}
40c03ae8
EZ
1058
1059/* Like commands_command, but instead of reading the commands from
1060 input stream, takes them from an already parsed command structure.
1061
1062 This is used by cli-script.c to DTRT with breakpoint commands
1063 that are part of if and while bodies. */
1064enum command_control_type
1065commands_from_control_command (char *arg, struct command_line *cmd)
1066{
95a42b64
TT
1067 commands_command_1 (arg, 0, cmd);
1068 return simple_control;
40c03ae8 1069}
876fa593
JK
1070
1071/* Return non-zero if BL->TARGET_INFO contains valid information. */
1072
1073static int
1074bp_location_has_shadow (struct bp_location *bl)
1075{
1076 if (bl->loc_type != bp_loc_software_breakpoint)
1077 return 0;
1078 if (!bl->inserted)
1079 return 0;
1080 if (bl->target_info.shadow_len == 0)
1081 /* bp isn't valid, or doesn't shadow memory. */
1082 return 0;
1083 return 1;
1084}
1085
8defab1a 1086/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1087 by replacing any memory breakpoints with their shadowed contents.
1088
1089 The range of shadowed area by each bp_location is:
1090 b->address - bp_location_placed_address_before_address_max
1091 up to b->address + bp_location_shadow_len_after_address_max
1092 The range we were requested to resolve shadows for is:
1093 memaddr ... memaddr + len
1094 Thus the safe cutoff boundaries for performance optimization are
1095 memaddr + len <= b->address - bp_location_placed_address_before_address_max
1096 and:
1097 b->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1098
8defab1a
DJ
1099void
1100breakpoint_restore_shadows (gdb_byte *buf, ULONGEST memaddr, LONGEST len)
c906108c 1101{
876fa593
JK
1102 /* Left boundary, right boundary and median element of our binary search. */
1103 unsigned bc_l, bc_r, bc;
1104
1105 /* Find BC_L which is a leftmost element which may affect BUF content. It is
1106 safe to report lower value but a failure to report higher one. */
1107
1108 bc_l = 0;
1109 bc_r = bp_location_count;
1110 while (bc_l + 1 < bc_r)
1111 {
1112 struct bp_location *b;
1113
1114 bc = (bc_l + bc_r) / 2;
1115 b = bp_location[bc];
1116
1117 /* Check first B->ADDRESS will not overflow due to the added constant.
1118 Then advance the left boundary only if we are sure the BC element can
1119 in no way affect the BUF content (MEMADDR to MEMADDR + LEN range).
1120
1121 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety offset so that
1122 we cannot miss a breakpoint with its shadow range tail still reaching
1123 MEMADDR. */
c5aa993b 1124
876fa593
JK
1125 if (b->address + bp_location_shadow_len_after_address_max >= b->address
1126 && b->address + bp_location_shadow_len_after_address_max <= memaddr)
1127 bc_l = bc;
1128 else
1129 bc_r = bc;
1130 }
1131
1132 /* Now do full processing of the found relevant range of elements. */
1133
1134 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1135 {
876fa593
JK
1136 struct bp_location *b = bp_location[bc];
1137 CORE_ADDR bp_addr = 0;
1138 int bp_size = 0;
1139 int bptoffset = 0;
1140
2bdf28a0 1141 /* bp_location array has B->OWNER always non-NULL. */
ffce0d52 1142 if (b->owner->type == bp_none)
8a3fe4f8 1143 warning (_("reading through apparently deleted breakpoint #%d?"),
ffce0d52
DJ
1144 b->owner->number);
1145
876fa593
JK
1146 /* Performance optimization: any futher element can no longer affect BUF
1147 content. */
1148
1149 if (b->address >= bp_location_placed_address_before_address_max
1150 && memaddr + len <= b->address
1151 - bp_location_placed_address_before_address_max)
1152 break;
1153
1154 if (!bp_location_has_shadow (b))
c5aa993b 1155 continue;
6c95b8df
PA
1156 if (!breakpoint_address_match (b->target_info.placed_address_space, 0,
1157 current_program_space->aspace, 0))
1158 continue;
1159
c5aa993b
JM
1160 /* Addresses and length of the part of the breakpoint that
1161 we need to copy. */
8181d85f
DJ
1162 bp_addr = b->target_info.placed_address;
1163 bp_size = b->target_info.shadow_len;
8defab1a 1164
c5aa993b
JM
1165 if (bp_addr + bp_size <= memaddr)
1166 /* The breakpoint is entirely before the chunk of memory we
1167 are reading. */
1168 continue;
8defab1a 1169
c5aa993b
JM
1170 if (bp_addr >= memaddr + len)
1171 /* The breakpoint is entirely after the chunk of memory we are
1172 reading. */
1173 continue;
c5aa993b 1174
8defab1a
DJ
1175 /* Offset within shadow_contents. */
1176 if (bp_addr < memaddr)
1177 {
1178 /* Only copy the second part of the breakpoint. */
1179 bp_size -= memaddr - bp_addr;
1180 bptoffset = memaddr - bp_addr;
1181 bp_addr = memaddr;
1182 }
c5aa993b 1183
8defab1a
DJ
1184 if (bp_addr + bp_size > memaddr + len)
1185 {
1186 /* Only copy the first part of the breakpoint. */
1187 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1188 }
c5aa993b 1189
8defab1a
DJ
1190 memcpy (buf + bp_addr - memaddr,
1191 b->target_info.shadow_contents + bptoffset, bp_size);
c5aa993b 1192 }
c906108c 1193}
c906108c 1194\f
c5aa993b 1195
687595f9 1196/* A wrapper function for inserting catchpoints. */
9cbc821d 1197static void
687595f9
DJ
1198insert_catchpoint (struct ui_out *uo, void *args)
1199{
1200 struct breakpoint *b = (struct breakpoint *) args;
687595f9 1201
fe798b75
JB
1202 gdb_assert (b->type == bp_catchpoint);
1203 gdb_assert (b->ops != NULL && b->ops->insert != NULL);
1204
1205 b->ops->insert (b);
687595f9
DJ
1206}
1207
60e1c644
PA
1208/* Return true if BPT is of any hardware watchpoint kind. */
1209
a5606eee 1210static int
d77f58be 1211is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1212{
1213 return (bpt->type == bp_hardware_watchpoint
1214 || bpt->type == bp_read_watchpoint
1215 || bpt->type == bp_access_watchpoint);
1216}
7270d8f2 1217
60e1c644
PA
1218/* Return true if BPT is of any watchpoint kind, hardware or
1219 software. */
1220
1221static int
d77f58be 1222is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1223{
1224 return (is_hardware_watchpoint (bpt)
1225 || bpt->type == bp_watchpoint);
1226}
1227
f6bc2008
PA
1228/* Assuming that B is a watchpoint: returns true if the current thread
1229 and its running state are safe to evaluate or update watchpoint B.
1230 Watchpoints on local expressions need to be evaluated in the
1231 context of the thread that was current when the watchpoint was
1232 created, and, that thread needs to be stopped to be able to select
1233 the correct frame context. Watchpoints on global expressions can
1234 be evaluated on any thread, and in any state. It is presently left
1235 to the target allowing memory accesses when threads are
1236 running. */
1237
1238static int
1239watchpoint_in_thread_scope (struct breakpoint *b)
1240{
1241 return (ptid_equal (b->watchpoint_thread, null_ptid)
1242 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1243 && !is_executing (inferior_ptid)));
1244}
1245
567e1b4e
JB
1246/* Assuming that B is a watchpoint:
1247 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1248 - Evaluate expression and store the result in B->val
567e1b4e
JB
1249 - Evaluate the condition if there is one, and store the result
1250 in b->loc->cond.
a5606eee
VP
1251 - Update the list of values that must be watched in B->loc.
1252
bfa149ac 1253 If the watchpoint disposition is disp_del_at_next_stop, then do nothing.
a79d3c27
JK
1254 If this is local watchpoint that is out of scope, delete it.
1255
1256 Even with `set breakpoint always-inserted on' the watchpoints are removed
1257 + inserted on each stop here. Normal breakpoints must never be removed
1258 because they might be missed by a running thread when debugging in non-stop
1259 mode. On the other hand, hardware watchpoints (is_hardware_watchpoint;
1260 processed here) are specific to each LWP since they are stored in each LWP's
1261 hardware debug registers. Therefore, such LWP must be stopped first in
1262 order to be able to modify its hardware watchpoints.
1263
1264 Hardware watchpoints must be reset exactly once after being presented to the
1265 user. It cannot be done sooner, because it would reset the data used to
1266 present the watchpoint hit to the user. And it must not be done later
1267 because it could display the same single watchpoint hit during multiple GDB
1268 stops. Note that the latter is relevant only to the hardware watchpoint
1269 types bp_read_watchpoint and bp_access_watchpoint. False hit by
1270 bp_hardware_watchpoint is not user-visible - its hit is suppressed if the
1271 memory content has not changed.
1272
1273 The following constraints influence the location where we can reset hardware
1274 watchpoints:
1275
1276 * target_stopped_by_watchpoint and target_stopped_data_address are called
1277 several times when GDB stops.
1278
1279 [linux]
1280 * Multiple hardware watchpoints can be hit at the same time, causing GDB to
1281 stop. GDB only presents one hardware watchpoint hit at a time as the
1282 reason for stopping, and all the other hits are presented later, one after
1283 the other, each time the user requests the execution to be resumed.
1284 Execution is not resumed for the threads still having pending hit event
1285 stored in LWP_INFO->STATUS. While the watchpoint is already removed from
1286 the inferior on the first stop the thread hit event is kept being reported
1287 from its cached value by linux_nat_stopped_data_address until the real
1288 thread resume happens after the watchpoint gets presented and thus its
1289 LWP_INFO->STATUS gets reset.
1290
1291 Therefore the hardware watchpoint hit can get safely reset on the watchpoint
1292 removal from inferior. */
1293
b40ce68a 1294static void
a5606eee 1295update_watchpoint (struct breakpoint *b, int reparse)
7270d8f2 1296{
a5606eee 1297 int within_current_scope;
a5606eee 1298 struct frame_id saved_frame_id;
66076460 1299 int frame_saved;
a5606eee 1300
f6bc2008
PA
1301 /* If this is a local watchpoint, we only want to check if the
1302 watchpoint frame is in scope if the current thread is the thread
1303 that was used to create the watchpoint. */
1304 if (!watchpoint_in_thread_scope (b))
1305 return;
1306
876fa593 1307 /* We don't free locations. They are stored in bp_location array and
567e1b4e
JB
1308 update_global_locations will eventually delete them and remove
1309 breakpoints if needed. */
a5606eee
VP
1310 b->loc = NULL;
1311
1312 if (b->disposition == disp_del_at_next_stop)
1313 return;
1314
66076460 1315 frame_saved = 0;
a5606eee
VP
1316
1317 /* Determine if the watchpoint is within scope. */
1318 if (b->exp_valid_block == NULL)
1319 within_current_scope = 1;
1320 else
1321 {
1322 struct frame_info *fi;
66076460
DJ
1323
1324 /* Save the current frame's ID so we can restore it after
1325 evaluating the watchpoint expression on its own frame. */
1326 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1327 took a frame parameter, so that we didn't have to change the
1328 selected frame. */
1329 frame_saved = 1;
1330 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1331
a5606eee
VP
1332 fi = frame_find_by_id (b->watchpoint_frame);
1333 within_current_scope = (fi != NULL);
1334 if (within_current_scope)
1335 select_frame (fi);
1336 }
1337
1338 if (within_current_scope && reparse)
1339 {
1340 char *s;
d63d0675 1341
a5606eee
VP
1342 if (b->exp)
1343 {
1344 xfree (b->exp);
1345 b->exp = NULL;
1346 }
d63d0675 1347 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
a5606eee
VP
1348 b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
1349 /* If the meaning of expression itself changed, the old value is
1350 no longer relevant. We don't want to report a watchpoint hit
1351 to the user when the old value and the new value may actually
1352 be completely different objects. */
1353 value_free (b->val);
fa4727a6
DJ
1354 b->val = NULL;
1355 b->val_valid = 0;
60e1c644
PA
1356
1357 /* Note that unlike with breakpoints, the watchpoint's condition
1358 expression is stored in the breakpoint object, not in the
1359 locations (re)created below. */
1360 if (b->cond_string != NULL)
1361 {
1362 if (b->cond_exp != NULL)
1363 {
1364 xfree (b->cond_exp);
1365 b->cond_exp = NULL;
1366 }
1367
1368 s = b->cond_string;
1369 b->cond_exp = parse_exp_1 (&s, b->cond_exp_valid_block, 0);
1370 }
a5606eee 1371 }
a5606eee
VP
1372
1373 /* If we failed to parse the expression, for example because
1374 it refers to a global variable in a not-yet-loaded shared library,
1375 don't try to insert watchpoint. We don't automatically delete
1376 such watchpoint, though, since failure to parse expression
1377 is different from out-of-scope watchpoint. */
2d134ed3
PA
1378 if ( !target_has_execution)
1379 {
1380 /* Without execution, memory can't change. No use to try and
1381 set watchpoint locations. The watchpoint will be reset when
1382 the target gains execution, through breakpoint_re_set. */
1383 }
1384 else if (within_current_scope && b->exp)
a5606eee 1385 {
0cf6dd15 1386 int pc = 0;
fa4727a6 1387 struct value *val_chain, *v, *result, *next;
2d134ed3 1388 struct program_space *frame_pspace;
a5606eee 1389
0cf6dd15 1390 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain);
a5606eee 1391
a5606eee
VP
1392 /* Avoid setting b->val if it's already set. The meaning of
1393 b->val is 'the last value' user saw, and we should update
1394 it only if we reported that last value to user. As it
1395 happens, the code that reports it updates b->val directly. */
fa4727a6
DJ
1396 if (!b->val_valid)
1397 {
1398 b->val = v;
1399 b->val_valid = 1;
1400 }
a5606eee 1401
db2ad4c3
JK
1402 /* Change the type of breakpoint between hardware assisted or an
1403 ordinary watchpoint depending on the hardware support and free
1404 hardware slots. REPARSE is set when the inferior is started. */
1405 if ((b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
1406 && reparse)
1407 {
ca2d49e8 1408 int i, mem_cnt, other_type_used;
db2ad4c3 1409
7b838ca2
TJB
1410 /* We need to determine how many resources are already used
1411 for all other hardware watchpoints to see if we still have
1412 enough resources to also fit this watchpoint in as well.
1413 To avoid the hw_watchpoint_used_count call below from counting
1414 this watchpoint, make sure that it is marked as a software
1415 watchpoint. */
1416 b->type = bp_watchpoint;
db2ad4c3
JK
1417 i = hw_watchpoint_used_count (bp_hardware_watchpoint,
1418 &other_type_used);
1419 mem_cnt = can_use_hardware_watchpoint (val_chain);
1420
ca2d49e8 1421 if (!mem_cnt)
db2ad4c3
JK
1422 b->type = bp_watchpoint;
1423 else
ca2d49e8 1424 {
d92524f1 1425 int target_resources_ok = target_can_use_hardware_watchpoint
ca2d49e8
SL
1426 (bp_hardware_watchpoint, i + mem_cnt, other_type_used);
1427 if (target_resources_ok <= 0)
1428 b->type = bp_watchpoint;
1429 else
1430 b->type = bp_hardware_watchpoint;
1431 }
db2ad4c3
JK
1432 }
1433
2d134ed3
PA
1434 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1435
a5606eee 1436 /* Look at each value on the value chain. */
fa4727a6 1437 for (v = val_chain; v; v = next)
a5606eee
VP
1438 {
1439 /* If it's a memory location, and GDB actually needed
1440 its contents to evaluate the expression, then we
fa4727a6
DJ
1441 must watch it. If the first value returned is
1442 still lazy, that means an error occurred reading it;
1443 watch it anyway in case it becomes readable. */
a5606eee 1444 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1445 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1446 {
1447 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1448
a5606eee
VP
1449 /* We only watch structs and arrays if user asked
1450 for it explicitly, never if they just happen to
1451 appear in the middle of some value chain. */
fa4727a6 1452 if (v == result
a5606eee
VP
1453 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1454 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1455 {
1456 CORE_ADDR addr;
1457 int len, type;
1458 struct bp_location *loc, **tmp;
1459
42ae5230 1460 addr = value_address (v);
a5606eee
VP
1461 len = TYPE_LENGTH (value_type (v));
1462 type = hw_write;
1463 if (b->type == bp_read_watchpoint)
1464 type = hw_read;
1465 else if (b->type == bp_access_watchpoint)
1466 type = hw_access;
1467
39d61571 1468 loc = allocate_bp_location (b);
a5606eee
VP
1469 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1470 ;
1471 *tmp = loc;
a6d9a66e 1472 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1473
1474 loc->pspace = frame_pspace;
a5606eee
VP
1475 loc->address = addr;
1476 loc->length = len;
1477 loc->watchpoint_type = type;
1478 }
1479 }
1480
1481 next = value_next (v);
1482 if (v != b->val)
1483 value_free (v);
1484 }
1485
c7437ca6
PA
1486 /* If a software watchpoint is not watching any memory, then the
1487 above left it without any location set up. But,
1488 bpstat_stop_status requires a location to be able to report
1489 stops, so make sure there's at least a dummy one. */
1490 if (b->type == bp_watchpoint && b->loc == NULL)
1491 {
1492 b->loc = allocate_bp_location (b);
1493 b->loc->pspace = frame_pspace;
1494 b->loc->address = -1;
1495 b->loc->length = -1;
1496 b->loc->watchpoint_type = -1;
1497 }
a5606eee
VP
1498 }
1499 else if (!within_current_scope)
7270d8f2 1500 {
a5606eee 1501 printf_filtered (_("\
cce7e648 1502Watchpoint %d deleted because the program has left the block\n\
a5606eee
VP
1503in which its expression is valid.\n"),
1504 b->number);
1505 if (b->related_breakpoint)
60e1c644
PA
1506 {
1507 b->related_breakpoint->disposition = disp_del_at_next_stop;
1508 b->related_breakpoint->related_breakpoint = NULL;
1509 b->related_breakpoint= NULL;
1510 }
a5606eee 1511 b->disposition = disp_del_at_next_stop;
7270d8f2 1512 }
a5606eee
VP
1513
1514 /* Restore the selected frame. */
66076460
DJ
1515 if (frame_saved)
1516 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1517}
1518
a5606eee 1519
74960c60
VP
1520/* Returns 1 iff breakpoint location should be
1521 inserted in the inferior. */
1522static int
1523should_be_inserted (struct bp_location *bpt)
1524{
2bdf28a0 1525 if (bpt->owner == NULL || !breakpoint_enabled (bpt->owner))
74960c60
VP
1526 return 0;
1527
1528 if (bpt->owner->disposition == disp_del_at_next_stop)
1529 return 0;
1530
1531 if (!bpt->enabled || bpt->shlib_disabled || bpt->duplicate)
1532 return 0;
1533
56710373
PA
1534 /* This is set for example, when we're attached to the parent of a
1535 vfork, and have detached from the child. The child is running
1536 free, and we expect it to do an exec or exit, at which point the
1537 OS makes the parent schedulable again (and the target reports
1538 that the vfork is done). Until the child is done with the shared
1539 memory region, do not insert breakpoints in the parent, otherwise
1540 the child could still trip on the parent's breakpoints. Since
1541 the parent is blocked anyway, it won't miss any breakpoint. */
1542 if (bpt->pspace->breakpoints_not_allowed)
1543 return 0;
1544
1042e4c0
SS
1545 /* Tracepoints are inserted by the target at a time of its choosing,
1546 not by us. */
d77f58be 1547 if (is_tracepoint (bpt->owner))
1042e4c0
SS
1548 return 0;
1549
74960c60
VP
1550 return 1;
1551}
1552
879bfdc2
DJ
1553/* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
1554 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
fa3a767f 1555 and HW_BREAKPOINT_ERROR are used to report problems.
879bfdc2
DJ
1556
1557 NOTE drow/2003-09-09: This routine could be broken down to an object-style
1558 method for each breakpoint or catchpoint type. */
26bb91f3 1559static int
879bfdc2 1560insert_bp_location (struct bp_location *bpt,
26bb91f3 1561 struct ui_file *tmp_error_stream,
fa3a767f 1562 int *disabled_breaks,
26bb91f3 1563 int *hw_breakpoint_error)
879bfdc2
DJ
1564{
1565 int val = 0;
1566
74960c60 1567 if (!should_be_inserted (bpt) || bpt->inserted)
879bfdc2
DJ
1568 return 0;
1569
8181d85f
DJ
1570 /* Initialize the target-specific information. */
1571 memset (&bpt->target_info, 0, sizeof (bpt->target_info));
1572 bpt->target_info.placed_address = bpt->address;
6c95b8df 1573 bpt->target_info.placed_address_space = bpt->pspace->aspace;
8181d85f 1574
879bfdc2
DJ
1575 if (bpt->loc_type == bp_loc_software_breakpoint
1576 || bpt->loc_type == bp_loc_hardware_breakpoint)
1577 {
765dc015
VP
1578 if (bpt->owner->type != bp_hardware_breakpoint)
1579 {
1580 /* If the explicitly specified breakpoint type
1581 is not hardware breakpoint, check the memory map to see
1582 if the breakpoint address is in read only memory or not.
1583 Two important cases are:
1584 - location type is not hardware breakpoint, memory
1585 is readonly. We change the type of the location to
1586 hardware breakpoint.
1587 - location type is hardware breakpoint, memory is read-write.
1588 This means we've previously made the location hardware one, but
1589 then the memory map changed, so we undo.
1590
1591 When breakpoints are removed, remove_breakpoints will
1592 use location types we've just set here, the only possible
1593 problem is that memory map has changed during running program,
1594 but it's not going to work anyway with current gdb. */
1595 struct mem_region *mr
1596 = lookup_mem_region (bpt->target_info.placed_address);
1597
1598 if (mr)
1599 {
1600 if (automatic_hardware_breakpoints)
1601 {
765dc015
VP
1602 enum bp_loc_type new_type;
1603
1604 if (mr->attrib.mode != MEM_RW)
1605 new_type = bp_loc_hardware_breakpoint;
1606 else
1607 new_type = bp_loc_software_breakpoint;
1608
1609 if (new_type != bpt->loc_type)
1610 {
1611 static int said = 0;
cc59ec59 1612
765dc015
VP
1613 bpt->loc_type = new_type;
1614 if (!said)
1615 {
1616 fprintf_filtered (gdb_stdout, _("\
0767c96d 1617Note: automatically using hardware breakpoints for read-only addresses.\n"));
765dc015
VP
1618 said = 1;
1619 }
1620 }
1621 }
1622 else if (bpt->loc_type == bp_loc_software_breakpoint
1623 && mr->attrib.mode != MEM_RW)
1624 warning (_("cannot set software breakpoint at readonly address %s"),
5af949e3 1625 paddress (bpt->gdbarch, bpt->address));
765dc015
VP
1626 }
1627 }
1628
879bfdc2
DJ
1629 /* First check to see if we have to handle an overlay. */
1630 if (overlay_debugging == ovly_off
1631 || bpt->section == NULL
1632 || !(section_is_overlay (bpt->section)))
1633 {
1634 /* No overlay handling: just set the breakpoint. */
1635
1636 if (bpt->loc_type == bp_loc_hardware_breakpoint)
a6d9a66e
UW
1637 val = target_insert_hw_breakpoint (bpt->gdbarch,
1638 &bpt->target_info);
879bfdc2 1639 else
a6d9a66e
UW
1640 val = target_insert_breakpoint (bpt->gdbarch,
1641 &bpt->target_info);
879bfdc2
DJ
1642 }
1643 else
1644 {
1645 /* This breakpoint is in an overlay section.
1646 Shall we set a breakpoint at the LMA? */
1647 if (!overlay_events_enabled)
1648 {
1649 /* Yes -- overlay event support is not active,
1650 so we must try to set a breakpoint at the LMA.
1651 This will not work for a hardware breakpoint. */
1652 if (bpt->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 1653 warning (_("hardware breakpoint %d not supported in overlay!"),
879bfdc2
DJ
1654 bpt->owner->number);
1655 else
1656 {
1657 CORE_ADDR addr = overlay_unmapped_address (bpt->address,
1658 bpt->section);
1659 /* Set a software (trap) breakpoint at the LMA. */
8181d85f
DJ
1660 bpt->overlay_target_info = bpt->target_info;
1661 bpt->overlay_target_info.placed_address = addr;
a6d9a66e
UW
1662 val = target_insert_breakpoint (bpt->gdbarch,
1663 &bpt->overlay_target_info);
879bfdc2 1664 if (val != 0)
99361f52
DE
1665 fprintf_unfiltered (tmp_error_stream,
1666 "Overlay breakpoint %d failed: in ROM?\n",
879bfdc2
DJ
1667 bpt->owner->number);
1668 }
1669 }
1670 /* Shall we set a breakpoint at the VMA? */
1671 if (section_is_mapped (bpt->section))
1672 {
1673 /* Yes. This overlay section is mapped into memory. */
1674 if (bpt->loc_type == bp_loc_hardware_breakpoint)
a6d9a66e
UW
1675 val = target_insert_hw_breakpoint (bpt->gdbarch,
1676 &bpt->target_info);
879bfdc2 1677 else
a6d9a66e
UW
1678 val = target_insert_breakpoint (bpt->gdbarch,
1679 &bpt->target_info);
879bfdc2
DJ
1680 }
1681 else
1682 {
1683 /* No. This breakpoint will not be inserted.
1684 No error, but do not mark the bp as 'inserted'. */
1685 return 0;
1686 }
1687 }
1688
1689 if (val)
1690 {
1691 /* Can't set the breakpoint. */
6c95b8df 1692 if (solib_name_from_address (bpt->pspace, bpt->address))
879bfdc2
DJ
1693 {
1694 /* See also: disable_breakpoints_in_shlibs. */
1695 val = 0;
0d381245 1696 bpt->shlib_disabled = 1;
879bfdc2
DJ
1697 if (!*disabled_breaks)
1698 {
1699 fprintf_unfiltered (tmp_error_stream,
1700 "Cannot insert breakpoint %d.\n",
1701 bpt->owner->number);
1702 fprintf_unfiltered (tmp_error_stream,
1703 "Temporarily disabling shared library breakpoints:\n");
1704 }
1705 *disabled_breaks = 1;
1706 fprintf_unfiltered (tmp_error_stream,
1707 "breakpoint #%d\n", bpt->owner->number);
1708 }
1709 else
879bfdc2 1710 {
879bfdc2
DJ
1711 if (bpt->loc_type == bp_loc_hardware_breakpoint)
1712 {
1713 *hw_breakpoint_error = 1;
1714 fprintf_unfiltered (tmp_error_stream,
1715 "Cannot insert hardware breakpoint %d.\n",
1716 bpt->owner->number);
1717 }
1718 else
1719 {
1720 fprintf_unfiltered (tmp_error_stream,
1721 "Cannot insert breakpoint %d.\n",
1722 bpt->owner->number);
1723 fprintf_filtered (tmp_error_stream,
1724 "Error accessing memory address ");
5af949e3
UW
1725 fputs_filtered (paddress (bpt->gdbarch, bpt->address),
1726 tmp_error_stream);
879bfdc2
DJ
1727 fprintf_filtered (tmp_error_stream, ": %s.\n",
1728 safe_strerror (val));
1729 }
1730
1731 }
1732 }
1733 else
1734 bpt->inserted = 1;
1735
1736 return val;
1737 }
1738
1739 else if (bpt->loc_type == bp_loc_hardware_watchpoint
1740 /* NOTE drow/2003-09-08: This state only exists for removing
1741 watchpoints. It's not clear that it's necessary... */
1742 && bpt->owner->disposition != disp_del_at_next_stop)
1743 {
85d721b8 1744 val = target_insert_watchpoint (bpt->address,
a5606eee 1745 bpt->length,
0cf6dd15
TJB
1746 bpt->watchpoint_type,
1747 bpt->owner->cond_exp);
85d721b8
PA
1748
1749 /* If trying to set a read-watchpoint, and it turns out it's not
1750 supported, try emulating one with an access watchpoint. */
1751 if (val == 1 && bpt->watchpoint_type == hw_read)
1752 {
1753 struct bp_location *loc, **loc_temp;
1754
1755 /* But don't try to insert it, if there's already another
1756 hw_access location that would be considered a duplicate
1757 of this one. */
1758 ALL_BP_LOCATIONS (loc, loc_temp)
1759 if (loc != bpt
1760 && loc->watchpoint_type == hw_access
1761 && watchpoint_locations_match (bpt, loc))
1762 {
1763 bpt->duplicate = 1;
1764 bpt->inserted = 1;
1765 bpt->target_info = loc->target_info;
1766 bpt->watchpoint_type = hw_access;
1767 val = 0;
1768 break;
1769 }
1770
1771 if (val == 1)
1772 {
1773 val = target_insert_watchpoint (bpt->address,
1774 bpt->length,
0cf6dd15
TJB
1775 hw_access,
1776 bpt->owner->cond_exp);
85d721b8
PA
1777 if (val == 0)
1778 bpt->watchpoint_type = hw_access;
1779 }
1780 }
1781
1782 bpt->inserted = (val == 0);
879bfdc2
DJ
1783 }
1784
fe798b75 1785 else if (bpt->owner->type == bp_catchpoint)
879bfdc2 1786 {
71fff37b
AC
1787 struct gdb_exception e = catch_exception (uiout, insert_catchpoint,
1788 bpt->owner, RETURN_MASK_ERROR);
9cbc821d
AC
1789 exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
1790 bpt->owner->number);
1791 if (e.reason < 0)
879bfdc2
DJ
1792 bpt->owner->enable_state = bp_disabled;
1793 else
1794 bpt->inserted = 1;
1640b821
DJ
1795
1796 /* We've already printed an error message if there was a problem
1797 inserting this catchpoint, and we've disabled the catchpoint,
1798 so just return success. */
1799 return 0;
879bfdc2
DJ
1800 }
1801
1802 return 0;
1803}
1804
6c95b8df
PA
1805/* This function is called when program space PSPACE is about to be
1806 deleted. It takes care of updating breakpoints to not reference
1807 PSPACE anymore. */
1808
1809void
1810breakpoint_program_space_exit (struct program_space *pspace)
1811{
1812 struct breakpoint *b, *b_temp;
876fa593 1813 struct bp_location *loc, **loc_temp;
6c95b8df
PA
1814
1815 /* Remove any breakpoint that was set through this program space. */
1816 ALL_BREAKPOINTS_SAFE (b, b_temp)
1817 {
1818 if (b->pspace == pspace)
1819 delete_breakpoint (b);
1820 }
1821
1822 /* Breakpoints set through other program spaces could have locations
1823 bound to PSPACE as well. Remove those. */
876fa593 1824 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
1825 {
1826 struct bp_location *tmp;
1827
1828 if (loc->pspace == pspace)
1829 {
2bdf28a0 1830 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
1831 if (loc->owner->loc == loc)
1832 loc->owner->loc = loc->next;
1833 else
1834 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
1835 if (tmp->next == loc)
1836 {
1837 tmp->next = loc->next;
1838 break;
1839 }
1840 }
1841 }
1842
1843 /* Now update the global location list to permanently delete the
1844 removed locations above. */
1845 update_global_location_list (0);
1846}
1847
74960c60
VP
1848/* Make sure all breakpoints are inserted in inferior.
1849 Throws exception on any error.
1850 A breakpoint that is already inserted won't be inserted
1851 again, so calling this function twice is safe. */
1852void
1853insert_breakpoints (void)
1854{
1855 struct breakpoint *bpt;
1856
1857 ALL_BREAKPOINTS (bpt)
1858 if (is_hardware_watchpoint (bpt))
1859 update_watchpoint (bpt, 0 /* don't reparse. */);
1860
b60e7edf 1861 update_global_location_list (1);
74960c60 1862
c35b1492
PA
1863 /* update_global_location_list does not insert breakpoints when
1864 always_inserted_mode is not enabled. Explicitly insert them
1865 now. */
1866 if (!breakpoints_always_inserted_mode ())
74960c60
VP
1867 insert_breakpoint_locations ();
1868}
1869
c906108c
SS
1870/* insert_breakpoints is used when starting or continuing the program.
1871 remove_breakpoints is used when the program stops.
1872 Both return zero if successful,
1873 or an `errno' value if could not write the inferior. */
1874
74960c60
VP
1875static void
1876insert_breakpoint_locations (void)
c906108c 1877{
a5606eee 1878 struct breakpoint *bpt;
876fa593 1879 struct bp_location *b, **bp_tmp;
e236ba44 1880 int error = 0;
c906108c
SS
1881 int val = 0;
1882 int disabled_breaks = 0;
81d0cc19 1883 int hw_breakpoint_error = 0;
c906108c 1884
81d0cc19 1885 struct ui_file *tmp_error_stream = mem_fileopen ();
f7545552 1886 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 1887
81d0cc19
GS
1888 /* Explicitly mark the warning -- this will only be printed if
1889 there was an error. */
1890 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
6c95b8df
PA
1891
1892 save_current_space_and_thread ();
1893
876fa593 1894 ALL_BP_LOCATIONS (b, bp_tmp)
879bfdc2 1895 {
74960c60 1896 if (!should_be_inserted (b) || b->inserted)
879bfdc2
DJ
1897 continue;
1898
f365de73 1899 /* There is no point inserting thread-specific breakpoints if the
2bdf28a0
JK
1900 thread no longer exists. ALL_BP_LOCATIONS bp_location has B->OWNER
1901 always non-NULL. */
f365de73
AS
1902 if (b->owner->thread != -1
1903 && !valid_thread_id (b->owner->thread))
1904 continue;
1905
6c95b8df
PA
1906 switch_to_program_space_and_thread (b->pspace);
1907
1908 /* For targets that support global breakpoints, there's no need
1909 to select an inferior to insert breakpoint to. In fact, even
1910 if we aren't attached to any process yet, we should still
1911 insert breakpoints. */
1912 if (!gdbarch_has_global_breakpoints (target_gdbarch)
1913 && ptid_equal (inferior_ptid, null_ptid))
1914 continue;
1915
879bfdc2 1916 val = insert_bp_location (b, tmp_error_stream,
fa3a767f 1917 &disabled_breaks,
879bfdc2
DJ
1918 &hw_breakpoint_error);
1919 if (val)
e236ba44 1920 error = val;
879bfdc2 1921 }
c906108c 1922
a5606eee
VP
1923 /* If we failed to insert all locations of a watchpoint,
1924 remove them, as half-inserted watchpoint is of limited use. */
1925 ALL_BREAKPOINTS (bpt)
1926 {
1927 int some_failed = 0;
1928 struct bp_location *loc;
1929
1930 if (!is_hardware_watchpoint (bpt))
1931 continue;
1932
d6b74ac4 1933 if (!breakpoint_enabled (bpt))
a5606eee 1934 continue;
74960c60
VP
1935
1936 if (bpt->disposition == disp_del_at_next_stop)
1937 continue;
a5606eee
VP
1938
1939 for (loc = bpt->loc; loc; loc = loc->next)
56710373 1940 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
1941 {
1942 some_failed = 1;
1943 break;
1944 }
1945 if (some_failed)
1946 {
1947 for (loc = bpt->loc; loc; loc = loc->next)
1948 if (loc->inserted)
1949 remove_breakpoint (loc, mark_uninserted);
1950
1951 hw_breakpoint_error = 1;
1952 fprintf_unfiltered (tmp_error_stream,
1953 "Could not insert hardware watchpoint %d.\n",
1954 bpt->number);
1955 error = -1;
1956 }
1957 }
1958
e236ba44 1959 if (error)
81d0cc19
GS
1960 {
1961 /* If a hardware breakpoint or watchpoint was inserted, add a
1962 message about possibly exhausted resources. */
879bfdc2 1963 if (hw_breakpoint_error)
81d0cc19 1964 {
c6510018
MS
1965 fprintf_unfiltered (tmp_error_stream,
1966 "Could not insert hardware breakpoints:\n\
1967You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 1968 }
81d0cc19
GS
1969 target_terminal_ours_for_output ();
1970 error_stream (tmp_error_stream);
1971 }
f7545552
TT
1972
1973 do_cleanups (cleanups);
c906108c
SS
1974}
1975
c906108c 1976int
fba45db2 1977remove_breakpoints (void)
c906108c 1978{
876fa593 1979 struct bp_location *b, **bp_tmp;
3a1bae8e 1980 int val = 0;
c906108c 1981
876fa593 1982 ALL_BP_LOCATIONS (b, bp_tmp)
c5aa993b 1983 {
0bde7532 1984 if (b->inserted)
3a1bae8e 1985 val |= remove_breakpoint (b, mark_uninserted);
c5aa993b 1986 }
3a1bae8e 1987 return val;
c906108c
SS
1988}
1989
6c95b8df
PA
1990/* Remove breakpoints of process PID. */
1991
1992int
1993remove_breakpoints_pid (int pid)
1994{
876fa593 1995 struct bp_location *b, **b_tmp;
6c95b8df
PA
1996 int val;
1997 struct inferior *inf = find_inferior_pid (pid);
1998
876fa593 1999 ALL_BP_LOCATIONS (b, b_tmp)
6c95b8df
PA
2000 {
2001 if (b->pspace != inf->pspace)
2002 continue;
2003
2004 if (b->inserted)
2005 {
2006 val = remove_breakpoint (b, mark_uninserted);
2007 if (val != 0)
2008 return val;
2009 }
2010 }
2011 return 0;
2012}
2013
692590c1 2014int
80ce1ecb 2015remove_hw_watchpoints (void)
692590c1 2016{
876fa593 2017 struct bp_location *b, **bp_tmp;
3a1bae8e 2018 int val = 0;
692590c1 2019
876fa593 2020 ALL_BP_LOCATIONS (b, bp_tmp)
692590c1 2021 {
0bde7532 2022 if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
3a1bae8e 2023 val |= remove_breakpoint (b, mark_uninserted);
692590c1 2024 }
3a1bae8e 2025 return val;
692590c1
MS
2026}
2027
c906108c 2028int
fba45db2 2029reattach_breakpoints (int pid)
c906108c 2030{
6c95b8df 2031 struct cleanup *old_chain;
876fa593 2032 struct bp_location *b, **bp_tmp;
c906108c 2033 int val;
a4954f26 2034 struct ui_file *tmp_error_stream = mem_fileopen ();
fa3a767f 2035 int dummy1 = 0, dummy2 = 0;
6c95b8df
PA
2036 struct inferior *inf;
2037 struct thread_info *tp;
2038
2039 tp = any_live_thread_of_process (pid);
2040 if (tp == NULL)
2041 return 1;
2042
2043 inf = find_inferior_pid (pid);
2044 old_chain = save_inferior_ptid ();
2045
2046 inferior_ptid = tp->ptid;
a4954f26
DJ
2047
2048 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 2049
876fa593 2050 ALL_BP_LOCATIONS (b, bp_tmp)
c5aa993b 2051 {
6c95b8df
PA
2052 if (b->pspace != inf->pspace)
2053 continue;
2054
0bde7532 2055 if (b->inserted)
c5aa993b 2056 {
a4954f26
DJ
2057 b->inserted = 0;
2058 val = insert_bp_location (b, tmp_error_stream,
fa3a767f 2059 &dummy1, &dummy2);
c5aa993b
JM
2060 if (val != 0)
2061 {
ce696e05 2062 do_cleanups (old_chain);
c5aa993b
JM
2063 return val;
2064 }
2065 }
2066 }
ce696e05 2067 do_cleanups (old_chain);
c906108c
SS
2068 return 0;
2069}
2070
e58b0e63
PA
2071static int internal_breakpoint_number = -1;
2072
e62c965a 2073static struct breakpoint *
a6d9a66e
UW
2074create_internal_breakpoint (struct gdbarch *gdbarch,
2075 CORE_ADDR address, enum bptype type)
e62c965a 2076{
e62c965a
PP
2077 struct symtab_and_line sal;
2078 struct breakpoint *b;
2079
2080 init_sal (&sal); /* initialize to zeroes */
2081
2082 sal.pc = address;
2083 sal.section = find_pc_overlay (sal.pc);
6c95b8df 2084 sal.pspace = current_program_space;
e62c965a 2085
a6d9a66e 2086 b = set_raw_breakpoint (gdbarch, sal, type);
e62c965a
PP
2087 b->number = internal_breakpoint_number--;
2088 b->disposition = disp_donttouch;
2089
2090 return b;
2091}
2092
2093static void
69de3c6a 2094create_overlay_event_breakpoint (char *func_name)
e62c965a 2095{
69de3c6a 2096 struct objfile *objfile;
e62c965a 2097
69de3c6a
PP
2098 ALL_OBJFILES (objfile)
2099 {
2100 struct breakpoint *b;
2101 struct minimal_symbol *m;
2102
2103 m = lookup_minimal_symbol_text (func_name, objfile);
2104 if (m == NULL)
2105 continue;
e62c965a 2106
a6d9a66e
UW
2107 b = create_internal_breakpoint (get_objfile_arch (objfile),
2108 SYMBOL_VALUE_ADDRESS (m),
69de3c6a
PP
2109 bp_overlay_event);
2110 b->addr_string = xstrdup (func_name);
e62c965a 2111
69de3c6a
PP
2112 if (overlay_debugging == ovly_auto)
2113 {
2114 b->enable_state = bp_enabled;
2115 overlay_events_enabled = 1;
2116 }
2117 else
2118 {
2119 b->enable_state = bp_disabled;
2120 overlay_events_enabled = 0;
2121 }
e62c965a
PP
2122 }
2123 update_global_location_list (1);
2124}
2125
0fd8e87f
UW
2126static void
2127create_longjmp_master_breakpoint (char *func_name)
2128{
6c95b8df 2129 struct program_space *pspace;
0fd8e87f 2130 struct objfile *objfile;
6c95b8df
PA
2131 struct cleanup *old_chain;
2132
2133 old_chain = save_current_program_space ();
0fd8e87f 2134
6c95b8df 2135 ALL_PSPACES (pspace)
0fd8e87f
UW
2136 ALL_OBJFILES (objfile)
2137 {
2138 struct breakpoint *b;
2139 struct minimal_symbol *m;
2140
2141 if (!gdbarch_get_longjmp_target_p (get_objfile_arch (objfile)))
2142 continue;
2143
6c95b8df
PA
2144 set_current_program_space (pspace);
2145
0fd8e87f
UW
2146 m = lookup_minimal_symbol_text (func_name, objfile);
2147 if (m == NULL)
2148 continue;
2149
a6d9a66e
UW
2150 b = create_internal_breakpoint (get_objfile_arch (objfile),
2151 SYMBOL_VALUE_ADDRESS (m),
0fd8e87f
UW
2152 bp_longjmp_master);
2153 b->addr_string = xstrdup (func_name);
2154 b->enable_state = bp_disabled;
2155 }
2156 update_global_location_list (1);
6c95b8df
PA
2157
2158 do_cleanups (old_chain);
0fd8e87f
UW
2159}
2160
aa7d318d
TT
2161/* Create a master std::terminate breakpoint. The actual function
2162 looked for is named FUNC_NAME. */
2163static void
2164create_std_terminate_master_breakpoint (const char *func_name)
2165{
2166 struct program_space *pspace;
2167 struct objfile *objfile;
2168 struct cleanup *old_chain;
2169
2170 old_chain = save_current_program_space ();
2171
2172 ALL_PSPACES (pspace)
2173 ALL_OBJFILES (objfile)
2174 {
2175 struct breakpoint *b;
2176 struct minimal_symbol *m;
2177
2178 set_current_program_space (pspace);
2179
2180 m = lookup_minimal_symbol (func_name, NULL, objfile);
2181 if (m == NULL || (MSYMBOL_TYPE (m) != mst_text
2182 && MSYMBOL_TYPE (m) != mst_file_text))
2183 continue;
2184
2185 b = create_internal_breakpoint (get_objfile_arch (objfile),
2186 SYMBOL_VALUE_ADDRESS (m),
2187 bp_std_terminate_master);
2188 b->addr_string = xstrdup (func_name);
2189 b->enable_state = bp_disabled;
2190 }
2191 update_global_location_list (1);
2192
2193 do_cleanups (old_chain);
2194}
2195
c906108c 2196void
fba45db2 2197update_breakpoints_after_exec (void)
c906108c 2198{
c5aa993b
JM
2199 struct breakpoint *b;
2200 struct breakpoint *temp;
876fa593 2201 struct bp_location *bploc, **bplocp_tmp;
c906108c 2202
25b22b0a
PA
2203 /* We're about to delete breakpoints from GDB's lists. If the
2204 INSERTED flag is true, GDB will try to lift the breakpoints by
2205 writing the breakpoints' "shadow contents" back into memory. The
2206 "shadow contents" are NOT valid after an exec, so GDB should not
2207 do that. Instead, the target is responsible from marking
2208 breakpoints out as soon as it detects an exec. We don't do that
2209 here instead, because there may be other attempts to delete
2210 breakpoints after detecting an exec and before reaching here. */
876fa593 2211 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
2212 if (bploc->pspace == current_program_space)
2213 gdb_assert (!bploc->inserted);
c906108c
SS
2214
2215 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 2216 {
6c95b8df
PA
2217 if (b->pspace != current_program_space)
2218 continue;
2219
c5aa993b
JM
2220 /* Solib breakpoints must be explicitly reset after an exec(). */
2221 if (b->type == bp_shlib_event)
2222 {
2223 delete_breakpoint (b);
2224 continue;
2225 }
c906108c 2226
4efc6507
DE
2227 /* JIT breakpoints must be explicitly reset after an exec(). */
2228 if (b->type == bp_jit_event)
2229 {
2230 delete_breakpoint (b);
2231 continue;
2232 }
2233
1900040c 2234 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
2235 as must overlay event and longjmp master breakpoints. */
2236 if (b->type == bp_thread_event || b->type == bp_overlay_event
aa7d318d 2237 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master)
c4093a6a
JM
2238 {
2239 delete_breakpoint (b);
2240 continue;
2241 }
2242
c5aa993b
JM
2243 /* Step-resume breakpoints are meaningless after an exec(). */
2244 if (b->type == bp_step_resume)
2245 {
2246 delete_breakpoint (b);
2247 continue;
2248 }
2249
611c83ae
PA
2250 /* Longjmp and longjmp-resume breakpoints are also meaningless
2251 after an exec. */
2252 if (b->type == bp_longjmp || b->type == bp_longjmp_resume)
2253 {
2254 delete_breakpoint (b);
2255 continue;
2256 }
2257
ce78b96d
JB
2258 if (b->type == bp_catchpoint)
2259 {
2260 /* For now, none of the bp_catchpoint breakpoints need to
2261 do anything at this point. In the future, if some of
2262 the catchpoints need to something, we will need to add
2263 a new method, and call this method from here. */
2264 continue;
2265 }
2266
c5aa993b
JM
2267 /* bp_finish is a special case. The only way we ought to be able
2268 to see one of these when an exec() has happened, is if the user
2269 caught a vfork, and then said "finish". Ordinarily a finish just
2270 carries them to the call-site of the current callee, by setting
2271 a temporary bp there and resuming. But in this case, the finish
2272 will carry them entirely through the vfork & exec.
2273
2274 We don't want to allow a bp_finish to remain inserted now. But
2275 we can't safely delete it, 'cause finish_command has a handle to
2276 the bp on a bpstat, and will later want to delete it. There's a
2277 chance (and I've seen it happen) that if we delete the bp_finish
2278 here, that its storage will get reused by the time finish_command
2279 gets 'round to deleting the "use to be a bp_finish" breakpoint.
2280 We really must allow finish_command to delete a bp_finish.
2281
53a5351d
JM
2282 In the absense of a general solution for the "how do we know
2283 it's safe to delete something others may have handles to?"
2284 problem, what we'll do here is just uninsert the bp_finish, and
2285 let finish_command delete it.
2286
2287 (We know the bp_finish is "doomed" in the sense that it's
2288 momentary, and will be deleted as soon as finish_command sees
2289 the inferior stopped. So it doesn't matter that the bp's
2290 address is probably bogus in the new a.out, unlike e.g., the
2291 solib breakpoints.) */
c5aa993b 2292
c5aa993b
JM
2293 if (b->type == bp_finish)
2294 {
2295 continue;
2296 }
2297
2298 /* Without a symbolic address, we have little hope of the
2299 pre-exec() address meaning the same thing in the post-exec()
2300 a.out. */
2301 if (b->addr_string == NULL)
2302 {
2303 delete_breakpoint (b);
2304 continue;
2305 }
c5aa993b 2306 }
1900040c 2307 /* FIXME what about longjmp breakpoints? Re-create them here? */
69de3c6a 2308 create_overlay_event_breakpoint ("_ovly_debug_event");
0fd8e87f
UW
2309 create_longjmp_master_breakpoint ("longjmp");
2310 create_longjmp_master_breakpoint ("_longjmp");
2311 create_longjmp_master_breakpoint ("siglongjmp");
2312 create_longjmp_master_breakpoint ("_siglongjmp");
aa7d318d 2313 create_std_terminate_master_breakpoint ("std::terminate()");
c906108c
SS
2314}
2315
2316int
fba45db2 2317detach_breakpoints (int pid)
c906108c 2318{
876fa593 2319 struct bp_location *b, **bp_tmp;
3a1bae8e 2320 int val = 0;
ce696e05 2321 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 2322 struct inferior *inf = current_inferior ();
c5aa993b 2323
39f77062 2324 if (pid == PIDGET (inferior_ptid))
8a3fe4f8 2325 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 2326
6c95b8df 2327 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
ce696e05 2328 inferior_ptid = pid_to_ptid (pid);
876fa593 2329 ALL_BP_LOCATIONS (b, bp_tmp)
c5aa993b 2330 {
6c95b8df
PA
2331 if (b->pspace != inf->pspace)
2332 continue;
2333
0bde7532 2334 if (b->inserted)
6c95b8df 2335 val |= remove_breakpoint_1 (b, mark_inserted);
c5aa993b 2336 }
d03285ec
UW
2337
2338 /* Detach single-step breakpoints as well. */
2339 detach_single_step_breakpoints ();
2340
ce696e05 2341 do_cleanups (old_chain);
3a1bae8e 2342 return val;
c906108c
SS
2343}
2344
6c95b8df
PA
2345/* Remove the breakpoint location B from the current address space.
2346 Note that this is used to detach breakpoints from a child fork.
2347 When we get here, the child isn't in the inferior list, and neither
2348 do we have objects to represent its address space --- we should
2349 *not* look at b->pspace->aspace here. */
2350
c906108c 2351static int
6c95b8df 2352remove_breakpoint_1 (struct bp_location *b, insertion_state_t is)
c906108c
SS
2353{
2354 int val;
c5aa993b 2355
2bdf28a0
JK
2356 /* B is never in moribund_locations by our callers. */
2357 gdb_assert (b->owner != NULL);
2358
0bde7532 2359 if (b->owner->enable_state == bp_permanent)
c2c6d25f
JM
2360 /* Permanent breakpoints cannot be inserted or removed. */
2361 return 0;
2362
74960c60
VP
2363 /* The type of none suggests that owner is actually deleted.
2364 This should not ever happen. */
2365 gdb_assert (b->owner->type != bp_none);
0bde7532
DJ
2366
2367 if (b->loc_type == bp_loc_software_breakpoint
2368 || b->loc_type == bp_loc_hardware_breakpoint)
c906108c 2369 {
c02f5703
MS
2370 /* "Normal" instruction breakpoint: either the standard
2371 trap-instruction bp (bp_breakpoint), or a
2372 bp_hardware_breakpoint. */
2373
2374 /* First check to see if we have to handle an overlay. */
2375 if (overlay_debugging == ovly_off
0bde7532
DJ
2376 || b->section == NULL
2377 || !(section_is_overlay (b->section)))
c02f5703
MS
2378 {
2379 /* No overlay handling: just remove the breakpoint. */
2380
0bde7532 2381 if (b->loc_type == bp_loc_hardware_breakpoint)
a6d9a66e 2382 val = target_remove_hw_breakpoint (b->gdbarch, &b->target_info);
c02f5703 2383 else
a6d9a66e 2384 val = target_remove_breakpoint (b->gdbarch, &b->target_info);
c02f5703 2385 }
c906108c
SS
2386 else
2387 {
c02f5703
MS
2388 /* This breakpoint is in an overlay section.
2389 Did we set a breakpoint at the LMA? */
2390 if (!overlay_events_enabled)
2391 {
2392 /* Yes -- overlay event support is not active, so we
2393 should have set a breakpoint at the LMA. Remove it.
2394 */
c02f5703
MS
2395 /* Ignore any failures: if the LMA is in ROM, we will
2396 have already warned when we failed to insert it. */
0bde7532 2397 if (b->loc_type == bp_loc_hardware_breakpoint)
a6d9a66e
UW
2398 target_remove_hw_breakpoint (b->gdbarch,
2399 &b->overlay_target_info);
c02f5703 2400 else
a6d9a66e
UW
2401 target_remove_breakpoint (b->gdbarch,
2402 &b->overlay_target_info);
c02f5703
MS
2403 }
2404 /* Did we set a breakpoint at the VMA?
2405 If so, we will have marked the breakpoint 'inserted'. */
0bde7532 2406 if (b->inserted)
c906108c 2407 {
c02f5703
MS
2408 /* Yes -- remove it. Previously we did not bother to
2409 remove the breakpoint if the section had been
2410 unmapped, but let's not rely on that being safe. We
2411 don't know what the overlay manager might do. */
0bde7532 2412 if (b->loc_type == bp_loc_hardware_breakpoint)
a6d9a66e
UW
2413 val = target_remove_hw_breakpoint (b->gdbarch,
2414 &b->target_info);
aa67235e
UW
2415
2416 /* However, we should remove *software* breakpoints only
2417 if the section is still mapped, or else we overwrite
2418 wrong code with the saved shadow contents. */
2419 else if (section_is_mapped (b->section))
a6d9a66e
UW
2420 val = target_remove_breakpoint (b->gdbarch,
2421 &b->target_info);
aa67235e
UW
2422 else
2423 val = 0;
c906108c 2424 }
c02f5703
MS
2425 else
2426 {
2427 /* No -- not inserted, so no need to remove. No error. */
2428 val = 0;
2429 }
c906108c 2430 }
879d1e6b
UW
2431
2432 /* In some cases, we might not be able to remove a breakpoint
2433 in a shared library that has already been removed, but we
2434 have not yet processed the shlib unload event. */
6c95b8df 2435 if (val && solib_name_from_address (b->pspace, b->address))
879d1e6b
UW
2436 val = 0;
2437
c906108c
SS
2438 if (val)
2439 return val;
0bde7532 2440 b->inserted = (is == mark_inserted);
c906108c 2441 }
a5606eee 2442 else if (b->loc_type == bp_loc_hardware_watchpoint)
c906108c 2443 {
0bde7532 2444 b->inserted = (is == mark_inserted);
0cf6dd15
TJB
2445 val = target_remove_watchpoint (b->address, b->length,
2446 b->watchpoint_type, b->owner->cond_exp);
2e70b7b9 2447
c906108c 2448 /* Failure to remove any of the hardware watchpoints comes here. */
0bde7532 2449 if ((is == mark_uninserted) && (b->inserted))
8a3fe4f8 2450 warning (_("Could not remove hardware watchpoint %d."),
0bde7532 2451 b->owner->number);
c906108c 2452 }
ce78b96d
JB
2453 else if (b->owner->type == bp_catchpoint
2454 && breakpoint_enabled (b->owner)
2455 && !b->duplicate)
2456 {
2457 gdb_assert (b->owner->ops != NULL && b->owner->ops->remove != NULL);
2458
2459 val = b->owner->ops->remove (b->owner);
2460 if (val)
2461 return val;
2462 b->inserted = (is == mark_inserted);
2463 }
c906108c
SS
2464
2465 return 0;
2466}
2467
6c95b8df
PA
2468static int
2469remove_breakpoint (struct bp_location *b, insertion_state_t is)
2470{
2471 int ret;
2472 struct cleanup *old_chain;
2473
2bdf28a0
JK
2474 /* B is never in moribund_locations by our callers. */
2475 gdb_assert (b->owner != NULL);
2476
6c95b8df
PA
2477 if (b->owner->enable_state == bp_permanent)
2478 /* Permanent breakpoints cannot be inserted or removed. */
2479 return 0;
2480
2481 /* The type of none suggests that owner is actually deleted.
2482 This should not ever happen. */
2483 gdb_assert (b->owner->type != bp_none);
2484
2485 old_chain = save_current_space_and_thread ();
2486
2487 switch_to_program_space_and_thread (b->pspace);
2488
2489 ret = remove_breakpoint_1 (b, is);
2490
2491 do_cleanups (old_chain);
2492 return ret;
2493}
2494
c906108c
SS
2495/* Clear the "inserted" flag in all breakpoints. */
2496
25b22b0a 2497void
fba45db2 2498mark_breakpoints_out (void)
c906108c 2499{
876fa593 2500 struct bp_location *bpt, **bptp_tmp;
c906108c 2501
876fa593 2502 ALL_BP_LOCATIONS (bpt, bptp_tmp)
6c95b8df
PA
2503 if (bpt->pspace == current_program_space)
2504 bpt->inserted = 0;
c906108c
SS
2505}
2506
53a5351d
JM
2507/* Clear the "inserted" flag in all breakpoints and delete any
2508 breakpoints which should go away between runs of the program.
c906108c
SS
2509
2510 Plus other such housekeeping that has to be done for breakpoints
2511 between runs.
2512
53a5351d
JM
2513 Note: this function gets called at the end of a run (by
2514 generic_mourn_inferior) and when a run begins (by
2515 init_wait_for_inferior). */
c906108c
SS
2516
2517
2518
2519void
fba45db2 2520breakpoint_init_inferior (enum inf_context context)
c906108c 2521{
52f0bd74 2522 struct breakpoint *b, *temp;
876fa593 2523 struct bp_location *bpt, **bptp_tmp;
1c5cfe86 2524 int ix;
6c95b8df 2525 struct program_space *pspace = current_program_space;
c906108c 2526
50c71eaf
PA
2527 /* If breakpoint locations are shared across processes, then there's
2528 nothing to do. */
2567c7d9 2529 if (gdbarch_has_global_breakpoints (target_gdbarch))
50c71eaf
PA
2530 return;
2531
876fa593 2532 ALL_BP_LOCATIONS (bpt, bptp_tmp)
6c95b8df 2533 {
2bdf28a0 2534 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
6c95b8df
PA
2535 if (bpt->pspace == pspace
2536 && bpt->owner->enable_state != bp_permanent)
514f746b 2537 bpt->inserted = 0;
6c95b8df 2538 }
075f6582 2539
c906108c 2540 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 2541 {
6c95b8df
PA
2542 if (b->loc && b->loc->pspace != pspace)
2543 continue;
2544
c5aa993b
JM
2545 switch (b->type)
2546 {
2547 case bp_call_dummy:
c906108c 2548
c5aa993b 2549 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
2550 cause problems when the inferior is rerun, so we better get
2551 rid of it. */
2552
2553 case bp_watchpoint_scope:
2554
2555 /* Also get rid of scope breakpoints. */
2556
2557 case bp_shlib_event:
2558
2559 /* Also remove solib event breakpoints. Their addresses may
2560 have changed since the last time we ran the program.
2561 Actually we may now be debugging against different target;
2562 and so the solib backend that installed this breakpoint may
2563 not be used in by the target. E.g.,
2564
2565 (gdb) file prog-linux
2566 (gdb) run # native linux target
2567 ...
2568 (gdb) kill
2569 (gdb) file prog-win.exe
2570 (gdb) tar rem :9999 # remote Windows gdbserver.
2571 */
c906108c 2572
c5aa993b
JM
2573 delete_breakpoint (b);
2574 break;
c906108c 2575
c5aa993b
JM
2576 case bp_watchpoint:
2577 case bp_hardware_watchpoint:
2578 case bp_read_watchpoint:
2579 case bp_access_watchpoint:
c906108c 2580
c5aa993b
JM
2581 /* Likewise for watchpoints on local expressions. */
2582 if (b->exp_valid_block != NULL)
2583 delete_breakpoint (b);
967af18d 2584 else if (context == inf_starting)
c860120c
PM
2585 {
2586 /* Reset val field to force reread of starting value
2587 in insert_breakpoints. */
2588 if (b->val)
2589 value_free (b->val);
2590 b->val = NULL;
fa4727a6 2591 b->val_valid = 0;
c860120c 2592 }
c5aa993b
JM
2593 break;
2594 default:
c5aa993b
JM
2595 break;
2596 }
2597 }
1c5cfe86
PA
2598
2599 /* Get rid of the moribund locations. */
2600 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bpt); ++ix)
f431efe5 2601 decref_bp_location (&bpt);
1c5cfe86 2602 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
2603}
2604
6c95b8df
PA
2605/* These functions concern about actual breakpoints inserted in the
2606 target --- to e.g. check if we need to do decr_pc adjustment or if
2607 we need to hop over the bkpt --- so we check for address space
2608 match, not program space. */
2609
c2c6d25f
JM
2610/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
2611 exists at PC. It returns ordinary_breakpoint_here if it's an
2612 ordinary breakpoint, or permanent_breakpoint_here if it's a
2613 permanent breakpoint.
2614 - When continuing from a location with an ordinary breakpoint, we
2615 actually single step once before calling insert_breakpoints.
2616 - When continuing from a localion with a permanent breakpoint, we
2617 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
2618 the target, to advance the PC past the breakpoint. */
c906108c 2619
c2c6d25f 2620enum breakpoint_here
6c95b8df 2621breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 2622{
876fa593 2623 struct bp_location *bpt, **bptp_tmp;
c2c6d25f 2624 int any_breakpoint_here = 0;
c906108c 2625
876fa593 2626 ALL_BP_LOCATIONS (bpt, bptp_tmp)
075f6582
DJ
2627 {
2628 if (bpt->loc_type != bp_loc_software_breakpoint
2629 && bpt->loc_type != bp_loc_hardware_breakpoint)
2630 continue;
2631
2bdf28a0 2632 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
468d015d 2633 if ((breakpoint_enabled (bpt->owner)
075f6582 2634 || bpt->owner->enable_state == bp_permanent)
6c95b8df
PA
2635 && breakpoint_address_match (bpt->pspace->aspace, bpt->address,
2636 aspace, pc))
075f6582
DJ
2637 {
2638 if (overlay_debugging
2639 && section_is_overlay (bpt->section)
2640 && !section_is_mapped (bpt->section))
2641 continue; /* unmapped overlay -- can't be a match */
2642 else if (bpt->owner->enable_state == bp_permanent)
2643 return permanent_breakpoint_here;
2644 else
2645 any_breakpoint_here = 1;
2646 }
2647 }
c906108c 2648
c2c6d25f 2649 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
2650}
2651
1c5cfe86
PA
2652/* Return true if there's a moribund breakpoint at PC. */
2653
2654int
6c95b8df 2655moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
2656{
2657 struct bp_location *loc;
2658 int ix;
2659
2660 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
6c95b8df
PA
2661 if (breakpoint_address_match (loc->pspace->aspace, loc->address,
2662 aspace, pc))
1c5cfe86
PA
2663 return 1;
2664
2665 return 0;
2666}
c2c6d25f 2667
c36b740a 2668/* Returns non-zero if there's a breakpoint inserted at PC, which is
876fa593 2669 inserted using regular breakpoint_chain / bp_location array mechanism.
c36b740a
VP
2670 This does not check for single-step breakpoints, which are
2671 inserted and removed using direct target manipulation. */
c906108c
SS
2672
2673int
6c95b8df 2674regular_breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 2675{
876fa593 2676 struct bp_location *bpt, **bptp_tmp;
c906108c 2677
876fa593 2678 ALL_BP_LOCATIONS (bpt, bptp_tmp)
c5aa993b 2679 {
075f6582
DJ
2680 if (bpt->loc_type != bp_loc_software_breakpoint
2681 && bpt->loc_type != bp_loc_hardware_breakpoint)
2682 continue;
2683
2684 if (bpt->inserted
6c95b8df
PA
2685 && breakpoint_address_match (bpt->pspace->aspace, bpt->address,
2686 aspace, pc))
075f6582
DJ
2687 {
2688 if (overlay_debugging
2689 && section_is_overlay (bpt->section)
2690 && !section_is_mapped (bpt->section))
2691 continue; /* unmapped overlay -- can't be a match */
2692 else
2693 return 1;
2694 }
c5aa993b 2695 }
c36b740a
VP
2696 return 0;
2697}
2698
2699/* Returns non-zero iff there's either regular breakpoint
2700 or a single step breakpoint inserted at PC. */
2701
2702int
6c95b8df 2703breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c36b740a 2704{
6c95b8df 2705 if (regular_breakpoint_inserted_here_p (aspace, pc))
c36b740a 2706 return 1;
c906108c 2707
6c95b8df 2708 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2709 return 1;
2710
c906108c
SS
2711 return 0;
2712}
2713
4fa8626c
DJ
2714/* This function returns non-zero iff there is a software breakpoint
2715 inserted at PC. */
2716
2717int
6c95b8df 2718software_breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
4fa8626c 2719{
876fa593 2720 struct bp_location *bpt, **bptp_tmp;
4fa8626c 2721
876fa593 2722 ALL_BP_LOCATIONS (bpt, bptp_tmp)
4fa8626c
DJ
2723 {
2724 if (bpt->loc_type != bp_loc_software_breakpoint)
2725 continue;
2726
0d381245 2727 if (bpt->inserted
6c95b8df
PA
2728 && breakpoint_address_match (bpt->pspace->aspace, bpt->address,
2729 aspace, pc))
4fa8626c
DJ
2730 {
2731 if (overlay_debugging
2732 && section_is_overlay (bpt->section)
2733 && !section_is_mapped (bpt->section))
2734 continue; /* unmapped overlay -- can't be a match */
2735 else
2736 return 1;
2737 }
2738 }
2739
1aafd4da 2740 /* Also check for software single-step breakpoints. */
6c95b8df 2741 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
2742 return 1;
2743
4fa8626c
DJ
2744 return 0;
2745}
2746
9093389c
PA
2747int
2748hardware_watchpoint_inserted_in_range (struct address_space *aspace,
2749 CORE_ADDR addr, ULONGEST len)
2750{
2751 struct breakpoint *bpt;
2752
2753 ALL_BREAKPOINTS (bpt)
2754 {
2755 struct bp_location *loc;
2756
2757 if (bpt->type != bp_hardware_watchpoint
2758 && bpt->type != bp_access_watchpoint)
2759 continue;
2760
2761 if (!breakpoint_enabled (bpt))
2762 continue;
2763
2764 for (loc = bpt->loc; loc; loc = loc->next)
2765 if (loc->pspace->aspace == aspace && loc->inserted)
2766 {
2767 CORE_ADDR l, h;
2768
2769 /* Check for intersection. */
2770 l = max (loc->address, addr);
2771 h = min (loc->address + loc->length, addr + len);
2772 if (l < h)
2773 return 1;
2774 }
2775 }
2776 return 0;
2777}
2778
075f6582
DJ
2779/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
2780 PC is valid for process/thread PTID. */
c906108c
SS
2781
2782int
6c95b8df
PA
2783breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc,
2784 ptid_t ptid)
c906108c 2785{
876fa593 2786 struct bp_location *bpt, **bptp_tmp;
4a306c9a 2787 /* The thread and task IDs associated to PTID, computed lazily. */
a6f1cd96 2788 int thread = -1;
4a306c9a 2789 int task = 0;
a6f1cd96 2790
876fa593 2791 ALL_BP_LOCATIONS (bpt, bptp_tmp)
c5aa993b 2792 {
075f6582
DJ
2793 if (bpt->loc_type != bp_loc_software_breakpoint
2794 && bpt->loc_type != bp_loc_hardware_breakpoint)
2795 continue;
2796
2bdf28a0 2797 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
a6f1cd96
JB
2798 if (!breakpoint_enabled (bpt->owner)
2799 && bpt->owner->enable_state != bp_permanent)
2800 continue;
2801
6c95b8df
PA
2802 if (!breakpoint_address_match (bpt->pspace->aspace, bpt->address,
2803 aspace, pc))
a6f1cd96
JB
2804 continue;
2805
2806 if (bpt->owner->thread != -1)
075f6582 2807 {
a6f1cd96
JB
2808 /* This is a thread-specific breakpoint. Check that ptid
2809 matches that thread. If thread hasn't been computed yet,
2810 it is now time to do so. */
2811 if (thread == -1)
2812 thread = pid_to_thread_id (ptid);
2813 if (bpt->owner->thread != thread)
2814 continue;
075f6582 2815 }
a6f1cd96 2816
4a306c9a
JB
2817 if (bpt->owner->task != 0)
2818 {
2819 /* This is a task-specific breakpoint. Check that ptid
2820 matches that task. If task hasn't been computed yet,
2821 it is now time to do so. */
2822 if (task == 0)
2823 task = ada_get_task_number (ptid);
2824 if (bpt->owner->task != task)
2825 continue;
2826 }
2827
a6f1cd96
JB
2828 if (overlay_debugging
2829 && section_is_overlay (bpt->section)
2830 && !section_is_mapped (bpt->section))
2831 continue; /* unmapped overlay -- can't be a match */
2832
2833 return 1;
c5aa993b 2834 }
c906108c
SS
2835
2836 return 0;
2837}
c906108c 2838\f
c5aa993b 2839
c906108c
SS
2840/* bpstat stuff. External routines' interfaces are documented
2841 in breakpoint.h. */
2842
2843int
fba45db2 2844ep_is_catchpoint (struct breakpoint *ep)
c906108c 2845{
533be4dd 2846 return (ep->type == bp_catchpoint);
c906108c
SS
2847}
2848
f431efe5
PA
2849/* Frees any storage that is part of a bpstat. Does not walk the
2850 'next' chain. */
2851
2852static void
198757a8
VP
2853bpstat_free (bpstat bs)
2854{
2855 if (bs->old_val != NULL)
2856 value_free (bs->old_val);
9add0f1b 2857 decref_counted_command_line (&bs->commands);
f431efe5 2858 decref_bp_location (&bs->bp_location_at);
198757a8
VP
2859 xfree (bs);
2860}
2861
c906108c
SS
2862/* Clear a bpstat so that it says we are not at any breakpoint.
2863 Also free any storage that is part of a bpstat. */
2864
2865void
fba45db2 2866bpstat_clear (bpstat *bsp)
c906108c
SS
2867{
2868 bpstat p;
2869 bpstat q;
2870
2871 if (bsp == 0)
2872 return;
2873 p = *bsp;
2874 while (p != NULL)
2875 {
2876 q = p->next;
198757a8 2877 bpstat_free (p);
c906108c
SS
2878 p = q;
2879 }
2880 *bsp = NULL;
2881}
2882
2883/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
2884 is part of the bpstat is copied as well. */
2885
2886bpstat
fba45db2 2887bpstat_copy (bpstat bs)
c906108c
SS
2888{
2889 bpstat p = NULL;
2890 bpstat tmp;
2891 bpstat retval = NULL;
2892
2893 if (bs == NULL)
2894 return bs;
2895
2896 for (; bs != NULL; bs = bs->next)
2897 {
2898 tmp = (bpstat) xmalloc (sizeof (*tmp));
2899 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 2900 incref_counted_command_line (tmp->commands);
f431efe5 2901 incref_bp_location (tmp->bp_location_at);
31cc81e9 2902 if (bs->old_val != NULL)
3c3185ac
JK
2903 {
2904 tmp->old_val = value_copy (bs->old_val);
2905 release_value (tmp->old_val);
2906 }
31cc81e9 2907
c906108c
SS
2908 if (p == NULL)
2909 /* This is the first thing in the chain. */
2910 retval = tmp;
2911 else
2912 p->next = tmp;
2913 p = tmp;
2914 }
2915 p->next = NULL;
2916 return retval;
2917}
2918
2919/* Find the bpstat associated with this breakpoint */
2920
2921bpstat
fba45db2 2922bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 2923{
c5aa993b
JM
2924 if (bsp == NULL)
2925 return NULL;
c906108c 2926
c5aa993b
JM
2927 for (; bsp != NULL; bsp = bsp->next)
2928 {
f431efe5 2929 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
2930 return bsp;
2931 }
c906108c
SS
2932 return NULL;
2933}
2934
8671a17b 2935/* Put in *NUM the breakpoint number of the first breakpoint we are stopped
c906108c
SS
2936 at. *BSP upon return is a bpstat which points to the remaining
2937 breakpoints stopped at (but which is not guaranteed to be good for
2938 anything but further calls to bpstat_num).
8671a17b
PA
2939 Return 0 if passed a bpstat which does not indicate any breakpoints.
2940 Return -1 if stopped at a breakpoint that has been deleted since
2941 we set it.
2942 Return 1 otherwise. */
c906108c
SS
2943
2944int
8671a17b 2945bpstat_num (bpstat *bsp, int *num)
c906108c
SS
2946{
2947 struct breakpoint *b;
2948
2949 if ((*bsp) == NULL)
2950 return 0; /* No more breakpoint values */
8671a17b 2951
4f8d1dc6
VP
2952 /* We assume we'll never have several bpstats that
2953 correspond to a single breakpoint -- otherwise,
2954 this function might return the same number more
2955 than once and this will look ugly. */
f431efe5 2956 b = (*bsp)->breakpoint_at;
8671a17b
PA
2957 *bsp = (*bsp)->next;
2958 if (b == NULL)
2959 return -1; /* breakpoint that's been deleted since */
2960
2961 *num = b->number; /* We have its number */
2962 return 1;
c906108c
SS
2963}
2964
2965/* Modify BS so that the actions will not be performed. */
2966
2967void
fba45db2 2968bpstat_clear_actions (bpstat bs)
c906108c
SS
2969{
2970 for (; bs != NULL; bs = bs->next)
2971 {
9add0f1b 2972 decref_counted_command_line (&bs->commands);
dde2d684 2973 bs->commands_left = NULL;
c906108c
SS
2974 if (bs->old_val != NULL)
2975 {
2976 value_free (bs->old_val);
2977 bs->old_val = NULL;
2978 }
2979 }
2980}
2981
f3b1572e
PA
2982/* Called when a command is about to proceed the inferior. */
2983
2984static void
2985breakpoint_about_to_proceed (void)
2986{
2987 if (!ptid_equal (inferior_ptid, null_ptid))
2988 {
2989 struct thread_info *tp = inferior_thread ();
2990
2991 /* Allow inferior function calls in breakpoint commands to not
2992 interrupt the command list. When the call finishes
2993 successfully, the inferior will be standing at the same
2994 breakpoint as if nothing happened. */
2995 if (tp->in_infcall)
2996 return;
2997 }
2998
2999 breakpoint_proceeded = 1;
3000}
3001
c906108c 3002/* Stub for cleaning up our state if we error-out of a breakpoint command */
c906108c 3003static void
4efb68b1 3004cleanup_executing_breakpoints (void *ignore)
c906108c
SS
3005{
3006 executing_breakpoint_commands = 0;
3007}
3008
3009/* Execute all the commands associated with all the breakpoints at this
3010 location. Any of these commands could cause the process to proceed
3011 beyond this point, etc. We look out for such changes by checking
347bddb7 3012 the global "breakpoint_proceeded" after each command.
c906108c 3013
347bddb7
PA
3014 Returns true if a breakpoint command resumed the inferior. In that
3015 case, it is the caller's responsibility to recall it again with the
3016 bpstat of the current thread. */
3017
3018static int
3019bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
3020{
3021 bpstat bs;
3022 struct cleanup *old_chain;
347bddb7 3023 int again = 0;
c906108c
SS
3024
3025 /* Avoid endless recursion if a `source' command is contained
3026 in bs->commands. */
3027 if (executing_breakpoint_commands)
347bddb7 3028 return 0;
c906108c
SS
3029
3030 executing_breakpoint_commands = 1;
3031 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
3032
c906108c
SS
3033 /* This pointer will iterate over the list of bpstat's. */
3034 bs = *bsp;
3035
3036 breakpoint_proceeded = 0;
3037 for (; bs != NULL; bs = bs->next)
3038 {
9add0f1b 3039 struct counted_command_line *ccmd;
6c50ab1c
JB
3040 struct command_line *cmd;
3041 struct cleanup *this_cmd_tree_chain;
3042
3043 /* Take ownership of the BSP's command tree, if it has one.
3044
3045 The command tree could legitimately contain commands like
3046 'step' and 'next', which call clear_proceed_status, which
3047 frees stop_bpstat's command tree. To make sure this doesn't
3048 free the tree we're executing out from under us, we need to
3049 take ownership of the tree ourselves. Since a given bpstat's
3050 commands are only executed once, we don't need to copy it; we
3051 can clear the pointer in the bpstat, and make sure we free
3052 the tree when we're done. */
9add0f1b
TT
3053 ccmd = bs->commands;
3054 bs->commands = NULL;
3055 this_cmd_tree_chain
3056 = make_cleanup_decref_counted_command_line (&ccmd);
3057 cmd = bs->commands_left;
3058 bs->commands_left = NULL;
6c50ab1c 3059
c906108c
SS
3060 while (cmd != NULL)
3061 {
3062 execute_control_command (cmd);
3063
3064 if (breakpoint_proceeded)
3065 break;
3066 else
3067 cmd = cmd->next;
3068 }
6c50ab1c
JB
3069
3070 /* We can free this command tree now. */
3071 do_cleanups (this_cmd_tree_chain);
3072
c906108c 3073 if (breakpoint_proceeded)
32c1e744
VP
3074 {
3075 if (target_can_async_p ())
347bddb7
PA
3076 /* If we are in async mode, then the target might be still
3077 running, not stopped at any breakpoint, so nothing for
3078 us to do here -- just return to the event loop. */
3079 ;
32c1e744
VP
3080 else
3081 /* In sync mode, when execute_control_command returns
3082 we're already standing on the next breakpoint.
347bddb7
PA
3083 Breakpoint commands for that stop were not run, since
3084 execute_command does not run breakpoint commands --
3085 only command_line_handler does, but that one is not
3086 involved in execution of breakpoint commands. So, we
3087 can now execute breakpoint commands. It should be
3088 noted that making execute_command do bpstat actions is
3089 not an option -- in this case we'll have recursive
3090 invocation of bpstat for each breakpoint with a
3091 command, and can easily blow up GDB stack. Instead, we
3092 return true, which will trigger the caller to recall us
3093 with the new stop_bpstat. */
3094 again = 1;
3095 break;
32c1e744 3096 }
c906108c 3097 }
c2b8ed2c 3098 do_cleanups (old_chain);
347bddb7
PA
3099 return again;
3100}
3101
3102void
3103bpstat_do_actions (void)
3104{
3105 /* Do any commands attached to breakpoint we are stopped at. */
3106 while (!ptid_equal (inferior_ptid, null_ptid)
3107 && target_has_execution
3108 && !is_exited (inferior_ptid)
3109 && !is_executing (inferior_ptid))
3110 /* Since in sync mode, bpstat_do_actions may resume the inferior,
3111 and only return when it is stopped at the next breakpoint, we
3112 keep doing breakpoint actions until it returns false to
3113 indicate the inferior was not resumed. */
3114 if (!bpstat_do_actions_1 (&inferior_thread ()->stop_bpstat))
3115 break;
c906108c
SS
3116}
3117
fa4727a6
DJ
3118/* Print out the (old or new) value associated with a watchpoint. */
3119
3120static void
3121watchpoint_value_print (struct value *val, struct ui_file *stream)
3122{
3123 if (val == NULL)
3124 fprintf_unfiltered (stream, _("<unreadable>"));
3125 else
79a45b7d
TT
3126 {
3127 struct value_print_options opts;
3128 get_user_print_options (&opts);
3129 value_print (val, stream, &opts);
3130 }
fa4727a6
DJ
3131}
3132
e514a9d6 3133/* This is the normal print function for a bpstat. In the future,
c906108c 3134 much of this logic could (should?) be moved to bpstat_stop_status,
e514a9d6
JM
3135 by having it set different print_it values.
3136
3137 Current scheme: When we stop, bpstat_print() is called. It loops
3138 through the bpstat list of things causing this stop, calling the
3139 print_bp_stop_message function on each one. The behavior of the
3140 print_bp_stop_message function depends on the print_it field of
3141 bpstat. If such field so indicates, call this function here.
3142
3143 Return values from this routine (ultimately used by bpstat_print()
3144 and normal_stop() to decide what to do):
3145 PRINT_NOTHING: Means we already printed all we needed to print,
3146 don't print anything else.
3147 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
3148 that something to be followed by a location.
3149 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
3150 that something to be followed by a location.
3151 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
3152 analysis. */
c906108c 3153
917317f4 3154static enum print_stop_action
fba45db2 3155print_it_typical (bpstat bs)
c906108c 3156{
f7545552 3157 struct cleanup *old_chain;
4f8d1dc6 3158 struct breakpoint *b;
89f9893c 3159 const struct bp_location *bl;
8b93c638 3160 struct ui_stream *stb;
f7545552
TT
3161 int bp_temp = 0;
3162 enum print_stop_action result;
3163
c906108c
SS
3164 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
3165 which has since been deleted. */
e514a9d6 3166 if (bs->breakpoint_at == NULL)
917317f4 3167 return PRINT_UNKNOWN;
2bdf28a0 3168
f431efe5
PA
3169 gdb_assert (bs->bp_location_at != NULL);
3170
3171 bl = bs->bp_location_at;
3172 b = bs->breakpoint_at;
c906108c 3173
f7545552
TT
3174 stb = ui_out_stream_new (uiout);
3175 old_chain = make_cleanup_ui_out_stream_delete (stb);
3176
4f8d1dc6 3177 switch (b->type)
c906108c 3178 {
e514a9d6
JM
3179 case bp_breakpoint:
3180 case bp_hardware_breakpoint:
f431efe5 3181 bp_temp = b->disposition == disp_del;
0d381245
VP
3182 if (bl->address != bl->requested_address)
3183 breakpoint_adjustment_warning (bl->requested_address,
3184 bl->address,
4f8d1dc6
VP
3185 b->number, 1);
3186 annotate_breakpoint (b->number);
2cec12e5
AR
3187 if (bp_temp)
3188 ui_out_text (uiout, "\nTemporary breakpoint ");
3189 else
3190 ui_out_text (uiout, "\nBreakpoint ");
9dc5e2a9 3191 if (ui_out_is_mi_like_p (uiout))
2cec12e5
AR
3192 {
3193 ui_out_field_string (uiout, "reason",
3194 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
3195 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
3196 }
4f8d1dc6 3197 ui_out_field_int (uiout, "bkptno", b->number);
8b93c638 3198 ui_out_text (uiout, ", ");
f7545552 3199 result = PRINT_SRC_AND_LOC;
e514a9d6
JM
3200 break;
3201
3202 case bp_shlib_event:
917317f4
JM
3203 /* Did we stop because the user set the stop_on_solib_events
3204 variable? (If so, we report this as a generic, "Stopped due
3205 to shlib event" message.) */
a3f17187 3206 printf_filtered (_("Stopped due to shared library event\n"));
f7545552 3207 result = PRINT_NOTHING;
e514a9d6
JM
3208 break;
3209
c4093a6a
JM
3210 case bp_thread_event:
3211 /* Not sure how we will get here.
3212 GDB should not stop for these breakpoints. */
a3f17187 3213 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
f7545552 3214 result = PRINT_NOTHING;
c4093a6a
JM
3215 break;
3216
1900040c
MS
3217 case bp_overlay_event:
3218 /* By analogy with the thread event, GDB should not stop for these. */
a3f17187 3219 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
f7545552 3220 result = PRINT_NOTHING;
1900040c
MS
3221 break;
3222
0fd8e87f
UW
3223 case bp_longjmp_master:
3224 /* These should never be enabled. */
3225 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
3226 result = PRINT_NOTHING;
3227 break;
3228
aa7d318d
TT
3229 case bp_std_terminate_master:
3230 /* These should never be enabled. */
3231 printf_filtered (_("std::terminate Master Breakpoint: gdb should not stop!\n"));
3232 result = PRINT_NOTHING;
3233 break;
3234
e514a9d6
JM
3235 case bp_watchpoint:
3236 case bp_hardware_watchpoint:
fa4727a6
DJ
3237 annotate_watchpoint (b->number);
3238 if (ui_out_is_mi_like_p (uiout))
3239 ui_out_field_string
3240 (uiout, "reason",
3241 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
3242 mention (b);
f7545552 3243 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
fa4727a6
DJ
3244 ui_out_text (uiout, "\nOld value = ");
3245 watchpoint_value_print (bs->old_val, stb->stream);
3246 ui_out_field_stream (uiout, "old", stb);
3247 ui_out_text (uiout, "\nNew value = ");
3248 watchpoint_value_print (b->val, stb->stream);
3249 ui_out_field_stream (uiout, "new", stb);
fa4727a6 3250 ui_out_text (uiout, "\n");
e514a9d6 3251 /* More than one watchpoint may have been triggered. */
f7545552 3252 result = PRINT_UNKNOWN;
e514a9d6
JM
3253 break;
3254
3255 case bp_read_watchpoint:
9dc5e2a9 3256 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3257 ui_out_field_string
3258 (uiout, "reason",
3259 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
4f8d1dc6 3260 mention (b);
f7545552 3261 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3262 ui_out_text (uiout, "\nValue = ");
fa4727a6 3263 watchpoint_value_print (b->val, stb->stream);
8b93c638 3264 ui_out_field_stream (uiout, "value", stb);
8b93c638 3265 ui_out_text (uiout, "\n");
f7545552 3266 result = PRINT_UNKNOWN;
e514a9d6
JM
3267 break;
3268
3269 case bp_access_watchpoint:
fa4727a6 3270 if (bs->old_val != NULL)
8b93c638 3271 {
4f8d1dc6 3272 annotate_watchpoint (b->number);
9dc5e2a9 3273 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3274 ui_out_field_string
3275 (uiout, "reason",
3276 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
4f8d1dc6 3277 mention (b);
f7545552 3278 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 3279 ui_out_text (uiout, "\nOld value = ");
fa4727a6 3280 watchpoint_value_print (bs->old_val, stb->stream);
8b93c638 3281 ui_out_field_stream (uiout, "old", stb);
8b93c638
JM
3282 ui_out_text (uiout, "\nNew value = ");
3283 }
3284 else
3285 {
4f8d1dc6 3286 mention (b);
9dc5e2a9 3287 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3288 ui_out_field_string
3289 (uiout, "reason",
3290 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
f7545552 3291 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
3292 ui_out_text (uiout, "\nValue = ");
3293 }
fa4727a6 3294 watchpoint_value_print (b->val, stb->stream);
8b93c638 3295 ui_out_field_stream (uiout, "new", stb);
8b93c638 3296 ui_out_text (uiout, "\n");
f7545552 3297 result = PRINT_UNKNOWN;
e514a9d6 3298 break;
4ce44c66 3299
e514a9d6
JM
3300 /* Fall through, we don't deal with these types of breakpoints
3301 here. */
3302
11cf8741 3303 case bp_finish:
9dc5e2a9 3304 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3305 ui_out_field_string
3306 (uiout, "reason",
3307 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
f7545552 3308 result = PRINT_UNKNOWN;
8b93c638
JM
3309 break;
3310
e514a9d6 3311 case bp_until:
9dc5e2a9 3312 if (ui_out_is_mi_like_p (uiout))
1fbc2a49
NR
3313 ui_out_field_string
3314 (uiout, "reason",
3315 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
f7545552 3316 result = PRINT_UNKNOWN;
8b93c638
JM
3317 break;
3318
c2d11a7d 3319 case bp_none:
e514a9d6
JM
3320 case bp_longjmp:
3321 case bp_longjmp_resume:
3322 case bp_step_resume:
e514a9d6
JM
3323 case bp_watchpoint_scope:
3324 case bp_call_dummy:
aa7d318d 3325 case bp_std_terminate:
1042e4c0 3326 case bp_tracepoint:
7a697b8d 3327 case bp_fast_tracepoint:
4efc6507 3328 case bp_jit_event:
e514a9d6 3329 default:
f7545552
TT
3330 result = PRINT_UNKNOWN;
3331 break;
e514a9d6 3332 }
f7545552
TT
3333
3334 do_cleanups (old_chain);
3335 return result;
e514a9d6
JM
3336}
3337
3338/* Generic routine for printing messages indicating why we
3339 stopped. The behavior of this function depends on the value
3340 'print_it' in the bpstat structure. Under some circumstances we
3341 may decide not to print anything here and delegate the task to
3342 normal_stop(). */
3343
3344static enum print_stop_action
3345print_bp_stop_message (bpstat bs)
3346{
3347 switch (bs->print_it)
3348 {
3349 case print_it_noop:
3350 /* Nothing should be printed for this bpstat entry. */
3351 return PRINT_UNKNOWN;
3352 break;
3353
3354 case print_it_done:
3355 /* We still want to print the frame, but we already printed the
3356 relevant messages. */
3357 return PRINT_SRC_AND_LOC;
3358 break;
3359
3360 case print_it_normal:
4f8d1dc6 3361 {
f431efe5
PA
3362 struct breakpoint *b = bs->breakpoint_at;
3363
4f8d1dc6
VP
3364 /* Normal case. Call the breakpoint's print_it method, or
3365 print_it_typical. */
3366 /* FIXME: how breakpoint can ever be NULL here? */
3367 if (b != NULL && b->ops != NULL && b->ops->print_it != NULL)
3368 return b->ops->print_it (b);
3369 else
3370 return print_it_typical (bs);
3371 }
3372 break;
3086aeae 3373
e514a9d6 3374 default:
8e65ff28 3375 internal_error (__FILE__, __LINE__,
e2e0b3e5 3376 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 3377 break;
c906108c 3378 }
c906108c
SS
3379}
3380
e514a9d6
JM
3381/* Print a message indicating what happened. This is called from
3382 normal_stop(). The input to this routine is the head of the bpstat
3383 list - a list of the eventpoints that caused this stop. This
3384 routine calls the generic print routine for printing a message
3385 about reasons for stopping. This will print (for example) the
3386 "Breakpoint n," part of the output. The return value of this
3387 routine is one of:
c906108c 3388
917317f4
JM
3389 PRINT_UNKNOWN: Means we printed nothing
3390 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
c5aa993b
JM
3391 code to print the location. An example is
3392 "Breakpoint 1, " which should be followed by
3393 the location.
917317f4 3394 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
3395 to also print the location part of the message.
3396 An example is the catch/throw messages, which
917317f4
JM
3397 don't require a location appended to the end.
3398 PRINT_NOTHING: We have done some printing and we don't need any
3399 further info to be printed.*/
c906108c 3400
917317f4 3401enum print_stop_action
fba45db2 3402bpstat_print (bpstat bs)
c906108c
SS
3403{
3404 int val;
c5aa993b 3405
c906108c 3406 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
3407 (Currently all watchpoints go on the bpstat whether hit or not.
3408 That probably could (should) be changed, provided care is taken
c906108c 3409 with respect to bpstat_explains_signal). */
e514a9d6
JM
3410 for (; bs; bs = bs->next)
3411 {
3412 val = print_bp_stop_message (bs);
3413 if (val == PRINT_SRC_ONLY
3414 || val == PRINT_SRC_AND_LOC
3415 || val == PRINT_NOTHING)
3416 return val;
3417 }
c906108c 3418
e514a9d6
JM
3419 /* We reached the end of the chain, or we got a null BS to start
3420 with and nothing was printed. */
917317f4 3421 return PRINT_UNKNOWN;
c906108c
SS
3422}
3423
3424/* Evaluate the expression EXP and return 1 if value is zero.
3425 This is used inside a catch_errors to evaluate the breakpoint condition.
3426 The argument is a "struct expression *" that has been cast to char * to
3427 make it pass through catch_errors. */
3428
3429static int
4efb68b1 3430breakpoint_cond_eval (void *exp)
c906108c 3431{
278cd55f 3432 struct value *mark = value_mark ();
c5aa993b 3433 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 3434
c906108c
SS
3435 value_free_to_mark (mark);
3436 return i;
3437}
3438
3439/* Allocate a new bpstat and chain it to the current one. */
3440
3441static bpstat
f431efe5 3442bpstat_alloc (struct bp_location *bl, bpstat cbs /* Current "bs" value */ )
c906108c
SS
3443{
3444 bpstat bs;
3445
3446 bs = (bpstat) xmalloc (sizeof (*bs));
3447 cbs->next = bs;
f431efe5
PA
3448 bs->breakpoint_at = bl->owner;
3449 bs->bp_location_at = bl;
3450 incref_bp_location (bl);
c906108c
SS
3451 /* If the condition is false, etc., don't do the commands. */
3452 bs->commands = NULL;
9add0f1b 3453 bs->commands_left = NULL;
c906108c
SS
3454 bs->old_val = NULL;
3455 bs->print_it = print_it_normal;
3456 return bs;
3457}
3458\f
d983da9c
DJ
3459/* The target has stopped with waitstatus WS. Check if any hardware
3460 watchpoints have triggered, according to the target. */
3461
3462int
3463watchpoints_triggered (struct target_waitstatus *ws)
3464{
d92524f1 3465 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
3466 CORE_ADDR addr;
3467 struct breakpoint *b;
3468
3469 if (!stopped_by_watchpoint)
3470 {
3471 /* We were not stopped by a watchpoint. Mark all watchpoints
3472 as not triggered. */
3473 ALL_BREAKPOINTS (b)
cc60f2e3 3474 if (is_hardware_watchpoint (b))
d983da9c
DJ
3475 b->watchpoint_triggered = watch_triggered_no;
3476
3477 return 0;
3478 }
3479
3480 if (!target_stopped_data_address (&current_target, &addr))
3481 {
3482 /* We were stopped by a watchpoint, but we don't know where.
3483 Mark all watchpoints as unknown. */
3484 ALL_BREAKPOINTS (b)
cc60f2e3 3485 if (is_hardware_watchpoint (b))
d983da9c
DJ
3486 b->watchpoint_triggered = watch_triggered_unknown;
3487
3488 return stopped_by_watchpoint;
3489 }
3490
3491 /* The target could report the data address. Mark watchpoints
3492 affected by this data address as triggered, and all others as not
3493 triggered. */
3494
3495 ALL_BREAKPOINTS (b)
cc60f2e3 3496 if (is_hardware_watchpoint (b))
d983da9c 3497 {
a5606eee 3498 struct bp_location *loc;
d983da9c
DJ
3499
3500 b->watchpoint_triggered = watch_triggered_no;
a5606eee
VP
3501 for (loc = b->loc; loc; loc = loc->next)
3502 /* Exact match not required. Within range is
3503 sufficient. */
5009afc5
AS
3504 if (target_watchpoint_addr_within_range (&current_target,
3505 addr, loc->address,
3506 loc->length))
a5606eee
VP
3507 {
3508 b->watchpoint_triggered = watch_triggered_yes;
3509 break;
3510 }
d983da9c
DJ
3511 }
3512
3513 return 1;
3514}
3515
c906108c
SS
3516/* Possible return values for watchpoint_check (this can't be an enum
3517 because of check_errors). */
3518/* The watchpoint has been deleted. */
3519#define WP_DELETED 1
3520/* The value has changed. */
3521#define WP_VALUE_CHANGED 2
3522/* The value has not changed. */
3523#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
3524/* Ignore this watchpoint, no matter if the value changed or not. */
3525#define WP_IGNORE 4
c906108c
SS
3526
3527#define BP_TEMPFLAG 1
3528#define BP_HARDWAREFLAG 2
3529
553e4c11
JB
3530/* Evaluate watchpoint condition expression and check if its value changed.
3531
3532 P should be a pointer to struct bpstat, but is defined as a void *
3533 in order for this function to be usable with catch_errors. */
c906108c
SS
3534
3535static int
4efb68b1 3536watchpoint_check (void *p)
c906108c
SS
3537{
3538 bpstat bs = (bpstat) p;
3539 struct breakpoint *b;
3540 struct frame_info *fr;
3541 int within_current_scope;
3542
f431efe5 3543 /* BS is built from an existing struct breakpoint. */
2bdf28a0 3544 gdb_assert (bs->breakpoint_at != NULL);
f431efe5 3545 b = bs->breakpoint_at;
c906108c 3546
f6bc2008
PA
3547 /* If this is a local watchpoint, we only want to check if the
3548 watchpoint frame is in scope if the current thread is the thread
3549 that was used to create the watchpoint. */
3550 if (!watchpoint_in_thread_scope (b))
60e1c644 3551 return WP_IGNORE;
f6bc2008 3552
c906108c
SS
3553 if (b->exp_valid_block == NULL)
3554 within_current_scope = 1;
3555 else
3556 {
edb3359d
DJ
3557 struct frame_info *frame = get_current_frame ();
3558 struct gdbarch *frame_arch = get_frame_arch (frame);
3559 CORE_ADDR frame_pc = get_frame_pc (frame);
3560
a0f49112
JK
3561 /* in_function_epilogue_p() returns a non-zero value if we're still
3562 in the function but the stack frame has already been invalidated.
3563 Since we can't rely on the values of local variables after the
3564 stack has been destroyed, we are treating the watchpoint in that
3565 state as `not changed' without further checking. Don't mark
3566 watchpoints as changed if the current frame is in an epilogue -
3567 even if they are in some other frame, our view of the stack
3568 is likely to be wrong and frame_find_by_id could error out. */
3569 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
60e1c644 3570 return WP_IGNORE;
a0f49112 3571
101dcfbe 3572 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 3573 within_current_scope = (fr != NULL);
69fbadd5
DJ
3574
3575 /* If we've gotten confused in the unwinder, we might have
3576 returned a frame that can't describe this variable. */
edb3359d
DJ
3577 if (within_current_scope)
3578 {
3579 struct symbol *function;
3580
3581 function = get_frame_function (fr);
3582 if (function == NULL
3583 || !contained_in (b->exp_valid_block,
3584 SYMBOL_BLOCK_VALUE (function)))
3585 within_current_scope = 0;
3586 }
69fbadd5 3587
edb3359d 3588 if (within_current_scope)
c906108c
SS
3589 /* If we end up stopping, the current frame will get selected
3590 in normal_stop. So this call to select_frame won't affect
3591 the user. */
0f7d239c 3592 select_frame (fr);
c906108c 3593 }
c5aa993b 3594
c906108c
SS
3595 if (within_current_scope)
3596 {
3597 /* We use value_{,free_to_}mark because it could be a
3598 *long* time before we return to the command level and
c5aa993b
JM
3599 call free_all_values. We can't call free_all_values because
3600 we might be in the middle of evaluating a function call. */
c906108c 3601
0cf6dd15 3602 int pc = 0;
278cd55f 3603 struct value *mark = value_mark ();
fa4727a6
DJ
3604 struct value *new_val;
3605
0cf6dd15 3606 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL);
218d2fc6
TJB
3607
3608 /* We use value_equal_contents instead of value_equal because the latter
3609 coerces an array to a pointer, thus comparing just the address of the
3610 array instead of its contents. This is not what we want. */
fa4727a6 3611 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 3612 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 3613 {
fa4727a6
DJ
3614 if (new_val != NULL)
3615 {
3616 release_value (new_val);
3617 value_free_to_mark (mark);
3618 }
c906108c
SS
3619 bs->old_val = b->val;
3620 b->val = new_val;
fa4727a6 3621 b->val_valid = 1;
c906108c
SS
3622 return WP_VALUE_CHANGED;
3623 }
3624 else
3625 {
60e1c644 3626 /* Nothing changed. */
c906108c 3627 value_free_to_mark (mark);
c906108c
SS
3628 return WP_VALUE_NOT_CHANGED;
3629 }
3630 }
3631 else
3632 {
3633 /* This seems like the only logical thing to do because
c5aa993b
JM
3634 if we temporarily ignored the watchpoint, then when
3635 we reenter the block in which it is valid it contains
3636 garbage (in the case of a function, it may have two
3637 garbage values, one before and one after the prologue).
3638 So we can't even detect the first assignment to it and
3639 watch after that (since the garbage may or may not equal
3640 the first value assigned). */
4ce44c66
JM
3641 /* We print all the stop information in print_it_typical(), but
3642 in this case, by the time we call print_it_typical() this bp
3643 will be deleted already. So we have no choice but print the
3644 information here. */
9dc5e2a9 3645 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3646 ui_out_field_string
3647 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 3648 ui_out_text (uiout, "\nWatchpoint ");
4f8d1dc6 3649 ui_out_field_int (uiout, "wpnum", b->number);
8b93c638
JM
3650 ui_out_text (uiout, " deleted because the program has left the block in\n\
3651which its expression is valid.\n");
4ce44c66 3652
c906108c 3653 if (b->related_breakpoint)
60e1c644
PA
3654 {
3655 b->related_breakpoint->disposition = disp_del_at_next_stop;
3656 b->related_breakpoint->related_breakpoint = NULL;
3657 b->related_breakpoint = NULL;
3658 }
b5de0fa7 3659 b->disposition = disp_del_at_next_stop;
c906108c
SS
3660
3661 return WP_DELETED;
3662 }
3663}
3664
18a18393
VP
3665/* Return true if it looks like target has stopped due to hitting
3666 breakpoint location BL. This function does not check if we
3667 should stop, only if BL explains the stop. */
3668static int
6c95b8df
PA
3669bpstat_check_location (const struct bp_location *bl,
3670 struct address_space *aspace, CORE_ADDR bp_addr)
18a18393
VP
3671{
3672 struct breakpoint *b = bl->owner;
3673
2bdf28a0
JK
3674 /* BL is from existing struct breakpoint. */
3675 gdb_assert (b != NULL);
3676
e8595ef6
SS
3677 /* By definition, the inferior does not report stops at
3678 tracepoints. */
d77f58be 3679 if (is_tracepoint (b))
e8595ef6
SS
3680 return 0;
3681
cc60f2e3 3682 if (!is_watchpoint (b)
18a18393 3683 && b->type != bp_hardware_breakpoint
fe798b75 3684 && b->type != bp_catchpoint) /* a non-watchpoint bp */
18a18393 3685 {
6c95b8df
PA
3686 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
3687 aspace, bp_addr))
18a18393
VP
3688 return 0;
3689 if (overlay_debugging /* unmapped overlay section */
3690 && section_is_overlay (bl->section)
3691 && !section_is_mapped (bl->section))
3692 return 0;
3693 }
cc60f2e3 3694
18a18393
VP
3695 /* Continuable hardware watchpoints are treated as non-existent if the
3696 reason we stopped wasn't a hardware watchpoint (we didn't stop on
3697 some data address). Otherwise gdb won't stop on a break instruction
3698 in the code (not from a breakpoint) when a hardware watchpoint has
3699 been defined. Also skip watchpoints which we know did not trigger
3700 (did not match the data address). */
cc60f2e3
PA
3701
3702 if (is_hardware_watchpoint (b)
18a18393
VP
3703 && b->watchpoint_triggered == watch_triggered_no)
3704 return 0;
3705
3706 if (b->type == bp_hardware_breakpoint)
3707 {
3708 if (bl->address != bp_addr)
3709 return 0;
3710 if (overlay_debugging /* unmapped overlay section */
3711 && section_is_overlay (bl->section)
3712 && !section_is_mapped (bl->section))
3713 return 0;
3714 }
ce78b96d 3715
ce78b96d
JB
3716 if (b->type == bp_catchpoint)
3717 {
3718 gdb_assert (b->ops != NULL && b->ops->breakpoint_hit != NULL);
3719 if (!b->ops->breakpoint_hit (b))
3720 return 0;
3721 }
3722
18a18393
VP
3723 return 1;
3724}
3725
3726/* If BS refers to a watchpoint, determine if the watched values
3727 has actually changed, and we should stop. If not, set BS->stop
3728 to 0. */
3729static void
3730bpstat_check_watchpoint (bpstat bs)
3731{
2bdf28a0
JK
3732 const struct bp_location *bl;
3733 struct breakpoint *b;
3734
3735 /* BS is built for existing struct breakpoint. */
f431efe5 3736 bl = bs->bp_location_at;
2bdf28a0 3737 gdb_assert (bl != NULL);
f431efe5 3738 b = bs->breakpoint_at;
2bdf28a0 3739 gdb_assert (b != NULL);
18a18393 3740
cc60f2e3 3741 if (is_watchpoint (b))
18a18393 3742 {
18a18393
VP
3743 int must_check_value = 0;
3744
3745 if (b->type == bp_watchpoint)
3746 /* For a software watchpoint, we must always check the
3747 watched value. */
3748 must_check_value = 1;
3749 else if (b->watchpoint_triggered == watch_triggered_yes)
3750 /* We have a hardware watchpoint (read, write, or access)
3751 and the target earlier reported an address watched by
3752 this watchpoint. */
3753 must_check_value = 1;
3754 else if (b->watchpoint_triggered == watch_triggered_unknown
3755 && b->type == bp_hardware_watchpoint)
3756 /* We were stopped by a hardware watchpoint, but the target could
3757 not report the data address. We must check the watchpoint's
3758 value. Access and read watchpoints are out of luck; without
3759 a data address, we can't figure it out. */
3760 must_check_value = 1;
3761
3762 if (must_check_value)
3763 {
3764 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3765 b->number);
3766 struct cleanup *cleanups = make_cleanup (xfree, message);
3767 int e = catch_errors (watchpoint_check, bs, message,
3768 RETURN_MASK_ALL);
3769 do_cleanups (cleanups);
3770 switch (e)
3771 {
3772 case WP_DELETED:
3773 /* We've already printed what needs to be printed. */
3774 bs->print_it = print_it_done;
3775 /* Stop. */
3776 break;
60e1c644
PA
3777 case WP_IGNORE:
3778 bs->print_it = print_it_noop;
3779 bs->stop = 0;
3780 break;
18a18393
VP
3781 case WP_VALUE_CHANGED:
3782 if (b->type == bp_read_watchpoint)
3783 {
85d721b8
PA
3784 /* There are two cases to consider here:
3785
3786 1. we're watching the triggered memory for reads.
3787 In that case, trust the target, and always report
3788 the watchpoint hit to the user. Even though
3789 reads don't cause value changes, the value may
3790 have changed since the last time it was read, and
3791 since we're not trapping writes, we will not see
3792 those, and as such we should ignore our notion of
3793 old value.
3794
3795 2. we're watching the triggered memory for both
3796 reads and writes. There are two ways this may
3797 happen:
3798
3799 2.1. this is a target that can't break on data
3800 reads only, but can break on accesses (reads or
3801 writes), such as e.g., x86. We detect this case
3802 at the time we try to insert read watchpoints.
3803
3804 2.2. otherwise, the target supports read
3805 watchpoints, but, the user set an access or write
3806 watchpoint watching the same memory as this read
3807 watchpoint.
3808
3809 If we're watching memory writes as well as reads,
3810 ignore watchpoint hits when we find that the
3811 value hasn't changed, as reads don't cause
3812 changes. This still gives false positives when
3813 the program writes the same value to memory as
3814 what there was already in memory (we will confuse
3815 it for a read), but it's much better than
3816 nothing. */
3817
3818 int other_write_watchpoint = 0;
3819
3820 if (bl->watchpoint_type == hw_read)
3821 {
3822 struct breakpoint *other_b;
3823
3824 ALL_BREAKPOINTS (other_b)
3825 if ((other_b->type == bp_hardware_watchpoint
3826 || other_b->type == bp_access_watchpoint)
3827 && (other_b->watchpoint_triggered
3828 == watch_triggered_yes))
3829 {
3830 other_write_watchpoint = 1;
3831 break;
3832 }
3833 }
3834
3835 if (other_write_watchpoint
3836 || bl->watchpoint_type == hw_access)
3837 {
3838 /* We're watching the same memory for writes,
3839 and the value changed since the last time we
3840 updated it, so this trap must be for a write.
3841 Ignore it. */
3842 bs->print_it = print_it_noop;
3843 bs->stop = 0;
3844 }
18a18393
VP
3845 }
3846 break;
3847 case WP_VALUE_NOT_CHANGED:
3848 if (b->type == bp_hardware_watchpoint
3849 || b->type == bp_watchpoint)
3850 {
3851 /* Don't stop: write watchpoints shouldn't fire if
3852 the value hasn't changed. */
3853 bs->print_it = print_it_noop;
3854 bs->stop = 0;
3855 }
3856 /* Stop. */
3857 break;
3858 default:
3859 /* Can't happen. */
3860 case 0:
3861 /* Error from catch_errors. */
3862 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
3863 if (b->related_breakpoint)
3864 b->related_breakpoint->disposition = disp_del_at_next_stop;
3865 b->disposition = disp_del_at_next_stop;
3866 /* We've already printed what needs to be printed. */
3867 bs->print_it = print_it_done;
3868 break;
3869 }
3870 }
3871 else /* must_check_value == 0 */
3872 {
3873 /* This is a case where some watchpoint(s) triggered, but
3874 not at the address of this watchpoint, or else no
3875 watchpoint triggered after all. So don't print
3876 anything for this watchpoint. */
3877 bs->print_it = print_it_noop;
3878 bs->stop = 0;
3879 }
3880 }
3881}
3882
3883
3884/* Check conditions (condition proper, frame, thread and ignore count)
3885 of breakpoint referred to by BS. If we should not stop for this
3886 breakpoint, set BS->stop to 0. */
f431efe5 3887
18a18393
VP
3888static void
3889bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
3890{
3891 int thread_id = pid_to_thread_id (ptid);
2bdf28a0
JK
3892 const struct bp_location *bl;
3893 struct breakpoint *b;
3894
3895 /* BS is built for existing struct breakpoint. */
f431efe5 3896 bl = bs->bp_location_at;
2bdf28a0 3897 gdb_assert (bl != NULL);
f431efe5 3898 b = bs->breakpoint_at;
2bdf28a0 3899 gdb_assert (b != NULL);
18a18393
VP
3900
3901 if (frame_id_p (b->frame_id)
edb3359d 3902 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393
VP
3903 bs->stop = 0;
3904 else if (bs->stop)
3905 {
3906 int value_is_zero = 0;
60e1c644
PA
3907 struct expression *cond;
3908
60e1c644
PA
3909 if (is_watchpoint (b))
3910 cond = b->cond_exp;
3911 else
3912 cond = bl->cond;
3913
f431efe5 3914 if (cond && b->disposition != disp_del_at_next_stop)
18a18393 3915 {
60e1c644
PA
3916 int within_current_scope = 1;
3917
c5bc3a77
DJ
3918 /* We use value_mark and value_free_to_mark because it could
3919 be a long time before we return to the command level and
3920 call free_all_values. We can't call free_all_values
3921 because we might be in the middle of evaluating a
3922 function call. */
3923 struct value *mark = value_mark ();
3924
edb3359d
DJ
3925 /* Need to select the frame, with all that implies so that
3926 the conditions will have the right context. Because we
3927 use the frame, we will not see an inlined function's
3928 variables when we arrive at a breakpoint at the start
3929 of the inlined function; the current frame will be the
3930 call site. */
60e1c644
PA
3931 if (!is_watchpoint (b) || b->cond_exp_valid_block == NULL)
3932 select_frame (get_current_frame ());
3933 else
3934 {
3935 struct frame_info *frame;
3936
3937 /* For local watchpoint expressions, which particular
3938 instance of a local is being watched matters, so we
3939 keep track of the frame to evaluate the expression
3940 in. To evaluate the condition however, it doesn't
3941 really matter which instantiation of the function
3942 where the condition makes sense triggers the
3943 watchpoint. This allows an expression like "watch
3944 global if q > 10" set in `func', catch writes to
3945 global on all threads that call `func', or catch
3946 writes on all recursive calls of `func' by a single
3947 thread. We simply always evaluate the condition in
3948 the innermost frame that's executing where it makes
3949 sense to evaluate the condition. It seems
3950 intuitive. */
3951 frame = block_innermost_frame (b->cond_exp_valid_block);
3952 if (frame != NULL)
3953 select_frame (frame);
3954 else
3955 within_current_scope = 0;
3956 }
3957 if (within_current_scope)
3958 value_is_zero
3959 = catch_errors (breakpoint_cond_eval, cond,
3960 "Error in testing breakpoint condition:\n",
3961 RETURN_MASK_ALL);
3962 else
3963 {
3964 warning (_("Watchpoint condition cannot be tested "
3965 "in the current scope"));
3966 /* If we failed to set the right context for this
3967 watchpoint, unconditionally report it. */
3968 value_is_zero = 0;
3969 }
18a18393 3970 /* FIXME-someday, should give breakpoint # */
c5bc3a77 3971 value_free_to_mark (mark);
18a18393 3972 }
60e1c644
PA
3973
3974 if (cond && value_is_zero)
18a18393
VP
3975 {
3976 bs->stop = 0;
3977 }
3978 else if (b->thread != -1 && b->thread != thread_id)
3979 {
3980 bs->stop = 0;
3981 }
3982 else if (b->ignore_count > 0)
3983 {
3984 b->ignore_count--;
3985 annotate_ignore_count_change ();
3986 bs->stop = 0;
3987 /* Increase the hit count even though we don't
3988 stop. */
3989 ++(b->hit_count);
3990 }
3991 }
3992}
3993
3994
9709f61c 3995/* Get a bpstat associated with having just stopped at address
d983da9c 3996 BP_ADDR in thread PTID.
c906108c 3997
d983da9c 3998 Determine whether we stopped at a breakpoint, etc, or whether we
c906108c
SS
3999 don't understand this stop. Result is a chain of bpstat's such that:
4000
c5aa993b 4001 if we don't understand the stop, the result is a null pointer.
c906108c 4002
c5aa993b 4003 if we understand why we stopped, the result is not null.
c906108c 4004
c5aa993b
JM
4005 Each element of the chain refers to a particular breakpoint or
4006 watchpoint at which we have stopped. (We may have stopped for
4007 several reasons concurrently.)
c906108c 4008
c5aa993b
JM
4009 Each element of the chain has valid next, breakpoint_at,
4010 commands, FIXME??? fields. */
c906108c
SS
4011
4012bpstat
6c95b8df
PA
4013bpstat_stop_status (struct address_space *aspace,
4014 CORE_ADDR bp_addr, ptid_t ptid)
c906108c 4015{
0d381245 4016 struct breakpoint *b = NULL;
afe38095 4017 struct bp_location *bl;
20874c92 4018 struct bp_location *loc;
c906108c
SS
4019 /* Root of the chain of bpstat's */
4020 struct bpstats root_bs[1];
4021 /* Pointer to the last thing in the chain currently. */
4022 bpstat bs = root_bs;
20874c92 4023 int ix;
429374b8 4024 int need_remove_insert;
f431efe5 4025 int removed_any;
c906108c 4026
f431efe5
PA
4027 /* First, build the bpstat chain with locations that explain a
4028 target stop, while being careful to not set the target running,
4029 as that may invalidate locations (in particular watchpoint
4030 locations are recreated). Resuming will happen here with
4031 breakpoint conditions or watchpoint expressions that include
4032 inferior function calls. */
c5aa993b 4033
429374b8
JK
4034 ALL_BREAKPOINTS (b)
4035 {
4036 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
4037 continue;
a5606eee 4038
429374b8
JK
4039 for (bl = b->loc; bl != NULL; bl = bl->next)
4040 {
4041 /* For hardware watchpoints, we look only at the first location.
cc60f2e3
PA
4042 The watchpoint_check function will work on the entire expression,
4043 not the individual locations. For read watchpoints, the
4044 watchpoints_triggered function has checked all locations
429374b8
JK
4045 already. */
4046 if (b->type == bp_hardware_watchpoint && bl != b->loc)
4047 break;
18a18393 4048
429374b8
JK
4049 if (bl->shlib_disabled)
4050 continue;
c5aa993b 4051
429374b8
JK
4052 if (!bpstat_check_location (bl, aspace, bp_addr))
4053 continue;
c5aa993b 4054
429374b8 4055 /* Come here if it's a watchpoint, or if the break address matches */
c5aa993b 4056
429374b8 4057 bs = bpstat_alloc (bl, bs); /* Alloc a bpstat to explain stop */
c5aa993b 4058
f431efe5
PA
4059 /* Assume we stop. Should we find a watchpoint that is not
4060 actually triggered, or if the condition of the breakpoint
4061 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
4062 bs->stop = 1;
4063 bs->print = 1;
d983da9c 4064
f431efe5
PA
4065 /* If this is a scope breakpoint, mark the associated
4066 watchpoint as triggered so that we will handle the
4067 out-of-scope event. We'll get to the watchpoint next
4068 iteration. */
4069 if (b->type == bp_watchpoint_scope)
4070 b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
4071 }
4072 }
4073
4074 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
4075 {
4076 if (breakpoint_address_match (loc->pspace->aspace, loc->address,
4077 aspace, bp_addr))
4078 {
4079 bs = bpstat_alloc (loc, bs);
4080 /* For hits of moribund locations, we should just proceed. */
4081 bs->stop = 0;
4082 bs->print = 0;
4083 bs->print_it = print_it_noop;
4084 }
4085 }
4086
4087 /* Terminate the chain. */
4088 bs->next = NULL;
4089
4090 /* Now go through the locations that caused the target to stop, and
4091 check whether we're interested in reporting this stop to higher
4092 layers, or whether we should resume the target transparently. */
4093
4094 removed_any = 0;
4095
4096 for (bs = root_bs->next; bs != NULL; bs = bs->next)
4097 {
4098 if (!bs->stop)
4099 continue;
4100
4101 bpstat_check_watchpoint (bs);
4102 if (!bs->stop)
4103 continue;
4104
4105 b = bs->breakpoint_at;
18a18393 4106
429374b8 4107 if (b->type == bp_thread_event || b->type == bp_overlay_event
aa7d318d
TT
4108 || b->type == bp_longjmp_master
4109 || b->type == bp_std_terminate_master)
429374b8
JK
4110 /* We do not stop for these. */
4111 bs->stop = 0;
4112 else
4113 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 4114
429374b8
JK
4115 if (bs->stop)
4116 {
4117 ++(b->hit_count);
c906108c 4118
429374b8
JK
4119 /* We will stop here */
4120 if (b->disposition == disp_disable)
4121 {
4122 if (b->enable_state != bp_permanent)
4123 b->enable_state = bp_disabled;
f431efe5 4124 removed_any = 1;
429374b8
JK
4125 }
4126 if (b->silent)
4127 bs->print = 0;
4128 bs->commands = b->commands;
9add0f1b
TT
4129 incref_counted_command_line (bs->commands);
4130 bs->commands_left = bs->commands ? bs->commands->commands : NULL;
4131 if (bs->commands_left
4132 && (strcmp ("silent", bs->commands_left->line) == 0
4133 || (xdb_commands
4134 && strcmp ("Q",
4135 bs->commands_left->line) == 0)))
429374b8 4136 {
9add0f1b 4137 bs->commands_left = bs->commands_left->next;
429374b8
JK
4138 bs->print = 0;
4139 }
429374b8
JK
4140 }
4141
4142 /* Print nothing for this entry if we dont stop or dont print. */
4143 if (bs->stop == 0 || bs->print == 0)
4144 bs->print_it = print_it_noop;
429374b8 4145 }
876fa593 4146
d983da9c
DJ
4147 /* If we aren't stopping, the value of some hardware watchpoint may
4148 not have changed, but the intermediate memory locations we are
4149 watching may have. Don't bother if we're stopping; this will get
4150 done later. */
d832cb68 4151 need_remove_insert = 0;
1f7ccab2 4152 if (! bpstat_causes_stop (root_bs->next))
d983da9c
DJ
4153 for (bs = root_bs->next; bs != NULL; bs = bs->next)
4154 if (!bs->stop
f431efe5
PA
4155 && bs->breakpoint_at
4156 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 4157 {
f431efe5 4158 update_watchpoint (bs->breakpoint_at, 0 /* don't reparse. */);
d832cb68 4159 need_remove_insert = 1;
d983da9c
DJ
4160 }
4161
d832cb68 4162 if (need_remove_insert)
2d134ed3 4163 update_global_location_list (1);
f431efe5
PA
4164 else if (removed_any)
4165 update_global_location_list (0);
d832cb68 4166
d983da9c 4167 return root_bs->next;
c906108c 4168}
628fe4e4
JK
4169
4170static void
4171handle_jit_event (void)
4172{
4173 struct frame_info *frame;
4174 struct gdbarch *gdbarch;
4175
4176 /* Switch terminal for any messages produced by
4177 breakpoint_re_set. */
4178 target_terminal_ours_for_output ();
4179
4180 frame = get_current_frame ();
4181 gdbarch = get_frame_arch (frame);
4182
4183 jit_event_handler (gdbarch);
4184
4185 target_terminal_inferior ();
4186}
4187
4188/* Prepare WHAT final decision for infrun. */
4189
4190/* Decide what infrun needs to do with this bpstat. */
4191
c906108c 4192struct bpstat_what
fba45db2 4193bpstat_what (bpstat bs)
c906108c 4194{
c906108c 4195 struct bpstat_what retval;
628fe4e4
JK
4196 /* We need to defer calling `solib_add', as adding new symbols
4197 resets breakpoints, which in turn deletes breakpoint locations,
4198 and hence may clear unprocessed entries in the BS chain. */
4199 int shlib_event = 0;
4200 int jit_event = 0;
c906108c 4201
628fe4e4 4202 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 4203 retval.call_dummy = STOP_NONE;
628fe4e4 4204
c906108c
SS
4205 for (; bs != NULL; bs = bs->next)
4206 {
628fe4e4
JK
4207 /* Extract this BS's action. After processing each BS, we check
4208 if its action overrides all we've seem so far. */
4209 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
4210 enum bptype bptype;
4211
c906108c 4212 if (bs->breakpoint_at == NULL)
628fe4e4
JK
4213 {
4214 /* I suspect this can happen if it was a momentary
4215 breakpoint which has since been deleted. */
4216 bptype = bp_none;
4217 }
f431efe5 4218 else if (bs->breakpoint_at == NULL)
628fe4e4 4219 bptype = bp_none;
20874c92 4220 else
f431efe5 4221 bptype = bs->breakpoint_at->type;
628fe4e4
JK
4222
4223 switch (bptype)
c906108c
SS
4224 {
4225 case bp_none:
628fe4e4 4226 break;
c906108c
SS
4227 case bp_breakpoint:
4228 case bp_hardware_breakpoint:
4229 case bp_until:
4230 case bp_finish:
4231 if (bs->stop)
4232 {
4233 if (bs->print)
628fe4e4 4234 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4235 else
628fe4e4 4236 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4237 }
4238 else
628fe4e4 4239 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
4240 break;
4241 case bp_watchpoint:
4242 case bp_hardware_watchpoint:
4243 case bp_read_watchpoint:
4244 case bp_access_watchpoint:
4245 if (bs->stop)
4246 {
4247 if (bs->print)
628fe4e4 4248 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 4249 else
628fe4e4 4250 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
4251 }
4252 else
628fe4e4
JK
4253 {
4254 /* There was a watchpoint, but we're not stopping.
4255 This requires no further action. */
4256 }
c906108c
SS
4257 break;
4258 case bp_longjmp:
628fe4e4 4259 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
c906108c
SS
4260 break;
4261 case bp_longjmp_resume:
628fe4e4 4262 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
c906108c
SS
4263 break;
4264 case bp_step_resume:
4265 if (bs->stop)
628fe4e4
JK
4266 this_action = BPSTAT_WHAT_STEP_RESUME;
4267 else
c906108c 4268 {
628fe4e4
JK
4269 /* It is for the wrong frame. */
4270 this_action = BPSTAT_WHAT_SINGLE;
c906108c 4271 }
c906108c 4272 break;
c906108c 4273 case bp_watchpoint_scope:
c4093a6a 4274 case bp_thread_event:
1900040c 4275 case bp_overlay_event:
0fd8e87f 4276 case bp_longjmp_master:
aa7d318d 4277 case bp_std_terminate_master:
628fe4e4 4278 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 4279 break;
ce78b96d 4280 case bp_catchpoint:
c5aa993b
JM
4281 if (bs->stop)
4282 {
4283 if (bs->print)
628fe4e4 4284 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 4285 else
628fe4e4 4286 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
4287 }
4288 else
628fe4e4
JK
4289 {
4290 /* There was a catchpoint, but we're not stopping.
4291 This requires no further action. */
4292 }
4293 break;
4294 case bp_shlib_event:
4295 shlib_event = 1;
4296
4297 /* If requested, stop when the dynamic linker notifies GDB
4298 of events. This allows the user to get control and place
4299 breakpoints in initializer routines for dynamically
4300 loaded objects (among other things). */
4301 if (stop_on_solib_events)
4302 this_action = BPSTAT_WHAT_STOP_NOISY;
4303 else
4304 this_action = BPSTAT_WHAT_SINGLE;
4305 break;
4306 case bp_jit_event:
4307 jit_event = 1;
4308 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 4309 break;
c906108c 4310 case bp_call_dummy:
53a5351d
JM
4311 /* Make sure the action is stop (silent or noisy),
4312 so infrun.c pops the dummy frame. */
aa7d318d 4313 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 4314 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
4315 break;
4316 case bp_std_terminate:
4317 /* Make sure the action is stop (silent or noisy),
4318 so infrun.c pops the dummy frame. */
aa7d318d 4319 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 4320 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 4321 break;
1042e4c0 4322 case bp_tracepoint:
7a697b8d 4323 case bp_fast_tracepoint:
0fb4aa4b 4324 case bp_static_tracepoint:
1042e4c0
SS
4325 /* Tracepoint hits should not be reported back to GDB, and
4326 if one got through somehow, it should have been filtered
4327 out already. */
4328 internal_error (__FILE__, __LINE__,
7a697b8d 4329 _("bpstat_what: tracepoint encountered"));
628fe4e4
JK
4330 default:
4331 internal_error (__FILE__, __LINE__,
4332 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 4333 }
628fe4e4
JK
4334
4335 retval.main_action = max (retval.main_action, this_action);
c906108c 4336 }
628fe4e4
JK
4337
4338 if (shlib_event)
4339 {
4340 if (debug_infrun)
4341 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_shlib_event\n");
4342
4343 /* Check for any newly added shared libraries if we're supposed
4344 to be adding them automatically. */
4345
4346 /* Switch terminal for any messages produced by
4347 breakpoint_re_set. */
4348 target_terminal_ours_for_output ();
4349
4350#ifdef SOLIB_ADD
4351 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
4352#else
4353 solib_add (NULL, 0, &current_target, auto_solib_add);
4354#endif
4355
4356 target_terminal_inferior ();
4357 }
4358
4359 if (jit_event)
4360 {
4361 if (debug_infrun)
4362 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n");
4363
4364 handle_jit_event ();
4365 }
4366
c906108c
SS
4367 return retval;
4368}
4369
4370/* Nonzero if we should step constantly (e.g. watchpoints on machines
4371 without hardware support). This isn't related to a specific bpstat,
4372 just to things like whether watchpoints are set. */
4373
c5aa993b 4374int
fba45db2 4375bpstat_should_step (void)
c906108c
SS
4376{
4377 struct breakpoint *b;
cc59ec59 4378
c906108c 4379 ALL_BREAKPOINTS (b)
717a8278 4380 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 4381 return 1;
c906108c
SS
4382 return 0;
4383}
4384
67822962
PA
4385int
4386bpstat_causes_stop (bpstat bs)
4387{
4388 for (; bs != NULL; bs = bs->next)
4389 if (bs->stop)
4390 return 1;
4391
4392 return 0;
4393}
4394
c906108c 4395\f
c5aa993b 4396
859825b8
JK
4397/* Print the LOC location out of the list of B->LOC locations. */
4398
0d381245
VP
4399static void print_breakpoint_location (struct breakpoint *b,
4400 struct bp_location *loc,
4401 char *wrap_indent,
4402 struct ui_stream *stb)
4403{
6c95b8df
PA
4404 struct cleanup *old_chain = save_current_program_space ();
4405
859825b8
JK
4406 if (loc != NULL && loc->shlib_disabled)
4407 loc = NULL;
4408
6c95b8df
PA
4409 if (loc != NULL)
4410 set_current_program_space (loc->pspace);
4411
859825b8 4412 if (b->source_file && loc)
0d381245
VP
4413 {
4414 struct symbol *sym
4415 = find_pc_sect_function (loc->address, loc->section);
4416 if (sym)
4417 {
4418 ui_out_text (uiout, "in ");
4419 ui_out_field_string (uiout, "func",
4420 SYMBOL_PRINT_NAME (sym));
4421 ui_out_wrap_hint (uiout, wrap_indent);
4422 ui_out_text (uiout, " at ");
4423 }
4424 ui_out_field_string (uiout, "file", b->source_file);
4425 ui_out_text (uiout, ":");
4426
4427 if (ui_out_is_mi_like_p (uiout))
4428 {
4429 struct symtab_and_line sal = find_pc_line (loc->address, 0);
4430 char *fullname = symtab_to_fullname (sal.symtab);
4431
4432 if (fullname)
4433 ui_out_field_string (uiout, "fullname", fullname);
4434 }
4435
4436 ui_out_field_int (uiout, "line", b->line_number);
4437 }
859825b8 4438 else if (loc)
0d381245 4439 {
22e722e1
DJ
4440 print_address_symbolic (loc->gdbarch, loc->address, stb->stream,
4441 demangle, "");
0d381245
VP
4442 ui_out_field_stream (uiout, "at", stb);
4443 }
859825b8
JK
4444 else
4445 ui_out_field_string (uiout, "pending", b->addr_string);
6c95b8df
PA
4446
4447 do_cleanups (old_chain);
0d381245
VP
4448}
4449
269b11a2
PA
4450static const char *
4451bptype_string (enum bptype type)
c906108c 4452{
c4093a6a
JM
4453 struct ep_type_description
4454 {
4455 enum bptype type;
4456 char *description;
4457 };
4458 static struct ep_type_description bptypes[] =
c906108c 4459 {
c5aa993b
JM
4460 {bp_none, "?deleted?"},
4461 {bp_breakpoint, "breakpoint"},
c906108c 4462 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
4463 {bp_until, "until"},
4464 {bp_finish, "finish"},
4465 {bp_watchpoint, "watchpoint"},
c906108c 4466 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
4467 {bp_read_watchpoint, "read watchpoint"},
4468 {bp_access_watchpoint, "acc watchpoint"},
4469 {bp_longjmp, "longjmp"},
4470 {bp_longjmp_resume, "longjmp resume"},
4471 {bp_step_resume, "step resume"},
c5aa993b
JM
4472 {bp_watchpoint_scope, "watchpoint scope"},
4473 {bp_call_dummy, "call dummy"},
aa7d318d 4474 {bp_std_terminate, "std::terminate"},
c5aa993b 4475 {bp_shlib_event, "shlib events"},
c4093a6a 4476 {bp_thread_event, "thread events"},
1900040c 4477 {bp_overlay_event, "overlay events"},
0fd8e87f 4478 {bp_longjmp_master, "longjmp master"},
aa7d318d 4479 {bp_std_terminate_master, "std::terminate master"},
ce78b96d 4480 {bp_catchpoint, "catchpoint"},
1042e4c0 4481 {bp_tracepoint, "tracepoint"},
7a697b8d 4482 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 4483 {bp_static_tracepoint, "static tracepoint"},
4efc6507 4484 {bp_jit_event, "jit events"},
c5aa993b 4485 };
269b11a2
PA
4486
4487 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
4488 || ((int) type != bptypes[(int) type].type))
4489 internal_error (__FILE__, __LINE__,
4490 _("bptypes table does not describe type #%d."),
4491 (int) type);
4492
4493 return bptypes[(int) type].description;
4494}
4495
4496/* Print B to gdb_stdout. */
4497
4498static void
4499print_one_breakpoint_location (struct breakpoint *b,
4500 struct bp_location *loc,
4501 int loc_number,
4502 struct bp_location **last_loc,
4503 int print_address_bits,
4504 int allflag)
4505{
4506 struct command_line *l;
c2c6d25f 4507 static char bpenables[] = "nynny";
c906108c 4508 char wrap_indent[80];
8b93c638
JM
4509 struct ui_stream *stb = ui_out_stream_new (uiout);
4510 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3b31d625 4511 struct cleanup *bkpt_chain;
c906108c 4512
0d381245
VP
4513 int header_of_multiple = 0;
4514 int part_of_multiple = (loc != NULL);
79a45b7d
TT
4515 struct value_print_options opts;
4516
4517 get_user_print_options (&opts);
0d381245
VP
4518
4519 gdb_assert (!loc || loc_number != 0);
4520 /* See comment in print_one_breakpoint concerning
4521 treatment of breakpoints with single disabled
4522 location. */
4523 if (loc == NULL
4524 && (b->loc != NULL
4525 && (b->loc->next != NULL || !b->loc->enabled)))
4526 header_of_multiple = 1;
4527 if (loc == NULL)
4528 loc = b->loc;
4529
c4093a6a 4530 annotate_record ();
3b31d625 4531 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
c4093a6a
JM
4532
4533 /* 1 */
4534 annotate_field (0);
0d381245
VP
4535 if (part_of_multiple)
4536 {
4537 char *formatted;
0c6773c1 4538 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
4539 ui_out_field_string (uiout, "number", formatted);
4540 xfree (formatted);
4541 }
4542 else
4543 {
4544 ui_out_field_int (uiout, "number", b->number);
4545 }
c4093a6a
JM
4546
4547 /* 2 */
4548 annotate_field (1);
0d381245
VP
4549 if (part_of_multiple)
4550 ui_out_field_skip (uiout, "type");
269b11a2
PA
4551 else
4552 ui_out_field_string (uiout, "type", bptype_string (b->type));
c4093a6a
JM
4553
4554 /* 3 */
4555 annotate_field (2);
0d381245
VP
4556 if (part_of_multiple)
4557 ui_out_field_skip (uiout, "disp");
4558 else
2cec12e5 4559 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 4560
c4093a6a
JM
4561
4562 /* 4 */
4563 annotate_field (3);
0d381245 4564 if (part_of_multiple)
54e52265 4565 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 4566 else
54e52265
VP
4567 ui_out_field_fmt (uiout, "enabled", "%c",
4568 bpenables[(int) b->enable_state]);
4569 ui_out_spaces (uiout, 2);
0d381245 4570
c4093a6a
JM
4571
4572 /* 5 and 6 */
4573 strcpy (wrap_indent, " ");
79a45b7d 4574 if (opts.addressprint)
75ac9d7b 4575 {
a6d9a66e 4576 if (print_address_bits <= 32)
75ac9d7b
MS
4577 strcat (wrap_indent, " ");
4578 else
4579 strcat (wrap_indent, " ");
4580 }
c906108c 4581
3086aeae 4582 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245
VP
4583 {
4584 /* Although the print_one can possibly print
4585 all locations, calling it here is not likely
4586 to get any nice result. So, make sure there's
4587 just one location. */
4588 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 4589 b->ops->print_one (b, last_loc);
0d381245 4590 }
3086aeae
DJ
4591 else
4592 switch (b->type)
4593 {
4594 case bp_none:
4595 internal_error (__FILE__, __LINE__,
e2e0b3e5 4596 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 4597 break;
c906108c 4598
3086aeae
DJ
4599 case bp_watchpoint:
4600 case bp_hardware_watchpoint:
4601 case bp_read_watchpoint:
4602 case bp_access_watchpoint:
4603 /* Field 4, the address, is omitted (which makes the columns
4604 not line up too nicely with the headers, but the effect
4605 is relatively readable). */
79a45b7d 4606 if (opts.addressprint)
3086aeae
DJ
4607 ui_out_field_skip (uiout, "addr");
4608 annotate_field (5);
fa8a61dc 4609 ui_out_field_string (uiout, "what", b->exp_string);
3086aeae
DJ
4610 break;
4611
3086aeae
DJ
4612 case bp_breakpoint:
4613 case bp_hardware_breakpoint:
4614 case bp_until:
4615 case bp_finish:
4616 case bp_longjmp:
4617 case bp_longjmp_resume:
4618 case bp_step_resume:
3086aeae
DJ
4619 case bp_watchpoint_scope:
4620 case bp_call_dummy:
aa7d318d 4621 case bp_std_terminate:
3086aeae
DJ
4622 case bp_shlib_event:
4623 case bp_thread_event:
4624 case bp_overlay_event:
0fd8e87f 4625 case bp_longjmp_master:
aa7d318d 4626 case bp_std_terminate_master:
1042e4c0 4627 case bp_tracepoint:
7a697b8d 4628 case bp_fast_tracepoint:
0fb4aa4b 4629 case bp_static_tracepoint:
4efc6507 4630 case bp_jit_event:
79a45b7d 4631 if (opts.addressprint)
3086aeae
DJ
4632 {
4633 annotate_field (4);
54e52265 4634 if (header_of_multiple)
0d381245 4635 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 4636 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 4637 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 4638 else
5af949e3
UW
4639 ui_out_field_core_addr (uiout, "addr",
4640 loc->gdbarch, loc->address);
3086aeae
DJ
4641 }
4642 annotate_field (5);
0d381245
VP
4643 if (!header_of_multiple)
4644 print_breakpoint_location (b, loc, wrap_indent, stb);
4645 if (b->loc)
a6d9a66e 4646 *last_loc = b->loc;
3086aeae
DJ
4647 break;
4648 }
c906108c 4649
6c95b8df
PA
4650
4651 /* For backward compatibility, don't display inferiors unless there
4652 are several. */
4653 if (loc != NULL
4654 && !header_of_multiple
4655 && (allflag
4656 || (!gdbarch_has_global_breakpoints (target_gdbarch)
4657 && (number_of_program_spaces () > 1
4658 || number_of_inferiors () > 1)
2bdf28a0
JK
4659 /* LOC is for existing B, it cannot be in moribund_locations and
4660 thus having NULL OWNER. */
6c95b8df
PA
4661 && loc->owner->type != bp_catchpoint)))
4662 {
4663 struct inferior *inf;
4664 int first = 1;
4665
4666 for (inf = inferior_list; inf != NULL; inf = inf->next)
4667 {
4668 if (inf->pspace == loc->pspace)
4669 {
4670 if (first)
4671 {
4672 first = 0;
4673 ui_out_text (uiout, " inf ");
4674 }
4675 else
4676 ui_out_text (uiout, ", ");
4677 ui_out_text (uiout, plongest (inf->num));
4678 }
4679 }
4680 }
4681
4a306c9a 4682 if (!part_of_multiple)
c4093a6a 4683 {
4a306c9a
JB
4684 if (b->thread != -1)
4685 {
4686 /* FIXME: This seems to be redundant and lost here; see the
4687 "stop only in" line a little further down. */
4688 ui_out_text (uiout, " thread ");
4689 ui_out_field_int (uiout, "thread", b->thread);
4690 }
4691 else if (b->task != 0)
4692 {
4693 ui_out_text (uiout, " task ");
4694 ui_out_field_int (uiout, "task", b->task);
4695 }
c4093a6a
JM
4696 }
4697
8b93c638 4698 ui_out_text (uiout, "\n");
c4093a6a 4699
0fb4aa4b
PA
4700 if (!part_of_multiple && b->static_trace_marker_id)
4701 {
4702 gdb_assert (b->type == bp_static_tracepoint);
4703
4704 ui_out_text (uiout, "\tmarker id is ");
4705 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
4706 b->static_trace_marker_id);
4707 ui_out_text (uiout, "\n");
4708 }
4709
0d381245 4710 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
4711 {
4712 annotate_field (6);
8b93c638 4713 ui_out_text (uiout, "\tstop only in stack frame at ");
818dd999
AC
4714 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
4715 the frame ID. */
5af949e3
UW
4716 ui_out_field_core_addr (uiout, "frame",
4717 b->gdbarch, b->frame_id.stack_addr);
8b93c638 4718 ui_out_text (uiout, "\n");
c4093a6a
JM
4719 }
4720
0d381245 4721 if (!part_of_multiple && b->cond_string && !ada_exception_catchpoint_p (b))
c4093a6a 4722 {
f7f9143b
JB
4723 /* We do not print the condition for Ada exception catchpoints
4724 because the condition is an internal implementation detail
4725 that we do not want to expose to the user. */
c4093a6a 4726 annotate_field (7);
d77f58be 4727 if (is_tracepoint (b))
1042e4c0
SS
4728 ui_out_text (uiout, "\ttrace only if ");
4729 else
4730 ui_out_text (uiout, "\tstop only if ");
0101ce28
JJ
4731 ui_out_field_string (uiout, "cond", b->cond_string);
4732 ui_out_text (uiout, "\n");
4733 }
4734
0d381245 4735 if (!part_of_multiple && b->thread != -1)
c4093a6a
JM
4736 {
4737 /* FIXME should make an annotation for this */
8b93c638
JM
4738 ui_out_text (uiout, "\tstop only in thread ");
4739 ui_out_field_int (uiout, "thread", b->thread);
4740 ui_out_text (uiout, "\n");
c4093a6a
JM
4741 }
4742
63c715c6 4743 if (!part_of_multiple && b->hit_count)
c4093a6a
JM
4744 {
4745 /* FIXME should make an annotation for this */
8b93c638
JM
4746 if (ep_is_catchpoint (b))
4747 ui_out_text (uiout, "\tcatchpoint");
4748 else
4749 ui_out_text (uiout, "\tbreakpoint");
4750 ui_out_text (uiout, " already hit ");
4751 ui_out_field_int (uiout, "times", b->hit_count);
4752 if (b->hit_count == 1)
4753 ui_out_text (uiout, " time\n");
4754 else
4755 ui_out_text (uiout, " times\n");
c4093a6a
JM
4756 }
4757
fb40c209
AC
4758 /* Output the count also if it is zero, but only if this is
4759 mi. FIXME: Should have a better test for this. */
9dc5e2a9 4760 if (ui_out_is_mi_like_p (uiout))
63c715c6 4761 if (!part_of_multiple && b->hit_count == 0)
fb40c209 4762 ui_out_field_int (uiout, "times", b->hit_count);
8b93c638 4763
0d381245 4764 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
4765 {
4766 annotate_field (8);
8b93c638
JM
4767 ui_out_text (uiout, "\tignore next ");
4768 ui_out_field_int (uiout, "ignore", b->ignore_count);
4769 ui_out_text (uiout, " hits\n");
c4093a6a 4770 }
059fb39f 4771
9add0f1b 4772 l = b->commands ? b->commands->commands : NULL;
059fb39f 4773 if (!part_of_multiple && l)
c4093a6a 4774 {
3b31d625
EZ
4775 struct cleanup *script_chain;
4776
c4093a6a 4777 annotate_field (9);
3b31d625 4778 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 4779 print_command_lines (uiout, l, 4);
3b31d625 4780 do_cleanups (script_chain);
c4093a6a 4781 }
d24317b4 4782
1042e4c0
SS
4783 if (!part_of_multiple && b->pass_count)
4784 {
4785 annotate_field (10);
4786 ui_out_text (uiout, "\tpass count ");
4787 ui_out_field_int (uiout, "pass", b->pass_count);
4788 ui_out_text (uiout, " \n");
4789 }
4790
d24317b4
VP
4791 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
4792 {
4793 if (b->addr_string)
4794 ui_out_field_string (uiout, "original-location", b->addr_string);
4795 else if (b->exp_string)
4796 ui_out_field_string (uiout, "original-location", b->exp_string);
4797 }
4798
3b31d625 4799 do_cleanups (bkpt_chain);
8b93c638 4800 do_cleanups (old_chain);
c4093a6a 4801}
c5aa993b 4802
0d381245
VP
4803static void
4804print_one_breakpoint (struct breakpoint *b,
6c95b8df
PA
4805 struct bp_location **last_loc, int print_address_bits,
4806 int allflag)
0d381245 4807{
6c95b8df
PA
4808 print_one_breakpoint_location (b, NULL, 0, last_loc,
4809 print_address_bits, allflag);
0d381245
VP
4810
4811 /* If this breakpoint has custom print function,
4812 it's already printed. Otherwise, print individual
4813 locations, if any. */
4814 if (b->ops == NULL || b->ops->print_one == NULL)
4815 {
4816 /* If breakpoint has a single location that is
4817 disabled, we print it as if it had
4818 several locations, since otherwise it's hard to
4819 represent "breakpoint enabled, location disabled"
a5606eee
VP
4820 situation.
4821 Note that while hardware watchpoints have
4822 several locations internally, that's no a property
4823 exposed to user. */
0d381245 4824 if (b->loc
a5606eee 4825 && !is_hardware_watchpoint (b)
0d381245 4826 && (b->loc->next || !b->loc->enabled)
a5606eee 4827 && !ui_out_is_mi_like_p (uiout))
0d381245
VP
4828 {
4829 struct bp_location *loc;
4830 int n = 1;
4831 for (loc = b->loc; loc; loc = loc->next, ++n)
a6d9a66e 4832 print_one_breakpoint_location (b, loc, n, last_loc,
6c95b8df 4833 print_address_bits, allflag);
0d381245
VP
4834 }
4835 }
4836}
4837
a6d9a66e
UW
4838static int
4839breakpoint_address_bits (struct breakpoint *b)
4840{
4841 int print_address_bits = 0;
4842 struct bp_location *loc;
4843
4844 for (loc = b->loc; loc; loc = loc->next)
4845 {
c7437ca6
PA
4846 int addr_bit;
4847
4848 /* Software watchpoints that aren't watching memory don't have
4849 an address to print. */
4850 if (b->type == bp_watchpoint && loc->watchpoint_type == -1)
4851 continue;
4852
4853 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
4854 if (addr_bit > print_address_bits)
4855 print_address_bits = addr_bit;
4856 }
4857
4858 return print_address_bits;
4859}
0d381245 4860
c4093a6a
JM
4861struct captured_breakpoint_query_args
4862 {
4863 int bnum;
4864 };
c5aa993b 4865
c4093a6a 4866static int
2b65245e 4867do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
4868{
4869 struct captured_breakpoint_query_args *args = data;
52f0bd74 4870 struct breakpoint *b;
a6d9a66e 4871 struct bp_location *dummy_loc = NULL;
cc59ec59 4872
c4093a6a
JM
4873 ALL_BREAKPOINTS (b)
4874 {
4875 if (args->bnum == b->number)
c5aa993b 4876 {
a6d9a66e 4877 int print_address_bits = breakpoint_address_bits (b);
cc59ec59 4878
6c95b8df 4879 print_one_breakpoint (b, &dummy_loc, print_address_bits, 0);
c4093a6a 4880 return GDB_RC_OK;
c5aa993b 4881 }
c4093a6a
JM
4882 }
4883 return GDB_RC_NONE;
4884}
c5aa993b 4885
c4093a6a 4886enum gdb_rc
ce43223b 4887gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
c4093a6a
JM
4888{
4889 struct captured_breakpoint_query_args args;
cc59ec59 4890
c4093a6a
JM
4891 args.bnum = bnum;
4892 /* For the moment we don't trust print_one_breakpoint() to not throw
4893 an error. */
b0b13bb4
DJ
4894 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
4895 error_message, RETURN_MASK_ALL) < 0)
4896 return GDB_RC_FAIL;
4897 else
4898 return GDB_RC_OK;
c4093a6a 4899}
c5aa993b 4900
7f3b0473
AC
4901/* Return non-zero if B is user settable (breakpoints, watchpoints,
4902 catchpoints, et.al.). */
4903
4904static int
4905user_settable_breakpoint (const struct breakpoint *b)
4906{
4907 return (b->type == bp_breakpoint
ce78b96d 4908 || b->type == bp_catchpoint
7f3b0473 4909 || b->type == bp_hardware_breakpoint
d77f58be 4910 || is_tracepoint (b)
cc60f2e3 4911 || is_watchpoint (b));
7f3b0473
AC
4912}
4913
4914/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
4915 number BNUM. If BNUM is -1 print all user-settable breakpoints.
4916 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
4917 FILTER is non-NULL, call it on each breakpoint and only include the
4918 ones for which it returns non-zero. Return the total number of
4919 breakpoints listed. */
c906108c 4920
d77f58be
SS
4921static int
4922breakpoint_1 (int bnum, int allflag, int (*filter) (const struct breakpoint *))
c4093a6a 4923{
52f0bd74 4924 struct breakpoint *b;
a6d9a66e 4925 struct bp_location *last_loc = NULL;
7f3b0473 4926 int nr_printable_breakpoints;
3b31d625 4927 struct cleanup *bkpttbl_chain;
79a45b7d 4928 struct value_print_options opts;
a6d9a66e 4929 int print_address_bits = 0;
269b11a2
PA
4930 int print_type_col_width = 14;
4931
79a45b7d
TT
4932 get_user_print_options (&opts);
4933
a6d9a66e
UW
4934 /* Compute the number of rows in the table, as well as the
4935 size required for address fields. */
7f3b0473
AC
4936 nr_printable_breakpoints = 0;
4937 ALL_BREAKPOINTS (b)
4938 if (bnum == -1
4939 || bnum == b->number)
4940 {
d77f58be
SS
4941 /* If we have a filter, only list the breakpoints it accepts. */
4942 if (filter && !filter (b))
4943 continue;
4944
7f3b0473 4945 if (allflag || user_settable_breakpoint (b))
a6d9a66e 4946 {
269b11a2
PA
4947 int addr_bit, type_len;
4948
4949 addr_bit = breakpoint_address_bits (b);
a6d9a66e
UW
4950 if (addr_bit > print_address_bits)
4951 print_address_bits = addr_bit;
4952
269b11a2
PA
4953 type_len = strlen (bptype_string (b->type));
4954 if (type_len > print_type_col_width)
4955 print_type_col_width = type_len;
4956
a6d9a66e
UW
4957 nr_printable_breakpoints++;
4958 }
7f3b0473
AC
4959 }
4960
79a45b7d 4961 if (opts.addressprint)
3b31d625
EZ
4962 bkpttbl_chain
4963 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
4964 "BreakpointTable");
8b93c638 4965 else
3b31d625
EZ
4966 bkpttbl_chain
4967 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
4968 "BreakpointTable");
8b93c638 4969
7f3b0473 4970 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
4971 annotate_breakpoints_headers ();
4972 if (nr_printable_breakpoints > 0)
4973 annotate_field (0);
0d381245 4974 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
4975 if (nr_printable_breakpoints > 0)
4976 annotate_field (1);
269b11a2
PA
4977 ui_out_table_header (uiout, print_type_col_width, ui_left,
4978 "type", "Type"); /* 2 */
d7faa9e7
AC
4979 if (nr_printable_breakpoints > 0)
4980 annotate_field (2);
4981 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
4982 if (nr_printable_breakpoints > 0)
4983 annotate_field (3);
54e52265 4984 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 4985 if (opts.addressprint)
7f3b0473 4986 {
d7faa9e7
AC
4987 if (nr_printable_breakpoints > 0)
4988 annotate_field (4);
a6d9a66e 4989 if (print_address_bits <= 32)
b25959ec 4990 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
7f3b0473 4991 else
b25959ec 4992 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
7f3b0473 4993 }
d7faa9e7
AC
4994 if (nr_printable_breakpoints > 0)
4995 annotate_field (5);
4996 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
4997 ui_out_table_body (uiout);
4998 if (nr_printable_breakpoints > 0)
4999 annotate_breakpoints_table ();
7f3b0473 5000
c4093a6a 5001 ALL_BREAKPOINTS (b)
bad56014
TT
5002 {
5003 QUIT;
c4093a6a
JM
5004 if (bnum == -1
5005 || bnum == b->number)
5006 {
d77f58be
SS
5007 /* If we have a filter, only list the breakpoints it accepts. */
5008 if (filter && !filter (b))
5009 continue;
5010
c4093a6a
JM
5011 /* We only print out user settable breakpoints unless the
5012 allflag is set. */
7f3b0473 5013 if (allflag || user_settable_breakpoint (b))
6c95b8df 5014 print_one_breakpoint (b, &last_loc, print_address_bits, allflag);
c4093a6a 5015 }
bad56014 5016 }
c4093a6a 5017
3b31d625 5018 do_cleanups (bkpttbl_chain);
698384cd 5019
7f3b0473 5020 if (nr_printable_breakpoints == 0)
c906108c 5021 {
d77f58be
SS
5022 /* If there's a filter, let the caller decide how to report empty list. */
5023 if (!filter)
5024 {
5025 if (bnum == -1)
5026 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
5027 else
5028 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
5029 bnum);
5030 }
c906108c
SS
5031 }
5032 else
c4093a6a 5033 {
a6d9a66e
UW
5034 if (last_loc && !server_command)
5035 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 5036 }
c906108c 5037
c4093a6a
JM
5038 /* FIXME? Should this be moved up so that it is only called when
5039 there have been breakpoints? */
c906108c 5040 annotate_breakpoints_table_end ();
d77f58be
SS
5041
5042 return nr_printable_breakpoints;
c906108c
SS
5043}
5044
ad443146
SS
5045/* Display the value of default-collect in a way that is generally
5046 compatible with the breakpoint list. */
5047
5048static void
5049default_collect_info (void)
5050{
5051 /* If it has no value (which is frequently the case), say nothing; a
5052 message like "No default-collect." gets in user's face when it's
5053 not wanted. */
5054 if (!*default_collect)
5055 return;
5056
5057 /* The following phrase lines up nicely with per-tracepoint collect
5058 actions. */
5059 ui_out_text (uiout, "default collect ");
5060 ui_out_field_string (uiout, "default-collect", default_collect);
5061 ui_out_text (uiout, " \n");
5062}
5063
c906108c 5064static void
fba45db2 5065breakpoints_info (char *bnum_exp, int from_tty)
c906108c
SS
5066{
5067 int bnum = -1;
5068
5069 if (bnum_exp)
bb518678 5070 bnum = parse_and_eval_long (bnum_exp);
c906108c 5071
d77f58be 5072 breakpoint_1 (bnum, 0, NULL);
ad443146
SS
5073
5074 default_collect_info ();
d77f58be
SS
5075}
5076
5077static void
5078watchpoints_info (char *wpnum_exp, int from_tty)
5079{
5080 int wpnum = -1, num_printed;
5081
5082 if (wpnum_exp)
5083 wpnum = parse_and_eval_long (wpnum_exp);
5084
5085 num_printed = breakpoint_1 (wpnum, 0, is_watchpoint);
5086
5087 if (num_printed == 0)
5088 {
5089 if (wpnum == -1)
5090 ui_out_message (uiout, 0, "No watchpoints.\n");
5091 else
5092 ui_out_message (uiout, 0, "No watchpoint number %d.\n", wpnum);
5093 }
c906108c
SS
5094}
5095
7a292a7a 5096static void
fba45db2 5097maintenance_info_breakpoints (char *bnum_exp, int from_tty)
c906108c
SS
5098{
5099 int bnum = -1;
5100
5101 if (bnum_exp)
bb518678 5102 bnum = parse_and_eval_long (bnum_exp);
c906108c 5103
d77f58be 5104 breakpoint_1 (bnum, 1, NULL);
ad443146
SS
5105
5106 default_collect_info ();
c906108c
SS
5107}
5108
0d381245 5109static int
714835d5 5110breakpoint_has_pc (struct breakpoint *b,
6c95b8df 5111 struct program_space *pspace,
714835d5 5112 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
5113{
5114 struct bp_location *bl = b->loc;
cc59ec59 5115
0d381245
VP
5116 for (; bl; bl = bl->next)
5117 {
6c95b8df
PA
5118 if (bl->pspace == pspace
5119 && bl->address == pc
0d381245
VP
5120 && (!overlay_debugging || bl->section == section))
5121 return 1;
5122 }
5123 return 0;
5124}
5125
6c95b8df
PA
5126/* Print a message describing any breakpoints set at PC. This
5127 concerns with logical breakpoints, so we match program spaces, not
5128 address spaces. */
c906108c
SS
5129
5130static void
6c95b8df
PA
5131describe_other_breakpoints (struct gdbarch *gdbarch,
5132 struct program_space *pspace, CORE_ADDR pc,
5af949e3 5133 struct obj_section *section, int thread)
c906108c 5134{
52f0bd74
AC
5135 int others = 0;
5136 struct breakpoint *b;
c906108c
SS
5137
5138 ALL_BREAKPOINTS (b)
6c95b8df 5139 others += breakpoint_has_pc (b, pspace, pc, section);
c906108c
SS
5140 if (others > 0)
5141 {
a3f17187
AC
5142 if (others == 1)
5143 printf_filtered (_("Note: breakpoint "));
5144 else /* if (others == ???) */
5145 printf_filtered (_("Note: breakpoints "));
c906108c 5146 ALL_BREAKPOINTS (b)
6c95b8df 5147 if (breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
5148 {
5149 others--;
5150 printf_filtered ("%d", b->number);
5151 if (b->thread == -1 && thread != -1)
5152 printf_filtered (" (all threads)");
5153 else if (b->thread != -1)
5154 printf_filtered (" (thread %d)", b->thread);
5155 printf_filtered ("%s%s ",
059fb39f 5156 ((b->enable_state == bp_disabled
8bea4e01
UW
5157 || b->enable_state == bp_call_disabled
5158 || b->enable_state == bp_startup_disabled)
0d381245
VP
5159 ? " (disabled)"
5160 : b->enable_state == bp_permanent
5161 ? " (permanent)"
5162 : ""),
5163 (others > 1) ? ","
5164 : ((others == 1) ? " and" : ""));
5165 }
a3f17187 5166 printf_filtered (_("also set at pc "));
5af949e3 5167 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
5168 printf_filtered (".\n");
5169 }
5170}
5171\f
5172/* Set the default place to put a breakpoint
5173 for the `break' command with no arguments. */
5174
5175void
6c95b8df
PA
5176set_default_breakpoint (int valid, struct program_space *pspace,
5177 CORE_ADDR addr, struct symtab *symtab,
fba45db2 5178 int line)
c906108c
SS
5179{
5180 default_breakpoint_valid = valid;
6c95b8df 5181 default_breakpoint_pspace = pspace;
c906108c
SS
5182 default_breakpoint_address = addr;
5183 default_breakpoint_symtab = symtab;
5184 default_breakpoint_line = line;
5185}
5186
e4f237da
KB
5187/* Return true iff it is meaningful to use the address member of
5188 BPT. For some breakpoint types, the address member is irrelevant
5189 and it makes no sense to attempt to compare it to other addresses
5190 (or use it for any other purpose either).
5191
5192 More specifically, each of the following breakpoint types will always
876fa593
JK
5193 have a zero valued address and we don't want to mark breakpoints of any of
5194 these types to be a duplicate of an actual breakpoint at address zero:
e4f237da
KB
5195
5196 bp_watchpoint
2d134ed3
PA
5197 bp_catchpoint
5198
5199*/
e4f237da
KB
5200
5201static int
5202breakpoint_address_is_meaningful (struct breakpoint *bpt)
5203{
5204 enum bptype type = bpt->type;
5205
2d134ed3
PA
5206 return (type != bp_watchpoint && type != bp_catchpoint);
5207}
5208
5209/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
5210 true if LOC1 and LOC2 represent the same watchpoint location. */
5211
5212static int
5213watchpoint_locations_match (struct bp_location *loc1, struct bp_location *loc2)
5214{
2bdf28a0
JK
5215 /* Both of them must not be in moribund_locations. */
5216 gdb_assert (loc1->owner != NULL);
5217 gdb_assert (loc2->owner != NULL);
5218
0cf6dd15
TJB
5219 /* If the target can evaluate the condition expression in hardware, then we
5220 we need to insert both watchpoints even if they are at the same place.
5221 Otherwise the watchpoint will only trigger when the condition of whichever
5222 watchpoint was inserted evaluates to true, not giving a chance for GDB to
5223 check the condition of the other watchpoint. */
5224 if ((loc1->owner->cond_exp
5225 && target_can_accel_watchpoint_condition (loc1->address, loc1->length,
5226 loc1->watchpoint_type,
5227 loc1->owner->cond_exp))
5228 || (loc2->owner->cond_exp
5229 && target_can_accel_watchpoint_condition (loc2->address, loc2->length,
5230 loc2->watchpoint_type,
5231 loc2->owner->cond_exp)))
5232 return 0;
5233
85d721b8
PA
5234 /* Note that this checks the owner's type, not the location's. In
5235 case the target does not support read watchpoints, but does
5236 support access watchpoints, we'll have bp_read_watchpoint
5237 watchpoints with hw_access locations. Those should be considered
5238 duplicates of hw_read locations. The hw_read locations will
5239 become hw_access locations later. */
2d134ed3
PA
5240 return (loc1->owner->type == loc2->owner->type
5241 && loc1->pspace->aspace == loc2->pspace->aspace
5242 && loc1->address == loc2->address
5243 && loc1->length == loc2->length);
e4f237da
KB
5244}
5245
6c95b8df
PA
5246/* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
5247 same breakpoint location. In most targets, this can only be true
5248 if ASPACE1 matches ASPACE2. On targets that have global
5249 breakpoints, the address space doesn't really matter. */
5250
5251static int
5252breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
5253 struct address_space *aspace2, CORE_ADDR addr2)
5254{
5255 return ((gdbarch_has_global_breakpoints (target_gdbarch)
5256 || aspace1 == aspace2)
5257 && addr1 == addr2);
5258}
5259
2d134ed3
PA
5260/* Assuming LOC1 and LOC2's types' have meaningful target addresses
5261 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
5262 represent the same location. */
5263
5264static int
5265breakpoint_locations_match (struct bp_location *loc1, struct bp_location *loc2)
5266{
2bdf28a0
JK
5267 int hw_point1, hw_point2;
5268
5269 /* Both of them must not be in moribund_locations. */
5270 gdb_assert (loc1->owner != NULL);
5271 gdb_assert (loc2->owner != NULL);
5272
5273 hw_point1 = is_hardware_watchpoint (loc1->owner);
5274 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
5275
5276 if (hw_point1 != hw_point2)
5277 return 0;
5278 else if (hw_point1)
5279 return watchpoint_locations_match (loc1, loc2);
5280 else
5281 return breakpoint_address_match (loc1->pspace->aspace, loc1->address,
5282 loc2->pspace->aspace, loc2->address);
5283}
5284
76897487
KB
5285static void
5286breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
5287 int bnum, int have_bnum)
5288{
5289 char astr1[40];
5290 char astr2[40];
5291
bb599908
PH
5292 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
5293 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 5294 if (have_bnum)
8a3fe4f8 5295 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
5296 bnum, astr1, astr2);
5297 else
8a3fe4f8 5298 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
5299}
5300
5301/* Adjust a breakpoint's address to account for architectural constraints
5302 on breakpoint placement. Return the adjusted address. Note: Very
5303 few targets require this kind of adjustment. For most targets,
5304 this function is simply the identity function. */
5305
5306static CORE_ADDR
a6d9a66e
UW
5307adjust_breakpoint_address (struct gdbarch *gdbarch,
5308 CORE_ADDR bpaddr, enum bptype bptype)
76897487 5309{
a6d9a66e 5310 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
5311 {
5312 /* Very few targets need any kind of breakpoint adjustment. */
5313 return bpaddr;
5314 }
88f7da05
KB
5315 else if (bptype == bp_watchpoint
5316 || bptype == bp_hardware_watchpoint
5317 || bptype == bp_read_watchpoint
5318 || bptype == bp_access_watchpoint
fe798b75 5319 || bptype == bp_catchpoint)
88f7da05
KB
5320 {
5321 /* Watchpoints and the various bp_catch_* eventpoints should not
5322 have their addresses modified. */
5323 return bpaddr;
5324 }
76897487
KB
5325 else
5326 {
5327 CORE_ADDR adjusted_bpaddr;
5328
5329 /* Some targets have architectural constraints on the placement
5330 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 5331 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
5332
5333 /* An adjusted breakpoint address can significantly alter
5334 a user's expectations. Print a warning if an adjustment
5335 is required. */
5336 if (adjusted_bpaddr != bpaddr)
5337 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
5338
5339 return adjusted_bpaddr;
5340 }
5341}
5342
7cc221ef
DJ
5343/* Allocate a struct bp_location. */
5344
26bb91f3 5345static struct bp_location *
39d61571 5346allocate_bp_location (struct breakpoint *bpt)
7cc221ef 5347{
afe38095 5348 struct bp_location *loc;
7cc221ef
DJ
5349
5350 loc = xmalloc (sizeof (struct bp_location));
5351 memset (loc, 0, sizeof (*loc));
5352
e049a4b5 5353 loc->owner = bpt;
511a6cd4 5354 loc->cond = NULL;
0d381245
VP
5355 loc->shlib_disabled = 0;
5356 loc->enabled = 1;
e049a4b5 5357
39d61571 5358 switch (bpt->type)
e049a4b5
DJ
5359 {
5360 case bp_breakpoint:
5361 case bp_until:
5362 case bp_finish:
5363 case bp_longjmp:
5364 case bp_longjmp_resume:
5365 case bp_step_resume:
e049a4b5
DJ
5366 case bp_watchpoint_scope:
5367 case bp_call_dummy:
aa7d318d 5368 case bp_std_terminate:
e049a4b5
DJ
5369 case bp_shlib_event:
5370 case bp_thread_event:
5371 case bp_overlay_event:
4efc6507 5372 case bp_jit_event:
0fd8e87f 5373 case bp_longjmp_master:
aa7d318d 5374 case bp_std_terminate_master:
e049a4b5
DJ
5375 loc->loc_type = bp_loc_software_breakpoint;
5376 break;
5377 case bp_hardware_breakpoint:
5378 loc->loc_type = bp_loc_hardware_breakpoint;
5379 break;
5380 case bp_hardware_watchpoint:
5381 case bp_read_watchpoint:
5382 case bp_access_watchpoint:
5383 loc->loc_type = bp_loc_hardware_watchpoint;
5384 break;
5385 case bp_watchpoint:
ce78b96d 5386 case bp_catchpoint:
15c3d785
PA
5387 case bp_tracepoint:
5388 case bp_fast_tracepoint:
0fb4aa4b 5389 case bp_static_tracepoint:
e049a4b5
DJ
5390 loc->loc_type = bp_loc_other;
5391 break;
5392 default:
e2e0b3e5 5393 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
5394 }
5395
f431efe5 5396 loc->refc = 1;
7cc221ef
DJ
5397 return loc;
5398}
5399
f431efe5
PA
5400static void
5401free_bp_location (struct bp_location *loc)
fe3f5fa8
VP
5402{
5403 if (loc->cond)
5404 xfree (loc->cond);
74960c60
VP
5405
5406 if (loc->function_name)
5407 xfree (loc->function_name);
f431efe5 5408
fe3f5fa8
VP
5409 xfree (loc);
5410}
5411
f431efe5
PA
5412/* Increment reference count. */
5413
5414static void
5415incref_bp_location (struct bp_location *bl)
5416{
5417 ++bl->refc;
5418}
5419
5420/* Decrement reference count. If the reference count reaches 0,
5421 destroy the bp_location. Sets *BLP to NULL. */
5422
5423static void
5424decref_bp_location (struct bp_location **blp)
5425{
0807b50c
PA
5426 gdb_assert ((*blp)->refc > 0);
5427
f431efe5
PA
5428 if (--(*blp)->refc == 0)
5429 free_bp_location (*blp);
5430 *blp = NULL;
5431}
5432
0d381245
VP
5433/* Helper to set_raw_breakpoint below. Creates a breakpoint
5434 that has type BPTYPE and has no locations as yet. */
63c252f8 5435/* This function is used in gdbtk sources and thus can not be made static. */
c906108c 5436
c40e75cd 5437static struct breakpoint *
a6d9a66e
UW
5438set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
5439 enum bptype bptype)
c906108c 5440{
52f0bd74 5441 struct breakpoint *b, *b1;
c906108c
SS
5442
5443 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
5444 memset (b, 0, sizeof (*b));
2219d63c 5445
4d28f7a8 5446 b->type = bptype;
a6d9a66e 5447 b->gdbarch = gdbarch;
c906108c
SS
5448 b->language = current_language->la_language;
5449 b->input_radix = input_radix;
5450 b->thread = -1;
b5de0fa7 5451 b->enable_state = bp_enabled;
c906108c
SS
5452 b->next = 0;
5453 b->silent = 0;
5454 b->ignore_count = 0;
5455 b->commands = NULL;
818dd999 5456 b->frame_id = null_frame_id;
3a3e9ee3 5457 b->forked_inferior_pid = null_ptid;
c906108c 5458 b->exec_pathname = NULL;
a96d9b2e 5459 b->syscalls_to_be_caught = NULL;
3086aeae 5460 b->ops = NULL;
0d381245 5461 b->condition_not_parsed = 0;
c906108c
SS
5462
5463 /* Add this breakpoint to the end of the chain
5464 so that a list of breakpoints will come out in order
5465 of increasing numbers. */
5466
5467 b1 = breakpoint_chain;
5468 if (b1 == 0)
5469 breakpoint_chain = b;
5470 else
5471 {
5472 while (b1->next)
5473 b1 = b1->next;
5474 b1->next = b;
5475 }
0d381245
VP
5476 return b;
5477}
5478
5479/* Initialize loc->function_name. */
5480static void
5481set_breakpoint_location_function (struct bp_location *loc)
5482{
2bdf28a0
JK
5483 gdb_assert (loc->owner != NULL);
5484
0d381245 5485 if (loc->owner->type == bp_breakpoint
1042e4c0 5486 || loc->owner->type == bp_hardware_breakpoint
d77f58be 5487 || is_tracepoint (loc->owner))
0d381245
VP
5488 {
5489 find_pc_partial_function (loc->address, &(loc->function_name),
5490 NULL, NULL);
5491 if (loc->function_name)
5492 loc->function_name = xstrdup (loc->function_name);
5493 }
5494}
5495
a6d9a66e
UW
5496/* Attempt to determine architecture of location identified by SAL. */
5497static struct gdbarch *
5498get_sal_arch (struct symtab_and_line sal)
5499{
5500 if (sal.section)
5501 return get_objfile_arch (sal.section->objfile);
5502 if (sal.symtab)
5503 return get_objfile_arch (sal.symtab->objfile);
5504
5505 return NULL;
5506}
5507
0d381245
VP
5508/* set_raw_breakpoint is a low level routine for allocating and
5509 partially initializing a breakpoint of type BPTYPE. The newly
5510 created breakpoint's address, section, source file name, and line
5511 number are provided by SAL. The newly created and partially
5512 initialized breakpoint is added to the breakpoint chain and
5513 is also returned as the value of this function.
5514
5515 It is expected that the caller will complete the initialization of
5516 the newly created breakpoint struct as well as output any status
5517 information regarding the creation of a new breakpoint. In
5518 particular, set_raw_breakpoint does NOT set the breakpoint
5519 number! Care should be taken to not allow an error to occur
5520 prior to completing the initialization of the breakpoint. If this
5521 should happen, a bogus breakpoint will be left on the chain. */
5522
63c252f8 5523struct breakpoint *
a6d9a66e
UW
5524set_raw_breakpoint (struct gdbarch *gdbarch,
5525 struct symtab_and_line sal, enum bptype bptype)
0d381245 5526{
a6d9a66e 5527 struct breakpoint *b = set_raw_breakpoint_without_location (gdbarch, bptype);
0d381245 5528 CORE_ADDR adjusted_address;
a6d9a66e
UW
5529 struct gdbarch *loc_gdbarch;
5530
5531 loc_gdbarch = get_sal_arch (sal);
5532 if (!loc_gdbarch)
5533 loc_gdbarch = b->gdbarch;
0d381245 5534
6c95b8df
PA
5535 if (bptype != bp_catchpoint)
5536 gdb_assert (sal.pspace != NULL);
5537
0d381245
VP
5538 /* Adjust the breakpoint's address prior to allocating a location.
5539 Once we call allocate_bp_location(), that mostly uninitialized
5540 location will be placed on the location chain. Adjustment of the
8defab1a 5541 breakpoint may cause target_read_memory() to be called and we do
0d381245
VP
5542 not want its scan of the location chain to find a breakpoint and
5543 location that's only been partially initialized. */
a6d9a66e 5544 adjusted_address = adjust_breakpoint_address (loc_gdbarch, sal.pc, b->type);
0d381245 5545
39d61571 5546 b->loc = allocate_bp_location (b);
a6d9a66e 5547 b->loc->gdbarch = loc_gdbarch;
0d381245
VP
5548 b->loc->requested_address = sal.pc;
5549 b->loc->address = adjusted_address;
6c95b8df
PA
5550 b->loc->pspace = sal.pspace;
5551
5552 /* Store the program space that was used to set the breakpoint, for
5553 breakpoint resetting. */
5554 b->pspace = sal.pspace;
0d381245
VP
5555
5556 if (sal.symtab == NULL)
5557 b->source_file = NULL;
5558 else
1b36a34b 5559 b->source_file = xstrdup (sal.symtab->filename);
0d381245
VP
5560 b->loc->section = sal.section;
5561 b->line_number = sal.line;
5562
5563 set_breakpoint_location_function (b->loc);
c906108c 5564
c906108c
SS
5565 breakpoints_changed ();
5566
5567 return b;
5568}
5569
c2c6d25f
JM
5570
5571/* Note that the breakpoint object B describes a permanent breakpoint
5572 instruction, hard-wired into the inferior's code. */
5573void
5574make_breakpoint_permanent (struct breakpoint *b)
5575{
0d381245 5576 struct bp_location *bl;
cc59ec59 5577
b5de0fa7 5578 b->enable_state = bp_permanent;
c2c6d25f 5579
0d381245
VP
5580 /* By definition, permanent breakpoints are already present in the code.
5581 Mark all locations as inserted. For now, make_breakpoint_permanent
5582 is called in just one place, so it's hard to say if it's reasonable
5583 to have permanent breakpoint with multiple locations or not,
5584 but it's easy to implmement. */
5585 for (bl = b->loc; bl; bl = bl->next)
5586 bl->inserted = 1;
c2c6d25f
JM
5587}
5588
53a5351d 5589/* Call this routine when stepping and nexting to enable a breakpoint
0fd8e87f 5590 if we do a longjmp() in THREAD. When we hit that breakpoint, call
c906108c
SS
5591 set_longjmp_resume_breakpoint() to figure out where we are going. */
5592
5593void
0fd8e87f 5594set_longjmp_breakpoint (int thread)
c906108c 5595{
0fd8e87f
UW
5596 struct breakpoint *b, *temp;
5597
5598 /* To avoid having to rescan all objfile symbols at every step,
5599 we maintain a list of continually-inserted but always disabled
5600 longjmp "master" breakpoints. Here, we simply create momentary
5601 clones of those and enable them for the requested thread. */
5602 ALL_BREAKPOINTS_SAFE (b, temp)
6c95b8df
PA
5603 if (b->pspace == current_program_space
5604 && b->type == bp_longjmp_master)
0fd8e87f
UW
5605 {
5606 struct breakpoint *clone = clone_momentary_breakpoint (b);
cc59ec59 5607
0fd8e87f
UW
5608 clone->type = bp_longjmp;
5609 clone->thread = thread;
5610 }
c906108c
SS
5611}
5612
611c83ae 5613/* Delete all longjmp breakpoints from THREAD. */
c906108c 5614void
611c83ae 5615delete_longjmp_breakpoint (int thread)
c906108c 5616{
611c83ae 5617 struct breakpoint *b, *temp;
c906108c 5618
611c83ae
PA
5619 ALL_BREAKPOINTS_SAFE (b, temp)
5620 if (b->type == bp_longjmp)
5621 {
5622 if (b->thread == thread)
5623 delete_breakpoint (b);
5624 }
c906108c
SS
5625}
5626
1900040c
MS
5627void
5628enable_overlay_breakpoints (void)
5629{
52f0bd74 5630 struct breakpoint *b;
1900040c
MS
5631
5632 ALL_BREAKPOINTS (b)
5633 if (b->type == bp_overlay_event)
5634 {
5635 b->enable_state = bp_enabled;
b60e7edf 5636 update_global_location_list (1);
c02f5703 5637 overlay_events_enabled = 1;
1900040c
MS
5638 }
5639}
5640
5641void
5642disable_overlay_breakpoints (void)
5643{
52f0bd74 5644 struct breakpoint *b;
1900040c
MS
5645
5646 ALL_BREAKPOINTS (b)
5647 if (b->type == bp_overlay_event)
5648 {
5649 b->enable_state = bp_disabled;
b60e7edf 5650 update_global_location_list (0);
c02f5703 5651 overlay_events_enabled = 0;
1900040c
MS
5652 }
5653}
5654
aa7d318d
TT
5655/* Set an active std::terminate breakpoint for each std::terminate
5656 master breakpoint. */
5657void
5658set_std_terminate_breakpoint (void)
5659{
5660 struct breakpoint *b, *temp;
5661
5662 ALL_BREAKPOINTS_SAFE (b, temp)
5663 if (b->pspace == current_program_space
5664 && b->type == bp_std_terminate_master)
5665 {
5666 struct breakpoint *clone = clone_momentary_breakpoint (b);
5667 clone->type = bp_std_terminate;
5668 }
5669}
5670
5671/* Delete all the std::terminate breakpoints. */
5672void
5673delete_std_terminate_breakpoint (void)
5674{
5675 struct breakpoint *b, *temp;
5676
5677 ALL_BREAKPOINTS_SAFE (b, temp)
5678 if (b->type == bp_std_terminate)
5679 delete_breakpoint (b);
5680}
5681
c4093a6a 5682struct breakpoint *
a6d9a66e 5683create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
5684{
5685 struct breakpoint *b;
c4093a6a 5686
a6d9a66e 5687 b = create_internal_breakpoint (gdbarch, address, bp_thread_event);
c4093a6a 5688
b5de0fa7 5689 b->enable_state = bp_enabled;
c4093a6a 5690 /* addr_string has to be used or breakpoint_re_set will delete me. */
5af949e3
UW
5691 b->addr_string
5692 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
c4093a6a 5693
b60e7edf 5694 update_global_location_list_nothrow (1);
74960c60 5695
c4093a6a
JM
5696 return b;
5697}
5698
5699void
5700remove_thread_event_breakpoints (void)
5701{
5702 struct breakpoint *b, *temp;
5703
5704 ALL_BREAKPOINTS_SAFE (b, temp)
6c95b8df
PA
5705 if (b->type == bp_thread_event
5706 && b->loc->pspace == current_program_space)
c4093a6a
JM
5707 delete_breakpoint (b);
5708}
5709
0101ce28
JJ
5710struct captured_parse_breakpoint_args
5711 {
5712 char **arg_p;
5713 struct symtabs_and_lines *sals_p;
5714 char ***addr_string_p;
5715 int *not_found_ptr;
5716 };
5717
5718struct lang_and_radix
5719 {
5720 enum language lang;
5721 int radix;
5722 };
5723
4efc6507
DE
5724/* Create a breakpoint for JIT code registration and unregistration. */
5725
5726struct breakpoint *
5727create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
5728{
5729 struct breakpoint *b;
5730
5731 b = create_internal_breakpoint (gdbarch, address, bp_jit_event);
5732 update_global_location_list_nothrow (1);
5733 return b;
5734}
0101ce28 5735
cae688ec
JJ
5736void
5737remove_solib_event_breakpoints (void)
5738{
5739 struct breakpoint *b, *temp;
5740
5741 ALL_BREAKPOINTS_SAFE (b, temp)
6c95b8df
PA
5742 if (b->type == bp_shlib_event
5743 && b->loc->pspace == current_program_space)
cae688ec
JJ
5744 delete_breakpoint (b);
5745}
5746
5747struct breakpoint *
a6d9a66e 5748create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
cae688ec
JJ
5749{
5750 struct breakpoint *b;
5751
a6d9a66e 5752 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event);
b60e7edf 5753 update_global_location_list_nothrow (1);
cae688ec
JJ
5754 return b;
5755}
5756
5757/* Disable any breakpoints that are on code in shared libraries. Only
5758 apply to enabled breakpoints, disabled ones can just stay disabled. */
5759
5760void
cb851954 5761disable_breakpoints_in_shlibs (void)
cae688ec 5762{
876fa593 5763 struct bp_location *loc, **locp_tmp;
cae688ec 5764
876fa593 5765 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 5766 {
2bdf28a0 5767 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 5768 struct breakpoint *b = loc->owner;
2bdf28a0 5769
0d381245
VP
5770 /* We apply the check to all breakpoints, including disabled
5771 for those with loc->duplicate set. This is so that when breakpoint
5772 becomes enabled, or the duplicate is removed, gdb will try to insert
5773 all breakpoints. If we don't set shlib_disabled here, we'll try
5774 to insert those breakpoints and fail. */
1042e4c0 5775 if (((b->type == bp_breakpoint)
508ccb1f 5776 || (b->type == bp_jit_event)
1042e4c0 5777 || (b->type == bp_hardware_breakpoint)
d77f58be 5778 || (is_tracepoint (b)))
6c95b8df 5779 && loc->pspace == current_program_space
0d381245 5780 && !loc->shlib_disabled
a77053c2 5781#ifdef PC_SOLIB
0d381245 5782 && PC_SOLIB (loc->address)
a77053c2 5783#else
6c95b8df 5784 && solib_name_from_address (loc->pspace, loc->address)
a77053c2
MK
5785#endif
5786 )
0d381245
VP
5787 {
5788 loc->shlib_disabled = 1;
5789 }
cae688ec
JJ
5790 }
5791}
5792
84acb35a
JJ
5793/* Disable any breakpoints that are in in an unloaded shared library. Only
5794 apply to enabled breakpoints, disabled ones can just stay disabled. */
5795
75149521 5796static void
84acb35a
JJ
5797disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
5798{
876fa593 5799 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
5800 int disabled_shlib_breaks = 0;
5801
c86cf029
VP
5802 /* SunOS a.out shared libraries are always mapped, so do not
5803 disable breakpoints; they will only be reported as unloaded
5804 through clear_solib when GDB discards its shared library
5805 list. See clear_solib for more information. */
5806 if (exec_bfd != NULL
5807 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
5808 return;
5809
876fa593 5810 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 5811 {
2bdf28a0 5812 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 5813 struct breakpoint *b = loc->owner;
cc59ec59 5814
0d381245
VP
5815 if ((loc->loc_type == bp_loc_hardware_breakpoint
5816 || loc->loc_type == bp_loc_software_breakpoint)
6c95b8df 5817 && solib->pspace == loc->pspace
e2dd7057 5818 && !loc->shlib_disabled
508ccb1f
TT
5819 && (b->type == bp_breakpoint
5820 || b->type == bp_jit_event
5821 || b->type == bp_hardware_breakpoint)
e2dd7057 5822 && solib_contains_address_p (solib, loc->address))
84acb35a 5823 {
e2dd7057
PP
5824 loc->shlib_disabled = 1;
5825 /* At this point, we cannot rely on remove_breakpoint
5826 succeeding so we must mark the breakpoint as not inserted
5827 to prevent future errors occurring in remove_breakpoints. */
5828 loc->inserted = 0;
5829 if (!disabled_shlib_breaks)
5830 {
5831 target_terminal_ours_for_output ();
5832 warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
5833 solib->so_name);
84acb35a 5834 }
e2dd7057 5835 disabled_shlib_breaks = 1;
84acb35a
JJ
5836 }
5837 }
84acb35a
JJ
5838}
5839
ce78b96d
JB
5840/* FORK & VFORK catchpoints. */
5841
5842/* Implement the "insert" breakpoint_ops method for fork catchpoints. */
5843
c906108c 5844static void
ce78b96d
JB
5845insert_catch_fork (struct breakpoint *b)
5846{
5847 target_insert_fork_catchpoint (PIDGET (inferior_ptid));
5848}
5849
5850/* Implement the "remove" breakpoint_ops method for fork catchpoints. */
5851
5852static int
5853remove_catch_fork (struct breakpoint *b)
5854{
5855 return target_remove_fork_catchpoint (PIDGET (inferior_ptid));
5856}
5857
5858/* Implement the "breakpoint_hit" breakpoint_ops method for fork
5859 catchpoints. */
5860
5861static int
5862breakpoint_hit_catch_fork (struct breakpoint *b)
5863{
5864 return inferior_has_forked (inferior_ptid, &b->forked_inferior_pid);
5865}
5866
5867/* Implement the "print_it" breakpoint_ops method for fork catchpoints. */
5868
5869static enum print_stop_action
5870print_it_catch_fork (struct breakpoint *b)
5871{
5872 annotate_catchpoint (b->number);
5873 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
5874 b->number, ptid_get_pid (b->forked_inferior_pid));
5875 return PRINT_SRC_AND_LOC;
5876}
5877
5878/* Implement the "print_one" breakpoint_ops method for fork catchpoints. */
5879
5880static void
a6d9a66e 5881print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 5882{
79a45b7d
TT
5883 struct value_print_options opts;
5884
5885 get_user_print_options (&opts);
5886
ce78b96d
JB
5887 /* Field 4, the address, is omitted (which makes the columns
5888 not line up too nicely with the headers, but the effect
5889 is relatively readable). */
79a45b7d 5890 if (opts.addressprint)
ce78b96d
JB
5891 ui_out_field_skip (uiout, "addr");
5892 annotate_field (5);
5893 ui_out_text (uiout, "fork");
5894 if (!ptid_equal (b->forked_inferior_pid, null_ptid))
5895 {
5896 ui_out_text (uiout, ", process ");
5897 ui_out_field_int (uiout, "what",
5898 ptid_get_pid (b->forked_inferior_pid));
5899 ui_out_spaces (uiout, 1);
5900 }
5901}
5902
5903/* Implement the "print_mention" breakpoint_ops method for fork
5904 catchpoints. */
5905
5906static void
5907print_mention_catch_fork (struct breakpoint *b)
5908{
5909 printf_filtered (_("Catchpoint %d (fork)"), b->number);
5910}
5911
6149aea9
PA
5912/* Implement the "print_recreate" breakpoint_ops method for fork
5913 catchpoints. */
5914
5915static void
5916print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
5917{
5918 fprintf_unfiltered (fp, "catch fork");
5919}
5920
ce78b96d
JB
5921/* The breakpoint_ops structure to be used in fork catchpoints. */
5922
5923static struct breakpoint_ops catch_fork_breakpoint_ops =
5924{
5925 insert_catch_fork,
5926 remove_catch_fork,
5927 breakpoint_hit_catch_fork,
5928 print_it_catch_fork,
5929 print_one_catch_fork,
6149aea9
PA
5930 print_mention_catch_fork,
5931 print_recreate_catch_fork
ce78b96d
JB
5932};
5933
5934/* Implement the "insert" breakpoint_ops method for vfork catchpoints. */
5935
5936static void
5937insert_catch_vfork (struct breakpoint *b)
5938{
5939 target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
5940}
5941
5942/* Implement the "remove" breakpoint_ops method for vfork catchpoints. */
5943
5944static int
5945remove_catch_vfork (struct breakpoint *b)
5946{
5947 return target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
5948}
5949
5950/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
5951 catchpoints. */
5952
5953static int
5954breakpoint_hit_catch_vfork (struct breakpoint *b)
5955{
5956 return inferior_has_vforked (inferior_ptid, &b->forked_inferior_pid);
5957}
5958
5959/* Implement the "print_it" breakpoint_ops method for vfork catchpoints. */
5960
5961static enum print_stop_action
5962print_it_catch_vfork (struct breakpoint *b)
5963{
5964 annotate_catchpoint (b->number);
5965 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
5966 b->number, ptid_get_pid (b->forked_inferior_pid));
5967 return PRINT_SRC_AND_LOC;
5968}
5969
5970/* Implement the "print_one" breakpoint_ops method for vfork catchpoints. */
5971
5972static void
a6d9a66e 5973print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 5974{
79a45b7d
TT
5975 struct value_print_options opts;
5976
5977 get_user_print_options (&opts);
ce78b96d
JB
5978 /* Field 4, the address, is omitted (which makes the columns
5979 not line up too nicely with the headers, but the effect
5980 is relatively readable). */
79a45b7d 5981 if (opts.addressprint)
ce78b96d
JB
5982 ui_out_field_skip (uiout, "addr");
5983 annotate_field (5);
5984 ui_out_text (uiout, "vfork");
5985 if (!ptid_equal (b->forked_inferior_pid, null_ptid))
5986 {
5987 ui_out_text (uiout, ", process ");
5988 ui_out_field_int (uiout, "what",
5989 ptid_get_pid (b->forked_inferior_pid));
5990 ui_out_spaces (uiout, 1);
5991 }
5992}
5993
5994/* Implement the "print_mention" breakpoint_ops method for vfork
5995 catchpoints. */
5996
5997static void
5998print_mention_catch_vfork (struct breakpoint *b)
5999{
6000 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
6001}
6002
6149aea9
PA
6003/* Implement the "print_recreate" breakpoint_ops method for vfork
6004 catchpoints. */
6005
6006static void
6007print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
6008{
6009 fprintf_unfiltered (fp, "catch vfork");
6010}
6011
ce78b96d
JB
6012/* The breakpoint_ops structure to be used in vfork catchpoints. */
6013
6014static struct breakpoint_ops catch_vfork_breakpoint_ops =
6015{
6016 insert_catch_vfork,
6017 remove_catch_vfork,
6018 breakpoint_hit_catch_vfork,
6019 print_it_catch_vfork,
6020 print_one_catch_vfork,
6149aea9
PA
6021 print_mention_catch_vfork,
6022 print_recreate_catch_vfork
ce78b96d
JB
6023};
6024
a96d9b2e
SDJ
6025/* Implement the "insert" breakpoint_ops method for syscall
6026 catchpoints. */
6027
6028static void
6029insert_catch_syscall (struct breakpoint *b)
6030{
6031 struct inferior *inf = current_inferior ();
6032
6033 ++inf->total_syscalls_count;
6034 if (!b->syscalls_to_be_caught)
6035 ++inf->any_syscall_count;
6036 else
6037 {
6038 int i, iter;
cc59ec59 6039
a96d9b2e
SDJ
6040 for (i = 0;
6041 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6042 i++)
6043 {
6044 int elem;
cc59ec59 6045
a96d9b2e
SDJ
6046 if (iter >= VEC_length (int, inf->syscalls_counts))
6047 {
6048 int old_size = VEC_length (int, inf->syscalls_counts);
6049 uintptr_t vec_addr_offset = old_size * ((uintptr_t) sizeof (int));
6050 uintptr_t vec_addr;
6051 VEC_safe_grow (int, inf->syscalls_counts, iter + 1);
6052 vec_addr = (uintptr_t) VEC_address (int, inf->syscalls_counts) +
6053 vec_addr_offset;
6054 memset ((void *) vec_addr, 0,
6055 (iter + 1 - old_size) * sizeof (int));
6056 }
6057 elem = VEC_index (int, inf->syscalls_counts, iter);
6058 VEC_replace (int, inf->syscalls_counts, iter, ++elem);
6059 }
6060 }
6061
6062 target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6063 inf->total_syscalls_count != 0,
6064 inf->any_syscall_count,
6065 VEC_length (int, inf->syscalls_counts),
6066 VEC_address (int, inf->syscalls_counts));
6067}
6068
6069/* Implement the "remove" breakpoint_ops method for syscall
6070 catchpoints. */
6071
6072static int
6073remove_catch_syscall (struct breakpoint *b)
6074{
6075 struct inferior *inf = current_inferior ();
6076
6077 --inf->total_syscalls_count;
6078 if (!b->syscalls_to_be_caught)
6079 --inf->any_syscall_count;
6080 else
6081 {
6082 int i, iter;
cc59ec59 6083
a96d9b2e
SDJ
6084 for (i = 0;
6085 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6086 i++)
6087 {
6088 int elem;
6089 if (iter >= VEC_length (int, inf->syscalls_counts))
6090 /* Shouldn't happen. */
6091 continue;
6092 elem = VEC_index (int, inf->syscalls_counts, iter);
6093 VEC_replace (int, inf->syscalls_counts, iter, --elem);
6094 }
6095 }
6096
6097 return target_set_syscall_catchpoint (PIDGET (inferior_ptid),
6098 inf->total_syscalls_count != 0,
6099 inf->any_syscall_count,
6100 VEC_length (int, inf->syscalls_counts),
6101 VEC_address (int, inf->syscalls_counts));
6102}
6103
6104/* Implement the "breakpoint_hit" breakpoint_ops method for syscall
6105 catchpoints. */
6106
6107static int
6108breakpoint_hit_catch_syscall (struct breakpoint *b)
6109{
6110 /* We must check if we are catching specific syscalls in this breakpoint.
6111 If we are, then we must guarantee that the called syscall is the same
6112 syscall we are catching. */
6113 int syscall_number = 0;
6114
6115 if (!inferior_has_called_syscall (inferior_ptid, &syscall_number))
6116 return 0;
6117
6118 /* Now, checking if the syscall is the same. */
6119 if (b->syscalls_to_be_caught)
6120 {
6121 int i, iter;
cc59ec59 6122
a96d9b2e
SDJ
6123 for (i = 0;
6124 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6125 i++)
6126 if (syscall_number == iter)
6127 break;
6128 /* Not the same. */
6129 if (!iter)
6130 return 0;
6131 }
6132
6133 return 1;
6134}
6135
6136/* Implement the "print_it" breakpoint_ops method for syscall
6137 catchpoints. */
6138
6139static enum print_stop_action
6140print_it_catch_syscall (struct breakpoint *b)
6141{
6142 /* These are needed because we want to know in which state a
6143 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
6144 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
6145 must print "called syscall" or "returned from syscall". */
6146 ptid_t ptid;
6147 struct target_waitstatus last;
6148 struct syscall s;
6149 struct cleanup *old_chain;
6150 char *syscall_id;
6151
6152 get_last_target_status (&ptid, &last);
6153
6154 get_syscall_by_number (last.value.syscall_number, &s);
6155
6156 annotate_catchpoint (b->number);
6157
6158 if (s.name == NULL)
6159 syscall_id = xstrprintf ("%d", last.value.syscall_number);
6160 else
6161 syscall_id = xstrprintf ("'%s'", s.name);
6162
6163 old_chain = make_cleanup (xfree, syscall_id);
6164
6165 if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY)
6166 printf_filtered (_("\nCatchpoint %d (call to syscall %s), "),
6167 b->number, syscall_id);
6168 else if (last.kind == TARGET_WAITKIND_SYSCALL_RETURN)
6169 printf_filtered (_("\nCatchpoint %d (returned from syscall %s), "),
6170 b->number, syscall_id);
6171
6172 do_cleanups (old_chain);
6173
6174 return PRINT_SRC_AND_LOC;
6175}
6176
6177/* Implement the "print_one" breakpoint_ops method for syscall
6178 catchpoints. */
6179
6180static void
6181print_one_catch_syscall (struct breakpoint *b,
6182 struct bp_location **last_loc)
6183{
6184 struct value_print_options opts;
6185
6186 get_user_print_options (&opts);
6187 /* Field 4, the address, is omitted (which makes the columns
6188 not line up too nicely with the headers, but the effect
6189 is relatively readable). */
6190 if (opts.addressprint)
6191 ui_out_field_skip (uiout, "addr");
6192 annotate_field (5);
6193
6194 if (b->syscalls_to_be_caught
6195 && VEC_length (int, b->syscalls_to_be_caught) > 1)
6196 ui_out_text (uiout, "syscalls \"");
6197 else
6198 ui_out_text (uiout, "syscall \"");
6199
6200 if (b->syscalls_to_be_caught)
6201 {
6202 int i, iter;
6203 char *text = xstrprintf ("%s", "");
cc59ec59 6204
a96d9b2e
SDJ
6205 for (i = 0;
6206 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6207 i++)
6208 {
6209 char *x = text;
6210 struct syscall s;
6211 get_syscall_by_number (iter, &s);
6212
6213 if (s.name != NULL)
6214 text = xstrprintf ("%s%s, ", text, s.name);
6215 else
6216 text = xstrprintf ("%s%d, ", text, iter);
6217
6218 /* We have to xfree the last 'text' (now stored at 'x')
6219 because xstrprintf dinamically allocates new space for it
6220 on every call. */
6221 xfree (x);
6222 }
6223 /* Remove the last comma. */
6224 text[strlen (text) - 2] = '\0';
6225 ui_out_field_string (uiout, "what", text);
6226 }
6227 else
6228 ui_out_field_string (uiout, "what", "<any syscall>");
6229 ui_out_text (uiout, "\" ");
6230}
6231
6232/* Implement the "print_mention" breakpoint_ops method for syscall
6233 catchpoints. */
6234
6235static void
6236print_mention_catch_syscall (struct breakpoint *b)
6237{
6238 if (b->syscalls_to_be_caught)
6239 {
6240 int i, iter;
6241
6242 if (VEC_length (int, b->syscalls_to_be_caught) > 1)
6243 printf_filtered (_("Catchpoint %d (syscalls"), b->number);
6244 else
6245 printf_filtered (_("Catchpoint %d (syscall"), b->number);
6246
6247 for (i = 0;
6248 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6249 i++)
6250 {
6251 struct syscall s;
6252 get_syscall_by_number (iter, &s);
6253
6254 if (s.name)
6255 printf_filtered (" '%s' [%d]", s.name, s.number);
6256 else
6257 printf_filtered (" %d", s.number);
6258 }
6259 printf_filtered (")");
6260 }
6261 else
6262 printf_filtered (_("Catchpoint %d (any syscall)"),
6263 b->number);
6264}
6265
6149aea9
PA
6266/* Implement the "print_recreate" breakpoint_ops method for syscall
6267 catchpoints. */
6268
6269static void
6270print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp)
6271{
6272 fprintf_unfiltered (fp, "catch syscall");
6273
6274 if (b->syscalls_to_be_caught)
6275 {
6276 int i, iter;
6277
6278 for (i = 0;
6279 VEC_iterate (int, b->syscalls_to_be_caught, i, iter);
6280 i++)
6281 {
6282 struct syscall s;
6283
6284 get_syscall_by_number (iter, &s);
6285 if (s.name)
6286 fprintf_unfiltered (fp, " %s", s.name);
6287 else
6288 fprintf_unfiltered (fp, " %d", s.number);
6289 }
6290 }
6291}
6292
a96d9b2e
SDJ
6293/* The breakpoint_ops structure to be used in syscall catchpoints. */
6294
6295static struct breakpoint_ops catch_syscall_breakpoint_ops =
6296{
6297 insert_catch_syscall,
6298 remove_catch_syscall,
6299 breakpoint_hit_catch_syscall,
6300 print_it_catch_syscall,
6301 print_one_catch_syscall,
6149aea9
PA
6302 print_mention_catch_syscall,
6303 print_recreate_catch_syscall
a96d9b2e
SDJ
6304};
6305
6306/* Returns non-zero if 'b' is a syscall catchpoint. */
6307
6308static int
6309syscall_catchpoint_p (struct breakpoint *b)
6310{
6311 return (b->ops == &catch_syscall_breakpoint_ops);
6312}
6313
6314/* Create a new breakpoint of the bp_catchpoint kind and return it,
6315 but does NOT mention it nor update the global location list.
6316 This is useful if you need to fill more fields in the
6317 struct breakpoint before calling mention.
ce78b96d
JB
6318
6319 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6320 If COND_STRING is not NULL, then store it in the breakpoint.
6321 OPS, if not NULL, is the breakpoint_ops structure associated
6322 to the catchpoint. */
6323
6324static struct breakpoint *
a96d9b2e
SDJ
6325create_catchpoint_without_mention (struct gdbarch *gdbarch, int tempflag,
6326 char *cond_string,
6327 struct breakpoint_ops *ops)
c906108c 6328{
c5aa993b
JM
6329 struct symtab_and_line sal;
6330 struct breakpoint *b;
c5aa993b 6331
fe39c653 6332 init_sal (&sal);
6c95b8df 6333 sal.pspace = current_program_space;
c5aa993b 6334
a6d9a66e 6335 b = set_raw_breakpoint (gdbarch, sal, bp_catchpoint);
c906108c
SS
6336 set_breakpoint_count (breakpoint_count + 1);
6337 b->number = breakpoint_count;
ce78b96d 6338
1b36a34b 6339 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
ce78b96d 6340 b->thread = -1;
c906108c 6341 b->addr_string = NULL;
b5de0fa7
EZ
6342 b->enable_state = bp_enabled;
6343 b->disposition = tempflag ? disp_del : disp_donttouch;
ce78b96d 6344 b->ops = ops;
c5aa993b 6345
a96d9b2e
SDJ
6346 return b;
6347}
6348
6349/* Create a new breakpoint of the bp_catchpoint kind and return it.
6350
6351 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6352 If COND_STRING is not NULL, then store it in the breakpoint.
6353 OPS, if not NULL, is the breakpoint_ops structure associated
6354 to the catchpoint. */
6355
6356static struct breakpoint *
6357create_catchpoint (struct gdbarch *gdbarch, int tempflag,
6358 char *cond_string, struct breakpoint_ops *ops)
6359{
6360 struct breakpoint *b =
6361 create_catchpoint_without_mention (gdbarch, tempflag, cond_string, ops);
6362
c906108c 6363 mention (b);
ce78b96d 6364 update_global_location_list (1);
c906108c 6365
ce78b96d 6366 return b;
c906108c 6367}
c5aa993b 6368
9b70b993 6369static void
a6d9a66e
UW
6370create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
6371 int tempflag, char *cond_string,
ce78b96d 6372 struct breakpoint_ops *ops)
c906108c 6373{
a6d9a66e
UW
6374 struct breakpoint *b
6375 = create_catchpoint (gdbarch, tempflag, cond_string, ops);
ce78b96d
JB
6376
6377 /* FIXME: We should put this information in a breakpoint private data
6378 area. */
6379 b->forked_inferior_pid = null_ptid;
c906108c
SS
6380}
6381
fe798b75
JB
6382/* Exec catchpoints. */
6383
9b70b993 6384static void
fe798b75 6385insert_catch_exec (struct breakpoint *b)
c906108c 6386{
fe798b75
JB
6387 target_insert_exec_catchpoint (PIDGET (inferior_ptid));
6388}
c906108c 6389
fe798b75
JB
6390static int
6391remove_catch_exec (struct breakpoint *b)
6392{
6393 return target_remove_exec_catchpoint (PIDGET (inferior_ptid));
6394}
c906108c 6395
fe798b75
JB
6396static int
6397breakpoint_hit_catch_exec (struct breakpoint *b)
6398{
6399 return inferior_has_execd (inferior_ptid, &b->exec_pathname);
6400}
c906108c 6401
fe798b75
JB
6402static enum print_stop_action
6403print_it_catch_exec (struct breakpoint *b)
6404{
6405 annotate_catchpoint (b->number);
6406 printf_filtered (_("\nCatchpoint %d (exec'd %s), "), b->number,
6407 b->exec_pathname);
6408 return PRINT_SRC_AND_LOC;
c906108c
SS
6409}
6410
fe798b75 6411static void
a6d9a66e 6412print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75
JB
6413{
6414 struct value_print_options opts;
6415
6416 get_user_print_options (&opts);
6417
6418 /* Field 4, the address, is omitted (which makes the columns
6419 not line up too nicely with the headers, but the effect
6420 is relatively readable). */
6421 if (opts.addressprint)
6422 ui_out_field_skip (uiout, "addr");
6423 annotate_field (5);
6424 ui_out_text (uiout, "exec");
6425 if (b->exec_pathname != NULL)
6426 {
6427 ui_out_text (uiout, ", program \"");
6428 ui_out_field_string (uiout, "what", b->exec_pathname);
6429 ui_out_text (uiout, "\" ");
6430 }
6431}
6432
6433static void
6434print_mention_catch_exec (struct breakpoint *b)
6435{
6436 printf_filtered (_("Catchpoint %d (exec)"), b->number);
6437}
6438
6149aea9
PA
6439/* Implement the "print_recreate" breakpoint_ops method for exec
6440 catchpoints. */
6441
6442static void
6443print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
6444{
6445 fprintf_unfiltered (fp, "catch exec");
6446}
6447
fe798b75
JB
6448static struct breakpoint_ops catch_exec_breakpoint_ops =
6449{
6450 insert_catch_exec,
6451 remove_catch_exec,
6452 breakpoint_hit_catch_exec,
6453 print_it_catch_exec,
6454 print_one_catch_exec,
6149aea9
PA
6455 print_mention_catch_exec,
6456 print_recreate_catch_exec
fe798b75
JB
6457};
6458
a96d9b2e
SDJ
6459static void
6460create_syscall_event_catchpoint (int tempflag, VEC(int) *filter,
6461 struct breakpoint_ops *ops)
6462{
6463 struct gdbarch *gdbarch = get_current_arch ();
6464 struct breakpoint *b =
6465 create_catchpoint_without_mention (gdbarch, tempflag, NULL, ops);
6466
6467 b->syscalls_to_be_caught = filter;
6468
6469 /* Now, we have to mention the breakpoint and update the global
6470 location list. */
6471 mention (b);
6472 update_global_location_list (1);
6473}
6474
c906108c 6475static int
fba45db2 6476hw_breakpoint_used_count (void)
c906108c 6477{
52f0bd74 6478 struct breakpoint *b;
c906108c
SS
6479 int i = 0;
6480
6481 ALL_BREAKPOINTS (b)
c5aa993b 6482 {
d6b74ac4 6483 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
c5aa993b
JM
6484 i++;
6485 }
c906108c
SS
6486
6487 return i;
6488}
6489
6490static int
fba45db2 6491hw_watchpoint_used_count (enum bptype type, int *other_type_used)
c906108c 6492{
52f0bd74 6493 struct breakpoint *b;
c906108c
SS
6494 int i = 0;
6495
6496 *other_type_used = 0;
6497 ALL_BREAKPOINTS (b)
c5aa993b 6498 {
468d015d 6499 if (breakpoint_enabled (b))
c5aa993b
JM
6500 {
6501 if (b->type == type)
6502 i++;
cc60f2e3 6503 else if (is_hardware_watchpoint (b))
c5aa993b
JM
6504 *other_type_used = 1;
6505 }
6506 }
c906108c
SS
6507 return i;
6508}
6509
c906108c 6510void
fba45db2 6511disable_watchpoints_before_interactive_call_start (void)
c906108c 6512{
c5aa993b 6513 struct breakpoint *b;
c906108c
SS
6514
6515 ALL_BREAKPOINTS (b)
c5aa993b 6516 {
cc60f2e3 6517 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 6518 {
b5de0fa7 6519 b->enable_state = bp_call_disabled;
b60e7edf 6520 update_global_location_list (0);
c5aa993b
JM
6521 }
6522 }
c906108c
SS
6523}
6524
6525void
fba45db2 6526enable_watchpoints_after_interactive_call_stop (void)
c906108c 6527{
c5aa993b 6528 struct breakpoint *b;
c906108c
SS
6529
6530 ALL_BREAKPOINTS (b)
c5aa993b 6531 {
cc60f2e3 6532 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 6533 {
b5de0fa7 6534 b->enable_state = bp_enabled;
b60e7edf 6535 update_global_location_list (1);
c5aa993b
JM
6536 }
6537 }
c906108c
SS
6538}
6539
8bea4e01
UW
6540void
6541disable_breakpoints_before_startup (void)
6542{
6543 struct breakpoint *b;
6544 int found = 0;
6545
6546 ALL_BREAKPOINTS (b)
6547 {
6c95b8df
PA
6548 if (b->pspace != current_program_space)
6549 continue;
6550
8bea4e01
UW
6551 if ((b->type == bp_breakpoint
6552 || b->type == bp_hardware_breakpoint)
6553 && breakpoint_enabled (b))
6554 {
6555 b->enable_state = bp_startup_disabled;
6556 found = 1;
6557 }
6558 }
6559
6560 if (found)
6561 update_global_location_list (0);
6562
6c95b8df 6563 current_program_space->executing_startup = 1;
8bea4e01
UW
6564}
6565
6566void
6567enable_breakpoints_after_startup (void)
6568{
6569 struct breakpoint *b;
6570 int found = 0;
6571
6c95b8df 6572 current_program_space->executing_startup = 0;
8bea4e01
UW
6573
6574 ALL_BREAKPOINTS (b)
6575 {
6c95b8df
PA
6576 if (b->pspace != current_program_space)
6577 continue;
6578
8bea4e01
UW
6579 if ((b->type == bp_breakpoint
6580 || b->type == bp_hardware_breakpoint)
6581 && b->enable_state == bp_startup_disabled)
6582 {
6583 b->enable_state = bp_enabled;
6584 found = 1;
6585 }
6586 }
6587
6588 if (found)
6589 breakpoint_re_set ();
6590}
6591
c906108c
SS
6592
6593/* Set a breakpoint that will evaporate an end of command
6594 at address specified by SAL.
6595 Restrict it to frame FRAME if FRAME is nonzero. */
6596
6597struct breakpoint *
a6d9a66e
UW
6598set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
6599 struct frame_id frame_id, enum bptype type)
c906108c 6600{
52f0bd74 6601 struct breakpoint *b;
edb3359d
DJ
6602
6603 /* If FRAME_ID is valid, it should be a real frame, not an inlined
6604 one. */
6605 gdb_assert (!frame_id_inlined_p (frame_id));
6606
a6d9a66e 6607 b = set_raw_breakpoint (gdbarch, sal, type);
b5de0fa7
EZ
6608 b->enable_state = bp_enabled;
6609 b->disposition = disp_donttouch;
818dd999 6610 b->frame_id = frame_id;
c906108c
SS
6611
6612 /* If we're debugging a multi-threaded program, then we
6613 want momentary breakpoints to be active in only a
6614 single thread of control. */
39f77062
KB
6615 if (in_thread_list (inferior_ptid))
6616 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 6617
b60e7edf 6618 update_global_location_list_nothrow (1);
74960c60 6619
c906108c
SS
6620 return b;
6621}
611c83ae 6622
e58b0e63
PA
6623/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
6624 ORIG is NULL. */
6625
6626struct breakpoint *
6627clone_momentary_breakpoint (struct breakpoint *orig)
6628{
6629 struct breakpoint *copy;
6630
6631 /* If there's nothing to clone, then return nothing. */
6632 if (orig == NULL)
6633 return NULL;
6634
a6d9a66e 6635 copy = set_raw_breakpoint_without_location (orig->gdbarch, orig->type);
e58b0e63
PA
6636 copy->loc = allocate_bp_location (copy);
6637 set_breakpoint_location_function (copy->loc);
6638
a6d9a66e 6639 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
6640 copy->loc->requested_address = orig->loc->requested_address;
6641 copy->loc->address = orig->loc->address;
6642 copy->loc->section = orig->loc->section;
6c95b8df 6643 copy->loc->pspace = orig->loc->pspace;
e58b0e63
PA
6644
6645 if (orig->source_file == NULL)
6646 copy->source_file = NULL;
6647 else
6648 copy->source_file = xstrdup (orig->source_file);
6649
6650 copy->line_number = orig->line_number;
6651 copy->frame_id = orig->frame_id;
6652 copy->thread = orig->thread;
6c95b8df 6653 copy->pspace = orig->pspace;
e58b0e63
PA
6654
6655 copy->enable_state = bp_enabled;
6656 copy->disposition = disp_donttouch;
6657 copy->number = internal_breakpoint_number--;
6658
6659 update_global_location_list_nothrow (0);
6660 return copy;
6661}
6662
611c83ae 6663struct breakpoint *
a6d9a66e
UW
6664set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
6665 enum bptype type)
611c83ae
PA
6666{
6667 struct symtab_and_line sal;
6668
6669 sal = find_pc_line (pc, 0);
6670 sal.pc = pc;
6671 sal.section = find_pc_overlay (pc);
6672 sal.explicit_pc = 1;
6673
a6d9a66e 6674 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 6675}
c906108c 6676\f
c5aa993b 6677
c906108c
SS
6678/* Tell the user we have just set a breakpoint B. */
6679
6680static void
fba45db2 6681mention (struct breakpoint *b)
c906108c
SS
6682{
6683 int say_where = 0;
fa8a61dc 6684 struct cleanup *ui_out_chain;
79a45b7d
TT
6685 struct value_print_options opts;
6686
6687 get_user_print_options (&opts);
8b93c638 6688
9a4105ab
AC
6689 /* FIXME: This is misplaced; mention() is called by things (like
6690 hitting a watchpoint) other than breakpoint creation. It should
6691 be possible to clean this up and at the same time replace the
7f4b89d1 6692 random calls to breakpoint_changed with this hook. */
383f836e 6693 observer_notify_breakpoint_created (b->number);
c906108c 6694
3086aeae
DJ
6695 if (b->ops != NULL && b->ops->print_mention != NULL)
6696 b->ops->print_mention (b);
6697 else
6698 switch (b->type)
6699 {
6700 case bp_none:
a3f17187 6701 printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
3086aeae
DJ
6702 break;
6703 case bp_watchpoint:
6704 ui_out_text (uiout, "Watchpoint ");
6705 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
6706 ui_out_field_int (uiout, "number", b->number);
6707 ui_out_text (uiout, ": ");
fa8a61dc 6708 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
6709 do_cleanups (ui_out_chain);
6710 break;
6711 case bp_hardware_watchpoint:
6712 ui_out_text (uiout, "Hardware watchpoint ");
6713 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
6714 ui_out_field_int (uiout, "number", b->number);
6715 ui_out_text (uiout, ": ");
fa8a61dc 6716 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
6717 do_cleanups (ui_out_chain);
6718 break;
6719 case bp_read_watchpoint:
6720 ui_out_text (uiout, "Hardware read watchpoint ");
6721 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
6722 ui_out_field_int (uiout, "number", b->number);
6723 ui_out_text (uiout, ": ");
fa8a61dc 6724 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
6725 do_cleanups (ui_out_chain);
6726 break;
6727 case bp_access_watchpoint:
6728 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
6729 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
6730 ui_out_field_int (uiout, "number", b->number);
6731 ui_out_text (uiout, ": ");
fa8a61dc 6732 ui_out_field_string (uiout, "exp", b->exp_string);
3086aeae
DJ
6733 do_cleanups (ui_out_chain);
6734 break;
6735 case bp_breakpoint:
6736 if (ui_out_is_mi_like_p (uiout))
6737 {
6738 say_where = 0;
6739 break;
6740 }
2cec12e5
AR
6741 if (b->disposition == disp_del)
6742 printf_filtered (_("Temporary breakpoint"));
6743 else
6744 printf_filtered (_("Breakpoint"));
6745 printf_filtered (_(" %d"), b->number);
3086aeae
DJ
6746 say_where = 1;
6747 break;
6748 case bp_hardware_breakpoint:
6749 if (ui_out_is_mi_like_p (uiout))
6750 {
6751 say_where = 0;
6752 break;
6753 }
a3f17187 6754 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
3086aeae
DJ
6755 say_where = 1;
6756 break;
1042e4c0
SS
6757 case bp_tracepoint:
6758 if (ui_out_is_mi_like_p (uiout))
6759 {
6760 say_where = 0;
6761 break;
6762 }
6763 printf_filtered (_("Tracepoint"));
6764 printf_filtered (_(" %d"), b->number);
6765 say_where = 1;
6766 break;
7a697b8d
SS
6767 case bp_fast_tracepoint:
6768 if (ui_out_is_mi_like_p (uiout))
6769 {
6770 say_where = 0;
6771 break;
6772 }
6773 printf_filtered (_("Fast tracepoint"));
6774 printf_filtered (_(" %d"), b->number);
6775 say_where = 1;
6776 break;
0fb4aa4b
PA
6777 case bp_static_tracepoint:
6778 if (ui_out_is_mi_like_p (uiout))
6779 {
6780 say_where = 0;
6781 break;
6782 }
6783 printf_filtered (_("Static tracepoint"));
6784 printf_filtered (_(" %d"), b->number);
6785 say_where = 1;
6786 break;
3086aeae
DJ
6787
6788 case bp_until:
6789 case bp_finish:
6790 case bp_longjmp:
6791 case bp_longjmp_resume:
6792 case bp_step_resume:
3086aeae 6793 case bp_call_dummy:
aa7d318d 6794 case bp_std_terminate:
3086aeae
DJ
6795 case bp_watchpoint_scope:
6796 case bp_shlib_event:
6797 case bp_thread_event:
6798 case bp_overlay_event:
4efc6507 6799 case bp_jit_event:
0fd8e87f 6800 case bp_longjmp_master:
aa7d318d 6801 case bp_std_terminate_master:
3086aeae
DJ
6802 break;
6803 }
c906108c 6804
c906108c
SS
6805 if (say_where)
6806 {
a3f17187
AC
6807 /* i18n: cagney/2005-02-11: Below needs to be merged into a
6808 single string. */
0d381245 6809 if (b->loc == NULL)
c906108c 6810 {
a3f17187 6811 printf_filtered (_(" (%s) pending."), b->addr_string);
0101ce28
JJ
6812 }
6813 else
6814 {
79a45b7d 6815 if (opts.addressprint || b->source_file == NULL)
0101ce28
JJ
6816 {
6817 printf_filtered (" at ");
5af949e3
UW
6818 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
6819 gdb_stdout);
0101ce28
JJ
6820 }
6821 if (b->source_file)
6822 printf_filtered (": file %s, line %d.",
6823 b->source_file, b->line_number);
0d381245
VP
6824
6825 if (b->loc->next)
6826 {
6827 struct bp_location *loc = b->loc;
6828 int n = 0;
6829 for (; loc; loc = loc->next)
6830 ++n;
6831 printf_filtered (" (%d locations)", n);
6832 }
6833
c906108c 6834 }
c906108c 6835 }
9dc5e2a9 6836 if (ui_out_is_mi_like_p (uiout))
fb40c209 6837 return;
c906108c
SS
6838 printf_filtered ("\n");
6839}
c906108c 6840\f
c5aa993b 6841
0d381245 6842static struct bp_location *
39d61571 6843add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
6844 const struct symtab_and_line *sal)
6845{
6846 struct bp_location *loc, **tmp;
6847
39d61571 6848 loc = allocate_bp_location (b);
0d381245
VP
6849 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
6850 ;
6851 *tmp = loc;
a6d9a66e
UW
6852 loc->gdbarch = get_sal_arch (*sal);
6853 if (!loc->gdbarch)
6854 loc->gdbarch = b->gdbarch;
0d381245 6855 loc->requested_address = sal->pc;
a6d9a66e
UW
6856 loc->address = adjust_breakpoint_address (loc->gdbarch,
6857 loc->requested_address, b->type);
6c95b8df
PA
6858 loc->pspace = sal->pspace;
6859 gdb_assert (loc->pspace != NULL);
0d381245
VP
6860 loc->section = sal->section;
6861
6862 set_breakpoint_location_function (loc);
6863 return loc;
6864}
514f746b
AR
6865\f
6866
6867/* Return 1 if LOC is pointing to a permanent breakpoint,
6868 return 0 otherwise. */
6869
6870static int
6871bp_loc_is_permanent (struct bp_location *loc)
6872{
6873 int len;
6874 CORE_ADDR addr;
6875 const gdb_byte *brk;
6876 gdb_byte *target_mem;
939c61fa
JK
6877 struct cleanup *cleanup;
6878 int retval = 0;
514f746b
AR
6879
6880 gdb_assert (loc != NULL);
6881
6882 addr = loc->address;
a6d9a66e 6883 brk = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len);
514f746b 6884
939c61fa
JK
6885 /* Software breakpoints unsupported? */
6886 if (brk == NULL)
6887 return 0;
6888
514f746b
AR
6889 target_mem = alloca (len);
6890
939c61fa
JK
6891 /* Enable the automatic memory restoration from breakpoints while
6892 we read the memory. Otherwise we could say about our temporary
6893 breakpoints they are permanent. */
6c95b8df
PA
6894 cleanup = save_current_space_and_thread ();
6895
6896 switch_to_program_space_and_thread (loc->pspace);
6897 make_show_memory_breakpoints_cleanup (0);
939c61fa 6898
514f746b
AR
6899 if (target_read_memory (loc->address, target_mem, len) == 0
6900 && memcmp (target_mem, brk, len) == 0)
939c61fa 6901 retval = 1;
514f746b 6902
939c61fa
JK
6903 do_cleanups (cleanup);
6904
6905 return retval;
514f746b
AR
6906}
6907
6908
c3f6f71d 6909
018d34a4
VP
6910/* Create a breakpoint with SAL as location. Use ADDR_STRING
6911 as textual description of the location, and COND_STRING
db107f19 6912 as condition expression. */
018d34a4
VP
6913
6914static void
8cdf0e15
VP
6915create_breakpoint_sal (struct gdbarch *gdbarch,
6916 struct symtabs_and_lines sals, char *addr_string,
6917 char *cond_string,
6918 enum bptype type, enum bpdisp disposition,
6919 int thread, int task, int ignore_count,
6920 struct breakpoint_ops *ops, int from_tty, int enabled)
018d34a4 6921{
0d381245
VP
6922 struct breakpoint *b = NULL;
6923 int i;
018d34a4
VP
6924
6925 if (type == bp_hardware_breakpoint)
6926 {
6927 int i = hw_breakpoint_used_count ();
6928 int target_resources_ok =
d92524f1 6929 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
6930 i + 1, 0);
6931 if (target_resources_ok == 0)
6932 error (_("No hardware breakpoint support in the target."));
6933 else if (target_resources_ok < 0)
6934 error (_("Hardware breakpoints used exceeds limit."));
6935 }
6936
6c95b8df
PA
6937 gdb_assert (sals.nelts > 0);
6938
0d381245
VP
6939 for (i = 0; i < sals.nelts; ++i)
6940 {
6941 struct symtab_and_line sal = sals.sals[i];
6942 struct bp_location *loc;
6943
6944 if (from_tty)
5af949e3
UW
6945 {
6946 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
6947 if (!loc_gdbarch)
6948 loc_gdbarch = gdbarch;
6949
6950 describe_other_breakpoints (loc_gdbarch,
6c95b8df 6951 sal.pspace, sal.pc, sal.section, thread);
5af949e3 6952 }
0d381245
VP
6953
6954 if (i == 0)
6955 {
a6d9a66e 6956 b = set_raw_breakpoint (gdbarch, sal, type);
0d381245
VP
6957 set_breakpoint_count (breakpoint_count + 1);
6958 b->number = breakpoint_count;
6959 b->thread = thread;
4a306c9a 6960 b->task = task;
018d34a4 6961
0d381245
VP
6962 b->cond_string = cond_string;
6963 b->ignore_count = ignore_count;
41447f92 6964 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 6965 b->disposition = disposition;
6c95b8df
PA
6966 b->pspace = sals.sals[0].pspace;
6967
0fb4aa4b
PA
6968 if (type == bp_static_tracepoint)
6969 {
6970 struct static_tracepoint_marker marker;
6971
6972 if (is_marker_spec (addr_string))
6973 {
6974 /* We already know the marker exists, otherwise, we
6975 wouldn't see a sal for it. */
6976 char *p = &addr_string[3];
6977 char *endp;
6978 char *marker_str;
6979 int i;
6980
6981 while (*p == ' ' || *p == '\t')
6982 p++;
6983
6984 endp = p;
6985 while (*endp != ' ' && *endp != '\t' && *endp != '\0')
6986 endp++;
6987
6988 marker_str = savestring (p, endp - p);
6989 b->static_trace_marker_id = marker_str;
6990
6991 printf_filtered (_("Probed static tracepoint marker \"%s\"\n"),
6992 b->static_trace_marker_id);
6993 }
6994 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
6995 {
6996 b->static_trace_marker_id = xstrdup (marker.str_id);
6997 release_static_tracepoint_marker (&marker);
6998
6999 printf_filtered (_("Probed static tracepoint marker \"%s\"\n"),
7000 b->static_trace_marker_id);
7001 }
7002 else
7003 warning (_("\
7004Couldn't determine the static tracepoint marker to probe"));
7005 }
7006
6c95b8df 7007 if (enabled && b->pspace->executing_startup
8bea4e01
UW
7008 && (b->type == bp_breakpoint
7009 || b->type == bp_hardware_breakpoint))
7010 b->enable_state = bp_startup_disabled;
7011
0d381245
VP
7012 loc = b->loc;
7013 }
7014 else
018d34a4 7015 {
39d61571 7016 loc = add_location_to_breakpoint (b, &sal);
0d381245
VP
7017 }
7018
514f746b
AR
7019 if (bp_loc_is_permanent (loc))
7020 make_breakpoint_permanent (b);
7021
0d381245
VP
7022 if (b->cond_string)
7023 {
7024 char *arg = b->cond_string;
d32a6982 7025 loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
0d381245 7026 if (*arg)
db107f19 7027 error (_("Garbage %s follows condition"), arg);
018d34a4 7028 }
0d381245 7029 }
018d34a4
VP
7030
7031 if (addr_string)
7032 b->addr_string = addr_string;
7033 else
7034 /* addr_string has to be used or breakpoint_re_set will delete
7035 me. */
5af949e3
UW
7036 b->addr_string
7037 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
018d34a4 7038
604133b5 7039 b->ops = ops;
018d34a4
VP
7040 mention (b);
7041}
7042
ed0616c6
VP
7043/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
7044 elements to fill the void space. */
2c0b251b
PA
7045static void
7046remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
ed0616c6
VP
7047{
7048 int i = index_to_remove+1;
7049 int last_index = sal->nelts-1;
7050
7051 for (;i <= last_index; ++i)
7052 sal->sals[i-1] = sal->sals[i];
7053
7054 --(sal->nelts);
7055}
7056
6c95b8df
PA
7057/* If appropriate, obtains all sals that correspond to the same file
7058 and line as SAL, in all program spaces. Users debugging with IDEs,
7059 will want to set a breakpoint at foo.c:line, and not really care
7060 about program spaces. This is done only if SAL does not have
7061 explicit PC and has line and file information. If we got just a
7062 single expanded sal, return the original.
ed0616c6 7063
6c95b8df
PA
7064 Otherwise, if SAL.explicit_line is not set, filter out all sals for
7065 which the name of enclosing function is different from SAL. This
7066 makes sure that if we have breakpoint originally set in template
7067 instantiation, say foo<int>(), we won't expand SAL to locations at
7068 the same line in all existing instantiations of 'foo'. */
ed0616c6 7069
2c0b251b 7070static struct symtabs_and_lines
ed0616c6
VP
7071expand_line_sal_maybe (struct symtab_and_line sal)
7072{
7073 struct symtabs_and_lines expanded;
7074 CORE_ADDR original_pc = sal.pc;
7075 char *original_function = NULL;
7076 int found;
7077 int i;
6c95b8df 7078 struct cleanup *old_chain;
ed0616c6
VP
7079
7080 /* If we have explicit pc, don't expand.
7081 If we have no line number, we can't expand. */
7082 if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
7083 {
7084 expanded.nelts = 1;
7085 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7086 expanded.sals[0] = sal;
7087 return expanded;
7088 }
7089
7090 sal.pc = 0;
6c95b8df
PA
7091
7092 old_chain = save_current_space_and_thread ();
7093
7094 switch_to_program_space_and_thread (sal.pspace);
7095
ed0616c6 7096 find_pc_partial_function (original_pc, &original_function, NULL, NULL);
6c95b8df
PA
7097
7098 /* Note that expand_line_sal visits *all* program spaces. */
ed0616c6 7099 expanded = expand_line_sal (sal);
6c95b8df 7100
ed0616c6
VP
7101 if (expanded.nelts == 1)
7102 {
3dba1c98
JB
7103 /* We had one sal, we got one sal. Return that sal, adjusting it
7104 past the function prologue if necessary. */
ed0616c6
VP
7105 xfree (expanded.sals);
7106 expanded.nelts = 1;
7107 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7108 sal.pc = original_pc;
7109 expanded.sals[0] = sal;
3dba1c98 7110 skip_prologue_sal (&expanded.sals[0]);
6c95b8df 7111 do_cleanups (old_chain);
ed0616c6
VP
7112 return expanded;
7113 }
7114
7115 if (!sal.explicit_line)
7116 {
7117 CORE_ADDR func_addr, func_end;
7118 for (i = 0; i < expanded.nelts; ++i)
7119 {
7120 CORE_ADDR pc = expanded.sals[i].pc;
7121 char *this_function;
6c95b8df
PA
7122
7123 /* We need to switch threads as well since we're about to
7124 read memory. */
7125 switch_to_program_space_and_thread (expanded.sals[i].pspace);
7126
ed0616c6
VP
7127 if (find_pc_partial_function (pc, &this_function,
7128 &func_addr, &func_end))
7129 {
059fb39f
PM
7130 if (this_function
7131 && strcmp (this_function, original_function) != 0)
ed0616c6
VP
7132 {
7133 remove_sal (&expanded, i);
7134 --i;
7135 }
ed0616c6
VP
7136 }
7137 }
7138 }
059acae7
UW
7139
7140 /* Skip the function prologue if necessary. */
7141 for (i = 0; i < expanded.nelts; ++i)
7142 skip_prologue_sal (&expanded.sals[i]);
ed0616c6 7143
6c95b8df
PA
7144 do_cleanups (old_chain);
7145
ed0616c6
VP
7146 if (expanded.nelts <= 1)
7147 {
7148 /* This is un ugly workaround. If we get zero
7149 expanded sals then something is really wrong.
7150 Fix that by returnign the original sal. */
7151 xfree (expanded.sals);
7152 expanded.nelts = 1;
7153 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7154 sal.pc = original_pc;
7155 expanded.sals[0] = sal;
7156 return expanded;
7157 }
7158
7159 if (original_pc)
7160 {
7161 found = 0;
7162 for (i = 0; i < expanded.nelts; ++i)
7163 if (expanded.sals[i].pc == original_pc)
7164 {
7165 found = 1;
7166 break;
7167 }
7168 gdb_assert (found);
7169 }
7170
7171 return expanded;
7172}
7173
018d34a4
VP
7174/* Add SALS.nelts breakpoints to the breakpoint table. For each
7175 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
7176 value. COND_STRING, if not NULL, specified the condition to be
7177 used for all breakpoints. Essentially the only case where
7178 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
7179 function. In that case, it's still not possible to specify
7180 separate conditions for different overloaded functions, so
7181 we take just a single condition string.
7182
c3f6f71d 7183 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 7184 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
7185 array contents). If the function fails (error() is called), the
7186 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
7187 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
7188
7189static void
8cdf0e15
VP
7190create_breakpoints_sal (struct gdbarch *gdbarch,
7191 struct symtabs_and_lines sals, char **addr_string,
7192 char *cond_string,
7193 enum bptype type, enum bpdisp disposition,
7194 int thread, int task, int ignore_count,
7195 struct breakpoint_ops *ops, int from_tty,
7196 int enabled)
c906108c 7197{
018d34a4 7198 int i;
cc59ec59 7199
018d34a4 7200 for (i = 0; i < sals.nelts; ++i)
c3f6f71d 7201 {
ed0616c6
VP
7202 struct symtabs_and_lines expanded =
7203 expand_line_sal_maybe (sals.sals[i]);
0d381245 7204
8cdf0e15
VP
7205 create_breakpoint_sal (gdbarch, expanded, addr_string[i],
7206 cond_string, type, disposition,
7207 thread, task, ignore_count, ops, from_tty, enabled);
c3f6f71d 7208 }
c3f6f71d 7209}
c906108c 7210
c3f6f71d
JM
7211/* Parse ARG which is assumed to be a SAL specification possibly
7212 followed by conditionals. On return, SALS contains an array of SAL
7213 addresses found. ADDR_STRING contains a vector of (canonical)
7214 address strings. ARG points to the end of the SAL. */
c906108c 7215
b9362cc7 7216static void
c3f6f71d
JM
7217parse_breakpoint_sals (char **address,
7218 struct symtabs_and_lines *sals,
0101ce28
JJ
7219 char ***addr_string,
7220 int *not_found_ptr)
c3f6f71d
JM
7221{
7222 char *addr_start = *address;
cc59ec59 7223
c3f6f71d
JM
7224 *addr_string = NULL;
7225 /* If no arg given, or if first arg is 'if ', use the default
7226 breakpoint. */
7227 if ((*address) == NULL
7228 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c
SS
7229 {
7230 if (default_breakpoint_valid)
7231 {
c3f6f71d 7232 struct symtab_and_line sal;
cc59ec59 7233
fe39c653 7234 init_sal (&sal); /* initialize to zeroes */
c3f6f71d 7235 sals->sals = (struct symtab_and_line *)
c906108c
SS
7236 xmalloc (sizeof (struct symtab_and_line));
7237 sal.pc = default_breakpoint_address;
7238 sal.line = default_breakpoint_line;
7239 sal.symtab = default_breakpoint_symtab;
6c95b8df 7240 sal.pspace = default_breakpoint_pspace;
c5aa993b 7241 sal.section = find_pc_overlay (sal.pc);
00903456
JK
7242
7243 /* "break" without arguments is equivalent to "break *PC" where PC is
7244 the default_breakpoint_address. So make sure to set
7245 sal.explicit_pc to prevent GDB from trying to expand the list of
7246 sals to include all other instances with the same symtab and line.
7247 */
7248 sal.explicit_pc = 1;
7249
c3f6f71d
JM
7250 sals->sals[0] = sal;
7251 sals->nelts = 1;
c906108c
SS
7252 }
7253 else
8a3fe4f8 7254 error (_("No default breakpoint address now."));
c906108c
SS
7255 }
7256 else
7257 {
c906108c 7258 /* Force almost all breakpoints to be in terms of the
c5aa993b
JM
7259 current_source_symtab (which is decode_line_1's default). This
7260 should produce the results we want almost all of the time while
1aeae86e
AF
7261 leaving default_breakpoint_* alone.
7262 ObjC: However, don't match an Objective-C method name which
7263 may have a '+' or '-' succeeded by a '[' */
0378c332 7264
c214a6fd 7265 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
0378c332 7266
c906108c 7267 if (default_breakpoint_valid
0378c332 7268 && (!cursal.symtab
1aeae86e
AF
7269 || ((strchr ("+-", (*address)[0]) != NULL)
7270 && ((*address)[1] != '['))))
c3f6f71d 7271 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
0101ce28
JJ
7272 default_breakpoint_line, addr_string,
7273 not_found_ptr);
c906108c 7274 else
0101ce28
JJ
7275 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
7276 addr_string, not_found_ptr);
c906108c 7277 }
c3f6f71d
JM
7278 /* For any SAL that didn't have a canonical string, fill one in. */
7279 if (sals->nelts > 0 && *addr_string == NULL)
7280 *addr_string = xcalloc (sals->nelts, sizeof (char **));
7281 if (addr_start != (*address))
c906108c 7282 {
c3f6f71d 7283 int i;
cc59ec59 7284
c3f6f71d 7285 for (i = 0; i < sals->nelts; i++)
c906108c 7286 {
c3f6f71d
JM
7287 /* Add the string if not present. */
7288 if ((*addr_string)[i] == NULL)
cc59ec59
MS
7289 (*addr_string)[i] = savestring (addr_start,
7290 (*address) - addr_start);
c906108c
SS
7291 }
7292 }
c3f6f71d 7293}
c906108c 7294
c906108c 7295
c3f6f71d
JM
7296/* Convert each SAL into a real PC. Verify that the PC can be
7297 inserted as a breakpoint. If it can't throw an error. */
c906108c 7298
b9362cc7 7299static void
23e7acfb 7300breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
7301{
7302 int i;
cc59ec59 7303
c3f6f71d 7304 for (i = 0; i < sals->nelts; i++)
ee53e872 7305 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
7306}
7307
7a697b8d
SS
7308/* Fast tracepoints may have restrictions on valid locations. For
7309 instance, a fast tracepoint using a jump instead of a trap will
7310 likely have to overwrite more bytes than a trap would, and so can
7311 only be placed where the instruction is longer than the jump, or a
7312 multi-instruction sequence does not have a jump into the middle of
7313 it, etc. */
7314
7315static void
7316check_fast_tracepoint_sals (struct gdbarch *gdbarch,
7317 struct symtabs_and_lines *sals)
7318{
7319 int i, rslt;
7320 struct symtab_and_line *sal;
7321 char *msg;
7322 struct cleanup *old_chain;
7323
7324 for (i = 0; i < sals->nelts; i++)
7325 {
7326 sal = &sals->sals[i];
7327
7328 rslt = gdbarch_fast_tracepoint_valid_at (gdbarch, sal->pc,
7329 NULL, &msg);
7330 old_chain = make_cleanup (xfree, msg);
7331
7332 if (!rslt)
7333 error (_("May not have a fast tracepoint at 0x%s%s"),
7334 paddress (gdbarch, sal->pc), (msg ? msg : ""));
7335
7336 do_cleanups (old_chain);
7337 }
7338}
7339
05ff989b 7340static void
0101ce28
JJ
7341do_captured_parse_breakpoint (struct ui_out *ui, void *data)
7342{
7343 struct captured_parse_breakpoint_args *args = data;
7344
7345 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
7346 args->not_found_ptr);
0101ce28
JJ
7347}
7348
018d34a4
VP
7349/* Given TOK, a string specification of condition and thread, as
7350 accepted by the 'break' command, extract the condition
7351 string and thread number and set *COND_STRING and *THREAD.
7352 PC identifies the context at which the condition should be parsed.
7353 If no condition is found, *COND_STRING is set to NULL.
7354 If no thread is found, *THREAD is set to -1. */
7355static void
7356find_condition_and_thread (char *tok, CORE_ADDR pc,
4a306c9a 7357 char **cond_string, int *thread, int *task)
018d34a4
VP
7358{
7359 *cond_string = NULL;
7360 *thread = -1;
7361 while (tok && *tok)
7362 {
7363 char *end_tok;
7364 int toklen;
7365 char *cond_start = NULL;
7366 char *cond_end = NULL;
cc59ec59 7367
018d34a4
VP
7368 while (*tok == ' ' || *tok == '\t')
7369 tok++;
7370
7371 end_tok = tok;
7372
7373 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
7374 end_tok++;
7375
7376 toklen = end_tok - tok;
7377
7378 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
7379 {
f7545552
TT
7380 struct expression *expr;
7381
018d34a4 7382 tok = cond_start = end_tok + 1;
f7545552
TT
7383 expr = parse_exp_1 (&tok, block_for_pc (pc), 0);
7384 xfree (expr);
018d34a4
VP
7385 cond_end = tok;
7386 *cond_string = savestring (cond_start,
7387 cond_end - cond_start);
7388 }
7389 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
7390 {
7391 char *tmptok;
7392
7393 tok = end_tok + 1;
7394 tmptok = tok;
7395 *thread = strtol (tok, &tok, 0);
7396 if (tok == tmptok)
7397 error (_("Junk after thread keyword."));
7398 if (!valid_thread_id (*thread))
7399 error (_("Unknown thread %d."), *thread);
7400 }
4a306c9a
JB
7401 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
7402 {
7403 char *tmptok;
7404
7405 tok = end_tok + 1;
7406 tmptok = tok;
7407 *task = strtol (tok, &tok, 0);
7408 if (tok == tmptok)
7409 error (_("Junk after task keyword."));
7410 if (!valid_task_id (*task))
b6199126 7411 error (_("Unknown task %d."), *task);
4a306c9a 7412 }
018d34a4
VP
7413 else
7414 error (_("Junk at end of arguments."));
7415 }
7416}
7417
0fb4aa4b
PA
7418/* Decode a static tracepoint marker spec. */
7419
7420static struct symtabs_and_lines
7421decode_static_tracepoint_spec (char **arg_p)
7422{
7423 VEC(static_tracepoint_marker_p) *markers = NULL;
7424 struct symtabs_and_lines sals;
7425 struct symtab_and_line sal;
7426 struct symbol *sym;
7427 struct cleanup *old_chain;
7428 char *p = &(*arg_p)[3];
7429 char *endp;
7430 char *marker_str;
7431 int i;
7432
7433 while (*p == ' ' || *p == '\t')
7434 p++;
7435
7436 endp = p;
7437 while (*endp != ' ' && *endp != '\t' && *endp != '\0')
7438 endp++;
7439
7440 marker_str = savestring (p, endp - p);
7441 old_chain = make_cleanup (xfree, marker_str);
7442
7443 markers = target_static_tracepoint_markers_by_strid (marker_str);
7444 if (VEC_empty(static_tracepoint_marker_p, markers))
7445 error (_("No known static tracepoint marker named %s"), marker_str);
7446
7447 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
7448 sals.sals = xmalloc (sizeof *sals.sals * sals.nelts);
7449
7450 for (i = 0; i < sals.nelts; i++)
7451 {
7452 struct static_tracepoint_marker *marker;
7453
7454 marker = VEC_index (static_tracepoint_marker_p, markers, i);
7455
7456 init_sal (&sals.sals[i]);
7457
7458 sals.sals[i] = find_pc_line (marker->address, 0);
7459 sals.sals[i].pc = marker->address;
7460
7461 release_static_tracepoint_marker (marker);
7462 }
7463
7464 do_cleanups (old_chain);
7465
7466 *arg_p = endp;
7467 return sals;
7468}
7469
fd9b8c24
PA
7470/* Set a breakpoint. This function is shared between CLI and MI
7471 functions for setting a breakpoint. This function has two major
7472 modes of operations, selected by the PARSE_CONDITION_AND_THREAD
7473 parameter. If non-zero, the function will parse arg, extracting
7474 breakpoint location, address and thread. Otherwise, ARG is just the
7475 location of breakpoint, with condition and thread specified by the
7476 COND_STRING and THREAD parameters. Returns true if any breakpoint
7477 was created; false otherwise. */
0101ce28 7478
8cdf0e15
VP
7479int
7480create_breakpoint (struct gdbarch *gdbarch,
7481 char *arg, char *cond_string, int thread,
7482 int parse_condition_and_thread,
0fb4aa4b 7483 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
7484 int ignore_count,
7485 enum auto_boolean pending_break_support,
7486 struct breakpoint_ops *ops,
7487 int from_tty,
7488 int enabled)
c3f6f71d 7489{
71fff37b 7490 struct gdb_exception e;
c3f6f71d 7491 struct symtabs_and_lines sals;
0101ce28 7492 struct symtab_and_line pending_sal;
0101ce28 7493 char *copy_arg;
c3f6f71d
JM
7494 char *addr_start = arg;
7495 char **addr_string;
7496 struct cleanup *old_chain;
80c99de1 7497 struct cleanup *bkpt_chain = NULL;
0101ce28 7498 struct captured_parse_breakpoint_args parse_args;
05ff989b 7499 int i;
0101ce28 7500 int pending = 0;
0101ce28 7501 int not_found = 0;
4a306c9a 7502 int task = 0;
86b17b60 7503 int prev_bkpt_count = breakpoint_count;
c3f6f71d 7504
c3f6f71d
JM
7505 sals.sals = NULL;
7506 sals.nelts = 0;
7507 addr_string = NULL;
c3f6f71d 7508
0101ce28
JJ
7509 parse_args.arg_p = &arg;
7510 parse_args.sals_p = &sals;
7511 parse_args.addr_string_p = &addr_string;
7512 parse_args.not_found_ptr = &not_found;
7513
0fb4aa4b
PA
7514 if (type_wanted == bp_static_tracepoint && is_marker_spec (arg))
7515 {
7516 int i;
7517
7518 sals = decode_static_tracepoint_spec (&arg);
7519
7520 copy_arg = savestring (addr_start, arg - addr_start);
7521 addr_string = xcalloc (sals.nelts, sizeof (char **));
7522 for (i = 0; i < sals.nelts; i++)
7523 addr_string[i] = xstrdup (copy_arg);
7524 goto done;
7525 }
7526
05ff989b
AC
7527 e = catch_exception (uiout, do_captured_parse_breakpoint,
7528 &parse_args, RETURN_MASK_ALL);
0101ce28
JJ
7529
7530 /* If caller is interested in rc value from parse, set value. */
05ff989b 7531 switch (e.reason)
0101ce28 7532 {
05ff989b 7533 case RETURN_QUIT:
98deb0da 7534 throw_exception (e);
05ff989b
AC
7535 case RETURN_ERROR:
7536 switch (e.error)
0101ce28 7537 {
05ff989b 7538 case NOT_FOUND_ERROR:
0101ce28 7539
05ff989b
AC
7540 /* If pending breakpoint support is turned off, throw
7541 error. */
fa8d40ab
JJ
7542
7543 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
7544 throw_exception (e);
7545
7546 exception_print (gdb_stderr, e);
fa8d40ab 7547
05ff989b
AC
7548 /* If pending breakpoint support is auto query and the user
7549 selects no, then simply return the error code. */
059fb39f
PM
7550 if (pending_break_support == AUTO_BOOLEAN_AUTO
7551 && !nquery ("Make breakpoint pending on future shared library load? "))
fd9b8c24 7552 return 0;
fa8d40ab 7553
05ff989b
AC
7554 /* At this point, either the user was queried about setting
7555 a pending breakpoint and selected yes, or pending
7556 breakpoint behavior is on and thus a pending breakpoint
7557 is defaulted on behalf of the user. */
0101ce28
JJ
7558 copy_arg = xstrdup (addr_start);
7559 addr_string = &copy_arg;
7560 sals.nelts = 1;
7561 sals.sals = &pending_sal;
7562 pending_sal.pc = 0;
7563 pending = 1;
05ff989b
AC
7564 break;
7565 default:
98deb0da 7566 throw_exception (e);
0101ce28 7567 }
05ff989b
AC
7568 default:
7569 if (!sals.nelts)
fd9b8c24 7570 return 0;
0101ce28 7571 }
c3f6f71d 7572
0fb4aa4b
PA
7573 done:
7574
c3f6f71d
JM
7575 /* Create a chain of things that always need to be cleaned up. */
7576 old_chain = make_cleanup (null_cleanup, 0);
7577
0101ce28
JJ
7578 if (!pending)
7579 {
7580 /* Make sure that all storage allocated to SALS gets freed. */
7581 make_cleanup (xfree, sals.sals);
7582
7583 /* Cleanup the addr_string array but not its contents. */
7584 make_cleanup (xfree, addr_string);
7585 }
c3f6f71d 7586
c3f6f71d
JM
7587 /* ----------------------------- SNIP -----------------------------
7588 Anything added to the cleanup chain beyond this point is assumed
7589 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
7590 then the memory is not reclaimed. */
7591 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d
JM
7592
7593 /* Mark the contents of the addr_string for cleanup. These go on
80c99de1 7594 the bkpt_chain and only occur if the breakpoint create fails. */
c3f6f71d
JM
7595 for (i = 0; i < sals.nelts; i++)
7596 {
7597 if (addr_string[i] != NULL)
b8c9b27d 7598 make_cleanup (xfree, addr_string[i]);
c3f6f71d
JM
7599 }
7600
7601 /* Resolve all line numbers to PC's and verify that the addresses
7602 are ok for the target. */
0101ce28 7603 if (!pending)
23e7acfb 7604 breakpoint_sals_to_pc (&sals);
c3f6f71d 7605
7a697b8d
SS
7606 /* Fast tracepoints may have additional restrictions on location. */
7607 if (type_wanted == bp_fast_tracepoint)
7608 check_fast_tracepoint_sals (gdbarch, &sals);
7609
c3f6f71d
JM
7610 /* Verify that condition can be parsed, before setting any
7611 breakpoints. Allocate a separate condition expression for each
7612 breakpoint. */
0101ce28 7613 if (!pending)
c3f6f71d 7614 {
2f069f6f 7615 if (parse_condition_and_thread)
72b2ff0e
VP
7616 {
7617 /* Here we only parse 'arg' to separate condition
7618 from thread number, so parsing in context of first
7619 sal is OK. When setting the breakpoint we'll
7620 re-parse it in context of each sal. */
7621 cond_string = NULL;
7622 thread = -1;
4a306c9a
JB
7623 find_condition_and_thread (arg, sals.sals[0].pc, &cond_string,
7624 &thread, &task);
72b2ff0e
VP
7625 if (cond_string)
7626 make_cleanup (xfree, cond_string);
7627 }
2f069f6f 7628 else
72b2ff0e
VP
7629 {
7630 /* Create a private copy of condition string. */
7631 if (cond_string)
7632 {
7633 cond_string = xstrdup (cond_string);
7634 make_cleanup (xfree, cond_string);
7635 }
7636 }
0fb4aa4b
PA
7637
7638 /* If the user is creating a static tracepoint by marker id
7639 (strace -m MARKER_ID), then store the sals index, so that
7640 breakpoint_re_set can try to match up which of the newly
7641 found markers corresponds to this one, and, don't try to
7642 expand multiple locations for each sal, given than SALS
7643 already should contain all sals for MARKER_ID. */
7644 if (type_wanted == bp_static_tracepoint
7645 && is_marker_spec (addr_string[0]))
7646 {
7647 int i;
7648
7649 for (i = 0; i < sals.nelts; ++i)
7650 {
7651 struct symtabs_and_lines expanded;
7652 struct breakpoint *tp;
7653 struct cleanup *old_chain;
7654
7655 expanded.nelts = 1;
7656 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
7657 expanded.sals[0] = sals.sals[i];
7658 old_chain = make_cleanup (xfree, expanded.sals);
7659
7660 create_breakpoint_sal (gdbarch, expanded, addr_string[i],
7661 cond_string, type_wanted,
7662 tempflag ? disp_del : disp_donttouch,
7663 thread, task, ignore_count, ops,
7664 from_tty, enabled);
7665
7666 do_cleanups (old_chain);
7667
7668 /* Get the tracepoint we just created. */
7669 tp = get_breakpoint (breakpoint_count);
7670 gdb_assert (tp != NULL);
7671
7672 /* Given that its possible to have multiple markers with
7673 the same string id, if the user is creating a static
7674 tracepoint by marker id ("strace -m MARKER_ID"), then
7675 store the sals index, so that breakpoint_re_set can
7676 try to match up which of the newly found markers
7677 corresponds to this one */
7678 tp->static_trace_marker_id_idx = i;
7679 }
7680 }
7681 else
7682 create_breakpoints_sal (gdbarch, sals, addr_string, cond_string,
7683 type_wanted, tempflag ? disp_del : disp_donttouch,
7684 thread, task, ignore_count, ops, from_tty,
7685 enabled);
c906108c 7686 }
0101ce28
JJ
7687 else
7688 {
0101ce28
JJ
7689 struct breakpoint *b;
7690
0101ce28
JJ
7691 make_cleanup (xfree, copy_arg);
7692
a6d9a66e 7693 b = set_raw_breakpoint_without_location (gdbarch, type_wanted);
0101ce28
JJ
7694 set_breakpoint_count (breakpoint_count + 1);
7695 b->number = breakpoint_count;
72b2ff0e 7696 b->thread = -1;
018d34a4 7697 b->addr_string = addr_string[0];
72b2ff0e 7698 b->cond_string = NULL;
0101ce28 7699 b->ignore_count = ignore_count;
0101ce28 7700 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 7701 b->condition_not_parsed = 1;
604133b5 7702 b->ops = ops;
41447f92 7703 b->enable_state = enabled ? bp_enabled : bp_disabled;
6c95b8df 7704 b->pspace = current_program_space;
74960c60 7705
6c95b8df 7706 if (enabled && b->pspace->executing_startup
8bea4e01
UW
7707 && (b->type == bp_breakpoint
7708 || b->type == bp_hardware_breakpoint))
7709 b->enable_state = bp_startup_disabled;
7710
0101ce28
JJ
7711 mention (b);
7712 }
7713
c3f6f71d 7714 if (sals.nelts > 1)
95a42b64
TT
7715 {
7716 warning (_("Multiple breakpoints were set.\n"
7717 "Use the \"delete\" command to delete unwanted breakpoints."));
86b17b60 7718 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
7719 }
7720
80c99de1
PA
7721 /* That's it. Discard the cleanups for data inserted into the
7722 breakpoint. */
7723 discard_cleanups (bkpt_chain);
7724 /* But cleanup everything else. */
c3f6f71d 7725 do_cleanups (old_chain);
217dc9e2 7726
80c99de1 7727 /* error call may happen here - have BKPT_CHAIN already discarded. */
217dc9e2 7728 update_global_location_list (1);
fd9b8c24
PA
7729
7730 return 1;
c3f6f71d 7731}
c906108c 7732
72b2ff0e
VP
7733/* Set a breakpoint.
7734 ARG is a string describing breakpoint address,
7735 condition, and thread.
7736 FLAG specifies if a breakpoint is hardware on,
7737 and if breakpoint is temporary, using BP_HARDWARE_FLAG
7738 and BP_TEMPFLAG. */
7739
98deb0da 7740static void
72b2ff0e 7741break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 7742{
72b2ff0e 7743 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
7744 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
7745 ? bp_hardware_breakpoint
7746 : bp_breakpoint);
c3f6f71d 7747
8cdf0e15
VP
7748 create_breakpoint (get_current_arch (),
7749 arg,
7750 NULL, 0, 1 /* parse arg */,
0fb4aa4b 7751 tempflag, type_wanted,
8cdf0e15
VP
7752 0 /* Ignore count */,
7753 pending_break_support,
7754 NULL /* breakpoint_ops */,
7755 from_tty,
7756 1 /* enabled */);
c906108c
SS
7757}
7758
72b2ff0e 7759
c906108c
SS
7760/* Helper function for break_command_1 and disassemble_command. */
7761
7762void
fba45db2 7763resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
7764{
7765 CORE_ADDR pc;
7766
7767 if (sal->pc == 0 && sal->symtab != NULL)
7768 {
7769 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 7770 error (_("No line %d in file \"%s\"."),
c906108c
SS
7771 sal->line, sal->symtab->filename);
7772 sal->pc = pc;
6a048695
JB
7773
7774 /* If this SAL corresponds to a breakpoint inserted using
7775 a line number, then skip the function prologue if necessary. */
7776 if (sal->explicit_line)
059acae7 7777 skip_prologue_sal (sal);
c906108c
SS
7778 }
7779
7780 if (sal->section == 0 && sal->symtab != NULL)
7781 {
7782 struct blockvector *bv;
c5aa993b
JM
7783 struct block *b;
7784 struct symbol *sym;
c906108c 7785
801e3a5b 7786 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
7787 if (bv != NULL)
7788 {
7f0df278 7789 sym = block_linkage_function (b);
c906108c
SS
7790 if (sym != NULL)
7791 {
7792 fixup_symbol_section (sym, sal->symtab->objfile);
714835d5 7793 sal->section = SYMBOL_OBJ_SECTION (sym);
c906108c
SS
7794 }
7795 else
7796 {
7797 /* It really is worthwhile to have the section, so we'll just
c5aa993b
JM
7798 have to look harder. This case can be executed if we have
7799 line numbers but no functions (as can happen in assembly
7800 source). */
c906108c 7801
c5aa993b 7802 struct minimal_symbol *msym;
6c95b8df
PA
7803 struct cleanup *old_chain = save_current_space_and_thread ();
7804
7805 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
7806
7807 msym = lookup_minimal_symbol_by_pc (sal->pc);
7808 if (msym)
714835d5 7809 sal->section = SYMBOL_OBJ_SECTION (msym);
6c95b8df
PA
7810
7811 do_cleanups (old_chain);
c906108c
SS
7812 }
7813 }
7814 }
7815}
7816
7817void
fba45db2 7818break_command (char *arg, int from_tty)
c906108c 7819{
db107f19 7820 break_command_1 (arg, 0, from_tty);
c906108c
SS
7821}
7822
c906108c 7823void
fba45db2 7824tbreak_command (char *arg, int from_tty)
c906108c 7825{
db107f19 7826 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
7827}
7828
c906108c 7829static void
fba45db2 7830hbreak_command (char *arg, int from_tty)
c906108c 7831{
db107f19 7832 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
7833}
7834
7835static void
fba45db2 7836thbreak_command (char *arg, int from_tty)
c906108c 7837{
db107f19 7838 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
7839}
7840
7841static void
fba45db2 7842stop_command (char *arg, int from_tty)
c906108c 7843{
a3f17187 7844 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 7845Usage: stop in <function | address>\n\
a3f17187 7846 stop at <line>\n"));
c906108c
SS
7847}
7848
7849static void
fba45db2 7850stopin_command (char *arg, int from_tty)
c906108c
SS
7851{
7852 int badInput = 0;
7853
c5aa993b 7854 if (arg == (char *) NULL)
c906108c
SS
7855 badInput = 1;
7856 else if (*arg != '*')
7857 {
7858 char *argptr = arg;
7859 int hasColon = 0;
7860
53a5351d
JM
7861 /* look for a ':'. If this is a line number specification, then
7862 say it is bad, otherwise, it should be an address or
7863 function/method name */
c906108c 7864 while (*argptr && !hasColon)
c5aa993b
JM
7865 {
7866 hasColon = (*argptr == ':');
7867 argptr++;
7868 }
c906108c
SS
7869
7870 if (hasColon)
c5aa993b 7871 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 7872 else
c5aa993b 7873 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
7874 }
7875
7876 if (badInput)
a3f17187 7877 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 7878 else
db107f19 7879 break_command_1 (arg, 0, from_tty);
c906108c
SS
7880}
7881
7882static void
fba45db2 7883stopat_command (char *arg, int from_tty)
c906108c
SS
7884{
7885 int badInput = 0;
7886
c5aa993b 7887 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
7888 badInput = 1;
7889 else
7890 {
7891 char *argptr = arg;
7892 int hasColon = 0;
7893
7894 /* look for a ':'. If there is a '::' then get out, otherwise
c5aa993b 7895 it is probably a line number. */
c906108c 7896 while (*argptr && !hasColon)
c5aa993b
JM
7897 {
7898 hasColon = (*argptr == ':');
7899 argptr++;
7900 }
c906108c
SS
7901
7902 if (hasColon)
c5aa993b 7903 badInput = (*argptr == ':'); /* we have class::method */
c906108c 7904 else
c5aa993b 7905 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
7906 }
7907
7908 if (badInput)
a3f17187 7909 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 7910 else
db107f19 7911 break_command_1 (arg, 0, from_tty);
c906108c
SS
7912}
7913
65d79d4b
SDJ
7914/* Return non-zero if EXP is verified as constant. Returned zero means EXP is
7915 variable. Also the constant detection may fail for some constant
7916 expressions and in such case still falsely return zero. */
7917static int
7918watchpoint_exp_is_const (const struct expression *exp)
7919{
7920 int i = exp->nelts;
7921
7922 while (i > 0)
7923 {
7924 int oplenp, argsp;
7925
7926 /* We are only interested in the descriptor of each element. */
7927 operator_length (exp, i, &oplenp, &argsp);
7928 i -= oplenp;
7929
7930 switch (exp->elts[i].opcode)
7931 {
7932 case BINOP_ADD:
7933 case BINOP_SUB:
7934 case BINOP_MUL:
7935 case BINOP_DIV:
7936 case BINOP_REM:
7937 case BINOP_MOD:
7938 case BINOP_LSH:
7939 case BINOP_RSH:
7940 case BINOP_LOGICAL_AND:
7941 case BINOP_LOGICAL_OR:
7942 case BINOP_BITWISE_AND:
7943 case BINOP_BITWISE_IOR:
7944 case BINOP_BITWISE_XOR:
7945 case BINOP_EQUAL:
7946 case BINOP_NOTEQUAL:
7947 case BINOP_LESS:
7948 case BINOP_GTR:
7949 case BINOP_LEQ:
7950 case BINOP_GEQ:
7951 case BINOP_REPEAT:
7952 case BINOP_COMMA:
7953 case BINOP_EXP:
7954 case BINOP_MIN:
7955 case BINOP_MAX:
7956 case BINOP_INTDIV:
7957 case BINOP_CONCAT:
7958 case BINOP_IN:
7959 case BINOP_RANGE:
7960 case TERNOP_COND:
7961 case TERNOP_SLICE:
7962 case TERNOP_SLICE_COUNT:
7963
7964 case OP_LONG:
7965 case OP_DOUBLE:
7966 case OP_DECFLOAT:
7967 case OP_LAST:
7968 case OP_COMPLEX:
7969 case OP_STRING:
7970 case OP_BITSTRING:
7971 case OP_ARRAY:
7972 case OP_TYPE:
7973 case OP_NAME:
7974 case OP_OBJC_NSSTRING:
7975
7976 case UNOP_NEG:
7977 case UNOP_LOGICAL_NOT:
7978 case UNOP_COMPLEMENT:
7979 case UNOP_ADDR:
7980 case UNOP_HIGH:
7981 /* Unary, binary and ternary operators: We have to check their
7982 operands. If they are constant, then so is the result of
7983 that operation. For instance, if A and B are determined to be
7984 constants, then so is "A + B".
7985
7986 UNOP_IND is one exception to the rule above, because the value
7987 of *ADDR is not necessarily a constant, even when ADDR is. */
7988 break;
7989
7990 case OP_VAR_VALUE:
7991 /* Check whether the associated symbol is a constant.
7992 We use SYMBOL_CLASS rather than TYPE_CONST because it's
7993 possible that a buggy compiler could mark a variable as constant
7994 even when it is not, and TYPE_CONST would return true in this
7995 case, while SYMBOL_CLASS wouldn't.
7996 We also have to check for function symbols because they are
7997 always constant. */
7998 {
7999 struct symbol *s = exp->elts[i + 2].symbol;
8000
8001 if (SYMBOL_CLASS (s) != LOC_BLOCK
8002 && SYMBOL_CLASS (s) != LOC_CONST
8003 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
8004 return 0;
8005 break;
8006 }
8007
8008 /* The default action is to return 0 because we are using
8009 the optimistic approach here: If we don't know something,
8010 then it is not a constant. */
8011 default:
8012 return 0;
8013 }
8014 }
8015
8016 return 1;
8017}
8018
53a5351d
JM
8019/* accessflag: hw_write: watch write,
8020 hw_read: watch read,
8021 hw_access: watch access (read or write) */
c906108c 8022static void
06a64a0b 8023watch_command_1 (char *arg, int accessflag, int from_tty, int just_location)
c906108c 8024{
d983da9c 8025 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c 8026 struct expression *exp;
60e1c644 8027 struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
c906108c
SS
8028 struct value *val, *mark;
8029 struct frame_info *frame;
c906108c
SS
8030 char *exp_start = NULL;
8031 char *exp_end = NULL;
37e4754d 8032 char *tok, *id_tok_start, *end_tok;
c906108c
SS
8033 int toklen;
8034 char *cond_start = NULL;
8035 char *cond_end = NULL;
c906108c
SS
8036 int i, other_type_used, target_resources_ok = 0;
8037 enum bptype bp_type;
8038 int mem_cnt = 0;
37e4754d 8039 int thread = -1;
0cf6dd15 8040 int pc = 0;
c906108c 8041
37e4754d
LM
8042 /* Make sure that we actually have parameters to parse. */
8043 if (arg != NULL && arg[0] != '\0')
8044 {
8045 toklen = strlen (arg); /* Size of argument list. */
8046
8047 /* Points tok to the end of the argument list. */
8048 tok = arg + toklen - 1;
8049
8050 /* Go backwards in the parameters list. Skip the last parameter.
8051 If we're expecting a 'thread <thread_num>' parameter, this should
8052 be the thread identifier. */
8053 while (tok > arg && (*tok == ' ' || *tok == '\t'))
8054 tok--;
8055 while (tok > arg && (*tok != ' ' && *tok != '\t'))
8056 tok--;
8057
8058 /* Points end_tok to the beginning of the last token. */
8059 id_tok_start = tok + 1;
8060
8061 /* Go backwards in the parameters list. Skip one more parameter.
8062 If we're expecting a 'thread <thread_num>' parameter, we should
8063 reach a "thread" token. */
8064 while (tok > arg && (*tok == ' ' || *tok == '\t'))
8065 tok--;
8066
8067 end_tok = tok;
8068
8069 while (tok > arg && (*tok != ' ' && *tok != '\t'))
8070 tok--;
8071
8072 /* Move the pointer forward to skip the whitespace and
8073 calculate the length of the token. */
8074 tok++;
8075 toklen = end_tok - tok;
8076
8077 if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
8078 {
8079 /* At this point we've found a "thread" token, which means
8080 the user is trying to set a watchpoint that triggers
8081 only in a specific thread. */
8082 char *endp;
8083
8084 /* Extract the thread ID from the next token. */
8085 thread = strtol (id_tok_start, &endp, 0);
8086
8087 /* Check if the user provided a valid numeric value for the
8088 thread ID. */
8089 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
8090 error (_("Invalid thread ID specification %s."), id_tok_start);
8091
8092 /* Check if the thread actually exists. */
8093 if (!valid_thread_id (thread))
8094 error (_("Unknown thread %d."), thread);
8095
8096 /* Truncate the string and get rid of the thread <thread_num>
8097 parameter before the parameter list is parsed by the
8098 evaluate_expression() function. */
8099 *tok = '\0';
8100 }
8101 }
8102
8103 /* Parse the rest of the arguments. */
c906108c
SS
8104 innermost_block = NULL;
8105 exp_start = arg;
8106 exp = parse_exp_1 (&arg, 0, 0);
8107 exp_end = arg;
fa8a61dc
TT
8108 /* Remove trailing whitespace from the expression before saving it.
8109 This makes the eventual display of the expression string a bit
8110 prettier. */
8111 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
8112 --exp_end;
8113
65d79d4b
SDJ
8114 /* Checking if the expression is not constant. */
8115 if (watchpoint_exp_is_const (exp))
8116 {
8117 int len;
8118
8119 len = exp_end - exp_start;
8120 while (len > 0 && isspace (exp_start[len - 1]))
8121 len--;
8122 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
8123 }
8124
c906108c
SS
8125 exp_valid_block = innermost_block;
8126 mark = value_mark ();
0cf6dd15 8127 fetch_subexp_value (exp, &pc, &val, NULL, NULL);
06a64a0b
TT
8128
8129 if (just_location)
8130 {
8131 exp_valid_block = NULL;
8132 val = value_addr (val);
8133 release_value (val);
8134 value_free_to_mark (mark);
8135 }
8136 else if (val != NULL)
fa4727a6 8137 release_value (val);
c906108c
SS
8138
8139 tok = arg;
8140 while (*tok == ' ' || *tok == '\t')
8141 tok++;
8142 end_tok = tok;
8143
8144 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
8145 end_tok++;
8146
8147 toklen = end_tok - tok;
8148 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
8149 {
2d134ed3
PA
8150 struct expression *cond;
8151
60e1c644 8152 innermost_block = NULL;
c906108c
SS
8153 tok = cond_start = end_tok + 1;
8154 cond = parse_exp_1 (&tok, 0, 0);
60e1c644
PA
8155
8156 /* The watchpoint expression may not be local, but the condition
8157 may still be. E.g.: `watch global if local > 0'. */
8158 cond_exp_valid_block = innermost_block;
8159
2d134ed3 8160 xfree (cond);
c906108c
SS
8161 cond_end = tok;
8162 }
8163 if (*tok)
8a3fe4f8 8164 error (_("Junk at end of command."));
c906108c 8165
53a5351d 8166 if (accessflag == hw_read)
c5aa993b 8167 bp_type = bp_read_watchpoint;
53a5351d 8168 else if (accessflag == hw_access)
c5aa993b
JM
8169 bp_type = bp_access_watchpoint;
8170 else
8171 bp_type = bp_hardware_watchpoint;
c906108c
SS
8172
8173 mem_cnt = can_use_hardware_watchpoint (val);
8174 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 8175 error (_("Expression cannot be implemented with read/access watchpoint."));
c5aa993b
JM
8176 if (mem_cnt != 0)
8177 {
8178 i = hw_watchpoint_used_count (bp_type, &other_type_used);
53a5351d 8179 target_resources_ok =
d92524f1 8180 target_can_use_hardware_watchpoint (bp_type, i + mem_cnt,
53a5351d 8181 other_type_used);
c5aa993b 8182 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 8183 error (_("Target does not support this type of hardware watchpoint."));
53a5351d 8184
c5aa993b 8185 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 8186 error (_("Target can only support one kind of HW watchpoint at a time."));
c5aa993b 8187 }
c906108c 8188
4d28f7a8
KB
8189 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
8190 watchpoint could not be set. */
8191 if (!mem_cnt || target_resources_ok <= 0)
8192 bp_type = bp_watchpoint;
8193
d983da9c 8194 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
8195
8196 /* If the expression is "local", then set up a "watchpoint scope"
8197 breakpoint at the point where we've left the scope of the watchpoint
8198 expression. Create the scope breakpoint before the watchpoint, so
8199 that we will encounter it first in bpstat_stop_status. */
60e1c644 8200 if (exp_valid_block && frame)
d983da9c 8201 {
edb3359d
DJ
8202 if (frame_id_p (frame_unwind_caller_id (frame)))
8203 {
8204 scope_breakpoint
a6d9a66e
UW
8205 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
8206 frame_unwind_caller_pc (frame),
edb3359d 8207 bp_watchpoint_scope);
d983da9c 8208
edb3359d 8209 scope_breakpoint->enable_state = bp_enabled;
d983da9c 8210
edb3359d
DJ
8211 /* Automatically delete the breakpoint when it hits. */
8212 scope_breakpoint->disposition = disp_del;
d983da9c 8213
edb3359d
DJ
8214 /* Only break in the proper frame (help with recursion). */
8215 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 8216
edb3359d 8217 /* Set the address at which we will stop. */
a6d9a66e
UW
8218 scope_breakpoint->loc->gdbarch
8219 = frame_unwind_caller_arch (frame);
edb3359d
DJ
8220 scope_breakpoint->loc->requested_address
8221 = frame_unwind_caller_pc (frame);
8222 scope_breakpoint->loc->address
a6d9a66e
UW
8223 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
8224 scope_breakpoint->loc->requested_address,
edb3359d
DJ
8225 scope_breakpoint->type);
8226 }
d983da9c
DJ
8227 }
8228
c906108c 8229 /* Now set up the breakpoint. */
2d134ed3 8230 b = set_raw_breakpoint_without_location (NULL, bp_type);
c906108c
SS
8231 set_breakpoint_count (breakpoint_count + 1);
8232 b->number = breakpoint_count;
37e4754d 8233 b->thread = thread;
b5de0fa7 8234 b->disposition = disp_donttouch;
c906108c
SS
8235 b->exp = exp;
8236 b->exp_valid_block = exp_valid_block;
60e1c644 8237 b->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
8238 if (just_location)
8239 {
8240 struct type *t = value_type (val);
8241 CORE_ADDR addr = value_as_address (val);
8242 char *name;
8243
8244 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
8245 name = type_to_string (t);
8246
d63d0675
JK
8247 b->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
8248 core_addr_to_string (addr));
06a64a0b
TT
8249 xfree (name);
8250
d63d0675
JK
8251 b->exp_string = xstrprintf ("-location: %.*s",
8252 (int) (exp_end - exp_start), exp_start);
8253
06a64a0b
TT
8254 /* The above expression is in C. */
8255 b->language = language_c;
8256 }
8257 else
8258 b->exp_string = savestring (exp_start, exp_end - exp_start);
c906108c 8259 b->val = val;
fa4727a6 8260 b->val_valid = 1;
c906108c
SS
8261 if (cond_start)
8262 b->cond_string = savestring (cond_start, cond_end - cond_start);
8263 else
8264 b->cond_string = 0;
c5aa993b 8265
c906108c 8266 if (frame)
f6bc2008
PA
8267 {
8268 b->watchpoint_frame = get_frame_id (frame);
8269 b->watchpoint_thread = inferior_ptid;
8270 }
c906108c 8271 else
f6bc2008
PA
8272 {
8273 b->watchpoint_frame = null_frame_id;
8274 b->watchpoint_thread = null_ptid;
8275 }
c906108c 8276
d983da9c 8277 if (scope_breakpoint != NULL)
c906108c 8278 {
d983da9c
DJ
8279 /* The scope breakpoint is related to the watchpoint. We will
8280 need to act on them together. */
8281 b->related_breakpoint = scope_breakpoint;
8282 scope_breakpoint->related_breakpoint = b;
c906108c 8283 }
d983da9c 8284
06a64a0b
TT
8285 if (!just_location)
8286 value_free_to_mark (mark);
2d134ed3
PA
8287
8288 /* Finally update the new watchpoint. This creates the locations
8289 that should be inserted. */
8290 update_watchpoint (b, 1);
8291
c906108c 8292 mention (b);
b60e7edf 8293 update_global_location_list (1);
c906108c
SS
8294}
8295
8296/* Return count of locations need to be watched and can be handled
8297 in hardware. If the watchpoint can not be handled
8298 in hardware return zero. */
8299
c906108c 8300static int
fba45db2 8301can_use_hardware_watchpoint (struct value *v)
c906108c
SS
8302{
8303 int found_memory_cnt = 0;
2e70b7b9 8304 struct value *head = v;
c906108c
SS
8305
8306 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 8307 if (!can_use_hw_watchpoints)
c906108c 8308 return 0;
c5aa993b 8309
5c44784c
JM
8310 /* Make sure that the value of the expression depends only upon
8311 memory contents, and values computed from them within GDB. If we
8312 find any register references or function calls, we can't use a
8313 hardware watchpoint.
8314
8315 The idea here is that evaluating an expression generates a series
8316 of values, one holding the value of every subexpression. (The
8317 expression a*b+c has five subexpressions: a, b, a*b, c, and
8318 a*b+c.) GDB's values hold almost enough information to establish
8319 the criteria given above --- they identify memory lvalues,
8320 register lvalues, computed values, etcetera. So we can evaluate
8321 the expression, and then scan the chain of values that leaves
8322 behind to decide whether we can detect any possible change to the
8323 expression's final value using only hardware watchpoints.
8324
8325 However, I don't think that the values returned by inferior
8326 function calls are special in any way. So this function may not
8327 notice that an expression involving an inferior function call
8328 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 8329 for (; v; v = value_next (v))
c906108c 8330 {
5c44784c 8331 if (VALUE_LVAL (v) == lval_memory)
c906108c 8332 {
d69fe07e 8333 if (value_lazy (v))
5c44784c
JM
8334 /* A lazy memory lvalue is one that GDB never needed to fetch;
8335 we either just used its address (e.g., `a' in `a.b') or
8336 we never needed it at all (e.g., `a' in `a,b'). */
8337 ;
53a5351d 8338 else
5c44784c
JM
8339 {
8340 /* Ahh, memory we actually used! Check if we can cover
8341 it with hardware watchpoints. */
df407dfe 8342 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
8343
8344 /* We only watch structs and arrays if user asked for it
8345 explicitly, never if they just happen to appear in a
8346 middle of some value chain. */
8347 if (v == head
8348 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
8349 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
8350 {
42ae5230 8351 CORE_ADDR vaddr = value_address (v);
df407dfe 8352 int len = TYPE_LENGTH (value_type (v));
2e70b7b9 8353
d92524f1 8354 if (!target_region_ok_for_hw_watchpoint (vaddr, len))
2e70b7b9
MS
8355 return 0;
8356 else
8357 found_memory_cnt++;
8358 }
5c44784c 8359 }
c5aa993b 8360 }
5086187c
AC
8361 else if (VALUE_LVAL (v) != not_lval
8362 && deprecated_value_modifiable (v) == 0)
38b6c3b3 8363 return 0; /* These are values from the history (e.g., $1). */
5086187c 8364 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 8365 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
8366 }
8367
8368 /* The expression itself looks suitable for using a hardware
8369 watchpoint, but give the target machine a chance to reject it. */
8370 return found_memory_cnt;
8371}
8372
8b93c638 8373void
fba45db2 8374watch_command_wrapper (char *arg, int from_tty)
8b93c638 8375{
06a64a0b
TT
8376 watch_command_1 (arg, hw_write, from_tty, 0);
8377}
8378
8379/* A helper function that looks for an argument at the start of a
8380 string. The argument must also either be at the end of the string,
8381 or be followed by whitespace. Returns 1 if it finds the argument,
8382 0 otherwise. If the argument is found, it updates *STR. */
8383
8384static int
8385check_for_argument (char **str, char *arg, int arg_len)
8386{
8387 if (strncmp (*str, arg, arg_len) == 0
8388 && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len])))
8389 {
8390 *str += arg_len;
8391 return 1;
8392 }
8393 return 0;
8394}
8395
8396/* A helper function that looks for the "-location" argument and then
8397 calls watch_command_1. */
8398
8399static void
8400watch_maybe_just_location (char *arg, int accessflag, int from_tty)
8401{
8402 int just_location = 0;
8403
8404 if (arg
8405 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
8406 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
8407 {
8408 ep_skip_leading_whitespace (&arg);
8409 just_location = 1;
8410 }
8411
8412 watch_command_1 (arg, accessflag, from_tty, just_location);
8b93c638 8413}
8926118c 8414
c5aa993b 8415static void
fba45db2 8416watch_command (char *arg, int from_tty)
c906108c 8417{
06a64a0b 8418 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
8419}
8420
8b93c638 8421void
fba45db2 8422rwatch_command_wrapper (char *arg, int from_tty)
8b93c638 8423{
06a64a0b 8424 watch_command_1 (arg, hw_read, from_tty, 0);
8b93c638 8425}
8926118c 8426
c5aa993b 8427static void
fba45db2 8428rwatch_command (char *arg, int from_tty)
c906108c 8429{
06a64a0b 8430 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
8431}
8432
8b93c638 8433void
fba45db2 8434awatch_command_wrapper (char *arg, int from_tty)
8b93c638 8435{
06a64a0b 8436 watch_command_1 (arg, hw_access, from_tty, 0);
8b93c638 8437}
8926118c 8438
c5aa993b 8439static void
fba45db2 8440awatch_command (char *arg, int from_tty)
c906108c 8441{
06a64a0b 8442 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 8443}
c906108c 8444\f
c5aa993b 8445
43ff13b4 8446/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
8447 because it uses the mechanisms of breakpoints. */
8448
bfec99b2
PA
8449struct until_break_command_continuation_args
8450{
8451 struct breakpoint *breakpoint;
8452 struct breakpoint *breakpoint2;
8453};
8454
43ff13b4
JM
8455/* This function is called by fetch_inferior_event via the
8456 cmd_continuation pointer, to complete the until command. It takes
8457 care of cleaning up the temporary breakpoints set up by the until
8458 command. */
c2c6d25f 8459static void
604ead4a 8460until_break_command_continuation (void *arg)
43ff13b4 8461{
bfec99b2
PA
8462 struct until_break_command_continuation_args *a = arg;
8463
8464 delete_breakpoint (a->breakpoint);
8465 if (a->breakpoint2)
8466 delete_breakpoint (a->breakpoint2);
43ff13b4
JM
8467}
8468
c906108c 8469void
ae66c1fc 8470until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
8471{
8472 struct symtabs_and_lines sals;
8473 struct symtab_and_line sal;
206415a3 8474 struct frame_info *frame = get_selected_frame (NULL);
c906108c 8475 struct breakpoint *breakpoint;
f107f563 8476 struct breakpoint *breakpoint2 = NULL;
c906108c
SS
8477 struct cleanup *old_chain;
8478
8479 clear_proceed_status ();
8480
8481 /* Set a breakpoint where the user wants it and at return from
8482 this function */
c5aa993b 8483
c906108c
SS
8484 if (default_breakpoint_valid)
8485 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
68219205 8486 default_breakpoint_line, (char ***) NULL, NULL);
c906108c 8487 else
53a5351d 8488 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
68219205 8489 0, (char ***) NULL, NULL);
c5aa993b 8490
c906108c 8491 if (sals.nelts != 1)
8a3fe4f8 8492 error (_("Couldn't get information on specified line."));
c5aa993b 8493
c906108c 8494 sal = sals.sals[0];
b8c9b27d 8495 xfree (sals.sals); /* malloc'd, so freed */
c5aa993b 8496
c906108c 8497 if (*arg)
8a3fe4f8 8498 error (_("Junk at end of arguments."));
c5aa993b 8499
c906108c 8500 resolve_sal_pc (&sal);
c5aa993b 8501
ae66c1fc
EZ
8502 if (anywhere)
8503 /* If the user told us to continue until a specified location,
8504 we don't specify a frame at which we need to stop. */
a6d9a66e
UW
8505 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
8506 null_frame_id, bp_until);
ae66c1fc 8507 else
edb3359d 8508 /* Otherwise, specify the selected frame, because we want to stop only
ae66c1fc 8509 at the very same frame. */
a6d9a66e
UW
8510 breakpoint = set_momentary_breakpoint (get_frame_arch (frame), sal,
8511 get_stack_frame_id (frame),
ae66c1fc 8512 bp_until);
c5aa993b 8513
f107f563 8514 old_chain = make_cleanup_delete_breakpoint (breakpoint);
c906108c 8515
ae66c1fc
EZ
8516 /* Keep within the current frame, or in frames called by the current
8517 one. */
edb3359d
DJ
8518
8519 if (frame_id_p (frame_unwind_caller_id (frame)))
c906108c 8520 {
edb3359d
DJ
8521 sal = find_pc_line (frame_unwind_caller_pc (frame), 0);
8522 sal.pc = frame_unwind_caller_pc (frame);
a6d9a66e
UW
8523 breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame),
8524 sal,
edb3359d 8525 frame_unwind_caller_id (frame),
f107f563
VP
8526 bp_until);
8527 make_cleanup_delete_breakpoint (breakpoint2);
c906108c 8528 }
c5aa993b 8529
c906108c 8530 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
f107f563
VP
8531
8532 /* If we are running asynchronously, and proceed call above has actually
8533 managed to start the target, arrange for breakpoints to be
8534 deleted when the target stops. Otherwise, we're already stopped and
8535 delete breakpoints via cleanup chain. */
8536
8ea051c5 8537 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 8538 {
bfec99b2
PA
8539 struct until_break_command_continuation_args *args;
8540 args = xmalloc (sizeof (*args));
f107f563 8541
bfec99b2
PA
8542 args->breakpoint = breakpoint;
8543 args->breakpoint2 = breakpoint2;
f107f563
VP
8544
8545 discard_cleanups (old_chain);
95e54da7
PA
8546 add_continuation (inferior_thread (),
8547 until_break_command_continuation, args,
604ead4a 8548 xfree);
f107f563
VP
8549 }
8550 else
c5aa993b 8551 do_cleanups (old_chain);
c906108c 8552}
ae66c1fc 8553
c906108c 8554static void
fba45db2 8555ep_skip_leading_whitespace (char **s)
c906108c 8556{
c5aa993b
JM
8557 if ((s == NULL) || (*s == NULL))
8558 return;
8559 while (isspace (**s))
8560 *s += 1;
c906108c 8561}
c5aa993b 8562
c906108c
SS
8563/* This function attempts to parse an optional "if <cond>" clause
8564 from the arg string. If one is not found, it returns NULL.
c5aa993b 8565
c906108c
SS
8566 Else, it returns a pointer to the condition string. (It does not
8567 attempt to evaluate the string against a particular block.) And,
8568 it updates arg to point to the first character following the parsed
8569 if clause in the arg string. */
53a5351d 8570
c906108c 8571static char *
fba45db2 8572ep_parse_optional_if_clause (char **arg)
c906108c 8573{
c5aa993b
JM
8574 char *cond_string;
8575
8576 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 8577 return NULL;
c5aa993b 8578
c906108c
SS
8579 /* Skip the "if" keyword. */
8580 (*arg) += 2;
c5aa993b 8581
c906108c
SS
8582 /* Skip any extra leading whitespace, and record the start of the
8583 condition string. */
8584 ep_skip_leading_whitespace (arg);
8585 cond_string = *arg;
c5aa993b 8586
c906108c
SS
8587 /* Assume that the condition occupies the remainder of the arg string. */
8588 (*arg) += strlen (cond_string);
c5aa993b 8589
c906108c
SS
8590 return cond_string;
8591}
c5aa993b 8592
c906108c
SS
8593/* Commands to deal with catching events, such as signals, exceptions,
8594 process start/exit, etc. */
c5aa993b
JM
8595
8596typedef enum
8597{
44feb3ce
TT
8598 catch_fork_temporary, catch_vfork_temporary,
8599 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
8600}
8601catch_fork_kind;
8602
c906108c 8603static void
cc59ec59
MS
8604catch_fork_command_1 (char *arg, int from_tty,
8605 struct cmd_list_element *command)
c906108c 8606{
a6d9a66e 8607 struct gdbarch *gdbarch = get_current_arch ();
c5aa993b 8608 char *cond_string = NULL;
44feb3ce
TT
8609 catch_fork_kind fork_kind;
8610 int tempflag;
8611
8612 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
8613 tempflag = (fork_kind == catch_fork_temporary
8614 || fork_kind == catch_vfork_temporary);
c5aa993b 8615
44feb3ce
TT
8616 if (!arg)
8617 arg = "";
c906108c 8618 ep_skip_leading_whitespace (&arg);
c5aa993b 8619
c906108c 8620 /* The allowed syntax is:
c5aa993b
JM
8621 catch [v]fork
8622 catch [v]fork if <cond>
8623
c906108c
SS
8624 First, check if there's an if clause. */
8625 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 8626
c906108c 8627 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 8628 error (_("Junk at end of arguments."));
c5aa993b 8629
c906108c
SS
8630 /* If this target supports it, create a fork or vfork catchpoint
8631 and enable reporting of such events. */
c5aa993b
JM
8632 switch (fork_kind)
8633 {
44feb3ce
TT
8634 case catch_fork_temporary:
8635 case catch_fork_permanent:
a6d9a66e 8636 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 8637 &catch_fork_breakpoint_ops);
c906108c 8638 break;
44feb3ce
TT
8639 case catch_vfork_temporary:
8640 case catch_vfork_permanent:
a6d9a66e 8641 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 8642 &catch_vfork_breakpoint_ops);
c906108c 8643 break;
c5aa993b 8644 default:
8a3fe4f8 8645 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 8646 break;
c5aa993b 8647 }
c906108c
SS
8648}
8649
8650static void
cc59ec59
MS
8651catch_exec_command_1 (char *arg, int from_tty,
8652 struct cmd_list_element *command)
c906108c 8653{
a6d9a66e 8654 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 8655 int tempflag;
c5aa993b 8656 char *cond_string = NULL;
c906108c 8657
44feb3ce
TT
8658 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8659
8660 if (!arg)
8661 arg = "";
c906108c
SS
8662 ep_skip_leading_whitespace (&arg);
8663
8664 /* The allowed syntax is:
c5aa993b
JM
8665 catch exec
8666 catch exec if <cond>
c906108c
SS
8667
8668 First, check if there's an if clause. */
8669 cond_string = ep_parse_optional_if_clause (&arg);
8670
8671 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 8672 error (_("Junk at end of arguments."));
c906108c
SS
8673
8674 /* If this target supports it, create an exec catchpoint
8675 and enable reporting of such events. */
a6d9a66e
UW
8676 create_catchpoint (gdbarch, tempflag, cond_string,
8677 &catch_exec_breakpoint_ops);
c906108c 8678}
c5aa993b 8679
3086aeae
DJ
8680static enum print_stop_action
8681print_exception_catchpoint (struct breakpoint *b)
8682{
ade92717 8683 int bp_temp, bp_throw;
3086aeae 8684
ade92717 8685 annotate_catchpoint (b->number);
3086aeae 8686
ade92717
AR
8687 bp_throw = strstr (b->addr_string, "throw") != NULL;
8688 if (b->loc->address != b->loc->requested_address)
8689 breakpoint_adjustment_warning (b->loc->requested_address,
8690 b->loc->address,
8691 b->number, 1);
df2b6d2d 8692 bp_temp = b->disposition == disp_del;
ade92717
AR
8693 ui_out_text (uiout,
8694 bp_temp ? "Temporary catchpoint "
8695 : "Catchpoint ");
8696 if (!ui_out_is_mi_like_p (uiout))
8697 ui_out_field_int (uiout, "bkptno", b->number);
8698 ui_out_text (uiout,
c0b37c48
AR
8699 bp_throw ? " (exception thrown), "
8700 : " (exception caught), ");
ade92717
AR
8701 if (ui_out_is_mi_like_p (uiout))
8702 {
8703 ui_out_field_string (uiout, "reason",
8704 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
8705 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8706 ui_out_field_int (uiout, "bkptno", b->number);
8707 }
3086aeae
DJ
8708 return PRINT_SRC_AND_LOC;
8709}
8710
8711static void
cc59ec59
MS
8712print_one_exception_catchpoint (struct breakpoint *b,
8713 struct bp_location **last_loc)
3086aeae 8714{
79a45b7d 8715 struct value_print_options opts;
cc59ec59 8716
79a45b7d
TT
8717 get_user_print_options (&opts);
8718 if (opts.addressprint)
3086aeae
DJ
8719 {
8720 annotate_field (4);
604133b5
AR
8721 if (b->loc == NULL || b->loc->shlib_disabled)
8722 ui_out_field_string (uiout, "addr", "<PENDING>");
8723 else
5af949e3
UW
8724 ui_out_field_core_addr (uiout, "addr",
8725 b->loc->gdbarch, b->loc->address);
3086aeae
DJ
8726 }
8727 annotate_field (5);
604133b5 8728 if (b->loc)
a6d9a66e 8729 *last_loc = b->loc;
3086aeae
DJ
8730 if (strstr (b->addr_string, "throw") != NULL)
8731 ui_out_field_string (uiout, "what", "exception throw");
8732 else
8733 ui_out_field_string (uiout, "what", "exception catch");
8734}
8735
8736static void
8737print_mention_exception_catchpoint (struct breakpoint *b)
8738{
ade92717
AR
8739 int bp_temp;
8740 int bp_throw;
8741
df2b6d2d 8742 bp_temp = b->disposition == disp_del;
ade92717
AR
8743 bp_throw = strstr (b->addr_string, "throw") != NULL;
8744 ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ")
8745 : _("Catchpoint "));
8746 ui_out_field_int (uiout, "bkptno", b->number);
8747 ui_out_text (uiout, bp_throw ? _(" (throw)")
8748 : _(" (catch)"));
3086aeae
DJ
8749}
8750
6149aea9
PA
8751/* Implement the "print_recreate" breakpoint_ops method for throw and
8752 catch catchpoints. */
8753
8754static void
8755print_recreate_exception_catchpoint (struct breakpoint *b, struct ui_file *fp)
8756{
8757 int bp_temp;
8758 int bp_throw;
8759
8760 bp_temp = b->disposition == disp_del;
8761 bp_throw = strstr (b->addr_string, "throw") != NULL;
8762 fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch ");
8763 fprintf_unfiltered (fp, bp_throw ? "throw" : "catch");
8764}
8765
3086aeae 8766static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
ce78b96d
JB
8767 NULL, /* insert */
8768 NULL, /* remove */
8769 NULL, /* breakpoint_hit */
3086aeae
DJ
8770 print_exception_catchpoint,
8771 print_one_exception_catchpoint,
6149aea9
PA
8772 print_mention_exception_catchpoint,
8773 print_recreate_exception_catchpoint
3086aeae
DJ
8774};
8775
8776static int
8777handle_gnu_v3_exceptions (int tempflag, char *cond_string,
8778 enum exception_event_kind ex_event, int from_tty)
8779{
604133b5
AR
8780 char *trigger_func_name;
8781
3086aeae 8782 if (ex_event == EX_EVENT_CATCH)
604133b5 8783 trigger_func_name = "__cxa_begin_catch";
3086aeae 8784 else
604133b5 8785 trigger_func_name = "__cxa_throw";
3086aeae 8786
8cdf0e15
VP
8787 create_breakpoint (get_current_arch (),
8788 trigger_func_name, cond_string, -1,
8789 0 /* condition and thread are valid. */,
0fb4aa4b 8790 tempflag, bp_breakpoint,
8cdf0e15
VP
8791 0,
8792 AUTO_BOOLEAN_TRUE /* pending */,
8793 &gnu_v3_exception_catchpoint_ops, from_tty,
8794 1 /* enabled */);
3086aeae 8795
3086aeae
DJ
8796 return 1;
8797}
8798
c5aa993b 8799/* Deal with "catch catch" and "catch throw" commands */
c906108c
SS
8800
8801static void
fba45db2
KB
8802catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
8803 int tempflag, int from_tty)
c906108c 8804{
c5aa993b 8805 char *cond_string = NULL;
c5aa993b 8806
44feb3ce
TT
8807 if (!arg)
8808 arg = "";
c906108c 8809 ep_skip_leading_whitespace (&arg);
c5aa993b 8810
c906108c
SS
8811 cond_string = ep_parse_optional_if_clause (&arg);
8812
8813 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 8814 error (_("Junk at end of arguments."));
c906108c 8815
059fb39f
PM
8816 if (ex_event != EX_EVENT_THROW
8817 && ex_event != EX_EVENT_CATCH)
8a3fe4f8 8818 error (_("Unsupported or unknown exception event; cannot catch it"));
c906108c 8819
3086aeae
DJ
8820 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
8821 return;
8822
8a3fe4f8 8823 warning (_("Unsupported with this platform/compiler combination."));
c906108c
SS
8824}
8825
44feb3ce
TT
8826/* Implementation of "catch catch" command. */
8827
8828static void
8829catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
8830{
8831 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 8832
44feb3ce
TT
8833 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
8834}
8835
8836/* Implementation of "catch throw" command. */
8837
8838static void
8839catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
8840{
8841 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
cc59ec59 8842
44feb3ce
TT
8843 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
8844}
8845
f7f9143b
JB
8846/* Create a breakpoint struct for Ada exception catchpoints. */
8847
8848static void
a6d9a66e
UW
8849create_ada_exception_breakpoint (struct gdbarch *gdbarch,
8850 struct symtab_and_line sal,
f7f9143b
JB
8851 char *addr_string,
8852 char *exp_string,
8853 char *cond_string,
8854 struct expression *cond,
8855 struct breakpoint_ops *ops,
8856 int tempflag,
8857 int from_tty)
8858{
8859 struct breakpoint *b;
8860
8861 if (from_tty)
8862 {
5af949e3
UW
8863 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8864 if (!loc_gdbarch)
8865 loc_gdbarch = gdbarch;
8866
6c95b8df
PA
8867 describe_other_breakpoints (loc_gdbarch,
8868 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
8869 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
8870 version for exception catchpoints, because two catchpoints
8871 used for different exception names will use the same address.
8872 In this case, a "breakpoint ... also set at..." warning is
8873 unproductive. Besides. the warning phrasing is also a bit
8874 inapropriate, we should use the word catchpoint, and tell
8875 the user what type of catchpoint it is. The above is good
8876 enough for now, though. */
8877 }
8878
a6d9a66e 8879 b = set_raw_breakpoint (gdbarch, sal, bp_breakpoint);
f7f9143b
JB
8880 set_breakpoint_count (breakpoint_count + 1);
8881
8882 b->enable_state = bp_enabled;
8883 b->disposition = tempflag ? disp_del : disp_donttouch;
8884 b->number = breakpoint_count;
8885 b->ignore_count = 0;
511a6cd4 8886 b->loc->cond = cond;
f7f9143b
JB
8887 b->addr_string = addr_string;
8888 b->language = language_ada;
8889 b->cond_string = cond_string;
8890 b->exp_string = exp_string;
8891 b->thread = -1;
8892 b->ops = ops;
f7f9143b
JB
8893
8894 mention (b);
b60e7edf 8895 update_global_location_list (1);
f7f9143b
JB
8896}
8897
8898/* Implement the "catch exception" command. */
8899
8900static void
44feb3ce
TT
8901catch_ada_exception_command (char *arg, int from_tty,
8902 struct cmd_list_element *command)
f7f9143b 8903{
a6d9a66e 8904 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 8905 int tempflag;
f7f9143b 8906 struct symtab_and_line sal;
f7f9143b
JB
8907 char *addr_string = NULL;
8908 char *exp_string = NULL;
8909 char *cond_string = NULL;
8910 struct expression *cond = NULL;
8911 struct breakpoint_ops *ops = NULL;
8912
44feb3ce
TT
8913 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8914
8915 if (!arg)
8916 arg = "";
f7f9143b
JB
8917 sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
8918 &cond_string, &cond, &ops);
a6d9a66e 8919 create_ada_exception_breakpoint (gdbarch, sal, addr_string, exp_string,
f7f9143b
JB
8920 cond_string, cond, ops, tempflag,
8921 from_tty);
8922}
8923
a96d9b2e
SDJ
8924/* Cleanup function for a syscall filter list. */
8925static void
8926clean_up_filters (void *arg)
8927{
8928 VEC(int) *iter = *(VEC(int) **) arg;
8929 VEC_free (int, iter);
8930}
8931
8932/* Splits the argument using space as delimiter. Returns an xmalloc'd
8933 filter list, or NULL if no filtering is required. */
8934static VEC(int) *
8935catch_syscall_split_args (char *arg)
8936{
8937 VEC(int) *result = NULL;
8938 struct cleanup *cleanup = make_cleanup (clean_up_filters, &result);
8939
8940 while (*arg != '\0')
8941 {
8942 int i, syscall_number;
8943 char *endptr;
8944 char cur_name[128];
8945 struct syscall s;
8946
8947 /* Skip whitespace. */
8948 while (isspace (*arg))
8949 arg++;
8950
8951 for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i)
8952 cur_name[i] = arg[i];
8953 cur_name[i] = '\0';
8954 arg += i;
8955
8956 /* Check if the user provided a syscall name or a number. */
8957 syscall_number = (int) strtol (cur_name, &endptr, 0);
8958 if (*endptr == '\0')
bccd0dd2 8959 get_syscall_by_number (syscall_number, &s);
a96d9b2e
SDJ
8960 else
8961 {
8962 /* We have a name. Let's check if it's valid and convert it
8963 to a number. */
8964 get_syscall_by_name (cur_name, &s);
8965
8966 if (s.number == UNKNOWN_SYSCALL)
8967 /* Here we have to issue an error instead of a warning, because
8968 GDB cannot do anything useful if there's no syscall number to
8969 be caught. */
8970 error (_("Unknown syscall name '%s'."), cur_name);
8971 }
8972
8973 /* Ok, it's valid. */
8974 VEC_safe_push (int, result, s.number);
8975 }
8976
8977 discard_cleanups (cleanup);
8978 return result;
8979}
8980
8981/* Implement the "catch syscall" command. */
8982
8983static void
cc59ec59
MS
8984catch_syscall_command_1 (char *arg, int from_tty,
8985 struct cmd_list_element *command)
a96d9b2e
SDJ
8986{
8987 int tempflag;
8988 VEC(int) *filter;
8989 struct syscall s;
8990 struct gdbarch *gdbarch = get_current_arch ();
8991
8992 /* Checking if the feature if supported. */
8993 if (gdbarch_get_syscall_number_p (gdbarch) == 0)
8994 error (_("The feature 'catch syscall' is not supported on \
8995this architeture yet."));
8996
8997 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8998
8999 ep_skip_leading_whitespace (&arg);
9000
9001 /* We need to do this first "dummy" translation in order
9002 to get the syscall XML file loaded or, most important,
9003 to display a warning to the user if there's no XML file
9004 for his/her architecture. */
9005 get_syscall_by_number (0, &s);
9006
9007 /* The allowed syntax is:
9008 catch syscall
9009 catch syscall <name | number> [<name | number> ... <name | number>]
9010
9011 Let's check if there's a syscall name. */
9012
9013 if (arg != NULL)
9014 filter = catch_syscall_split_args (arg);
9015 else
9016 filter = NULL;
9017
9018 create_syscall_event_catchpoint (tempflag, filter,
9019 &catch_syscall_breakpoint_ops);
9020}
9021
f7f9143b
JB
9022/* Implement the "catch assert" command. */
9023
9024static void
44feb3ce 9025catch_assert_command (char *arg, int from_tty, struct cmd_list_element *command)
f7f9143b 9026{
a6d9a66e 9027 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 9028 int tempflag;
f7f9143b
JB
9029 struct symtab_and_line sal;
9030 char *addr_string = NULL;
9031 struct breakpoint_ops *ops = NULL;
9032
44feb3ce
TT
9033 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
9034
9035 if (!arg)
9036 arg = "";
f7f9143b 9037 sal = ada_decode_assert_location (arg, &addr_string, &ops);
a6d9a66e
UW
9038 create_ada_exception_breakpoint (gdbarch, sal, addr_string, NULL, NULL, NULL,
9039 ops, tempflag, from_tty);
f7f9143b
JB
9040}
9041
c906108c 9042static void
fba45db2 9043catch_command (char *arg, int from_tty)
c906108c 9044{
44feb3ce 9045 error (_("Catch requires an event name."));
c906108c
SS
9046}
9047\f
9048
9049static void
fba45db2 9050tcatch_command (char *arg, int from_tty)
c906108c 9051{
44feb3ce 9052 error (_("Catch requires an event name."));
c906108c
SS
9053}
9054
80f8a6eb 9055/* Delete breakpoints by address or line. */
c906108c
SS
9056
9057static void
fba45db2 9058clear_command (char *arg, int from_tty)
c906108c 9059{
d6e956e5
VP
9060 struct breakpoint *b;
9061 VEC(breakpoint_p) *found = 0;
9062 int ix;
c906108c
SS
9063 int default_match;
9064 struct symtabs_and_lines sals;
9065 struct symtab_and_line sal;
c906108c
SS
9066 int i;
9067
9068 if (arg)
9069 {
9070 sals = decode_line_spec (arg, 1);
9071 default_match = 0;
9072 }
9073 else
9074 {
c5aa993b 9075 sals.sals = (struct symtab_and_line *)
c906108c 9076 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 9077 make_cleanup (xfree, sals.sals);
fe39c653 9078 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
9079 sal.line = default_breakpoint_line;
9080 sal.symtab = default_breakpoint_symtab;
9081 sal.pc = default_breakpoint_address;
6c95b8df 9082 sal.pspace = default_breakpoint_pspace;
c906108c 9083 if (sal.symtab == 0)
8a3fe4f8 9084 error (_("No source file specified."));
c906108c
SS
9085
9086 sals.sals[0] = sal;
9087 sals.nelts = 1;
9088
9089 default_match = 1;
9090 }
9091
ed0616c6
VP
9092 /* We don't call resolve_sal_pc here. That's not
9093 as bad as it seems, because all existing breakpoints
9094 typically have both file/line and pc set. So, if
9095 clear is given file/line, we can match this to existing
9096 breakpoint without obtaining pc at all.
9097
9098 We only support clearing given the address explicitly
9099 present in breakpoint table. Say, we've set breakpoint
9100 at file:line. There were several PC values for that file:line,
9101 due to optimization, all in one block.
9102 We've picked one PC value. If "clear" is issued with another
9103 PC corresponding to the same file:line, the breakpoint won't
9104 be cleared. We probably can still clear the breakpoint, but
9105 since the other PC value is never presented to user, user
9106 can only find it by guessing, and it does not seem important
9107 to support that. */
9108
c906108c 9109 /* For each line spec given, delete bps which correspond
80f8a6eb
MS
9110 to it. Do it in two passes, solely to preserve the current
9111 behavior that from_tty is forced true if we delete more than
9112 one breakpoint. */
c906108c 9113
80f8a6eb 9114 found = NULL;
c906108c
SS
9115 for (i = 0; i < sals.nelts; i++)
9116 {
9117 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
9118 If line given (pc == 0), clear all bpts on specified line.
9119 If defaulting, clear all bpts on default line
c906108c 9120 or at default pc.
c5aa993b
JM
9121
9122 defaulting sal.pc != 0 tests to do
9123
9124 0 1 pc
9125 1 1 pc _and_ line
9126 0 0 line
9127 1 0 <can't happen> */
c906108c
SS
9128
9129 sal = sals.sals[i];
c906108c 9130
d6e956e5
VP
9131 /* Find all matching breakpoints and add them to
9132 'found'. */
9133 ALL_BREAKPOINTS (b)
c5aa993b 9134 {
0d381245 9135 int match = 0;
80f8a6eb 9136 /* Are we going to delete b? */
cc60f2e3 9137 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
9138 {
9139 struct bp_location *loc = b->loc;
9140 for (; loc; loc = loc->next)
9141 {
6c95b8df
PA
9142 int pc_match = sal.pc
9143 && (loc->pspace == sal.pspace)
0d381245
VP
9144 && (loc->address == sal.pc)
9145 && (!section_is_overlay (loc->section)
9146 || loc->section == sal.section);
9147 int line_match = ((default_match || (0 == sal.pc))
9148 && b->source_file != NULL
9149 && sal.symtab != NULL
6c95b8df 9150 && sal.pspace == loc->pspace
0d381245
VP
9151 && strcmp (b->source_file, sal.symtab->filename) == 0
9152 && b->line_number == sal.line);
9153 if (pc_match || line_match)
9154 {
9155 match = 1;
9156 break;
9157 }
9158 }
9159 }
9160
9161 if (match)
d6e956e5 9162 VEC_safe_push(breakpoint_p, found, b);
c906108c 9163 }
80f8a6eb
MS
9164 }
9165 /* Now go thru the 'found' chain and delete them. */
d6e956e5 9166 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
9167 {
9168 if (arg)
8a3fe4f8 9169 error (_("No breakpoint at %s."), arg);
80f8a6eb 9170 else
8a3fe4f8 9171 error (_("No breakpoint at this line."));
80f8a6eb 9172 }
c906108c 9173
d6e956e5 9174 if (VEC_length(breakpoint_p, found) > 1)
80f8a6eb
MS
9175 from_tty = 1; /* Always report if deleted more than one */
9176 if (from_tty)
a3f17187 9177 {
d6e956e5 9178 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
9179 printf_unfiltered (_("Deleted breakpoint "));
9180 else
9181 printf_unfiltered (_("Deleted breakpoints "));
9182 }
80f8a6eb 9183 breakpoints_changed ();
d6e956e5
VP
9184
9185 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 9186 {
c5aa993b 9187 if (from_tty)
d6e956e5
VP
9188 printf_unfiltered ("%d ", b->number);
9189 delete_breakpoint (b);
c906108c 9190 }
80f8a6eb
MS
9191 if (from_tty)
9192 putchar_unfiltered ('\n');
c906108c
SS
9193}
9194\f
9195/* Delete breakpoint in BS if they are `delete' breakpoints and
9196 all breakpoints that are marked for deletion, whether hit or not.
9197 This is called after any breakpoint is hit, or after errors. */
9198
9199void
fba45db2 9200breakpoint_auto_delete (bpstat bs)
c906108c
SS
9201{
9202 struct breakpoint *b, *temp;
9203
9204 for (; bs; bs = bs->next)
f431efe5
PA
9205 if (bs->breakpoint_at
9206 && bs->breakpoint_at->disposition == disp_del
c906108c 9207 && bs->stop)
f431efe5 9208 delete_breakpoint (bs->breakpoint_at);
c906108c
SS
9209
9210 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 9211 {
b5de0fa7 9212 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
9213 delete_breakpoint (b);
9214 }
c906108c
SS
9215}
9216
494cfb0f 9217/* A comparison function for bp_location AP and BP being interfaced to qsort.
876fa593
JK
9218 Sort elements primarily by their ADDRESS (no matter what does
9219 breakpoint_address_is_meaningful say for its OWNER), secondarily by ordering
9220 first bp_permanent OWNERed elements and terciarily just ensuring the array
9221 is sorted stable way despite qsort being an instable algorithm. */
9222
9223static int
494cfb0f 9224bp_location_compare (const void *ap, const void *bp)
876fa593 9225{
494cfb0f
JK
9226 struct bp_location *a = *(void **) ap;
9227 struct bp_location *b = *(void **) bp;
2bdf28a0 9228 /* A and B come from existing breakpoints having non-NULL OWNER. */
876fa593
JK
9229 int a_perm = a->owner->enable_state == bp_permanent;
9230 int b_perm = b->owner->enable_state == bp_permanent;
9231
9232 if (a->address != b->address)
9233 return (a->address > b->address) - (a->address < b->address);
9234
9235 /* Sort permanent breakpoints first. */
9236 if (a_perm != b_perm)
9237 return (a_perm < b_perm) - (a_perm > b_perm);
9238
9239 /* Make the user-visible order stable across GDB runs. Locations of the same
9240 breakpoint can be sorted in arbitrary order. */
9241
9242 if (a->owner->number != b->owner->number)
9243 return (a->owner->number > b->owner->number)
9244 - (a->owner->number < b->owner->number);
9245
9246 return (a > b) - (a < b);
9247}
9248
876fa593
JK
9249/* Set bp_location_placed_address_before_address_max and
9250 bp_location_shadow_len_after_address_max according to the current content of
9251 the bp_location array. */
f7545552
TT
9252
9253static void
876fa593 9254bp_location_target_extensions_update (void)
f7545552 9255{
876fa593
JK
9256 struct bp_location *bl, **blp_tmp;
9257
9258 bp_location_placed_address_before_address_max = 0;
9259 bp_location_shadow_len_after_address_max = 0;
9260
9261 ALL_BP_LOCATIONS (bl, blp_tmp)
9262 {
9263 CORE_ADDR start, end, addr;
9264
9265 if (!bp_location_has_shadow (bl))
9266 continue;
9267
9268 start = bl->target_info.placed_address;
9269 end = start + bl->target_info.shadow_len;
9270
9271 gdb_assert (bl->address >= start);
9272 addr = bl->address - start;
9273 if (addr > bp_location_placed_address_before_address_max)
9274 bp_location_placed_address_before_address_max = addr;
9275
9276 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
9277
9278 gdb_assert (bl->address < end);
9279 addr = end - bl->address;
9280 if (addr > bp_location_shadow_len_after_address_max)
9281 bp_location_shadow_len_after_address_max = addr;
9282 }
f7545552
TT
9283}
9284
4cd9bd08 9285/* If SHOULD_INSERT is false, do not insert any breakpoint locations
b60e7edf
PA
9286 into the inferior, only remove already-inserted locations that no
9287 longer should be inserted. Functions that delete a breakpoint or
9288 breakpoints should pass false, so that deleting a breakpoint
9289 doesn't have the side effect of inserting the locations of other
9290 breakpoints that are marked not-inserted, but should_be_inserted
9291 returns true on them.
9292
9293 This behaviour is useful is situations close to tear-down -- e.g.,
9294 after an exec, while the target still has execution, but breakpoint
9295 shadows of the previous executable image should *NOT* be restored
9296 to the new image; or before detaching, where the target still has
9297 execution and wants to delete breakpoints from GDB's lists, and all
9298 breakpoints had already been removed from the inferior. */
9299
0d381245 9300static void
b60e7edf 9301update_global_location_list (int should_insert)
0d381245 9302{
74960c60 9303 struct breakpoint *b;
876fa593 9304 struct bp_location **locp, *loc;
f7545552
TT
9305 struct cleanup *cleanups;
9306
2d134ed3
PA
9307 /* Used in the duplicates detection below. When iterating over all
9308 bp_locations, points to the first bp_location of a given address.
9309 Breakpoints and watchpoints of different types are never
9310 duplicates of each other. Keep one pointer for each type of
9311 breakpoint/watchpoint, so we only need to loop over all locations
9312 once. */
9313 struct bp_location *bp_loc_first; /* breakpoint */
9314 struct bp_location *wp_loc_first; /* hardware watchpoint */
9315 struct bp_location *awp_loc_first; /* access watchpoint */
9316 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593
JK
9317
9318 /* Saved former bp_location array which we compare against the newly built
9319 bp_location from the current state of ALL_BREAKPOINTS. */
9320 struct bp_location **old_location, **old_locp;
9321 unsigned old_location_count;
9322
9323 old_location = bp_location;
9324 old_location_count = bp_location_count;
9325 bp_location = NULL;
9326 bp_location_count = 0;
9327 cleanups = make_cleanup (xfree, old_location);
0d381245 9328
74960c60 9329 ALL_BREAKPOINTS (b)
876fa593
JK
9330 for (loc = b->loc; loc; loc = loc->next)
9331 bp_location_count++;
9332
9333 bp_location = xmalloc (sizeof (*bp_location) * bp_location_count);
9334 locp = bp_location;
9335 ALL_BREAKPOINTS (b)
9336 for (loc = b->loc; loc; loc = loc->next)
9337 *locp++ = loc;
9338 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 9339 bp_location_compare);
876fa593
JK
9340
9341 bp_location_target_extensions_update ();
74960c60
VP
9342
9343 /* Identify bp_location instances that are no longer present in the new
9344 list, and therefore should be freed. Note that it's not necessary that
9345 those locations should be removed from inferior -- if there's another
9346 location at the same address (previously marked as duplicate),
876fa593
JK
9347 we don't need to remove/insert the location.
9348
9349 LOCP is kept in sync with OLD_LOCP, each pointing to the current and
9350 former bp_location array state respectively. */
9351
9352 locp = bp_location;
9353 for (old_locp = old_location; old_locp < old_location + old_location_count;
9354 old_locp++)
74960c60 9355 {
876fa593 9356 struct bp_location *old_loc = *old_locp;
c7d46a38 9357 struct bp_location **loc2p;
876fa593
JK
9358
9359 /* Tells if 'old_loc' is found amoung the new locations. If not, we
74960c60 9360 have to free it. */
c7d46a38 9361 int found_object = 0;
20874c92
VP
9362 /* Tells if the location should remain inserted in the target. */
9363 int keep_in_target = 0;
9364 int removed = 0;
876fa593
JK
9365
9366 /* Skip LOCP entries which will definitely never be needed. Stop either
9367 at or being the one matching OLD_LOC. */
9368 while (locp < bp_location + bp_location_count
c7d46a38 9369 && (*locp)->address < old_loc->address)
876fa593 9370 locp++;
c7d46a38
PA
9371
9372 for (loc2p = locp;
9373 (loc2p < bp_location + bp_location_count
9374 && (*loc2p)->address == old_loc->address);
9375 loc2p++)
9376 {
9377 if (*loc2p == old_loc)
9378 {
9379 found_object = 1;
9380 break;
9381 }
9382 }
74960c60
VP
9383
9384 /* If this location is no longer present, and inserted, look if there's
9385 maybe a new location at the same address. If so, mark that one
9386 inserted, and don't remove this one. This is needed so that we
9387 don't have a time window where a breakpoint at certain location is not
9388 inserted. */
9389
876fa593 9390 if (old_loc->inserted)
0d381245 9391 {
74960c60 9392 /* If the location is inserted now, we might have to remove it. */
74960c60 9393
876fa593 9394 if (found_object && should_be_inserted (old_loc))
74960c60
VP
9395 {
9396 /* The location is still present in the location list, and still
9397 should be inserted. Don't do anything. */
20874c92 9398 keep_in_target = 1;
74960c60
VP
9399 }
9400 else
9401 {
9402 /* The location is either no longer present, or got disabled.
9403 See if there's another location at the same address, in which
9404 case we don't need to remove this one from the target. */
876fa593 9405
2bdf28a0 9406 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
9407 if (breakpoint_address_is_meaningful (old_loc->owner))
9408 {
876fa593 9409 for (loc2p = locp;
c7d46a38
PA
9410 (loc2p < bp_location + bp_location_count
9411 && (*loc2p)->address == old_loc->address);
876fa593
JK
9412 loc2p++)
9413 {
9414 struct bp_location *loc2 = *loc2p;
9415
2d134ed3 9416 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38
PA
9417 {
9418 /* For the sake of should_be_inserted.
9419 Duplicates check below will fix up this later. */
9420 loc2->duplicate = 0;
85d721b8
PA
9421
9422 /* Read watchpoint locations are switched to
9423 access watchpoints, if the former are not
9424 supported, but the latter are. */
9425 if (is_hardware_watchpoint (old_loc->owner))
9426 {
9427 gdb_assert (is_hardware_watchpoint (loc2->owner));
9428 loc2->watchpoint_type = old_loc->watchpoint_type;
9429 }
9430
c7d46a38
PA
9431 if (loc2 != old_loc && should_be_inserted (loc2))
9432 {
9433 loc2->inserted = 1;
9434 loc2->target_info = old_loc->target_info;
9435 keep_in_target = 1;
9436 break;
9437 }
876fa593
JK
9438 }
9439 }
9440 }
74960c60
VP
9441 }
9442
20874c92
VP
9443 if (!keep_in_target)
9444 {
876fa593 9445 if (remove_breakpoint (old_loc, mark_uninserted))
20874c92
VP
9446 {
9447 /* This is just about all we can do. We could keep this
9448 location on the global list, and try to remove it next
9449 time, but there's no particular reason why we will
9450 succeed next time.
9451
876fa593 9452 Note that at this point, old_loc->owner is still valid,
20874c92
VP
9453 as delete_breakpoint frees the breakpoint only
9454 after calling us. */
9455 printf_filtered (_("warning: Error removing breakpoint %d\n"),
876fa593 9456 old_loc->owner->number);
20874c92
VP
9457 }
9458 removed = 1;
9459 }
0d381245 9460 }
74960c60
VP
9461
9462 if (!found_object)
1c5cfe86 9463 {
db82e815
PA
9464 if (removed && non_stop
9465 && breakpoint_address_is_meaningful (old_loc->owner)
9466 && !is_hardware_watchpoint (old_loc->owner))
20874c92 9467 {
db82e815
PA
9468 /* This location was removed from the target. In
9469 non-stop mode, a race condition is possible where
9470 we've removed a breakpoint, but stop events for that
9471 breakpoint are already queued and will arrive later.
9472 We apply an heuristic to be able to distinguish such
9473 SIGTRAPs from other random SIGTRAPs: we keep this
9474 breakpoint location for a bit, and will retire it
9475 after we see some number of events. The theory here
9476 is that reporting of events should, "on the average",
9477 be fair, so after a while we'll see events from all
9478 threads that have anything of interest, and no longer
9479 need to keep this breakpoint location around. We
9480 don't hold locations forever so to reduce chances of
9481 mistaking a non-breakpoint SIGTRAP for a breakpoint
9482 SIGTRAP.
9483
9484 The heuristic failing can be disastrous on
9485 decr_pc_after_break targets.
9486
9487 On decr_pc_after_break targets, like e.g., x86-linux,
9488 if we fail to recognize a late breakpoint SIGTRAP,
9489 because events_till_retirement has reached 0 too
9490 soon, we'll fail to do the PC adjustment, and report
9491 a random SIGTRAP to the user. When the user resumes
9492 the inferior, it will most likely immediately crash
2dec564e 9493 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
9494 corrupted, because of being resumed e.g., in the
9495 middle of a multi-byte instruction, or skipped a
9496 one-byte instruction. This was actually seen happen
9497 on native x86-linux, and should be less rare on
9498 targets that do not support new thread events, like
9499 remote, due to the heuristic depending on
9500 thread_count.
9501
9502 Mistaking a random SIGTRAP for a breakpoint trap
9503 causes similar symptoms (PC adjustment applied when
9504 it shouldn't), but then again, playing with SIGTRAPs
9505 behind the debugger's back is asking for trouble.
9506
9507 Since hardware watchpoint traps are always
9508 distinguishable from other traps, so we don't need to
9509 apply keep hardware watchpoint moribund locations
9510 around. We simply always ignore hardware watchpoint
9511 traps we can no longer explain. */
9512
876fa593
JK
9513 old_loc->events_till_retirement = 3 * (thread_count () + 1);
9514 old_loc->owner = NULL;
20874c92 9515
876fa593 9516 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
9517 }
9518 else
f431efe5
PA
9519 {
9520 old_loc->owner = NULL;
9521 decref_bp_location (&old_loc);
9522 }
20874c92 9523 }
74960c60 9524 }
1c5cfe86 9525
2d134ed3
PA
9526 /* Rescan breakpoints at the same address and section, marking the
9527 first one as "first" and any others as "duplicates". This is so
9528 that the bpt instruction is only inserted once. If we have a
9529 permanent breakpoint at the same place as BPT, make that one the
9530 official one, and the rest as duplicates. Permanent breakpoints
9531 are sorted first for the same address.
9532
9533 Do the same for hardware watchpoints, but also considering the
9534 watchpoint's type (regular/access/read) and length. */
876fa593 9535
2d134ed3
PA
9536 bp_loc_first = NULL;
9537 wp_loc_first = NULL;
9538 awp_loc_first = NULL;
9539 rwp_loc_first = NULL;
876fa593 9540 ALL_BP_LOCATIONS (loc, locp)
74960c60 9541 {
2bdf28a0 9542 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
876fa593 9543 struct breakpoint *b = loc->owner;
2d134ed3 9544 struct bp_location **loc_first_p;
876fa593
JK
9545
9546 if (b->enable_state == bp_disabled
9547 || b->enable_state == bp_call_disabled
9548 || b->enable_state == bp_startup_disabled
9549 || !loc->enabled
9550 || loc->shlib_disabled
15c3d785 9551 || !breakpoint_address_is_meaningful (b)
d77f58be 9552 || is_tracepoint (b))
876fa593
JK
9553 continue;
9554
9555 /* Permanent breakpoint should always be inserted. */
9556 if (b->enable_state == bp_permanent && ! loc->inserted)
9557 internal_error (__FILE__, __LINE__,
9558 _("allegedly permanent breakpoint is not "
9559 "actually inserted"));
9560
2d134ed3
PA
9561 if (b->type == bp_hardware_watchpoint)
9562 loc_first_p = &wp_loc_first;
9563 else if (b->type == bp_read_watchpoint)
9564 loc_first_p = &rwp_loc_first;
9565 else if (b->type == bp_access_watchpoint)
9566 loc_first_p = &awp_loc_first;
9567 else
9568 loc_first_p = &bp_loc_first;
9569
9570 if (*loc_first_p == NULL
9571 || (overlay_debugging && loc->section != (*loc_first_p)->section)
9572 || !breakpoint_locations_match (loc, *loc_first_p))
876fa593 9573 {
2d134ed3 9574 *loc_first_p = loc;
876fa593
JK
9575 loc->duplicate = 0;
9576 continue;
9577 }
9578
9579 loc->duplicate = 1;
9580
2d134ed3
PA
9581 if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted
9582 && b->enable_state != bp_permanent)
876fa593
JK
9583 internal_error (__FILE__, __LINE__,
9584 _("another breakpoint was inserted on top of "
9585 "a permanent breakpoint"));
0d381245 9586 }
74960c60 9587
50c71eaf 9588 if (breakpoints_always_inserted_mode () && should_insert
c35b1492 9589 && (have_live_inferiors ()
2567c7d9 9590 || (gdbarch_has_global_breakpoints (target_gdbarch))))
74960c60 9591 insert_breakpoint_locations ();
f7545552
TT
9592
9593 do_cleanups (cleanups);
74960c60
VP
9594}
9595
20874c92
VP
9596void
9597breakpoint_retire_moribund (void)
9598{
9599 struct bp_location *loc;
9600 int ix;
9601
9602 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
9603 if (--(loc->events_till_retirement) == 0)
9604 {
f431efe5 9605 decref_bp_location (&loc);
20874c92
VP
9606 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
9607 --ix;
9608 }
9609}
9610
74960c60 9611static void
b60e7edf 9612update_global_location_list_nothrow (int inserting)
74960c60
VP
9613{
9614 struct gdb_exception e;
cc59ec59 9615
74960c60 9616 TRY_CATCH (e, RETURN_MASK_ERROR)
b60e7edf 9617 update_global_location_list (inserting);
0d381245
VP
9618}
9619
f431efe5
PA
9620/* Clear BKP from a BPS. */
9621
a474d7c2 9622static void
f431efe5 9623bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
a474d7c2
PA
9624{
9625 bpstat bs;
cc59ec59 9626
a474d7c2 9627 for (bs = bps; bs; bs = bs->next)
f431efe5 9628 if (bs->breakpoint_at == bpt)
a474d7c2
PA
9629 {
9630 bs->breakpoint_at = NULL;
9631 bs->old_val = NULL;
9632 /* bs->commands will be freed later. */
9633 }
9634}
9635
9636/* Callback for iterate_over_threads. */
9637static int
f431efe5 9638bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
a474d7c2 9639{
f431efe5 9640 struct breakpoint *bpt = data;
cc59ec59 9641
f431efe5 9642 bpstat_remove_bp_location (th->stop_bpstat, bpt);
a474d7c2
PA
9643 return 0;
9644}
9645
53a5351d 9646/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 9647 structures. */
c906108c
SS
9648
9649void
fba45db2 9650delete_breakpoint (struct breakpoint *bpt)
c906108c 9651{
52f0bd74 9652 struct breakpoint *b;
c906108c 9653
8a3fe4f8 9654 gdb_assert (bpt != NULL);
c906108c
SS
9655
9656 /* Has this bp already been deleted? This can happen because multiple
9657 lists can hold pointers to bp's. bpstat lists are especial culprits.
9658
9659 One example of this happening is a watchpoint's scope bp. When the
9660 scope bp triggers, we notice that the watchpoint is out of scope, and
9661 delete it. We also delete its scope bp. But the scope bp is marked
9662 "auto-deleting", and is already on a bpstat. That bpstat is then
9663 checked for auto-deleting bp's, which are deleted.
9664
9665 A real solution to this problem might involve reference counts in bp's,
9666 and/or giving them pointers back to their referencing bpstat's, and
9667 teaching delete_breakpoint to only free a bp's storage when no more
1272ad14 9668 references were extent. A cheaper bandaid was chosen. */
c906108c
SS
9669 if (bpt->type == bp_none)
9670 return;
9671
e5a0a904
JK
9672 /* At least avoid this stale reference until the reference counting of
9673 breakpoints gets resolved. */
9674 if (bpt->related_breakpoint != NULL)
9675 {
9676 gdb_assert (bpt->related_breakpoint->related_breakpoint == bpt);
9677 bpt->related_breakpoint->disposition = disp_del_at_next_stop;
9678 bpt->related_breakpoint->related_breakpoint = NULL;
9679 bpt->related_breakpoint = NULL;
9680 }
9681
383f836e 9682 observer_notify_breakpoint_deleted (bpt->number);
c906108c 9683
c906108c
SS
9684 if (breakpoint_chain == bpt)
9685 breakpoint_chain = bpt->next;
9686
c906108c
SS
9687 ALL_BREAKPOINTS (b)
9688 if (b->next == bpt)
c5aa993b
JM
9689 {
9690 b->next = bpt->next;
9691 break;
9692 }
c906108c 9693
9add0f1b 9694 decref_counted_command_line (&bpt->commands);
60e1c644
PA
9695 xfree (bpt->cond_string);
9696 xfree (bpt->cond_exp);
9697 xfree (bpt->addr_string);
9698 xfree (bpt->exp);
9699 xfree (bpt->exp_string);
d63d0675 9700 xfree (bpt->exp_string_reparse);
60e1c644
PA
9701 value_free (bpt->val);
9702 xfree (bpt->source_file);
9703 xfree (bpt->exec_pathname);
a96d9b2e 9704 clean_up_filters (&bpt->syscalls_to_be_caught);
c906108c 9705
f431efe5
PA
9706
9707 /* Be sure no bpstat's are pointing at the breakpoint after it's
9708 been freed. */
9709 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
9710 in all threeds for now. Note that we cannot just remove bpstats
9711 pointing at bpt from the stop_bpstat list entirely, as breakpoint
9712 commands are associated with the bpstat; if we remove it here,
9713 then the later call to bpstat_do_actions (&stop_bpstat); in
9714 event-top.c won't do anything, and temporary breakpoints with
9715 commands won't work. */
9716
9717 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
9718
74960c60
VP
9719 /* Now that breakpoint is removed from breakpoint
9720 list, update the global location list. This
9721 will remove locations that used to belong to
9722 this breakpoint. Do this before freeing
9723 the breakpoint itself, since remove_breakpoint
9724 looks at location's owner. It might be better
9725 design to have location completely self-contained,
9726 but it's not the case now. */
b60e7edf 9727 update_global_location_list (0);
74960c60
VP
9728
9729
c906108c
SS
9730 /* On the chance that someone will soon try again to delete this same
9731 bp, we mark it as deleted before freeing its storage. */
9732 bpt->type = bp_none;
9733
b8c9b27d 9734 xfree (bpt);
c906108c
SS
9735}
9736
4d6140d9
AC
9737static void
9738do_delete_breakpoint_cleanup (void *b)
9739{
9740 delete_breakpoint (b);
9741}
9742
9743struct cleanup *
9744make_cleanup_delete_breakpoint (struct breakpoint *b)
9745{
9746 return make_cleanup (do_delete_breakpoint_cleanup, b);
9747}
9748
95a42b64
TT
9749/* A callback for map_breakpoint_numbers that calls
9750 delete_breakpoint. */
9751
9752static void
9753do_delete_breakpoint (struct breakpoint *b, void *ignore)
9754{
9755 delete_breakpoint (b);
9756}
9757
c906108c 9758void
fba45db2 9759delete_command (char *arg, int from_tty)
c906108c
SS
9760{
9761 struct breakpoint *b, *temp;
9762
ea9365bb
TT
9763 dont_repeat ();
9764
c906108c
SS
9765 if (arg == 0)
9766 {
9767 int breaks_to_delete = 0;
9768
9769 /* Delete all breakpoints if no argument.
c5aa993b
JM
9770 Do not delete internal or call-dummy breakpoints, these
9771 have to be deleted with an explicit breakpoint number argument. */
9772 ALL_BREAKPOINTS (b)
9773 {
059fb39f 9774 if (b->type != bp_call_dummy
aa7d318d 9775 && b->type != bp_std_terminate
059fb39f 9776 && b->type != bp_shlib_event
4efc6507 9777 && b->type != bp_jit_event
059fb39f
PM
9778 && b->type != bp_thread_event
9779 && b->type != bp_overlay_event
0fd8e87f 9780 && b->type != bp_longjmp_master
aa7d318d 9781 && b->type != bp_std_terminate_master
059fb39f 9782 && b->number >= 0)
973d738b
DJ
9783 {
9784 breaks_to_delete = 1;
9785 break;
9786 }
c5aa993b 9787 }
c906108c
SS
9788
9789 /* Ask user only if there are some breakpoints to delete. */
9790 if (!from_tty
e2e0b3e5 9791 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 9792 {
c5aa993b
JM
9793 ALL_BREAKPOINTS_SAFE (b, temp)
9794 {
059fb39f 9795 if (b->type != bp_call_dummy
aa7d318d 9796 && b->type != bp_std_terminate
059fb39f
PM
9797 && b->type != bp_shlib_event
9798 && b->type != bp_thread_event
4efc6507 9799 && b->type != bp_jit_event
059fb39f 9800 && b->type != bp_overlay_event
0fd8e87f 9801 && b->type != bp_longjmp_master
aa7d318d 9802 && b->type != bp_std_terminate_master
059fb39f 9803 && b->number >= 0)
c5aa993b
JM
9804 delete_breakpoint (b);
9805 }
c906108c
SS
9806 }
9807 }
9808 else
95a42b64 9809 map_breakpoint_numbers (arg, do_delete_breakpoint, NULL);
c906108c
SS
9810}
9811
0d381245
VP
9812static int
9813all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 9814{
0d381245
VP
9815 for (; loc; loc = loc->next)
9816 if (!loc->shlib_disabled)
9817 return 0;
9818 return 1;
fe3f5fa8
VP
9819}
9820
776592bf
DE
9821/* Subroutine of update_breakpoint_locations to simplify it.
9822 Return non-zero if multiple fns in list LOC have the same name.
9823 Null names are ignored. */
9824
9825static int
9826ambiguous_names_p (struct bp_location *loc)
9827{
9828 struct bp_location *l;
9829 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
9830 (int (*) (const void *,
9831 const void *)) streq,
776592bf
DE
9832 NULL, xcalloc, xfree);
9833
9834 for (l = loc; l != NULL; l = l->next)
9835 {
9836 const char **slot;
9837 const char *name = l->function_name;
9838
9839 /* Allow for some names to be NULL, ignore them. */
9840 if (name == NULL)
9841 continue;
9842
9843 slot = (const char **) htab_find_slot (htab, (const void *) name,
9844 INSERT);
9845 /* NOTE: We can assume slot != NULL here because xcalloc never returns
9846 NULL. */
9847 if (*slot != NULL)
9848 {
9849 htab_delete (htab);
9850 return 1;
9851 }
9852 *slot = name;
9853 }
9854
9855 htab_delete (htab);
9856 return 0;
9857}
9858
0fb4aa4b
PA
9859/* When symbols change, it probably means the sources changed as well,
9860 and it might mean the static tracepoint markers are no longer at
9861 the same address or line numbers they used to be at last we
9862 checked. Losing your static tracepoints whenever you rebuild is
9863 undesirable. This function tries to resync/rematch gdb static
9864 tracepoints with the markers on the target, for static tracepoints
9865 that have not been set by marker id. Static tracepoint that have
9866 been set by marker id are reset by marker id in breakpoint_re_set.
9867 The heuristic is:
9868
9869 1) For a tracepoint set at a specific address, look for a marker at
9870 the old PC. If one is found there, assume to be the same marker.
9871 If the name / string id of the marker found is different from the
9872 previous known name, assume that means the user renamed the marker
9873 in the sources, and output a warning.
9874
9875 2) For a tracepoint set at a given line number, look for a marker
9876 at the new address of the old line number. If one is found there,
9877 assume to be the same marker. If the name / string id of the
9878 marker found is different from the previous known name, assume that
9879 means the user renamed the marker in the sources, and output a
9880 warning.
9881
9882 3) If a marker is no longer found at the same address or line, it
9883 may mean the marker no longer exists. But it may also just mean
9884 the code changed a bit. Maybe the user added a few lines of code
9885 that made the marker move up or down (in line number terms). Ask
9886 the target for info about the marker with the string id as we knew
9887 it. If found, update line number and address in the matching
9888 static tracepoint. This will get confused if there's more than one
9889 marker with the same ID (possible in UST, although unadvised
9890 precisely because it confuses tools). */
9891
9892static struct symtab_and_line
9893update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
9894{
9895 struct static_tracepoint_marker marker;
9896 CORE_ADDR pc;
9897 int i;
9898
9899 pc = sal.pc;
9900 if (sal.line)
9901 find_line_pc (sal.symtab, sal.line, &pc);
9902
9903 if (target_static_tracepoint_marker_at (pc, &marker))
9904 {
9905 if (strcmp (b->static_trace_marker_id, marker.str_id) != 0)
9906 warning (_("static tracepoint %d changed probed marker from %s to %s"),
9907 b->number,
9908 b->static_trace_marker_id, marker.str_id);
9909
9910 xfree (b->static_trace_marker_id);
9911 b->static_trace_marker_id = xstrdup (marker.str_id);
9912 release_static_tracepoint_marker (&marker);
9913
9914 return sal;
9915 }
9916
9917 /* Old marker wasn't found on target at lineno. Try looking it up
9918 by string ID. */
9919 if (!sal.explicit_pc
9920 && sal.line != 0
9921 && sal.symtab != NULL
9922 && b->static_trace_marker_id != NULL)
9923 {
9924 VEC(static_tracepoint_marker_p) *markers;
9925
9926 markers
9927 = target_static_tracepoint_markers_by_strid (b->static_trace_marker_id);
9928
9929 if (!VEC_empty(static_tracepoint_marker_p, markers))
9930 {
9931 struct symtab_and_line sal;
9932 struct symbol *sym;
9933 struct static_tracepoint_marker *marker;
9934
9935 marker = VEC_index (static_tracepoint_marker_p, markers, 0);
9936
9937 xfree (b->static_trace_marker_id);
9938 b->static_trace_marker_id = xstrdup (marker->str_id);
9939
9940 warning (_("marker for static tracepoint %d (%s) not "
9941 "found at previous line number"),
9942 b->number, b->static_trace_marker_id);
9943
9944 init_sal (&sal);
9945
9946 sal.pc = marker->address;
9947
9948 sal = find_pc_line (marker->address, 0);
9949 sym = find_pc_sect_function (marker->address, NULL);
9950 ui_out_text (uiout, "Now in ");
9951 if (sym)
9952 {
9953 ui_out_field_string (uiout, "func",
9954 SYMBOL_PRINT_NAME (sym));
9955 ui_out_text (uiout, " at ");
9956 }
9957 ui_out_field_string (uiout, "file", sal.symtab->filename);
9958 ui_out_text (uiout, ":");
9959
9960 if (ui_out_is_mi_like_p (uiout))
9961 {
9962 char *fullname = symtab_to_fullname (sal.symtab);
9963
9964 if (fullname)
9965 ui_out_field_string (uiout, "fullname", fullname);
9966 }
9967
9968 ui_out_field_int (uiout, "line", sal.line);
9969 ui_out_text (uiout, "\n");
9970
9971 b->line_number = sal.line;
9972
9973 xfree (b->source_file);
9974 if (sym)
9975 b->source_file = xstrdup (sal.symtab->filename);
9976 else
9977 b->source_file = NULL;
9978
9979 xfree (b->addr_string);
9980 b->addr_string = xstrprintf ("%s:%d",
9981 sal.symtab->filename, b->line_number);
9982
9983 /* Might be nice to check if function changed, and warn if
9984 so. */
9985
9986 release_static_tracepoint_marker (marker);
9987 }
9988 }
9989 return sal;
9990}
9991
fe3f5fa8 9992static void
0d381245
VP
9993update_breakpoint_locations (struct breakpoint *b,
9994 struct symtabs_and_lines sals)
fe3f5fa8
VP
9995{
9996 int i;
9997 char *s;
0d381245
VP
9998 struct bp_location *existing_locations = b->loc;
9999
10000 /* If there's no new locations, and all existing locations
10001 are pending, don't do anything. This optimizes
10002 the common case where all locations are in the same
10003 shared library, that was unloaded. We'd like to
10004 retain the location, so that when the library
10005 is loaded again, we don't loose the enabled/disabled
10006 status of the individual locations. */
10007 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
10008 return;
10009
fe3f5fa8
VP
10010 b->loc = NULL;
10011
0d381245 10012 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 10013 {
0d381245 10014 struct bp_location *new_loc =
39d61571 10015 add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 10016
0d381245
VP
10017 /* Reparse conditions, they might contain references to the
10018 old symtab. */
10019 if (b->cond_string != NULL)
10020 {
10021 struct gdb_exception e;
fe3f5fa8 10022
0d381245
VP
10023 s = b->cond_string;
10024 TRY_CATCH (e, RETURN_MASK_ERROR)
10025 {
10026 new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
10027 0);
10028 }
10029 if (e.reason < 0)
10030 {
10031 warning (_("failed to reevaluate condition for breakpoint %d: %s"),
10032 b->number, e.message);
10033 new_loc->enabled = 0;
10034 }
10035 }
fe3f5fa8 10036
0d381245
VP
10037 if (b->source_file != NULL)
10038 xfree (b->source_file);
10039 if (sals.sals[i].symtab == NULL)
10040 b->source_file = NULL;
10041 else
1b36a34b 10042 b->source_file = xstrdup (sals.sals[i].symtab->filename);
fe3f5fa8 10043
0d381245
VP
10044 if (b->line_number == 0)
10045 b->line_number = sals.sals[i].line;
10046 }
fe3f5fa8 10047
514f746b
AR
10048 /* Update locations of permanent breakpoints. */
10049 if (b->enable_state == bp_permanent)
10050 make_breakpoint_permanent (b);
10051
0d381245
VP
10052 /* If possible, carry over 'disable' status from existing breakpoints. */
10053 {
10054 struct bp_location *e = existing_locations;
776592bf
DE
10055 /* If there are multiple breakpoints with the same function name,
10056 e.g. for inline functions, comparing function names won't work.
10057 Instead compare pc addresses; this is just a heuristic as things
10058 may have moved, but in practice it gives the correct answer
10059 often enough until a better solution is found. */
10060 int have_ambiguous_names = ambiguous_names_p (b->loc);
10061
0d381245
VP
10062 for (; e; e = e->next)
10063 {
10064 if (!e->enabled && e->function_name)
10065 {
10066 struct bp_location *l = b->loc;
776592bf
DE
10067 if (have_ambiguous_names)
10068 {
10069 for (; l; l = l->next)
6c95b8df
PA
10070 if (breakpoint_address_match (e->pspace->aspace, e->address,
10071 l->pspace->aspace, l->address))
776592bf
DE
10072 {
10073 l->enabled = 0;
10074 break;
10075 }
10076 }
10077 else
10078 {
10079 for (; l; l = l->next)
10080 if (l->function_name
10081 && strcmp (e->function_name, l->function_name) == 0)
10082 {
10083 l->enabled = 0;
10084 break;
10085 }
10086 }
0d381245
VP
10087 }
10088 }
10089 }
fe3f5fa8 10090
b60e7edf 10091 update_global_location_list (1);
fe3f5fa8
VP
10092}
10093
c906108c
SS
10094/* Reset a breakpoint given it's struct breakpoint * BINT.
10095 The value we return ends up being the return value from catch_errors.
10096 Unused in this case. */
10097
10098static int
4efb68b1 10099breakpoint_re_set_one (void *bint)
c906108c 10100{
53a5351d
JM
10101 /* get past catch_errs */
10102 struct breakpoint *b = (struct breakpoint *) bint;
fe3f5fa8
VP
10103 int not_found = 0;
10104 int *not_found_ptr = &not_found;
6c95b8df
PA
10105 struct symtabs_and_lines sals = {0};
10106 struct symtabs_and_lines expanded = {0};
c906108c 10107 char *s;
fe3f5fa8 10108 struct gdb_exception e;
6c95b8df 10109 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
0fb4aa4b 10110 int marker_spec = 0;
c906108c
SS
10111
10112 switch (b->type)
10113 {
10114 case bp_none:
8a3fe4f8 10115 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
53a5351d 10116 b->number);
c906108c
SS
10117 return 0;
10118 case bp_breakpoint:
10119 case bp_hardware_breakpoint:
1042e4c0 10120 case bp_tracepoint:
7a697b8d 10121 case bp_fast_tracepoint:
0fb4aa4b 10122 case bp_static_tracepoint:
8bea4e01
UW
10123 /* Do not attempt to re-set breakpoints disabled during startup. */
10124 if (b->enable_state == bp_startup_disabled)
10125 return 0;
10126
c906108c
SS
10127 if (b->addr_string == NULL)
10128 {
10129 /* Anything without a string can't be re-set. */
10130 delete_breakpoint (b);
10131 return 0;
10132 }
c906108c 10133
c906108c
SS
10134 input_radix = b->input_radix;
10135 s = b->addr_string;
6c95b8df
PA
10136
10137 save_current_space_and_thread ();
10138 switch_to_program_space_and_thread (b->pspace);
10139
0fb4aa4b
PA
10140 marker_spec = b->type == bp_static_tracepoint && is_marker_spec (s);
10141
385d04dc 10142 set_language (b->language);
fe3f5fa8 10143 TRY_CATCH (e, RETURN_MASK_ERROR)
c906108c 10144 {
0fb4aa4b
PA
10145 if (marker_spec)
10146 {
10147 sals = decode_static_tracepoint_spec (&s);
10148 if (sals.nelts > b->static_trace_marker_id_idx)
10149 {
10150 sals.sals[0] = sals.sals[b->static_trace_marker_id_idx];
10151 sals.nelts = 1;
10152 }
10153 else
10154 error (_("marker %s not found"), b->static_trace_marker_id);
10155 }
10156 else
10157 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
10158 not_found_ptr);
fe3f5fa8
VP
10159 }
10160 if (e.reason < 0)
10161 {
10162 int not_found_and_ok = 0;
10163 /* For pending breakpoints, it's expected that parsing
10164 will fail until the right shared library is loaded.
10165 User has already told to create pending breakpoints and
10166 don't need extra messages. If breakpoint is in bp_shlib_disabled
10167 state, then user already saw the message about that breakpoint
10168 being disabled, and don't want to see more errors. */
0d381245
VP
10169 if (not_found
10170 && (b->condition_not_parsed
10171 || (b->loc && b->loc->shlib_disabled)
10172 || b->enable_state == bp_disabled))
fe3f5fa8
VP
10173 not_found_and_ok = 1;
10174
10175 if (!not_found_and_ok)
c906108c 10176 {
fe3f5fa8
VP
10177 /* We surely don't want to warn about the same breakpoint
10178 10 times. One solution, implemented here, is disable
10179 the breakpoint on error. Another solution would be to
10180 have separate 'warning emitted' flag. Since this
10181 happens only when a binary has changed, I don't know
10182 which approach is better. */
10183 b->enable_state = bp_disabled;
10184 throw_exception (e);
c906108c 10185 }
fe3f5fa8 10186 }
c906108c 10187
6c95b8df 10188 if (!not_found)
fe3f5fa8 10189 {
6c95b8df
PA
10190 gdb_assert (sals.nelts == 1);
10191
10192 resolve_sal_pc (&sals.sals[0]);
10193 if (b->condition_not_parsed && s && s[0])
10194 {
10195 char *cond_string = 0;
10196 int thread = -1;
10197 int task = 0;
10198
10199 find_condition_and_thread (s, sals.sals[0].pc,
10200 &cond_string, &thread, &task);
10201 if (cond_string)
10202 b->cond_string = cond_string;
10203 b->thread = thread;
10204 b->task = task;
10205 b->condition_not_parsed = 0;
10206 }
10207
0fb4aa4b
PA
10208 if (b->type == bp_static_tracepoint && !marker_spec)
10209 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
10210
6c95b8df 10211 expanded = expand_line_sal_maybe (sals.sals[0]);
fe3f5fa8 10212 }
6c95b8df
PA
10213
10214 make_cleanup (xfree, sals.sals);
ed0616c6 10215 update_breakpoint_locations (b, expanded);
c906108c
SS
10216 break;
10217
10218 case bp_watchpoint:
10219 case bp_hardware_watchpoint:
10220 case bp_read_watchpoint:
10221 case bp_access_watchpoint:
0b3de036
VP
10222 /* Watchpoint can be either on expression using entirely global variables,
10223 or it can be on local variables.
10224
10225 Watchpoints of the first kind are never auto-deleted, and even persist
10226 across program restarts. Since they can use variables from shared
10227 libraries, we need to reparse expression as libraries are loaded
10228 and unloaded.
10229
10230 Watchpoints on local variables can also change meaning as result
10231 of solib event. For example, if a watchpoint uses both a local and
10232 a global variables in expression, it's a local watchpoint, but
10233 unloading of a shared library will make the expression invalid.
10234 This is not a very common use case, but we still re-evaluate
10235 expression, to avoid surprises to the user.
10236
10237 Note that for local watchpoints, we re-evaluate it only if
10238 watchpoints frame id is still valid. If it's not, it means
10239 the watchpoint is out of scope and will be deleted soon. In fact,
10240 I'm not sure we'll ever be called in this case.
10241
10242 If a local watchpoint's frame id is still valid, then
10243 b->exp_valid_block is likewise valid, and we can safely use it.
10244
10245 Don't do anything about disabled watchpoints, since they will
10246 be reevaluated again when enabled. */
a5606eee 10247 update_watchpoint (b, 1 /* reparse */);
c906108c 10248 break;
c5aa993b
JM
10249 /* We needn't really do anything to reset these, since the mask
10250 that requests them is unaffected by e.g., new libraries being
10251 loaded. */
ce78b96d 10252 case bp_catchpoint:
c906108c 10253 break;
c5aa993b 10254
c906108c 10255 default:
a3f17187 10256 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
c906108c 10257 /* fall through */
0fd8e87f
UW
10258 /* Delete overlay event and longjmp master breakpoints; they will be
10259 reset later by breakpoint_re_set. */
1900040c 10260 case bp_overlay_event:
0fd8e87f 10261 case bp_longjmp_master:
aa7d318d 10262 case bp_std_terminate_master:
c906108c
SS
10263 delete_breakpoint (b);
10264 break;
10265
c5aa993b
JM
10266 /* This breakpoint is special, it's set up when the inferior
10267 starts and we really don't want to touch it. */
c906108c
SS
10268 case bp_shlib_event:
10269
c4093a6a
JM
10270 /* Like bp_shlib_event, this breakpoint type is special.
10271 Once it is set up, we do not want to touch it. */
10272 case bp_thread_event:
10273
c5aa993b
JM
10274 /* Keep temporary breakpoints, which can be encountered when we step
10275 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
10276 Otherwise these should have been blown away via the cleanup chain
10277 or by breakpoint_init_inferior when we rerun the executable. */
c906108c
SS
10278 case bp_until:
10279 case bp_finish:
10280 case bp_watchpoint_scope:
10281 case bp_call_dummy:
aa7d318d 10282 case bp_std_terminate:
c906108c 10283 case bp_step_resume:
611c83ae
PA
10284 case bp_longjmp:
10285 case bp_longjmp_resume:
4efc6507 10286 case bp_jit_event:
c906108c
SS
10287 break;
10288 }
10289
6c95b8df 10290 do_cleanups (cleanups);
c906108c
SS
10291 return 0;
10292}
10293
69de3c6a 10294/* Re-set all breakpoints after symbols have been re-loaded. */
c906108c 10295void
69de3c6a 10296breakpoint_re_set (void)
c906108c
SS
10297{
10298 struct breakpoint *b, *temp;
10299 enum language save_language;
10300 int save_input_radix;
6c95b8df 10301 struct cleanup *old_chain;
c5aa993b 10302
c906108c
SS
10303 save_language = current_language->la_language;
10304 save_input_radix = input_radix;
6c95b8df
PA
10305 old_chain = save_current_program_space ();
10306
c906108c 10307 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 10308 {
53a5351d 10309 /* Format possible error msg */
fe3f5fa8 10310 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
10311 b->number);
10312 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 10313 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 10314 do_cleanups (cleanups);
c5aa993b 10315 }
c906108c
SS
10316 set_language (save_language);
10317 input_radix = save_input_radix;
e62c965a 10318
0756c555 10319 jit_breakpoint_re_set ();
4efc6507 10320
6c95b8df
PA
10321 do_cleanups (old_chain);
10322
69de3c6a 10323 create_overlay_event_breakpoint ("_ovly_debug_event");
0fd8e87f
UW
10324 create_longjmp_master_breakpoint ("longjmp");
10325 create_longjmp_master_breakpoint ("_longjmp");
10326 create_longjmp_master_breakpoint ("siglongjmp");
10327 create_longjmp_master_breakpoint ("_siglongjmp");
aa7d318d 10328 create_std_terminate_master_breakpoint ("std::terminate()");
c906108c
SS
10329}
10330\f
c906108c
SS
10331/* Reset the thread number of this breakpoint:
10332
10333 - If the breakpoint is for all threads, leave it as-is.
39f77062 10334 - Else, reset it to the current thread for inferior_ptid. */
c906108c 10335void
fba45db2 10336breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
10337{
10338 if (b->thread != -1)
10339 {
39f77062
KB
10340 if (in_thread_list (inferior_ptid))
10341 b->thread = pid_to_thread_id (inferior_ptid);
6c95b8df
PA
10342
10343 /* We're being called after following a fork. The new fork is
10344 selected as current, and unless this was a vfork will have a
10345 different program space from the original thread. Reset that
10346 as well. */
10347 b->loc->pspace = current_program_space;
c906108c
SS
10348 }
10349}
10350
03ac34d5
MS
10351/* Set ignore-count of breakpoint number BPTNUM to COUNT.
10352 If from_tty is nonzero, it prints a message to that effect,
10353 which ends with a period (no newline). */
10354
c906108c 10355void
fba45db2 10356set_ignore_count (int bptnum, int count, int from_tty)
c906108c 10357{
52f0bd74 10358 struct breakpoint *b;
c906108c
SS
10359
10360 if (count < 0)
10361 count = 0;
10362
10363 ALL_BREAKPOINTS (b)
10364 if (b->number == bptnum)
c5aa993b 10365 {
d77f58be
SS
10366 if (is_tracepoint (b))
10367 {
10368 if (from_tty && count != 0)
10369 printf_filtered (_("Ignore count ignored for tracepoint %d."),
10370 bptnum);
10371 return;
10372 }
10373
c5aa993b 10374 b->ignore_count = count;
221ea385
KS
10375 if (from_tty)
10376 {
10377 if (count == 0)
a3f17187 10378 printf_filtered (_("Will stop next time breakpoint %d is reached."),
221ea385
KS
10379 bptnum);
10380 else if (count == 1)
a3f17187 10381 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
10382 bptnum);
10383 else
a3f17187 10384 printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
221ea385
KS
10385 count, bptnum);
10386 }
c5aa993b 10387 breakpoints_changed ();
383f836e 10388 observer_notify_breakpoint_modified (b->number);
c5aa993b
JM
10389 return;
10390 }
c906108c 10391
8a3fe4f8 10392 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
10393}
10394
b2175913
MS
10395void
10396make_breakpoint_silent (struct breakpoint *b)
10397{
10398 /* Silence the breakpoint. */
10399 b->silent = 1;
10400}
10401
c906108c
SS
10402/* Command to set ignore-count of breakpoint N to COUNT. */
10403
10404static void
fba45db2 10405ignore_command (char *args, int from_tty)
c906108c
SS
10406{
10407 char *p = args;
52f0bd74 10408 int num;
c906108c
SS
10409
10410 if (p == 0)
e2e0b3e5 10411 error_no_arg (_("a breakpoint number"));
c5aa993b 10412
c906108c 10413 num = get_number (&p);
5c44784c 10414 if (num == 0)
8a3fe4f8 10415 error (_("bad breakpoint number: '%s'"), args);
c906108c 10416 if (*p == 0)
8a3fe4f8 10417 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
10418
10419 set_ignore_count (num,
10420 longest_to_int (value_as_long (parse_and_eval (p))),
10421 from_tty);
221ea385
KS
10422 if (from_tty)
10423 printf_filtered ("\n");
c906108c
SS
10424}
10425\f
10426/* Call FUNCTION on each of the breakpoints
10427 whose numbers are given in ARGS. */
10428
10429static void
95a42b64
TT
10430map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
10431 void *),
10432 void *data)
c906108c 10433{
52f0bd74 10434 char *p = args;
c906108c 10435 char *p1;
52f0bd74
AC
10436 int num;
10437 struct breakpoint *b, *tmp;
11cf8741 10438 int match;
c906108c
SS
10439
10440 if (p == 0)
e2e0b3e5 10441 error_no_arg (_("one or more breakpoint numbers"));
c906108c
SS
10442
10443 while (*p)
10444 {
11cf8741 10445 match = 0;
c906108c 10446 p1 = p;
c5aa993b 10447
5c44784c
JM
10448 num = get_number_or_range (&p1);
10449 if (num == 0)
c5aa993b 10450 {
8a3fe4f8 10451 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
10452 }
10453 else
10454 {
10455 ALL_BREAKPOINTS_SAFE (b, tmp)
10456 if (b->number == num)
10457 {
10458 struct breakpoint *related_breakpoint = b->related_breakpoint;
11cf8741 10459 match = 1;
95a42b64 10460 function (b, data);
5c44784c 10461 if (related_breakpoint)
95a42b64 10462 function (related_breakpoint, data);
11cf8741 10463 break;
5c44784c 10464 }
11cf8741 10465 if (match == 0)
a3f17187 10466 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 10467 }
c906108c
SS
10468 p = p1;
10469 }
10470}
10471
0d381245
VP
10472static struct bp_location *
10473find_location_by_number (char *number)
10474{
10475 char *dot = strchr (number, '.');
10476 char *p1;
10477 int bp_num;
10478 int loc_num;
10479 struct breakpoint *b;
10480 struct bp_location *loc;
10481
10482 *dot = '\0';
10483
10484 p1 = number;
10485 bp_num = get_number_or_range (&p1);
10486 if (bp_num == 0)
10487 error (_("Bad breakpoint number '%s'"), number);
10488
10489 ALL_BREAKPOINTS (b)
10490 if (b->number == bp_num)
10491 {
10492 break;
10493 }
10494
10495 if (!b || b->number != bp_num)
10496 error (_("Bad breakpoint number '%s'"), number);
10497
10498 p1 = dot+1;
10499 loc_num = get_number_or_range (&p1);
10500 if (loc_num == 0)
10501 error (_("Bad breakpoint location number '%s'"), number);
10502
10503 --loc_num;
10504 loc = b->loc;
10505 for (;loc_num && loc; --loc_num, loc = loc->next)
10506 ;
10507 if (!loc)
10508 error (_("Bad breakpoint location number '%s'"), dot+1);
10509
10510 return loc;
10511}
10512
10513
1900040c
MS
10514/* Set ignore-count of breakpoint number BPTNUM to COUNT.
10515 If from_tty is nonzero, it prints a message to that effect,
10516 which ends with a period (no newline). */
10517
c906108c 10518void
fba45db2 10519disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
10520{
10521 /* Never disable a watchpoint scope breakpoint; we want to
10522 hit them when we leave scope so we can delete both the
10523 watchpoint and its scope breakpoint at that time. */
10524 if (bpt->type == bp_watchpoint_scope)
10525 return;
10526
c2c6d25f 10527 /* You can't disable permanent breakpoints. */
b5de0fa7 10528 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
10529 return;
10530
b5de0fa7 10531 bpt->enable_state = bp_disabled;
c906108c 10532
b60e7edf 10533 update_global_location_list (0);
c906108c 10534
383f836e 10535 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
10536}
10537
95a42b64
TT
10538/* A callback for map_breakpoint_numbers that calls
10539 disable_breakpoint. */
10540
10541static void
10542do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
10543{
10544 disable_breakpoint (b);
10545}
10546
c906108c 10547static void
fba45db2 10548disable_command (char *args, int from_tty)
c906108c 10549{
52f0bd74 10550 struct breakpoint *bpt;
cc59ec59 10551
c906108c
SS
10552 if (args == 0)
10553 ALL_BREAKPOINTS (bpt)
10554 switch (bpt->type)
c5aa993b
JM
10555 {
10556 case bp_none:
8a3fe4f8 10557 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
53a5351d 10558 bpt->number);
c5aa993b
JM
10559 continue;
10560 case bp_breakpoint:
1042e4c0 10561 case bp_tracepoint:
7a697b8d 10562 case bp_fast_tracepoint:
0fb4aa4b 10563 case bp_static_tracepoint:
ce78b96d 10564 case bp_catchpoint:
c5aa993b
JM
10565 case bp_hardware_breakpoint:
10566 case bp_watchpoint:
10567 case bp_hardware_watchpoint:
10568 case bp_read_watchpoint:
10569 case bp_access_watchpoint:
10570 disable_breakpoint (bpt);
10571 default:
10572 continue;
10573 }
0d381245
VP
10574 else if (strchr (args, '.'))
10575 {
10576 struct bp_location *loc = find_location_by_number (args);
10577 if (loc)
10578 loc->enabled = 0;
b60e7edf 10579 update_global_location_list (0);
0d381245 10580 }
c906108c 10581 else
95a42b64 10582 map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL);
c906108c
SS
10583}
10584
10585static void
fba45db2 10586do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
c906108c 10587{
afe38095 10588 int target_resources_ok;
c906108c
SS
10589
10590 if (bpt->type == bp_hardware_breakpoint)
10591 {
10592 int i;
c5aa993b 10593 i = hw_breakpoint_used_count ();
53a5351d 10594 target_resources_ok =
d92524f1 10595 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 10596 i + 1, 0);
c906108c 10597 if (target_resources_ok == 0)
8a3fe4f8 10598 error (_("No hardware breakpoint support in the target."));
c906108c 10599 else if (target_resources_ok < 0)
8a3fe4f8 10600 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
10601 }
10602
cc60f2e3 10603 if (is_watchpoint (bpt))
c906108c 10604 {
dde02812
ES
10605 struct gdb_exception e;
10606
10607 TRY_CATCH (e, RETURN_MASK_ALL)
c906108c 10608 {
dde02812 10609 update_watchpoint (bpt, 1 /* reparse */);
c906108c 10610 }
dde02812 10611 if (e.reason < 0)
c5aa993b 10612 {
dde02812
ES
10613 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
10614 bpt->number);
10615 return;
c5aa993b 10616 }
c906108c 10617 }
0101ce28 10618
b4c291bb
KH
10619 if (bpt->enable_state != bp_permanent)
10620 bpt->enable_state = bp_enabled;
10621 bpt->disposition = disposition;
b60e7edf 10622 update_global_location_list (1);
b4c291bb
KH
10623 breakpoints_changed ();
10624
383f836e 10625 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
10626}
10627
fe3f5fa8 10628
c906108c 10629void
fba45db2 10630enable_breakpoint (struct breakpoint *bpt)
c906108c
SS
10631{
10632 do_enable_breakpoint (bpt, bpt->disposition);
10633}
10634
95a42b64
TT
10635/* A callback for map_breakpoint_numbers that calls
10636 enable_breakpoint. */
10637
10638static void
10639do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
10640{
10641 enable_breakpoint (b);
10642}
10643
c906108c
SS
10644/* The enable command enables the specified breakpoints (or all defined
10645 breakpoints) so they once again become (or continue to be) effective
1272ad14 10646 in stopping the inferior. */
c906108c 10647
c906108c 10648static void
fba45db2 10649enable_command (char *args, int from_tty)
c906108c 10650{
52f0bd74 10651 struct breakpoint *bpt;
cc59ec59 10652
c906108c
SS
10653 if (args == 0)
10654 ALL_BREAKPOINTS (bpt)
10655 switch (bpt->type)
c5aa993b
JM
10656 {
10657 case bp_none:
8a3fe4f8 10658 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
53a5351d 10659 bpt->number);
c5aa993b
JM
10660 continue;
10661 case bp_breakpoint:
1042e4c0 10662 case bp_tracepoint:
7a697b8d 10663 case bp_fast_tracepoint:
0fb4aa4b 10664 case bp_static_tracepoint:
ce78b96d 10665 case bp_catchpoint:
c5aa993b
JM
10666 case bp_hardware_breakpoint:
10667 case bp_watchpoint:
10668 case bp_hardware_watchpoint:
10669 case bp_read_watchpoint:
10670 case bp_access_watchpoint:
10671 enable_breakpoint (bpt);
10672 default:
10673 continue;
10674 }
0d381245
VP
10675 else if (strchr (args, '.'))
10676 {
10677 struct bp_location *loc = find_location_by_number (args);
10678 if (loc)
10679 loc->enabled = 1;
b60e7edf 10680 update_global_location_list (1);
0d381245 10681 }
c906108c 10682 else
95a42b64 10683 map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL);
c906108c
SS
10684}
10685
10686static void
95a42b64 10687enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 10688{
b5de0fa7 10689 do_enable_breakpoint (bpt, disp_disable);
c906108c
SS
10690}
10691
c906108c 10692static void
fba45db2 10693enable_once_command (char *args, int from_tty)
c906108c 10694{
95a42b64 10695 map_breakpoint_numbers (args, enable_once_breakpoint, NULL);
c906108c
SS
10696}
10697
10698static void
95a42b64 10699enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 10700{
b5de0fa7 10701 do_enable_breakpoint (bpt, disp_del);
c906108c
SS
10702}
10703
c906108c 10704static void
fba45db2 10705enable_delete_command (char *args, int from_tty)
c906108c 10706{
95a42b64 10707 map_breakpoint_numbers (args, enable_delete_breakpoint, NULL);
c906108c
SS
10708}
10709\f
fa8d40ab
JJ
10710static void
10711set_breakpoint_cmd (char *args, int from_tty)
10712{
10713}
10714
10715static void
10716show_breakpoint_cmd (char *args, int from_tty)
10717{
10718}
10719
1f3b5d1b
PP
10720/* Invalidate last known value of any hardware watchpoint if
10721 the memory which that value represents has been written to by
10722 GDB itself. */
10723
10724static void
10725invalidate_bp_value_on_memory_change (CORE_ADDR addr, int len,
10726 const bfd_byte *data)
10727{
10728 struct breakpoint *bp;
10729
10730 ALL_BREAKPOINTS (bp)
10731 if (bp->enable_state == bp_enabled
10732 && bp->type == bp_hardware_watchpoint
10733 && bp->val_valid && bp->val)
10734 {
10735 struct bp_location *loc;
10736
10737 for (loc = bp->loc; loc != NULL; loc = loc->next)
10738 if (loc->loc_type == bp_loc_hardware_watchpoint
10739 && loc->address + loc->length > addr
10740 && addr + len > loc->address)
10741 {
10742 value_free (bp->val);
10743 bp->val = NULL;
10744 bp->val_valid = 0;
10745 }
10746 }
10747}
10748
c906108c
SS
10749/* Use default_breakpoint_'s, or nothing if they aren't valid. */
10750
10751struct symtabs_and_lines
fba45db2 10752decode_line_spec_1 (char *string, int funfirstline)
c906108c
SS
10753{
10754 struct symtabs_and_lines sals;
cc59ec59 10755
c906108c 10756 if (string == 0)
8a3fe4f8 10757 error (_("Empty line specification."));
c906108c
SS
10758 if (default_breakpoint_valid)
10759 sals = decode_line_1 (&string, funfirstline,
53a5351d
JM
10760 default_breakpoint_symtab,
10761 default_breakpoint_line,
68219205 10762 (char ***) NULL, NULL);
c906108c
SS
10763 else
10764 sals = decode_line_1 (&string, funfirstline,
68219205 10765 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
c906108c 10766 if (*string)
8a3fe4f8 10767 error (_("Junk at end of line specification: %s"), string);
c906108c
SS
10768 return sals;
10769}
8181d85f
DJ
10770
10771/* Create and insert a raw software breakpoint at PC. Return an
10772 identifier, which should be used to remove the breakpoint later.
10773 In general, places which call this should be using something on the
10774 breakpoint chain instead; this function should be eliminated
10775 someday. */
10776
10777void *
6c95b8df
PA
10778deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch,
10779 struct address_space *aspace, CORE_ADDR pc)
8181d85f
DJ
10780{
10781 struct bp_target_info *bp_tgt;
10782
6c95b8df 10783 bp_tgt = XZALLOC (struct bp_target_info);
8181d85f 10784
6c95b8df 10785 bp_tgt->placed_address_space = aspace;
8181d85f 10786 bp_tgt->placed_address = pc;
6c95b8df 10787
a6d9a66e 10788 if (target_insert_breakpoint (gdbarch, bp_tgt) != 0)
8181d85f
DJ
10789 {
10790 /* Could not insert the breakpoint. */
10791 xfree (bp_tgt);
10792 return NULL;
10793 }
10794
10795 return bp_tgt;
10796}
10797
10798/* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint. */
10799
10800int
a6d9a66e 10801deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp)
8181d85f
DJ
10802{
10803 struct bp_target_info *bp_tgt = bp;
10804 int ret;
10805
a6d9a66e 10806 ret = target_remove_breakpoint (gdbarch, bp_tgt);
8181d85f
DJ
10807 xfree (bp_tgt);
10808
10809 return ret;
10810}
10811
10812/* One (or perhaps two) breakpoints used for software single stepping. */
10813
10814static void *single_step_breakpoints[2];
a6d9a66e 10815static struct gdbarch *single_step_gdbarch[2];
8181d85f
DJ
10816
10817/* Create and insert a breakpoint for software single step. */
10818
10819void
6c95b8df
PA
10820insert_single_step_breakpoint (struct gdbarch *gdbarch,
10821 struct address_space *aspace, CORE_ADDR next_pc)
8181d85f
DJ
10822{
10823 void **bpt_p;
10824
10825 if (single_step_breakpoints[0] == NULL)
a6d9a66e
UW
10826 {
10827 bpt_p = &single_step_breakpoints[0];
10828 single_step_gdbarch[0] = gdbarch;
10829 }
8181d85f
DJ
10830 else
10831 {
10832 gdb_assert (single_step_breakpoints[1] == NULL);
10833 bpt_p = &single_step_breakpoints[1];
a6d9a66e 10834 single_step_gdbarch[1] = gdbarch;
8181d85f
DJ
10835 }
10836
10837 /* NOTE drow/2006-04-11: A future improvement to this function would be
10838 to only create the breakpoints once, and actually put them on the
10839 breakpoint chain. That would let us use set_raw_breakpoint. We could
10840 adjust the addresses each time they were needed. Doing this requires
10841 corresponding changes elsewhere where single step breakpoints are
10842 handled, however. So, for now, we use this. */
10843
6c95b8df 10844 *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc);
8181d85f 10845 if (*bpt_p == NULL)
5af949e3
UW
10846 error (_("Could not insert single-step breakpoint at %s"),
10847 paddress (gdbarch, next_pc));
8181d85f
DJ
10848}
10849
f02253f1
HZ
10850/* Check if the breakpoints used for software single stepping
10851 were inserted or not. */
10852
10853int
10854single_step_breakpoints_inserted (void)
10855{
10856 return (single_step_breakpoints[0] != NULL
10857 || single_step_breakpoints[1] != NULL);
10858}
10859
8181d85f
DJ
10860/* Remove and delete any breakpoints used for software single step. */
10861
10862void
10863remove_single_step_breakpoints (void)
10864{
10865 gdb_assert (single_step_breakpoints[0] != NULL);
10866
10867 /* See insert_single_step_breakpoint for more about this deprecated
10868 call. */
a6d9a66e
UW
10869 deprecated_remove_raw_breakpoint (single_step_gdbarch[0],
10870 single_step_breakpoints[0]);
10871 single_step_gdbarch[0] = NULL;
8181d85f
DJ
10872 single_step_breakpoints[0] = NULL;
10873
10874 if (single_step_breakpoints[1] != NULL)
10875 {
a6d9a66e
UW
10876 deprecated_remove_raw_breakpoint (single_step_gdbarch[1],
10877 single_step_breakpoints[1]);
10878 single_step_gdbarch[1] = NULL;
8181d85f
DJ
10879 single_step_breakpoints[1] = NULL;
10880 }
10881}
10882
d03285ec
UW
10883/* Delete software single step breakpoints without removing them from
10884 the inferior. This is intended to be used if the inferior's address
10885 space where they were inserted is already gone, e.g. after exit or
10886 exec. */
10887
10888void
10889cancel_single_step_breakpoints (void)
10890{
10891 int i;
10892
10893 for (i = 0; i < 2; i++)
10894 if (single_step_breakpoints[i])
10895 {
10896 xfree (single_step_breakpoints[i]);
10897 single_step_breakpoints[i] = NULL;
10898 single_step_gdbarch[i] = NULL;
10899 }
10900}
10901
10902/* Detach software single-step breakpoints from INFERIOR_PTID without
10903 removing them. */
10904
10905static void
10906detach_single_step_breakpoints (void)
10907{
10908 int i;
10909
10910 for (i = 0; i < 2; i++)
10911 if (single_step_breakpoints[i])
10912 target_remove_breakpoint (single_step_gdbarch[i],
10913 single_step_breakpoints[i]);
10914}
10915
1aafd4da
UW
10916/* Check whether a software single-step breakpoint is inserted at PC. */
10917
10918static int
cc59ec59
MS
10919single_step_breakpoint_inserted_here_p (struct address_space *aspace,
10920 CORE_ADDR pc)
1aafd4da
UW
10921{
10922 int i;
10923
10924 for (i = 0; i < 2; i++)
10925 {
10926 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
6c95b8df
PA
10927 if (bp_tgt
10928 && breakpoint_address_match (bp_tgt->placed_address_space,
10929 bp_tgt->placed_address,
10930 aspace, pc))
1aafd4da
UW
10931 return 1;
10932 }
10933
10934 return 0;
10935}
10936
a96d9b2e
SDJ
10937/* Returns 0 if 'bp' is NOT a syscall catchpoint,
10938 non-zero otherwise. */
10939static int
10940is_syscall_catchpoint_enabled (struct breakpoint *bp)
10941{
10942 if (syscall_catchpoint_p (bp)
10943 && bp->enable_state != bp_disabled
10944 && bp->enable_state != bp_call_disabled)
10945 return 1;
10946 else
10947 return 0;
10948}
10949
10950int
10951catch_syscall_enabled (void)
10952{
10953 struct inferior *inf = current_inferior ();
10954
10955 return inf->total_syscalls_count != 0;
10956}
10957
10958int
10959catching_syscall_number (int syscall_number)
10960{
10961 struct breakpoint *bp;
10962
10963 ALL_BREAKPOINTS (bp)
10964 if (is_syscall_catchpoint_enabled (bp))
10965 {
10966 if (bp->syscalls_to_be_caught)
10967 {
10968 int i, iter;
10969 for (i = 0;
10970 VEC_iterate (int, bp->syscalls_to_be_caught, i, iter);
10971 i++)
10972 if (syscall_number == iter)
10973 return 1;
10974 }
10975 else
10976 return 1;
10977 }
10978
10979 return 0;
10980}
10981
10982/* Complete syscall names. Used by "catch syscall". */
10983static char **
10984catch_syscall_completer (struct cmd_list_element *cmd,
10985 char *text, char *word)
10986{
10987 const char **list = get_syscall_names ();
cc59ec59 10988
a96d9b2e
SDJ
10989 return (list == NULL) ? NULL : complete_on_enum (list, text, word);
10990}
10991
1042e4c0
SS
10992/* Tracepoint-specific operations. */
10993
10994/* Set tracepoint count to NUM. */
10995static void
10996set_tracepoint_count (int num)
10997{
10998 tracepoint_count = num;
4fa62494 10999 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
11000}
11001
11002void
11003trace_command (char *arg, int from_tty)
11004{
8cdf0e15
VP
11005 if (create_breakpoint (get_current_arch (),
11006 arg,
11007 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
11008 0 /* tempflag */,
11009 bp_tracepoint /* type_wanted */,
8cdf0e15
VP
11010 0 /* Ignore count */,
11011 pending_break_support,
11012 NULL,
11013 from_tty,
11014 1 /* enabled */))
fd9b8c24 11015 set_tracepoint_count (breakpoint_count);
1042e4c0
SS
11016}
11017
7a697b8d
SS
11018void
11019ftrace_command (char *arg, int from_tty)
11020{
8cdf0e15
VP
11021 if (create_breakpoint (get_current_arch (),
11022 arg,
11023 NULL, 0, 1 /* parse arg */,
0fb4aa4b
PA
11024 0 /* tempflag */,
11025 bp_fast_tracepoint /* type_wanted */,
11026 0 /* Ignore count */,
11027 pending_break_support,
11028 NULL,
11029 from_tty,
11030 1 /* enabled */))
11031 set_tracepoint_count (breakpoint_count);
11032}
11033
11034/* strace command implementation. Creates a static tracepoint. */
11035
11036void
11037strace_command (char *arg, int from_tty)
11038{
11039 if (create_breakpoint (get_current_arch (),
11040 arg,
11041 NULL, 0, 1 /* parse arg */,
11042 0 /* tempflag */,
11043 bp_static_tracepoint /* type_wanted */,
8cdf0e15
VP
11044 0 /* Ignore count */,
11045 pending_break_support,
11046 NULL,
11047 from_tty,
11048 1 /* enabled */))
fd9b8c24 11049 set_tracepoint_count (breakpoint_count);
7a697b8d
SS
11050}
11051
409873ef
SS
11052/* Set up a fake reader function that gets command lines from a linked
11053 list that was acquired during tracepoint uploading. */
11054
11055static struct uploaded_tp *this_utp;
3149d8c1 11056static int next_cmd;
409873ef
SS
11057
11058static char *
11059read_uploaded_action (void)
11060{
11061 char *rslt;
11062
3149d8c1 11063 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 11064
3149d8c1 11065 next_cmd++;
409873ef
SS
11066
11067 return rslt;
11068}
11069
00bf0b85
SS
11070/* Given information about a tracepoint as recorded on a target (which
11071 can be either a live system or a trace file), attempt to create an
11072 equivalent GDB tracepoint. This is not a reliable process, since
11073 the target does not necessarily have all the information used when
11074 the tracepoint was originally defined. */
11075
11076struct breakpoint *
11077create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 11078{
409873ef 11079 char *addr_str, small_buf[100];
d5551862 11080 struct breakpoint *tp;
fd9b8c24 11081
409873ef
SS
11082 if (utp->at_string)
11083 addr_str = utp->at_string;
11084 else
11085 {
11086 /* In the absence of a source location, fall back to raw
11087 address. Since there is no way to confirm that the address
11088 means the same thing as when the trace was started, warn the
11089 user. */
11090 warning (_("Uploaded tracepoint %d has no source location, using raw address"),
11091 utp->number);
11092 sprintf (small_buf, "*%s", hex_string (utp->addr));
11093 addr_str = small_buf;
11094 }
11095
11096 /* There's not much we can do with a sequence of bytecodes. */
11097 if (utp->cond && !utp->cond_string)
11098 warning (_("Uploaded tracepoint %d condition has no source form, ignoring it"),
11099 utp->number);
d5551862 11100
8cdf0e15 11101 if (!create_breakpoint (get_current_arch (),
409873ef
SS
11102 addr_str,
11103 utp->cond_string, -1, 0 /* parse cond/thread */,
8cdf0e15 11104 0 /* tempflag */,
0fb4aa4b 11105 utp->type /* type_wanted */,
8cdf0e15
VP
11106 0 /* Ignore count */,
11107 pending_break_support,
11108 NULL,
11109 0 /* from_tty */,
11110 utp->enabled /* enabled */))
fd9b8c24
PA
11111 return NULL;
11112
00bf0b85
SS
11113 set_tracepoint_count (breakpoint_count);
11114
409873ef 11115 /* Get the tracepoint we just created. */
fd9b8c24
PA
11116 tp = get_tracepoint (tracepoint_count);
11117 gdb_assert (tp != NULL);
d5551862 11118
00bf0b85
SS
11119 if (utp->pass > 0)
11120 {
409873ef 11121 sprintf (small_buf, "%d %d", utp->pass, tp->number);
00bf0b85 11122
409873ef 11123 trace_pass_command (small_buf, 0);
00bf0b85
SS
11124 }
11125
409873ef
SS
11126 /* If we have uploaded versions of the original commands, set up a
11127 special-purpose "reader" function and call the usual command line
11128 reader, then pass the result to the breakpoint command-setting
11129 function. */
3149d8c1 11130 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 11131 {
409873ef 11132 struct command_line *cmd_list;
00bf0b85 11133
409873ef 11134 this_utp = utp;
3149d8c1 11135 next_cmd = 0;
d5551862 11136
409873ef
SS
11137 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
11138
11139 breakpoint_set_commands (tp, cmd_list);
00bf0b85 11140 }
3149d8c1
SS
11141 else if (!VEC_empty (char_ptr, utp->actions)
11142 || !VEC_empty (char_ptr, utp->step_actions))
409873ef
SS
11143 warning (_("Uploaded tracepoint %d actions have no source form, ignoring them"),
11144 utp->number);
00bf0b85
SS
11145
11146 return tp;
11147 }
11148
1042e4c0
SS
11149/* Print information on tracepoint number TPNUM_EXP, or all if
11150 omitted. */
11151
11152static void
11153tracepoints_info (char *tpnum_exp, int from_tty)
11154{
d77f58be
SS
11155 int tpnum = -1, num_printed;
11156
11157 if (tpnum_exp)
11158 tpnum = parse_and_eval_long (tpnum_exp);
1042e4c0 11159
d77f58be
SS
11160 num_printed = breakpoint_1 (tpnum, 0, is_tracepoint);
11161
11162 if (num_printed == 0)
1042e4c0 11163 {
d77f58be
SS
11164 if (tpnum == -1)
11165 ui_out_message (uiout, 0, "No tracepoints.\n");
11166 else
11167 ui_out_message (uiout, 0, "No tracepoint number %d.\n", tpnum);
1042e4c0 11168 }
ad443146
SS
11169
11170 default_collect_info ();
1042e4c0
SS
11171}
11172
11173/* The 'enable trace' command enables tracepoints.
11174 Not supported by all targets. */
11175static void
11176enable_trace_command (char *args, int from_tty)
11177{
11178 enable_command (args, from_tty);
11179}
11180
11181/* The 'disable trace' command disables tracepoints.
11182 Not supported by all targets. */
11183static void
11184disable_trace_command (char *args, int from_tty)
11185{
11186 disable_command (args, from_tty);
11187}
11188
11189/* Remove a tracepoint (or all if no argument) */
11190static void
11191delete_trace_command (char *arg, int from_tty)
11192{
11193 struct breakpoint *b, *temp;
11194
11195 dont_repeat ();
11196
11197 if (arg == 0)
11198 {
11199 int breaks_to_delete = 0;
11200
11201 /* Delete all breakpoints if no argument.
11202 Do not delete internal or call-dummy breakpoints, these
11203 have to be deleted with an explicit breakpoint number argument. */
11204 ALL_TRACEPOINTS (b)
11205 {
11206 if (b->number >= 0)
11207 {
11208 breaks_to_delete = 1;
11209 break;
11210 }
11211 }
11212
11213 /* Ask user only if there are some breakpoints to delete. */
11214 if (!from_tty
11215 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
11216 {
11217 ALL_BREAKPOINTS_SAFE (b, temp)
11218 {
d77f58be 11219 if (is_tracepoint (b)
059fb39f 11220 && b->number >= 0)
1042e4c0
SS
11221 delete_breakpoint (b);
11222 }
11223 }
11224 }
11225 else
95a42b64 11226 map_breakpoint_numbers (arg, do_delete_breakpoint, NULL);
1042e4c0
SS
11227}
11228
11229/* Set passcount for tracepoint.
11230
11231 First command argument is passcount, second is tracepoint number.
11232 If tracepoint number omitted, apply to most recently defined.
11233 Also accepts special argument "all". */
11234
11235static void
11236trace_pass_command (char *args, int from_tty)
11237{
11238 struct breakpoint *t1 = (struct breakpoint *) -1, *t2;
11239 unsigned int count;
11240 int all = 0;
11241
11242 if (args == 0 || *args == 0)
11243 error (_("passcount command requires an argument (count + optional TP num)"));
11244
11245 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
11246
11247 while (*args && isspace ((int) *args))
11248 args++;
11249
11250 if (*args && strncasecmp (args, "all", 3) == 0)
11251 {
11252 args += 3; /* Skip special argument "all". */
11253 all = 1;
11254 if (*args)
11255 error (_("Junk at end of arguments."));
11256 }
11257 else
11258 t1 = get_tracepoint_by_number (&args, 1, 1);
11259
11260 do
11261 {
11262 if (t1)
11263 {
11264 ALL_TRACEPOINTS (t2)
11265 if (t1 == (struct breakpoint *) -1 || t1 == t2)
11266 {
11267 t2->pass_count = count;
11268 observer_notify_tracepoint_modified (t2->number);
11269 if (from_tty)
11270 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
11271 t2->number, count);
11272 }
11273 if (! all && *args)
11274 t1 = get_tracepoint_by_number (&args, 1, 0);
11275 }
11276 }
11277 while (*args);
11278}
11279
11280struct breakpoint *
11281get_tracepoint (int num)
11282{
11283 struct breakpoint *t;
11284
11285 ALL_TRACEPOINTS (t)
11286 if (t->number == num)
11287 return t;
11288
11289 return NULL;
11290}
11291
d5551862
SS
11292/* Find the tracepoint with the given target-side number (which may be
11293 different from the tracepoint number after disconnecting and
11294 reconnecting). */
11295
11296struct breakpoint *
11297get_tracepoint_by_number_on_target (int num)
11298{
11299 struct breakpoint *t;
11300
11301 ALL_TRACEPOINTS (t)
11302 if (t->number_on_target == num)
11303 return t;
11304
11305 return NULL;
11306}
11307
1042e4c0
SS
11308/* Utility: parse a tracepoint number and look it up in the list.
11309 If MULTI_P is true, there might be a range of tracepoints in ARG.
11310 if OPTIONAL_P is true, then if the argument is missing, the most
11311 recent tracepoint (tracepoint_count) is returned. */
11312struct breakpoint *
11313get_tracepoint_by_number (char **arg, int multi_p, int optional_p)
11314{
11315 extern int tracepoint_count;
11316 struct breakpoint *t;
11317 int tpnum;
11318 char *instring = arg == NULL ? NULL : *arg;
11319
11320 if (arg == NULL || *arg == NULL || ! **arg)
11321 {
11322 if (optional_p)
11323 tpnum = tracepoint_count;
11324 else
11325 error_no_arg (_("tracepoint number"));
11326 }
11327 else
11328 tpnum = multi_p ? get_number_or_range (arg) : get_number (arg);
11329
11330 if (tpnum <= 0)
11331 {
11332 if (instring && *instring)
11333 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
11334 instring);
11335 else
11336 printf_filtered (_("Tracepoint argument missing and no previous tracepoint\n"));
11337 return NULL;
11338 }
11339
11340 ALL_TRACEPOINTS (t)
11341 if (t->number == tpnum)
11342 {
11343 return t;
11344 }
11345
11346 /* FIXME: if we are in the middle of a range we don't want to give
11347 a message. The current interface to get_number_or_range doesn't
11348 allow us to discover this. */
11349 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
11350 return NULL;
11351}
11352
6149aea9
PA
11353/* Save information on user settable breakpoints (watchpoints, etc) to
11354 a new script file named FILENAME. If FILTER is non-NULL, call it
11355 on each breakpoint and only include the ones for which it returns
11356 non-zero. */
11357
1042e4c0 11358static void
6149aea9
PA
11359save_breakpoints (char *filename, int from_tty,
11360 int (*filter) (const struct breakpoint *))
1042e4c0
SS
11361{
11362 struct breakpoint *tp;
6149aea9 11363 int any = 0;
a7bdde9e 11364 char *pathname;
1042e4c0 11365 struct cleanup *cleanup;
a7bdde9e 11366 struct ui_file *fp;
6149aea9 11367 int extra_trace_bits = 0;
1042e4c0 11368
6149aea9
PA
11369 if (filename == 0 || *filename == 0)
11370 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
11371
11372 /* See if we have anything to save. */
6149aea9 11373 ALL_BREAKPOINTS (tp)
1042e4c0 11374 {
6149aea9
PA
11375 /* Skip internal and momentary breakpoints. */
11376 if (!user_settable_breakpoint (tp))
11377 continue;
11378
11379 /* If we have a filter, only save the breakpoints it accepts. */
11380 if (filter && !filter (tp))
11381 continue;
11382
11383 any = 1;
11384
11385 if (is_tracepoint (tp))
11386 {
11387 extra_trace_bits = 1;
11388
11389 /* We can stop searching. */
11390 break;
11391 }
1042e4c0 11392 }
6149aea9
PA
11393
11394 if (!any)
1042e4c0 11395 {
6149aea9 11396 warning (_("Nothing to save."));
1042e4c0
SS
11397 return;
11398 }
11399
6149aea9 11400 pathname = tilde_expand (filename);
1042e4c0 11401 cleanup = make_cleanup (xfree, pathname);
a7bdde9e 11402 fp = gdb_fopen (pathname, "w");
059fb39f 11403 if (!fp)
6149aea9
PA
11404 error (_("Unable to open file '%s' for saving (%s)"),
11405 filename, safe_strerror (errno));
a7bdde9e 11406 make_cleanup_ui_file_delete (fp);
8bf6485c 11407
6149aea9
PA
11408 if (extra_trace_bits)
11409 save_trace_state_variables (fp);
8bf6485c 11410
6149aea9 11411 ALL_BREAKPOINTS (tp)
1042e4c0 11412 {
6149aea9
PA
11413 /* Skip internal and momentary breakpoints. */
11414 if (!user_settable_breakpoint (tp))
11415 continue;
8bf6485c 11416
6149aea9
PA
11417 /* If we have a filter, only save the breakpoints it accepts. */
11418 if (filter && !filter (tp))
11419 continue;
11420
11421 if (tp->ops != NULL)
11422 (tp->ops->print_recreate) (tp, fp);
1042e4c0
SS
11423 else
11424 {
6149aea9
PA
11425 if (tp->type == bp_fast_tracepoint)
11426 fprintf_unfiltered (fp, "ftrace");
0fb4aa4b
PA
11427 if (tp->type == bp_static_tracepoint)
11428 fprintf_unfiltered (fp, "strace");
6149aea9
PA
11429 else if (tp->type == bp_tracepoint)
11430 fprintf_unfiltered (fp, "trace");
11431 else if (tp->type == bp_breakpoint && tp->disposition == disp_del)
11432 fprintf_unfiltered (fp, "tbreak");
11433 else if (tp->type == bp_breakpoint)
11434 fprintf_unfiltered (fp, "break");
11435 else if (tp->type == bp_hardware_breakpoint
11436 && tp->disposition == disp_del)
11437 fprintf_unfiltered (fp, "thbreak");
11438 else if (tp->type == bp_hardware_breakpoint)
11439 fprintf_unfiltered (fp, "hbreak");
11440 else if (tp->type == bp_watchpoint)
11441 fprintf_unfiltered (fp, "watch");
11442 else if (tp->type == bp_hardware_watchpoint)
11443 fprintf_unfiltered (fp, "watch");
11444 else if (tp->type == bp_read_watchpoint)
11445 fprintf_unfiltered (fp, "rwatch");
11446 else if (tp->type == bp_access_watchpoint)
11447 fprintf_unfiltered (fp, "awatch");
11448 else
11449 internal_error (__FILE__, __LINE__,
11450 _("unhandled breakpoint type %d"), (int) tp->type);
11451
11452 if (tp->exp_string)
11453 fprintf_unfiltered (fp, " %s", tp->exp_string);
11454 else if (tp->addr_string)
11455 fprintf_unfiltered (fp, " %s", tp->addr_string);
11456 else
11457 {
11458 char tmp[40];
11459
11460 sprintf_vma (tmp, tp->loc->address);
11461 fprintf_unfiltered (fp, " *0x%s", tmp);
11462 }
1042e4c0
SS
11463 }
11464
6149aea9
PA
11465 if (tp->thread != -1)
11466 fprintf_unfiltered (fp, " thread %d", tp->thread);
11467
11468 if (tp->task != 0)
11469 fprintf_unfiltered (fp, " task %d", tp->task);
8bf6485c
SS
11470
11471 fprintf_unfiltered (fp, "\n");
11472
6149aea9
PA
11473 /* Note, we can't rely on tp->number for anything, as we can't
11474 assume the recreated breakpoint numbers will match. Use $bpnum
11475 instead. */
11476
11477 if (tp->cond_string)
11478 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
11479
11480 if (tp->ignore_count)
11481 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
11482
1042e4c0 11483 if (tp->pass_count)
a7bdde9e 11484 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
1042e4c0 11485
a7bdde9e 11486 if (tp->commands)
1042e4c0 11487 {
a7bdde9e
VP
11488 volatile struct gdb_exception ex;
11489
6149aea9 11490 fprintf_unfiltered (fp, " commands\n");
a7bdde9e
VP
11491
11492 ui_out_redirect (uiout, fp);
11493 TRY_CATCH (ex, RETURN_MASK_ERROR)
1042e4c0 11494 {
9add0f1b 11495 print_command_lines (uiout, tp->commands->commands, 2);
a7bdde9e
VP
11496 }
11497 ui_out_redirect (uiout, NULL);
1042e4c0 11498
a7bdde9e
VP
11499 if (ex.reason < 0)
11500 throw_exception (ex);
1042e4c0 11501
a7bdde9e 11502 fprintf_unfiltered (fp, " end\n");
1042e4c0 11503 }
6149aea9
PA
11504
11505 if (tp->enable_state == bp_disabled)
11506 fprintf_unfiltered (fp, "disable\n");
11507
11508 /* If this is a multi-location breakpoint, check if the locations
11509 should be individually disabled. Watchpoint locations are
11510 special, and not user visible. */
11511 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
11512 {
11513 struct bp_location *loc;
11514 int n = 1;
11515
11516 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
11517 if (!loc->enabled)
11518 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
11519 }
1042e4c0 11520 }
8bf6485c 11521
6149aea9 11522 if (extra_trace_bits && *default_collect)
8bf6485c
SS
11523 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
11524
1042e4c0
SS
11525 do_cleanups (cleanup);
11526 if (from_tty)
6149aea9
PA
11527 printf_filtered (_("Saved to file '%s'.\n"), filename);
11528}
11529
11530/* The `save breakpoints' command. */
11531
11532static void
11533save_breakpoints_command (char *args, int from_tty)
11534{
11535 save_breakpoints (args, from_tty, NULL);
11536}
11537
11538/* The `save tracepoints' command. */
11539
11540static void
11541save_tracepoints_command (char *args, int from_tty)
11542{
11543 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
11544}
11545
11546/* Create a vector of all tracepoints. */
11547
11548VEC(breakpoint_p) *
11549all_tracepoints ()
11550{
11551 VEC(breakpoint_p) *tp_vec = 0;
11552 struct breakpoint *tp;
11553
11554 ALL_TRACEPOINTS (tp)
11555 {
11556 VEC_safe_push (breakpoint_p, tp_vec, tp);
11557 }
11558
11559 return tp_vec;
11560}
11561
c906108c 11562\f
31e2b00f
AS
11563/* This help string is used for the break, hbreak, tbreak and thbreak commands.
11564 It is defined as a macro to prevent duplication.
11565 COMMAND should be a string constant containing the name of the command. */
11566#define BREAK_ARGS_HELP(command) \
11567command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
11568LOCATION may be a line number, function name, or \"*\" and an address.\n\
11569If a line number is specified, break at start of code for that line.\n\
11570If a function is specified, break at start of code for that function.\n\
11571If an address is specified, break at that exact address.\n\
dc10affe
PA
11572With no LOCATION, uses current execution address of the selected\n\
11573stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
11574\n\
11575THREADNUM is the number from \"info threads\".\n\
11576CONDITION is a boolean expression.\n\
11577\n\
d41c0fc8
PA
11578Multiple breakpoints at one place are permitted, and useful if their\n\
11579conditions are different.\n\
31e2b00f
AS
11580\n\
11581Do \"help breakpoints\" for info on other commands dealing with breakpoints."
11582
44feb3ce
TT
11583/* List of subcommands for "catch". */
11584static struct cmd_list_element *catch_cmdlist;
11585
11586/* List of subcommands for "tcatch". */
11587static struct cmd_list_element *tcatch_cmdlist;
11588
11589/* Like add_cmd, but add the command to both the "catch" and "tcatch"
11590 lists, and pass some additional user data to the command function. */
11591static void
11592add_catch_command (char *name, char *docstring,
11593 void (*sfunc) (char *args, int from_tty,
11594 struct cmd_list_element *command),
a96d9b2e
SDJ
11595 char **(*completer) (struct cmd_list_element *cmd,
11596 char *text, char *word),
44feb3ce
TT
11597 void *user_data_catch,
11598 void *user_data_tcatch)
11599{
11600 struct cmd_list_element *command;
11601
11602 command = add_cmd (name, class_breakpoint, NULL, docstring,
11603 &catch_cmdlist);
11604 set_cmd_sfunc (command, sfunc);
11605 set_cmd_context (command, user_data_catch);
a96d9b2e 11606 set_cmd_completer (command, completer);
44feb3ce
TT
11607
11608 command = add_cmd (name, class_breakpoint, NULL, docstring,
11609 &tcatch_cmdlist);
11610 set_cmd_sfunc (command, sfunc);
11611 set_cmd_context (command, user_data_tcatch);
a96d9b2e 11612 set_cmd_completer (command, completer);
44feb3ce
TT
11613}
11614
6c95b8df 11615static void
a79b8f6e 11616clear_syscall_counts (struct inferior *inf)
6c95b8df 11617{
6c95b8df
PA
11618 inf->total_syscalls_count = 0;
11619 inf->any_syscall_count = 0;
11620 VEC_free (int, inf->syscalls_counts);
11621}
11622
6149aea9
PA
11623static void
11624save_command (char *arg, int from_tty)
11625{
11626 printf_unfiltered (_("\
11627\"save\" must be followed by the name of a save subcommand.\n"));
11628 help_list (save_cmdlist, "save ", -1, gdb_stdout);
11629}
11630
c906108c 11631void
fba45db2 11632_initialize_breakpoint (void)
c906108c
SS
11633{
11634 struct cmd_list_element *c;
11635
84acb35a 11636 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
6c95b8df 11637 observer_attach_inferior_exit (clear_syscall_counts);
1f3b5d1b 11638 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 11639
c906108c
SS
11640 breakpoint_chain = 0;
11641 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
11642 before a breakpoint is set. */
11643 breakpoint_count = 0;
11644
1042e4c0
SS
11645 tracepoint_count = 0;
11646
1bedd215
AC
11647 add_com ("ignore", class_breakpoint, ignore_command, _("\
11648Set ignore-count of breakpoint number N to COUNT.\n\
11649Usage is `ignore N COUNT'."));
c906108c 11650 if (xdb_commands)
c5aa993b 11651 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 11652
1bedd215
AC
11653 add_com ("commands", class_breakpoint, commands_command, _("\
11654Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
11655Give breakpoint number as argument after \"commands\".\n\
11656With no argument, the targeted breakpoint is the last one set.\n\
11657The commands themselves follow starting on the next line.\n\
11658Type a line containing \"end\" to indicate the end of them.\n\
11659Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 11660then no output is printed when it is hit, except what the commands print."));
c906108c 11661
1bedd215
AC
11662 add_com ("condition", class_breakpoint, condition_command, _("\
11663Specify breakpoint number N to break only if COND is true.\n\
c906108c 11664Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 11665expression to be evaluated whenever breakpoint N is reached."));
c906108c 11666
1bedd215 11667 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 11668Set a temporary breakpoint.\n\
c906108c
SS
11669Like \"break\" except the breakpoint is only temporary,\n\
11670so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
11671by using \"enable delete\" on the breakpoint number.\n\
11672\n"
11673BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 11674 set_cmd_completer (c, location_completer);
c94fdfd0 11675
1bedd215 11676 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
31e2b00f 11677Set a hardware assisted breakpoint.\n\
c906108c 11678Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
11679some target hardware may not have this support.\n\
11680\n"
11681BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 11682 set_cmd_completer (c, location_completer);
c906108c 11683
1bedd215 11684 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 11685Set a temporary hardware assisted breakpoint.\n\
c906108c 11686Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
11687so it will be deleted when hit.\n\
11688\n"
11689BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 11690 set_cmd_completer (c, location_completer);
c906108c 11691
1bedd215
AC
11692 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
11693Enable some breakpoints.\n\
c906108c
SS
11694Give breakpoint numbers (separated by spaces) as arguments.\n\
11695With no subcommand, breakpoints are enabled until you command otherwise.\n\
11696This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 11697With a subcommand you can enable temporarily."),
c906108c
SS
11698 &enablelist, "enable ", 1, &cmdlist);
11699 if (xdb_commands)
1bedd215
AC
11700 add_com ("ab", class_breakpoint, enable_command, _("\
11701Enable some breakpoints.\n\
c906108c
SS
11702Give breakpoint numbers (separated by spaces) as arguments.\n\
11703With no subcommand, breakpoints are enabled until you command otherwise.\n\
11704This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 11705With a subcommand you can enable temporarily."));
c906108c
SS
11706
11707 add_com_alias ("en", "enable", class_breakpoint, 1);
11708
84951ab5 11709 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 11710Enable some breakpoints.\n\
c906108c
SS
11711Give breakpoint numbers (separated by spaces) as arguments.\n\
11712This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 11713May be abbreviated to simply \"enable\".\n"),
c5aa993b 11714 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 11715
1a966eab
AC
11716 add_cmd ("once", no_class, enable_once_command, _("\
11717Enable breakpoints for one hit. Give breakpoint numbers.\n\
11718If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
11719 &enablebreaklist);
11720
1a966eab
AC
11721 add_cmd ("delete", no_class, enable_delete_command, _("\
11722Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
11723If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
11724 &enablebreaklist);
11725
1a966eab
AC
11726 add_cmd ("delete", no_class, enable_delete_command, _("\
11727Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
11728If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
11729 &enablelist);
11730
1a966eab
AC
11731 add_cmd ("once", no_class, enable_once_command, _("\
11732Enable breakpoints for one hit. Give breakpoint numbers.\n\
11733If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
11734 &enablelist);
11735
1bedd215
AC
11736 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
11737Disable some breakpoints.\n\
c906108c
SS
11738Arguments are breakpoint numbers with spaces in between.\n\
11739To disable all breakpoints, give no argument.\n\
1bedd215 11740A disabled breakpoint is not forgotten, but has no effect until reenabled."),
c906108c
SS
11741 &disablelist, "disable ", 1, &cmdlist);
11742 add_com_alias ("dis", "disable", class_breakpoint, 1);
11743 add_com_alias ("disa", "disable", class_breakpoint, 1);
11744 if (xdb_commands)
1bedd215
AC
11745 add_com ("sb", class_breakpoint, disable_command, _("\
11746Disable some breakpoints.\n\
c906108c
SS
11747Arguments are breakpoint numbers with spaces in between.\n\
11748To disable all breakpoints, give no argument.\n\
1bedd215 11749A disabled breakpoint is not forgotten, but has no effect until reenabled."));
c906108c 11750
1a966eab
AC
11751 add_cmd ("breakpoints", class_alias, disable_command, _("\
11752Disable some breakpoints.\n\
c906108c
SS
11753Arguments are breakpoint numbers with spaces in between.\n\
11754To disable all breakpoints, give no argument.\n\
11755A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
1a966eab 11756This command may be abbreviated \"disable\"."),
c906108c
SS
11757 &disablelist);
11758
1bedd215
AC
11759 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
11760Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
11761Arguments are breakpoint numbers with spaces in between.\n\
11762To delete all breakpoints, give no argument.\n\
11763\n\
11764Also a prefix command for deletion of other GDB objects.\n\
1bedd215 11765The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
11766 &deletelist, "delete ", 1, &cmdlist);
11767 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 11768 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 11769 if (xdb_commands)
1bedd215
AC
11770 add_com ("db", class_breakpoint, delete_command, _("\
11771Delete some breakpoints.\n\
c906108c 11772Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 11773To delete all breakpoints, give no argument.\n"));
c906108c 11774
1a966eab
AC
11775 add_cmd ("breakpoints", class_alias, delete_command, _("\
11776Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
11777Arguments are breakpoint numbers with spaces in between.\n\
11778To delete all breakpoints, give no argument.\n\
1a966eab 11779This command may be abbreviated \"delete\"."),
c906108c
SS
11780 &deletelist);
11781
1bedd215
AC
11782 add_com ("clear", class_breakpoint, clear_command, _("\
11783Clear breakpoint at specified line or function.\n\
c906108c
SS
11784Argument may be line number, function name, or \"*\" and an address.\n\
11785If line number is specified, all breakpoints in that line are cleared.\n\
11786If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
11787If an address is specified, breakpoints at that address are cleared.\n\
11788\n\
11789With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
11790is executing in.\n\
11791\n\
1bedd215 11792See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 11793 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 11794
1bedd215 11795 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
11796Set breakpoint at specified line or function.\n"
11797BREAK_ARGS_HELP ("break")));
5ba2abeb 11798 set_cmd_completer (c, location_completer);
c94fdfd0 11799
c906108c
SS
11800 add_com_alias ("b", "break", class_run, 1);
11801 add_com_alias ("br", "break", class_run, 1);
11802 add_com_alias ("bre", "break", class_run, 1);
11803 add_com_alias ("brea", "break", class_run, 1);
11804
7681d515
PM
11805 if (xdb_commands)
11806 add_com_alias ("ba", "break", class_breakpoint, 1);
c906108c
SS
11807
11808 if (dbx_commands)
11809 {
1bedd215
AC
11810 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
11811Break in function/address or break at a line in the current file."),
c5aa993b
JM
11812 &stoplist, "stop ", 1, &cmdlist);
11813 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 11814 _("Break in function or address."), &stoplist);
c5aa993b 11815 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 11816 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
11817 add_com ("status", class_info, breakpoints_info, _("\
11818Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
11819The \"Type\" column indicates one of:\n\
11820\tbreakpoint - normal breakpoint\n\
11821\twatchpoint - watchpoint\n\
11822The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11823the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11824breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
11825address and file/line number respectively.\n\
11826\n\
11827Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
11828are set to the address of the last breakpoint listed unless the command\n\
11829is prefixed with \"server \".\n\n\
c906108c 11830Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 11831breakpoint set."));
c906108c
SS
11832 }
11833
1bedd215
AC
11834 add_info ("breakpoints", breakpoints_info, _("\
11835Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
11836The \"Type\" column indicates one of:\n\
11837\tbreakpoint - normal breakpoint\n\
11838\twatchpoint - watchpoint\n\
11839The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11840the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11841breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
11842address and file/line number respectively.\n\
11843\n\
11844Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
11845are set to the address of the last breakpoint listed unless the command\n\
11846is prefixed with \"server \".\n\n\
c906108c 11847Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 11848breakpoint set."));
c906108c 11849
6b04bdb7
MS
11850 add_info_alias ("b", "breakpoints", 1);
11851
c906108c 11852 if (xdb_commands)
1bedd215
AC
11853 add_com ("lb", class_breakpoint, breakpoints_info, _("\
11854Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
11855The \"Type\" column indicates one of:\n\
11856\tbreakpoint - normal breakpoint\n\
11857\twatchpoint - watchpoint\n\
11858The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11859the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11860breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
11861address and file/line number respectively.\n\
11862\n\
11863Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
11864are set to the address of the last breakpoint listed unless the command\n\
11865is prefixed with \"server \".\n\n\
c906108c 11866Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 11867breakpoint set."));
c906108c 11868
1a966eab
AC
11869 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
11870Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
11871The \"Type\" column indicates one of:\n\
11872\tbreakpoint - normal breakpoint\n\
11873\twatchpoint - watchpoint\n\
11874\tlongjmp - internal breakpoint used to step through longjmp()\n\
11875\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
11876\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
11877\tfinish - internal breakpoint used by the \"finish\" command\n\
11878The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
11879the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11880breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
11881address and file/line number respectively.\n\
11882\n\
11883Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
11884are set to the address of the last breakpoint listed unless the command\n\
11885is prefixed with \"server \".\n\n\
c906108c 11886Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 11887breakpoint set."),
c906108c
SS
11888 &maintenanceinfolist);
11889
44feb3ce
TT
11890 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
11891Set catchpoints to catch events."),
11892 &catch_cmdlist, "catch ",
11893 0/*allow-unknown*/, &cmdlist);
11894
11895 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
11896Set temporary catchpoints to catch events."),
11897 &tcatch_cmdlist, "tcatch ",
11898 0/*allow-unknown*/, &cmdlist);
11899
11900 /* Add catch and tcatch sub-commands. */
11901 add_catch_command ("catch", _("\
11902Catch an exception, when caught.\n\
11903With an argument, catch only exceptions with the given name."),
11904 catch_catch_command,
a96d9b2e 11905 NULL,
44feb3ce
TT
11906 CATCH_PERMANENT,
11907 CATCH_TEMPORARY);
11908 add_catch_command ("throw", _("\
11909Catch an exception, when thrown.\n\
11910With an argument, catch only exceptions with the given name."),
11911 catch_throw_command,
a96d9b2e 11912 NULL,
44feb3ce
TT
11913 CATCH_PERMANENT,
11914 CATCH_TEMPORARY);
11915 add_catch_command ("fork", _("Catch calls to fork."),
11916 catch_fork_command_1,
a96d9b2e 11917 NULL,
44feb3ce
TT
11918 (void *) (uintptr_t) catch_fork_permanent,
11919 (void *) (uintptr_t) catch_fork_temporary);
11920 add_catch_command ("vfork", _("Catch calls to vfork."),
11921 catch_fork_command_1,
a96d9b2e 11922 NULL,
44feb3ce
TT
11923 (void *) (uintptr_t) catch_vfork_permanent,
11924 (void *) (uintptr_t) catch_vfork_temporary);
11925 add_catch_command ("exec", _("Catch calls to exec."),
11926 catch_exec_command_1,
a96d9b2e
SDJ
11927 NULL,
11928 CATCH_PERMANENT,
11929 CATCH_TEMPORARY);
11930 add_catch_command ("syscall", _("\
11931Catch system calls by their names and/or numbers.\n\
11932Arguments say which system calls to catch. If no arguments\n\
11933are given, every system call will be caught.\n\
11934Arguments, if given, should be one or more system call names\n\
11935(if your system supports that), or system call numbers."),
11936 catch_syscall_command_1,
11937 catch_syscall_completer,
44feb3ce
TT
11938 CATCH_PERMANENT,
11939 CATCH_TEMPORARY);
44feb3ce
TT
11940 add_catch_command ("exception", _("\
11941Catch Ada exceptions, when raised.\n\
11942With an argument, catch only exceptions with the given name."),
11943 catch_ada_exception_command,
a96d9b2e 11944 NULL,
44feb3ce
TT
11945 CATCH_PERMANENT,
11946 CATCH_TEMPORARY);
11947 add_catch_command ("assert", _("\
11948Catch failed Ada assertions, when raised.\n\
11949With an argument, catch only exceptions with the given name."),
11950 catch_assert_command,
a96d9b2e 11951 NULL,
44feb3ce
TT
11952 CATCH_PERMANENT,
11953 CATCH_TEMPORARY);
c5aa993b 11954
1bedd215
AC
11955 c = add_com ("watch", class_breakpoint, watch_command, _("\
11956Set a watchpoint for an expression.\n\
06a64a0b 11957Usage: watch [-l|-location] EXPRESSION\n\
c906108c 11958A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
11959an expression changes.\n\
11960If -l or -location is given, this evaluates EXPRESSION and watches\n\
11961the memory to which it refers."));
65d12d83 11962 set_cmd_completer (c, expression_completer);
c906108c 11963
1bedd215
AC
11964 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
11965Set a read watchpoint for an expression.\n\
06a64a0b 11966Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 11967A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
11968an expression is read.\n\
11969If -l or -location is given, this evaluates EXPRESSION and watches\n\
11970the memory to which it refers."));
65d12d83 11971 set_cmd_completer (c, expression_completer);
c906108c 11972
1bedd215
AC
11973 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
11974Set a watchpoint for an expression.\n\
06a64a0b 11975Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 11976A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
11977an expression is either read or written.\n\
11978If -l or -location is given, this evaluates EXPRESSION and watches\n\
11979the memory to which it refers."));
65d12d83 11980 set_cmd_completer (c, expression_completer);
c906108c 11981
d77f58be
SS
11982 add_info ("watchpoints", watchpoints_info, _("\
11983Status of watchpoints, or watchpoint number NUMBER."));
11984
c906108c
SS
11985
11986
920d2a44
AC
11987 /* XXX: cagney/2005-02-23: This should be a boolean, and should
11988 respond to changes - contrary to the description. */
85c07804
AC
11989 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
11990 &can_use_hw_watchpoints, _("\
11991Set debugger's willingness to use watchpoint hardware."), _("\
11992Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
11993If zero, gdb will not use hardware for new watchpoints, even if\n\
11994such is available. (However, any hardware watchpoints that were\n\
11995created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
11996hardware.)"),
11997 NULL,
920d2a44 11998 show_can_use_hw_watchpoints,
85c07804 11999 &setlist, &showlist);
c906108c
SS
12000
12001 can_use_hw_watchpoints = 1;
fa8d40ab 12002
1042e4c0
SS
12003 /* Tracepoint manipulation commands. */
12004
12005 c = add_com ("trace", class_breakpoint, trace_command, _("\
12006Set a tracepoint at specified line or function.\n\
12007\n"
12008BREAK_ARGS_HELP ("trace") "\n\
12009Do \"help tracepoints\" for info on other tracepoint commands."));
12010 set_cmd_completer (c, location_completer);
12011
12012 add_com_alias ("tp", "trace", class_alias, 0);
12013 add_com_alias ("tr", "trace", class_alias, 1);
12014 add_com_alias ("tra", "trace", class_alias, 1);
12015 add_com_alias ("trac", "trace", class_alias, 1);
12016
7a697b8d
SS
12017 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
12018Set a fast tracepoint at specified line or function.\n\
12019\n"
12020BREAK_ARGS_HELP ("ftrace") "\n\
12021Do \"help tracepoints\" for info on other tracepoint commands."));
12022 set_cmd_completer (c, location_completer);
12023
0fb4aa4b
PA
12024 c = add_com ("strace", class_breakpoint, strace_command, _("\
12025Set a static tracepoint at specified line, function or marker.\n\
12026\n\
12027strace [LOCATION] [if CONDITION]\n\
12028LOCATION may be a line number, function name, \"*\" and an address,\n\
12029or -m MARKER_ID.\n\
12030If a line number is specified, probe the marker at start of code\n\
12031for that line. If a function is specified, probe the marker at start\n\
12032of code for that function. If an address is specified, probe the marker\n\
12033at that exact address. If a marker id is specified, probe the marker\n\
12034with that name. With no LOCATION, uses current execution address of\n\
12035the selected stack frame.\n\
12036Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
12037This collects arbitrary user data passed in the probe point call to the\n\
12038tracing library. You can inspect it when analyzing the trace buffer,\n\
12039by printing the $_sdata variable like any other convenience variable.\n\
12040\n\
12041CONDITION is a boolean expression.\n\
12042\n\
d41c0fc8
PA
12043Multiple tracepoints at one place are permitted, and useful if their\n\
12044conditions are different.\n\
0fb4aa4b
PA
12045\n\
12046Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
12047Do \"help tracepoints\" for info on other tracepoint commands."));
12048 set_cmd_completer (c, location_completer);
12049
1042e4c0
SS
12050 add_info ("tracepoints", tracepoints_info, _("\
12051Status of tracepoints, or tracepoint number NUMBER.\n\
12052Convenience variable \"$tpnum\" contains the number of the\n\
12053last tracepoint set."));
12054
12055 add_info_alias ("tp", "tracepoints", 1);
12056
12057 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
12058Delete specified tracepoints.\n\
12059Arguments are tracepoint numbers, separated by spaces.\n\
12060No argument means delete all tracepoints."),
12061 &deletelist);
12062
12063 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
12064Disable specified tracepoints.\n\
12065Arguments are tracepoint numbers, separated by spaces.\n\
12066No argument means disable all tracepoints."),
12067 &disablelist);
12068 deprecate_cmd (c, "disable");
12069
12070 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
12071Enable specified tracepoints.\n\
12072Arguments are tracepoint numbers, separated by spaces.\n\
12073No argument means enable all tracepoints."),
12074 &enablelist);
12075 deprecate_cmd (c, "enable");
12076
12077 add_com ("passcount", class_trace, trace_pass_command, _("\
12078Set the passcount for a tracepoint.\n\
12079The trace will end when the tracepoint has been passed 'count' times.\n\
12080Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
12081if TPNUM is omitted, passcount refers to the last tracepoint defined."));
12082
6149aea9
PA
12083 add_prefix_cmd ("save", class_breakpoint, save_command,
12084 _("Save breakpoint definitions as a script."),
12085 &save_cmdlist, "save ",
12086 0/*allow-unknown*/, &cmdlist);
12087
12088 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
12089Save current breakpoint definitions as a script.\n\
cce7e648 12090This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
12091catchpoints, tracepoints). Use the 'source' command in another debug\n\
12092session to restore them."),
12093 &save_cmdlist);
12094 set_cmd_completer (c, filename_completer);
12095
12096 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 12097Save current tracepoint definitions as a script.\n\
6149aea9
PA
12098Use the 'source' command in another debug session to restore them."),
12099 &save_cmdlist);
1042e4c0
SS
12100 set_cmd_completer (c, filename_completer);
12101
6149aea9
PA
12102 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
12103 deprecate_cmd (c, "save tracepoints");
12104
1bedd215 12105 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
12106Breakpoint specific settings\n\
12107Configure various breakpoint-specific variables such as\n\
1bedd215 12108pending breakpoint behavior"),
fa8d40ab
JJ
12109 &breakpoint_set_cmdlist, "set breakpoint ",
12110 0/*allow-unknown*/, &setlist);
1bedd215 12111 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
12112Breakpoint specific settings\n\
12113Configure various breakpoint-specific variables such as\n\
1bedd215 12114pending breakpoint behavior"),
fa8d40ab
JJ
12115 &breakpoint_show_cmdlist, "show breakpoint ",
12116 0/*allow-unknown*/, &showlist);
12117
7915a72c
AC
12118 add_setshow_auto_boolean_cmd ("pending", no_class,
12119 &pending_break_support, _("\
12120Set debugger's behavior regarding pending breakpoints."), _("\
12121Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
12122If on, an unrecognized breakpoint location will cause gdb to create a\n\
12123pending breakpoint. If off, an unrecognized breakpoint location results in\n\
12124an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 12125user-query to see if a pending breakpoint should be created."),
2c5b56ce 12126 NULL,
920d2a44 12127 show_pending_break_support,
6e1d7d6c
AC
12128 &breakpoint_set_cmdlist,
12129 &breakpoint_show_cmdlist);
fa8d40ab
JJ
12130
12131 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
12132
12133 add_setshow_boolean_cmd ("auto-hw", no_class,
12134 &automatic_hardware_breakpoints, _("\
12135Set automatic usage of hardware breakpoints."), _("\
12136Show automatic usage of hardware breakpoints."), _("\
12137If set, the debugger will automatically use hardware breakpoints for\n\
12138breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
12139a warning will be emitted for such breakpoints."),
12140 NULL,
12141 show_automatic_hardware_breakpoints,
12142 &breakpoint_set_cmdlist,
12143 &breakpoint_show_cmdlist);
74960c60 12144
33e5cbd6
PA
12145 add_setshow_enum_cmd ("always-inserted", class_support,
12146 always_inserted_enums, &always_inserted_mode, _("\
74960c60
VP
12147Set mode for inserting breakpoints."), _("\
12148Show mode for inserting breakpoints."), _("\
33e5cbd6
PA
12149When this mode is off, breakpoints are inserted in inferior when it is\n\
12150resumed, and removed when execution stops. When this mode is on,\n\
12151breakpoints are inserted immediately and removed only when the user\n\
12152deletes the breakpoint. When this mode is auto (which is the default),\n\
12153the behaviour depends on the non-stop setting (see help set non-stop).\n\
12154In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
12155behaves as if always-inserted mode is on; if gdb is controlling the\n\
12156inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
74960c60
VP
12157 NULL,
12158 &show_always_inserted_mode,
12159 &breakpoint_set_cmdlist,
12160 &breakpoint_show_cmdlist);
765dc015
VP
12161
12162 automatic_hardware_breakpoints = 1;
f3b1572e
PA
12163
12164 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
c906108c 12165}
This page took 1.68046 seconds and 4 git commands to generate.