* Fix indentation issue and reorganize last commit entry
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
28e7fd62 3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
a6d9a66e 21#include "arch-utils.h"
c906108c 22#include <ctype.h>
776592bf 23#include "hashtab.h"
c906108c
SS
24#include "symtab.h"
25#include "frame.h"
26#include "breakpoint.h"
1042e4c0 27#include "tracepoint.h"
c906108c
SS
28#include "gdbtypes.h"
29#include "expression.h"
30#include "gdbcore.h"
31#include "gdbcmd.h"
32#include "value.h"
33#include "command.h"
34#include "inferior.h"
35#include "gdbthread.h"
36#include "target.h"
37#include "language.h"
0e9f083f 38#include <string.h>
50f182aa 39#include "gdb-demangle.h"
0ba1096a 40#include "filenames.h"
c906108c
SS
41#include "annotate.h"
42#include "symfile.h"
43#include "objfiles.h"
0378c332 44#include "source.h"
c5f0f3d0 45#include "linespec.h"
c94fdfd0 46#include "completer.h"
5b7f31a4 47#include "gdb.h"
8b93c638 48#include "ui-out.h"
e1507482 49#include "cli/cli-script.h"
0225421b 50#include "gdb_assert.h"
fe898f56 51#include "block.h"
a77053c2 52#include "solib.h"
84acb35a
JJ
53#include "solist.h"
54#include "observer.h"
60250e8b 55#include "exceptions.h"
765dc015 56#include "memattr.h"
f7f9143b 57#include "ada-lang.h"
d1aa2f50 58#include "top.h"
79a45b7d 59#include "valprint.h"
4efc6507 60#include "jit.h"
a96d9b2e 61#include "xml-syscall.h"
65d79d4b 62#include "parser-defs.h"
55aa24fb
SDJ
63#include "gdb_regex.h"
64#include "probe.h"
e9cafbcc 65#include "cli/cli-utils.h"
be34f849 66#include "continuations.h"
1bfeeb0f
JL
67#include "stack.h"
68#include "skip.h"
edcc5120 69#include "gdb_regex.h"
b775012e 70#include "ax-gdb.h"
e2e4d78b 71#include "dummy-frame.h"
c906108c 72
d3ce09f5
SS
73#include "format.h"
74
1042e4c0
SS
75/* readline include files */
76#include "readline/readline.h"
77#include "readline/history.h"
78
79/* readline defines this. */
80#undef savestring
81
034dad6f 82#include "mi/mi-common.h"
7371cf6d 83#include "python/python.h"
104c1213 84
e7e8980f
YQ
85/* Enums for exception-handling support. */
86enum exception_event_kind
87{
88 EX_EVENT_THROW,
591f19e8 89 EX_EVENT_RETHROW,
e7e8980f
YQ
90 EX_EVENT_CATCH
91};
92
4a64f543 93/* Prototypes for local functions. */
c906108c 94
a14ed312 95static void enable_delete_command (char *, int);
c906108c 96
a14ed312 97static void enable_once_command (char *, int);
c906108c 98
816338b5
SS
99static void enable_count_command (char *, int);
100
a14ed312 101static void disable_command (char *, int);
c906108c 102
a14ed312 103static void enable_command (char *, int);
c906108c 104
95a42b64
TT
105static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
106 void *),
107 void *);
c906108c 108
a14ed312 109static void ignore_command (char *, int);
c906108c 110
4efb68b1 111static int breakpoint_re_set_one (void *);
c906108c 112
348d480f
PA
113static void breakpoint_re_set_default (struct breakpoint *);
114
983af33b
SDJ
115static void create_sals_from_address_default (char **,
116 struct linespec_result *,
117 enum bptype, char *,
118 char **);
119
120static void create_breakpoints_sal_default (struct gdbarch *,
121 struct linespec_result *,
e7e0cddf 122 char *, char *, enum bptype,
983af33b
SDJ
123 enum bpdisp, int, int,
124 int,
125 const struct breakpoint_ops *,
44f238bb 126 int, int, int, unsigned);
983af33b
SDJ
127
128static void decode_linespec_default (struct breakpoint *, char **,
129 struct symtabs_and_lines *);
130
a14ed312 131static void clear_command (char *, int);
c906108c 132
a14ed312 133static void catch_command (char *, int);
c906108c 134
a9634178 135static int can_use_hardware_watchpoint (struct value *);
c906108c 136
98deb0da 137static void break_command_1 (char *, int, int);
c906108c 138
a14ed312 139static void mention (struct breakpoint *);
c906108c 140
348d480f
PA
141static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
142 enum bptype,
c0a91b2b 143 const struct breakpoint_ops *);
3742cc8b
YQ
144static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
145 const struct symtab_and_line *);
146
4a64f543
MS
147/* This function is used in gdbtk sources and thus can not be made
148 static. */
63c252f8 149struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 150 struct symtab_and_line,
c0a91b2b
TT
151 enum bptype,
152 const struct breakpoint_ops *);
c906108c 153
06edf0c0
PA
154static struct breakpoint *
155 momentary_breakpoint_from_master (struct breakpoint *orig,
156 enum bptype type,
c0a91b2b 157 const struct breakpoint_ops *ops);
06edf0c0 158
76897487
KB
159static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
160
a6d9a66e
UW
161static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
162 CORE_ADDR bpaddr,
88f7da05 163 enum bptype bptype);
76897487 164
6c95b8df
PA
165static void describe_other_breakpoints (struct gdbarch *,
166 struct program_space *, CORE_ADDR,
5af949e3 167 struct obj_section *, int);
c906108c 168
6c95b8df
PA
169static int breakpoint_address_match (struct address_space *aspace1,
170 CORE_ADDR addr1,
171 struct address_space *aspace2,
172 CORE_ADDR addr2);
173
85d721b8
PA
174static int watchpoint_locations_match (struct bp_location *loc1,
175 struct bp_location *loc2);
176
f1310107
TJB
177static int breakpoint_location_address_match (struct bp_location *bl,
178 struct address_space *aspace,
179 CORE_ADDR addr);
180
a14ed312 181static void breakpoints_info (char *, int);
c906108c 182
d77f58be
SS
183static void watchpoints_info (char *, int);
184
e5a67952
MS
185static int breakpoint_1 (char *, int,
186 int (*) (const struct breakpoint *));
c906108c 187
4efb68b1 188static int breakpoint_cond_eval (void *);
c906108c 189
4efb68b1 190static void cleanup_executing_breakpoints (void *);
c906108c 191
a14ed312 192static void commands_command (char *, int);
c906108c 193
a14ed312 194static void condition_command (char *, int);
c906108c 195
c5aa993b
JM
196typedef enum
197 {
198 mark_inserted,
199 mark_uninserted
200 }
201insertion_state_t;
c906108c 202
0bde7532 203static int remove_breakpoint (struct bp_location *, insertion_state_t);
6c95b8df 204static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
c906108c 205
e514a9d6 206static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 207
4efb68b1 208static int watchpoint_check (void *);
c906108c 209
a14ed312 210static void maintenance_info_breakpoints (char *, int);
c906108c 211
a14ed312 212static int hw_breakpoint_used_count (void);
c906108c 213
a1398e0c
PA
214static int hw_watchpoint_use_count (struct breakpoint *);
215
216static int hw_watchpoint_used_count_others (struct breakpoint *except,
217 enum bptype type,
218 int *other_type_used);
c906108c 219
a14ed312 220static void hbreak_command (char *, int);
c906108c 221
a14ed312 222static void thbreak_command (char *, int);
c906108c 223
816338b5
SS
224static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
225 int count);
c906108c 226
a14ed312 227static void stop_command (char *arg, int from_tty);
7a292a7a 228
a14ed312 229static void stopin_command (char *arg, int from_tty);
7a292a7a 230
a14ed312 231static void stopat_command (char *arg, int from_tty);
7a292a7a 232
a14ed312 233static void tcatch_command (char *arg, int from_tty);
7a292a7a 234
d03285ec
UW
235static void detach_single_step_breakpoints (void);
236
6c95b8df
PA
237static int single_step_breakpoint_inserted_here_p (struct address_space *,
238 CORE_ADDR pc);
1aafd4da 239
fe3f5fa8 240static void free_bp_location (struct bp_location *loc);
f431efe5
PA
241static void incref_bp_location (struct bp_location *loc);
242static void decref_bp_location (struct bp_location **loc);
fe3f5fa8 243
39d61571 244static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
a5606eee 245
b60e7edf 246static void update_global_location_list (int);
a5606eee 247
b60e7edf 248static void update_global_location_list_nothrow (int);
74960c60 249
d77f58be 250static int is_hardware_watchpoint (const struct breakpoint *bpt);
74960c60
VP
251
252static void insert_breakpoint_locations (void);
a5606eee 253
a96d9b2e
SDJ
254static int syscall_catchpoint_p (struct breakpoint *b);
255
1042e4c0
SS
256static void tracepoints_info (char *, int);
257
258static void delete_trace_command (char *, int);
259
260static void enable_trace_command (char *, int);
261
262static void disable_trace_command (char *, int);
263
264static void trace_pass_command (char *, int);
265
558a9d82
YQ
266static void set_tracepoint_count (int num);
267
9c06b0b4
TJB
268static int is_masked_watchpoint (const struct breakpoint *b);
269
b775012e
LM
270static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
271
983af33b
SDJ
272/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
273 otherwise. */
274
275static int strace_marker_p (struct breakpoint *b);
0fb4aa4b 276
2060206e
PA
277/* The abstract base class all breakpoint_ops structures inherit
278 from. */
ab04a2af 279struct breakpoint_ops base_breakpoint_ops;
2060206e
PA
280
281/* The breakpoint_ops structure to be inherited by all breakpoint_ops
282 that are implemented on top of software or hardware breakpoints
283 (user breakpoints, internal and momentary breakpoints, etc.). */
284static struct breakpoint_ops bkpt_base_breakpoint_ops;
285
286/* Internal breakpoints class type. */
06edf0c0 287static struct breakpoint_ops internal_breakpoint_ops;
2060206e
PA
288
289/* Momentary breakpoints class type. */
06edf0c0
PA
290static struct breakpoint_ops momentary_breakpoint_ops;
291
e2e4d78b
JK
292/* Momentary breakpoints for bp_longjmp and bp_exception class type. */
293static struct breakpoint_ops longjmp_breakpoint_ops;
294
2060206e
PA
295/* The breakpoint_ops structure to be used in regular user created
296 breakpoints. */
297struct breakpoint_ops bkpt_breakpoint_ops;
298
55aa24fb
SDJ
299/* Breakpoints set on probes. */
300static struct breakpoint_ops bkpt_probe_breakpoint_ops;
301
e7e0cddf 302/* Dynamic printf class type. */
c5867ab6 303struct breakpoint_ops dprintf_breakpoint_ops;
e7e0cddf 304
d3ce09f5
SS
305/* The style in which to perform a dynamic printf. This is a user
306 option because different output options have different tradeoffs;
307 if GDB does the printing, there is better error handling if there
308 is a problem with any of the arguments, but using an inferior
309 function lets you have special-purpose printers and sending of
310 output to the same place as compiled-in print functions. */
311
312static const char dprintf_style_gdb[] = "gdb";
313static const char dprintf_style_call[] = "call";
314static const char dprintf_style_agent[] = "agent";
315static const char *const dprintf_style_enums[] = {
316 dprintf_style_gdb,
317 dprintf_style_call,
318 dprintf_style_agent,
319 NULL
320};
321static const char *dprintf_style = dprintf_style_gdb;
322
323/* The function to use for dynamic printf if the preferred style is to
324 call into the inferior. The value is simply a string that is
325 copied into the command, so it can be anything that GDB can
326 evaluate to a callable address, not necessarily a function name. */
327
328static char *dprintf_function = "";
329
330/* The channel to use for dynamic printf if the preferred style is to
331 call into the inferior; if a nonempty string, it will be passed to
332 the call as the first argument, with the format string as the
333 second. As with the dprintf function, this can be anything that
334 GDB knows how to evaluate, so in addition to common choices like
335 "stderr", this could be an app-specific expression like
336 "mystreams[curlogger]". */
337
338static char *dprintf_channel = "";
339
340/* True if dprintf commands should continue to operate even if GDB
341 has disconnected. */
342static int disconnected_dprintf = 1;
343
5cea2a26
PA
344/* A reference-counted struct command_line. This lets multiple
345 breakpoints share a single command list. */
346struct counted_command_line
347{
348 /* The reference count. */
349 int refc;
350
351 /* The command list. */
352 struct command_line *commands;
353};
354
355struct command_line *
356breakpoint_commands (struct breakpoint *b)
357{
358 return b->commands ? b->commands->commands : NULL;
359}
3daf8fe5 360
f3b1572e
PA
361/* Flag indicating that a command has proceeded the inferior past the
362 current breakpoint. */
363
364static int breakpoint_proceeded;
365
956a9fb9 366const char *
2cec12e5
AR
367bpdisp_text (enum bpdisp disp)
368{
4a64f543
MS
369 /* NOTE: the following values are a part of MI protocol and
370 represent values of 'disp' field returned when inferior stops at
371 a breakpoint. */
bc043ef3 372 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
cc59ec59 373
2cec12e5
AR
374 return bpdisps[(int) disp];
375}
c906108c 376
4a64f543 377/* Prototypes for exported functions. */
c906108c 378/* If FALSE, gdb will not use hardware support for watchpoints, even
4a64f543 379 if such is available. */
c906108c
SS
380static int can_use_hw_watchpoints;
381
920d2a44
AC
382static void
383show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
384 struct cmd_list_element *c,
385 const char *value)
386{
3e43a32a
MS
387 fprintf_filtered (file,
388 _("Debugger's willingness to use "
389 "watchpoint hardware is %s.\n"),
920d2a44
AC
390 value);
391}
392
fa8d40ab
JJ
393/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
394 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
4a64f543 395 for unrecognized breakpoint locations.
fa8d40ab
JJ
396 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
397static enum auto_boolean pending_break_support;
920d2a44
AC
398static void
399show_pending_break_support (struct ui_file *file, int from_tty,
400 struct cmd_list_element *c,
401 const char *value)
402{
3e43a32a
MS
403 fprintf_filtered (file,
404 _("Debugger's behavior regarding "
405 "pending breakpoints is %s.\n"),
920d2a44
AC
406 value);
407}
fa8d40ab 408
765dc015 409/* If 1, gdb will automatically use hardware breakpoints for breakpoints
4a64f543 410 set with "break" but falling in read-only memory.
765dc015
VP
411 If 0, gdb will warn about such breakpoints, but won't automatically
412 use hardware breakpoints. */
413static int automatic_hardware_breakpoints;
414static void
415show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
416 struct cmd_list_element *c,
417 const char *value)
418{
3e43a32a
MS
419 fprintf_filtered (file,
420 _("Automatic usage of hardware breakpoints is %s.\n"),
765dc015
VP
421 value);
422}
423
33e5cbd6
PA
424/* If on, gdb will keep breakpoints inserted even as inferior is
425 stopped, and immediately insert any new breakpoints. If off, gdb
426 will insert breakpoints into inferior only when resuming it, and
427 will remove breakpoints upon stop. If auto, GDB will behave as ON
428 if in non-stop mode, and as OFF if all-stop mode.*/
429
72d0e2c5
YQ
430static enum auto_boolean always_inserted_mode = AUTO_BOOLEAN_AUTO;
431
33e5cbd6 432static void
74960c60 433show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 434 struct cmd_list_element *c, const char *value)
74960c60 435{
72d0e2c5 436 if (always_inserted_mode == AUTO_BOOLEAN_AUTO)
3e43a32a
MS
437 fprintf_filtered (file,
438 _("Always inserted breakpoint "
439 "mode is %s (currently %s).\n"),
33e5cbd6
PA
440 value,
441 breakpoints_always_inserted_mode () ? "on" : "off");
442 else
3e43a32a
MS
443 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
444 value);
74960c60
VP
445}
446
33e5cbd6
PA
447int
448breakpoints_always_inserted_mode (void)
449{
72d0e2c5
YQ
450 return (always_inserted_mode == AUTO_BOOLEAN_TRUE
451 || (always_inserted_mode == AUTO_BOOLEAN_AUTO && non_stop));
33e5cbd6 452}
765dc015 453
b775012e
LM
454static const char condition_evaluation_both[] = "host or target";
455
456/* Modes for breakpoint condition evaluation. */
457static const char condition_evaluation_auto[] = "auto";
458static const char condition_evaluation_host[] = "host";
459static const char condition_evaluation_target[] = "target";
460static const char *const condition_evaluation_enums[] = {
461 condition_evaluation_auto,
462 condition_evaluation_host,
463 condition_evaluation_target,
464 NULL
465};
466
467/* Global that holds the current mode for breakpoint condition evaluation. */
468static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
469
470/* Global that we use to display information to the user (gets its value from
471 condition_evaluation_mode_1. */
472static const char *condition_evaluation_mode = condition_evaluation_auto;
473
474/* Translate a condition evaluation mode MODE into either "host"
475 or "target". This is used mostly to translate from "auto" to the
476 real setting that is being used. It returns the translated
477 evaluation mode. */
478
479static const char *
480translate_condition_evaluation_mode (const char *mode)
481{
482 if (mode == condition_evaluation_auto)
483 {
484 if (target_supports_evaluation_of_breakpoint_conditions ())
485 return condition_evaluation_target;
486 else
487 return condition_evaluation_host;
488 }
489 else
490 return mode;
491}
492
493/* Discovers what condition_evaluation_auto translates to. */
494
495static const char *
496breakpoint_condition_evaluation_mode (void)
497{
498 return translate_condition_evaluation_mode (condition_evaluation_mode);
499}
500
501/* Return true if GDB should evaluate breakpoint conditions or false
502 otherwise. */
503
504static int
505gdb_evaluates_breakpoint_condition_p (void)
506{
507 const char *mode = breakpoint_condition_evaluation_mode ();
508
509 return (mode == condition_evaluation_host);
510}
511
a14ed312 512void _initialize_breakpoint (void);
c906108c 513
c906108c
SS
514/* Are we executing breakpoint commands? */
515static int executing_breakpoint_commands;
516
c02f5703
MS
517/* Are overlay event breakpoints enabled? */
518static int overlay_events_enabled;
519
e09342b5
TJB
520/* See description in breakpoint.h. */
521int target_exact_watchpoints = 0;
522
c906108c 523/* Walk the following statement or block through all breakpoints.
e5dd4106 524 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
4a64f543 525 current breakpoint. */
c906108c 526
5c44784c 527#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 528
5c44784c
JM
529#define ALL_BREAKPOINTS_SAFE(B,TMP) \
530 for (B = breakpoint_chain; \
531 B ? (TMP=B->next, 1): 0; \
532 B = TMP)
c906108c 533
4a64f543
MS
534/* Similar iterator for the low-level breakpoints. SAFE variant is
535 not provided so update_global_location_list must not be called
536 while executing the block of ALL_BP_LOCATIONS. */
7cc221ef 537
876fa593
JK
538#define ALL_BP_LOCATIONS(B,BP_TMP) \
539 for (BP_TMP = bp_location; \
540 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
541 BP_TMP++)
7cc221ef 542
b775012e
LM
543/* Iterates through locations with address ADDRESS for the currently selected
544 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
545 to where the loop should start from.
546 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
547 appropriate location to start with. */
548
549#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
550 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
551 BP_LOCP_TMP = BP_LOCP_START; \
552 BP_LOCP_START \
553 && (BP_LOCP_TMP < bp_location + bp_location_count \
554 && (*BP_LOCP_TMP)->address == ADDRESS); \
555 BP_LOCP_TMP++)
556
1042e4c0
SS
557/* Iterator for tracepoints only. */
558
559#define ALL_TRACEPOINTS(B) \
560 for (B = breakpoint_chain; B; B = B->next) \
d77f58be 561 if (is_tracepoint (B))
1042e4c0 562
7cc221ef 563/* Chains of all breakpoints defined. */
c906108c
SS
564
565struct breakpoint *breakpoint_chain;
566
876fa593
JK
567/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
568
569static struct bp_location **bp_location;
570
571/* Number of elements of BP_LOCATION. */
572
573static unsigned bp_location_count;
574
4a64f543
MS
575/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
576 ADDRESS for the current elements of BP_LOCATION which get a valid
577 result from bp_location_has_shadow. You can use it for roughly
578 limiting the subrange of BP_LOCATION to scan for shadow bytes for
579 an address you need to read. */
876fa593
JK
580
581static CORE_ADDR bp_location_placed_address_before_address_max;
582
4a64f543
MS
583/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
584 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
585 BP_LOCATION which get a valid result from bp_location_has_shadow.
586 You can use it for roughly limiting the subrange of BP_LOCATION to
587 scan for shadow bytes for an address you need to read. */
876fa593
JK
588
589static CORE_ADDR bp_location_shadow_len_after_address_max;
7cc221ef 590
4a64f543
MS
591/* The locations that no longer correspond to any breakpoint, unlinked
592 from bp_location array, but for which a hit may still be reported
593 by a target. */
20874c92
VP
594VEC(bp_location_p) *moribund_locations = NULL;
595
c906108c
SS
596/* Number of last breakpoint made. */
597
95a42b64
TT
598static int breakpoint_count;
599
86b17b60
PA
600/* The value of `breakpoint_count' before the last command that
601 created breakpoints. If the last (break-like) command created more
602 than one breakpoint, then the difference between BREAKPOINT_COUNT
603 and PREV_BREAKPOINT_COUNT is more than one. */
604static int prev_breakpoint_count;
c906108c 605
1042e4c0
SS
606/* Number of last tracepoint made. */
607
95a42b64 608static int tracepoint_count;
1042e4c0 609
6149aea9
PA
610static struct cmd_list_element *breakpoint_set_cmdlist;
611static struct cmd_list_element *breakpoint_show_cmdlist;
9291a0cd 612struct cmd_list_element *save_cmdlist;
6149aea9 613
468d015d
JJ
614/* Return whether a breakpoint is an active enabled breakpoint. */
615static int
616breakpoint_enabled (struct breakpoint *b)
617{
0d381245 618 return (b->enable_state == bp_enabled);
468d015d
JJ
619}
620
c906108c
SS
621/* Set breakpoint count to NUM. */
622
95a42b64 623static void
fba45db2 624set_breakpoint_count (int num)
c906108c 625{
86b17b60 626 prev_breakpoint_count = breakpoint_count;
c906108c 627 breakpoint_count = num;
4fa62494 628 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
c906108c
SS
629}
630
86b17b60
PA
631/* Used by `start_rbreak_breakpoints' below, to record the current
632 breakpoint count before "rbreak" creates any breakpoint. */
633static int rbreak_start_breakpoint_count;
634
95a42b64
TT
635/* Called at the start an "rbreak" command to record the first
636 breakpoint made. */
86b17b60 637
95a42b64
TT
638void
639start_rbreak_breakpoints (void)
640{
86b17b60 641 rbreak_start_breakpoint_count = breakpoint_count;
95a42b64
TT
642}
643
644/* Called at the end of an "rbreak" command to record the last
645 breakpoint made. */
86b17b60 646
95a42b64
TT
647void
648end_rbreak_breakpoints (void)
649{
86b17b60 650 prev_breakpoint_count = rbreak_start_breakpoint_count;
95a42b64
TT
651}
652
4a64f543 653/* Used in run_command to zero the hit count when a new run starts. */
c906108c
SS
654
655void
fba45db2 656clear_breakpoint_hit_counts (void)
c906108c
SS
657{
658 struct breakpoint *b;
659
660 ALL_BREAKPOINTS (b)
661 b->hit_count = 0;
662}
663
9add0f1b
TT
664/* Allocate a new counted_command_line with reference count of 1.
665 The new structure owns COMMANDS. */
666
667static struct counted_command_line *
668alloc_counted_command_line (struct command_line *commands)
669{
670 struct counted_command_line *result
671 = xmalloc (sizeof (struct counted_command_line));
cc59ec59 672
9add0f1b
TT
673 result->refc = 1;
674 result->commands = commands;
675 return result;
676}
677
678/* Increment reference count. This does nothing if CMD is NULL. */
679
680static void
681incref_counted_command_line (struct counted_command_line *cmd)
682{
683 if (cmd)
684 ++cmd->refc;
685}
686
687/* Decrement reference count. If the reference count reaches 0,
688 destroy the counted_command_line. Sets *CMDP to NULL. This does
689 nothing if *CMDP is NULL. */
690
691static void
692decref_counted_command_line (struct counted_command_line **cmdp)
693{
694 if (*cmdp)
695 {
696 if (--(*cmdp)->refc == 0)
697 {
698 free_command_lines (&(*cmdp)->commands);
699 xfree (*cmdp);
700 }
701 *cmdp = NULL;
702 }
703}
704
705/* A cleanup function that calls decref_counted_command_line. */
706
707static void
708do_cleanup_counted_command_line (void *arg)
709{
710 decref_counted_command_line (arg);
711}
712
713/* Create a cleanup that calls decref_counted_command_line on the
714 argument. */
715
716static struct cleanup *
717make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
718{
719 return make_cleanup (do_cleanup_counted_command_line, cmdp);
720}
721
c906108c 722\f
48cb2d85
VP
723/* Return the breakpoint with the specified number, or NULL
724 if the number does not refer to an existing breakpoint. */
725
726struct breakpoint *
727get_breakpoint (int num)
728{
729 struct breakpoint *b;
730
731 ALL_BREAKPOINTS (b)
732 if (b->number == num)
733 return b;
734
735 return NULL;
736}
5c44784c 737
c906108c 738\f
adc36818 739
b775012e
LM
740/* Mark locations as "conditions have changed" in case the target supports
741 evaluating conditions on its side. */
742
743static void
744mark_breakpoint_modified (struct breakpoint *b)
745{
746 struct bp_location *loc;
747
748 /* This is only meaningful if the target is
749 evaluating conditions and if the user has
750 opted for condition evaluation on the target's
751 side. */
752 if (gdb_evaluates_breakpoint_condition_p ()
753 || !target_supports_evaluation_of_breakpoint_conditions ())
754 return;
755
756 if (!is_breakpoint (b))
757 return;
758
759 for (loc = b->loc; loc; loc = loc->next)
760 loc->condition_changed = condition_modified;
761}
762
763/* Mark location as "conditions have changed" in case the target supports
764 evaluating conditions on its side. */
765
766static void
767mark_breakpoint_location_modified (struct bp_location *loc)
768{
769 /* This is only meaningful if the target is
770 evaluating conditions and if the user has
771 opted for condition evaluation on the target's
772 side. */
773 if (gdb_evaluates_breakpoint_condition_p ()
774 || !target_supports_evaluation_of_breakpoint_conditions ())
775
776 return;
777
778 if (!is_breakpoint (loc->owner))
779 return;
780
781 loc->condition_changed = condition_modified;
782}
783
784/* Sets the condition-evaluation mode using the static global
785 condition_evaluation_mode. */
786
787static void
788set_condition_evaluation_mode (char *args, int from_tty,
789 struct cmd_list_element *c)
790{
b775012e
LM
791 const char *old_mode, *new_mode;
792
793 if ((condition_evaluation_mode_1 == condition_evaluation_target)
794 && !target_supports_evaluation_of_breakpoint_conditions ())
795 {
796 condition_evaluation_mode_1 = condition_evaluation_mode;
797 warning (_("Target does not support breakpoint condition evaluation.\n"
798 "Using host evaluation mode instead."));
799 return;
800 }
801
802 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
803 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
804
abf1152a
JK
805 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
806 settings was "auto". */
807 condition_evaluation_mode = condition_evaluation_mode_1;
808
b775012e
LM
809 /* Only update the mode if the user picked a different one. */
810 if (new_mode != old_mode)
811 {
812 struct bp_location *loc, **loc_tmp;
813 /* If the user switched to a different evaluation mode, we
814 need to synch the changes with the target as follows:
815
816 "host" -> "target": Send all (valid) conditions to the target.
817 "target" -> "host": Remove all the conditions from the target.
818 */
819
b775012e
LM
820 if (new_mode == condition_evaluation_target)
821 {
822 /* Mark everything modified and synch conditions with the
823 target. */
824 ALL_BP_LOCATIONS (loc, loc_tmp)
825 mark_breakpoint_location_modified (loc);
826 }
827 else
828 {
829 /* Manually mark non-duplicate locations to synch conditions
830 with the target. We do this to remove all the conditions the
831 target knows about. */
832 ALL_BP_LOCATIONS (loc, loc_tmp)
833 if (is_breakpoint (loc->owner) && loc->inserted)
834 loc->needs_update = 1;
835 }
836
837 /* Do the update. */
838 update_global_location_list (1);
839 }
840
841 return;
842}
843
844/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
845 what "auto" is translating to. */
846
847static void
848show_condition_evaluation_mode (struct ui_file *file, int from_tty,
849 struct cmd_list_element *c, const char *value)
850{
851 if (condition_evaluation_mode == condition_evaluation_auto)
852 fprintf_filtered (file,
853 _("Breakpoint condition evaluation "
854 "mode is %s (currently %s).\n"),
855 value,
856 breakpoint_condition_evaluation_mode ());
857 else
858 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
859 value);
860}
861
862/* A comparison function for bp_location AP and BP that is used by
863 bsearch. This comparison function only cares about addresses, unlike
864 the more general bp_location_compare function. */
865
866static int
867bp_location_compare_addrs (const void *ap, const void *bp)
868{
869 struct bp_location *a = *(void **) ap;
870 struct bp_location *b = *(void **) bp;
871
872 if (a->address == b->address)
873 return 0;
874 else
875 return ((a->address > b->address) - (a->address < b->address));
876}
877
878/* Helper function to skip all bp_locations with addresses
879 less than ADDRESS. It returns the first bp_location that
880 is greater than or equal to ADDRESS. If none is found, just
881 return NULL. */
882
883static struct bp_location **
884get_first_locp_gte_addr (CORE_ADDR address)
885{
886 struct bp_location dummy_loc;
887 struct bp_location *dummy_locp = &dummy_loc;
888 struct bp_location **locp_found = NULL;
889
890 /* Initialize the dummy location's address field. */
891 memset (&dummy_loc, 0, sizeof (struct bp_location));
892 dummy_loc.address = address;
893
894 /* Find a close match to the first location at ADDRESS. */
895 locp_found = bsearch (&dummy_locp, bp_location, bp_location_count,
896 sizeof (struct bp_location **),
897 bp_location_compare_addrs);
898
899 /* Nothing was found, nothing left to do. */
900 if (locp_found == NULL)
901 return NULL;
902
903 /* We may have found a location that is at ADDRESS but is not the first in the
904 location's list. Go backwards (if possible) and locate the first one. */
905 while ((locp_found - 1) >= bp_location
906 && (*(locp_found - 1))->address == address)
907 locp_found--;
908
909 return locp_found;
910}
911
adc36818
PM
912void
913set_breakpoint_condition (struct breakpoint *b, char *exp,
914 int from_tty)
915{
3a5c3e22
PA
916 xfree (b->cond_string);
917 b->cond_string = NULL;
adc36818 918
3a5c3e22 919 if (is_watchpoint (b))
adc36818 920 {
3a5c3e22
PA
921 struct watchpoint *w = (struct watchpoint *) b;
922
923 xfree (w->cond_exp);
924 w->cond_exp = NULL;
925 }
926 else
927 {
928 struct bp_location *loc;
929
930 for (loc = b->loc; loc; loc = loc->next)
931 {
932 xfree (loc->cond);
933 loc->cond = NULL;
b775012e
LM
934
935 /* No need to free the condition agent expression
936 bytecode (if we have one). We will handle this
937 when we go through update_global_location_list. */
3a5c3e22 938 }
adc36818 939 }
adc36818
PM
940
941 if (*exp == 0)
942 {
943 if (from_tty)
944 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
945 }
946 else
947 {
bbc13ae3 948 const char *arg = exp;
cc59ec59 949
adc36818
PM
950 /* I don't know if it matters whether this is the string the user
951 typed in or the decompiled expression. */
952 b->cond_string = xstrdup (arg);
953 b->condition_not_parsed = 0;
954
955 if (is_watchpoint (b))
956 {
3a5c3e22
PA
957 struct watchpoint *w = (struct watchpoint *) b;
958
adc36818
PM
959 innermost_block = NULL;
960 arg = exp;
1bb9788d 961 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
adc36818
PM
962 if (*arg)
963 error (_("Junk at end of expression"));
3a5c3e22 964 w->cond_exp_valid_block = innermost_block;
adc36818
PM
965 }
966 else
967 {
3a5c3e22
PA
968 struct bp_location *loc;
969
adc36818
PM
970 for (loc = b->loc; loc; loc = loc->next)
971 {
972 arg = exp;
973 loc->cond =
1bb9788d
TT
974 parse_exp_1 (&arg, loc->address,
975 block_for_pc (loc->address), 0);
adc36818
PM
976 if (*arg)
977 error (_("Junk at end of expression"));
978 }
979 }
980 }
b775012e
LM
981 mark_breakpoint_modified (b);
982
8d3788bd 983 observer_notify_breakpoint_modified (b);
adc36818
PM
984}
985
d55637df
TT
986/* Completion for the "condition" command. */
987
988static VEC (char_ptr) *
6f937416
PA
989condition_completer (struct cmd_list_element *cmd,
990 const char *text, const char *word)
d55637df 991{
6f937416 992 const char *space;
d55637df 993
6f937416
PA
994 text = skip_spaces_const (text);
995 space = skip_to_space_const (text);
d55637df
TT
996 if (*space == '\0')
997 {
998 int len;
999 struct breakpoint *b;
1000 VEC (char_ptr) *result = NULL;
1001
1002 if (text[0] == '$')
1003 {
1004 /* We don't support completion of history indices. */
1005 if (isdigit (text[1]))
1006 return NULL;
1007 return complete_internalvar (&text[1]);
1008 }
1009
1010 /* We're completing the breakpoint number. */
1011 len = strlen (text);
1012
1013 ALL_BREAKPOINTS (b)
58ce7251
SDJ
1014 {
1015 char number[50];
1016
1017 xsnprintf (number, sizeof (number), "%d", b->number);
1018
1019 if (strncmp (number, text, len) == 0)
1020 VEC_safe_push (char_ptr, result, xstrdup (number));
1021 }
d55637df
TT
1022
1023 return result;
1024 }
1025
1026 /* We're completing the expression part. */
6f937416 1027 text = skip_spaces_const (space);
d55637df
TT
1028 return expression_completer (cmd, text, word);
1029}
1030
c906108c
SS
1031/* condition N EXP -- set break condition of breakpoint N to EXP. */
1032
1033static void
fba45db2 1034condition_command (char *arg, int from_tty)
c906108c 1035{
52f0bd74 1036 struct breakpoint *b;
c906108c 1037 char *p;
52f0bd74 1038 int bnum;
c906108c
SS
1039
1040 if (arg == 0)
e2e0b3e5 1041 error_no_arg (_("breakpoint number"));
c906108c
SS
1042
1043 p = arg;
1044 bnum = get_number (&p);
5c44784c 1045 if (bnum == 0)
8a3fe4f8 1046 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
1047
1048 ALL_BREAKPOINTS (b)
1049 if (b->number == bnum)
2f069f6f 1050 {
7371cf6d
PM
1051 /* Check if this breakpoint has a Python object assigned to
1052 it, and if it has a definition of the "stop"
1053 method. This method and conditions entered into GDB from
1054 the CLI are mutually exclusive. */
1055 if (b->py_bp_object
1056 && gdbpy_breakpoint_has_py_cond (b->py_bp_object))
1057 error (_("Cannot set a condition where a Python 'stop' "
1058 "method has been defined in the breakpoint."));
2566ad2d 1059 set_breakpoint_condition (b, p, from_tty);
b775012e
LM
1060
1061 if (is_breakpoint (b))
1062 update_global_location_list (1);
1063
2f069f6f
JB
1064 return;
1065 }
c906108c 1066
8a3fe4f8 1067 error (_("No breakpoint number %d."), bnum);
c906108c
SS
1068}
1069
a7bdde9e
VP
1070/* Check that COMMAND do not contain commands that are suitable
1071 only for tracepoints and not suitable for ordinary breakpoints.
4a64f543
MS
1072 Throw if any such commands is found. */
1073
a7bdde9e
VP
1074static void
1075check_no_tracepoint_commands (struct command_line *commands)
1076{
1077 struct command_line *c;
cc59ec59 1078
a7bdde9e
VP
1079 for (c = commands; c; c = c->next)
1080 {
1081 int i;
1082
1083 if (c->control_type == while_stepping_control)
3e43a32a
MS
1084 error (_("The 'while-stepping' command can "
1085 "only be used for tracepoints"));
a7bdde9e
VP
1086
1087 for (i = 0; i < c->body_count; ++i)
1088 check_no_tracepoint_commands ((c->body_list)[i]);
1089
1090 /* Not that command parsing removes leading whitespace and comment
4a64f543 1091 lines and also empty lines. So, we only need to check for
a7bdde9e
VP
1092 command directly. */
1093 if (strstr (c->line, "collect ") == c->line)
1094 error (_("The 'collect' command can only be used for tracepoints"));
1095
51661e93
VP
1096 if (strstr (c->line, "teval ") == c->line)
1097 error (_("The 'teval' command can only be used for tracepoints"));
a7bdde9e
VP
1098 }
1099}
1100
d77f58be
SS
1101/* Encapsulate tests for different types of tracepoints. */
1102
d9b3f62e
PA
1103static int
1104is_tracepoint_type (enum bptype type)
1105{
1106 return (type == bp_tracepoint
1107 || type == bp_fast_tracepoint
1108 || type == bp_static_tracepoint);
1109}
1110
a7bdde9e 1111int
d77f58be 1112is_tracepoint (const struct breakpoint *b)
a7bdde9e 1113{
d9b3f62e 1114 return is_tracepoint_type (b->type);
a7bdde9e 1115}
d9b3f62e 1116
e5dd4106 1117/* A helper function that validates that COMMANDS are valid for a
95a42b64
TT
1118 breakpoint. This function will throw an exception if a problem is
1119 found. */
48cb2d85 1120
95a42b64
TT
1121static void
1122validate_commands_for_breakpoint (struct breakpoint *b,
1123 struct command_line *commands)
48cb2d85 1124{
d77f58be 1125 if (is_tracepoint (b))
a7bdde9e 1126 {
c9a6ce02 1127 struct tracepoint *t = (struct tracepoint *) b;
a7bdde9e
VP
1128 struct command_line *c;
1129 struct command_line *while_stepping = 0;
c9a6ce02
PA
1130
1131 /* Reset the while-stepping step count. The previous commands
1132 might have included a while-stepping action, while the new
1133 ones might not. */
1134 t->step_count = 0;
1135
1136 /* We need to verify that each top-level element of commands is
1137 valid for tracepoints, that there's at most one
1138 while-stepping element, and that the while-stepping's body
1139 has valid tracing commands excluding nested while-stepping.
1140 We also need to validate the tracepoint action line in the
1141 context of the tracepoint --- validate_actionline actually
1142 has side effects, like setting the tracepoint's
1143 while-stepping STEP_COUNT, in addition to checking if the
1144 collect/teval actions parse and make sense in the
1145 tracepoint's context. */
a7bdde9e
VP
1146 for (c = commands; c; c = c->next)
1147 {
a7bdde9e
VP
1148 if (c->control_type == while_stepping_control)
1149 {
1150 if (b->type == bp_fast_tracepoint)
3e43a32a
MS
1151 error (_("The 'while-stepping' command "
1152 "cannot be used for fast tracepoint"));
0fb4aa4b 1153 else if (b->type == bp_static_tracepoint)
3e43a32a
MS
1154 error (_("The 'while-stepping' command "
1155 "cannot be used for static tracepoint"));
a7bdde9e
VP
1156
1157 if (while_stepping)
3e43a32a
MS
1158 error (_("The 'while-stepping' command "
1159 "can be used only once"));
a7bdde9e
VP
1160 else
1161 while_stepping = c;
1162 }
c9a6ce02
PA
1163
1164 validate_actionline (c->line, b);
a7bdde9e
VP
1165 }
1166 if (while_stepping)
1167 {
1168 struct command_line *c2;
1169
1170 gdb_assert (while_stepping->body_count == 1);
1171 c2 = while_stepping->body_list[0];
1172 for (; c2; c2 = c2->next)
1173 {
a7bdde9e
VP
1174 if (c2->control_type == while_stepping_control)
1175 error (_("The 'while-stepping' command cannot be nested"));
1176 }
1177 }
1178 }
1179 else
1180 {
1181 check_no_tracepoint_commands (commands);
1182 }
95a42b64
TT
1183}
1184
0fb4aa4b
PA
1185/* Return a vector of all the static tracepoints set at ADDR. The
1186 caller is responsible for releasing the vector. */
1187
1188VEC(breakpoint_p) *
1189static_tracepoints_here (CORE_ADDR addr)
1190{
1191 struct breakpoint *b;
1192 VEC(breakpoint_p) *found = 0;
1193 struct bp_location *loc;
1194
1195 ALL_BREAKPOINTS (b)
1196 if (b->type == bp_static_tracepoint)
1197 {
1198 for (loc = b->loc; loc; loc = loc->next)
1199 if (loc->address == addr)
1200 VEC_safe_push(breakpoint_p, found, b);
1201 }
1202
1203 return found;
1204}
1205
95a42b64 1206/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
4a64f543 1207 validate that only allowed commands are included. */
95a42b64
TT
1208
1209void
4a64f543
MS
1210breakpoint_set_commands (struct breakpoint *b,
1211 struct command_line *commands)
95a42b64
TT
1212{
1213 validate_commands_for_breakpoint (b, commands);
a7bdde9e 1214
9add0f1b
TT
1215 decref_counted_command_line (&b->commands);
1216 b->commands = alloc_counted_command_line (commands);
8d3788bd 1217 observer_notify_breakpoint_modified (b);
48cb2d85
VP
1218}
1219
45a43567
TT
1220/* Set the internal `silent' flag on the breakpoint. Note that this
1221 is not the same as the "silent" that may appear in the breakpoint's
1222 commands. */
1223
1224void
1225breakpoint_set_silent (struct breakpoint *b, int silent)
1226{
1227 int old_silent = b->silent;
1228
1229 b->silent = silent;
1230 if (old_silent != silent)
8d3788bd 1231 observer_notify_breakpoint_modified (b);
45a43567
TT
1232}
1233
1234/* Set the thread for this breakpoint. If THREAD is -1, make the
1235 breakpoint work for any thread. */
1236
1237void
1238breakpoint_set_thread (struct breakpoint *b, int thread)
1239{
1240 int old_thread = b->thread;
1241
1242 b->thread = thread;
1243 if (old_thread != thread)
8d3788bd 1244 observer_notify_breakpoint_modified (b);
45a43567
TT
1245}
1246
1247/* Set the task for this breakpoint. If TASK is 0, make the
1248 breakpoint work for any task. */
1249
1250void
1251breakpoint_set_task (struct breakpoint *b, int task)
1252{
1253 int old_task = b->task;
1254
1255 b->task = task;
1256 if (old_task != task)
8d3788bd 1257 observer_notify_breakpoint_modified (b);
45a43567
TT
1258}
1259
95a42b64
TT
1260void
1261check_tracepoint_command (char *line, void *closure)
a7bdde9e
VP
1262{
1263 struct breakpoint *b = closure;
cc59ec59 1264
6f937416 1265 validate_actionline (line, b);
a7bdde9e
VP
1266}
1267
95a42b64
TT
1268/* A structure used to pass information through
1269 map_breakpoint_numbers. */
1270
1271struct commands_info
1272{
1273 /* True if the command was typed at a tty. */
1274 int from_tty;
86b17b60
PA
1275
1276 /* The breakpoint range spec. */
1277 char *arg;
1278
95a42b64
TT
1279 /* Non-NULL if the body of the commands are being read from this
1280 already-parsed command. */
1281 struct command_line *control;
86b17b60 1282
95a42b64
TT
1283 /* The command lines read from the user, or NULL if they have not
1284 yet been read. */
1285 struct counted_command_line *cmd;
1286};
1287
1288/* A callback for map_breakpoint_numbers that sets the commands for
1289 commands_command. */
1290
c906108c 1291static void
95a42b64 1292do_map_commands_command (struct breakpoint *b, void *data)
c906108c 1293{
95a42b64 1294 struct commands_info *info = data;
c906108c 1295
95a42b64
TT
1296 if (info->cmd == NULL)
1297 {
1298 struct command_line *l;
5c44784c 1299
95a42b64
TT
1300 if (info->control != NULL)
1301 l = copy_command_lines (info->control->body_list[0]);
1302 else
86b17b60
PA
1303 {
1304 struct cleanup *old_chain;
1305 char *str;
c5aa993b 1306
3e43a32a
MS
1307 str = xstrprintf (_("Type commands for breakpoint(s) "
1308 "%s, one per line."),
86b17b60
PA
1309 info->arg);
1310
1311 old_chain = make_cleanup (xfree, str);
1312
1313 l = read_command_lines (str,
1314 info->from_tty, 1,
d77f58be 1315 (is_tracepoint (b)
86b17b60
PA
1316 ? check_tracepoint_command : 0),
1317 b);
1318
1319 do_cleanups (old_chain);
1320 }
a7bdde9e 1321
95a42b64
TT
1322 info->cmd = alloc_counted_command_line (l);
1323 }
1324
1325 /* If a breakpoint was on the list more than once, we don't need to
1326 do anything. */
1327 if (b->commands != info->cmd)
1328 {
1329 validate_commands_for_breakpoint (b, info->cmd->commands);
1330 incref_counted_command_line (info->cmd);
1331 decref_counted_command_line (&b->commands);
1332 b->commands = info->cmd;
8d3788bd 1333 observer_notify_breakpoint_modified (b);
c5aa993b 1334 }
95a42b64
TT
1335}
1336
1337static void
4a64f543
MS
1338commands_command_1 (char *arg, int from_tty,
1339 struct command_line *control)
95a42b64
TT
1340{
1341 struct cleanup *cleanups;
1342 struct commands_info info;
1343
1344 info.from_tty = from_tty;
1345 info.control = control;
1346 info.cmd = NULL;
1347 /* If we read command lines from the user, then `info' will hold an
1348 extra reference to the commands that we must clean up. */
1349 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
1350
1351 if (arg == NULL || !*arg)
1352 {
86b17b60 1353 if (breakpoint_count - prev_breakpoint_count > 1)
4a64f543
MS
1354 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1,
1355 breakpoint_count);
95a42b64
TT
1356 else if (breakpoint_count > 0)
1357 arg = xstrprintf ("%d", breakpoint_count);
86b17b60
PA
1358 else
1359 {
1360 /* So that we don't try to free the incoming non-NULL
1361 argument in the cleanup below. Mapping breakpoint
1362 numbers will fail in this case. */
1363 arg = NULL;
1364 }
95a42b64 1365 }
9766ced4
SS
1366 else
1367 /* The command loop has some static state, so we need to preserve
1368 our argument. */
1369 arg = xstrdup (arg);
86b17b60
PA
1370
1371 if (arg != NULL)
1372 make_cleanup (xfree, arg);
1373
1374 info.arg = arg;
95a42b64
TT
1375
1376 map_breakpoint_numbers (arg, do_map_commands_command, &info);
1377
1378 if (info.cmd == NULL)
1379 error (_("No breakpoints specified."));
1380
1381 do_cleanups (cleanups);
1382}
1383
1384static void
1385commands_command (char *arg, int from_tty)
1386{
1387 commands_command_1 (arg, from_tty, NULL);
c906108c 1388}
40c03ae8
EZ
1389
1390/* Like commands_command, but instead of reading the commands from
1391 input stream, takes them from an already parsed command structure.
1392
1393 This is used by cli-script.c to DTRT with breakpoint commands
1394 that are part of if and while bodies. */
1395enum command_control_type
1396commands_from_control_command (char *arg, struct command_line *cmd)
1397{
95a42b64
TT
1398 commands_command_1 (arg, 0, cmd);
1399 return simple_control;
40c03ae8 1400}
876fa593
JK
1401
1402/* Return non-zero if BL->TARGET_INFO contains valid information. */
1403
1404static int
1405bp_location_has_shadow (struct bp_location *bl)
1406{
1407 if (bl->loc_type != bp_loc_software_breakpoint)
1408 return 0;
1409 if (!bl->inserted)
1410 return 0;
1411 if (bl->target_info.shadow_len == 0)
e5dd4106 1412 /* BL isn't valid, or doesn't shadow memory. */
876fa593
JK
1413 return 0;
1414 return 1;
1415}
1416
8defab1a 1417/* Update BUF, which is LEN bytes read from the target address MEMADDR,
876fa593
JK
1418 by replacing any memory breakpoints with their shadowed contents.
1419
35c63cd8
JB
1420 If READBUF is not NULL, this buffer must not overlap with any of
1421 the breakpoint location's shadow_contents buffers. Otherwise,
1422 a failed assertion internal error will be raised.
1423
876fa593 1424 The range of shadowed area by each bp_location is:
35df4500
TJB
1425 bl->address - bp_location_placed_address_before_address_max
1426 up to bl->address + bp_location_shadow_len_after_address_max
876fa593
JK
1427 The range we were requested to resolve shadows for is:
1428 memaddr ... memaddr + len
1429 Thus the safe cutoff boundaries for performance optimization are
35df4500
TJB
1430 memaddr + len <= (bl->address
1431 - bp_location_placed_address_before_address_max)
876fa593 1432 and:
35df4500 1433 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
c906108c 1434
8defab1a 1435void
f0ba3972
PA
1436breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1437 const gdb_byte *writebuf_org,
1438 ULONGEST memaddr, LONGEST len)
c906108c 1439{
4a64f543
MS
1440 /* Left boundary, right boundary and median element of our binary
1441 search. */
876fa593
JK
1442 unsigned bc_l, bc_r, bc;
1443
4a64f543
MS
1444 /* Find BC_L which is a leftmost element which may affect BUF
1445 content. It is safe to report lower value but a failure to
1446 report higher one. */
876fa593
JK
1447
1448 bc_l = 0;
1449 bc_r = bp_location_count;
1450 while (bc_l + 1 < bc_r)
1451 {
35df4500 1452 struct bp_location *bl;
876fa593
JK
1453
1454 bc = (bc_l + bc_r) / 2;
35df4500 1455 bl = bp_location[bc];
876fa593 1456
4a64f543
MS
1457 /* Check first BL->ADDRESS will not overflow due to the added
1458 constant. Then advance the left boundary only if we are sure
1459 the BC element can in no way affect the BUF content (MEMADDR
1460 to MEMADDR + LEN range).
876fa593 1461
4a64f543
MS
1462 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1463 offset so that we cannot miss a breakpoint with its shadow
1464 range tail still reaching MEMADDR. */
c5aa993b 1465
35df4500
TJB
1466 if ((bl->address + bp_location_shadow_len_after_address_max
1467 >= bl->address)
1468 && (bl->address + bp_location_shadow_len_after_address_max
1469 <= memaddr))
876fa593
JK
1470 bc_l = bc;
1471 else
1472 bc_r = bc;
1473 }
1474
128070bb
PA
1475 /* Due to the binary search above, we need to make sure we pick the
1476 first location that's at BC_L's address. E.g., if there are
1477 multiple locations at the same address, BC_L may end up pointing
1478 at a duplicate location, and miss the "master"/"inserted"
1479 location. Say, given locations L1, L2 and L3 at addresses A and
1480 B:
1481
1482 L1@A, L2@A, L3@B, ...
1483
1484 BC_L could end up pointing at location L2, while the "master"
1485 location could be L1. Since the `loc->inserted' flag is only set
1486 on "master" locations, we'd forget to restore the shadow of L1
1487 and L2. */
1488 while (bc_l > 0
1489 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1490 bc_l--;
1491
876fa593
JK
1492 /* Now do full processing of the found relevant range of elements. */
1493
1494 for (bc = bc_l; bc < bp_location_count; bc++)
c5aa993b 1495 {
35df4500 1496 struct bp_location *bl = bp_location[bc];
876fa593
JK
1497 CORE_ADDR bp_addr = 0;
1498 int bp_size = 0;
1499 int bptoffset = 0;
1500
35df4500
TJB
1501 /* bp_location array has BL->OWNER always non-NULL. */
1502 if (bl->owner->type == bp_none)
8a3fe4f8 1503 warning (_("reading through apparently deleted breakpoint #%d?"),
35df4500 1504 bl->owner->number);
ffce0d52 1505
e5dd4106 1506 /* Performance optimization: any further element can no longer affect BUF
876fa593
JK
1507 content. */
1508
35df4500
TJB
1509 if (bl->address >= bp_location_placed_address_before_address_max
1510 && memaddr + len <= (bl->address
1511 - bp_location_placed_address_before_address_max))
876fa593
JK
1512 break;
1513
35df4500 1514 if (!bp_location_has_shadow (bl))
c5aa993b 1515 continue;
35df4500 1516 if (!breakpoint_address_match (bl->target_info.placed_address_space, 0,
6c95b8df
PA
1517 current_program_space->aspace, 0))
1518 continue;
1519
c5aa993b
JM
1520 /* Addresses and length of the part of the breakpoint that
1521 we need to copy. */
35df4500
TJB
1522 bp_addr = bl->target_info.placed_address;
1523 bp_size = bl->target_info.shadow_len;
8defab1a 1524
c5aa993b
JM
1525 if (bp_addr + bp_size <= memaddr)
1526 /* The breakpoint is entirely before the chunk of memory we
1527 are reading. */
1528 continue;
8defab1a 1529
c5aa993b
JM
1530 if (bp_addr >= memaddr + len)
1531 /* The breakpoint is entirely after the chunk of memory we are
4a64f543 1532 reading. */
c5aa993b 1533 continue;
c5aa993b 1534
8defab1a
DJ
1535 /* Offset within shadow_contents. */
1536 if (bp_addr < memaddr)
1537 {
1538 /* Only copy the second part of the breakpoint. */
1539 bp_size -= memaddr - bp_addr;
1540 bptoffset = memaddr - bp_addr;
1541 bp_addr = memaddr;
1542 }
c5aa993b 1543
8defab1a
DJ
1544 if (bp_addr + bp_size > memaddr + len)
1545 {
1546 /* Only copy the first part of the breakpoint. */
1547 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1548 }
c5aa993b 1549
f0ba3972
PA
1550 if (readbuf != NULL)
1551 {
35c63cd8
JB
1552 /* Verify that the readbuf buffer does not overlap with
1553 the shadow_contents buffer. */
1554 gdb_assert (bl->target_info.shadow_contents >= readbuf + len
1555 || readbuf >= (bl->target_info.shadow_contents
1556 + bl->target_info.shadow_len));
1557
f0ba3972
PA
1558 /* Update the read buffer with this inserted breakpoint's
1559 shadow. */
1560 memcpy (readbuf + bp_addr - memaddr,
1561 bl->target_info.shadow_contents + bptoffset, bp_size);
1562 }
1563 else
1564 {
1565 struct gdbarch *gdbarch = bl->gdbarch;
1566 const unsigned char *bp;
1567 CORE_ADDR placed_address = bl->target_info.placed_address;
20ced3e4 1568 int placed_size = bl->target_info.placed_size;
f0ba3972
PA
1569
1570 /* Update the shadow with what we want to write to memory. */
1571 memcpy (bl->target_info.shadow_contents + bptoffset,
1572 writebuf_org + bp_addr - memaddr, bp_size);
1573
1574 /* Determine appropriate breakpoint contents and size for this
1575 address. */
1576 bp = gdbarch_breakpoint_from_pc (gdbarch, &placed_address, &placed_size);
1577
1578 /* Update the final write buffer with this inserted
1579 breakpoint's INSN. */
1580 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1581 }
c5aa993b 1582 }
c906108c 1583}
c906108c 1584\f
c5aa993b 1585
b775012e
LM
1586/* Return true if BPT is either a software breakpoint or a hardware
1587 breakpoint. */
1588
1589int
1590is_breakpoint (const struct breakpoint *bpt)
1591{
1592 return (bpt->type == bp_breakpoint
e7e0cddf
SS
1593 || bpt->type == bp_hardware_breakpoint
1594 || bpt->type == bp_dprintf);
b775012e
LM
1595}
1596
60e1c644
PA
1597/* Return true if BPT is of any hardware watchpoint kind. */
1598
a5606eee 1599static int
d77f58be 1600is_hardware_watchpoint (const struct breakpoint *bpt)
a5606eee
VP
1601{
1602 return (bpt->type == bp_hardware_watchpoint
1603 || bpt->type == bp_read_watchpoint
1604 || bpt->type == bp_access_watchpoint);
1605}
7270d8f2 1606
60e1c644
PA
1607/* Return true if BPT is of any watchpoint kind, hardware or
1608 software. */
1609
3a5c3e22 1610int
d77f58be 1611is_watchpoint (const struct breakpoint *bpt)
60e1c644
PA
1612{
1613 return (is_hardware_watchpoint (bpt)
1614 || bpt->type == bp_watchpoint);
1615}
1616
3a5c3e22
PA
1617/* Returns true if the current thread and its running state are safe
1618 to evaluate or update watchpoint B. Watchpoints on local
1619 expressions need to be evaluated in the context of the thread that
1620 was current when the watchpoint was created, and, that thread needs
1621 to be stopped to be able to select the correct frame context.
1622 Watchpoints on global expressions can be evaluated on any thread,
1623 and in any state. It is presently left to the target allowing
1624 memory accesses when threads are running. */
f6bc2008
PA
1625
1626static int
3a5c3e22 1627watchpoint_in_thread_scope (struct watchpoint *b)
f6bc2008 1628{
d0d8b0c6
JK
1629 return (b->base.pspace == current_program_space
1630 && (ptid_equal (b->watchpoint_thread, null_ptid)
1631 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1632 && !is_executing (inferior_ptid))));
f6bc2008
PA
1633}
1634
d0fb5eae
JK
1635/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1636 associated bp_watchpoint_scope breakpoint. */
1637
1638static void
3a5c3e22 1639watchpoint_del_at_next_stop (struct watchpoint *w)
d0fb5eae 1640{
3a5c3e22 1641 struct breakpoint *b = &w->base;
d0fb5eae
JK
1642
1643 if (b->related_breakpoint != b)
1644 {
1645 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1646 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1647 b->related_breakpoint->disposition = disp_del_at_next_stop;
1648 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1649 b->related_breakpoint = b;
1650 }
1651 b->disposition = disp_del_at_next_stop;
1652}
1653
567e1b4e
JB
1654/* Assuming that B is a watchpoint:
1655 - Reparse watchpoint expression, if REPARSE is non-zero
a5606eee 1656 - Evaluate expression and store the result in B->val
567e1b4e
JB
1657 - Evaluate the condition if there is one, and store the result
1658 in b->loc->cond.
a5606eee
VP
1659 - Update the list of values that must be watched in B->loc.
1660
4a64f543
MS
1661 If the watchpoint disposition is disp_del_at_next_stop, then do
1662 nothing. If this is local watchpoint that is out of scope, delete
1663 it.
1664
1665 Even with `set breakpoint always-inserted on' the watchpoints are
1666 removed + inserted on each stop here. Normal breakpoints must
1667 never be removed because they might be missed by a running thread
1668 when debugging in non-stop mode. On the other hand, hardware
1669 watchpoints (is_hardware_watchpoint; processed here) are specific
1670 to each LWP since they are stored in each LWP's hardware debug
1671 registers. Therefore, such LWP must be stopped first in order to
1672 be able to modify its hardware watchpoints.
1673
1674 Hardware watchpoints must be reset exactly once after being
1675 presented to the user. It cannot be done sooner, because it would
1676 reset the data used to present the watchpoint hit to the user. And
1677 it must not be done later because it could display the same single
1678 watchpoint hit during multiple GDB stops. Note that the latter is
1679 relevant only to the hardware watchpoint types bp_read_watchpoint
1680 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1681 not user-visible - its hit is suppressed if the memory content has
1682 not changed.
1683
1684 The following constraints influence the location where we can reset
1685 hardware watchpoints:
1686
1687 * target_stopped_by_watchpoint and target_stopped_data_address are
1688 called several times when GDB stops.
1689
1690 [linux]
1691 * Multiple hardware watchpoints can be hit at the same time,
1692 causing GDB to stop. GDB only presents one hardware watchpoint
1693 hit at a time as the reason for stopping, and all the other hits
1694 are presented later, one after the other, each time the user
1695 requests the execution to be resumed. Execution is not resumed
1696 for the threads still having pending hit event stored in
1697 LWP_INFO->STATUS. While the watchpoint is already removed from
1698 the inferior on the first stop the thread hit event is kept being
1699 reported from its cached value by linux_nat_stopped_data_address
1700 until the real thread resume happens after the watchpoint gets
1701 presented and thus its LWP_INFO->STATUS gets reset.
1702
1703 Therefore the hardware watchpoint hit can get safely reset on the
1704 watchpoint removal from inferior. */
a79d3c27 1705
b40ce68a 1706static void
3a5c3e22 1707update_watchpoint (struct watchpoint *b, int reparse)
7270d8f2 1708{
a5606eee 1709 int within_current_scope;
a5606eee 1710 struct frame_id saved_frame_id;
66076460 1711 int frame_saved;
a5606eee 1712
f6bc2008
PA
1713 /* If this is a local watchpoint, we only want to check if the
1714 watchpoint frame is in scope if the current thread is the thread
1715 that was used to create the watchpoint. */
1716 if (!watchpoint_in_thread_scope (b))
1717 return;
1718
3a5c3e22 1719 if (b->base.disposition == disp_del_at_next_stop)
a5606eee
VP
1720 return;
1721
66076460 1722 frame_saved = 0;
a5606eee
VP
1723
1724 /* Determine if the watchpoint is within scope. */
1725 if (b->exp_valid_block == NULL)
1726 within_current_scope = 1;
1727 else
1728 {
b5db5dfc
UW
1729 struct frame_info *fi = get_current_frame ();
1730 struct gdbarch *frame_arch = get_frame_arch (fi);
1731 CORE_ADDR frame_pc = get_frame_pc (fi);
1732
1733 /* If we're in a function epilogue, unwinding may not work
1734 properly, so do not attempt to recreate locations at this
1735 point. See similar comments in watchpoint_check. */
1736 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
1737 return;
66076460
DJ
1738
1739 /* Save the current frame's ID so we can restore it after
1740 evaluating the watchpoint expression on its own frame. */
1741 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1742 took a frame parameter, so that we didn't have to change the
1743 selected frame. */
1744 frame_saved = 1;
1745 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1746
a5606eee
VP
1747 fi = frame_find_by_id (b->watchpoint_frame);
1748 within_current_scope = (fi != NULL);
1749 if (within_current_scope)
1750 select_frame (fi);
1751 }
1752
b5db5dfc
UW
1753 /* We don't free locations. They are stored in the bp_location array
1754 and update_global_location_list will eventually delete them and
1755 remove breakpoints if needed. */
3a5c3e22 1756 b->base.loc = NULL;
b5db5dfc 1757
a5606eee
VP
1758 if (within_current_scope && reparse)
1759 {
bbc13ae3 1760 const char *s;
d63d0675 1761
a5606eee
VP
1762 if (b->exp)
1763 {
1764 xfree (b->exp);
1765 b->exp = NULL;
1766 }
d63d0675 1767 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1bb9788d 1768 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
a5606eee
VP
1769 /* If the meaning of expression itself changed, the old value is
1770 no longer relevant. We don't want to report a watchpoint hit
1771 to the user when the old value and the new value may actually
1772 be completely different objects. */
1773 value_free (b->val);
fa4727a6
DJ
1774 b->val = NULL;
1775 b->val_valid = 0;
60e1c644
PA
1776
1777 /* Note that unlike with breakpoints, the watchpoint's condition
1778 expression is stored in the breakpoint object, not in the
1779 locations (re)created below. */
3a5c3e22 1780 if (b->base.cond_string != NULL)
60e1c644
PA
1781 {
1782 if (b->cond_exp != NULL)
1783 {
1784 xfree (b->cond_exp);
1785 b->cond_exp = NULL;
1786 }
1787
3a5c3e22 1788 s = b->base.cond_string;
1bb9788d 1789 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
60e1c644 1790 }
a5606eee 1791 }
a5606eee
VP
1792
1793 /* If we failed to parse the expression, for example because
1794 it refers to a global variable in a not-yet-loaded shared library,
1795 don't try to insert watchpoint. We don't automatically delete
1796 such watchpoint, though, since failure to parse expression
1797 is different from out-of-scope watchpoint. */
e8369a73 1798 if (!target_has_execution)
2d134ed3
PA
1799 {
1800 /* Without execution, memory can't change. No use to try and
1801 set watchpoint locations. The watchpoint will be reset when
1802 the target gains execution, through breakpoint_re_set. */
e8369a73
AB
1803 if (!can_use_hw_watchpoints)
1804 {
1805 if (b->base.ops->works_in_software_mode (&b->base))
1806 b->base.type = bp_watchpoint;
1807 else
638aa5a1
AB
1808 error (_("Can't set read/access watchpoint when "
1809 "hardware watchpoints are disabled."));
e8369a73 1810 }
2d134ed3
PA
1811 }
1812 else if (within_current_scope && b->exp)
a5606eee 1813 {
0cf6dd15 1814 int pc = 0;
fa4727a6 1815 struct value *val_chain, *v, *result, *next;
2d134ed3 1816 struct program_space *frame_pspace;
a5606eee 1817
3a1115a0 1818 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain, 0);
a5606eee 1819
a5606eee
VP
1820 /* Avoid setting b->val if it's already set. The meaning of
1821 b->val is 'the last value' user saw, and we should update
1822 it only if we reported that last value to user. As it
9c06b0b4
TJB
1823 happens, the code that reports it updates b->val directly.
1824 We don't keep track of the memory value for masked
1825 watchpoints. */
3a5c3e22 1826 if (!b->val_valid && !is_masked_watchpoint (&b->base))
fa4727a6
DJ
1827 {
1828 b->val = v;
1829 b->val_valid = 1;
1830 }
a5606eee 1831
2d134ed3
PA
1832 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1833
a5606eee 1834 /* Look at each value on the value chain. */
9fa40276 1835 for (v = val_chain; v; v = value_next (v))
a5606eee
VP
1836 {
1837 /* If it's a memory location, and GDB actually needed
1838 its contents to evaluate the expression, then we
fa4727a6
DJ
1839 must watch it. If the first value returned is
1840 still lazy, that means an error occurred reading it;
1841 watch it anyway in case it becomes readable. */
a5606eee 1842 if (VALUE_LVAL (v) == lval_memory
fa4727a6 1843 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
1844 {
1845 struct type *vtype = check_typedef (value_type (v));
7270d8f2 1846
a5606eee
VP
1847 /* We only watch structs and arrays if user asked
1848 for it explicitly, never if they just happen to
1849 appear in the middle of some value chain. */
fa4727a6 1850 if (v == result
a5606eee
VP
1851 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1852 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1853 {
1854 CORE_ADDR addr;
744a8059 1855 int type;
a5606eee
VP
1856 struct bp_location *loc, **tmp;
1857
42ae5230 1858 addr = value_address (v);
a5606eee 1859 type = hw_write;
3a5c3e22 1860 if (b->base.type == bp_read_watchpoint)
a5606eee 1861 type = hw_read;
3a5c3e22 1862 else if (b->base.type == bp_access_watchpoint)
a5606eee 1863 type = hw_access;
3a5c3e22
PA
1864
1865 loc = allocate_bp_location (&b->base);
1866 for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next))
a5606eee
VP
1867 ;
1868 *tmp = loc;
a6d9a66e 1869 loc->gdbarch = get_type_arch (value_type (v));
6c95b8df
PA
1870
1871 loc->pspace = frame_pspace;
a5606eee 1872 loc->address = addr;
744a8059 1873 loc->length = TYPE_LENGTH (value_type (v));
a5606eee
VP
1874 loc->watchpoint_type = type;
1875 }
1876 }
9fa40276
TJB
1877 }
1878
1879 /* Change the type of breakpoint between hardware assisted or
1880 an ordinary watchpoint depending on the hardware support
1881 and free hardware slots. REPARSE is set when the inferior
1882 is started. */
a9634178 1883 if (reparse)
9fa40276 1884 {
e09342b5 1885 int reg_cnt;
9fa40276
TJB
1886 enum bp_loc_type loc_type;
1887 struct bp_location *bl;
a5606eee 1888
a9634178 1889 reg_cnt = can_use_hardware_watchpoint (val_chain);
e09342b5
TJB
1890
1891 if (reg_cnt)
9fa40276
TJB
1892 {
1893 int i, target_resources_ok, other_type_used;
a1398e0c 1894 enum bptype type;
9fa40276 1895
a9634178
TJB
1896 /* Use an exact watchpoint when there's only one memory region to be
1897 watched, and only one debug register is needed to watch it. */
1898 b->exact = target_exact_watchpoints && reg_cnt == 1;
1899
9fa40276 1900 /* We need to determine how many resources are already
e09342b5
TJB
1901 used for all other hardware watchpoints plus this one
1902 to see if we still have enough resources to also fit
a1398e0c
PA
1903 this watchpoint in as well. */
1904
1905 /* If this is a software watchpoint, we try to turn it
1906 to a hardware one -- count resources as if B was of
1907 hardware watchpoint type. */
1908 type = b->base.type;
1909 if (type == bp_watchpoint)
1910 type = bp_hardware_watchpoint;
1911
1912 /* This watchpoint may or may not have been placed on
1913 the list yet at this point (it won't be in the list
1914 if we're trying to create it for the first time,
1915 through watch_command), so always account for it
1916 manually. */
1917
1918 /* Count resources used by all watchpoints except B. */
1919 i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used);
1920
1921 /* Add in the resources needed for B. */
1922 i += hw_watchpoint_use_count (&b->base);
1923
1924 target_resources_ok
1925 = target_can_use_hardware_watchpoint (type, i, other_type_used);
e09342b5 1926 if (target_resources_ok <= 0)
a9634178 1927 {
3a5c3e22 1928 int sw_mode = b->base.ops->works_in_software_mode (&b->base);
9c06b0b4
TJB
1929
1930 if (target_resources_ok == 0 && !sw_mode)
a9634178
TJB
1931 error (_("Target does not support this type of "
1932 "hardware watchpoint."));
9c06b0b4
TJB
1933 else if (target_resources_ok < 0 && !sw_mode)
1934 error (_("There are not enough available hardware "
1935 "resources for this watchpoint."));
a1398e0c
PA
1936
1937 /* Downgrade to software watchpoint. */
1938 b->base.type = bp_watchpoint;
1939 }
1940 else
1941 {
1942 /* If this was a software watchpoint, we've just
1943 found we have enough resources to turn it to a
1944 hardware watchpoint. Otherwise, this is a
1945 nop. */
1946 b->base.type = type;
a9634178 1947 }
9fa40276 1948 }
3a5c3e22 1949 else if (!b->base.ops->works_in_software_mode (&b->base))
638aa5a1
AB
1950 {
1951 if (!can_use_hw_watchpoints)
1952 error (_("Can't set read/access watchpoint when "
1953 "hardware watchpoints are disabled."));
1954 else
1955 error (_("Expression cannot be implemented with "
1956 "read/access watchpoint."));
1957 }
9fa40276 1958 else
3a5c3e22 1959 b->base.type = bp_watchpoint;
9fa40276 1960
3a5c3e22 1961 loc_type = (b->base.type == bp_watchpoint? bp_loc_other
9fa40276 1962 : bp_loc_hardware_watchpoint);
3a5c3e22 1963 for (bl = b->base.loc; bl; bl = bl->next)
9fa40276
TJB
1964 bl->loc_type = loc_type;
1965 }
1966
1967 for (v = val_chain; v; v = next)
1968 {
a5606eee
VP
1969 next = value_next (v);
1970 if (v != b->val)
1971 value_free (v);
1972 }
1973
c7437ca6
PA
1974 /* If a software watchpoint is not watching any memory, then the
1975 above left it without any location set up. But,
1976 bpstat_stop_status requires a location to be able to report
1977 stops, so make sure there's at least a dummy one. */
3a5c3e22 1978 if (b->base.type == bp_watchpoint && b->base.loc == NULL)
c7437ca6 1979 {
3a5c3e22
PA
1980 struct breakpoint *base = &b->base;
1981 base->loc = allocate_bp_location (base);
1982 base->loc->pspace = frame_pspace;
1983 base->loc->address = -1;
1984 base->loc->length = -1;
1985 base->loc->watchpoint_type = -1;
c7437ca6 1986 }
a5606eee
VP
1987 }
1988 else if (!within_current_scope)
7270d8f2 1989 {
ac74f770
MS
1990 printf_filtered (_("\
1991Watchpoint %d deleted because the program has left the block\n\
1992in which its expression is valid.\n"),
3a5c3e22 1993 b->base.number);
d0fb5eae 1994 watchpoint_del_at_next_stop (b);
7270d8f2 1995 }
a5606eee
VP
1996
1997 /* Restore the selected frame. */
66076460
DJ
1998 if (frame_saved)
1999 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
2000}
2001
a5606eee 2002
74960c60 2003/* Returns 1 iff breakpoint location should be
1e4d1764
YQ
2004 inserted in the inferior. We don't differentiate the type of BL's owner
2005 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2006 breakpoint_ops is not defined, because in insert_bp_location,
2007 tracepoint's insert_location will not be called. */
74960c60 2008static int
35df4500 2009should_be_inserted (struct bp_location *bl)
74960c60 2010{
35df4500 2011 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
74960c60
VP
2012 return 0;
2013
35df4500 2014 if (bl->owner->disposition == disp_del_at_next_stop)
74960c60
VP
2015 return 0;
2016
35df4500 2017 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
74960c60
VP
2018 return 0;
2019
f8eba3c6
TT
2020 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2021 return 0;
2022
56710373
PA
2023 /* This is set for example, when we're attached to the parent of a
2024 vfork, and have detached from the child. The child is running
2025 free, and we expect it to do an exec or exit, at which point the
2026 OS makes the parent schedulable again (and the target reports
2027 that the vfork is done). Until the child is done with the shared
2028 memory region, do not insert breakpoints in the parent, otherwise
2029 the child could still trip on the parent's breakpoints. Since
2030 the parent is blocked anyway, it won't miss any breakpoint. */
35df4500 2031 if (bl->pspace->breakpoints_not_allowed)
56710373
PA
2032 return 0;
2033
74960c60
VP
2034 return 1;
2035}
2036
934709f0
PW
2037/* Same as should_be_inserted but does the check assuming
2038 that the location is not duplicated. */
2039
2040static int
2041unduplicated_should_be_inserted (struct bp_location *bl)
2042{
2043 int result;
2044 const int save_duplicate = bl->duplicate;
2045
2046 bl->duplicate = 0;
2047 result = should_be_inserted (bl);
2048 bl->duplicate = save_duplicate;
2049 return result;
2050}
2051
b775012e
LM
2052/* Parses a conditional described by an expression COND into an
2053 agent expression bytecode suitable for evaluation
2054 by the bytecode interpreter. Return NULL if there was
2055 any error during parsing. */
2056
2057static struct agent_expr *
2058parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2059{
2060 struct agent_expr *aexpr = NULL;
b775012e
LM
2061 volatile struct gdb_exception ex;
2062
2063 if (!cond)
2064 return NULL;
2065
2066 /* We don't want to stop processing, so catch any errors
2067 that may show up. */
2068 TRY_CATCH (ex, RETURN_MASK_ERROR)
2069 {
2070 aexpr = gen_eval_for_expr (scope, cond);
2071 }
2072
2073 if (ex.reason < 0)
2074 {
2075 /* If we got here, it means the condition could not be parsed to a valid
2076 bytecode expression and thus can't be evaluated on the target's side.
2077 It's no use iterating through the conditions. */
2078 return NULL;
2079 }
2080
2081 /* We have a valid agent expression. */
2082 return aexpr;
2083}
2084
2085/* Based on location BL, create a list of breakpoint conditions to be
2086 passed on to the target. If we have duplicated locations with different
2087 conditions, we will add such conditions to the list. The idea is that the
2088 target will evaluate the list of conditions and will only notify GDB when
2089 one of them is true. */
2090
2091static void
2092build_target_condition_list (struct bp_location *bl)
2093{
2094 struct bp_location **locp = NULL, **loc2p;
2095 int null_condition_or_parse_error = 0;
2096 int modified = bl->needs_update;
2097 struct bp_location *loc;
2098
8b4f3082
PA
2099 /* Release conditions left over from a previous insert. */
2100 VEC_free (agent_expr_p, bl->target_info.conditions);
2101
b775012e
LM
2102 /* This is only meaningful if the target is
2103 evaluating conditions and if the user has
2104 opted for condition evaluation on the target's
2105 side. */
2106 if (gdb_evaluates_breakpoint_condition_p ()
2107 || !target_supports_evaluation_of_breakpoint_conditions ())
2108 return;
2109
2110 /* Do a first pass to check for locations with no assigned
2111 conditions or conditions that fail to parse to a valid agent expression
2112 bytecode. If any of these happen, then it's no use to send conditions
2113 to the target since this location will always trigger and generate a
2114 response back to GDB. */
2115 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2116 {
2117 loc = (*loc2p);
2118 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2119 {
2120 if (modified)
2121 {
2122 struct agent_expr *aexpr;
2123
2124 /* Re-parse the conditions since something changed. In that
2125 case we already freed the condition bytecodes (see
2126 force_breakpoint_reinsertion). We just
2127 need to parse the condition to bytecodes again. */
2128 aexpr = parse_cond_to_aexpr (bl->address, loc->cond);
2129 loc->cond_bytecode = aexpr;
2130
2131 /* Check if we managed to parse the conditional expression
2132 correctly. If not, we will not send this condition
2133 to the target. */
2134 if (aexpr)
2135 continue;
2136 }
2137
2138 /* If we have a NULL bytecode expression, it means something
2139 went wrong or we have a null condition expression. */
2140 if (!loc->cond_bytecode)
2141 {
2142 null_condition_or_parse_error = 1;
2143 break;
2144 }
2145 }
2146 }
2147
2148 /* If any of these happened, it means we will have to evaluate the conditions
2149 for the location's address on gdb's side. It is no use keeping bytecodes
2150 for all the other duplicate locations, thus we free all of them here.
2151
2152 This is so we have a finer control over which locations' conditions are
2153 being evaluated by GDB or the remote stub. */
2154 if (null_condition_or_parse_error)
2155 {
2156 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2157 {
2158 loc = (*loc2p);
2159 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2160 {
2161 /* Only go as far as the first NULL bytecode is
2162 located. */
2163 if (!loc->cond_bytecode)
2164 return;
2165
2166 free_agent_expr (loc->cond_bytecode);
2167 loc->cond_bytecode = NULL;
2168 }
2169 }
2170 }
2171
2172 /* No NULL conditions or failed bytecode generation. Build a condition list
2173 for this location's address. */
2174 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2175 {
2176 loc = (*loc2p);
2177 if (loc->cond
2178 && is_breakpoint (loc->owner)
2179 && loc->pspace->num == bl->pspace->num
2180 && loc->owner->enable_state == bp_enabled
2181 && loc->enabled)
2182 /* Add the condition to the vector. This will be used later to send the
2183 conditions to the target. */
2184 VEC_safe_push (agent_expr_p, bl->target_info.conditions,
2185 loc->cond_bytecode);
2186 }
2187
2188 return;
2189}
2190
d3ce09f5
SS
2191/* Parses a command described by string CMD into an agent expression
2192 bytecode suitable for evaluation by the bytecode interpreter.
2193 Return NULL if there was any error during parsing. */
2194
2195static struct agent_expr *
2196parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2197{
2198 struct cleanup *old_cleanups = 0;
2199 struct expression *expr, **argvec;
2200 struct agent_expr *aexpr = NULL;
d3ce09f5 2201 volatile struct gdb_exception ex;
bbc13ae3
KS
2202 const char *cmdrest;
2203 const char *format_start, *format_end;
d3ce09f5
SS
2204 struct format_piece *fpieces;
2205 int nargs;
2206 struct gdbarch *gdbarch = get_current_arch ();
2207
2208 if (!cmd)
2209 return NULL;
2210
2211 cmdrest = cmd;
2212
2213 if (*cmdrest == ',')
2214 ++cmdrest;
bbc13ae3 2215 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2216
2217 if (*cmdrest++ != '"')
2218 error (_("No format string following the location"));
2219
2220 format_start = cmdrest;
2221
2222 fpieces = parse_format_string (&cmdrest);
2223
2224 old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces);
2225
2226 format_end = cmdrest;
2227
2228 if (*cmdrest++ != '"')
2229 error (_("Bad format string, non-terminated '\"'."));
2230
bbc13ae3 2231 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2232
2233 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2234 error (_("Invalid argument syntax"));
2235
2236 if (*cmdrest == ',')
2237 cmdrest++;
bbc13ae3 2238 cmdrest = skip_spaces_const (cmdrest);
d3ce09f5
SS
2239
2240 /* For each argument, make an expression. */
2241
2242 argvec = (struct expression **) alloca (strlen (cmd)
2243 * sizeof (struct expression *));
2244
2245 nargs = 0;
2246 while (*cmdrest != '\0')
2247 {
bbc13ae3 2248 const char *cmd1;
d3ce09f5
SS
2249
2250 cmd1 = cmdrest;
2251 expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2252 argvec[nargs++] = expr;
2253 cmdrest = cmd1;
2254 if (*cmdrest == ',')
2255 ++cmdrest;
2256 }
2257
2258 /* We don't want to stop processing, so catch any errors
2259 that may show up. */
2260 TRY_CATCH (ex, RETURN_MASK_ERROR)
2261 {
2262 aexpr = gen_printf (scope, gdbarch, 0, 0,
2263 format_start, format_end - format_start,
2264 fpieces, nargs, argvec);
2265 }
2266
752eb8b4
TT
2267 do_cleanups (old_cleanups);
2268
d3ce09f5
SS
2269 if (ex.reason < 0)
2270 {
2271 /* If we got here, it means the command could not be parsed to a valid
2272 bytecode expression and thus can't be evaluated on the target's side.
2273 It's no use iterating through the other commands. */
2274 return NULL;
2275 }
2276
d3ce09f5
SS
2277 /* We have a valid agent expression, return it. */
2278 return aexpr;
2279}
2280
2281/* Based on location BL, create a list of breakpoint commands to be
2282 passed on to the target. If we have duplicated locations with
2283 different commands, we will add any such to the list. */
2284
2285static void
2286build_target_command_list (struct bp_location *bl)
2287{
2288 struct bp_location **locp = NULL, **loc2p;
2289 int null_command_or_parse_error = 0;
2290 int modified = bl->needs_update;
2291 struct bp_location *loc;
2292
8b4f3082
PA
2293 /* Release commands left over from a previous insert. */
2294 VEC_free (agent_expr_p, bl->target_info.tcommands);
2295
d3ce09f5
SS
2296 /* For now, limit to agent-style dprintf breakpoints. */
2297 if (bl->owner->type != bp_dprintf
2298 || strcmp (dprintf_style, dprintf_style_agent) != 0)
2299 return;
2300
2301 if (!target_can_run_breakpoint_commands ())
2302 return;
2303
2304 /* Do a first pass to check for locations with no assigned
2305 conditions or conditions that fail to parse to a valid agent expression
2306 bytecode. If any of these happen, then it's no use to send conditions
2307 to the target since this location will always trigger and generate a
2308 response back to GDB. */
2309 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2310 {
2311 loc = (*loc2p);
2312 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2313 {
2314 if (modified)
2315 {
2316 struct agent_expr *aexpr;
2317
2318 /* Re-parse the commands since something changed. In that
2319 case we already freed the command bytecodes (see
2320 force_breakpoint_reinsertion). We just
2321 need to parse the command to bytecodes again. */
2322 aexpr = parse_cmd_to_aexpr (bl->address,
2323 loc->owner->extra_string);
2324 loc->cmd_bytecode = aexpr;
2325
2326 if (!aexpr)
2327 continue;
2328 }
2329
2330 /* If we have a NULL bytecode expression, it means something
2331 went wrong or we have a null command expression. */
2332 if (!loc->cmd_bytecode)
2333 {
2334 null_command_or_parse_error = 1;
2335 break;
2336 }
2337 }
2338 }
2339
2340 /* If anything failed, then we're not doing target-side commands,
2341 and so clean up. */
2342 if (null_command_or_parse_error)
2343 {
2344 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2345 {
2346 loc = (*loc2p);
2347 if (is_breakpoint (loc->owner)
2348 && loc->pspace->num == bl->pspace->num)
2349 {
2350 /* Only go as far as the first NULL bytecode is
2351 located. */
40fb6c5e 2352 if (loc->cmd_bytecode == NULL)
d3ce09f5
SS
2353 return;
2354
40fb6c5e
HZ
2355 free_agent_expr (loc->cmd_bytecode);
2356 loc->cmd_bytecode = NULL;
d3ce09f5
SS
2357 }
2358 }
2359 }
2360
2361 /* No NULL commands or failed bytecode generation. Build a command list
2362 for this location's address. */
2363 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2364 {
2365 loc = (*loc2p);
2366 if (loc->owner->extra_string
2367 && is_breakpoint (loc->owner)
2368 && loc->pspace->num == bl->pspace->num
2369 && loc->owner->enable_state == bp_enabled
2370 && loc->enabled)
2371 /* Add the command to the vector. This will be used later
2372 to send the commands to the target. */
2373 VEC_safe_push (agent_expr_p, bl->target_info.tcommands,
2374 loc->cmd_bytecode);
2375 }
2376
2377 bl->target_info.persist = 0;
2378 /* Maybe flag this location as persistent. */
2379 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2380 bl->target_info.persist = 1;
2381}
2382
35df4500
TJB
2383/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2384 location. Any error messages are printed to TMP_ERROR_STREAM; and
3fbb6ffa 2385 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
c30eee59
TJB
2386 Returns 0 for success, 1 if the bp_location type is not supported or
2387 -1 for failure.
879bfdc2 2388
4a64f543
MS
2389 NOTE drow/2003-09-09: This routine could be broken down to an
2390 object-style method for each breakpoint or catchpoint type. */
26bb91f3 2391static int
35df4500 2392insert_bp_location (struct bp_location *bl,
26bb91f3 2393 struct ui_file *tmp_error_stream,
3fbb6ffa 2394 int *disabled_breaks,
dd61ec5c
MW
2395 int *hw_breakpoint_error,
2396 int *hw_bp_error_explained_already)
879bfdc2
DJ
2397{
2398 int val = 0;
b15e5c54 2399 const char *hw_bp_err_string = NULL;
dd61ec5c 2400 struct gdb_exception e;
879bfdc2 2401
b775012e 2402 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2403 return 0;
2404
35c63cd8
JB
2405 /* Note we don't initialize bl->target_info, as that wipes out
2406 the breakpoint location's shadow_contents if the breakpoint
2407 is still inserted at that location. This in turn breaks
2408 target_read_memory which depends on these buffers when
2409 a memory read is requested at the breakpoint location:
2410 Once the target_info has been wiped, we fail to see that
2411 we have a breakpoint inserted at that address and thus
2412 read the breakpoint instead of returning the data saved in
2413 the breakpoint location's shadow contents. */
35df4500
TJB
2414 bl->target_info.placed_address = bl->address;
2415 bl->target_info.placed_address_space = bl->pspace->aspace;
f1310107 2416 bl->target_info.length = bl->length;
8181d85f 2417
b775012e
LM
2418 /* When working with target-side conditions, we must pass all the conditions
2419 for the same breakpoint address down to the target since GDB will not
2420 insert those locations. With a list of breakpoint conditions, the target
2421 can decide when to stop and notify GDB. */
2422
2423 if (is_breakpoint (bl->owner))
2424 {
2425 build_target_condition_list (bl);
d3ce09f5
SS
2426 build_target_command_list (bl);
2427 /* Reset the modification marker. */
b775012e
LM
2428 bl->needs_update = 0;
2429 }
2430
35df4500
TJB
2431 if (bl->loc_type == bp_loc_software_breakpoint
2432 || bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2433 {
35df4500 2434 if (bl->owner->type != bp_hardware_breakpoint)
765dc015
VP
2435 {
2436 /* If the explicitly specified breakpoint type
2437 is not hardware breakpoint, check the memory map to see
2438 if the breakpoint address is in read only memory or not.
4a64f543 2439
765dc015
VP
2440 Two important cases are:
2441 - location type is not hardware breakpoint, memory
2442 is readonly. We change the type of the location to
2443 hardware breakpoint.
4a64f543
MS
2444 - location type is hardware breakpoint, memory is
2445 read-write. This means we've previously made the
2446 location hardware one, but then the memory map changed,
2447 so we undo.
765dc015 2448
4a64f543
MS
2449 When breakpoints are removed, remove_breakpoints will use
2450 location types we've just set here, the only possible
2451 problem is that memory map has changed during running
2452 program, but it's not going to work anyway with current
2453 gdb. */
765dc015 2454 struct mem_region *mr
35df4500 2455 = lookup_mem_region (bl->target_info.placed_address);
765dc015
VP
2456
2457 if (mr)
2458 {
2459 if (automatic_hardware_breakpoints)
2460 {
765dc015
VP
2461 enum bp_loc_type new_type;
2462
2463 if (mr->attrib.mode != MEM_RW)
2464 new_type = bp_loc_hardware_breakpoint;
2465 else
2466 new_type = bp_loc_software_breakpoint;
2467
35df4500 2468 if (new_type != bl->loc_type)
765dc015
VP
2469 {
2470 static int said = 0;
cc59ec59 2471
35df4500 2472 bl->loc_type = new_type;
765dc015
VP
2473 if (!said)
2474 {
3e43a32a
MS
2475 fprintf_filtered (gdb_stdout,
2476 _("Note: automatically using "
2477 "hardware breakpoints for "
2478 "read-only addresses.\n"));
765dc015
VP
2479 said = 1;
2480 }
2481 }
2482 }
35df4500 2483 else if (bl->loc_type == bp_loc_software_breakpoint
765dc015 2484 && mr->attrib.mode != MEM_RW)
3e43a32a
MS
2485 warning (_("cannot set software breakpoint "
2486 "at readonly address %s"),
35df4500 2487 paddress (bl->gdbarch, bl->address));
765dc015
VP
2488 }
2489 }
2490
879bfdc2
DJ
2491 /* First check to see if we have to handle an overlay. */
2492 if (overlay_debugging == ovly_off
35df4500
TJB
2493 || bl->section == NULL
2494 || !(section_is_overlay (bl->section)))
879bfdc2
DJ
2495 {
2496 /* No overlay handling: just set the breakpoint. */
dd61ec5c
MW
2497 TRY_CATCH (e, RETURN_MASK_ALL)
2498 {
2499 val = bl->owner->ops->insert_location (bl);
2500 }
2501 if (e.reason < 0)
2502 {
2503 val = 1;
b15e5c54 2504 hw_bp_err_string = e.message;
dd61ec5c 2505 }
879bfdc2
DJ
2506 }
2507 else
2508 {
4a64f543 2509 /* This breakpoint is in an overlay section.
879bfdc2
DJ
2510 Shall we set a breakpoint at the LMA? */
2511 if (!overlay_events_enabled)
2512 {
2513 /* Yes -- overlay event support is not active,
2514 so we must try to set a breakpoint at the LMA.
2515 This will not work for a hardware breakpoint. */
35df4500 2516 if (bl->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 2517 warning (_("hardware breakpoint %d not supported in overlay!"),
35df4500 2518 bl->owner->number);
879bfdc2
DJ
2519 else
2520 {
35df4500
TJB
2521 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2522 bl->section);
879bfdc2 2523 /* Set a software (trap) breakpoint at the LMA. */
35df4500
TJB
2524 bl->overlay_target_info = bl->target_info;
2525 bl->overlay_target_info.placed_address = addr;
2526 val = target_insert_breakpoint (bl->gdbarch,
2527 &bl->overlay_target_info);
879bfdc2 2528 if (val != 0)
99361f52 2529 fprintf_unfiltered (tmp_error_stream,
3e43a32a
MS
2530 "Overlay breakpoint %d "
2531 "failed: in ROM?\n",
35df4500 2532 bl->owner->number);
879bfdc2
DJ
2533 }
2534 }
2535 /* Shall we set a breakpoint at the VMA? */
35df4500 2536 if (section_is_mapped (bl->section))
879bfdc2
DJ
2537 {
2538 /* Yes. This overlay section is mapped into memory. */
dd61ec5c
MW
2539 TRY_CATCH (e, RETURN_MASK_ALL)
2540 {
2541 val = bl->owner->ops->insert_location (bl);
2542 }
2543 if (e.reason < 0)
2544 {
2545 val = 1;
b15e5c54 2546 hw_bp_err_string = e.message;
dd61ec5c 2547 }
879bfdc2
DJ
2548 }
2549 else
2550 {
2551 /* No. This breakpoint will not be inserted.
2552 No error, but do not mark the bp as 'inserted'. */
2553 return 0;
2554 }
2555 }
2556
2557 if (val)
2558 {
2559 /* Can't set the breakpoint. */
35df4500 2560 if (solib_name_from_address (bl->pspace, bl->address))
879bfdc2 2561 {
4a64f543 2562 /* See also: disable_breakpoints_in_shlibs. */
879bfdc2 2563 val = 0;
35df4500 2564 bl->shlib_disabled = 1;
8d3788bd 2565 observer_notify_breakpoint_modified (bl->owner);
3fbb6ffa
TJB
2566 if (!*disabled_breaks)
2567 {
2568 fprintf_unfiltered (tmp_error_stream,
2569 "Cannot insert breakpoint %d.\n",
2570 bl->owner->number);
2571 fprintf_unfiltered (tmp_error_stream,
2572 "Temporarily disabling shared "
2573 "library breakpoints:\n");
2574 }
2575 *disabled_breaks = 1;
879bfdc2 2576 fprintf_unfiltered (tmp_error_stream,
35df4500 2577 "breakpoint #%d\n", bl->owner->number);
879bfdc2
DJ
2578 }
2579 else
879bfdc2 2580 {
35df4500 2581 if (bl->loc_type == bp_loc_hardware_breakpoint)
879bfdc2 2582 {
dd61ec5c
MW
2583 *hw_breakpoint_error = 1;
2584 *hw_bp_error_explained_already = hw_bp_err_string != NULL;
2585 fprintf_unfiltered (tmp_error_stream,
2586 "Cannot insert hardware breakpoint %d%s",
2587 bl->owner->number, hw_bp_err_string ? ":" : ".\n");
2588 if (hw_bp_err_string)
2589 fprintf_unfiltered (tmp_error_stream, "%s.\n", hw_bp_err_string);
879bfdc2
DJ
2590 }
2591 else
2592 {
578d3588
PA
2593 char *message = memory_error_message (TARGET_XFER_E_IO,
2594 bl->gdbarch, bl->address);
2595 struct cleanup *old_chain = make_cleanup (xfree, message);
2596
879bfdc2 2597 fprintf_unfiltered (tmp_error_stream,
578d3588
PA
2598 "Cannot insert breakpoint %d.\n"
2599 "%s\n",
2600 bl->owner->number, message);
2601
2602 do_cleanups (old_chain);
879bfdc2
DJ
2603 }
2604
2605 }
2606 }
2607 else
35df4500 2608 bl->inserted = 1;
879bfdc2
DJ
2609
2610 return val;
2611 }
2612
35df4500 2613 else if (bl->loc_type == bp_loc_hardware_watchpoint
879bfdc2 2614 /* NOTE drow/2003-09-08: This state only exists for removing
4a64f543 2615 watchpoints. It's not clear that it's necessary... */
35df4500 2616 && bl->owner->disposition != disp_del_at_next_stop)
879bfdc2 2617 {
77b06cd7
TJB
2618 gdb_assert (bl->owner->ops != NULL
2619 && bl->owner->ops->insert_location != NULL);
2620
2621 val = bl->owner->ops->insert_location (bl);
85d721b8
PA
2622
2623 /* If trying to set a read-watchpoint, and it turns out it's not
2624 supported, try emulating one with an access watchpoint. */
35df4500 2625 if (val == 1 && bl->watchpoint_type == hw_read)
85d721b8
PA
2626 {
2627 struct bp_location *loc, **loc_temp;
2628
2629 /* But don't try to insert it, if there's already another
2630 hw_access location that would be considered a duplicate
2631 of this one. */
2632 ALL_BP_LOCATIONS (loc, loc_temp)
35df4500 2633 if (loc != bl
85d721b8 2634 && loc->watchpoint_type == hw_access
35df4500 2635 && watchpoint_locations_match (bl, loc))
85d721b8 2636 {
35df4500
TJB
2637 bl->duplicate = 1;
2638 bl->inserted = 1;
2639 bl->target_info = loc->target_info;
2640 bl->watchpoint_type = hw_access;
85d721b8
PA
2641 val = 0;
2642 break;
2643 }
2644
2645 if (val == 1)
2646 {
77b06cd7
TJB
2647 bl->watchpoint_type = hw_access;
2648 val = bl->owner->ops->insert_location (bl);
2649
2650 if (val)
2651 /* Back to the original value. */
2652 bl->watchpoint_type = hw_read;
85d721b8
PA
2653 }
2654 }
2655
35df4500 2656 bl->inserted = (val == 0);
879bfdc2
DJ
2657 }
2658
35df4500 2659 else if (bl->owner->type == bp_catchpoint)
879bfdc2 2660 {
77b06cd7
TJB
2661 gdb_assert (bl->owner->ops != NULL
2662 && bl->owner->ops->insert_location != NULL);
2663
2664 val = bl->owner->ops->insert_location (bl);
2665 if (val)
2666 {
2667 bl->owner->enable_state = bp_disabled;
2668
2669 if (val == 1)
2670 warning (_("\
2671Error inserting catchpoint %d: Your system does not support this type\n\
2672of catchpoint."), bl->owner->number);
2673 else
2674 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2675 }
2676
2677 bl->inserted = (val == 0);
1640b821
DJ
2678
2679 /* We've already printed an error message if there was a problem
2680 inserting this catchpoint, and we've disabled the catchpoint,
2681 so just return success. */
2682 return 0;
879bfdc2
DJ
2683 }
2684
2685 return 0;
2686}
2687
6c95b8df
PA
2688/* This function is called when program space PSPACE is about to be
2689 deleted. It takes care of updating breakpoints to not reference
2690 PSPACE anymore. */
2691
2692void
2693breakpoint_program_space_exit (struct program_space *pspace)
2694{
2695 struct breakpoint *b, *b_temp;
876fa593 2696 struct bp_location *loc, **loc_temp;
6c95b8df
PA
2697
2698 /* Remove any breakpoint that was set through this program space. */
2699 ALL_BREAKPOINTS_SAFE (b, b_temp)
2700 {
2701 if (b->pspace == pspace)
2702 delete_breakpoint (b);
2703 }
2704
2705 /* Breakpoints set through other program spaces could have locations
2706 bound to PSPACE as well. Remove those. */
876fa593 2707 ALL_BP_LOCATIONS (loc, loc_temp)
6c95b8df
PA
2708 {
2709 struct bp_location *tmp;
2710
2711 if (loc->pspace == pspace)
2712 {
2bdf28a0 2713 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
6c95b8df
PA
2714 if (loc->owner->loc == loc)
2715 loc->owner->loc = loc->next;
2716 else
2717 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2718 if (tmp->next == loc)
2719 {
2720 tmp->next = loc->next;
2721 break;
2722 }
2723 }
2724 }
2725
2726 /* Now update the global location list to permanently delete the
2727 removed locations above. */
2728 update_global_location_list (0);
2729}
2730
74960c60
VP
2731/* Make sure all breakpoints are inserted in inferior.
2732 Throws exception on any error.
2733 A breakpoint that is already inserted won't be inserted
2734 again, so calling this function twice is safe. */
2735void
2736insert_breakpoints (void)
2737{
2738 struct breakpoint *bpt;
2739
2740 ALL_BREAKPOINTS (bpt)
2741 if (is_hardware_watchpoint (bpt))
3a5c3e22
PA
2742 {
2743 struct watchpoint *w = (struct watchpoint *) bpt;
2744
2745 update_watchpoint (w, 0 /* don't reparse. */);
2746 }
74960c60 2747
b60e7edf 2748 update_global_location_list (1);
74960c60 2749
c35b1492
PA
2750 /* update_global_location_list does not insert breakpoints when
2751 always_inserted_mode is not enabled. Explicitly insert them
2752 now. */
2753 if (!breakpoints_always_inserted_mode ())
74960c60
VP
2754 insert_breakpoint_locations ();
2755}
2756
20388dd6
YQ
2757/* Invoke CALLBACK for each of bp_location. */
2758
2759void
2760iterate_over_bp_locations (walk_bp_location_callback callback)
2761{
2762 struct bp_location *loc, **loc_tmp;
2763
2764 ALL_BP_LOCATIONS (loc, loc_tmp)
2765 {
2766 callback (loc, NULL);
2767 }
2768}
2769
b775012e
LM
2770/* This is used when we need to synch breakpoint conditions between GDB and the
2771 target. It is the case with deleting and disabling of breakpoints when using
2772 always-inserted mode. */
2773
2774static void
2775update_inserted_breakpoint_locations (void)
2776{
2777 struct bp_location *bl, **blp_tmp;
2778 int error_flag = 0;
2779 int val = 0;
2780 int disabled_breaks = 0;
2781 int hw_breakpoint_error = 0;
dd61ec5c 2782 int hw_bp_details_reported = 0;
b775012e
LM
2783
2784 struct ui_file *tmp_error_stream = mem_fileopen ();
2785 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
2786
2787 /* Explicitly mark the warning -- this will only be printed if
2788 there was an error. */
2789 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
2790
2791 save_current_space_and_thread ();
2792
2793 ALL_BP_LOCATIONS (bl, blp_tmp)
2794 {
2795 /* We only want to update software breakpoints and hardware
2796 breakpoints. */
2797 if (!is_breakpoint (bl->owner))
2798 continue;
2799
2800 /* We only want to update locations that are already inserted
2801 and need updating. This is to avoid unwanted insertion during
2802 deletion of breakpoints. */
2803 if (!bl->inserted || (bl->inserted && !bl->needs_update))
2804 continue;
2805
2806 switch_to_program_space_and_thread (bl->pspace);
2807
2808 /* For targets that support global breakpoints, there's no need
2809 to select an inferior to insert breakpoint to. In fact, even
2810 if we aren't attached to any process yet, we should still
2811 insert breakpoints. */
f5656ead 2812 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
b775012e
LM
2813 && ptid_equal (inferior_ptid, null_ptid))
2814 continue;
2815
2816 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
dd61ec5c 2817 &hw_breakpoint_error, &hw_bp_details_reported);
b775012e
LM
2818 if (val)
2819 error_flag = val;
2820 }
2821
2822 if (error_flag)
2823 {
2824 target_terminal_ours_for_output ();
2825 error_stream (tmp_error_stream);
2826 }
2827
2828 do_cleanups (cleanups);
2829}
2830
c30eee59 2831/* Used when starting or continuing the program. */
c906108c 2832
74960c60
VP
2833static void
2834insert_breakpoint_locations (void)
c906108c 2835{
a5606eee 2836 struct breakpoint *bpt;
35df4500 2837 struct bp_location *bl, **blp_tmp;
eacd795a 2838 int error_flag = 0;
c906108c 2839 int val = 0;
3fbb6ffa 2840 int disabled_breaks = 0;
81d0cc19 2841 int hw_breakpoint_error = 0;
dd61ec5c 2842 int hw_bp_error_explained_already = 0;
c906108c 2843
81d0cc19 2844 struct ui_file *tmp_error_stream = mem_fileopen ();
f7545552 2845 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 2846
81d0cc19
GS
2847 /* Explicitly mark the warning -- this will only be printed if
2848 there was an error. */
2849 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
6c95b8df
PA
2850
2851 save_current_space_and_thread ();
2852
35df4500 2853 ALL_BP_LOCATIONS (bl, blp_tmp)
879bfdc2 2854 {
b775012e 2855 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
879bfdc2
DJ
2856 continue;
2857
4a64f543
MS
2858 /* There is no point inserting thread-specific breakpoints if
2859 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2860 has BL->OWNER always non-NULL. */
35df4500
TJB
2861 if (bl->owner->thread != -1
2862 && !valid_thread_id (bl->owner->thread))
f365de73
AS
2863 continue;
2864
35df4500 2865 switch_to_program_space_and_thread (bl->pspace);
6c95b8df
PA
2866
2867 /* For targets that support global breakpoints, there's no need
2868 to select an inferior to insert breakpoint to. In fact, even
2869 if we aren't attached to any process yet, we should still
2870 insert breakpoints. */
f5656ead 2871 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
2872 && ptid_equal (inferior_ptid, null_ptid))
2873 continue;
2874
3fbb6ffa 2875 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
dd61ec5c 2876 &hw_breakpoint_error, &hw_bp_error_explained_already);
879bfdc2 2877 if (val)
eacd795a 2878 error_flag = val;
879bfdc2 2879 }
c906108c 2880
4a64f543
MS
2881 /* If we failed to insert all locations of a watchpoint, remove
2882 them, as half-inserted watchpoint is of limited use. */
a5606eee
VP
2883 ALL_BREAKPOINTS (bpt)
2884 {
2885 int some_failed = 0;
2886 struct bp_location *loc;
2887
2888 if (!is_hardware_watchpoint (bpt))
2889 continue;
2890
d6b74ac4 2891 if (!breakpoint_enabled (bpt))
a5606eee 2892 continue;
74960c60
VP
2893
2894 if (bpt->disposition == disp_del_at_next_stop)
2895 continue;
a5606eee
VP
2896
2897 for (loc = bpt->loc; loc; loc = loc->next)
56710373 2898 if (!loc->inserted && should_be_inserted (loc))
a5606eee
VP
2899 {
2900 some_failed = 1;
2901 break;
2902 }
2903 if (some_failed)
2904 {
2905 for (loc = bpt->loc; loc; loc = loc->next)
2906 if (loc->inserted)
2907 remove_breakpoint (loc, mark_uninserted);
2908
2909 hw_breakpoint_error = 1;
2910 fprintf_unfiltered (tmp_error_stream,
2911 "Could not insert hardware watchpoint %d.\n",
2912 bpt->number);
eacd795a 2913 error_flag = -1;
a5606eee
VP
2914 }
2915 }
2916
eacd795a 2917 if (error_flag)
81d0cc19
GS
2918 {
2919 /* If a hardware breakpoint or watchpoint was inserted, add a
2920 message about possibly exhausted resources. */
dd61ec5c 2921 if (hw_breakpoint_error && !hw_bp_error_explained_already)
81d0cc19 2922 {
c6510018
MS
2923 fprintf_unfiltered (tmp_error_stream,
2924 "Could not insert hardware breakpoints:\n\
2925You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 2926 }
81d0cc19
GS
2927 target_terminal_ours_for_output ();
2928 error_stream (tmp_error_stream);
2929 }
f7545552
TT
2930
2931 do_cleanups (cleanups);
c906108c
SS
2932}
2933
c30eee59
TJB
2934/* Used when the program stops.
2935 Returns zero if successful, or non-zero if there was a problem
2936 removing a breakpoint location. */
2937
c906108c 2938int
fba45db2 2939remove_breakpoints (void)
c906108c 2940{
35df4500 2941 struct bp_location *bl, **blp_tmp;
3a1bae8e 2942 int val = 0;
c906108c 2943
35df4500 2944 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 2945 {
1e4d1764 2946 if (bl->inserted && !is_tracepoint (bl->owner))
35df4500 2947 val |= remove_breakpoint (bl, mark_uninserted);
c5aa993b 2948 }
3a1bae8e 2949 return val;
c906108c
SS
2950}
2951
49fa26b0
PA
2952/* When a thread exits, remove breakpoints that are related to
2953 that thread. */
2954
2955static void
2956remove_threaded_breakpoints (struct thread_info *tp, int silent)
2957{
2958 struct breakpoint *b, *b_tmp;
2959
2960 ALL_BREAKPOINTS_SAFE (b, b_tmp)
2961 {
96181529 2962 if (b->thread == tp->num && user_breakpoint_p (b))
49fa26b0
PA
2963 {
2964 b->disposition = disp_del_at_next_stop;
2965
2966 printf_filtered (_("\
46ecd527 2967Thread-specific breakpoint %d deleted - thread %d no longer in the thread list.\n"),
49fa26b0
PA
2968 b->number, tp->num);
2969
2970 /* Hide it from the user. */
2971 b->number = 0;
2972 }
2973 }
2974}
2975
6c95b8df
PA
2976/* Remove breakpoints of process PID. */
2977
2978int
2979remove_breakpoints_pid (int pid)
2980{
35df4500 2981 struct bp_location *bl, **blp_tmp;
6c95b8df
PA
2982 int val;
2983 struct inferior *inf = find_inferior_pid (pid);
2984
35df4500 2985 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 2986 {
35df4500 2987 if (bl->pspace != inf->pspace)
6c95b8df
PA
2988 continue;
2989
d3ce09f5
SS
2990 if (bl->owner->type == bp_dprintf)
2991 continue;
2992
35df4500 2993 if (bl->inserted)
6c95b8df 2994 {
35df4500 2995 val = remove_breakpoint (bl, mark_uninserted);
6c95b8df
PA
2996 if (val != 0)
2997 return val;
2998 }
2999 }
3000 return 0;
3001}
3002
c906108c 3003int
fba45db2 3004reattach_breakpoints (int pid)
c906108c 3005{
6c95b8df 3006 struct cleanup *old_chain;
35df4500 3007 struct bp_location *bl, **blp_tmp;
c906108c 3008 int val;
86b887df 3009 struct ui_file *tmp_error_stream;
dd61ec5c 3010 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
6c95b8df
PA
3011 struct inferior *inf;
3012 struct thread_info *tp;
3013
3014 tp = any_live_thread_of_process (pid);
3015 if (tp == NULL)
3016 return 1;
3017
3018 inf = find_inferior_pid (pid);
3019 old_chain = save_inferior_ptid ();
3020
3021 inferior_ptid = tp->ptid;
a4954f26 3022
86b887df 3023 tmp_error_stream = mem_fileopen ();
a4954f26 3024 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 3025
35df4500 3026 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3027 {
35df4500 3028 if (bl->pspace != inf->pspace)
6c95b8df
PA
3029 continue;
3030
35df4500 3031 if (bl->inserted)
c5aa993b 3032 {
35df4500 3033 bl->inserted = 0;
dd61ec5c 3034 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3);
c5aa993b
JM
3035 if (val != 0)
3036 {
ce696e05 3037 do_cleanups (old_chain);
c5aa993b
JM
3038 return val;
3039 }
3040 }
3041 }
ce696e05 3042 do_cleanups (old_chain);
c906108c
SS
3043 return 0;
3044}
3045
e58b0e63
PA
3046static int internal_breakpoint_number = -1;
3047
84f4c1fe
PM
3048/* Set the breakpoint number of B, depending on the value of INTERNAL.
3049 If INTERNAL is non-zero, the breakpoint number will be populated
3050 from internal_breakpoint_number and that variable decremented.
e5dd4106 3051 Otherwise the breakpoint number will be populated from
84f4c1fe
PM
3052 breakpoint_count and that value incremented. Internal breakpoints
3053 do not set the internal var bpnum. */
3054static void
3055set_breakpoint_number (int internal, struct breakpoint *b)
3056{
3057 if (internal)
3058 b->number = internal_breakpoint_number--;
3059 else
3060 {
3061 set_breakpoint_count (breakpoint_count + 1);
3062 b->number = breakpoint_count;
3063 }
3064}
3065
e62c965a 3066static struct breakpoint *
a6d9a66e 3067create_internal_breakpoint (struct gdbarch *gdbarch,
06edf0c0 3068 CORE_ADDR address, enum bptype type,
c0a91b2b 3069 const struct breakpoint_ops *ops)
e62c965a 3070{
e62c965a
PP
3071 struct symtab_and_line sal;
3072 struct breakpoint *b;
3073
4a64f543 3074 init_sal (&sal); /* Initialize to zeroes. */
e62c965a
PP
3075
3076 sal.pc = address;
3077 sal.section = find_pc_overlay (sal.pc);
6c95b8df 3078 sal.pspace = current_program_space;
e62c965a 3079
06edf0c0 3080 b = set_raw_breakpoint (gdbarch, sal, type, ops);
e62c965a
PP
3081 b->number = internal_breakpoint_number--;
3082 b->disposition = disp_donttouch;
3083
3084 return b;
3085}
3086
17450429
PP
3087static const char *const longjmp_names[] =
3088 {
3089 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3090 };
3091#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3092
3093/* Per-objfile data private to breakpoint.c. */
3094struct breakpoint_objfile_data
3095{
3096 /* Minimal symbol for "_ovly_debug_event" (if any). */
3097 struct minimal_symbol *overlay_msym;
3098
3099 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3100 struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES];
3101
28106bc2
SDJ
3102 /* True if we have looked for longjmp probes. */
3103 int longjmp_searched;
3104
3105 /* SystemTap probe points for longjmp (if any). */
3106 VEC (probe_p) *longjmp_probes;
3107
17450429
PP
3108 /* Minimal symbol for "std::terminate()" (if any). */
3109 struct minimal_symbol *terminate_msym;
3110
3111 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3112 struct minimal_symbol *exception_msym;
28106bc2
SDJ
3113
3114 /* True if we have looked for exception probes. */
3115 int exception_searched;
3116
3117 /* SystemTap probe points for unwinding (if any). */
3118 VEC (probe_p) *exception_probes;
17450429
PP
3119};
3120
3121static const struct objfile_data *breakpoint_objfile_key;
3122
3123/* Minimal symbol not found sentinel. */
3124static struct minimal_symbol msym_not_found;
3125
3126/* Returns TRUE if MSYM point to the "not found" sentinel. */
3127
3128static int
3129msym_not_found_p (const struct minimal_symbol *msym)
3130{
3131 return msym == &msym_not_found;
3132}
3133
3134/* Return per-objfile data needed by breakpoint.c.
3135 Allocate the data if necessary. */
3136
3137static struct breakpoint_objfile_data *
3138get_breakpoint_objfile_data (struct objfile *objfile)
3139{
3140 struct breakpoint_objfile_data *bp_objfile_data;
3141
3142 bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key);
3143 if (bp_objfile_data == NULL)
3144 {
3145 bp_objfile_data = obstack_alloc (&objfile->objfile_obstack,
3146 sizeof (*bp_objfile_data));
3147
3148 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
3149 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3150 }
3151 return bp_objfile_data;
3152}
3153
28106bc2
SDJ
3154static void
3155free_breakpoint_probes (struct objfile *obj, void *data)
3156{
3157 struct breakpoint_objfile_data *bp_objfile_data = data;
3158
3159 VEC_free (probe_p, bp_objfile_data->longjmp_probes);
3160 VEC_free (probe_p, bp_objfile_data->exception_probes);
3161}
3162
e62c965a 3163static void
af02033e 3164create_overlay_event_breakpoint (void)
e62c965a 3165{
69de3c6a 3166 struct objfile *objfile;
af02033e 3167 const char *const func_name = "_ovly_debug_event";
e62c965a 3168
69de3c6a
PP
3169 ALL_OBJFILES (objfile)
3170 {
3171 struct breakpoint *b;
17450429
PP
3172 struct breakpoint_objfile_data *bp_objfile_data;
3173 CORE_ADDR addr;
69de3c6a 3174
17450429
PP
3175 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3176
3177 if (msym_not_found_p (bp_objfile_data->overlay_msym))
3178 continue;
3179
3180 if (bp_objfile_data->overlay_msym == NULL)
3181 {
3182 struct minimal_symbol *m;
3183
3184 m = lookup_minimal_symbol_text (func_name, objfile);
3185 if (m == NULL)
3186 {
3187 /* Avoid future lookups in this objfile. */
3188 bp_objfile_data->overlay_msym = &msym_not_found;
3189 continue;
3190 }
3191 bp_objfile_data->overlay_msym = m;
3192 }
e62c965a 3193
17450429
PP
3194 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
3195 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3196 bp_overlay_event,
3197 &internal_breakpoint_ops);
69de3c6a 3198 b->addr_string = xstrdup (func_name);
e62c965a 3199
69de3c6a
PP
3200 if (overlay_debugging == ovly_auto)
3201 {
3202 b->enable_state = bp_enabled;
3203 overlay_events_enabled = 1;
3204 }
3205 else
3206 {
3207 b->enable_state = bp_disabled;
3208 overlay_events_enabled = 0;
3209 }
e62c965a
PP
3210 }
3211 update_global_location_list (1);
3212}
3213
0fd8e87f 3214static void
af02033e 3215create_longjmp_master_breakpoint (void)
0fd8e87f 3216{
6c95b8df 3217 struct program_space *pspace;
6c95b8df
PA
3218 struct cleanup *old_chain;
3219
3220 old_chain = save_current_program_space ();
0fd8e87f 3221
6c95b8df 3222 ALL_PSPACES (pspace)
af02033e
PP
3223 {
3224 struct objfile *objfile;
3225
3226 set_current_program_space (pspace);
3227
3228 ALL_OBJFILES (objfile)
0fd8e87f 3229 {
af02033e
PP
3230 int i;
3231 struct gdbarch *gdbarch;
17450429 3232 struct breakpoint_objfile_data *bp_objfile_data;
0fd8e87f 3233
af02033e 3234 gdbarch = get_objfile_arch (objfile);
0fd8e87f 3235
17450429
PP
3236 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3237
28106bc2
SDJ
3238 if (!bp_objfile_data->longjmp_searched)
3239 {
25f9533e
SDJ
3240 VEC (probe_p) *ret;
3241
3242 ret = find_probes_in_objfile (objfile, "libc", "longjmp");
3243 if (ret != NULL)
3244 {
3245 /* We are only interested in checking one element. */
3246 struct probe *p = VEC_index (probe_p, ret, 0);
3247
3248 if (!can_evaluate_probe_arguments (p))
3249 {
3250 /* We cannot use the probe interface here, because it does
3251 not know how to evaluate arguments. */
3252 VEC_free (probe_p, ret);
3253 ret = NULL;
3254 }
3255 }
3256 bp_objfile_data->longjmp_probes = ret;
28106bc2
SDJ
3257 bp_objfile_data->longjmp_searched = 1;
3258 }
3259
3260 if (bp_objfile_data->longjmp_probes != NULL)
3261 {
3262 int i;
3263 struct probe *probe;
3264 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3265
3266 for (i = 0;
3267 VEC_iterate (probe_p,
3268 bp_objfile_data->longjmp_probes,
3269 i, probe);
3270 ++i)
3271 {
3272 struct breakpoint *b;
3273
3274 b = create_internal_breakpoint (gdbarch, probe->address,
3275 bp_longjmp_master,
3276 &internal_breakpoint_ops);
3277 b->addr_string = xstrdup ("-probe-stap libc:longjmp");
3278 b->enable_state = bp_disabled;
3279 }
3280
3281 continue;
3282 }
3283
0569175e
TSD
3284 if (!gdbarch_get_longjmp_target_p (gdbarch))
3285 continue;
3286
17450429 3287 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
af02033e
PP
3288 {
3289 struct breakpoint *b;
af02033e 3290 const char *func_name;
17450429 3291 CORE_ADDR addr;
6c95b8df 3292
17450429 3293 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i]))
af02033e 3294 continue;
0fd8e87f 3295
17450429
PP
3296 func_name = longjmp_names[i];
3297 if (bp_objfile_data->longjmp_msym[i] == NULL)
3298 {
3299 struct minimal_symbol *m;
3300
3301 m = lookup_minimal_symbol_text (func_name, objfile);
3302 if (m == NULL)
3303 {
3304 /* Prevent future lookups in this objfile. */
3305 bp_objfile_data->longjmp_msym[i] = &msym_not_found;
3306 continue;
3307 }
3308 bp_objfile_data->longjmp_msym[i] = m;
3309 }
3310
3311 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
06edf0c0
PA
3312 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3313 &internal_breakpoint_ops);
af02033e
PP
3314 b->addr_string = xstrdup (func_name);
3315 b->enable_state = bp_disabled;
3316 }
0fd8e87f 3317 }
af02033e 3318 }
0fd8e87f 3319 update_global_location_list (1);
6c95b8df
PA
3320
3321 do_cleanups (old_chain);
0fd8e87f
UW
3322}
3323
af02033e 3324/* Create a master std::terminate breakpoint. */
aa7d318d 3325static void
af02033e 3326create_std_terminate_master_breakpoint (void)
aa7d318d
TT
3327{
3328 struct program_space *pspace;
aa7d318d 3329 struct cleanup *old_chain;
af02033e 3330 const char *const func_name = "std::terminate()";
aa7d318d
TT
3331
3332 old_chain = save_current_program_space ();
3333
3334 ALL_PSPACES (pspace)
17450429
PP
3335 {
3336 struct objfile *objfile;
3337 CORE_ADDR addr;
3338
3339 set_current_program_space (pspace);
3340
aa7d318d
TT
3341 ALL_OBJFILES (objfile)
3342 {
3343 struct breakpoint *b;
17450429 3344 struct breakpoint_objfile_data *bp_objfile_data;
aa7d318d 3345
17450429 3346 bp_objfile_data = get_breakpoint_objfile_data (objfile);
aa7d318d 3347
17450429
PP
3348 if (msym_not_found_p (bp_objfile_data->terminate_msym))
3349 continue;
3350
3351 if (bp_objfile_data->terminate_msym == NULL)
3352 {
3353 struct minimal_symbol *m;
3354
3355 m = lookup_minimal_symbol (func_name, NULL, objfile);
3356 if (m == NULL || (MSYMBOL_TYPE (m) != mst_text
3357 && MSYMBOL_TYPE (m) != mst_file_text))
3358 {
3359 /* Prevent future lookups in this objfile. */
3360 bp_objfile_data->terminate_msym = &msym_not_found;
3361 continue;
3362 }
3363 bp_objfile_data->terminate_msym = m;
3364 }
aa7d318d 3365
17450429
PP
3366 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
3367 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
06edf0c0
PA
3368 bp_std_terminate_master,
3369 &internal_breakpoint_ops);
aa7d318d
TT
3370 b->addr_string = xstrdup (func_name);
3371 b->enable_state = bp_disabled;
3372 }
17450429
PP
3373 }
3374
aa7d318d
TT
3375 update_global_location_list (1);
3376
3377 do_cleanups (old_chain);
3378}
3379
186c406b
TT
3380/* Install a master breakpoint on the unwinder's debug hook. */
3381
70221824 3382static void
186c406b
TT
3383create_exception_master_breakpoint (void)
3384{
3385 struct objfile *objfile;
17450429 3386 const char *const func_name = "_Unwind_DebugHook";
186c406b
TT
3387
3388 ALL_OBJFILES (objfile)
3389 {
17450429
PP
3390 struct breakpoint *b;
3391 struct gdbarch *gdbarch;
3392 struct breakpoint_objfile_data *bp_objfile_data;
3393 CORE_ADDR addr;
3394
3395 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3396
28106bc2
SDJ
3397 /* We prefer the SystemTap probe point if it exists. */
3398 if (!bp_objfile_data->exception_searched)
3399 {
25f9533e
SDJ
3400 VEC (probe_p) *ret;
3401
3402 ret = find_probes_in_objfile (objfile, "libgcc", "unwind");
3403
3404 if (ret != NULL)
3405 {
3406 /* We are only interested in checking one element. */
3407 struct probe *p = VEC_index (probe_p, ret, 0);
3408
3409 if (!can_evaluate_probe_arguments (p))
3410 {
3411 /* We cannot use the probe interface here, because it does
3412 not know how to evaluate arguments. */
3413 VEC_free (probe_p, ret);
3414 ret = NULL;
3415 }
3416 }
3417 bp_objfile_data->exception_probes = ret;
28106bc2
SDJ
3418 bp_objfile_data->exception_searched = 1;
3419 }
3420
3421 if (bp_objfile_data->exception_probes != NULL)
3422 {
3423 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3424 int i;
3425 struct probe *probe;
3426
3427 for (i = 0;
3428 VEC_iterate (probe_p,
3429 bp_objfile_data->exception_probes,
3430 i, probe);
3431 ++i)
3432 {
3433 struct breakpoint *b;
3434
3435 b = create_internal_breakpoint (gdbarch, probe->address,
3436 bp_exception_master,
3437 &internal_breakpoint_ops);
3438 b->addr_string = xstrdup ("-probe-stap libgcc:unwind");
3439 b->enable_state = bp_disabled;
3440 }
3441
3442 continue;
3443 }
3444
3445 /* Otherwise, try the hook function. */
3446
17450429
PP
3447 if (msym_not_found_p (bp_objfile_data->exception_msym))
3448 continue;
3449
3450 gdbarch = get_objfile_arch (objfile);
186c406b 3451
17450429 3452 if (bp_objfile_data->exception_msym == NULL)
186c406b 3453 {
17450429 3454 struct minimal_symbol *debug_hook;
186c406b 3455
17450429
PP
3456 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3457 if (debug_hook == NULL)
3458 {
3459 bp_objfile_data->exception_msym = &msym_not_found;
3460 continue;
3461 }
3462
3463 bp_objfile_data->exception_msym = debug_hook;
186c406b 3464 }
17450429
PP
3465
3466 addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
3467 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3468 &current_target);
06edf0c0
PA
3469 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3470 &internal_breakpoint_ops);
17450429
PP
3471 b->addr_string = xstrdup (func_name);
3472 b->enable_state = bp_disabled;
186c406b
TT
3473 }
3474
3475 update_global_location_list (1);
3476}
3477
c906108c 3478void
fba45db2 3479update_breakpoints_after_exec (void)
c906108c 3480{
35df4500 3481 struct breakpoint *b, *b_tmp;
876fa593 3482 struct bp_location *bploc, **bplocp_tmp;
c906108c 3483
25b22b0a
PA
3484 /* We're about to delete breakpoints from GDB's lists. If the
3485 INSERTED flag is true, GDB will try to lift the breakpoints by
3486 writing the breakpoints' "shadow contents" back into memory. The
3487 "shadow contents" are NOT valid after an exec, so GDB should not
3488 do that. Instead, the target is responsible from marking
3489 breakpoints out as soon as it detects an exec. We don't do that
3490 here instead, because there may be other attempts to delete
3491 breakpoints after detecting an exec and before reaching here. */
876fa593 3492 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
6c95b8df
PA
3493 if (bploc->pspace == current_program_space)
3494 gdb_assert (!bploc->inserted);
c906108c 3495
35df4500 3496 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3497 {
6c95b8df
PA
3498 if (b->pspace != current_program_space)
3499 continue;
3500
4a64f543 3501 /* Solib breakpoints must be explicitly reset after an exec(). */
c5aa993b
JM
3502 if (b->type == bp_shlib_event)
3503 {
3504 delete_breakpoint (b);
3505 continue;
3506 }
c906108c 3507
4a64f543 3508 /* JIT breakpoints must be explicitly reset after an exec(). */
4efc6507
DE
3509 if (b->type == bp_jit_event)
3510 {
3511 delete_breakpoint (b);
3512 continue;
3513 }
3514
1900040c 3515 /* Thread event breakpoints must be set anew after an exec(),
0fd8e87f
UW
3516 as must overlay event and longjmp master breakpoints. */
3517 if (b->type == bp_thread_event || b->type == bp_overlay_event
186c406b
TT
3518 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3519 || b->type == bp_exception_master)
c4093a6a
JM
3520 {
3521 delete_breakpoint (b);
3522 continue;
3523 }
3524
4a64f543 3525 /* Step-resume breakpoints are meaningless after an exec(). */
2c03e5be 3526 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
c5aa993b
JM
3527 {
3528 delete_breakpoint (b);
3529 continue;
3530 }
3531
611c83ae
PA
3532 /* Longjmp and longjmp-resume breakpoints are also meaningless
3533 after an exec. */
186c406b 3534 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
e2e4d78b 3535 || b->type == bp_longjmp_call_dummy
186c406b 3536 || b->type == bp_exception || b->type == bp_exception_resume)
611c83ae
PA
3537 {
3538 delete_breakpoint (b);
3539 continue;
3540 }
3541
ce78b96d
JB
3542 if (b->type == bp_catchpoint)
3543 {
3544 /* For now, none of the bp_catchpoint breakpoints need to
3545 do anything at this point. In the future, if some of
3546 the catchpoints need to something, we will need to add
3547 a new method, and call this method from here. */
3548 continue;
3549 }
3550
c5aa993b
JM
3551 /* bp_finish is a special case. The only way we ought to be able
3552 to see one of these when an exec() has happened, is if the user
3553 caught a vfork, and then said "finish". Ordinarily a finish just
3554 carries them to the call-site of the current callee, by setting
3555 a temporary bp there and resuming. But in this case, the finish
3556 will carry them entirely through the vfork & exec.
3557
3558 We don't want to allow a bp_finish to remain inserted now. But
3559 we can't safely delete it, 'cause finish_command has a handle to
3560 the bp on a bpstat, and will later want to delete it. There's a
3561 chance (and I've seen it happen) that if we delete the bp_finish
3562 here, that its storage will get reused by the time finish_command
3563 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3564 We really must allow finish_command to delete a bp_finish.
3565
e5dd4106 3566 In the absence of a general solution for the "how do we know
53a5351d
JM
3567 it's safe to delete something others may have handles to?"
3568 problem, what we'll do here is just uninsert the bp_finish, and
3569 let finish_command delete it.
3570
3571 (We know the bp_finish is "doomed" in the sense that it's
3572 momentary, and will be deleted as soon as finish_command sees
3573 the inferior stopped. So it doesn't matter that the bp's
3574 address is probably bogus in the new a.out, unlike e.g., the
3575 solib breakpoints.) */
c5aa993b 3576
c5aa993b
JM
3577 if (b->type == bp_finish)
3578 {
3579 continue;
3580 }
3581
3582 /* Without a symbolic address, we have little hope of the
3583 pre-exec() address meaning the same thing in the post-exec()
4a64f543 3584 a.out. */
c5aa993b
JM
3585 if (b->addr_string == NULL)
3586 {
3587 delete_breakpoint (b);
3588 continue;
3589 }
c5aa993b 3590 }
1900040c 3591 /* FIXME what about longjmp breakpoints? Re-create them here? */
af02033e
PP
3592 create_overlay_event_breakpoint ();
3593 create_longjmp_master_breakpoint ();
3594 create_std_terminate_master_breakpoint ();
186c406b 3595 create_exception_master_breakpoint ();
c906108c
SS
3596}
3597
3598int
d80ee84f 3599detach_breakpoints (ptid_t ptid)
c906108c 3600{
35df4500 3601 struct bp_location *bl, **blp_tmp;
3a1bae8e 3602 int val = 0;
ce696e05 3603 struct cleanup *old_chain = save_inferior_ptid ();
6c95b8df 3604 struct inferior *inf = current_inferior ();
c5aa993b 3605
dfd4cc63 3606 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
8a3fe4f8 3607 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 3608
6c95b8df 3609 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
d80ee84f 3610 inferior_ptid = ptid;
35df4500 3611 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3612 {
35df4500 3613 if (bl->pspace != inf->pspace)
6c95b8df
PA
3614 continue;
3615
bd9673a4
PW
3616 /* This function must physically remove breakpoints locations
3617 from the specified ptid, without modifying the breakpoint
3618 package's state. Locations of type bp_loc_other are only
3619 maintained at GDB side. So, there is no need to remove
3620 these bp_loc_other locations. Moreover, removing these
3621 would modify the breakpoint package's state. */
3622 if (bl->loc_type == bp_loc_other)
3623 continue;
3624
35df4500
TJB
3625 if (bl->inserted)
3626 val |= remove_breakpoint_1 (bl, mark_inserted);
c5aa993b 3627 }
d03285ec
UW
3628
3629 /* Detach single-step breakpoints as well. */
3630 detach_single_step_breakpoints ();
3631
ce696e05 3632 do_cleanups (old_chain);
3a1bae8e 3633 return val;
c906108c
SS
3634}
3635
35df4500 3636/* Remove the breakpoint location BL from the current address space.
6c95b8df
PA
3637 Note that this is used to detach breakpoints from a child fork.
3638 When we get here, the child isn't in the inferior list, and neither
3639 do we have objects to represent its address space --- we should
35df4500 3640 *not* look at bl->pspace->aspace here. */
6c95b8df 3641
c906108c 3642static int
35df4500 3643remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
c906108c
SS
3644{
3645 int val;
c5aa993b 3646
35df4500
TJB
3647 /* BL is never in moribund_locations by our callers. */
3648 gdb_assert (bl->owner != NULL);
2bdf28a0 3649
35df4500 3650 if (bl->owner->enable_state == bp_permanent)
c2c6d25f
JM
3651 /* Permanent breakpoints cannot be inserted or removed. */
3652 return 0;
3653
74960c60
VP
3654 /* The type of none suggests that owner is actually deleted.
3655 This should not ever happen. */
35df4500 3656 gdb_assert (bl->owner->type != bp_none);
0bde7532 3657
35df4500
TJB
3658 if (bl->loc_type == bp_loc_software_breakpoint
3659 || bl->loc_type == bp_loc_hardware_breakpoint)
c906108c 3660 {
c02f5703
MS
3661 /* "Normal" instruction breakpoint: either the standard
3662 trap-instruction bp (bp_breakpoint), or a
3663 bp_hardware_breakpoint. */
3664
3665 /* First check to see if we have to handle an overlay. */
3666 if (overlay_debugging == ovly_off
35df4500
TJB
3667 || bl->section == NULL
3668 || !(section_is_overlay (bl->section)))
c02f5703
MS
3669 {
3670 /* No overlay handling: just remove the breakpoint. */
348d480f 3671 val = bl->owner->ops->remove_location (bl);
c02f5703 3672 }
c906108c
SS
3673 else
3674 {
4a64f543 3675 /* This breakpoint is in an overlay section.
c02f5703
MS
3676 Did we set a breakpoint at the LMA? */
3677 if (!overlay_events_enabled)
3678 {
3679 /* Yes -- overlay event support is not active, so we
3680 should have set a breakpoint at the LMA. Remove it.
3681 */
c02f5703
MS
3682 /* Ignore any failures: if the LMA is in ROM, we will
3683 have already warned when we failed to insert it. */
35df4500
TJB
3684 if (bl->loc_type == bp_loc_hardware_breakpoint)
3685 target_remove_hw_breakpoint (bl->gdbarch,
3686 &bl->overlay_target_info);
c02f5703 3687 else
35df4500
TJB
3688 target_remove_breakpoint (bl->gdbarch,
3689 &bl->overlay_target_info);
c02f5703
MS
3690 }
3691 /* Did we set a breakpoint at the VMA?
3692 If so, we will have marked the breakpoint 'inserted'. */
35df4500 3693 if (bl->inserted)
c906108c 3694 {
c02f5703
MS
3695 /* Yes -- remove it. Previously we did not bother to
3696 remove the breakpoint if the section had been
3697 unmapped, but let's not rely on that being safe. We
3698 don't know what the overlay manager might do. */
aa67235e
UW
3699
3700 /* However, we should remove *software* breakpoints only
3701 if the section is still mapped, or else we overwrite
3702 wrong code with the saved shadow contents. */
348d480f
PA
3703 if (bl->loc_type == bp_loc_hardware_breakpoint
3704 || section_is_mapped (bl->section))
3705 val = bl->owner->ops->remove_location (bl);
aa67235e
UW
3706 else
3707 val = 0;
c906108c 3708 }
c02f5703
MS
3709 else
3710 {
3711 /* No -- not inserted, so no need to remove. No error. */
3712 val = 0;
3713 }
c906108c 3714 }
879d1e6b
UW
3715
3716 /* In some cases, we might not be able to remove a breakpoint
3717 in a shared library that has already been removed, but we
3718 have not yet processed the shlib unload event. */
35df4500 3719 if (val && solib_name_from_address (bl->pspace, bl->address))
879d1e6b
UW
3720 val = 0;
3721
c906108c
SS
3722 if (val)
3723 return val;
35df4500 3724 bl->inserted = (is == mark_inserted);
c906108c 3725 }
35df4500 3726 else if (bl->loc_type == bp_loc_hardware_watchpoint)
c906108c 3727 {
77b06cd7
TJB
3728 gdb_assert (bl->owner->ops != NULL
3729 && bl->owner->ops->remove_location != NULL);
3730
35df4500 3731 bl->inserted = (is == mark_inserted);
77b06cd7 3732 bl->owner->ops->remove_location (bl);
2e70b7b9 3733
c906108c 3734 /* Failure to remove any of the hardware watchpoints comes here. */
35df4500 3735 if ((is == mark_uninserted) && (bl->inserted))
8a3fe4f8 3736 warning (_("Could not remove hardware watchpoint %d."),
35df4500 3737 bl->owner->number);
c906108c 3738 }
35df4500
TJB
3739 else if (bl->owner->type == bp_catchpoint
3740 && breakpoint_enabled (bl->owner)
3741 && !bl->duplicate)
ce78b96d 3742 {
77b06cd7
TJB
3743 gdb_assert (bl->owner->ops != NULL
3744 && bl->owner->ops->remove_location != NULL);
ce78b96d 3745
77b06cd7 3746 val = bl->owner->ops->remove_location (bl);
ce78b96d
JB
3747 if (val)
3748 return val;
77b06cd7 3749
35df4500 3750 bl->inserted = (is == mark_inserted);
ce78b96d 3751 }
c906108c
SS
3752
3753 return 0;
3754}
3755
6c95b8df 3756static int
35df4500 3757remove_breakpoint (struct bp_location *bl, insertion_state_t is)
6c95b8df
PA
3758{
3759 int ret;
3760 struct cleanup *old_chain;
3761
35df4500
TJB
3762 /* BL is never in moribund_locations by our callers. */
3763 gdb_assert (bl->owner != NULL);
2bdf28a0 3764
35df4500 3765 if (bl->owner->enable_state == bp_permanent)
6c95b8df
PA
3766 /* Permanent breakpoints cannot be inserted or removed. */
3767 return 0;
3768
3769 /* The type of none suggests that owner is actually deleted.
3770 This should not ever happen. */
35df4500 3771 gdb_assert (bl->owner->type != bp_none);
6c95b8df
PA
3772
3773 old_chain = save_current_space_and_thread ();
3774
35df4500 3775 switch_to_program_space_and_thread (bl->pspace);
6c95b8df 3776
35df4500 3777 ret = remove_breakpoint_1 (bl, is);
6c95b8df
PA
3778
3779 do_cleanups (old_chain);
3780 return ret;
3781}
3782
c906108c
SS
3783/* Clear the "inserted" flag in all breakpoints. */
3784
25b22b0a 3785void
fba45db2 3786mark_breakpoints_out (void)
c906108c 3787{
35df4500 3788 struct bp_location *bl, **blp_tmp;
c906108c 3789
35df4500
TJB
3790 ALL_BP_LOCATIONS (bl, blp_tmp)
3791 if (bl->pspace == current_program_space)
3792 bl->inserted = 0;
c906108c
SS
3793}
3794
53a5351d
JM
3795/* Clear the "inserted" flag in all breakpoints and delete any
3796 breakpoints which should go away between runs of the program.
c906108c
SS
3797
3798 Plus other such housekeeping that has to be done for breakpoints
3799 between runs.
3800
53a5351d
JM
3801 Note: this function gets called at the end of a run (by
3802 generic_mourn_inferior) and when a run begins (by
4a64f543 3803 init_wait_for_inferior). */
c906108c
SS
3804
3805
3806
3807void
fba45db2 3808breakpoint_init_inferior (enum inf_context context)
c906108c 3809{
35df4500
TJB
3810 struct breakpoint *b, *b_tmp;
3811 struct bp_location *bl, **blp_tmp;
1c5cfe86 3812 int ix;
6c95b8df 3813 struct program_space *pspace = current_program_space;
c906108c 3814
50c71eaf
PA
3815 /* If breakpoint locations are shared across processes, then there's
3816 nothing to do. */
f5656ead 3817 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
3818 return;
3819
35df4500 3820 ALL_BP_LOCATIONS (bl, blp_tmp)
6c95b8df 3821 {
35df4500
TJB
3822 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
3823 if (bl->pspace == pspace
3824 && bl->owner->enable_state != bp_permanent)
3825 bl->inserted = 0;
6c95b8df 3826 }
075f6582 3827
35df4500 3828 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 3829 {
6c95b8df
PA
3830 if (b->loc && b->loc->pspace != pspace)
3831 continue;
3832
c5aa993b
JM
3833 switch (b->type)
3834 {
3835 case bp_call_dummy:
e2e4d78b 3836 case bp_longjmp_call_dummy:
c906108c 3837
c5aa993b 3838 /* If the call dummy breakpoint is at the entry point it will
ab92d69b
PA
3839 cause problems when the inferior is rerun, so we better get
3840 rid of it. */
3841
3842 case bp_watchpoint_scope:
3843
3844 /* Also get rid of scope breakpoints. */
3845
3846 case bp_shlib_event:
3847
3848 /* Also remove solib event breakpoints. Their addresses may
3849 have changed since the last time we ran the program.
3850 Actually we may now be debugging against different target;
3851 and so the solib backend that installed this breakpoint may
3852 not be used in by the target. E.g.,
3853
3854 (gdb) file prog-linux
3855 (gdb) run # native linux target
3856 ...
3857 (gdb) kill
3858 (gdb) file prog-win.exe
3859 (gdb) tar rem :9999 # remote Windows gdbserver.
3860 */
c906108c 3861
f59f708a
PA
3862 case bp_step_resume:
3863
3864 /* Also remove step-resume breakpoints. */
3865
c5aa993b
JM
3866 delete_breakpoint (b);
3867 break;
c906108c 3868
c5aa993b
JM
3869 case bp_watchpoint:
3870 case bp_hardware_watchpoint:
3871 case bp_read_watchpoint:
3872 case bp_access_watchpoint:
3a5c3e22
PA
3873 {
3874 struct watchpoint *w = (struct watchpoint *) b;
c906108c 3875
3a5c3e22
PA
3876 /* Likewise for watchpoints on local expressions. */
3877 if (w->exp_valid_block != NULL)
3878 delete_breakpoint (b);
3879 else if (context == inf_starting)
3880 {
3881 /* Reset val field to force reread of starting value in
3882 insert_breakpoints. */
3883 if (w->val)
3884 value_free (w->val);
3885 w->val = NULL;
3886 w->val_valid = 0;
c860120c 3887 }
3a5c3e22 3888 }
c5aa993b
JM
3889 break;
3890 default:
c5aa993b
JM
3891 break;
3892 }
3893 }
1c5cfe86
PA
3894
3895 /* Get rid of the moribund locations. */
35df4500
TJB
3896 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
3897 decref_bp_location (&bl);
1c5cfe86 3898 VEC_free (bp_location_p, moribund_locations);
c906108c
SS
3899}
3900
6c95b8df
PA
3901/* These functions concern about actual breakpoints inserted in the
3902 target --- to e.g. check if we need to do decr_pc adjustment or if
3903 we need to hop over the bkpt --- so we check for address space
3904 match, not program space. */
3905
c2c6d25f
JM
3906/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3907 exists at PC. It returns ordinary_breakpoint_here if it's an
3908 ordinary breakpoint, or permanent_breakpoint_here if it's a
3909 permanent breakpoint.
3910 - When continuing from a location with an ordinary breakpoint, we
3911 actually single step once before calling insert_breakpoints.
e5dd4106 3912 - When continuing from a location with a permanent breakpoint, we
c2c6d25f
JM
3913 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3914 the target, to advance the PC past the breakpoint. */
c906108c 3915
c2c6d25f 3916enum breakpoint_here
6c95b8df 3917breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
c906108c 3918{
35df4500 3919 struct bp_location *bl, **blp_tmp;
c2c6d25f 3920 int any_breakpoint_here = 0;
c906108c 3921
35df4500 3922 ALL_BP_LOCATIONS (bl, blp_tmp)
075f6582 3923 {
35df4500
TJB
3924 if (bl->loc_type != bp_loc_software_breakpoint
3925 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
3926 continue;
3927
f1310107 3928 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
35df4500
TJB
3929 if ((breakpoint_enabled (bl->owner)
3930 || bl->owner->enable_state == bp_permanent)
f1310107 3931 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
3932 {
3933 if (overlay_debugging
35df4500
TJB
3934 && section_is_overlay (bl->section)
3935 && !section_is_mapped (bl->section))
075f6582 3936 continue; /* unmapped overlay -- can't be a match */
35df4500 3937 else if (bl->owner->enable_state == bp_permanent)
075f6582
DJ
3938 return permanent_breakpoint_here;
3939 else
3940 any_breakpoint_here = 1;
3941 }
3942 }
c906108c 3943
c2c6d25f 3944 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
3945}
3946
1c5cfe86
PA
3947/* Return true if there's a moribund breakpoint at PC. */
3948
3949int
6c95b8df 3950moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
1c5cfe86
PA
3951{
3952 struct bp_location *loc;
3953 int ix;
3954
3955 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
f1310107 3956 if (breakpoint_location_address_match (loc, aspace, pc))
1c5cfe86
PA
3957 return 1;
3958
3959 return 0;
3960}
c2c6d25f 3961
c36b740a 3962/* Returns non-zero if there's a breakpoint inserted at PC, which is
4a64f543
MS
3963 inserted using regular breakpoint_chain / bp_location array
3964 mechanism. This does not check for single-step breakpoints, which
3965 are inserted and removed using direct target manipulation. */
c906108c
SS
3966
3967int
4a64f543
MS
3968regular_breakpoint_inserted_here_p (struct address_space *aspace,
3969 CORE_ADDR pc)
c906108c 3970{
35df4500 3971 struct bp_location *bl, **blp_tmp;
c906108c 3972
35df4500 3973 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 3974 {
35df4500
TJB
3975 if (bl->loc_type != bp_loc_software_breakpoint
3976 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
3977 continue;
3978
35df4500 3979 if (bl->inserted
f1310107 3980 && breakpoint_location_address_match (bl, aspace, pc))
075f6582
DJ
3981 {
3982 if (overlay_debugging
35df4500
TJB
3983 && section_is_overlay (bl->section)
3984 && !section_is_mapped (bl->section))
075f6582
DJ
3985 continue; /* unmapped overlay -- can't be a match */
3986 else
3987 return 1;
3988 }
c5aa993b 3989 }
c36b740a
VP
3990 return 0;
3991}
3992
3993/* Returns non-zero iff there's either regular breakpoint
3994 or a single step breakpoint inserted at PC. */
3995
3996int
6c95b8df 3997breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
c36b740a 3998{
6c95b8df 3999 if (regular_breakpoint_inserted_here_p (aspace, pc))
c36b740a 4000 return 1;
c906108c 4001
6c95b8df 4002 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
4003 return 1;
4004
c906108c
SS
4005 return 0;
4006}
4007
4fa8626c
DJ
4008/* This function returns non-zero iff there is a software breakpoint
4009 inserted at PC. */
4010
4011int
3e43a32a
MS
4012software_breakpoint_inserted_here_p (struct address_space *aspace,
4013 CORE_ADDR pc)
4fa8626c 4014{
35df4500 4015 struct bp_location *bl, **blp_tmp;
4fa8626c 4016
35df4500 4017 ALL_BP_LOCATIONS (bl, blp_tmp)
4fa8626c 4018 {
35df4500 4019 if (bl->loc_type != bp_loc_software_breakpoint)
4fa8626c
DJ
4020 continue;
4021
35df4500
TJB
4022 if (bl->inserted
4023 && breakpoint_address_match (bl->pspace->aspace, bl->address,
6c95b8df 4024 aspace, pc))
4fa8626c
DJ
4025 {
4026 if (overlay_debugging
35df4500
TJB
4027 && section_is_overlay (bl->section)
4028 && !section_is_mapped (bl->section))
4fa8626c
DJ
4029 continue; /* unmapped overlay -- can't be a match */
4030 else
4031 return 1;
4032 }
4033 }
4034
1aafd4da 4035 /* Also check for software single-step breakpoints. */
6c95b8df 4036 if (single_step_breakpoint_inserted_here_p (aspace, pc))
1aafd4da
UW
4037 return 1;
4038
4fa8626c
DJ
4039 return 0;
4040}
4041
9093389c
PA
4042int
4043hardware_watchpoint_inserted_in_range (struct address_space *aspace,
4044 CORE_ADDR addr, ULONGEST len)
4045{
4046 struct breakpoint *bpt;
4047
4048 ALL_BREAKPOINTS (bpt)
4049 {
4050 struct bp_location *loc;
4051
4052 if (bpt->type != bp_hardware_watchpoint
4053 && bpt->type != bp_access_watchpoint)
4054 continue;
4055
4056 if (!breakpoint_enabled (bpt))
4057 continue;
4058
4059 for (loc = bpt->loc; loc; loc = loc->next)
4060 if (loc->pspace->aspace == aspace && loc->inserted)
4061 {
4062 CORE_ADDR l, h;
4063
4064 /* Check for intersection. */
4065 l = max (loc->address, addr);
4066 h = min (loc->address + loc->length, addr + len);
4067 if (l < h)
4068 return 1;
4069 }
4070 }
4071 return 0;
4072}
4073
075f6582
DJ
4074/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
4075 PC is valid for process/thread PTID. */
c906108c
SS
4076
4077int
6c95b8df
PA
4078breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc,
4079 ptid_t ptid)
c906108c 4080{
35df4500 4081 struct bp_location *bl, **blp_tmp;
4a306c9a 4082 /* The thread and task IDs associated to PTID, computed lazily. */
a6f1cd96 4083 int thread = -1;
4a306c9a 4084 int task = 0;
a6f1cd96 4085
35df4500 4086 ALL_BP_LOCATIONS (bl, blp_tmp)
c5aa993b 4087 {
35df4500
TJB
4088 if (bl->loc_type != bp_loc_software_breakpoint
4089 && bl->loc_type != bp_loc_hardware_breakpoint)
075f6582
DJ
4090 continue;
4091
35df4500
TJB
4092 /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */
4093 if (!breakpoint_enabled (bl->owner)
4094 && bl->owner->enable_state != bp_permanent)
a6f1cd96
JB
4095 continue;
4096
f1310107 4097 if (!breakpoint_location_address_match (bl, aspace, pc))
a6f1cd96
JB
4098 continue;
4099
35df4500 4100 if (bl->owner->thread != -1)
075f6582 4101 {
a6f1cd96
JB
4102 /* This is a thread-specific breakpoint. Check that ptid
4103 matches that thread. If thread hasn't been computed yet,
4104 it is now time to do so. */
4105 if (thread == -1)
4106 thread = pid_to_thread_id (ptid);
35df4500 4107 if (bl->owner->thread != thread)
a6f1cd96 4108 continue;
075f6582 4109 }
a6f1cd96 4110
35df4500 4111 if (bl->owner->task != 0)
4a306c9a
JB
4112 {
4113 /* This is a task-specific breakpoint. Check that ptid
4114 matches that task. If task hasn't been computed yet,
4115 it is now time to do so. */
4116 if (task == 0)
4117 task = ada_get_task_number (ptid);
35df4500 4118 if (bl->owner->task != task)
4a306c9a
JB
4119 continue;
4120 }
4121
a6f1cd96 4122 if (overlay_debugging
35df4500
TJB
4123 && section_is_overlay (bl->section)
4124 && !section_is_mapped (bl->section))
a6f1cd96
JB
4125 continue; /* unmapped overlay -- can't be a match */
4126
4127 return 1;
c5aa993b 4128 }
c906108c
SS
4129
4130 return 0;
4131}
c906108c 4132\f
c5aa993b 4133
c906108c
SS
4134/* bpstat stuff. External routines' interfaces are documented
4135 in breakpoint.h. */
4136
4137int
c326b90e 4138is_catchpoint (struct breakpoint *ep)
c906108c 4139{
533be4dd 4140 return (ep->type == bp_catchpoint);
c906108c
SS
4141}
4142
f431efe5
PA
4143/* Frees any storage that is part of a bpstat. Does not walk the
4144 'next' chain. */
4145
4146static void
198757a8
VP
4147bpstat_free (bpstat bs)
4148{
4149 if (bs->old_val != NULL)
4150 value_free (bs->old_val);
9add0f1b 4151 decref_counted_command_line (&bs->commands);
f431efe5 4152 decref_bp_location (&bs->bp_location_at);
198757a8
VP
4153 xfree (bs);
4154}
4155
c906108c
SS
4156/* Clear a bpstat so that it says we are not at any breakpoint.
4157 Also free any storage that is part of a bpstat. */
4158
4159void
fba45db2 4160bpstat_clear (bpstat *bsp)
c906108c
SS
4161{
4162 bpstat p;
4163 bpstat q;
4164
4165 if (bsp == 0)
4166 return;
4167 p = *bsp;
4168 while (p != NULL)
4169 {
4170 q = p->next;
198757a8 4171 bpstat_free (p);
c906108c
SS
4172 p = q;
4173 }
4174 *bsp = NULL;
4175}
4176
4177/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4178 is part of the bpstat is copied as well. */
4179
4180bpstat
fba45db2 4181bpstat_copy (bpstat bs)
c906108c
SS
4182{
4183 bpstat p = NULL;
4184 bpstat tmp;
4185 bpstat retval = NULL;
4186
4187 if (bs == NULL)
4188 return bs;
4189
4190 for (; bs != NULL; bs = bs->next)
4191 {
4192 tmp = (bpstat) xmalloc (sizeof (*tmp));
4193 memcpy (tmp, bs, sizeof (*tmp));
9add0f1b 4194 incref_counted_command_line (tmp->commands);
f431efe5 4195 incref_bp_location (tmp->bp_location_at);
31cc81e9 4196 if (bs->old_val != NULL)
3c3185ac
JK
4197 {
4198 tmp->old_val = value_copy (bs->old_val);
4199 release_value (tmp->old_val);
4200 }
31cc81e9 4201
c906108c
SS
4202 if (p == NULL)
4203 /* This is the first thing in the chain. */
4204 retval = tmp;
4205 else
4206 p->next = tmp;
4207 p = tmp;
4208 }
4209 p->next = NULL;
4210 return retval;
4211}
4212
4a64f543 4213/* Find the bpstat associated with this breakpoint. */
c906108c
SS
4214
4215bpstat
fba45db2 4216bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 4217{
c5aa993b
JM
4218 if (bsp == NULL)
4219 return NULL;
c906108c 4220
c5aa993b
JM
4221 for (; bsp != NULL; bsp = bsp->next)
4222 {
f431efe5 4223 if (bsp->breakpoint_at == breakpoint)
c5aa993b
JM
4224 return bsp;
4225 }
c906108c
SS
4226 return NULL;
4227}
4228
ab04a2af
TT
4229/* See breakpoint.h. */
4230
47591c29 4231int
427cd150 4232bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
ab04a2af 4233{
ab04a2af
TT
4234 for (; bsp != NULL; bsp = bsp->next)
4235 {
427cd150
TT
4236 if (bsp->breakpoint_at == NULL)
4237 {
4238 /* A moribund location can never explain a signal other than
4239 GDB_SIGNAL_TRAP. */
4240 if (sig == GDB_SIGNAL_TRAP)
47591c29 4241 return 1;
427cd150
TT
4242 }
4243 else
47591c29
PA
4244 {
4245 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4246 sig))
4247 return 1;
4248 }
ab04a2af
TT
4249 }
4250
47591c29 4251 return 0;
ab04a2af
TT
4252}
4253
4a64f543
MS
4254/* Put in *NUM the breakpoint number of the first breakpoint we are
4255 stopped at. *BSP upon return is a bpstat which points to the
4256 remaining breakpoints stopped at (but which is not guaranteed to be
4257 good for anything but further calls to bpstat_num).
4258
8671a17b
PA
4259 Return 0 if passed a bpstat which does not indicate any breakpoints.
4260 Return -1 if stopped at a breakpoint that has been deleted since
4261 we set it.
4262 Return 1 otherwise. */
c906108c
SS
4263
4264int
8671a17b 4265bpstat_num (bpstat *bsp, int *num)
c906108c
SS
4266{
4267 struct breakpoint *b;
4268
4269 if ((*bsp) == NULL)
4270 return 0; /* No more breakpoint values */
8671a17b 4271
4a64f543
MS
4272 /* We assume we'll never have several bpstats that correspond to a
4273 single breakpoint -- otherwise, this function might return the
4274 same number more than once and this will look ugly. */
f431efe5 4275 b = (*bsp)->breakpoint_at;
8671a17b
PA
4276 *bsp = (*bsp)->next;
4277 if (b == NULL)
4278 return -1; /* breakpoint that's been deleted since */
4279
4280 *num = b->number; /* We have its number */
4281 return 1;
c906108c
SS
4282}
4283
e93ca019 4284/* See breakpoint.h. */
c906108c
SS
4285
4286void
e93ca019 4287bpstat_clear_actions (void)
c906108c 4288{
e93ca019
JK
4289 struct thread_info *tp;
4290 bpstat bs;
4291
4292 if (ptid_equal (inferior_ptid, null_ptid))
4293 return;
4294
4295 tp = find_thread_ptid (inferior_ptid);
4296 if (tp == NULL)
4297 return;
4298
4299 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
c906108c 4300 {
9add0f1b 4301 decref_counted_command_line (&bs->commands);
abf85f46 4302
c906108c
SS
4303 if (bs->old_val != NULL)
4304 {
4305 value_free (bs->old_val);
4306 bs->old_val = NULL;
4307 }
4308 }
4309}
4310
f3b1572e
PA
4311/* Called when a command is about to proceed the inferior. */
4312
4313static void
4314breakpoint_about_to_proceed (void)
4315{
4316 if (!ptid_equal (inferior_ptid, null_ptid))
4317 {
4318 struct thread_info *tp = inferior_thread ();
4319
4320 /* Allow inferior function calls in breakpoint commands to not
4321 interrupt the command list. When the call finishes
4322 successfully, the inferior will be standing at the same
4323 breakpoint as if nothing happened. */
16c381f0 4324 if (tp->control.in_infcall)
f3b1572e
PA
4325 return;
4326 }
4327
4328 breakpoint_proceeded = 1;
4329}
4330
4a64f543
MS
4331/* Stub for cleaning up our state if we error-out of a breakpoint
4332 command. */
c906108c 4333static void
4efb68b1 4334cleanup_executing_breakpoints (void *ignore)
c906108c
SS
4335{
4336 executing_breakpoint_commands = 0;
4337}
4338
abf85f46
JK
4339/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4340 or its equivalent. */
4341
4342static int
4343command_line_is_silent (struct command_line *cmd)
4344{
4345 return cmd && (strcmp ("silent", cmd->line) == 0
4346 || (xdb_commands && strcmp ("Q", cmd->line) == 0));
4347}
4348
4a64f543
MS
4349/* Execute all the commands associated with all the breakpoints at
4350 this location. Any of these commands could cause the process to
4351 proceed beyond this point, etc. We look out for such changes by
4352 checking the global "breakpoint_proceeded" after each command.
c906108c 4353
347bddb7
PA
4354 Returns true if a breakpoint command resumed the inferior. In that
4355 case, it is the caller's responsibility to recall it again with the
4356 bpstat of the current thread. */
4357
4358static int
4359bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
4360{
4361 bpstat bs;
4362 struct cleanup *old_chain;
347bddb7 4363 int again = 0;
c906108c
SS
4364
4365 /* Avoid endless recursion if a `source' command is contained
4366 in bs->commands. */
4367 if (executing_breakpoint_commands)
347bddb7 4368 return 0;
c906108c
SS
4369
4370 executing_breakpoint_commands = 1;
4371 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
4372
cf6c5ffb
TT
4373 prevent_dont_repeat ();
4374
4a64f543 4375 /* This pointer will iterate over the list of bpstat's. */
c906108c
SS
4376 bs = *bsp;
4377
4378 breakpoint_proceeded = 0;
4379 for (; bs != NULL; bs = bs->next)
4380 {
9add0f1b 4381 struct counted_command_line *ccmd;
6c50ab1c
JB
4382 struct command_line *cmd;
4383 struct cleanup *this_cmd_tree_chain;
4384
4385 /* Take ownership of the BSP's command tree, if it has one.
4386
4387 The command tree could legitimately contain commands like
4388 'step' and 'next', which call clear_proceed_status, which
4389 frees stop_bpstat's command tree. To make sure this doesn't
4390 free the tree we're executing out from under us, we need to
4391 take ownership of the tree ourselves. Since a given bpstat's
4392 commands are only executed once, we don't need to copy it; we
4393 can clear the pointer in the bpstat, and make sure we free
4394 the tree when we're done. */
9add0f1b
TT
4395 ccmd = bs->commands;
4396 bs->commands = NULL;
abf85f46
JK
4397 this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd);
4398 cmd = ccmd ? ccmd->commands : NULL;
4399 if (command_line_is_silent (cmd))
4400 {
4401 /* The action has been already done by bpstat_stop_status. */
4402 cmd = cmd->next;
4403 }
6c50ab1c 4404
c906108c
SS
4405 while (cmd != NULL)
4406 {
4407 execute_control_command (cmd);
4408
4409 if (breakpoint_proceeded)
4410 break;
4411 else
4412 cmd = cmd->next;
4413 }
6c50ab1c
JB
4414
4415 /* We can free this command tree now. */
4416 do_cleanups (this_cmd_tree_chain);
4417
c906108c 4418 if (breakpoint_proceeded)
32c1e744
VP
4419 {
4420 if (target_can_async_p ())
347bddb7
PA
4421 /* If we are in async mode, then the target might be still
4422 running, not stopped at any breakpoint, so nothing for
4423 us to do here -- just return to the event loop. */
4424 ;
32c1e744
VP
4425 else
4426 /* In sync mode, when execute_control_command returns
4427 we're already standing on the next breakpoint.
347bddb7
PA
4428 Breakpoint commands for that stop were not run, since
4429 execute_command does not run breakpoint commands --
4430 only command_line_handler does, but that one is not
4431 involved in execution of breakpoint commands. So, we
4432 can now execute breakpoint commands. It should be
4433 noted that making execute_command do bpstat actions is
4434 not an option -- in this case we'll have recursive
4435 invocation of bpstat for each breakpoint with a
4436 command, and can easily blow up GDB stack. Instead, we
4437 return true, which will trigger the caller to recall us
4438 with the new stop_bpstat. */
4439 again = 1;
4440 break;
32c1e744 4441 }
c906108c 4442 }
c2b8ed2c 4443 do_cleanups (old_chain);
347bddb7
PA
4444 return again;
4445}
4446
4447void
4448bpstat_do_actions (void)
4449{
353d1d73
JK
4450 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4451
347bddb7
PA
4452 /* Do any commands attached to breakpoint we are stopped at. */
4453 while (!ptid_equal (inferior_ptid, null_ptid)
4454 && target_has_execution
4455 && !is_exited (inferior_ptid)
4456 && !is_executing (inferior_ptid))
4457 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4458 and only return when it is stopped at the next breakpoint, we
4459 keep doing breakpoint actions until it returns false to
4460 indicate the inferior was not resumed. */
16c381f0 4461 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
347bddb7 4462 break;
353d1d73
JK
4463
4464 discard_cleanups (cleanup_if_error);
c906108c
SS
4465}
4466
fa4727a6
DJ
4467/* Print out the (old or new) value associated with a watchpoint. */
4468
4469static void
4470watchpoint_value_print (struct value *val, struct ui_file *stream)
4471{
4472 if (val == NULL)
4473 fprintf_unfiltered (stream, _("<unreadable>"));
4474 else
79a45b7d
TT
4475 {
4476 struct value_print_options opts;
4477 get_user_print_options (&opts);
4478 value_print (val, stream, &opts);
4479 }
fa4727a6
DJ
4480}
4481
e514a9d6 4482/* Generic routine for printing messages indicating why we
4a64f543 4483 stopped. The behavior of this function depends on the value
e514a9d6
JM
4484 'print_it' in the bpstat structure. Under some circumstances we
4485 may decide not to print anything here and delegate the task to
4a64f543 4486 normal_stop(). */
e514a9d6
JM
4487
4488static enum print_stop_action
4489print_bp_stop_message (bpstat bs)
4490{
4491 switch (bs->print_it)
4492 {
4493 case print_it_noop:
4a64f543 4494 /* Nothing should be printed for this bpstat entry. */
e514a9d6
JM
4495 return PRINT_UNKNOWN;
4496 break;
4497
4498 case print_it_done:
4499 /* We still want to print the frame, but we already printed the
4a64f543 4500 relevant messages. */
e514a9d6
JM
4501 return PRINT_SRC_AND_LOC;
4502 break;
4503
4504 case print_it_normal:
4f8d1dc6 4505 {
f431efe5
PA
4506 struct breakpoint *b = bs->breakpoint_at;
4507
1a6a67de
TJB
4508 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4509 which has since been deleted. */
4510 if (b == NULL)
4511 return PRINT_UNKNOWN;
4512
348d480f
PA
4513 /* Normal case. Call the breakpoint's print_it method. */
4514 return b->ops->print_it (bs);
4f8d1dc6 4515 }
348d480f 4516 break;
3086aeae 4517
e514a9d6 4518 default:
8e65ff28 4519 internal_error (__FILE__, __LINE__,
e2e0b3e5 4520 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 4521 break;
c906108c 4522 }
c906108c
SS
4523}
4524
edcc5120
TT
4525/* A helper function that prints a shared library stopped event. */
4526
4527static void
4528print_solib_event (int is_catchpoint)
4529{
4530 int any_deleted
4531 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4532 int any_added
4533 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4534
4535 if (!is_catchpoint)
4536 {
4537 if (any_added || any_deleted)
4538 ui_out_text (current_uiout,
4539 _("Stopped due to shared library event:\n"));
4540 else
4541 ui_out_text (current_uiout,
4542 _("Stopped due to shared library event (no "
4543 "libraries added or removed)\n"));
4544 }
4545
4546 if (ui_out_is_mi_like_p (current_uiout))
4547 ui_out_field_string (current_uiout, "reason",
4548 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4549
4550 if (any_deleted)
4551 {
4552 struct cleanup *cleanup;
4553 char *name;
4554 int ix;
4555
4556 ui_out_text (current_uiout, _(" Inferior unloaded "));
4557 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4558 "removed");
4559 for (ix = 0;
4560 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4561 ix, name);
4562 ++ix)
4563 {
4564 if (ix > 0)
4565 ui_out_text (current_uiout, " ");
4566 ui_out_field_string (current_uiout, "library", name);
4567 ui_out_text (current_uiout, "\n");
4568 }
4569
4570 do_cleanups (cleanup);
4571 }
4572
4573 if (any_added)
4574 {
4575 struct so_list *iter;
4576 int ix;
4577 struct cleanup *cleanup;
4578
4579 ui_out_text (current_uiout, _(" Inferior loaded "));
4580 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4581 "added");
4582 for (ix = 0;
4583 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4584 ix, iter);
4585 ++ix)
4586 {
4587 if (ix > 0)
4588 ui_out_text (current_uiout, " ");
4589 ui_out_field_string (current_uiout, "library", iter->so_name);
4590 ui_out_text (current_uiout, "\n");
4591 }
4592
4593 do_cleanups (cleanup);
4594 }
4595}
4596
e514a9d6
JM
4597/* Print a message indicating what happened. This is called from
4598 normal_stop(). The input to this routine is the head of the bpstat
36dfb11c
TT
4599 list - a list of the eventpoints that caused this stop. KIND is
4600 the target_waitkind for the stopping event. This
e514a9d6
JM
4601 routine calls the generic print routine for printing a message
4602 about reasons for stopping. This will print (for example) the
4603 "Breakpoint n," part of the output. The return value of this
4604 routine is one of:
c906108c 4605
4a64f543 4606 PRINT_UNKNOWN: Means we printed nothing.
917317f4 4607 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4a64f543 4608 code to print the location. An example is
c5aa993b
JM
4609 "Breakpoint 1, " which should be followed by
4610 the location.
917317f4 4611 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
4612 to also print the location part of the message.
4613 An example is the catch/throw messages, which
4a64f543 4614 don't require a location appended to the end.
917317f4 4615 PRINT_NOTHING: We have done some printing and we don't need any
4a64f543 4616 further info to be printed. */
c906108c 4617
917317f4 4618enum print_stop_action
36dfb11c 4619bpstat_print (bpstat bs, int kind)
c906108c
SS
4620{
4621 int val;
c5aa993b 4622
c906108c 4623 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
4624 (Currently all watchpoints go on the bpstat whether hit or not.
4625 That probably could (should) be changed, provided care is taken
c906108c 4626 with respect to bpstat_explains_signal). */
e514a9d6
JM
4627 for (; bs; bs = bs->next)
4628 {
4629 val = print_bp_stop_message (bs);
4630 if (val == PRINT_SRC_ONLY
4631 || val == PRINT_SRC_AND_LOC
4632 || val == PRINT_NOTHING)
4633 return val;
4634 }
c906108c 4635
36dfb11c
TT
4636 /* If we had hit a shared library event breakpoint,
4637 print_bp_stop_message would print out this message. If we hit an
4638 OS-level shared library event, do the same thing. */
4639 if (kind == TARGET_WAITKIND_LOADED)
4640 {
edcc5120 4641 print_solib_event (0);
36dfb11c
TT
4642 return PRINT_NOTHING;
4643 }
4644
e514a9d6 4645 /* We reached the end of the chain, or we got a null BS to start
4a64f543 4646 with and nothing was printed. */
917317f4 4647 return PRINT_UNKNOWN;
c906108c
SS
4648}
4649
c42bd95a
DE
4650/* Evaluate the expression EXP and return 1 if value is zero.
4651 This returns the inverse of the condition because it is called
4652 from catch_errors which returns 0 if an exception happened, and if an
4653 exception happens we want execution to stop.
4a64f543 4654 The argument is a "struct expression *" that has been cast to a
c42bd95a 4655 "void *" to make it pass through catch_errors. */
c906108c
SS
4656
4657static int
4efb68b1 4658breakpoint_cond_eval (void *exp)
c906108c 4659{
278cd55f 4660 struct value *mark = value_mark ();
c5aa993b 4661 int i = !value_true (evaluate_expression ((struct expression *) exp));
cc59ec59 4662
c906108c
SS
4663 value_free_to_mark (mark);
4664 return i;
4665}
4666
5760d0ab 4667/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
c906108c
SS
4668
4669static bpstat
5760d0ab 4670bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
c906108c
SS
4671{
4672 bpstat bs;
4673
4674 bs = (bpstat) xmalloc (sizeof (*bs));
5760d0ab
JK
4675 bs->next = NULL;
4676 **bs_link_pointer = bs;
4677 *bs_link_pointer = &bs->next;
f431efe5
PA
4678 bs->breakpoint_at = bl->owner;
4679 bs->bp_location_at = bl;
4680 incref_bp_location (bl);
c906108c
SS
4681 /* If the condition is false, etc., don't do the commands. */
4682 bs->commands = NULL;
4683 bs->old_val = NULL;
4684 bs->print_it = print_it_normal;
4685 return bs;
4686}
4687\f
d983da9c
DJ
4688/* The target has stopped with waitstatus WS. Check if any hardware
4689 watchpoints have triggered, according to the target. */
4690
4691int
4692watchpoints_triggered (struct target_waitstatus *ws)
4693{
d92524f1 4694 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
d983da9c
DJ
4695 CORE_ADDR addr;
4696 struct breakpoint *b;
4697
4698 if (!stopped_by_watchpoint)
4699 {
4700 /* We were not stopped by a watchpoint. Mark all watchpoints
4701 as not triggered. */
4702 ALL_BREAKPOINTS (b)
cc60f2e3 4703 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4704 {
4705 struct watchpoint *w = (struct watchpoint *) b;
4706
4707 w->watchpoint_triggered = watch_triggered_no;
4708 }
d983da9c
DJ
4709
4710 return 0;
4711 }
4712
4713 if (!target_stopped_data_address (&current_target, &addr))
4714 {
4715 /* We were stopped by a watchpoint, but we don't know where.
4716 Mark all watchpoints as unknown. */
4717 ALL_BREAKPOINTS (b)
cc60f2e3 4718 if (is_hardware_watchpoint (b))
3a5c3e22
PA
4719 {
4720 struct watchpoint *w = (struct watchpoint *) b;
4721
4722 w->watchpoint_triggered = watch_triggered_unknown;
4723 }
d983da9c 4724
3c4797ba 4725 return 1;
d983da9c
DJ
4726 }
4727
4728 /* The target could report the data address. Mark watchpoints
4729 affected by this data address as triggered, and all others as not
4730 triggered. */
4731
4732 ALL_BREAKPOINTS (b)
cc60f2e3 4733 if (is_hardware_watchpoint (b))
d983da9c 4734 {
3a5c3e22 4735 struct watchpoint *w = (struct watchpoint *) b;
a5606eee 4736 struct bp_location *loc;
d983da9c 4737
3a5c3e22 4738 w->watchpoint_triggered = watch_triggered_no;
a5606eee 4739 for (loc = b->loc; loc; loc = loc->next)
9c06b0b4 4740 {
3a5c3e22 4741 if (is_masked_watchpoint (b))
9c06b0b4 4742 {
3a5c3e22
PA
4743 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4744 CORE_ADDR start = loc->address & w->hw_wp_mask;
9c06b0b4
TJB
4745
4746 if (newaddr == start)
4747 {
3a5c3e22 4748 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4749 break;
4750 }
4751 }
4752 /* Exact match not required. Within range is sufficient. */
4753 else if (target_watchpoint_addr_within_range (&current_target,
4754 addr, loc->address,
4755 loc->length))
4756 {
3a5c3e22 4757 w->watchpoint_triggered = watch_triggered_yes;
9c06b0b4
TJB
4758 break;
4759 }
4760 }
d983da9c
DJ
4761 }
4762
4763 return 1;
4764}
4765
c906108c
SS
4766/* Possible return values for watchpoint_check (this can't be an enum
4767 because of check_errors). */
4768/* The watchpoint has been deleted. */
4769#define WP_DELETED 1
4770/* The value has changed. */
4771#define WP_VALUE_CHANGED 2
4772/* The value has not changed. */
4773#define WP_VALUE_NOT_CHANGED 3
60e1c644
PA
4774/* Ignore this watchpoint, no matter if the value changed or not. */
4775#define WP_IGNORE 4
c906108c
SS
4776
4777#define BP_TEMPFLAG 1
4778#define BP_HARDWAREFLAG 2
4779
4a64f543
MS
4780/* Evaluate watchpoint condition expression and check if its value
4781 changed.
553e4c11
JB
4782
4783 P should be a pointer to struct bpstat, but is defined as a void *
4784 in order for this function to be usable with catch_errors. */
c906108c
SS
4785
4786static int
4efb68b1 4787watchpoint_check (void *p)
c906108c
SS
4788{
4789 bpstat bs = (bpstat) p;
3a5c3e22 4790 struct watchpoint *b;
c906108c
SS
4791 struct frame_info *fr;
4792 int within_current_scope;
4793
f431efe5 4794 /* BS is built from an existing struct breakpoint. */
2bdf28a0 4795 gdb_assert (bs->breakpoint_at != NULL);
3a5c3e22 4796 b = (struct watchpoint *) bs->breakpoint_at;
d0fb5eae 4797
f6bc2008
PA
4798 /* If this is a local watchpoint, we only want to check if the
4799 watchpoint frame is in scope if the current thread is the thread
4800 that was used to create the watchpoint. */
4801 if (!watchpoint_in_thread_scope (b))
60e1c644 4802 return WP_IGNORE;
f6bc2008 4803
c906108c
SS
4804 if (b->exp_valid_block == NULL)
4805 within_current_scope = 1;
4806 else
4807 {
edb3359d
DJ
4808 struct frame_info *frame = get_current_frame ();
4809 struct gdbarch *frame_arch = get_frame_arch (frame);
4810 CORE_ADDR frame_pc = get_frame_pc (frame);
4811
4a64f543
MS
4812 /* in_function_epilogue_p() returns a non-zero value if we're
4813 still in the function but the stack frame has already been
4814 invalidated. Since we can't rely on the values of local
4815 variables after the stack has been destroyed, we are treating
4816 the watchpoint in that state as `not changed' without further
4817 checking. Don't mark watchpoints as changed if the current
4818 frame is in an epilogue - even if they are in some other
4819 frame, our view of the stack is likely to be wrong and
4820 frame_find_by_id could error out. */
a0f49112 4821 if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc))
60e1c644 4822 return WP_IGNORE;
a0f49112 4823
101dcfbe 4824 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 4825 within_current_scope = (fr != NULL);
69fbadd5
DJ
4826
4827 /* If we've gotten confused in the unwinder, we might have
4828 returned a frame that can't describe this variable. */
edb3359d
DJ
4829 if (within_current_scope)
4830 {
4831 struct symbol *function;
4832
4833 function = get_frame_function (fr);
4834 if (function == NULL
4835 || !contained_in (b->exp_valid_block,
4836 SYMBOL_BLOCK_VALUE (function)))
4837 within_current_scope = 0;
4838 }
69fbadd5 4839
edb3359d 4840 if (within_current_scope)
c906108c
SS
4841 /* If we end up stopping, the current frame will get selected
4842 in normal_stop. So this call to select_frame won't affect
4843 the user. */
0f7d239c 4844 select_frame (fr);
c906108c 4845 }
c5aa993b 4846
c906108c
SS
4847 if (within_current_scope)
4848 {
4a64f543
MS
4849 /* We use value_{,free_to_}mark because it could be a *long*
4850 time before we return to the command level and call
4851 free_all_values. We can't call free_all_values because we
4852 might be in the middle of evaluating a function call. */
c906108c 4853
0cf6dd15 4854 int pc = 0;
9c06b0b4 4855 struct value *mark;
fa4727a6
DJ
4856 struct value *new_val;
4857
3a5c3e22 4858 if (is_masked_watchpoint (&b->base))
9c06b0b4
TJB
4859 /* Since we don't know the exact trigger address (from
4860 stopped_data_address), just tell the user we've triggered
4861 a mask watchpoint. */
4862 return WP_VALUE_CHANGED;
4863
4864 mark = value_mark ();
3a1115a0 4865 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL, 0);
218d2fc6 4866
4a64f543
MS
4867 /* We use value_equal_contents instead of value_equal because
4868 the latter coerces an array to a pointer, thus comparing just
4869 the address of the array instead of its contents. This is
4870 not what we want. */
fa4727a6 4871 if ((b->val != NULL) != (new_val != NULL)
218d2fc6 4872 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
c906108c 4873 {
fa4727a6
DJ
4874 if (new_val != NULL)
4875 {
4876 release_value (new_val);
4877 value_free_to_mark (mark);
4878 }
c906108c
SS
4879 bs->old_val = b->val;
4880 b->val = new_val;
fa4727a6 4881 b->val_valid = 1;
c906108c
SS
4882 return WP_VALUE_CHANGED;
4883 }
4884 else
4885 {
60e1c644 4886 /* Nothing changed. */
c906108c 4887 value_free_to_mark (mark);
c906108c
SS
4888 return WP_VALUE_NOT_CHANGED;
4889 }
4890 }
4891 else
4892 {
79a45e25
PA
4893 struct ui_out *uiout = current_uiout;
4894
c906108c 4895 /* This seems like the only logical thing to do because
c5aa993b
JM
4896 if we temporarily ignored the watchpoint, then when
4897 we reenter the block in which it is valid it contains
4898 garbage (in the case of a function, it may have two
4899 garbage values, one before and one after the prologue).
4900 So we can't even detect the first assignment to it and
4901 watch after that (since the garbage may or may not equal
4902 the first value assigned). */
348d480f
PA
4903 /* We print all the stop information in
4904 breakpoint_ops->print_it, but in this case, by the time we
4905 call breakpoint_ops->print_it this bp will be deleted
4906 already. So we have no choice but print the information
4907 here. */
9dc5e2a9 4908 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
4909 ui_out_field_string
4910 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 4911 ui_out_text (uiout, "\nWatchpoint ");
3a5c3e22 4912 ui_out_field_int (uiout, "wpnum", b->base.number);
3e43a32a
MS
4913 ui_out_text (uiout,
4914 " deleted because the program has left the block in\n\
8b93c638 4915which its expression is valid.\n");
4ce44c66 4916
cdac0397 4917 /* Make sure the watchpoint's commands aren't executed. */
3a5c3e22 4918 decref_counted_command_line (&b->base.commands);
d0fb5eae 4919 watchpoint_del_at_next_stop (b);
c906108c
SS
4920
4921 return WP_DELETED;
4922 }
4923}
4924
18a18393 4925/* Return true if it looks like target has stopped due to hitting
348d480f
PA
4926 breakpoint location BL. This function does not check if we should
4927 stop, only if BL explains the stop. */
4928
18a18393 4929static int
6c95b8df 4930bpstat_check_location (const struct bp_location *bl,
09ac7c10
TT
4931 struct address_space *aspace, CORE_ADDR bp_addr,
4932 const struct target_waitstatus *ws)
18a18393
VP
4933{
4934 struct breakpoint *b = bl->owner;
4935
348d480f 4936 /* BL is from an existing breakpoint. */
2bdf28a0
JK
4937 gdb_assert (b != NULL);
4938
09ac7c10 4939 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
18a18393
VP
4940}
4941
3a5c3e22
PA
4942/* Determine if the watched values have actually changed, and we
4943 should stop. If not, set BS->stop to 0. */
4944
18a18393
VP
4945static void
4946bpstat_check_watchpoint (bpstat bs)
4947{
2bdf28a0 4948 const struct bp_location *bl;
3a5c3e22 4949 struct watchpoint *b;
2bdf28a0
JK
4950
4951 /* BS is built for existing struct breakpoint. */
f431efe5 4952 bl = bs->bp_location_at;
2bdf28a0 4953 gdb_assert (bl != NULL);
3a5c3e22 4954 b = (struct watchpoint *) bs->breakpoint_at;
2bdf28a0 4955 gdb_assert (b != NULL);
18a18393 4956
18a18393 4957 {
18a18393
VP
4958 int must_check_value = 0;
4959
3a5c3e22 4960 if (b->base.type == bp_watchpoint)
18a18393
VP
4961 /* For a software watchpoint, we must always check the
4962 watched value. */
4963 must_check_value = 1;
4964 else if (b->watchpoint_triggered == watch_triggered_yes)
4965 /* We have a hardware watchpoint (read, write, or access)
4966 and the target earlier reported an address watched by
4967 this watchpoint. */
4968 must_check_value = 1;
4969 else if (b->watchpoint_triggered == watch_triggered_unknown
3a5c3e22 4970 && b->base.type == bp_hardware_watchpoint)
18a18393
VP
4971 /* We were stopped by a hardware watchpoint, but the target could
4972 not report the data address. We must check the watchpoint's
4973 value. Access and read watchpoints are out of luck; without
4974 a data address, we can't figure it out. */
4975 must_check_value = 1;
3a5c3e22 4976
18a18393
VP
4977 if (must_check_value)
4978 {
3e43a32a
MS
4979 char *message
4980 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
3a5c3e22 4981 b->base.number);
18a18393
VP
4982 struct cleanup *cleanups = make_cleanup (xfree, message);
4983 int e = catch_errors (watchpoint_check, bs, message,
4984 RETURN_MASK_ALL);
4985 do_cleanups (cleanups);
4986 switch (e)
4987 {
4988 case WP_DELETED:
4989 /* We've already printed what needs to be printed. */
4990 bs->print_it = print_it_done;
4991 /* Stop. */
4992 break;
60e1c644
PA
4993 case WP_IGNORE:
4994 bs->print_it = print_it_noop;
4995 bs->stop = 0;
4996 break;
18a18393 4997 case WP_VALUE_CHANGED:
3a5c3e22 4998 if (b->base.type == bp_read_watchpoint)
18a18393 4999 {
85d721b8
PA
5000 /* There are two cases to consider here:
5001
4a64f543 5002 1. We're watching the triggered memory for reads.
85d721b8
PA
5003 In that case, trust the target, and always report
5004 the watchpoint hit to the user. Even though
5005 reads don't cause value changes, the value may
5006 have changed since the last time it was read, and
5007 since we're not trapping writes, we will not see
5008 those, and as such we should ignore our notion of
5009 old value.
5010
4a64f543 5011 2. We're watching the triggered memory for both
85d721b8
PA
5012 reads and writes. There are two ways this may
5013 happen:
5014
4a64f543 5015 2.1. This is a target that can't break on data
85d721b8
PA
5016 reads only, but can break on accesses (reads or
5017 writes), such as e.g., x86. We detect this case
5018 at the time we try to insert read watchpoints.
5019
4a64f543 5020 2.2. Otherwise, the target supports read
85d721b8
PA
5021 watchpoints, but, the user set an access or write
5022 watchpoint watching the same memory as this read
5023 watchpoint.
5024
5025 If we're watching memory writes as well as reads,
5026 ignore watchpoint hits when we find that the
5027 value hasn't changed, as reads don't cause
5028 changes. This still gives false positives when
5029 the program writes the same value to memory as
5030 what there was already in memory (we will confuse
5031 it for a read), but it's much better than
5032 nothing. */
5033
5034 int other_write_watchpoint = 0;
5035
5036 if (bl->watchpoint_type == hw_read)
5037 {
5038 struct breakpoint *other_b;
5039
5040 ALL_BREAKPOINTS (other_b)
3a5c3e22
PA
5041 if (other_b->type == bp_hardware_watchpoint
5042 || other_b->type == bp_access_watchpoint)
85d721b8 5043 {
3a5c3e22
PA
5044 struct watchpoint *other_w =
5045 (struct watchpoint *) other_b;
5046
5047 if (other_w->watchpoint_triggered
5048 == watch_triggered_yes)
5049 {
5050 other_write_watchpoint = 1;
5051 break;
5052 }
85d721b8
PA
5053 }
5054 }
5055
5056 if (other_write_watchpoint
5057 || bl->watchpoint_type == hw_access)
5058 {
5059 /* We're watching the same memory for writes,
5060 and the value changed since the last time we
5061 updated it, so this trap must be for a write.
5062 Ignore it. */
5063 bs->print_it = print_it_noop;
5064 bs->stop = 0;
5065 }
18a18393
VP
5066 }
5067 break;
5068 case WP_VALUE_NOT_CHANGED:
3a5c3e22
PA
5069 if (b->base.type == bp_hardware_watchpoint
5070 || b->base.type == bp_watchpoint)
18a18393
VP
5071 {
5072 /* Don't stop: write watchpoints shouldn't fire if
5073 the value hasn't changed. */
5074 bs->print_it = print_it_noop;
5075 bs->stop = 0;
5076 }
5077 /* Stop. */
5078 break;
5079 default:
5080 /* Can't happen. */
5081 case 0:
5082 /* Error from catch_errors. */
3a5c3e22 5083 printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number);
d0fb5eae 5084 watchpoint_del_at_next_stop (b);
18a18393
VP
5085 /* We've already printed what needs to be printed. */
5086 bs->print_it = print_it_done;
5087 break;
5088 }
5089 }
5090 else /* must_check_value == 0 */
5091 {
5092 /* This is a case where some watchpoint(s) triggered, but
5093 not at the address of this watchpoint, or else no
5094 watchpoint triggered after all. So don't print
5095 anything for this watchpoint. */
5096 bs->print_it = print_it_noop;
5097 bs->stop = 0;
5098 }
5099 }
5100}
5101
7d4df6a4
DE
5102/* For breakpoints that are currently marked as telling gdb to stop,
5103 check conditions (condition proper, frame, thread and ignore count)
18a18393
VP
5104 of breakpoint referred to by BS. If we should not stop for this
5105 breakpoint, set BS->stop to 0. */
f431efe5 5106
18a18393
VP
5107static void
5108bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5109{
5110 int thread_id = pid_to_thread_id (ptid);
2bdf28a0
JK
5111 const struct bp_location *bl;
5112 struct breakpoint *b;
7d4df6a4
DE
5113 int value_is_zero = 0;
5114 struct expression *cond;
5115
5116 gdb_assert (bs->stop);
2bdf28a0
JK
5117
5118 /* BS is built for existing struct breakpoint. */
f431efe5 5119 bl = bs->bp_location_at;
2bdf28a0 5120 gdb_assert (bl != NULL);
f431efe5 5121 b = bs->breakpoint_at;
2bdf28a0 5122 gdb_assert (b != NULL);
18a18393 5123
b775012e
LM
5124 /* Even if the target evaluated the condition on its end and notified GDB, we
5125 need to do so again since GDB does not know if we stopped due to a
5126 breakpoint or a single step breakpoint. */
5127
18a18393 5128 if (frame_id_p (b->frame_id)
edb3359d 5129 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
18a18393 5130 {
7d4df6a4
DE
5131 bs->stop = 0;
5132 return;
5133 }
60e1c644 5134
6c1b0f7b
DE
5135 /* If this is a thread-specific breakpoint, don't waste cpu evaluating the
5136 condition if this isn't the specified thread. */
5137 if (b->thread != -1 && b->thread != thread_id)
5138 {
5139 bs->stop = 0;
5140 return;
5141 }
5142
7d4df6a4
DE
5143 /* Evaluate Python breakpoints that have a "stop" method implemented. */
5144 if (b->py_bp_object)
5145 bs->stop = gdbpy_should_stop (b->py_bp_object);
7371cf6d 5146
7d4df6a4
DE
5147 if (is_watchpoint (b))
5148 {
5149 struct watchpoint *w = (struct watchpoint *) b;
3a5c3e22 5150
7d4df6a4
DE
5151 cond = w->cond_exp;
5152 }
5153 else
5154 cond = bl->cond;
60e1c644 5155
7d4df6a4
DE
5156 if (cond && b->disposition != disp_del_at_next_stop)
5157 {
5158 int within_current_scope = 1;
5159 struct watchpoint * w;
60e1c644 5160
7d4df6a4
DE
5161 /* We use value_mark and value_free_to_mark because it could
5162 be a long time before we return to the command level and
5163 call free_all_values. We can't call free_all_values
5164 because we might be in the middle of evaluating a
5165 function call. */
5166 struct value *mark = value_mark ();
5167
5168 if (is_watchpoint (b))
5169 w = (struct watchpoint *) b;
5170 else
5171 w = NULL;
5172
5173 /* Need to select the frame, with all that implies so that
5174 the conditions will have the right context. Because we
5175 use the frame, we will not see an inlined function's
5176 variables when we arrive at a breakpoint at the start
5177 of the inlined function; the current frame will be the
5178 call site. */
5179 if (w == NULL || w->cond_exp_valid_block == NULL)
5180 select_frame (get_current_frame ());
5181 else
18a18393 5182 {
7d4df6a4
DE
5183 struct frame_info *frame;
5184
5185 /* For local watchpoint expressions, which particular
5186 instance of a local is being watched matters, so we
5187 keep track of the frame to evaluate the expression
5188 in. To evaluate the condition however, it doesn't
5189 really matter which instantiation of the function
5190 where the condition makes sense triggers the
5191 watchpoint. This allows an expression like "watch
5192 global if q > 10" set in `func', catch writes to
5193 global on all threads that call `func', or catch
5194 writes on all recursive calls of `func' by a single
5195 thread. We simply always evaluate the condition in
5196 the innermost frame that's executing where it makes
5197 sense to evaluate the condition. It seems
5198 intuitive. */
5199 frame = block_innermost_frame (w->cond_exp_valid_block);
5200 if (frame != NULL)
5201 select_frame (frame);
5202 else
5203 within_current_scope = 0;
18a18393 5204 }
7d4df6a4
DE
5205 if (within_current_scope)
5206 value_is_zero
5207 = catch_errors (breakpoint_cond_eval, cond,
5208 "Error in testing breakpoint condition:\n",
5209 RETURN_MASK_ALL);
5210 else
18a18393 5211 {
7d4df6a4
DE
5212 warning (_("Watchpoint condition cannot be tested "
5213 "in the current scope"));
5214 /* If we failed to set the right context for this
5215 watchpoint, unconditionally report it. */
5216 value_is_zero = 0;
18a18393 5217 }
7d4df6a4
DE
5218 /* FIXME-someday, should give breakpoint #. */
5219 value_free_to_mark (mark);
18a18393 5220 }
7d4df6a4
DE
5221
5222 if (cond && value_is_zero)
5223 {
5224 bs->stop = 0;
5225 }
7d4df6a4
DE
5226 else if (b->ignore_count > 0)
5227 {
5228 b->ignore_count--;
5229 bs->stop = 0;
5230 /* Increase the hit count even though we don't stop. */
5231 ++(b->hit_count);
5232 observer_notify_breakpoint_modified (b);
5233 }
18a18393
VP
5234}
5235
5236
9709f61c 5237/* Get a bpstat associated with having just stopped at address
d983da9c 5238 BP_ADDR in thread PTID.
c906108c 5239
d983da9c 5240 Determine whether we stopped at a breakpoint, etc, or whether we
4a64f543
MS
5241 don't understand this stop. Result is a chain of bpstat's such
5242 that:
c906108c 5243
c5aa993b 5244 if we don't understand the stop, the result is a null pointer.
c906108c 5245
c5aa993b 5246 if we understand why we stopped, the result is not null.
c906108c 5247
c5aa993b
JM
5248 Each element of the chain refers to a particular breakpoint or
5249 watchpoint at which we have stopped. (We may have stopped for
5250 several reasons concurrently.)
c906108c 5251
c5aa993b
JM
5252 Each element of the chain has valid next, breakpoint_at,
5253 commands, FIXME??? fields. */
c906108c
SS
5254
5255bpstat
6c95b8df 5256bpstat_stop_status (struct address_space *aspace,
09ac7c10
TT
5257 CORE_ADDR bp_addr, ptid_t ptid,
5258 const struct target_waitstatus *ws)
c906108c 5259{
0d381245 5260 struct breakpoint *b = NULL;
afe38095 5261 struct bp_location *bl;
20874c92 5262 struct bp_location *loc;
5760d0ab
JK
5263 /* First item of allocated bpstat's. */
5264 bpstat bs_head = NULL, *bs_link = &bs_head;
c906108c 5265 /* Pointer to the last thing in the chain currently. */
5760d0ab 5266 bpstat bs;
20874c92 5267 int ix;
429374b8 5268 int need_remove_insert;
f431efe5 5269 int removed_any;
c906108c 5270
f431efe5
PA
5271 /* First, build the bpstat chain with locations that explain a
5272 target stop, while being careful to not set the target running,
5273 as that may invalidate locations (in particular watchpoint
5274 locations are recreated). Resuming will happen here with
5275 breakpoint conditions or watchpoint expressions that include
5276 inferior function calls. */
c5aa993b 5277
429374b8
JK
5278 ALL_BREAKPOINTS (b)
5279 {
5280 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
5281 continue;
a5606eee 5282
429374b8
JK
5283 for (bl = b->loc; bl != NULL; bl = bl->next)
5284 {
4a64f543
MS
5285 /* For hardware watchpoints, we look only at the first
5286 location. The watchpoint_check function will work on the
5287 entire expression, not the individual locations. For
5288 read watchpoints, the watchpoints_triggered function has
5289 checked all locations already. */
429374b8
JK
5290 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5291 break;
18a18393 5292
f6592439 5293 if (!bl->enabled || bl->shlib_disabled)
429374b8 5294 continue;
c5aa993b 5295
09ac7c10 5296 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
429374b8 5297 continue;
c5aa993b 5298
4a64f543
MS
5299 /* Come here if it's a watchpoint, or if the break address
5300 matches. */
c5aa993b 5301
4a64f543
MS
5302 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
5303 explain stop. */
c5aa993b 5304
f431efe5
PA
5305 /* Assume we stop. Should we find a watchpoint that is not
5306 actually triggered, or if the condition of the breakpoint
5307 evaluates as false, we'll reset 'stop' to 0. */
429374b8
JK
5308 bs->stop = 1;
5309 bs->print = 1;
d983da9c 5310
f431efe5
PA
5311 /* If this is a scope breakpoint, mark the associated
5312 watchpoint as triggered so that we will handle the
5313 out-of-scope event. We'll get to the watchpoint next
5314 iteration. */
d0fb5eae 5315 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
3a5c3e22
PA
5316 {
5317 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5318
5319 w->watchpoint_triggered = watch_triggered_yes;
5320 }
f431efe5
PA
5321 }
5322 }
5323
5324 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
5325 {
f1310107 5326 if (breakpoint_location_address_match (loc, aspace, bp_addr))
f431efe5 5327 {
5760d0ab 5328 bs = bpstat_alloc (loc, &bs_link);
f431efe5
PA
5329 /* For hits of moribund locations, we should just proceed. */
5330 bs->stop = 0;
5331 bs->print = 0;
5332 bs->print_it = print_it_noop;
5333 }
5334 }
5335
edcc5120
TT
5336 /* A bit of special processing for shlib breakpoints. We need to
5337 process solib loading here, so that the lists of loaded and
5338 unloaded libraries are correct before we handle "catch load" and
5339 "catch unload". */
5340 for (bs = bs_head; bs != NULL; bs = bs->next)
5341 {
5d268276 5342 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
edcc5120
TT
5343 {
5344 handle_solib_event ();
5345 break;
5346 }
5347 }
5348
f431efe5
PA
5349 /* Now go through the locations that caused the target to stop, and
5350 check whether we're interested in reporting this stop to higher
5351 layers, or whether we should resume the target transparently. */
5352
5353 removed_any = 0;
5354
5760d0ab 5355 for (bs = bs_head; bs != NULL; bs = bs->next)
f431efe5
PA
5356 {
5357 if (!bs->stop)
5358 continue;
5359
f431efe5 5360 b = bs->breakpoint_at;
348d480f
PA
5361 b->ops->check_status (bs);
5362 if (bs->stop)
28010a5d 5363 {
348d480f 5364 bpstat_check_breakpoint_conditions (bs, ptid);
f431efe5 5365
429374b8
JK
5366 if (bs->stop)
5367 {
5368 ++(b->hit_count);
8d3788bd 5369 observer_notify_breakpoint_modified (b);
c906108c 5370
4a64f543 5371 /* We will stop here. */
429374b8
JK
5372 if (b->disposition == disp_disable)
5373 {
816338b5
SS
5374 --(b->enable_count);
5375 if (b->enable_count <= 0
5376 && b->enable_state != bp_permanent)
429374b8 5377 b->enable_state = bp_disabled;
f431efe5 5378 removed_any = 1;
429374b8
JK
5379 }
5380 if (b->silent)
5381 bs->print = 0;
5382 bs->commands = b->commands;
9add0f1b 5383 incref_counted_command_line (bs->commands);
abf85f46
JK
5384 if (command_line_is_silent (bs->commands
5385 ? bs->commands->commands : NULL))
5386 bs->print = 0;
9d6e6e84
HZ
5387
5388 b->ops->after_condition_true (bs);
429374b8
JK
5389 }
5390
348d480f 5391 }
a9b3a50f
PA
5392
5393 /* Print nothing for this entry if we don't stop or don't
5394 print. */
5395 if (!bs->stop || !bs->print)
5396 bs->print_it = print_it_noop;
429374b8 5397 }
876fa593 5398
d983da9c
DJ
5399 /* If we aren't stopping, the value of some hardware watchpoint may
5400 not have changed, but the intermediate memory locations we are
5401 watching may have. Don't bother if we're stopping; this will get
5402 done later. */
d832cb68 5403 need_remove_insert = 0;
5760d0ab
JK
5404 if (! bpstat_causes_stop (bs_head))
5405 for (bs = bs_head; bs != NULL; bs = bs->next)
d983da9c 5406 if (!bs->stop
f431efe5
PA
5407 && bs->breakpoint_at
5408 && is_hardware_watchpoint (bs->breakpoint_at))
d983da9c 5409 {
3a5c3e22
PA
5410 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5411
5412 update_watchpoint (w, 0 /* don't reparse. */);
d832cb68 5413 need_remove_insert = 1;
d983da9c
DJ
5414 }
5415
d832cb68 5416 if (need_remove_insert)
2d134ed3 5417 update_global_location_list (1);
f431efe5
PA
5418 else if (removed_any)
5419 update_global_location_list (0);
d832cb68 5420
5760d0ab 5421 return bs_head;
c906108c 5422}
628fe4e4
JK
5423
5424static void
5425handle_jit_event (void)
5426{
5427 struct frame_info *frame;
5428 struct gdbarch *gdbarch;
5429
5430 /* Switch terminal for any messages produced by
5431 breakpoint_re_set. */
5432 target_terminal_ours_for_output ();
5433
5434 frame = get_current_frame ();
5435 gdbarch = get_frame_arch (frame);
5436
5437 jit_event_handler (gdbarch);
5438
5439 target_terminal_inferior ();
5440}
5441
5442/* Prepare WHAT final decision for infrun. */
5443
5444/* Decide what infrun needs to do with this bpstat. */
5445
c906108c 5446struct bpstat_what
0e30163f 5447bpstat_what (bpstat bs_head)
c906108c 5448{
c906108c 5449 struct bpstat_what retval;
628fe4e4 5450 int jit_event = 0;
0e30163f 5451 bpstat bs;
c906108c 5452
628fe4e4 5453 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
aa7d318d 5454 retval.call_dummy = STOP_NONE;
186c406b 5455 retval.is_longjmp = 0;
628fe4e4 5456
0e30163f 5457 for (bs = bs_head; bs != NULL; bs = bs->next)
c906108c 5458 {
628fe4e4
JK
5459 /* Extract this BS's action. After processing each BS, we check
5460 if its action overrides all we've seem so far. */
5461 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5462 enum bptype bptype;
5463
c906108c 5464 if (bs->breakpoint_at == NULL)
628fe4e4
JK
5465 {
5466 /* I suspect this can happen if it was a momentary
5467 breakpoint which has since been deleted. */
5468 bptype = bp_none;
5469 }
20874c92 5470 else
f431efe5 5471 bptype = bs->breakpoint_at->type;
628fe4e4
JK
5472
5473 switch (bptype)
c906108c
SS
5474 {
5475 case bp_none:
628fe4e4 5476 break;
c906108c
SS
5477 case bp_breakpoint:
5478 case bp_hardware_breakpoint:
5479 case bp_until:
5480 case bp_finish:
a9b3a50f 5481 case bp_shlib_event:
c906108c
SS
5482 if (bs->stop)
5483 {
5484 if (bs->print)
628fe4e4 5485 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5486 else
628fe4e4 5487 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5488 }
5489 else
628fe4e4 5490 this_action = BPSTAT_WHAT_SINGLE;
c906108c
SS
5491 break;
5492 case bp_watchpoint:
5493 case bp_hardware_watchpoint:
5494 case bp_read_watchpoint:
5495 case bp_access_watchpoint:
5496 if (bs->stop)
5497 {
5498 if (bs->print)
628fe4e4 5499 this_action = BPSTAT_WHAT_STOP_NOISY;
c906108c 5500 else
628fe4e4 5501 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c
SS
5502 }
5503 else
628fe4e4
JK
5504 {
5505 /* There was a watchpoint, but we're not stopping.
5506 This requires no further action. */
5507 }
c906108c
SS
5508 break;
5509 case bp_longjmp:
e2e4d78b 5510 case bp_longjmp_call_dummy:
186c406b 5511 case bp_exception:
628fe4e4 5512 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
e2e4d78b 5513 retval.is_longjmp = bptype != bp_exception;
c906108c
SS
5514 break;
5515 case bp_longjmp_resume:
186c406b 5516 case bp_exception_resume:
628fe4e4 5517 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
186c406b 5518 retval.is_longjmp = bptype == bp_longjmp_resume;
c906108c
SS
5519 break;
5520 case bp_step_resume:
5521 if (bs->stop)
628fe4e4
JK
5522 this_action = BPSTAT_WHAT_STEP_RESUME;
5523 else
c906108c 5524 {
628fe4e4
JK
5525 /* It is for the wrong frame. */
5526 this_action = BPSTAT_WHAT_SINGLE;
c906108c 5527 }
c906108c 5528 break;
2c03e5be
PA
5529 case bp_hp_step_resume:
5530 if (bs->stop)
5531 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5532 else
5533 {
5534 /* It is for the wrong frame. */
5535 this_action = BPSTAT_WHAT_SINGLE;
5536 }
5537 break;
c906108c 5538 case bp_watchpoint_scope:
c4093a6a 5539 case bp_thread_event:
1900040c 5540 case bp_overlay_event:
0fd8e87f 5541 case bp_longjmp_master:
aa7d318d 5542 case bp_std_terminate_master:
186c406b 5543 case bp_exception_master:
628fe4e4 5544 this_action = BPSTAT_WHAT_SINGLE;
c4093a6a 5545 break;
ce78b96d 5546 case bp_catchpoint:
c5aa993b
JM
5547 if (bs->stop)
5548 {
5549 if (bs->print)
628fe4e4 5550 this_action = BPSTAT_WHAT_STOP_NOISY;
c5aa993b 5551 else
628fe4e4 5552 this_action = BPSTAT_WHAT_STOP_SILENT;
c5aa993b
JM
5553 }
5554 else
628fe4e4
JK
5555 {
5556 /* There was a catchpoint, but we're not stopping.
5557 This requires no further action. */
5558 }
5559 break;
628fe4e4
JK
5560 case bp_jit_event:
5561 jit_event = 1;
5562 this_action = BPSTAT_WHAT_SINGLE;
c5aa993b 5563 break;
c906108c 5564 case bp_call_dummy:
53a5351d
JM
5565 /* Make sure the action is stop (silent or noisy),
5566 so infrun.c pops the dummy frame. */
aa7d318d 5567 retval.call_dummy = STOP_STACK_DUMMY;
628fe4e4 5568 this_action = BPSTAT_WHAT_STOP_SILENT;
aa7d318d
TT
5569 break;
5570 case bp_std_terminate:
5571 /* Make sure the action is stop (silent or noisy),
5572 so infrun.c pops the dummy frame. */
aa7d318d 5573 retval.call_dummy = STOP_STD_TERMINATE;
628fe4e4 5574 this_action = BPSTAT_WHAT_STOP_SILENT;
c906108c 5575 break;
1042e4c0 5576 case bp_tracepoint:
7a697b8d 5577 case bp_fast_tracepoint:
0fb4aa4b 5578 case bp_static_tracepoint:
1042e4c0
SS
5579 /* Tracepoint hits should not be reported back to GDB, and
5580 if one got through somehow, it should have been filtered
5581 out already. */
5582 internal_error (__FILE__, __LINE__,
7a697b8d 5583 _("bpstat_what: tracepoint encountered"));
0e30163f
JK
5584 break;
5585 case bp_gnu_ifunc_resolver:
5586 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5587 this_action = BPSTAT_WHAT_SINGLE;
5588 break;
5589 case bp_gnu_ifunc_resolver_return:
5590 /* The breakpoint will be removed, execution will restart from the
5591 PC of the former breakpoint. */
5592 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5593 break;
e7e0cddf
SS
5594
5595 case bp_dprintf:
a11cfd87
HZ
5596 if (bs->stop)
5597 this_action = BPSTAT_WHAT_STOP_SILENT;
5598 else
5599 this_action = BPSTAT_WHAT_SINGLE;
e7e0cddf
SS
5600 break;
5601
628fe4e4
JK
5602 default:
5603 internal_error (__FILE__, __LINE__,
5604 _("bpstat_what: unhandled bptype %d"), (int) bptype);
c906108c 5605 }
628fe4e4
JK
5606
5607 retval.main_action = max (retval.main_action, this_action);
c906108c 5608 }
628fe4e4 5609
0e30163f
JK
5610 /* These operations may affect the bs->breakpoint_at state so they are
5611 delayed after MAIN_ACTION is decided above. */
5612
628fe4e4
JK
5613 if (jit_event)
5614 {
5615 if (debug_infrun)
5616 fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n");
5617
5618 handle_jit_event ();
5619 }
5620
0e30163f
JK
5621 for (bs = bs_head; bs != NULL; bs = bs->next)
5622 {
5623 struct breakpoint *b = bs->breakpoint_at;
5624
5625 if (b == NULL)
5626 continue;
5627 switch (b->type)
5628 {
5629 case bp_gnu_ifunc_resolver:
5630 gnu_ifunc_resolver_stop (b);
5631 break;
5632 case bp_gnu_ifunc_resolver_return:
5633 gnu_ifunc_resolver_return_stop (b);
5634 break;
5635 }
5636 }
5637
c906108c
SS
5638 return retval;
5639}
5640
5641/* Nonzero if we should step constantly (e.g. watchpoints on machines
5642 without hardware support). This isn't related to a specific bpstat,
5643 just to things like whether watchpoints are set. */
5644
c5aa993b 5645int
fba45db2 5646bpstat_should_step (void)
c906108c
SS
5647{
5648 struct breakpoint *b;
cc59ec59 5649
c906108c 5650 ALL_BREAKPOINTS (b)
717a8278 5651 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
3172dc30 5652 return 1;
c906108c
SS
5653 return 0;
5654}
5655
67822962
PA
5656int
5657bpstat_causes_stop (bpstat bs)
5658{
5659 for (; bs != NULL; bs = bs->next)
5660 if (bs->stop)
5661 return 1;
5662
5663 return 0;
5664}
5665
c906108c 5666\f
c5aa993b 5667
170b53b2
UW
5668/* Compute a string of spaces suitable to indent the next line
5669 so it starts at the position corresponding to the table column
5670 named COL_NAME in the currently active table of UIOUT. */
5671
5672static char *
5673wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5674{
5675 static char wrap_indent[80];
5676 int i, total_width, width, align;
5677 char *text;
5678
5679 total_width = 0;
5680 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
5681 {
5682 if (strcmp (text, col_name) == 0)
5683 {
5684 gdb_assert (total_width < sizeof wrap_indent);
5685 memset (wrap_indent, ' ', total_width);
5686 wrap_indent[total_width] = 0;
5687
5688 return wrap_indent;
5689 }
5690
5691 total_width += width + 1;
5692 }
5693
5694 return NULL;
5695}
5696
b775012e
LM
5697/* Determine if the locations of this breakpoint will have their conditions
5698 evaluated by the target, host or a mix of both. Returns the following:
5699
5700 "host": Host evals condition.
5701 "host or target": Host or Target evals condition.
5702 "target": Target evals condition.
5703*/
5704
5705static const char *
5706bp_condition_evaluator (struct breakpoint *b)
5707{
5708 struct bp_location *bl;
5709 char host_evals = 0;
5710 char target_evals = 0;
5711
5712 if (!b)
5713 return NULL;
5714
5715 if (!is_breakpoint (b))
5716 return NULL;
5717
5718 if (gdb_evaluates_breakpoint_condition_p ()
5719 || !target_supports_evaluation_of_breakpoint_conditions ())
5720 return condition_evaluation_host;
5721
5722 for (bl = b->loc; bl; bl = bl->next)
5723 {
5724 if (bl->cond_bytecode)
5725 target_evals++;
5726 else
5727 host_evals++;
5728 }
5729
5730 if (host_evals && target_evals)
5731 return condition_evaluation_both;
5732 else if (target_evals)
5733 return condition_evaluation_target;
5734 else
5735 return condition_evaluation_host;
5736}
5737
5738/* Determine the breakpoint location's condition evaluator. This is
5739 similar to bp_condition_evaluator, but for locations. */
5740
5741static const char *
5742bp_location_condition_evaluator (struct bp_location *bl)
5743{
5744 if (bl && !is_breakpoint (bl->owner))
5745 return NULL;
5746
5747 if (gdb_evaluates_breakpoint_condition_p ()
5748 || !target_supports_evaluation_of_breakpoint_conditions ())
5749 return condition_evaluation_host;
5750
5751 if (bl && bl->cond_bytecode)
5752 return condition_evaluation_target;
5753 else
5754 return condition_evaluation_host;
5755}
5756
859825b8
JK
5757/* Print the LOC location out of the list of B->LOC locations. */
5758
170b53b2
UW
5759static void
5760print_breakpoint_location (struct breakpoint *b,
5761 struct bp_location *loc)
0d381245 5762{
79a45e25 5763 struct ui_out *uiout = current_uiout;
6c95b8df
PA
5764 struct cleanup *old_chain = save_current_program_space ();
5765
859825b8
JK
5766 if (loc != NULL && loc->shlib_disabled)
5767 loc = NULL;
5768
6c95b8df
PA
5769 if (loc != NULL)
5770 set_current_program_space (loc->pspace);
5771
56435ebe
TT
5772 if (b->display_canonical)
5773 ui_out_field_string (uiout, "what", b->addr_string);
2f202fde 5774 else if (loc && loc->symtab)
0d381245
VP
5775 {
5776 struct symbol *sym
5777 = find_pc_sect_function (loc->address, loc->section);
5778 if (sym)
5779 {
5780 ui_out_text (uiout, "in ");
5781 ui_out_field_string (uiout, "func",
5782 SYMBOL_PRINT_NAME (sym));
170b53b2
UW
5783 ui_out_text (uiout, " ");
5784 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
5785 ui_out_text (uiout, "at ");
0d381245 5786 }
05cba821
JK
5787 ui_out_field_string (uiout, "file",
5788 symtab_to_filename_for_display (loc->symtab));
0d381245 5789 ui_out_text (uiout, ":");
05cba821 5790
0d381245 5791 if (ui_out_is_mi_like_p (uiout))
2f202fde
JK
5792 ui_out_field_string (uiout, "fullname",
5793 symtab_to_fullname (loc->symtab));
0d381245 5794
f8eba3c6 5795 ui_out_field_int (uiout, "line", loc->line_number);
0d381245 5796 }
859825b8 5797 else if (loc)
0d381245 5798 {
f99d8bf4
PA
5799 struct ui_file *stb = mem_fileopen ();
5800 struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb);
170b53b2 5801
f99d8bf4 5802 print_address_symbolic (loc->gdbarch, loc->address, stb,
22e722e1 5803 demangle, "");
0d381245 5804 ui_out_field_stream (uiout, "at", stb);
170b53b2
UW
5805
5806 do_cleanups (stb_chain);
0d381245 5807 }
859825b8
JK
5808 else
5809 ui_out_field_string (uiout, "pending", b->addr_string);
6c95b8df 5810
b775012e
LM
5811 if (loc && is_breakpoint (b)
5812 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5813 && bp_condition_evaluator (b) == condition_evaluation_both)
5814 {
5815 ui_out_text (uiout, " (");
5816 ui_out_field_string (uiout, "evaluated-by",
5817 bp_location_condition_evaluator (loc));
5818 ui_out_text (uiout, ")");
5819 }
5820
6c95b8df 5821 do_cleanups (old_chain);
0d381245
VP
5822}
5823
269b11a2
PA
5824static const char *
5825bptype_string (enum bptype type)
c906108c 5826{
c4093a6a
JM
5827 struct ep_type_description
5828 {
5829 enum bptype type;
5830 char *description;
5831 };
5832 static struct ep_type_description bptypes[] =
c906108c 5833 {
c5aa993b
JM
5834 {bp_none, "?deleted?"},
5835 {bp_breakpoint, "breakpoint"},
c906108c 5836 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
5837 {bp_until, "until"},
5838 {bp_finish, "finish"},
5839 {bp_watchpoint, "watchpoint"},
c906108c 5840 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
5841 {bp_read_watchpoint, "read watchpoint"},
5842 {bp_access_watchpoint, "acc watchpoint"},
5843 {bp_longjmp, "longjmp"},
5844 {bp_longjmp_resume, "longjmp resume"},
e2e4d78b 5845 {bp_longjmp_call_dummy, "longjmp for call dummy"},
186c406b
TT
5846 {bp_exception, "exception"},
5847 {bp_exception_resume, "exception resume"},
c5aa993b 5848 {bp_step_resume, "step resume"},
2c03e5be 5849 {bp_hp_step_resume, "high-priority step resume"},
c5aa993b
JM
5850 {bp_watchpoint_scope, "watchpoint scope"},
5851 {bp_call_dummy, "call dummy"},
aa7d318d 5852 {bp_std_terminate, "std::terminate"},
c5aa993b 5853 {bp_shlib_event, "shlib events"},
c4093a6a 5854 {bp_thread_event, "thread events"},
1900040c 5855 {bp_overlay_event, "overlay events"},
0fd8e87f 5856 {bp_longjmp_master, "longjmp master"},
aa7d318d 5857 {bp_std_terminate_master, "std::terminate master"},
186c406b 5858 {bp_exception_master, "exception master"},
ce78b96d 5859 {bp_catchpoint, "catchpoint"},
1042e4c0 5860 {bp_tracepoint, "tracepoint"},
7a697b8d 5861 {bp_fast_tracepoint, "fast tracepoint"},
0fb4aa4b 5862 {bp_static_tracepoint, "static tracepoint"},
e7e0cddf 5863 {bp_dprintf, "dprintf"},
4efc6507 5864 {bp_jit_event, "jit events"},
0e30163f
JK
5865 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
5866 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
c5aa993b 5867 };
269b11a2
PA
5868
5869 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
5870 || ((int) type != bptypes[(int) type].type))
5871 internal_error (__FILE__, __LINE__,
5872 _("bptypes table does not describe type #%d."),
5873 (int) type);
5874
5875 return bptypes[(int) type].description;
5876}
5877
998580f1
MK
5878/* For MI, output a field named 'thread-groups' with a list as the value.
5879 For CLI, prefix the list with the string 'inf'. */
5880
5881static void
5882output_thread_groups (struct ui_out *uiout,
5883 const char *field_name,
5884 VEC(int) *inf_num,
5885 int mi_only)
5886{
752eb8b4 5887 struct cleanup *back_to;
998580f1
MK
5888 int is_mi = ui_out_is_mi_like_p (uiout);
5889 int inf;
5890 int i;
5891
5892 /* For backward compatibility, don't display inferiors in CLI unless
5893 there are several. Always display them for MI. */
5894 if (!is_mi && mi_only)
5895 return;
5896
752eb8b4
TT
5897 back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name);
5898
998580f1
MK
5899 for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i)
5900 {
5901 if (is_mi)
5902 {
5903 char mi_group[10];
5904
5905 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf);
5906 ui_out_field_string (uiout, NULL, mi_group);
5907 }
5908 else
5909 {
5910 if (i == 0)
5911 ui_out_text (uiout, " inf ");
5912 else
5913 ui_out_text (uiout, ", ");
5914
5915 ui_out_text (uiout, plongest (inf));
5916 }
5917 }
5918
5919 do_cleanups (back_to);
5920}
5921
269b11a2
PA
5922/* Print B to gdb_stdout. */
5923
5924static void
5925print_one_breakpoint_location (struct breakpoint *b,
5926 struct bp_location *loc,
5927 int loc_number,
5928 struct bp_location **last_loc,
269b11a2
PA
5929 int allflag)
5930{
5931 struct command_line *l;
c2c6d25f 5932 static char bpenables[] = "nynny";
c906108c 5933
79a45e25 5934 struct ui_out *uiout = current_uiout;
0d381245
VP
5935 int header_of_multiple = 0;
5936 int part_of_multiple = (loc != NULL);
79a45b7d
TT
5937 struct value_print_options opts;
5938
5939 get_user_print_options (&opts);
0d381245
VP
5940
5941 gdb_assert (!loc || loc_number != 0);
4a64f543
MS
5942 /* See comment in print_one_breakpoint concerning treatment of
5943 breakpoints with single disabled location. */
0d381245
VP
5944 if (loc == NULL
5945 && (b->loc != NULL
5946 && (b->loc->next != NULL || !b->loc->enabled)))
5947 header_of_multiple = 1;
5948 if (loc == NULL)
5949 loc = b->loc;
5950
c4093a6a
JM
5951 annotate_record ();
5952
5953 /* 1 */
5954 annotate_field (0);
0d381245
VP
5955 if (part_of_multiple)
5956 {
5957 char *formatted;
0c6773c1 5958 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
5959 ui_out_field_string (uiout, "number", formatted);
5960 xfree (formatted);
5961 }
5962 else
5963 {
5964 ui_out_field_int (uiout, "number", b->number);
5965 }
c4093a6a
JM
5966
5967 /* 2 */
5968 annotate_field (1);
0d381245
VP
5969 if (part_of_multiple)
5970 ui_out_field_skip (uiout, "type");
269b11a2
PA
5971 else
5972 ui_out_field_string (uiout, "type", bptype_string (b->type));
c4093a6a
JM
5973
5974 /* 3 */
5975 annotate_field (2);
0d381245
VP
5976 if (part_of_multiple)
5977 ui_out_field_skip (uiout, "disp");
5978 else
2cec12e5 5979 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 5980
c4093a6a
JM
5981
5982 /* 4 */
5983 annotate_field (3);
0d381245 5984 if (part_of_multiple)
54e52265 5985 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 5986 else
4a64f543
MS
5987 ui_out_field_fmt (uiout, "enabled", "%c",
5988 bpenables[(int) b->enable_state]);
54e52265 5989 ui_out_spaces (uiout, 2);
0d381245 5990
c4093a6a
JM
5991
5992 /* 5 and 6 */
3086aeae 5993 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245 5994 {
4a64f543
MS
5995 /* Although the print_one can possibly print all locations,
5996 calling it here is not likely to get any nice result. So,
5997 make sure there's just one location. */
0d381245 5998 gdb_assert (b->loc == NULL || b->loc->next == NULL);
a6d9a66e 5999 b->ops->print_one (b, last_loc);
0d381245 6000 }
3086aeae
DJ
6001 else
6002 switch (b->type)
6003 {
6004 case bp_none:
6005 internal_error (__FILE__, __LINE__,
e2e0b3e5 6006 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 6007 break;
c906108c 6008
3086aeae
DJ
6009 case bp_watchpoint:
6010 case bp_hardware_watchpoint:
6011 case bp_read_watchpoint:
6012 case bp_access_watchpoint:
3a5c3e22
PA
6013 {
6014 struct watchpoint *w = (struct watchpoint *) b;
6015
6016 /* Field 4, the address, is omitted (which makes the columns
6017 not line up too nicely with the headers, but the effect
6018 is relatively readable). */
6019 if (opts.addressprint)
6020 ui_out_field_skip (uiout, "addr");
6021 annotate_field (5);
6022 ui_out_field_string (uiout, "what", w->exp_string);
6023 }
3086aeae
DJ
6024 break;
6025
3086aeae
DJ
6026 case bp_breakpoint:
6027 case bp_hardware_breakpoint:
6028 case bp_until:
6029 case bp_finish:
6030 case bp_longjmp:
6031 case bp_longjmp_resume:
e2e4d78b 6032 case bp_longjmp_call_dummy:
186c406b
TT
6033 case bp_exception:
6034 case bp_exception_resume:
3086aeae 6035 case bp_step_resume:
2c03e5be 6036 case bp_hp_step_resume:
3086aeae
DJ
6037 case bp_watchpoint_scope:
6038 case bp_call_dummy:
aa7d318d 6039 case bp_std_terminate:
3086aeae
DJ
6040 case bp_shlib_event:
6041 case bp_thread_event:
6042 case bp_overlay_event:
0fd8e87f 6043 case bp_longjmp_master:
aa7d318d 6044 case bp_std_terminate_master:
186c406b 6045 case bp_exception_master:
1042e4c0 6046 case bp_tracepoint:
7a697b8d 6047 case bp_fast_tracepoint:
0fb4aa4b 6048 case bp_static_tracepoint:
e7e0cddf 6049 case bp_dprintf:
4efc6507 6050 case bp_jit_event:
0e30163f
JK
6051 case bp_gnu_ifunc_resolver:
6052 case bp_gnu_ifunc_resolver_return:
79a45b7d 6053 if (opts.addressprint)
3086aeae
DJ
6054 {
6055 annotate_field (4);
54e52265 6056 if (header_of_multiple)
0d381245 6057 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 6058 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 6059 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 6060 else
5af949e3
UW
6061 ui_out_field_core_addr (uiout, "addr",
6062 loc->gdbarch, loc->address);
3086aeae
DJ
6063 }
6064 annotate_field (5);
0d381245 6065 if (!header_of_multiple)
170b53b2 6066 print_breakpoint_location (b, loc);
0d381245 6067 if (b->loc)
a6d9a66e 6068 *last_loc = b->loc;
3086aeae
DJ
6069 break;
6070 }
c906108c 6071
6c95b8df 6072
998580f1 6073 if (loc != NULL && !header_of_multiple)
6c95b8df
PA
6074 {
6075 struct inferior *inf;
998580f1
MK
6076 VEC(int) *inf_num = NULL;
6077 int mi_only = 1;
6c95b8df 6078
998580f1 6079 ALL_INFERIORS (inf)
6c95b8df
PA
6080 {
6081 if (inf->pspace == loc->pspace)
998580f1 6082 VEC_safe_push (int, inf_num, inf->num);
6c95b8df 6083 }
998580f1
MK
6084
6085 /* For backward compatibility, don't display inferiors in CLI unless
6086 there are several. Always display for MI. */
6087 if (allflag
6088 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6089 && (number_of_program_spaces () > 1
6090 || number_of_inferiors () > 1)
6091 /* LOC is for existing B, it cannot be in
6092 moribund_locations and thus having NULL OWNER. */
6093 && loc->owner->type != bp_catchpoint))
6094 mi_only = 0;
6095 output_thread_groups (uiout, "thread-groups", inf_num, mi_only);
6096 VEC_free (int, inf_num);
6c95b8df
PA
6097 }
6098
4a306c9a 6099 if (!part_of_multiple)
c4093a6a 6100 {
4a306c9a
JB
6101 if (b->thread != -1)
6102 {
6103 /* FIXME: This seems to be redundant and lost here; see the
4a64f543 6104 "stop only in" line a little further down. */
4a306c9a
JB
6105 ui_out_text (uiout, " thread ");
6106 ui_out_field_int (uiout, "thread", b->thread);
6107 }
6108 else if (b->task != 0)
6109 {
6110 ui_out_text (uiout, " task ");
6111 ui_out_field_int (uiout, "task", b->task);
6112 }
c4093a6a 6113 }
f1310107 6114
8b93c638 6115 ui_out_text (uiout, "\n");
f1310107 6116
348d480f 6117 if (!part_of_multiple)
f1310107
TJB
6118 b->ops->print_one_detail (b, uiout);
6119
0d381245 6120 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
6121 {
6122 annotate_field (6);
8b93c638 6123 ui_out_text (uiout, "\tstop only in stack frame at ");
e5dd4106 6124 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
818dd999 6125 the frame ID. */
5af949e3
UW
6126 ui_out_field_core_addr (uiout, "frame",
6127 b->gdbarch, b->frame_id.stack_addr);
8b93c638 6128 ui_out_text (uiout, "\n");
c4093a6a
JM
6129 }
6130
28010a5d 6131 if (!part_of_multiple && b->cond_string)
c4093a6a
JM
6132 {
6133 annotate_field (7);
d77f58be 6134 if (is_tracepoint (b))
1042e4c0
SS
6135 ui_out_text (uiout, "\ttrace only if ");
6136 else
6137 ui_out_text (uiout, "\tstop only if ");
0101ce28 6138 ui_out_field_string (uiout, "cond", b->cond_string);
b775012e
LM
6139
6140 /* Print whether the target is doing the breakpoint's condition
6141 evaluation. If GDB is doing the evaluation, don't print anything. */
6142 if (is_breakpoint (b)
6143 && breakpoint_condition_evaluation_mode ()
6144 == condition_evaluation_target)
6145 {
6146 ui_out_text (uiout, " (");
6147 ui_out_field_string (uiout, "evaluated-by",
6148 bp_condition_evaluator (b));
6149 ui_out_text (uiout, " evals)");
6150 }
0101ce28
JJ
6151 ui_out_text (uiout, "\n");
6152 }
6153
0d381245 6154 if (!part_of_multiple && b->thread != -1)
c4093a6a 6155 {
4a64f543 6156 /* FIXME should make an annotation for this. */
8b93c638
JM
6157 ui_out_text (uiout, "\tstop only in thread ");
6158 ui_out_field_int (uiout, "thread", b->thread);
6159 ui_out_text (uiout, "\n");
c4093a6a
JM
6160 }
6161
556ec64d
YQ
6162 if (!part_of_multiple)
6163 {
6164 if (b->hit_count)
31f56a27
YQ
6165 {
6166 /* FIXME should make an annotation for this. */
6167 if (is_catchpoint (b))
6168 ui_out_text (uiout, "\tcatchpoint");
6169 else if (is_tracepoint (b))
6170 ui_out_text (uiout, "\ttracepoint");
6171 else
6172 ui_out_text (uiout, "\tbreakpoint");
6173 ui_out_text (uiout, " already hit ");
6174 ui_out_field_int (uiout, "times", b->hit_count);
6175 if (b->hit_count == 1)
6176 ui_out_text (uiout, " time\n");
6177 else
6178 ui_out_text (uiout, " times\n");
6179 }
556ec64d
YQ
6180 else
6181 {
31f56a27
YQ
6182 /* Output the count also if it is zero, but only if this is mi. */
6183 if (ui_out_is_mi_like_p (uiout))
6184 ui_out_field_int (uiout, "times", b->hit_count);
556ec64d
YQ
6185 }
6186 }
8b93c638 6187
0d381245 6188 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
6189 {
6190 annotate_field (8);
8b93c638
JM
6191 ui_out_text (uiout, "\tignore next ");
6192 ui_out_field_int (uiout, "ignore", b->ignore_count);
6193 ui_out_text (uiout, " hits\n");
c4093a6a 6194 }
059fb39f 6195
816338b5
SS
6196 /* Note that an enable count of 1 corresponds to "enable once"
6197 behavior, which is reported by the combination of enablement and
6198 disposition, so we don't need to mention it here. */
6199 if (!part_of_multiple && b->enable_count > 1)
6200 {
6201 annotate_field (8);
6202 ui_out_text (uiout, "\tdisable after ");
6203 /* Tweak the wording to clarify that ignore and enable counts
6204 are distinct, and have additive effect. */
6205 if (b->ignore_count)
6206 ui_out_text (uiout, "additional ");
6207 else
6208 ui_out_text (uiout, "next ");
6209 ui_out_field_int (uiout, "enable", b->enable_count);
6210 ui_out_text (uiout, " hits\n");
6211 }
6212
f196051f
SS
6213 if (!part_of_multiple && is_tracepoint (b))
6214 {
6215 struct tracepoint *tp = (struct tracepoint *) b;
6216
6217 if (tp->traceframe_usage)
6218 {
6219 ui_out_text (uiout, "\ttrace buffer usage ");
6220 ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage);
6221 ui_out_text (uiout, " bytes\n");
6222 }
6223 }
d3ce09f5 6224
9add0f1b 6225 l = b->commands ? b->commands->commands : NULL;
059fb39f 6226 if (!part_of_multiple && l)
c4093a6a 6227 {
3b31d625
EZ
6228 struct cleanup *script_chain;
6229
c4093a6a 6230 annotate_field (9);
3b31d625 6231 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 6232 print_command_lines (uiout, l, 4);
3b31d625 6233 do_cleanups (script_chain);
c4093a6a 6234 }
d24317b4 6235
d9b3f62e 6236 if (is_tracepoint (b))
1042e4c0 6237 {
d9b3f62e
PA
6238 struct tracepoint *t = (struct tracepoint *) b;
6239
6240 if (!part_of_multiple && t->pass_count)
6241 {
6242 annotate_field (10);
6243 ui_out_text (uiout, "\tpass count ");
6244 ui_out_field_int (uiout, "pass", t->pass_count);
6245 ui_out_text (uiout, " \n");
6246 }
f2a8bc8a
YQ
6247
6248 /* Don't display it when tracepoint or tracepoint location is
6249 pending. */
6250 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6251 {
6252 annotate_field (11);
6253
6254 if (ui_out_is_mi_like_p (uiout))
6255 ui_out_field_string (uiout, "installed",
6256 loc->inserted ? "y" : "n");
6257 else
6258 {
6259 if (loc->inserted)
6260 ui_out_text (uiout, "\t");
6261 else
6262 ui_out_text (uiout, "\tnot ");
6263 ui_out_text (uiout, "installed on target\n");
6264 }
6265 }
1042e4c0
SS
6266 }
6267
d24317b4
VP
6268 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
6269 {
3a5c3e22
PA
6270 if (is_watchpoint (b))
6271 {
6272 struct watchpoint *w = (struct watchpoint *) b;
6273
6274 ui_out_field_string (uiout, "original-location", w->exp_string);
6275 }
6276 else if (b->addr_string)
d24317b4 6277 ui_out_field_string (uiout, "original-location", b->addr_string);
d24317b4 6278 }
c4093a6a 6279}
c5aa993b 6280
0d381245
VP
6281static void
6282print_one_breakpoint (struct breakpoint *b,
4a64f543 6283 struct bp_location **last_loc,
6c95b8df 6284 int allflag)
0d381245 6285{
8d3788bd 6286 struct cleanup *bkpt_chain;
79a45e25 6287 struct ui_out *uiout = current_uiout;
8d3788bd
VP
6288
6289 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
6290
12c5a436 6291 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
8d3788bd 6292 do_cleanups (bkpt_chain);
0d381245
VP
6293
6294 /* If this breakpoint has custom print function,
6295 it's already printed. Otherwise, print individual
6296 locations, if any. */
6297 if (b->ops == NULL || b->ops->print_one == NULL)
6298 {
4a64f543
MS
6299 /* If breakpoint has a single location that is disabled, we
6300 print it as if it had several locations, since otherwise it's
6301 hard to represent "breakpoint enabled, location disabled"
6302 situation.
6303
6304 Note that while hardware watchpoints have several locations
a3be7890 6305 internally, that's not a property exposed to user. */
0d381245 6306 if (b->loc
a5606eee 6307 && !is_hardware_watchpoint (b)
8d3788bd 6308 && (b->loc->next || !b->loc->enabled))
0d381245
VP
6309 {
6310 struct bp_location *loc;
6311 int n = 1;
8d3788bd 6312
0d381245 6313 for (loc = b->loc; loc; loc = loc->next, ++n)
8d3788bd
VP
6314 {
6315 struct cleanup *inner2 =
6316 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
6317 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6318 do_cleanups (inner2);
6319 }
0d381245
VP
6320 }
6321 }
6322}
6323
a6d9a66e
UW
6324static int
6325breakpoint_address_bits (struct breakpoint *b)
6326{
6327 int print_address_bits = 0;
6328 struct bp_location *loc;
6329
6330 for (loc = b->loc; loc; loc = loc->next)
6331 {
c7437ca6
PA
6332 int addr_bit;
6333
6334 /* Software watchpoints that aren't watching memory don't have
6335 an address to print. */
6336 if (b->type == bp_watchpoint && loc->watchpoint_type == -1)
6337 continue;
6338
6339 addr_bit = gdbarch_addr_bit (loc->gdbarch);
a6d9a66e
UW
6340 if (addr_bit > print_address_bits)
6341 print_address_bits = addr_bit;
6342 }
6343
6344 return print_address_bits;
6345}
0d381245 6346
c4093a6a
JM
6347struct captured_breakpoint_query_args
6348 {
6349 int bnum;
6350 };
c5aa993b 6351
c4093a6a 6352static int
2b65245e 6353do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
6354{
6355 struct captured_breakpoint_query_args *args = data;
52f0bd74 6356 struct breakpoint *b;
a6d9a66e 6357 struct bp_location *dummy_loc = NULL;
cc59ec59 6358
c4093a6a
JM
6359 ALL_BREAKPOINTS (b)
6360 {
6361 if (args->bnum == b->number)
c5aa993b 6362 {
12c5a436 6363 print_one_breakpoint (b, &dummy_loc, 0);
c4093a6a 6364 return GDB_RC_OK;
c5aa993b 6365 }
c4093a6a
JM
6366 }
6367 return GDB_RC_NONE;
6368}
c5aa993b 6369
c4093a6a 6370enum gdb_rc
4a64f543
MS
6371gdb_breakpoint_query (struct ui_out *uiout, int bnum,
6372 char **error_message)
c4093a6a
JM
6373{
6374 struct captured_breakpoint_query_args args;
cc59ec59 6375
c4093a6a
JM
6376 args.bnum = bnum;
6377 /* For the moment we don't trust print_one_breakpoint() to not throw
4a64f543 6378 an error. */
b0b13bb4
DJ
6379 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
6380 error_message, RETURN_MASK_ALL) < 0)
6381 return GDB_RC_FAIL;
6382 else
6383 return GDB_RC_OK;
c4093a6a 6384}
c5aa993b 6385
09d682a4
TT
6386/* Return true if this breakpoint was set by the user, false if it is
6387 internal or momentary. */
6388
6389int
6390user_breakpoint_p (struct breakpoint *b)
6391{
46c6471b 6392 return b->number > 0;
09d682a4
TT
6393}
6394
7f3b0473 6395/* Print information on user settable breakpoint (watchpoint, etc)
d77f58be
SS
6396 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6397 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6398 FILTER is non-NULL, call it on each breakpoint and only include the
6399 ones for which it returns non-zero. Return the total number of
6400 breakpoints listed. */
c906108c 6401
d77f58be 6402static int
e5a67952 6403breakpoint_1 (char *args, int allflag,
4a64f543 6404 int (*filter) (const struct breakpoint *))
c4093a6a 6405{
52f0bd74 6406 struct breakpoint *b;
a6d9a66e 6407 struct bp_location *last_loc = NULL;
7f3b0473 6408 int nr_printable_breakpoints;
3b31d625 6409 struct cleanup *bkpttbl_chain;
79a45b7d 6410 struct value_print_options opts;
a6d9a66e 6411 int print_address_bits = 0;
269b11a2 6412 int print_type_col_width = 14;
79a45e25 6413 struct ui_out *uiout = current_uiout;
269b11a2 6414
79a45b7d
TT
6415 get_user_print_options (&opts);
6416
4a64f543
MS
6417 /* Compute the number of rows in the table, as well as the size
6418 required for address fields. */
7f3b0473
AC
6419 nr_printable_breakpoints = 0;
6420 ALL_BREAKPOINTS (b)
e5a67952
MS
6421 {
6422 /* If we have a filter, only list the breakpoints it accepts. */
6423 if (filter && !filter (b))
6424 continue;
6425
6426 /* If we have an "args" string, it is a list of breakpoints to
6427 accept. Skip the others. */
6428 if (args != NULL && *args != '\0')
6429 {
6430 if (allflag && parse_and_eval_long (args) != b->number)
6431 continue;
6432 if (!allflag && !number_is_in_list (args, b->number))
6433 continue;
6434 }
269b11a2 6435
e5a67952
MS
6436 if (allflag || user_breakpoint_p (b))
6437 {
6438 int addr_bit, type_len;
a6d9a66e 6439
e5a67952
MS
6440 addr_bit = breakpoint_address_bits (b);
6441 if (addr_bit > print_address_bits)
6442 print_address_bits = addr_bit;
269b11a2 6443
e5a67952
MS
6444 type_len = strlen (bptype_string (b->type));
6445 if (type_len > print_type_col_width)
6446 print_type_col_width = type_len;
6447
6448 nr_printable_breakpoints++;
6449 }
6450 }
7f3b0473 6451
79a45b7d 6452 if (opts.addressprint)
3b31d625 6453 bkpttbl_chain
3e43a32a
MS
6454 = make_cleanup_ui_out_table_begin_end (uiout, 6,
6455 nr_printable_breakpoints,
3b31d625 6456 "BreakpointTable");
8b93c638 6457 else
3b31d625 6458 bkpttbl_chain
3e43a32a
MS
6459 = make_cleanup_ui_out_table_begin_end (uiout, 5,
6460 nr_printable_breakpoints,
3b31d625 6461 "BreakpointTable");
8b93c638 6462
7f3b0473 6463 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
6464 annotate_breakpoints_headers ();
6465 if (nr_printable_breakpoints > 0)
6466 annotate_field (0);
4a64f543 6467 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
6468 if (nr_printable_breakpoints > 0)
6469 annotate_field (1);
269b11a2 6470 ui_out_table_header (uiout, print_type_col_width, ui_left,
4a64f543 6471 "type", "Type"); /* 2 */
d7faa9e7
AC
6472 if (nr_printable_breakpoints > 0)
6473 annotate_field (2);
4a64f543 6474 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
d7faa9e7
AC
6475 if (nr_printable_breakpoints > 0)
6476 annotate_field (3);
54e52265 6477 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
79a45b7d 6478 if (opts.addressprint)
e5a67952
MS
6479 {
6480 if (nr_printable_breakpoints > 0)
6481 annotate_field (4);
6482 if (print_address_bits <= 32)
6483 ui_out_table_header (uiout, 10, ui_left,
6484 "addr", "Address"); /* 5 */
6485 else
6486 ui_out_table_header (uiout, 18, ui_left,
6487 "addr", "Address"); /* 5 */
6488 }
d7faa9e7
AC
6489 if (nr_printable_breakpoints > 0)
6490 annotate_field (5);
6491 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
6492 ui_out_table_body (uiout);
6493 if (nr_printable_breakpoints > 0)
6494 annotate_breakpoints_table ();
7f3b0473 6495
c4093a6a 6496 ALL_BREAKPOINTS (b)
e5a67952
MS
6497 {
6498 QUIT;
6499 /* If we have a filter, only list the breakpoints it accepts. */
6500 if (filter && !filter (b))
6501 continue;
6502
6503 /* If we have an "args" string, it is a list of breakpoints to
6504 accept. Skip the others. */
6505
6506 if (args != NULL && *args != '\0')
6507 {
6508 if (allflag) /* maintenance info breakpoint */
6509 {
6510 if (parse_and_eval_long (args) != b->number)
6511 continue;
6512 }
6513 else /* all others */
6514 {
6515 if (!number_is_in_list (args, b->number))
6516 continue;
6517 }
6518 }
6519 /* We only print out user settable breakpoints unless the
6520 allflag is set. */
6521 if (allflag || user_breakpoint_p (b))
12c5a436 6522 print_one_breakpoint (b, &last_loc, allflag);
e5a67952
MS
6523 }
6524
3b31d625 6525 do_cleanups (bkpttbl_chain);
698384cd 6526
7f3b0473 6527 if (nr_printable_breakpoints == 0)
c906108c 6528 {
4a64f543
MS
6529 /* If there's a filter, let the caller decide how to report
6530 empty list. */
d77f58be
SS
6531 if (!filter)
6532 {
e5a67952 6533 if (args == NULL || *args == '\0')
d77f58be
SS
6534 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
6535 else
4a64f543 6536 ui_out_message (uiout, 0,
e5a67952
MS
6537 "No breakpoint or watchpoint matching '%s'.\n",
6538 args);
d77f58be 6539 }
c906108c
SS
6540 }
6541 else
c4093a6a 6542 {
a6d9a66e
UW
6543 if (last_loc && !server_command)
6544 set_next_address (last_loc->gdbarch, last_loc->address);
c4093a6a 6545 }
c906108c 6546
4a64f543 6547 /* FIXME? Should this be moved up so that it is only called when
c4093a6a 6548 there have been breakpoints? */
c906108c 6549 annotate_breakpoints_table_end ();
d77f58be
SS
6550
6551 return nr_printable_breakpoints;
c906108c
SS
6552}
6553
ad443146
SS
6554/* Display the value of default-collect in a way that is generally
6555 compatible with the breakpoint list. */
6556
6557static void
6558default_collect_info (void)
6559{
79a45e25
PA
6560 struct ui_out *uiout = current_uiout;
6561
ad443146
SS
6562 /* If it has no value (which is frequently the case), say nothing; a
6563 message like "No default-collect." gets in user's face when it's
6564 not wanted. */
6565 if (!*default_collect)
6566 return;
6567
6568 /* The following phrase lines up nicely with per-tracepoint collect
6569 actions. */
6570 ui_out_text (uiout, "default collect ");
6571 ui_out_field_string (uiout, "default-collect", default_collect);
6572 ui_out_text (uiout, " \n");
6573}
6574
c906108c 6575static void
e5a67952 6576breakpoints_info (char *args, int from_tty)
c906108c 6577{
e5a67952 6578 breakpoint_1 (args, 0, NULL);
ad443146
SS
6579
6580 default_collect_info ();
d77f58be
SS
6581}
6582
6583static void
e5a67952 6584watchpoints_info (char *args, int from_tty)
d77f58be 6585{
e5a67952 6586 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
79a45e25 6587 struct ui_out *uiout = current_uiout;
d77f58be
SS
6588
6589 if (num_printed == 0)
6590 {
e5a67952 6591 if (args == NULL || *args == '\0')
d77f58be
SS
6592 ui_out_message (uiout, 0, "No watchpoints.\n");
6593 else
e5a67952 6594 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
d77f58be 6595 }
c906108c
SS
6596}
6597
7a292a7a 6598static void
e5a67952 6599maintenance_info_breakpoints (char *args, int from_tty)
c906108c 6600{
e5a67952 6601 breakpoint_1 (args, 1, NULL);
ad443146
SS
6602
6603 default_collect_info ();
c906108c
SS
6604}
6605
0d381245 6606static int
714835d5 6607breakpoint_has_pc (struct breakpoint *b,
6c95b8df 6608 struct program_space *pspace,
714835d5 6609 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
6610{
6611 struct bp_location *bl = b->loc;
cc59ec59 6612
0d381245
VP
6613 for (; bl; bl = bl->next)
6614 {
6c95b8df
PA
6615 if (bl->pspace == pspace
6616 && bl->address == pc
0d381245
VP
6617 && (!overlay_debugging || bl->section == section))
6618 return 1;
6619 }
6620 return 0;
6621}
6622
672f9b60 6623/* Print a message describing any user-breakpoints set at PC. This
6c95b8df
PA
6624 concerns with logical breakpoints, so we match program spaces, not
6625 address spaces. */
c906108c
SS
6626
6627static void
6c95b8df
PA
6628describe_other_breakpoints (struct gdbarch *gdbarch,
6629 struct program_space *pspace, CORE_ADDR pc,
5af949e3 6630 struct obj_section *section, int thread)
c906108c 6631{
52f0bd74
AC
6632 int others = 0;
6633 struct breakpoint *b;
c906108c
SS
6634
6635 ALL_BREAKPOINTS (b)
672f9b60
KP
6636 others += (user_breakpoint_p (b)
6637 && breakpoint_has_pc (b, pspace, pc, section));
c906108c
SS
6638 if (others > 0)
6639 {
a3f17187
AC
6640 if (others == 1)
6641 printf_filtered (_("Note: breakpoint "));
6642 else /* if (others == ???) */
6643 printf_filtered (_("Note: breakpoints "));
c906108c 6644 ALL_BREAKPOINTS (b)
672f9b60 6645 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
0d381245
VP
6646 {
6647 others--;
6648 printf_filtered ("%d", b->number);
6649 if (b->thread == -1 && thread != -1)
6650 printf_filtered (" (all threads)");
6651 else if (b->thread != -1)
6652 printf_filtered (" (thread %d)", b->thread);
6653 printf_filtered ("%s%s ",
059fb39f 6654 ((b->enable_state == bp_disabled
f8eba3c6 6655 || b->enable_state == bp_call_disabled)
0d381245
VP
6656 ? " (disabled)"
6657 : b->enable_state == bp_permanent
6658 ? " (permanent)"
6659 : ""),
6660 (others > 1) ? ","
6661 : ((others == 1) ? " and" : ""));
6662 }
a3f17187 6663 printf_filtered (_("also set at pc "));
5af949e3 6664 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
c906108c
SS
6665 printf_filtered (".\n");
6666 }
6667}
6668\f
c906108c 6669
e4f237da
KB
6670/* Return true iff it is meaningful to use the address member of
6671 BPT. For some breakpoint types, the address member is irrelevant
6672 and it makes no sense to attempt to compare it to other addresses
6673 (or use it for any other purpose either).
6674
4a64f543
MS
6675 More specifically, each of the following breakpoint types will
6676 always have a zero valued address and we don't want to mark
6677 breakpoints of any of these types to be a duplicate of an actual
6678 breakpoint at address zero:
e4f237da
KB
6679
6680 bp_watchpoint
2d134ed3
PA
6681 bp_catchpoint
6682
6683*/
e4f237da
KB
6684
6685static int
6686breakpoint_address_is_meaningful (struct breakpoint *bpt)
6687{
6688 enum bptype type = bpt->type;
6689
2d134ed3
PA
6690 return (type != bp_watchpoint && type != bp_catchpoint);
6691}
6692
6693/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6694 true if LOC1 and LOC2 represent the same watchpoint location. */
6695
6696static int
4a64f543
MS
6697watchpoint_locations_match (struct bp_location *loc1,
6698 struct bp_location *loc2)
2d134ed3 6699{
3a5c3e22
PA
6700 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6701 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6702
6703 /* Both of them must exist. */
6704 gdb_assert (w1 != NULL);
6705 gdb_assert (w2 != NULL);
2bdf28a0 6706
4a64f543
MS
6707 /* If the target can evaluate the condition expression in hardware,
6708 then we we need to insert both watchpoints even if they are at
6709 the same place. Otherwise the watchpoint will only trigger when
6710 the condition of whichever watchpoint was inserted evaluates to
6711 true, not giving a chance for GDB to check the condition of the
6712 other watchpoint. */
3a5c3e22 6713 if ((w1->cond_exp
4a64f543
MS
6714 && target_can_accel_watchpoint_condition (loc1->address,
6715 loc1->length,
0cf6dd15 6716 loc1->watchpoint_type,
3a5c3e22
PA
6717 w1->cond_exp))
6718 || (w2->cond_exp
4a64f543
MS
6719 && target_can_accel_watchpoint_condition (loc2->address,
6720 loc2->length,
0cf6dd15 6721 loc2->watchpoint_type,
3a5c3e22 6722 w2->cond_exp)))
0cf6dd15
TJB
6723 return 0;
6724
85d721b8
PA
6725 /* Note that this checks the owner's type, not the location's. In
6726 case the target does not support read watchpoints, but does
6727 support access watchpoints, we'll have bp_read_watchpoint
6728 watchpoints with hw_access locations. Those should be considered
6729 duplicates of hw_read locations. The hw_read locations will
6730 become hw_access locations later. */
2d134ed3
PA
6731 return (loc1->owner->type == loc2->owner->type
6732 && loc1->pspace->aspace == loc2->pspace->aspace
6733 && loc1->address == loc2->address
6734 && loc1->length == loc2->length);
e4f237da
KB
6735}
6736
6c95b8df
PA
6737/* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
6738 same breakpoint location. In most targets, this can only be true
6739 if ASPACE1 matches ASPACE2. On targets that have global
6740 breakpoints, the address space doesn't really matter. */
6741
6742static int
6743breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
6744 struct address_space *aspace2, CORE_ADDR addr2)
6745{
f5656ead 6746 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6c95b8df
PA
6747 || aspace1 == aspace2)
6748 && addr1 == addr2);
6749}
6750
f1310107
TJB
6751/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6752 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6753 matches ASPACE2. On targets that have global breakpoints, the address
6754 space doesn't really matter. */
6755
6756static int
6757breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
6758 int len1, struct address_space *aspace2,
6759 CORE_ADDR addr2)
6760{
f5656ead 6761 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
f1310107
TJB
6762 || aspace1 == aspace2)
6763 && addr2 >= addr1 && addr2 < addr1 + len1);
6764}
6765
6766/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6767 a ranged breakpoint. In most targets, a match happens only if ASPACE
6768 matches the breakpoint's address space. On targets that have global
6769 breakpoints, the address space doesn't really matter. */
6770
6771static int
6772breakpoint_location_address_match (struct bp_location *bl,
6773 struct address_space *aspace,
6774 CORE_ADDR addr)
6775{
6776 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6777 aspace, addr)
6778 || (bl->length
6779 && breakpoint_address_match_range (bl->pspace->aspace,
6780 bl->address, bl->length,
6781 aspace, addr)));
6782}
6783
1e4d1764
YQ
6784/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6785 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6786 true, otherwise returns false. */
6787
6788static int
6789tracepoint_locations_match (struct bp_location *loc1,
6790 struct bp_location *loc2)
6791{
6792 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6793 /* Since tracepoint locations are never duplicated with others', tracepoint
6794 locations at the same address of different tracepoints are regarded as
6795 different locations. */
6796 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6797 else
6798 return 0;
6799}
6800
2d134ed3
PA
6801/* Assuming LOC1 and LOC2's types' have meaningful target addresses
6802 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
6803 represent the same location. */
6804
6805static int
4a64f543
MS
6806breakpoint_locations_match (struct bp_location *loc1,
6807 struct bp_location *loc2)
2d134ed3 6808{
2bdf28a0
JK
6809 int hw_point1, hw_point2;
6810
6811 /* Both of them must not be in moribund_locations. */
6812 gdb_assert (loc1->owner != NULL);
6813 gdb_assert (loc2->owner != NULL);
6814
6815 hw_point1 = is_hardware_watchpoint (loc1->owner);
6816 hw_point2 = is_hardware_watchpoint (loc2->owner);
2d134ed3
PA
6817
6818 if (hw_point1 != hw_point2)
6819 return 0;
6820 else if (hw_point1)
6821 return watchpoint_locations_match (loc1, loc2);
1e4d1764
YQ
6822 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6823 return tracepoint_locations_match (loc1, loc2);
2d134ed3 6824 else
f1310107
TJB
6825 /* We compare bp_location.length in order to cover ranged breakpoints. */
6826 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6827 loc2->pspace->aspace, loc2->address)
6828 && loc1->length == loc2->length);
2d134ed3
PA
6829}
6830
76897487
KB
6831static void
6832breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6833 int bnum, int have_bnum)
6834{
f63fbe86
MS
6835 /* The longest string possibly returned by hex_string_custom
6836 is 50 chars. These must be at least that big for safety. */
6837 char astr1[64];
6838 char astr2[64];
76897487 6839
bb599908
PH
6840 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6841 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 6842 if (have_bnum)
8a3fe4f8 6843 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
6844 bnum, astr1, astr2);
6845 else
8a3fe4f8 6846 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
6847}
6848
4a64f543
MS
6849/* Adjust a breakpoint's address to account for architectural
6850 constraints on breakpoint placement. Return the adjusted address.
6851 Note: Very few targets require this kind of adjustment. For most
6852 targets, this function is simply the identity function. */
76897487
KB
6853
6854static CORE_ADDR
a6d9a66e
UW
6855adjust_breakpoint_address (struct gdbarch *gdbarch,
6856 CORE_ADDR bpaddr, enum bptype bptype)
76897487 6857{
a6d9a66e 6858 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
76897487
KB
6859 {
6860 /* Very few targets need any kind of breakpoint adjustment. */
6861 return bpaddr;
6862 }
88f7da05
KB
6863 else if (bptype == bp_watchpoint
6864 || bptype == bp_hardware_watchpoint
6865 || bptype == bp_read_watchpoint
6866 || bptype == bp_access_watchpoint
fe798b75 6867 || bptype == bp_catchpoint)
88f7da05
KB
6868 {
6869 /* Watchpoints and the various bp_catch_* eventpoints should not
6870 have their addresses modified. */
6871 return bpaddr;
6872 }
76897487
KB
6873 else
6874 {
6875 CORE_ADDR adjusted_bpaddr;
6876
6877 /* Some targets have architectural constraints on the placement
6878 of breakpoint instructions. Obtain the adjusted address. */
a6d9a66e 6879 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
76897487
KB
6880
6881 /* An adjusted breakpoint address can significantly alter
6882 a user's expectations. Print a warning if an adjustment
6883 is required. */
6884 if (adjusted_bpaddr != bpaddr)
6885 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
6886
6887 return adjusted_bpaddr;
6888 }
6889}
6890
28010a5d
PA
6891void
6892init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
6893 struct breakpoint *owner)
7cc221ef 6894{
7cc221ef
DJ
6895 memset (loc, 0, sizeof (*loc));
6896
348d480f
PA
6897 gdb_assert (ops != NULL);
6898
28010a5d
PA
6899 loc->ops = ops;
6900 loc->owner = owner;
511a6cd4 6901 loc->cond = NULL;
b775012e 6902 loc->cond_bytecode = NULL;
0d381245
VP
6903 loc->shlib_disabled = 0;
6904 loc->enabled = 1;
e049a4b5 6905
28010a5d 6906 switch (owner->type)
e049a4b5
DJ
6907 {
6908 case bp_breakpoint:
6909 case bp_until:
6910 case bp_finish:
6911 case bp_longjmp:
6912 case bp_longjmp_resume:
e2e4d78b 6913 case bp_longjmp_call_dummy:
186c406b
TT
6914 case bp_exception:
6915 case bp_exception_resume:
e049a4b5 6916 case bp_step_resume:
2c03e5be 6917 case bp_hp_step_resume:
e049a4b5
DJ
6918 case bp_watchpoint_scope:
6919 case bp_call_dummy:
aa7d318d 6920 case bp_std_terminate:
e049a4b5
DJ
6921 case bp_shlib_event:
6922 case bp_thread_event:
6923 case bp_overlay_event:
4efc6507 6924 case bp_jit_event:
0fd8e87f 6925 case bp_longjmp_master:
aa7d318d 6926 case bp_std_terminate_master:
186c406b 6927 case bp_exception_master:
0e30163f
JK
6928 case bp_gnu_ifunc_resolver:
6929 case bp_gnu_ifunc_resolver_return:
e7e0cddf 6930 case bp_dprintf:
e049a4b5 6931 loc->loc_type = bp_loc_software_breakpoint;
b775012e 6932 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
6933 break;
6934 case bp_hardware_breakpoint:
6935 loc->loc_type = bp_loc_hardware_breakpoint;
b775012e 6936 mark_breakpoint_location_modified (loc);
e049a4b5
DJ
6937 break;
6938 case bp_hardware_watchpoint:
6939 case bp_read_watchpoint:
6940 case bp_access_watchpoint:
6941 loc->loc_type = bp_loc_hardware_watchpoint;
6942 break;
6943 case bp_watchpoint:
ce78b96d 6944 case bp_catchpoint:
15c3d785
PA
6945 case bp_tracepoint:
6946 case bp_fast_tracepoint:
0fb4aa4b 6947 case bp_static_tracepoint:
e049a4b5
DJ
6948 loc->loc_type = bp_loc_other;
6949 break;
6950 default:
e2e0b3e5 6951 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
6952 }
6953
f431efe5 6954 loc->refc = 1;
28010a5d
PA
6955}
6956
6957/* Allocate a struct bp_location. */
6958
6959static struct bp_location *
6960allocate_bp_location (struct breakpoint *bpt)
6961{
348d480f
PA
6962 return bpt->ops->allocate_location (bpt);
6963}
7cc221ef 6964
f431efe5
PA
6965static void
6966free_bp_location (struct bp_location *loc)
fe3f5fa8 6967{
348d480f 6968 loc->ops->dtor (loc);
fe3f5fa8
VP
6969 xfree (loc);
6970}
6971
f431efe5
PA
6972/* Increment reference count. */
6973
6974static void
6975incref_bp_location (struct bp_location *bl)
6976{
6977 ++bl->refc;
6978}
6979
6980/* Decrement reference count. If the reference count reaches 0,
6981 destroy the bp_location. Sets *BLP to NULL. */
6982
6983static void
6984decref_bp_location (struct bp_location **blp)
6985{
0807b50c
PA
6986 gdb_assert ((*blp)->refc > 0);
6987
f431efe5
PA
6988 if (--(*blp)->refc == 0)
6989 free_bp_location (*blp);
6990 *blp = NULL;
6991}
6992
346774a9 6993/* Add breakpoint B at the end of the global breakpoint chain. */
c906108c 6994
346774a9
PA
6995static void
6996add_to_breakpoint_chain (struct breakpoint *b)
c906108c 6997{
346774a9 6998 struct breakpoint *b1;
c906108c 6999
346774a9
PA
7000 /* Add this breakpoint to the end of the chain so that a list of
7001 breakpoints will come out in order of increasing numbers. */
7002
7003 b1 = breakpoint_chain;
7004 if (b1 == 0)
7005 breakpoint_chain = b;
7006 else
7007 {
7008 while (b1->next)
7009 b1 = b1->next;
7010 b1->next = b;
7011 }
7012}
7013
7014/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7015
7016static void
7017init_raw_breakpoint_without_location (struct breakpoint *b,
7018 struct gdbarch *gdbarch,
28010a5d 7019 enum bptype bptype,
c0a91b2b 7020 const struct breakpoint_ops *ops)
346774a9 7021{
c906108c 7022 memset (b, 0, sizeof (*b));
2219d63c 7023
348d480f
PA
7024 gdb_assert (ops != NULL);
7025
28010a5d 7026 b->ops = ops;
4d28f7a8 7027 b->type = bptype;
a6d9a66e 7028 b->gdbarch = gdbarch;
c906108c
SS
7029 b->language = current_language->la_language;
7030 b->input_radix = input_radix;
7031 b->thread = -1;
b5de0fa7 7032 b->enable_state = bp_enabled;
c906108c
SS
7033 b->next = 0;
7034 b->silent = 0;
7035 b->ignore_count = 0;
7036 b->commands = NULL;
818dd999 7037 b->frame_id = null_frame_id;
0d381245 7038 b->condition_not_parsed = 0;
84f4c1fe 7039 b->py_bp_object = NULL;
d0fb5eae 7040 b->related_breakpoint = b;
346774a9
PA
7041}
7042
7043/* Helper to set_raw_breakpoint below. Creates a breakpoint
7044 that has type BPTYPE and has no locations as yet. */
346774a9
PA
7045
7046static struct breakpoint *
7047set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
348d480f 7048 enum bptype bptype,
c0a91b2b 7049 const struct breakpoint_ops *ops)
346774a9
PA
7050{
7051 struct breakpoint *b = XNEW (struct breakpoint);
7052
348d480f 7053 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
c56053d2 7054 add_to_breakpoint_chain (b);
0d381245
VP
7055 return b;
7056}
7057
0e30163f
JK
7058/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7059 resolutions should be made as the user specified the location explicitly
7060 enough. */
7061
0d381245 7062static void
0e30163f 7063set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
0d381245 7064{
2bdf28a0
JK
7065 gdb_assert (loc->owner != NULL);
7066
0d381245 7067 if (loc->owner->type == bp_breakpoint
1042e4c0 7068 || loc->owner->type == bp_hardware_breakpoint
d77f58be 7069 || is_tracepoint (loc->owner))
0d381245 7070 {
0e30163f 7071 int is_gnu_ifunc;
2c02bd72 7072 const char *function_name;
6a3a010b 7073 CORE_ADDR func_addr;
0e30163f 7074
2c02bd72 7075 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
6a3a010b 7076 &func_addr, NULL, &is_gnu_ifunc);
0e30163f
JK
7077
7078 if (is_gnu_ifunc && !explicit_loc)
7079 {
7080 struct breakpoint *b = loc->owner;
7081
7082 gdb_assert (loc->pspace == current_program_space);
2c02bd72 7083 if (gnu_ifunc_resolve_name (function_name,
0e30163f
JK
7084 &loc->requested_address))
7085 {
7086 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7087 loc->address = adjust_breakpoint_address (loc->gdbarch,
7088 loc->requested_address,
7089 b->type);
7090 }
7091 else if (b->type == bp_breakpoint && b->loc == loc
7092 && loc->next == NULL && b->related_breakpoint == b)
7093 {
7094 /* Create only the whole new breakpoint of this type but do not
7095 mess more complicated breakpoints with multiple locations. */
7096 b->type = bp_gnu_ifunc_resolver;
6a3a010b
MR
7097 /* Remember the resolver's address for use by the return
7098 breakpoint. */
7099 loc->related_address = func_addr;
0e30163f
JK
7100 }
7101 }
7102
2c02bd72
DE
7103 if (function_name)
7104 loc->function_name = xstrdup (function_name);
0d381245
VP
7105 }
7106}
7107
a6d9a66e 7108/* Attempt to determine architecture of location identified by SAL. */
1bfeeb0f 7109struct gdbarch *
a6d9a66e
UW
7110get_sal_arch (struct symtab_and_line sal)
7111{
7112 if (sal.section)
7113 return get_objfile_arch (sal.section->objfile);
7114 if (sal.symtab)
7115 return get_objfile_arch (sal.symtab->objfile);
7116
7117 return NULL;
7118}
7119
346774a9
PA
7120/* Low level routine for partially initializing a breakpoint of type
7121 BPTYPE. The newly created breakpoint's address, section, source
c56053d2 7122 file name, and line number are provided by SAL.
0d381245
VP
7123
7124 It is expected that the caller will complete the initialization of
7125 the newly created breakpoint struct as well as output any status
c56053d2 7126 information regarding the creation of a new breakpoint. */
0d381245 7127
346774a9
PA
7128static void
7129init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
28010a5d 7130 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7131 const struct breakpoint_ops *ops)
0d381245 7132{
28010a5d 7133 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
346774a9 7134
3742cc8b 7135 add_location_to_breakpoint (b, &sal);
0d381245 7136
6c95b8df
PA
7137 if (bptype != bp_catchpoint)
7138 gdb_assert (sal.pspace != NULL);
7139
f8eba3c6
TT
7140 /* Store the program space that was used to set the breakpoint,
7141 except for ordinary breakpoints, which are independent of the
7142 program space. */
7143 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7144 b->pspace = sal.pspace;
346774a9 7145}
c906108c 7146
346774a9
PA
7147/* set_raw_breakpoint is a low level routine for allocating and
7148 partially initializing a breakpoint of type BPTYPE. The newly
7149 created breakpoint's address, section, source file name, and line
7150 number are provided by SAL. The newly created and partially
7151 initialized breakpoint is added to the breakpoint chain and
7152 is also returned as the value of this function.
7153
7154 It is expected that the caller will complete the initialization of
7155 the newly created breakpoint struct as well as output any status
7156 information regarding the creation of a new breakpoint. In
7157 particular, set_raw_breakpoint does NOT set the breakpoint
7158 number! Care should be taken to not allow an error to occur
7159 prior to completing the initialization of the breakpoint. If this
7160 should happen, a bogus breakpoint will be left on the chain. */
7161
7162struct breakpoint *
7163set_raw_breakpoint (struct gdbarch *gdbarch,
348d480f 7164 struct symtab_and_line sal, enum bptype bptype,
c0a91b2b 7165 const struct breakpoint_ops *ops)
346774a9
PA
7166{
7167 struct breakpoint *b = XNEW (struct breakpoint);
7168
348d480f 7169 init_raw_breakpoint (b, gdbarch, sal, bptype, ops);
c56053d2 7170 add_to_breakpoint_chain (b);
c906108c
SS
7171 return b;
7172}
7173
c2c6d25f
JM
7174
7175/* Note that the breakpoint object B describes a permanent breakpoint
7176 instruction, hard-wired into the inferior's code. */
7177void
7178make_breakpoint_permanent (struct breakpoint *b)
7179{
0d381245 7180 struct bp_location *bl;
cc59ec59 7181
b5de0fa7 7182 b->enable_state = bp_permanent;
c2c6d25f 7183
4a64f543
MS
7184 /* By definition, permanent breakpoints are already present in the
7185 code. Mark all locations as inserted. For now,
7186 make_breakpoint_permanent is called in just one place, so it's
7187 hard to say if it's reasonable to have permanent breakpoint with
e5dd4106 7188 multiple locations or not, but it's easy to implement. */
0d381245
VP
7189 for (bl = b->loc; bl; bl = bl->next)
7190 bl->inserted = 1;
c2c6d25f
JM
7191}
7192
53a5351d 7193/* Call this routine when stepping and nexting to enable a breakpoint
186c406b
TT
7194 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7195 initiated the operation. */
c906108c
SS
7196
7197void
186c406b 7198set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
c906108c 7199{
35df4500 7200 struct breakpoint *b, *b_tmp;
186c406b 7201 int thread = tp->num;
0fd8e87f
UW
7202
7203 /* To avoid having to rescan all objfile symbols at every step,
7204 we maintain a list of continually-inserted but always disabled
7205 longjmp "master" breakpoints. Here, we simply create momentary
7206 clones of those and enable them for the requested thread. */
35df4500 7207 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df 7208 if (b->pspace == current_program_space
186c406b
TT
7209 && (b->type == bp_longjmp_master
7210 || b->type == bp_exception_master))
0fd8e87f 7211 {
06edf0c0
PA
7212 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7213 struct breakpoint *clone;
cc59ec59 7214
e2e4d78b
JK
7215 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7216 after their removal. */
06edf0c0 7217 clone = momentary_breakpoint_from_master (b, type,
e2e4d78b 7218 &longjmp_breakpoint_ops);
0fd8e87f
UW
7219 clone->thread = thread;
7220 }
186c406b
TT
7221
7222 tp->initiating_frame = frame;
c906108c
SS
7223}
7224
611c83ae 7225/* Delete all longjmp breakpoints from THREAD. */
c906108c 7226void
611c83ae 7227delete_longjmp_breakpoint (int thread)
c906108c 7228{
35df4500 7229 struct breakpoint *b, *b_tmp;
c906108c 7230
35df4500 7231 ALL_BREAKPOINTS_SAFE (b, b_tmp)
186c406b 7232 if (b->type == bp_longjmp || b->type == bp_exception)
611c83ae
PA
7233 {
7234 if (b->thread == thread)
7235 delete_breakpoint (b);
7236 }
c906108c
SS
7237}
7238
f59f708a
PA
7239void
7240delete_longjmp_breakpoint_at_next_stop (int thread)
7241{
7242 struct breakpoint *b, *b_tmp;
7243
7244 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7245 if (b->type == bp_longjmp || b->type == bp_exception)
7246 {
7247 if (b->thread == thread)
7248 b->disposition = disp_del_at_next_stop;
7249 }
7250}
7251
e2e4d78b
JK
7252/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7253 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7254 pointer to any of them. Return NULL if this system cannot place longjmp
7255 breakpoints. */
7256
7257struct breakpoint *
7258set_longjmp_breakpoint_for_call_dummy (void)
7259{
7260 struct breakpoint *b, *retval = NULL;
7261
7262 ALL_BREAKPOINTS (b)
7263 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7264 {
7265 struct breakpoint *new_b;
7266
7267 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
7268 &momentary_breakpoint_ops);
7269 new_b->thread = pid_to_thread_id (inferior_ptid);
7270
7271 /* Link NEW_B into the chain of RETVAL breakpoints. */
7272
7273 gdb_assert (new_b->related_breakpoint == new_b);
7274 if (retval == NULL)
7275 retval = new_b;
7276 new_b->related_breakpoint = retval;
7277 while (retval->related_breakpoint != new_b->related_breakpoint)
7278 retval = retval->related_breakpoint;
7279 retval->related_breakpoint = new_b;
7280 }
7281
7282 return retval;
7283}
7284
7285/* Verify all existing dummy frames and their associated breakpoints for
7286 THREAD. Remove those which can no longer be found in the current frame
7287 stack.
7288
7289 You should call this function only at places where it is safe to currently
7290 unwind the whole stack. Failed stack unwind would discard live dummy
7291 frames. */
7292
7293void
7294check_longjmp_breakpoint_for_call_dummy (int thread)
7295{
7296 struct breakpoint *b, *b_tmp;
7297
7298 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7299 if (b->type == bp_longjmp_call_dummy && b->thread == thread)
7300 {
7301 struct breakpoint *dummy_b = b->related_breakpoint;
7302
7303 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7304 dummy_b = dummy_b->related_breakpoint;
7305 if (dummy_b->type != bp_call_dummy
7306 || frame_find_by_id (dummy_b->frame_id) != NULL)
7307 continue;
7308
7309 dummy_frame_discard (dummy_b->frame_id);
7310
7311 while (b->related_breakpoint != b)
7312 {
7313 if (b_tmp == b->related_breakpoint)
7314 b_tmp = b->related_breakpoint->next;
7315 delete_breakpoint (b->related_breakpoint);
7316 }
7317 delete_breakpoint (b);
7318 }
7319}
7320
1900040c
MS
7321void
7322enable_overlay_breakpoints (void)
7323{
52f0bd74 7324 struct breakpoint *b;
1900040c
MS
7325
7326 ALL_BREAKPOINTS (b)
7327 if (b->type == bp_overlay_event)
7328 {
7329 b->enable_state = bp_enabled;
b60e7edf 7330 update_global_location_list (1);
c02f5703 7331 overlay_events_enabled = 1;
1900040c
MS
7332 }
7333}
7334
7335void
7336disable_overlay_breakpoints (void)
7337{
52f0bd74 7338 struct breakpoint *b;
1900040c
MS
7339
7340 ALL_BREAKPOINTS (b)
7341 if (b->type == bp_overlay_event)
7342 {
7343 b->enable_state = bp_disabled;
b60e7edf 7344 update_global_location_list (0);
c02f5703 7345 overlay_events_enabled = 0;
1900040c
MS
7346 }
7347}
7348
aa7d318d
TT
7349/* Set an active std::terminate breakpoint for each std::terminate
7350 master breakpoint. */
7351void
7352set_std_terminate_breakpoint (void)
7353{
35df4500 7354 struct breakpoint *b, *b_tmp;
aa7d318d 7355
35df4500 7356 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7357 if (b->pspace == current_program_space
7358 && b->type == bp_std_terminate_master)
7359 {
06edf0c0
PA
7360 momentary_breakpoint_from_master (b, bp_std_terminate,
7361 &momentary_breakpoint_ops);
aa7d318d
TT
7362 }
7363}
7364
7365/* Delete all the std::terminate breakpoints. */
7366void
7367delete_std_terminate_breakpoint (void)
7368{
35df4500 7369 struct breakpoint *b, *b_tmp;
aa7d318d 7370
35df4500 7371 ALL_BREAKPOINTS_SAFE (b, b_tmp)
aa7d318d
TT
7372 if (b->type == bp_std_terminate)
7373 delete_breakpoint (b);
7374}
7375
c4093a6a 7376struct breakpoint *
a6d9a66e 7377create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
c4093a6a
JM
7378{
7379 struct breakpoint *b;
c4093a6a 7380
06edf0c0
PA
7381 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7382 &internal_breakpoint_ops);
7383
b5de0fa7 7384 b->enable_state = bp_enabled;
c4093a6a 7385 /* addr_string has to be used or breakpoint_re_set will delete me. */
5af949e3
UW
7386 b->addr_string
7387 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
c4093a6a 7388
b60e7edf 7389 update_global_location_list_nothrow (1);
74960c60 7390
c4093a6a
JM
7391 return b;
7392}
7393
7394void
7395remove_thread_event_breakpoints (void)
7396{
35df4500 7397 struct breakpoint *b, *b_tmp;
c4093a6a 7398
35df4500 7399 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7400 if (b->type == bp_thread_event
7401 && b->loc->pspace == current_program_space)
c4093a6a
JM
7402 delete_breakpoint (b);
7403}
7404
0101ce28
JJ
7405struct lang_and_radix
7406 {
7407 enum language lang;
7408 int radix;
7409 };
7410
4efc6507
DE
7411/* Create a breakpoint for JIT code registration and unregistration. */
7412
7413struct breakpoint *
7414create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7415{
7416 struct breakpoint *b;
7417
06edf0c0
PA
7418 b = create_internal_breakpoint (gdbarch, address, bp_jit_event,
7419 &internal_breakpoint_ops);
4efc6507
DE
7420 update_global_location_list_nothrow (1);
7421 return b;
7422}
0101ce28 7423
03673fc7
PP
7424/* Remove JIT code registration and unregistration breakpoint(s). */
7425
7426void
7427remove_jit_event_breakpoints (void)
7428{
7429 struct breakpoint *b, *b_tmp;
7430
7431 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7432 if (b->type == bp_jit_event
7433 && b->loc->pspace == current_program_space)
7434 delete_breakpoint (b);
7435}
7436
cae688ec
JJ
7437void
7438remove_solib_event_breakpoints (void)
7439{
35df4500 7440 struct breakpoint *b, *b_tmp;
cae688ec 7441
35df4500 7442 ALL_BREAKPOINTS_SAFE (b, b_tmp)
6c95b8df
PA
7443 if (b->type == bp_shlib_event
7444 && b->loc->pspace == current_program_space)
cae688ec
JJ
7445 delete_breakpoint (b);
7446}
7447
7448struct breakpoint *
a6d9a66e 7449create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
cae688ec
JJ
7450{
7451 struct breakpoint *b;
7452
06edf0c0
PA
7453 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7454 &internal_breakpoint_ops);
b60e7edf 7455 update_global_location_list_nothrow (1);
cae688ec
JJ
7456 return b;
7457}
7458
7459/* Disable any breakpoints that are on code in shared libraries. Only
7460 apply to enabled breakpoints, disabled ones can just stay disabled. */
7461
7462void
cb851954 7463disable_breakpoints_in_shlibs (void)
cae688ec 7464{
876fa593 7465 struct bp_location *loc, **locp_tmp;
cae688ec 7466
876fa593 7467 ALL_BP_LOCATIONS (loc, locp_tmp)
cae688ec 7468 {
2bdf28a0 7469 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7470 struct breakpoint *b = loc->owner;
2bdf28a0 7471
4a64f543
MS
7472 /* We apply the check to all breakpoints, including disabled for
7473 those with loc->duplicate set. This is so that when breakpoint
7474 becomes enabled, or the duplicate is removed, gdb will try to
7475 insert all breakpoints. If we don't set shlib_disabled here,
7476 we'll try to insert those breakpoints and fail. */
1042e4c0 7477 if (((b->type == bp_breakpoint)
508ccb1f 7478 || (b->type == bp_jit_event)
1042e4c0 7479 || (b->type == bp_hardware_breakpoint)
d77f58be 7480 || (is_tracepoint (b)))
6c95b8df 7481 && loc->pspace == current_program_space
0d381245 7482 && !loc->shlib_disabled
6c95b8df 7483 && solib_name_from_address (loc->pspace, loc->address)
a77053c2 7484 )
0d381245
VP
7485 {
7486 loc->shlib_disabled = 1;
7487 }
cae688ec
JJ
7488 }
7489}
7490
63644780
NB
7491/* Disable any breakpoints and tracepoints that are in SOLIB upon
7492 notification of unloaded_shlib. Only apply to enabled breakpoints,
7493 disabled ones can just stay disabled. */
84acb35a 7494
75149521 7495static void
84acb35a
JJ
7496disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7497{
876fa593 7498 struct bp_location *loc, **locp_tmp;
84acb35a
JJ
7499 int disabled_shlib_breaks = 0;
7500
c86cf029
VP
7501 /* SunOS a.out shared libraries are always mapped, so do not
7502 disable breakpoints; they will only be reported as unloaded
7503 through clear_solib when GDB discards its shared library
7504 list. See clear_solib for more information. */
7505 if (exec_bfd != NULL
7506 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
7507 return;
7508
876fa593 7509 ALL_BP_LOCATIONS (loc, locp_tmp)
84acb35a 7510 {
2bdf28a0 7511 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
0d381245 7512 struct breakpoint *b = loc->owner;
cc59ec59 7513
1e4d1764 7514 if (solib->pspace == loc->pspace
e2dd7057 7515 && !loc->shlib_disabled
1e4d1764
YQ
7516 && (((b->type == bp_breakpoint
7517 || b->type == bp_jit_event
7518 || b->type == bp_hardware_breakpoint)
7519 && (loc->loc_type == bp_loc_hardware_breakpoint
7520 || loc->loc_type == bp_loc_software_breakpoint))
7521 || is_tracepoint (b))
e2dd7057 7522 && solib_contains_address_p (solib, loc->address))
84acb35a 7523 {
e2dd7057
PP
7524 loc->shlib_disabled = 1;
7525 /* At this point, we cannot rely on remove_breakpoint
7526 succeeding so we must mark the breakpoint as not inserted
7527 to prevent future errors occurring in remove_breakpoints. */
7528 loc->inserted = 0;
8d3788bd
VP
7529
7530 /* This may cause duplicate notifications for the same breakpoint. */
7531 observer_notify_breakpoint_modified (b);
7532
e2dd7057
PP
7533 if (!disabled_shlib_breaks)
7534 {
7535 target_terminal_ours_for_output ();
3e43a32a
MS
7536 warning (_("Temporarily disabling breakpoints "
7537 "for unloaded shared library \"%s\""),
e2dd7057 7538 solib->so_name);
84acb35a 7539 }
e2dd7057 7540 disabled_shlib_breaks = 1;
84acb35a
JJ
7541 }
7542 }
84acb35a
JJ
7543}
7544
63644780
NB
7545/* Disable any breakpoints and tracepoints in OBJFILE upon
7546 notification of free_objfile. Only apply to enabled breakpoints,
7547 disabled ones can just stay disabled. */
7548
7549static void
7550disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7551{
7552 struct breakpoint *b;
7553
7554 if (objfile == NULL)
7555 return;
7556
7557 /* If the file is a shared library not loaded by the user then
7558 solib_unloaded was notified and disable_breakpoints_in_unloaded_shlib
7559 was called. In that case there is no need to take action again. */
7560 if ((objfile->flags & OBJF_SHARED) && !(objfile->flags & OBJF_USERLOADED))
7561 return;
7562
7563 ALL_BREAKPOINTS (b)
7564 {
7565 struct bp_location *loc;
7566 int bp_modified = 0;
7567
7568 if (!is_breakpoint (b) && !is_tracepoint (b))
7569 continue;
7570
7571 for (loc = b->loc; loc != NULL; loc = loc->next)
7572 {
7573 CORE_ADDR loc_addr = loc->address;
7574
7575 if (loc->loc_type != bp_loc_hardware_breakpoint
7576 && loc->loc_type != bp_loc_software_breakpoint)
7577 continue;
7578
7579 if (loc->shlib_disabled != 0)
7580 continue;
7581
7582 if (objfile->pspace != loc->pspace)
7583 continue;
7584
7585 if (loc->loc_type != bp_loc_hardware_breakpoint
7586 && loc->loc_type != bp_loc_software_breakpoint)
7587 continue;
7588
7589 if (is_addr_in_objfile (loc_addr, objfile))
7590 {
7591 loc->shlib_disabled = 1;
7592 loc->inserted = 0;
7593
7594 mark_breakpoint_location_modified (loc);
7595
7596 bp_modified = 1;
7597 }
7598 }
7599
7600 if (bp_modified)
7601 observer_notify_breakpoint_modified (b);
7602 }
7603}
7604
ce78b96d
JB
7605/* FORK & VFORK catchpoints. */
7606
e29a4733
PA
7607/* An instance of this type is used to represent a fork or vfork
7608 catchpoint. It includes a "struct breakpoint" as a kind of base
7609 class; users downcast to "struct breakpoint *" when needed. A
7610 breakpoint is really of this type iff its ops pointer points to
7611 CATCH_FORK_BREAKPOINT_OPS. */
7612
7613struct fork_catchpoint
7614{
7615 /* The base class. */
7616 struct breakpoint base;
7617
7618 /* Process id of a child process whose forking triggered this
7619 catchpoint. This field is only valid immediately after this
7620 catchpoint has triggered. */
7621 ptid_t forked_inferior_pid;
7622};
7623
4a64f543
MS
7624/* Implement the "insert" breakpoint_ops method for fork
7625 catchpoints. */
ce78b96d 7626
77b06cd7
TJB
7627static int
7628insert_catch_fork (struct bp_location *bl)
ce78b96d 7629{
dfd4cc63 7630 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7631}
7632
4a64f543
MS
7633/* Implement the "remove" breakpoint_ops method for fork
7634 catchpoints. */
ce78b96d
JB
7635
7636static int
77b06cd7 7637remove_catch_fork (struct bp_location *bl)
ce78b96d 7638{
dfd4cc63 7639 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7640}
7641
7642/* Implement the "breakpoint_hit" breakpoint_ops method for fork
7643 catchpoints. */
7644
7645static int
f1310107 7646breakpoint_hit_catch_fork (const struct bp_location *bl,
09ac7c10
TT
7647 struct address_space *aspace, CORE_ADDR bp_addr,
7648 const struct target_waitstatus *ws)
ce78b96d 7649{
e29a4733
PA
7650 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7651
f90263c1
TT
7652 if (ws->kind != TARGET_WAITKIND_FORKED)
7653 return 0;
7654
7655 c->forked_inferior_pid = ws->value.related_pid;
7656 return 1;
ce78b96d
JB
7657}
7658
4a64f543
MS
7659/* Implement the "print_it" breakpoint_ops method for fork
7660 catchpoints. */
ce78b96d
JB
7661
7662static enum print_stop_action
348d480f 7663print_it_catch_fork (bpstat bs)
ce78b96d 7664{
36dfb11c 7665 struct ui_out *uiout = current_uiout;
348d480f
PA
7666 struct breakpoint *b = bs->breakpoint_at;
7667 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
e29a4733 7668
ce78b96d 7669 annotate_catchpoint (b->number);
36dfb11c
TT
7670 if (b->disposition == disp_del)
7671 ui_out_text (uiout, "\nTemporary catchpoint ");
7672 else
7673 ui_out_text (uiout, "\nCatchpoint ");
7674 if (ui_out_is_mi_like_p (uiout))
7675 {
7676 ui_out_field_string (uiout, "reason",
7677 async_reason_lookup (EXEC_ASYNC_FORK));
7678 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
7679 }
7680 ui_out_field_int (uiout, "bkptno", b->number);
7681 ui_out_text (uiout, " (forked process ");
7682 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
7683 ui_out_text (uiout, "), ");
ce78b96d
JB
7684 return PRINT_SRC_AND_LOC;
7685}
7686
4a64f543
MS
7687/* Implement the "print_one" breakpoint_ops method for fork
7688 catchpoints. */
ce78b96d
JB
7689
7690static void
a6d9a66e 7691print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7692{
e29a4733 7693 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7694 struct value_print_options opts;
79a45e25 7695 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7696
7697 get_user_print_options (&opts);
7698
4a64f543
MS
7699 /* Field 4, the address, is omitted (which makes the columns not
7700 line up too nicely with the headers, but the effect is relatively
7701 readable). */
79a45b7d 7702 if (opts.addressprint)
ce78b96d
JB
7703 ui_out_field_skip (uiout, "addr");
7704 annotate_field (5);
7705 ui_out_text (uiout, "fork");
e29a4733 7706 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
7707 {
7708 ui_out_text (uiout, ", process ");
7709 ui_out_field_int (uiout, "what",
e29a4733 7710 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
7711 ui_out_spaces (uiout, 1);
7712 }
8ac3646f
TT
7713
7714 if (ui_out_is_mi_like_p (uiout))
7715 ui_out_field_string (uiout, "catch-type", "fork");
ce78b96d
JB
7716}
7717
7718/* Implement the "print_mention" breakpoint_ops method for fork
7719 catchpoints. */
7720
7721static void
7722print_mention_catch_fork (struct breakpoint *b)
7723{
7724 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7725}
7726
6149aea9
PA
7727/* Implement the "print_recreate" breakpoint_ops method for fork
7728 catchpoints. */
7729
7730static void
7731print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7732{
7733 fprintf_unfiltered (fp, "catch fork");
d9b3f62e 7734 print_recreate_thread (b, fp);
6149aea9
PA
7735}
7736
ce78b96d
JB
7737/* The breakpoint_ops structure to be used in fork catchpoints. */
7738
2060206e 7739static struct breakpoint_ops catch_fork_breakpoint_ops;
ce78b96d 7740
4a64f543
MS
7741/* Implement the "insert" breakpoint_ops method for vfork
7742 catchpoints. */
ce78b96d 7743
77b06cd7
TJB
7744static int
7745insert_catch_vfork (struct bp_location *bl)
ce78b96d 7746{
dfd4cc63 7747 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7748}
7749
4a64f543
MS
7750/* Implement the "remove" breakpoint_ops method for vfork
7751 catchpoints. */
ce78b96d
JB
7752
7753static int
77b06cd7 7754remove_catch_vfork (struct bp_location *bl)
ce78b96d 7755{
dfd4cc63 7756 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
ce78b96d
JB
7757}
7758
7759/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7760 catchpoints. */
7761
7762static int
f1310107 7763breakpoint_hit_catch_vfork (const struct bp_location *bl,
09ac7c10
TT
7764 struct address_space *aspace, CORE_ADDR bp_addr,
7765 const struct target_waitstatus *ws)
ce78b96d 7766{
e29a4733
PA
7767 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7768
f90263c1
TT
7769 if (ws->kind != TARGET_WAITKIND_VFORKED)
7770 return 0;
7771
7772 c->forked_inferior_pid = ws->value.related_pid;
7773 return 1;
ce78b96d
JB
7774}
7775
4a64f543
MS
7776/* Implement the "print_it" breakpoint_ops method for vfork
7777 catchpoints. */
ce78b96d
JB
7778
7779static enum print_stop_action
348d480f 7780print_it_catch_vfork (bpstat bs)
ce78b96d 7781{
36dfb11c 7782 struct ui_out *uiout = current_uiout;
348d480f 7783 struct breakpoint *b = bs->breakpoint_at;
e29a4733
PA
7784 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7785
ce78b96d 7786 annotate_catchpoint (b->number);
36dfb11c
TT
7787 if (b->disposition == disp_del)
7788 ui_out_text (uiout, "\nTemporary catchpoint ");
7789 else
7790 ui_out_text (uiout, "\nCatchpoint ");
7791 if (ui_out_is_mi_like_p (uiout))
7792 {
7793 ui_out_field_string (uiout, "reason",
7794 async_reason_lookup (EXEC_ASYNC_VFORK));
7795 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
7796 }
7797 ui_out_field_int (uiout, "bkptno", b->number);
7798 ui_out_text (uiout, " (vforked process ");
7799 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
7800 ui_out_text (uiout, "), ");
ce78b96d
JB
7801 return PRINT_SRC_AND_LOC;
7802}
7803
4a64f543
MS
7804/* Implement the "print_one" breakpoint_ops method for vfork
7805 catchpoints. */
ce78b96d
JB
7806
7807static void
a6d9a66e 7808print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
ce78b96d 7809{
e29a4733 7810 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
79a45b7d 7811 struct value_print_options opts;
79a45e25 7812 struct ui_out *uiout = current_uiout;
79a45b7d
TT
7813
7814 get_user_print_options (&opts);
4a64f543
MS
7815 /* Field 4, the address, is omitted (which makes the columns not
7816 line up too nicely with the headers, but the effect is relatively
7817 readable). */
79a45b7d 7818 if (opts.addressprint)
ce78b96d
JB
7819 ui_out_field_skip (uiout, "addr");
7820 annotate_field (5);
7821 ui_out_text (uiout, "vfork");
e29a4733 7822 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
ce78b96d
JB
7823 {
7824 ui_out_text (uiout, ", process ");
7825 ui_out_field_int (uiout, "what",
e29a4733 7826 ptid_get_pid (c->forked_inferior_pid));
ce78b96d
JB
7827 ui_out_spaces (uiout, 1);
7828 }
8ac3646f
TT
7829
7830 if (ui_out_is_mi_like_p (uiout))
7831 ui_out_field_string (uiout, "catch-type", "vfork");
ce78b96d
JB
7832}
7833
7834/* Implement the "print_mention" breakpoint_ops method for vfork
7835 catchpoints. */
7836
7837static void
7838print_mention_catch_vfork (struct breakpoint *b)
7839{
7840 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7841}
7842
6149aea9
PA
7843/* Implement the "print_recreate" breakpoint_ops method for vfork
7844 catchpoints. */
7845
7846static void
7847print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7848{
7849 fprintf_unfiltered (fp, "catch vfork");
d9b3f62e 7850 print_recreate_thread (b, fp);
6149aea9
PA
7851}
7852
ce78b96d
JB
7853/* The breakpoint_ops structure to be used in vfork catchpoints. */
7854
2060206e 7855static struct breakpoint_ops catch_vfork_breakpoint_ops;
ce78b96d 7856
edcc5120
TT
7857/* An instance of this type is used to represent an solib catchpoint.
7858 It includes a "struct breakpoint" as a kind of base class; users
7859 downcast to "struct breakpoint *" when needed. A breakpoint is
7860 really of this type iff its ops pointer points to
7861 CATCH_SOLIB_BREAKPOINT_OPS. */
7862
7863struct solib_catchpoint
7864{
7865 /* The base class. */
7866 struct breakpoint base;
7867
7868 /* True for "catch load", false for "catch unload". */
7869 unsigned char is_load;
7870
7871 /* Regular expression to match, if any. COMPILED is only valid when
7872 REGEX is non-NULL. */
7873 char *regex;
7874 regex_t compiled;
7875};
7876
7877static void
7878dtor_catch_solib (struct breakpoint *b)
7879{
7880 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
7881
7882 if (self->regex)
7883 regfree (&self->compiled);
7884 xfree (self->regex);
7885
7886 base_breakpoint_ops.dtor (b);
7887}
7888
7889static int
7890insert_catch_solib (struct bp_location *ignore)
7891{
7892 return 0;
7893}
7894
7895static int
7896remove_catch_solib (struct bp_location *ignore)
7897{
7898 return 0;
7899}
7900
7901static int
7902breakpoint_hit_catch_solib (const struct bp_location *bl,
7903 struct address_space *aspace,
7904 CORE_ADDR bp_addr,
7905 const struct target_waitstatus *ws)
7906{
7907 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
7908 struct breakpoint *other;
7909
7910 if (ws->kind == TARGET_WAITKIND_LOADED)
7911 return 1;
7912
7913 ALL_BREAKPOINTS (other)
7914 {
7915 struct bp_location *other_bl;
7916
7917 if (other == bl->owner)
7918 continue;
7919
7920 if (other->type != bp_shlib_event)
7921 continue;
7922
7923 if (self->base.pspace != NULL && other->pspace != self->base.pspace)
7924 continue;
7925
7926 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
7927 {
7928 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
7929 return 1;
7930 }
7931 }
7932
7933 return 0;
7934}
7935
7936static void
7937check_status_catch_solib (struct bpstats *bs)
7938{
7939 struct solib_catchpoint *self
7940 = (struct solib_catchpoint *) bs->breakpoint_at;
7941 int ix;
7942
7943 if (self->is_load)
7944 {
7945 struct so_list *iter;
7946
7947 for (ix = 0;
7948 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
7949 ix, iter);
7950 ++ix)
7951 {
7952 if (!self->regex
7953 || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0)
7954 return;
7955 }
7956 }
7957 else
7958 {
7959 char *iter;
7960
7961 for (ix = 0;
7962 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
7963 ix, iter);
7964 ++ix)
7965 {
7966 if (!self->regex
7967 || regexec (&self->compiled, iter, 0, NULL, 0) == 0)
7968 return;
7969 }
7970 }
7971
7972 bs->stop = 0;
7973 bs->print_it = print_it_noop;
7974}
7975
7976static enum print_stop_action
7977print_it_catch_solib (bpstat bs)
7978{
7979 struct breakpoint *b = bs->breakpoint_at;
7980 struct ui_out *uiout = current_uiout;
7981
7982 annotate_catchpoint (b->number);
7983 if (b->disposition == disp_del)
7984 ui_out_text (uiout, "\nTemporary catchpoint ");
7985 else
7986 ui_out_text (uiout, "\nCatchpoint ");
7987 ui_out_field_int (uiout, "bkptno", b->number);
7988 ui_out_text (uiout, "\n");
7989 if (ui_out_is_mi_like_p (uiout))
7990 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
7991 print_solib_event (1);
7992 return PRINT_SRC_AND_LOC;
7993}
7994
7995static void
7996print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
7997{
7998 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
7999 struct value_print_options opts;
8000 struct ui_out *uiout = current_uiout;
8001 char *msg;
8002
8003 get_user_print_options (&opts);
8004 /* Field 4, the address, is omitted (which makes the columns not
8005 line up too nicely with the headers, but the effect is relatively
8006 readable). */
8007 if (opts.addressprint)
8008 {
8009 annotate_field (4);
8010 ui_out_field_skip (uiout, "addr");
8011 }
8012
8013 annotate_field (5);
8014 if (self->is_load)
8015 {
8016 if (self->regex)
8017 msg = xstrprintf (_("load of library matching %s"), self->regex);
8018 else
8019 msg = xstrdup (_("load of library"));
8020 }
8021 else
8022 {
8023 if (self->regex)
8024 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8025 else
8026 msg = xstrdup (_("unload of library"));
8027 }
8028 ui_out_field_string (uiout, "what", msg);
8029 xfree (msg);
8ac3646f
TT
8030
8031 if (ui_out_is_mi_like_p (uiout))
8032 ui_out_field_string (uiout, "catch-type",
8033 self->is_load ? "load" : "unload");
edcc5120
TT
8034}
8035
8036static void
8037print_mention_catch_solib (struct breakpoint *b)
8038{
8039 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8040
8041 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8042 self->is_load ? "load" : "unload");
8043}
8044
8045static void
8046print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8047{
8048 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8049
8050 fprintf_unfiltered (fp, "%s %s",
8051 b->disposition == disp_del ? "tcatch" : "catch",
8052 self->is_load ? "load" : "unload");
8053 if (self->regex)
8054 fprintf_unfiltered (fp, " %s", self->regex);
8055 fprintf_unfiltered (fp, "\n");
8056}
8057
8058static struct breakpoint_ops catch_solib_breakpoint_ops;
8059
91985142
MG
8060/* Shared helper function (MI and CLI) for creating and installing
8061 a shared object event catchpoint. If IS_LOAD is non-zero then
8062 the events to be caught are load events, otherwise they are
8063 unload events. If IS_TEMP is non-zero the catchpoint is a
8064 temporary one. If ENABLED is non-zero the catchpoint is
8065 created in an enabled state. */
edcc5120 8066
91985142
MG
8067void
8068add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled)
edcc5120
TT
8069{
8070 struct solib_catchpoint *c;
8071 struct gdbarch *gdbarch = get_current_arch ();
edcc5120
TT
8072 struct cleanup *cleanup;
8073
edcc5120
TT
8074 if (!arg)
8075 arg = "";
8076 arg = skip_spaces (arg);
8077
8078 c = XCNEW (struct solib_catchpoint);
8079 cleanup = make_cleanup (xfree, c);
8080
8081 if (*arg != '\0')
8082 {
8083 int errcode;
8084
8085 errcode = regcomp (&c->compiled, arg, REG_NOSUB);
8086 if (errcode != 0)
8087 {
8088 char *err = get_regcomp_error (errcode, &c->compiled);
8089
8090 make_cleanup (xfree, err);
8091 error (_("Invalid regexp (%s): %s"), err, arg);
8092 }
8093 c->regex = xstrdup (arg);
8094 }
8095
8096 c->is_load = is_load;
91985142 8097 init_catchpoint (&c->base, gdbarch, is_temp, NULL,
edcc5120
TT
8098 &catch_solib_breakpoint_ops);
8099
91985142
MG
8100 c->base.enable_state = enabled ? bp_enabled : bp_disabled;
8101
edcc5120
TT
8102 discard_cleanups (cleanup);
8103 install_breakpoint (0, &c->base, 1);
8104}
8105
91985142
MG
8106/* A helper function that does all the work for "catch load" and
8107 "catch unload". */
8108
8109static void
8110catch_load_or_unload (char *arg, int from_tty, int is_load,
8111 struct cmd_list_element *command)
8112{
8113 int tempflag;
8114 const int enabled = 1;
8115
8116 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8117
8118 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8119}
8120
edcc5120
TT
8121static void
8122catch_load_command_1 (char *arg, int from_tty,
8123 struct cmd_list_element *command)
8124{
8125 catch_load_or_unload (arg, from_tty, 1, command);
8126}
8127
8128static void
8129catch_unload_command_1 (char *arg, int from_tty,
8130 struct cmd_list_element *command)
8131{
8132 catch_load_or_unload (arg, from_tty, 0, command);
8133}
8134
be5c67c1
PA
8135/* An instance of this type is used to represent a syscall catchpoint.
8136 It includes a "struct breakpoint" as a kind of base class; users
8137 downcast to "struct breakpoint *" when needed. A breakpoint is
8138 really of this type iff its ops pointer points to
8139 CATCH_SYSCALL_BREAKPOINT_OPS. */
8140
8141struct syscall_catchpoint
8142{
8143 /* The base class. */
8144 struct breakpoint base;
8145
8146 /* Syscall numbers used for the 'catch syscall' feature. If no
8147 syscall has been specified for filtering, its value is NULL.
8148 Otherwise, it holds a list of all syscalls to be caught. The
8149 list elements are allocated with xmalloc. */
8150 VEC(int) *syscalls_to_be_caught;
8151};
8152
8153/* Implement the "dtor" breakpoint_ops method for syscall
8154 catchpoints. */
8155
8156static void
8157dtor_catch_syscall (struct breakpoint *b)
8158{
8159 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8160
8161 VEC_free (int, c->syscalls_to_be_caught);
348d480f 8162
2060206e 8163 base_breakpoint_ops.dtor (b);
be5c67c1
PA
8164}
8165
fa3064dd
YQ
8166static const struct inferior_data *catch_syscall_inferior_data = NULL;
8167
8168struct catch_syscall_inferior_data
8169{
8170 /* We keep a count of the number of times the user has requested a
8171 particular syscall to be tracked, and pass this information to the
8172 target. This lets capable targets implement filtering directly. */
8173
8174 /* Number of times that "any" syscall is requested. */
8175 int any_syscall_count;
8176
8177 /* Count of each system call. */
8178 VEC(int) *syscalls_counts;
8179
8180 /* This counts all syscall catch requests, so we can readily determine
8181 if any catching is necessary. */
8182 int total_syscalls_count;
8183};
8184
8185static struct catch_syscall_inferior_data*
8186get_catch_syscall_inferior_data (struct inferior *inf)
8187{
8188 struct catch_syscall_inferior_data *inf_data;
8189
8190 inf_data = inferior_data (inf, catch_syscall_inferior_data);
8191 if (inf_data == NULL)
8192 {
8193 inf_data = XZALLOC (struct catch_syscall_inferior_data);
8194 set_inferior_data (inf, catch_syscall_inferior_data, inf_data);
8195 }
8196
8197 return inf_data;
8198}
8199
8200static void
8201catch_syscall_inferior_data_cleanup (struct inferior *inf, void *arg)
8202{
8203 xfree (arg);
8204}
8205
8206
a96d9b2e
SDJ
8207/* Implement the "insert" breakpoint_ops method for syscall
8208 catchpoints. */
8209
77b06cd7
TJB
8210static int
8211insert_catch_syscall (struct bp_location *bl)
a96d9b2e 8212{
be5c67c1 8213 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e 8214 struct inferior *inf = current_inferior ();
fa3064dd
YQ
8215 struct catch_syscall_inferior_data *inf_data
8216 = get_catch_syscall_inferior_data (inf);
a96d9b2e 8217
fa3064dd 8218 ++inf_data->total_syscalls_count;
be5c67c1 8219 if (!c->syscalls_to_be_caught)
fa3064dd 8220 ++inf_data->any_syscall_count;
a96d9b2e
SDJ
8221 else
8222 {
8223 int i, iter;
cc59ec59 8224
a96d9b2e 8225 for (i = 0;
be5c67c1 8226 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8227 i++)
8228 {
8229 int elem;
cc59ec59 8230
fa3064dd 8231 if (iter >= VEC_length (int, inf_data->syscalls_counts))
a96d9b2e 8232 {
fa3064dd 8233 int old_size = VEC_length (int, inf_data->syscalls_counts);
3e43a32a
MS
8234 uintptr_t vec_addr_offset
8235 = old_size * ((uintptr_t) sizeof (int));
a96d9b2e 8236 uintptr_t vec_addr;
fa3064dd
YQ
8237 VEC_safe_grow (int, inf_data->syscalls_counts, iter + 1);
8238 vec_addr = ((uintptr_t) VEC_address (int,
8239 inf_data->syscalls_counts)
8240 + vec_addr_offset);
a96d9b2e
SDJ
8241 memset ((void *) vec_addr, 0,
8242 (iter + 1 - old_size) * sizeof (int));
8243 }
fa3064dd
YQ
8244 elem = VEC_index (int, inf_data->syscalls_counts, iter);
8245 VEC_replace (int, inf_data->syscalls_counts, iter, ++elem);
a96d9b2e
SDJ
8246 }
8247 }
8248
dfd4cc63 8249 return target_set_syscall_catchpoint (ptid_get_pid (inferior_ptid),
fa3064dd
YQ
8250 inf_data->total_syscalls_count != 0,
8251 inf_data->any_syscall_count,
8252 VEC_length (int,
8253 inf_data->syscalls_counts),
8254 VEC_address (int,
8255 inf_data->syscalls_counts));
a96d9b2e
SDJ
8256}
8257
8258/* Implement the "remove" breakpoint_ops method for syscall
8259 catchpoints. */
8260
8261static int
77b06cd7 8262remove_catch_syscall (struct bp_location *bl)
a96d9b2e 8263{
be5c67c1 8264 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner;
a96d9b2e 8265 struct inferior *inf = current_inferior ();
fa3064dd
YQ
8266 struct catch_syscall_inferior_data *inf_data
8267 = get_catch_syscall_inferior_data (inf);
a96d9b2e 8268
fa3064dd 8269 --inf_data->total_syscalls_count;
be5c67c1 8270 if (!c->syscalls_to_be_caught)
fa3064dd 8271 --inf_data->any_syscall_count;
a96d9b2e
SDJ
8272 else
8273 {
8274 int i, iter;
cc59ec59 8275
a96d9b2e 8276 for (i = 0;
be5c67c1 8277 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8278 i++)
8279 {
8280 int elem;
fa3064dd 8281 if (iter >= VEC_length (int, inf_data->syscalls_counts))
a96d9b2e
SDJ
8282 /* Shouldn't happen. */
8283 continue;
fa3064dd
YQ
8284 elem = VEC_index (int, inf_data->syscalls_counts, iter);
8285 VEC_replace (int, inf_data->syscalls_counts, iter, --elem);
a96d9b2e
SDJ
8286 }
8287 }
8288
dfd4cc63 8289 return target_set_syscall_catchpoint (ptid_get_pid (inferior_ptid),
fa3064dd
YQ
8290 inf_data->total_syscalls_count != 0,
8291 inf_data->any_syscall_count,
8292 VEC_length (int,
8293 inf_data->syscalls_counts),
3e43a32a 8294 VEC_address (int,
fa3064dd 8295 inf_data->syscalls_counts));
a96d9b2e
SDJ
8296}
8297
8298/* Implement the "breakpoint_hit" breakpoint_ops method for syscall
8299 catchpoints. */
8300
8301static int
f1310107 8302breakpoint_hit_catch_syscall (const struct bp_location *bl,
09ac7c10
TT
8303 struct address_space *aspace, CORE_ADDR bp_addr,
8304 const struct target_waitstatus *ws)
a96d9b2e 8305{
4a64f543
MS
8306 /* We must check if we are catching specific syscalls in this
8307 breakpoint. If we are, then we must guarantee that the called
8308 syscall is the same syscall we are catching. */
a96d9b2e 8309 int syscall_number = 0;
be5c67c1
PA
8310 const struct syscall_catchpoint *c
8311 = (const struct syscall_catchpoint *) bl->owner;
a96d9b2e 8312
f90263c1
TT
8313 if (ws->kind != TARGET_WAITKIND_SYSCALL_ENTRY
8314 && ws->kind != TARGET_WAITKIND_SYSCALL_RETURN)
a96d9b2e
SDJ
8315 return 0;
8316
f90263c1
TT
8317 syscall_number = ws->value.syscall_number;
8318
a96d9b2e 8319 /* Now, checking if the syscall is the same. */
be5c67c1 8320 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8321 {
8322 int i, iter;
cc59ec59 8323
a96d9b2e 8324 for (i = 0;
be5c67c1 8325 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8326 i++)
8327 if (syscall_number == iter)
8328 break;
8329 /* Not the same. */
8330 if (!iter)
8331 return 0;
8332 }
8333
8334 return 1;
8335}
8336
8337/* Implement the "print_it" breakpoint_ops method for syscall
8338 catchpoints. */
8339
8340static enum print_stop_action
348d480f 8341print_it_catch_syscall (bpstat bs)
a96d9b2e 8342{
36dfb11c 8343 struct ui_out *uiout = current_uiout;
348d480f 8344 struct breakpoint *b = bs->breakpoint_at;
a96d9b2e
SDJ
8345 /* These are needed because we want to know in which state a
8346 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
8347 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
8348 must print "called syscall" or "returned from syscall". */
8349 ptid_t ptid;
8350 struct target_waitstatus last;
8351 struct syscall s;
a96d9b2e
SDJ
8352
8353 get_last_target_status (&ptid, &last);
8354
8355 get_syscall_by_number (last.value.syscall_number, &s);
8356
8357 annotate_catchpoint (b->number);
8358
36dfb11c
TT
8359 if (b->disposition == disp_del)
8360 ui_out_text (uiout, "\nTemporary catchpoint ");
a96d9b2e 8361 else
36dfb11c
TT
8362 ui_out_text (uiout, "\nCatchpoint ");
8363 if (ui_out_is_mi_like_p (uiout))
8364 {
8365 ui_out_field_string (uiout, "reason",
8366 async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY
8367 ? EXEC_ASYNC_SYSCALL_ENTRY
8368 : EXEC_ASYNC_SYSCALL_RETURN));
8369 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8370 }
8371 ui_out_field_int (uiout, "bkptno", b->number);
a96d9b2e
SDJ
8372
8373 if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY)
36dfb11c
TT
8374 ui_out_text (uiout, " (call to syscall ");
8375 else
8376 ui_out_text (uiout, " (returned from syscall ");
a96d9b2e 8377
36dfb11c
TT
8378 if (s.name == NULL || ui_out_is_mi_like_p (uiout))
8379 ui_out_field_int (uiout, "syscall-number", last.value.syscall_number);
8380 if (s.name != NULL)
8381 ui_out_field_string (uiout, "syscall-name", s.name);
8382
8383 ui_out_text (uiout, "), ");
a96d9b2e
SDJ
8384
8385 return PRINT_SRC_AND_LOC;
8386}
8387
8388/* Implement the "print_one" breakpoint_ops method for syscall
8389 catchpoints. */
8390
8391static void
8392print_one_catch_syscall (struct breakpoint *b,
f1310107 8393 struct bp_location **last_loc)
a96d9b2e 8394{
be5c67c1 8395 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
a96d9b2e 8396 struct value_print_options opts;
79a45e25 8397 struct ui_out *uiout = current_uiout;
a96d9b2e
SDJ
8398
8399 get_user_print_options (&opts);
4a64f543
MS
8400 /* Field 4, the address, is omitted (which makes the columns not
8401 line up too nicely with the headers, but the effect is relatively
8402 readable). */
a96d9b2e
SDJ
8403 if (opts.addressprint)
8404 ui_out_field_skip (uiout, "addr");
8405 annotate_field (5);
8406
be5c67c1
PA
8407 if (c->syscalls_to_be_caught
8408 && VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
8409 ui_out_text (uiout, "syscalls \"");
8410 else
8411 ui_out_text (uiout, "syscall \"");
8412
be5c67c1 8413 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8414 {
8415 int i, iter;
8416 char *text = xstrprintf ("%s", "");
cc59ec59 8417
a96d9b2e 8418 for (i = 0;
be5c67c1 8419 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8420 i++)
8421 {
8422 char *x = text;
8423 struct syscall s;
8424 get_syscall_by_number (iter, &s);
8425
8426 if (s.name != NULL)
8427 text = xstrprintf ("%s%s, ", text, s.name);
8428 else
8429 text = xstrprintf ("%s%d, ", text, iter);
8430
8431 /* We have to xfree the last 'text' (now stored at 'x')
e5dd4106 8432 because xstrprintf dynamically allocates new space for it
a96d9b2e
SDJ
8433 on every call. */
8434 xfree (x);
8435 }
8436 /* Remove the last comma. */
8437 text[strlen (text) - 2] = '\0';
8438 ui_out_field_string (uiout, "what", text);
8439 }
8440 else
8441 ui_out_field_string (uiout, "what", "<any syscall>");
8442 ui_out_text (uiout, "\" ");
8ac3646f
TT
8443
8444 if (ui_out_is_mi_like_p (uiout))
8445 ui_out_field_string (uiout, "catch-type", "syscall");
a96d9b2e
SDJ
8446}
8447
8448/* Implement the "print_mention" breakpoint_ops method for syscall
8449 catchpoints. */
8450
8451static void
8452print_mention_catch_syscall (struct breakpoint *b)
8453{
be5c67c1
PA
8454 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8455
8456 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
8457 {
8458 int i, iter;
8459
be5c67c1 8460 if (VEC_length (int, c->syscalls_to_be_caught) > 1)
a96d9b2e
SDJ
8461 printf_filtered (_("Catchpoint %d (syscalls"), b->number);
8462 else
8463 printf_filtered (_("Catchpoint %d (syscall"), b->number);
8464
8465 for (i = 0;
be5c67c1 8466 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
8467 i++)
8468 {
8469 struct syscall s;
8470 get_syscall_by_number (iter, &s);
8471
8472 if (s.name)
8473 printf_filtered (" '%s' [%d]", s.name, s.number);
8474 else
8475 printf_filtered (" %d", s.number);
8476 }
8477 printf_filtered (")");
8478 }
8479 else
8480 printf_filtered (_("Catchpoint %d (any syscall)"),
8481 b->number);
8482}
8483
6149aea9
PA
8484/* Implement the "print_recreate" breakpoint_ops method for syscall
8485 catchpoints. */
8486
8487static void
8488print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp)
8489{
be5c67c1
PA
8490 struct syscall_catchpoint *c = (struct syscall_catchpoint *) b;
8491
6149aea9
PA
8492 fprintf_unfiltered (fp, "catch syscall");
8493
be5c67c1 8494 if (c->syscalls_to_be_caught)
6149aea9
PA
8495 {
8496 int i, iter;
8497
8498 for (i = 0;
be5c67c1 8499 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
6149aea9
PA
8500 i++)
8501 {
8502 struct syscall s;
8503
8504 get_syscall_by_number (iter, &s);
8505 if (s.name)
8506 fprintf_unfiltered (fp, " %s", s.name);
8507 else
8508 fprintf_unfiltered (fp, " %d", s.number);
8509 }
8510 }
d9b3f62e 8511 print_recreate_thread (b, fp);
6149aea9
PA
8512}
8513
a96d9b2e
SDJ
8514/* The breakpoint_ops structure to be used in syscall catchpoints. */
8515
2060206e 8516static struct breakpoint_ops catch_syscall_breakpoint_ops;
a96d9b2e
SDJ
8517
8518/* Returns non-zero if 'b' is a syscall catchpoint. */
8519
8520static int
8521syscall_catchpoint_p (struct breakpoint *b)
8522{
8523 return (b->ops == &catch_syscall_breakpoint_ops);
8524}
8525
346774a9
PA
8526/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8527 is non-zero, then make the breakpoint temporary. If COND_STRING is
8528 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8529 the breakpoint_ops structure associated to the catchpoint. */
ce78b96d 8530
ab04a2af 8531void
346774a9
PA
8532init_catchpoint (struct breakpoint *b,
8533 struct gdbarch *gdbarch, int tempflag,
8534 char *cond_string,
c0a91b2b 8535 const struct breakpoint_ops *ops)
c906108c 8536{
c5aa993b 8537 struct symtab_and_line sal;
346774a9 8538
fe39c653 8539 init_sal (&sal);
6c95b8df 8540 sal.pspace = current_program_space;
c5aa993b 8541
28010a5d 8542 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
ce78b96d 8543
1b36a34b 8544 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
b5de0fa7 8545 b->disposition = tempflag ? disp_del : disp_donttouch;
346774a9
PA
8546}
8547
28010a5d 8548void
3ea46bff 8549install_breakpoint (int internal, struct breakpoint *b, int update_gll)
c56053d2
PA
8550{
8551 add_to_breakpoint_chain (b);
3a5c3e22 8552 set_breakpoint_number (internal, b);
558a9d82
YQ
8553 if (is_tracepoint (b))
8554 set_tracepoint_count (breakpoint_count);
3a5c3e22
PA
8555 if (!internal)
8556 mention (b);
c56053d2 8557 observer_notify_breakpoint_created (b);
3ea46bff
YQ
8558
8559 if (update_gll)
8560 update_global_location_list (1);
c56053d2
PA
8561}
8562
9b70b993 8563static void
a6d9a66e
UW
8564create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8565 int tempflag, char *cond_string,
c0a91b2b 8566 const struct breakpoint_ops *ops)
c906108c 8567{
e29a4733 8568 struct fork_catchpoint *c = XNEW (struct fork_catchpoint);
ce78b96d 8569
e29a4733
PA
8570 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
8571
8572 c->forked_inferior_pid = null_ptid;
8573
3ea46bff 8574 install_breakpoint (0, &c->base, 1);
c906108c
SS
8575}
8576
fe798b75
JB
8577/* Exec catchpoints. */
8578
b4d90040
PA
8579/* An instance of this type is used to represent an exec catchpoint.
8580 It includes a "struct breakpoint" as a kind of base class; users
8581 downcast to "struct breakpoint *" when needed. A breakpoint is
8582 really of this type iff its ops pointer points to
8583 CATCH_EXEC_BREAKPOINT_OPS. */
8584
8585struct exec_catchpoint
8586{
8587 /* The base class. */
8588 struct breakpoint base;
8589
8590 /* Filename of a program whose exec triggered this catchpoint.
8591 This field is only valid immediately after this catchpoint has
8592 triggered. */
8593 char *exec_pathname;
8594};
8595
8596/* Implement the "dtor" breakpoint_ops method for exec
8597 catchpoints. */
8598
8599static void
8600dtor_catch_exec (struct breakpoint *b)
8601{
8602 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8603
8604 xfree (c->exec_pathname);
348d480f 8605
2060206e 8606 base_breakpoint_ops.dtor (b);
b4d90040
PA
8607}
8608
77b06cd7
TJB
8609static int
8610insert_catch_exec (struct bp_location *bl)
c906108c 8611{
dfd4cc63 8612 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8613}
c906108c 8614
fe798b75 8615static int
77b06cd7 8616remove_catch_exec (struct bp_location *bl)
fe798b75 8617{
dfd4cc63 8618 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
fe798b75 8619}
c906108c 8620
fe798b75 8621static int
f1310107 8622breakpoint_hit_catch_exec (const struct bp_location *bl,
09ac7c10
TT
8623 struct address_space *aspace, CORE_ADDR bp_addr,
8624 const struct target_waitstatus *ws)
fe798b75 8625{
b4d90040
PA
8626 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8627
f90263c1
TT
8628 if (ws->kind != TARGET_WAITKIND_EXECD)
8629 return 0;
8630
8631 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8632 return 1;
fe798b75 8633}
c906108c 8634
fe798b75 8635static enum print_stop_action
348d480f 8636print_it_catch_exec (bpstat bs)
fe798b75 8637{
36dfb11c 8638 struct ui_out *uiout = current_uiout;
348d480f 8639 struct breakpoint *b = bs->breakpoint_at;
b4d90040
PA
8640 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8641
fe798b75 8642 annotate_catchpoint (b->number);
36dfb11c
TT
8643 if (b->disposition == disp_del)
8644 ui_out_text (uiout, "\nTemporary catchpoint ");
8645 else
8646 ui_out_text (uiout, "\nCatchpoint ");
8647 if (ui_out_is_mi_like_p (uiout))
8648 {
8649 ui_out_field_string (uiout, "reason",
8650 async_reason_lookup (EXEC_ASYNC_EXEC));
8651 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8652 }
8653 ui_out_field_int (uiout, "bkptno", b->number);
8654 ui_out_text (uiout, " (exec'd ");
8655 ui_out_field_string (uiout, "new-exec", c->exec_pathname);
8656 ui_out_text (uiout, "), ");
8657
fe798b75 8658 return PRINT_SRC_AND_LOC;
c906108c
SS
8659}
8660
fe798b75 8661static void
a6d9a66e 8662print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
fe798b75 8663{
b4d90040 8664 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
fe798b75 8665 struct value_print_options opts;
79a45e25 8666 struct ui_out *uiout = current_uiout;
fe798b75
JB
8667
8668 get_user_print_options (&opts);
8669
8670 /* Field 4, the address, is omitted (which makes the columns
8671 not line up too nicely with the headers, but the effect
8672 is relatively readable). */
8673 if (opts.addressprint)
8674 ui_out_field_skip (uiout, "addr");
8675 annotate_field (5);
8676 ui_out_text (uiout, "exec");
b4d90040 8677 if (c->exec_pathname != NULL)
fe798b75
JB
8678 {
8679 ui_out_text (uiout, ", program \"");
b4d90040 8680 ui_out_field_string (uiout, "what", c->exec_pathname);
fe798b75
JB
8681 ui_out_text (uiout, "\" ");
8682 }
8ac3646f
TT
8683
8684 if (ui_out_is_mi_like_p (uiout))
8685 ui_out_field_string (uiout, "catch-type", "exec");
fe798b75
JB
8686}
8687
8688static void
8689print_mention_catch_exec (struct breakpoint *b)
8690{
8691 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8692}
8693
6149aea9
PA
8694/* Implement the "print_recreate" breakpoint_ops method for exec
8695 catchpoints. */
8696
8697static void
8698print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8699{
8700 fprintf_unfiltered (fp, "catch exec");
d9b3f62e 8701 print_recreate_thread (b, fp);
6149aea9
PA
8702}
8703
2060206e 8704static struct breakpoint_ops catch_exec_breakpoint_ops;
fe798b75 8705
a96d9b2e
SDJ
8706static void
8707create_syscall_event_catchpoint (int tempflag, VEC(int) *filter,
c0a91b2b 8708 const struct breakpoint_ops *ops)
a96d9b2e 8709{
be5c67c1 8710 struct syscall_catchpoint *c;
a96d9b2e 8711 struct gdbarch *gdbarch = get_current_arch ();
a96d9b2e 8712
be5c67c1
PA
8713 c = XNEW (struct syscall_catchpoint);
8714 init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops);
8715 c->syscalls_to_be_caught = filter;
a96d9b2e 8716
3ea46bff 8717 install_breakpoint (0, &c->base, 1);
a96d9b2e
SDJ
8718}
8719
c906108c 8720static int
fba45db2 8721hw_breakpoint_used_count (void)
c906108c 8722{
c906108c 8723 int i = 0;
f1310107
TJB
8724 struct breakpoint *b;
8725 struct bp_location *bl;
c906108c
SS
8726
8727 ALL_BREAKPOINTS (b)
c5aa993b 8728 {
d6b74ac4 8729 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
f1310107
TJB
8730 for (bl = b->loc; bl; bl = bl->next)
8731 {
8732 /* Special types of hardware breakpoints may use more than
8733 one register. */
348d480f 8734 i += b->ops->resources_needed (bl);
f1310107 8735 }
c5aa993b 8736 }
c906108c
SS
8737
8738 return i;
8739}
8740
a1398e0c
PA
8741/* Returns the resources B would use if it were a hardware
8742 watchpoint. */
8743
c906108c 8744static int
a1398e0c 8745hw_watchpoint_use_count (struct breakpoint *b)
c906108c 8746{
c906108c 8747 int i = 0;
e09342b5 8748 struct bp_location *bl;
c906108c 8749
a1398e0c
PA
8750 if (!breakpoint_enabled (b))
8751 return 0;
8752
8753 for (bl = b->loc; bl; bl = bl->next)
8754 {
8755 /* Special types of hardware watchpoints may use more than
8756 one register. */
8757 i += b->ops->resources_needed (bl);
8758 }
8759
8760 return i;
8761}
8762
8763/* Returns the sum the used resources of all hardware watchpoints of
8764 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8765 the sum of the used resources of all hardware watchpoints of other
8766 types _not_ TYPE. */
8767
8768static int
8769hw_watchpoint_used_count_others (struct breakpoint *except,
8770 enum bptype type, int *other_type_used)
8771{
8772 int i = 0;
8773 struct breakpoint *b;
8774
c906108c
SS
8775 *other_type_used = 0;
8776 ALL_BREAKPOINTS (b)
e09342b5 8777 {
a1398e0c
PA
8778 if (b == except)
8779 continue;
e09342b5
TJB
8780 if (!breakpoint_enabled (b))
8781 continue;
8782
a1398e0c
PA
8783 if (b->type == type)
8784 i += hw_watchpoint_use_count (b);
8785 else if (is_hardware_watchpoint (b))
8786 *other_type_used = 1;
e09342b5
TJB
8787 }
8788
c906108c
SS
8789 return i;
8790}
8791
c906108c 8792void
fba45db2 8793disable_watchpoints_before_interactive_call_start (void)
c906108c 8794{
c5aa993b 8795 struct breakpoint *b;
c906108c
SS
8796
8797 ALL_BREAKPOINTS (b)
c5aa993b 8798 {
cc60f2e3 8799 if (is_watchpoint (b) && breakpoint_enabled (b))
c5aa993b 8800 {
b5de0fa7 8801 b->enable_state = bp_call_disabled;
b60e7edf 8802 update_global_location_list (0);
c5aa993b
JM
8803 }
8804 }
c906108c
SS
8805}
8806
8807void
fba45db2 8808enable_watchpoints_after_interactive_call_stop (void)
c906108c 8809{
c5aa993b 8810 struct breakpoint *b;
c906108c
SS
8811
8812 ALL_BREAKPOINTS (b)
c5aa993b 8813 {
cc60f2e3 8814 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
c5aa993b 8815 {
b5de0fa7 8816 b->enable_state = bp_enabled;
b60e7edf 8817 update_global_location_list (1);
c5aa993b
JM
8818 }
8819 }
c906108c
SS
8820}
8821
8bea4e01
UW
8822void
8823disable_breakpoints_before_startup (void)
8824{
6c95b8df 8825 current_program_space->executing_startup = 1;
f8eba3c6 8826 update_global_location_list (0);
8bea4e01
UW
8827}
8828
8829void
8830enable_breakpoints_after_startup (void)
8831{
6c95b8df 8832 current_program_space->executing_startup = 0;
f8eba3c6 8833 breakpoint_re_set ();
8bea4e01
UW
8834}
8835
c906108c
SS
8836
8837/* Set a breakpoint that will evaporate an end of command
8838 at address specified by SAL.
8839 Restrict it to frame FRAME if FRAME is nonzero. */
8840
8841struct breakpoint *
a6d9a66e
UW
8842set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8843 struct frame_id frame_id, enum bptype type)
c906108c 8844{
52f0bd74 8845 struct breakpoint *b;
edb3359d 8846
193facb3
JK
8847 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8848 tail-called one. */
8849 gdb_assert (!frame_id_artificial_p (frame_id));
edb3359d 8850
06edf0c0 8851 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
b5de0fa7
EZ
8852 b->enable_state = bp_enabled;
8853 b->disposition = disp_donttouch;
818dd999 8854 b->frame_id = frame_id;
c906108c 8855
4a64f543
MS
8856 /* If we're debugging a multi-threaded program, then we want
8857 momentary breakpoints to be active in only a single thread of
8858 control. */
39f77062
KB
8859 if (in_thread_list (inferior_ptid))
8860 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 8861
b60e7edf 8862 update_global_location_list_nothrow (1);
74960c60 8863
c906108c
SS
8864 return b;
8865}
611c83ae 8866
06edf0c0
PA
8867/* Make a momentary breakpoint based on the master breakpoint ORIG.
8868 The new breakpoint will have type TYPE, and use OPS as it
8869 breakpoint_ops. */
e58b0e63 8870
06edf0c0
PA
8871static struct breakpoint *
8872momentary_breakpoint_from_master (struct breakpoint *orig,
8873 enum bptype type,
c0a91b2b 8874 const struct breakpoint_ops *ops)
e58b0e63
PA
8875{
8876 struct breakpoint *copy;
8877
06edf0c0 8878 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
e58b0e63 8879 copy->loc = allocate_bp_location (copy);
0e30163f 8880 set_breakpoint_location_function (copy->loc, 1);
e58b0e63 8881
a6d9a66e 8882 copy->loc->gdbarch = orig->loc->gdbarch;
e58b0e63
PA
8883 copy->loc->requested_address = orig->loc->requested_address;
8884 copy->loc->address = orig->loc->address;
8885 copy->loc->section = orig->loc->section;
6c95b8df 8886 copy->loc->pspace = orig->loc->pspace;
55aa24fb 8887 copy->loc->probe = orig->loc->probe;
f8eba3c6 8888 copy->loc->line_number = orig->loc->line_number;
2f202fde 8889 copy->loc->symtab = orig->loc->symtab;
e58b0e63
PA
8890 copy->frame_id = orig->frame_id;
8891 copy->thread = orig->thread;
6c95b8df 8892 copy->pspace = orig->pspace;
e58b0e63
PA
8893
8894 copy->enable_state = bp_enabled;
8895 copy->disposition = disp_donttouch;
8896 copy->number = internal_breakpoint_number--;
8897
8898 update_global_location_list_nothrow (0);
8899 return copy;
8900}
8901
06edf0c0
PA
8902/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8903 ORIG is NULL. */
8904
8905struct breakpoint *
8906clone_momentary_breakpoint (struct breakpoint *orig)
8907{
8908 /* If there's nothing to clone, then return nothing. */
8909 if (orig == NULL)
8910 return NULL;
8911
8912 return momentary_breakpoint_from_master (orig, orig->type, orig->ops);
8913}
8914
611c83ae 8915struct breakpoint *
a6d9a66e
UW
8916set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8917 enum bptype type)
611c83ae
PA
8918{
8919 struct symtab_and_line sal;
8920
8921 sal = find_pc_line (pc, 0);
8922 sal.pc = pc;
8923 sal.section = find_pc_overlay (pc);
8924 sal.explicit_pc = 1;
8925
a6d9a66e 8926 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
611c83ae 8927}
c906108c 8928\f
c5aa993b 8929
c906108c
SS
8930/* Tell the user we have just set a breakpoint B. */
8931
8932static void
fba45db2 8933mention (struct breakpoint *b)
c906108c 8934{
348d480f 8935 b->ops->print_mention (b);
79a45e25 8936 if (ui_out_is_mi_like_p (current_uiout))
fb40c209 8937 return;
c906108c
SS
8938 printf_filtered ("\n");
8939}
c906108c 8940\f
c5aa993b 8941
0d381245 8942static struct bp_location *
39d61571 8943add_location_to_breakpoint (struct breakpoint *b,
0d381245
VP
8944 const struct symtab_and_line *sal)
8945{
8946 struct bp_location *loc, **tmp;
3742cc8b
YQ
8947 CORE_ADDR adjusted_address;
8948 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8949
8950 if (loc_gdbarch == NULL)
8951 loc_gdbarch = b->gdbarch;
8952
8953 /* Adjust the breakpoint's address prior to allocating a location.
8954 Once we call allocate_bp_location(), that mostly uninitialized
8955 location will be placed on the location chain. Adjustment of the
8956 breakpoint may cause target_read_memory() to be called and we do
8957 not want its scan of the location chain to find a breakpoint and
8958 location that's only been partially initialized. */
8959 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8960 sal->pc, b->type);
0d381245 8961
d30113d4 8962 /* Sort the locations by their ADDRESS. */
39d61571 8963 loc = allocate_bp_location (b);
d30113d4
JK
8964 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8965 tmp = &((*tmp)->next))
0d381245 8966 ;
d30113d4 8967 loc->next = *tmp;
0d381245 8968 *tmp = loc;
3742cc8b 8969
0d381245 8970 loc->requested_address = sal->pc;
3742cc8b 8971 loc->address = adjusted_address;
6c95b8df 8972 loc->pspace = sal->pspace;
55aa24fb 8973 loc->probe = sal->probe;
6c95b8df 8974 gdb_assert (loc->pspace != NULL);
0d381245 8975 loc->section = sal->section;
3742cc8b 8976 loc->gdbarch = loc_gdbarch;
f8eba3c6 8977 loc->line_number = sal->line;
2f202fde 8978 loc->symtab = sal->symtab;
f8eba3c6 8979
0e30163f
JK
8980 set_breakpoint_location_function (loc,
8981 sal->explicit_pc || sal->explicit_line);
0d381245
VP
8982 return loc;
8983}
514f746b
AR
8984\f
8985
8986/* Return 1 if LOC is pointing to a permanent breakpoint,
8987 return 0 otherwise. */
8988
8989static int
8990bp_loc_is_permanent (struct bp_location *loc)
8991{
8992 int len;
8993 CORE_ADDR addr;
1afeeb75 8994 const gdb_byte *bpoint;
514f746b 8995 gdb_byte *target_mem;
939c61fa
JK
8996 struct cleanup *cleanup;
8997 int retval = 0;
514f746b
AR
8998
8999 gdb_assert (loc != NULL);
9000
9001 addr = loc->address;
1afeeb75 9002 bpoint = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len);
514f746b 9003
939c61fa 9004 /* Software breakpoints unsupported? */
1afeeb75 9005 if (bpoint == NULL)
939c61fa
JK
9006 return 0;
9007
514f746b
AR
9008 target_mem = alloca (len);
9009
939c61fa
JK
9010 /* Enable the automatic memory restoration from breakpoints while
9011 we read the memory. Otherwise we could say about our temporary
9012 breakpoints they are permanent. */
6c95b8df
PA
9013 cleanup = save_current_space_and_thread ();
9014
9015 switch_to_program_space_and_thread (loc->pspace);
9016 make_show_memory_breakpoints_cleanup (0);
939c61fa 9017
514f746b 9018 if (target_read_memory (loc->address, target_mem, len) == 0
1afeeb75 9019 && memcmp (target_mem, bpoint, len) == 0)
939c61fa 9020 retval = 1;
514f746b 9021
939c61fa
JK
9022 do_cleanups (cleanup);
9023
9024 return retval;
514f746b
AR
9025}
9026
e7e0cddf
SS
9027/* Build a command list for the dprintf corresponding to the current
9028 settings of the dprintf style options. */
9029
9030static void
9031update_dprintf_command_list (struct breakpoint *b)
9032{
9033 char *dprintf_args = b->extra_string;
9034 char *printf_line = NULL;
9035
9036 if (!dprintf_args)
9037 return;
9038
9039 dprintf_args = skip_spaces (dprintf_args);
9040
9041 /* Allow a comma, as it may have terminated a location, but don't
9042 insist on it. */
9043 if (*dprintf_args == ',')
9044 ++dprintf_args;
9045 dprintf_args = skip_spaces (dprintf_args);
9046
9047 if (*dprintf_args != '"')
9048 error (_("Bad format string, missing '\"'."));
9049
d3ce09f5 9050 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
e7e0cddf 9051 printf_line = xstrprintf ("printf %s", dprintf_args);
d3ce09f5 9052 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
e7e0cddf
SS
9053 {
9054 if (!dprintf_function)
9055 error (_("No function supplied for dprintf call"));
9056
9057 if (dprintf_channel && strlen (dprintf_channel) > 0)
9058 printf_line = xstrprintf ("call (void) %s (%s,%s)",
9059 dprintf_function,
9060 dprintf_channel,
9061 dprintf_args);
9062 else
9063 printf_line = xstrprintf ("call (void) %s (%s)",
9064 dprintf_function,
9065 dprintf_args);
9066 }
d3ce09f5
SS
9067 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
9068 {
9069 if (target_can_run_breakpoint_commands ())
9070 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
9071 else
9072 {
9073 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
9074 printf_line = xstrprintf ("printf %s", dprintf_args);
9075 }
9076 }
e7e0cddf
SS
9077 else
9078 internal_error (__FILE__, __LINE__,
9079 _("Invalid dprintf style."));
9080
f28045c2 9081 gdb_assert (printf_line != NULL);
9d6e6e84 9082 /* Manufacture a printf sequence. */
f28045c2 9083 {
9d6e6e84
HZ
9084 struct command_line *printf_cmd_line
9085 = xmalloc (sizeof (struct command_line));
e7e0cddf 9086
f28045c2
YQ
9087 printf_cmd_line = xmalloc (sizeof (struct command_line));
9088 printf_cmd_line->control_type = simple_control;
9089 printf_cmd_line->body_count = 0;
9090 printf_cmd_line->body_list = NULL;
9d6e6e84 9091 printf_cmd_line->next = NULL;
f28045c2 9092 printf_cmd_line->line = printf_line;
e7e0cddf 9093
f28045c2
YQ
9094 breakpoint_set_commands (b, printf_cmd_line);
9095 }
e7e0cddf
SS
9096}
9097
9098/* Update all dprintf commands, making their command lists reflect
9099 current style settings. */
9100
9101static void
9102update_dprintf_commands (char *args, int from_tty,
9103 struct cmd_list_element *c)
9104{
9105 struct breakpoint *b;
9106
9107 ALL_BREAKPOINTS (b)
9108 {
9109 if (b->type == bp_dprintf)
9110 update_dprintf_command_list (b);
9111 }
9112}
c3f6f71d 9113
018d34a4
VP
9114/* Create a breakpoint with SAL as location. Use ADDR_STRING
9115 as textual description of the location, and COND_STRING
db107f19 9116 as condition expression. */
018d34a4
VP
9117
9118static void
d9b3f62e
PA
9119init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
9120 struct symtabs_and_lines sals, char *addr_string,
f8eba3c6 9121 char *filter, char *cond_string,
e7e0cddf 9122 char *extra_string,
d9b3f62e
PA
9123 enum bptype type, enum bpdisp disposition,
9124 int thread, int task, int ignore_count,
c0a91b2b 9125 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9126 int enabled, int internal, unsigned flags,
9127 int display_canonical)
018d34a4 9128{
0d381245 9129 int i;
018d34a4
VP
9130
9131 if (type == bp_hardware_breakpoint)
9132 {
fbbd034e
AS
9133 int target_resources_ok;
9134
9135 i = hw_breakpoint_used_count ();
9136 target_resources_ok =
9137 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
018d34a4
VP
9138 i + 1, 0);
9139 if (target_resources_ok == 0)
9140 error (_("No hardware breakpoint support in the target."));
9141 else if (target_resources_ok < 0)
9142 error (_("Hardware breakpoints used exceeds limit."));
9143 }
9144
6c95b8df
PA
9145 gdb_assert (sals.nelts > 0);
9146
0d381245
VP
9147 for (i = 0; i < sals.nelts; ++i)
9148 {
9149 struct symtab_and_line sal = sals.sals[i];
9150 struct bp_location *loc;
9151
9152 if (from_tty)
5af949e3
UW
9153 {
9154 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9155 if (!loc_gdbarch)
9156 loc_gdbarch = gdbarch;
9157
9158 describe_other_breakpoints (loc_gdbarch,
6c95b8df 9159 sal.pspace, sal.pc, sal.section, thread);
5af949e3 9160 }
0d381245
VP
9161
9162 if (i == 0)
9163 {
d9b3f62e 9164 init_raw_breakpoint (b, gdbarch, sal, type, ops);
0d381245 9165 b->thread = thread;
4a306c9a 9166 b->task = task;
855a6e68 9167
0d381245 9168 b->cond_string = cond_string;
e7e0cddf 9169 b->extra_string = extra_string;
0d381245 9170 b->ignore_count = ignore_count;
41447f92 9171 b->enable_state = enabled ? bp_enabled : bp_disabled;
0d381245 9172 b->disposition = disposition;
6c95b8df 9173
44f238bb
PA
9174 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9175 b->loc->inserted = 1;
9176
0fb4aa4b
PA
9177 if (type == bp_static_tracepoint)
9178 {
d9b3f62e 9179 struct tracepoint *t = (struct tracepoint *) b;
0fb4aa4b
PA
9180 struct static_tracepoint_marker marker;
9181
983af33b 9182 if (strace_marker_p (b))
0fb4aa4b
PA
9183 {
9184 /* We already know the marker exists, otherwise, we
9185 wouldn't see a sal for it. */
9186 char *p = &addr_string[3];
9187 char *endp;
9188 char *marker_str;
0fb4aa4b 9189
e9cafbcc 9190 p = skip_spaces (p);
0fb4aa4b 9191
e9cafbcc 9192 endp = skip_to_space (p);
0fb4aa4b
PA
9193
9194 marker_str = savestring (p, endp - p);
d9b3f62e 9195 t->static_trace_marker_id = marker_str;
0fb4aa4b 9196
3e43a32a
MS
9197 printf_filtered (_("Probed static tracepoint "
9198 "marker \"%s\"\n"),
d9b3f62e 9199 t->static_trace_marker_id);
0fb4aa4b
PA
9200 }
9201 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
9202 {
d9b3f62e 9203 t->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
9204 release_static_tracepoint_marker (&marker);
9205
3e43a32a
MS
9206 printf_filtered (_("Probed static tracepoint "
9207 "marker \"%s\"\n"),
d9b3f62e 9208 t->static_trace_marker_id);
0fb4aa4b
PA
9209 }
9210 else
3e43a32a
MS
9211 warning (_("Couldn't determine the static "
9212 "tracepoint marker to probe"));
0fb4aa4b
PA
9213 }
9214
0d381245
VP
9215 loc = b->loc;
9216 }
9217 else
018d34a4 9218 {
39d61571 9219 loc = add_location_to_breakpoint (b, &sal);
44f238bb
PA
9220 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9221 loc->inserted = 1;
0d381245
VP
9222 }
9223
514f746b
AR
9224 if (bp_loc_is_permanent (loc))
9225 make_breakpoint_permanent (b);
9226
0d381245
VP
9227 if (b->cond_string)
9228 {
bbc13ae3
KS
9229 const char *arg = b->cond_string;
9230
1bb9788d
TT
9231 loc->cond = parse_exp_1 (&arg, loc->address,
9232 block_for_pc (loc->address), 0);
0d381245 9233 if (*arg)
588ae58c 9234 error (_("Garbage '%s' follows condition"), arg);
018d34a4 9235 }
e7e0cddf
SS
9236
9237 /* Dynamic printf requires and uses additional arguments on the
9238 command line, otherwise it's an error. */
9239 if (type == bp_dprintf)
9240 {
9241 if (b->extra_string)
9242 update_dprintf_command_list (b);
9243 else
9244 error (_("Format string required"));
9245 }
9246 else if (b->extra_string)
588ae58c 9247 error (_("Garbage '%s' at end of command"), b->extra_string);
855a6e68 9248 }
018d34a4 9249
56435ebe 9250 b->display_canonical = display_canonical;
018d34a4
VP
9251 if (addr_string)
9252 b->addr_string = addr_string;
9253 else
9254 /* addr_string has to be used or breakpoint_re_set will delete
9255 me. */
5af949e3
UW
9256 b->addr_string
9257 = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address));
f8eba3c6 9258 b->filter = filter;
d9b3f62e 9259}
018d34a4 9260
d9b3f62e
PA
9261static void
9262create_breakpoint_sal (struct gdbarch *gdbarch,
9263 struct symtabs_and_lines sals, char *addr_string,
f8eba3c6 9264 char *filter, char *cond_string,
e7e0cddf 9265 char *extra_string,
d9b3f62e
PA
9266 enum bptype type, enum bpdisp disposition,
9267 int thread, int task, int ignore_count,
c0a91b2b 9268 const struct breakpoint_ops *ops, int from_tty,
44f238bb
PA
9269 int enabled, int internal, unsigned flags,
9270 int display_canonical)
d9b3f62e
PA
9271{
9272 struct breakpoint *b;
9273 struct cleanup *old_chain;
9274
9275 if (is_tracepoint_type (type))
9276 {
9277 struct tracepoint *t;
9278
9279 t = XCNEW (struct tracepoint);
9280 b = &t->base;
9281 }
9282 else
9283 b = XNEW (struct breakpoint);
9284
9285 old_chain = make_cleanup (xfree, b);
9286
9287 init_breakpoint_sal (b, gdbarch,
9288 sals, addr_string,
e7e0cddf 9289 filter, cond_string, extra_string,
d9b3f62e
PA
9290 type, disposition,
9291 thread, task, ignore_count,
9292 ops, from_tty,
44f238bb
PA
9293 enabled, internal, flags,
9294 display_canonical);
d9b3f62e
PA
9295 discard_cleanups (old_chain);
9296
3ea46bff 9297 install_breakpoint (internal, b, 0);
018d34a4
VP
9298}
9299
9300/* Add SALS.nelts breakpoints to the breakpoint table. For each
9301 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9302 value. COND_STRING, if not NULL, specified the condition to be
9303 used for all breakpoints. Essentially the only case where
9304 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9305 function. In that case, it's still not possible to specify
9306 separate conditions for different overloaded functions, so
9307 we take just a single condition string.
9308
c3f6f71d 9309 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 9310 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
9311 array contents). If the function fails (error() is called), the
9312 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4a64f543 9313 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
9314
9315static void
8cdf0e15 9316create_breakpoints_sal (struct gdbarch *gdbarch,
7efd8fc2 9317 struct linespec_result *canonical,
e7e0cddf 9318 char *cond_string, char *extra_string,
8cdf0e15
VP
9319 enum bptype type, enum bpdisp disposition,
9320 int thread, int task, int ignore_count,
c0a91b2b 9321 const struct breakpoint_ops *ops, int from_tty,
44f238bb 9322 int enabled, int internal, unsigned flags)
c906108c 9323{
018d34a4 9324 int i;
f8eba3c6 9325 struct linespec_sals *lsal;
cc59ec59 9326
f8eba3c6
TT
9327 if (canonical->pre_expanded)
9328 gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1);
9329
9330 for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i)
c3f6f71d 9331 {
f8eba3c6
TT
9332 /* Note that 'addr_string' can be NULL in the case of a plain
9333 'break', without arguments. */
9334 char *addr_string = (canonical->addr_string
9335 ? xstrdup (canonical->addr_string)
9336 : NULL);
9337 char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL;
9338 struct cleanup *inner = make_cleanup (xfree, addr_string);
0d381245 9339
f8eba3c6
TT
9340 make_cleanup (xfree, filter_string);
9341 create_breakpoint_sal (gdbarch, lsal->sals,
9342 addr_string,
9343 filter_string,
e7e0cddf
SS
9344 cond_string, extra_string,
9345 type, disposition,
84f4c1fe 9346 thread, task, ignore_count, ops,
44f238bb 9347 from_tty, enabled, internal, flags,
56435ebe 9348 canonical->special_display);
f8eba3c6 9349 discard_cleanups (inner);
c3f6f71d 9350 }
c3f6f71d 9351}
c906108c 9352
9998af43 9353/* Parse ADDRESS which is assumed to be a SAL specification possibly
c3f6f71d 9354 followed by conditionals. On return, SALS contains an array of SAL
4a64f543 9355 addresses found. ADDR_STRING contains a vector of (canonical)
9998af43
TJB
9356 address strings. ADDRESS points to the end of the SAL.
9357
9358 The array and the line spec strings are allocated on the heap, it is
9359 the caller's responsibility to free them. */
c906108c 9360
b9362cc7 9361static void
c3f6f71d 9362parse_breakpoint_sals (char **address,
58438ac1 9363 struct linespec_result *canonical)
c3f6f71d 9364{
c3f6f71d 9365 /* If no arg given, or if first arg is 'if ', use the default
4a64f543 9366 breakpoint. */
c3f6f71d
JM
9367 if ((*address) == NULL
9368 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c 9369 {
1bfeeb0f
JL
9370 /* The last displayed codepoint, if it's valid, is our default breakpoint
9371 address. */
9372 if (last_displayed_sal_is_valid ())
c906108c 9373 {
f8eba3c6 9374 struct linespec_sals lsal;
c3f6f71d 9375 struct symtab_and_line sal;
1c8cdcb1 9376 CORE_ADDR pc;
cc59ec59 9377
4a64f543 9378 init_sal (&sal); /* Initialize to zeroes. */
f8eba3c6 9379 lsal.sals.sals = (struct symtab_and_line *)
c906108c 9380 xmalloc (sizeof (struct symtab_and_line));
1bfeeb0f
JL
9381
9382 /* Set sal's pspace, pc, symtab, and line to the values
1c8cdcb1
JK
9383 corresponding to the last call to print_frame_info.
9384 Be sure to reinitialize LINE with NOTCURRENT == 0
9385 as the breakpoint line number is inappropriate otherwise.
9386 find_pc_line would adjust PC, re-set it back. */
1bfeeb0f 9387 get_last_displayed_sal (&sal);
1c8cdcb1
JK
9388 pc = sal.pc;
9389 sal = find_pc_line (pc, 0);
00903456 9390
4a64f543 9391 /* "break" without arguments is equivalent to "break *PC"
1bfeeb0f
JL
9392 where PC is the last displayed codepoint's address. So
9393 make sure to set sal.explicit_pc to prevent GDB from
9394 trying to expand the list of sals to include all other
9395 instances with the same symtab and line. */
1c8cdcb1 9396 sal.pc = pc;
00903456
JK
9397 sal.explicit_pc = 1;
9398
f8eba3c6
TT
9399 lsal.sals.sals[0] = sal;
9400 lsal.sals.nelts = 1;
9401 lsal.canonical = NULL;
9402
9403 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
c906108c
SS
9404 }
9405 else
8a3fe4f8 9406 error (_("No default breakpoint address now."));
c906108c
SS
9407 }
9408 else
9409 {
cc80f267
JK
9410 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
9411
c906108c 9412 /* Force almost all breakpoints to be in terms of the
4a64f543
MS
9413 current_source_symtab (which is decode_line_1's default).
9414 This should produce the results we want almost all of the
cc80f267
JK
9415 time while leaving default_breakpoint_* alone.
9416
9417 ObjC: However, don't match an Objective-C method name which
9418 may have a '+' or '-' succeeded by a '['. */
9419 if (last_displayed_sal_is_valid ()
9420 && (!cursal.symtab
9421 || ((strchr ("+-", (*address)[0]) != NULL)
9422 && ((*address)[1] != '['))))
f8eba3c6
TT
9423 decode_line_full (address, DECODE_LINE_FUNFIRSTLINE,
9424 get_last_displayed_symtab (),
9425 get_last_displayed_line (),
9426 canonical, NULL, NULL);
c906108c 9427 else
f8eba3c6 9428 decode_line_full (address, DECODE_LINE_FUNFIRSTLINE,
cc80f267 9429 cursal.symtab, cursal.line, canonical, NULL, NULL);
c906108c 9430 }
c3f6f71d 9431}
c906108c 9432
c906108c 9433
c3f6f71d 9434/* Convert each SAL into a real PC. Verify that the PC can be
4a64f543 9435 inserted as a breakpoint. If it can't throw an error. */
c906108c 9436
b9362cc7 9437static void
23e7acfb 9438breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
c3f6f71d
JM
9439{
9440 int i;
cc59ec59 9441
c3f6f71d 9442 for (i = 0; i < sals->nelts; i++)
ee53e872 9443 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
9444}
9445
7a697b8d
SS
9446/* Fast tracepoints may have restrictions on valid locations. For
9447 instance, a fast tracepoint using a jump instead of a trap will
9448 likely have to overwrite more bytes than a trap would, and so can
9449 only be placed where the instruction is longer than the jump, or a
9450 multi-instruction sequence does not have a jump into the middle of
9451 it, etc. */
9452
9453static void
9454check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9455 struct symtabs_and_lines *sals)
9456{
9457 int i, rslt;
9458 struct symtab_and_line *sal;
9459 char *msg;
9460 struct cleanup *old_chain;
9461
9462 for (i = 0; i < sals->nelts; i++)
9463 {
f8eba3c6
TT
9464 struct gdbarch *sarch;
9465
7a697b8d
SS
9466 sal = &sals->sals[i];
9467
f8eba3c6
TT
9468 sarch = get_sal_arch (*sal);
9469 /* We fall back to GDBARCH if there is no architecture
9470 associated with SAL. */
9471 if (sarch == NULL)
9472 sarch = gdbarch;
9473 rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc,
7a697b8d
SS
9474 NULL, &msg);
9475 old_chain = make_cleanup (xfree, msg);
9476
9477 if (!rslt)
9478 error (_("May not have a fast tracepoint at 0x%s%s"),
f8eba3c6 9479 paddress (sarch, sal->pc), (msg ? msg : ""));
7a697b8d
SS
9480
9481 do_cleanups (old_chain);
9482 }
9483}
9484
af4908ba
KS
9485/* Issue an invalid thread ID error. */
9486
9487static void ATTRIBUTE_NORETURN
9488invalid_thread_id_error (int id)
9489{
9490 error (_("Unknown thread %d."), id);
9491}
9492
018d34a4
VP
9493/* Given TOK, a string specification of condition and thread, as
9494 accepted by the 'break' command, extract the condition
9495 string and thread number and set *COND_STRING and *THREAD.
4a64f543 9496 PC identifies the context at which the condition should be parsed.
018d34a4
VP
9497 If no condition is found, *COND_STRING is set to NULL.
9498 If no thread is found, *THREAD is set to -1. */
d634f2de
JB
9499
9500static void
bbc13ae3 9501find_condition_and_thread (const char *tok, CORE_ADDR pc,
e7e0cddf
SS
9502 char **cond_string, int *thread, int *task,
9503 char **rest)
018d34a4
VP
9504{
9505 *cond_string = NULL;
9506 *thread = -1;
ed1d1739
KS
9507 *task = 0;
9508 *rest = NULL;
9509
018d34a4
VP
9510 while (tok && *tok)
9511 {
bbc13ae3 9512 const char *end_tok;
018d34a4 9513 int toklen;
bbc13ae3
KS
9514 const char *cond_start = NULL;
9515 const char *cond_end = NULL;
cc59ec59 9516
bbc13ae3 9517 tok = skip_spaces_const (tok);
e7e0cddf
SS
9518
9519 if ((*tok == '"' || *tok == ',') && rest)
9520 {
9521 *rest = savestring (tok, strlen (tok));
9522 return;
9523 }
9524
bbc13ae3 9525 end_tok = skip_to_space_const (tok);
d634f2de 9526
018d34a4 9527 toklen = end_tok - tok;
d634f2de 9528
018d34a4
VP
9529 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9530 {
f7545552
TT
9531 struct expression *expr;
9532
018d34a4 9533 tok = cond_start = end_tok + 1;
1bb9788d 9534 expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
f7545552 9535 xfree (expr);
018d34a4 9536 cond_end = tok;
d634f2de 9537 *cond_string = savestring (cond_start, cond_end - cond_start);
018d34a4
VP
9538 }
9539 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9540 {
9541 char *tmptok;
d634f2de 9542
018d34a4 9543 tok = end_tok + 1;
bbc13ae3 9544 *thread = strtol (tok, &tmptok, 0);
018d34a4
VP
9545 if (tok == tmptok)
9546 error (_("Junk after thread keyword."));
9547 if (!valid_thread_id (*thread))
af4908ba 9548 invalid_thread_id_error (*thread);
bbc13ae3 9549 tok = tmptok;
018d34a4 9550 }
4a306c9a
JB
9551 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9552 {
9553 char *tmptok;
9554
9555 tok = end_tok + 1;
bbc13ae3 9556 *task = strtol (tok, &tmptok, 0);
4a306c9a
JB
9557 if (tok == tmptok)
9558 error (_("Junk after task keyword."));
9559 if (!valid_task_id (*task))
b6199126 9560 error (_("Unknown task %d."), *task);
bbc13ae3 9561 tok = tmptok;
4a306c9a 9562 }
e7e0cddf
SS
9563 else if (rest)
9564 {
9565 *rest = savestring (tok, strlen (tok));
ccab2054 9566 return;
e7e0cddf 9567 }
018d34a4
VP
9568 else
9569 error (_("Junk at end of arguments."));
9570 }
9571}
9572
0fb4aa4b
PA
9573/* Decode a static tracepoint marker spec. */
9574
9575static struct symtabs_and_lines
9576decode_static_tracepoint_spec (char **arg_p)
9577{
9578 VEC(static_tracepoint_marker_p) *markers = NULL;
9579 struct symtabs_and_lines sals;
0fb4aa4b
PA
9580 struct cleanup *old_chain;
9581 char *p = &(*arg_p)[3];
9582 char *endp;
9583 char *marker_str;
9584 int i;
9585
e9cafbcc 9586 p = skip_spaces (p);
0fb4aa4b 9587
e9cafbcc 9588 endp = skip_to_space (p);
0fb4aa4b
PA
9589
9590 marker_str = savestring (p, endp - p);
9591 old_chain = make_cleanup (xfree, marker_str);
9592
9593 markers = target_static_tracepoint_markers_by_strid (marker_str);
9594 if (VEC_empty(static_tracepoint_marker_p, markers))
9595 error (_("No known static tracepoint marker named %s"), marker_str);
9596
9597 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
9598 sals.sals = xmalloc (sizeof *sals.sals * sals.nelts);
9599
9600 for (i = 0; i < sals.nelts; i++)
9601 {
9602 struct static_tracepoint_marker *marker;
9603
9604 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9605
9606 init_sal (&sals.sals[i]);
9607
9608 sals.sals[i] = find_pc_line (marker->address, 0);
9609 sals.sals[i].pc = marker->address;
9610
9611 release_static_tracepoint_marker (marker);
9612 }
9613
9614 do_cleanups (old_chain);
9615
9616 *arg_p = endp;
9617 return sals;
9618}
9619
fd9b8c24
PA
9620/* Set a breakpoint. This function is shared between CLI and MI
9621 functions for setting a breakpoint. This function has two major
f6de8ec2
PA
9622 modes of operations, selected by the PARSE_ARG parameter. If
9623 non-zero, the function will parse ARG, extracting location,
9624 condition, thread and extra string. Otherwise, ARG is just the
9625 breakpoint's location, with condition, thread, and extra string
9626 specified by the COND_STRING, THREAD and EXTRA_STRING parameters.
9627 If INTERNAL is non-zero, the breakpoint number will be allocated
9628 from the internal breakpoint count. Returns true if any breakpoint
9629 was created; false otherwise. */
0101ce28 9630
8cdf0e15
VP
9631int
9632create_breakpoint (struct gdbarch *gdbarch,
e7e0cddf
SS
9633 char *arg, char *cond_string,
9634 int thread, char *extra_string,
f6de8ec2 9635 int parse_arg,
0fb4aa4b 9636 int tempflag, enum bptype type_wanted,
8cdf0e15
VP
9637 int ignore_count,
9638 enum auto_boolean pending_break_support,
c0a91b2b 9639 const struct breakpoint_ops *ops,
44f238bb
PA
9640 int from_tty, int enabled, int internal,
9641 unsigned flags)
c3f6f71d 9642{
b78a6381 9643 volatile struct gdb_exception e;
f8eba3c6 9644 char *copy_arg = NULL;
c3f6f71d 9645 char *addr_start = arg;
7efd8fc2 9646 struct linespec_result canonical;
c3f6f71d 9647 struct cleanup *old_chain;
80c99de1 9648 struct cleanup *bkpt_chain = NULL;
0101ce28 9649 int pending = 0;
4a306c9a 9650 int task = 0;
86b17b60 9651 int prev_bkpt_count = breakpoint_count;
c3f6f71d 9652
348d480f
PA
9653 gdb_assert (ops != NULL);
9654
7efd8fc2 9655 init_linespec_result (&canonical);
c3f6f71d 9656
b78a6381
TT
9657 TRY_CATCH (e, RETURN_MASK_ALL)
9658 {
983af33b
SDJ
9659 ops->create_sals_from_address (&arg, &canonical, type_wanted,
9660 addr_start, &copy_arg);
b78a6381 9661 }
0101ce28
JJ
9662
9663 /* If caller is interested in rc value from parse, set value. */
05ff989b 9664 switch (e.reason)
0101ce28 9665 {
983af33b
SDJ
9666 case GDB_NO_ERROR:
9667 if (VEC_empty (linespec_sals, canonical.sals))
9668 return 0;
9669 break;
05ff989b
AC
9670 case RETURN_ERROR:
9671 switch (e.error)
0101ce28 9672 {
05ff989b 9673 case NOT_FOUND_ERROR:
0101ce28 9674
05ff989b
AC
9675 /* If pending breakpoint support is turned off, throw
9676 error. */
fa8d40ab
JJ
9677
9678 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
9679 throw_exception (e);
9680
9681 exception_print (gdb_stderr, e);
fa8d40ab 9682
05ff989b
AC
9683 /* If pending breakpoint support is auto query and the user
9684 selects no, then simply return the error code. */
059fb39f 9685 if (pending_break_support == AUTO_BOOLEAN_AUTO
bfccc43c
YQ
9686 && !nquery (_("Make %s pending on future shared library load? "),
9687 bptype_string (type_wanted)))
fd9b8c24 9688 return 0;
fa8d40ab 9689
05ff989b
AC
9690 /* At this point, either the user was queried about setting
9691 a pending breakpoint and selected yes, or pending
9692 breakpoint behavior is on and thus a pending breakpoint
9693 is defaulted on behalf of the user. */
f8eba3c6
TT
9694 {
9695 struct linespec_sals lsal;
9696
9697 copy_arg = xstrdup (addr_start);
9698 lsal.canonical = xstrdup (copy_arg);
9699 lsal.sals.nelts = 1;
9700 lsal.sals.sals = XNEW (struct symtab_and_line);
9701 init_sal (&lsal.sals.sals[0]);
9702 pending = 1;
9703 VEC_safe_push (linespec_sals, canonical.sals, &lsal);
9704 }
05ff989b
AC
9705 break;
9706 default:
98deb0da 9707 throw_exception (e);
0101ce28 9708 }
2abae994 9709 break;
05ff989b 9710 default:
983af33b 9711 throw_exception (e);
0101ce28 9712 }
c3f6f71d 9713
4a64f543 9714 /* Create a chain of things that always need to be cleaned up. */
f8eba3c6 9715 old_chain = make_cleanup_destroy_linespec_result (&canonical);
c3f6f71d 9716
c3f6f71d
JM
9717 /* ----------------------------- SNIP -----------------------------
9718 Anything added to the cleanup chain beyond this point is assumed
9719 to be part of a breakpoint. If the breakpoint create succeeds
80c99de1
PA
9720 then the memory is not reclaimed. */
9721 bkpt_chain = make_cleanup (null_cleanup, 0);
c3f6f71d 9722
c3f6f71d
JM
9723 /* Resolve all line numbers to PC's and verify that the addresses
9724 are ok for the target. */
0101ce28 9725 if (!pending)
f8eba3c6
TT
9726 {
9727 int ix;
9728 struct linespec_sals *iter;
9729
9730 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9731 breakpoint_sals_to_pc (&iter->sals);
9732 }
c3f6f71d 9733
7a697b8d 9734 /* Fast tracepoints may have additional restrictions on location. */
bfccc43c 9735 if (!pending && type_wanted == bp_fast_tracepoint)
f8eba3c6
TT
9736 {
9737 int ix;
9738 struct linespec_sals *iter;
9739
9740 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9741 check_fast_tracepoint_sals (gdbarch, &iter->sals);
9742 }
7a697b8d 9743
c3f6f71d
JM
9744 /* Verify that condition can be parsed, before setting any
9745 breakpoints. Allocate a separate condition expression for each
4a64f543 9746 breakpoint. */
0101ce28 9747 if (!pending)
c3f6f71d 9748 {
f6de8ec2 9749 if (parse_arg)
72b2ff0e 9750 {
0878d0fa 9751 char *rest;
52d361e1
YQ
9752 struct linespec_sals *lsal;
9753
9754 lsal = VEC_index (linespec_sals, canonical.sals, 0);
9755
0878d0fa
YQ
9756 /* Here we only parse 'arg' to separate condition
9757 from thread number, so parsing in context of first
9758 sal is OK. When setting the breakpoint we'll
9759 re-parse it in context of each sal. */
9760
9761 find_condition_and_thread (arg, lsal->sals.sals[0].pc, &cond_string,
9762 &thread, &task, &rest);
9763 if (cond_string)
9764 make_cleanup (xfree, cond_string);
9765 if (rest)
9766 make_cleanup (xfree, rest);
9767 if (rest)
9768 extra_string = rest;
72b2ff0e 9769 }
2f069f6f 9770 else
72b2ff0e 9771 {
0878d0fa
YQ
9772 if (*arg != '\0')
9773 error (_("Garbage '%s' at end of location"), arg);
9774
9775 /* Create a private copy of condition string. */
9776 if (cond_string)
9777 {
9778 cond_string = xstrdup (cond_string);
9779 make_cleanup (xfree, cond_string);
9780 }
9781 /* Create a private copy of any extra string. */
9782 if (extra_string)
9783 {
9784 extra_string = xstrdup (extra_string);
9785 make_cleanup (xfree, extra_string);
9786 }
72b2ff0e 9787 }
0fb4aa4b 9788
52d361e1 9789 ops->create_breakpoints_sal (gdbarch, &canonical,
e7e0cddf 9790 cond_string, extra_string, type_wanted,
d9b3f62e
PA
9791 tempflag ? disp_del : disp_donttouch,
9792 thread, task, ignore_count, ops,
44f238bb 9793 from_tty, enabled, internal, flags);
c906108c 9794 }
0101ce28
JJ
9795 else
9796 {
0101ce28
JJ
9797 struct breakpoint *b;
9798
0101ce28
JJ
9799 make_cleanup (xfree, copy_arg);
9800
bfccc43c
YQ
9801 if (is_tracepoint_type (type_wanted))
9802 {
9803 struct tracepoint *t;
9804
9805 t = XCNEW (struct tracepoint);
9806 b = &t->base;
9807 }
9808 else
9809 b = XNEW (struct breakpoint);
9810
9811 init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops);
9812
f8eba3c6 9813 b->addr_string = copy_arg;
f6de8ec2 9814 if (parse_arg)
e12c7713
MK
9815 b->cond_string = NULL;
9816 else
9817 {
9818 /* Create a private copy of condition string. */
9819 if (cond_string)
9820 {
9821 cond_string = xstrdup (cond_string);
9822 make_cleanup (xfree, cond_string);
9823 }
9824 b->cond_string = cond_string;
9825 }
e7e0cddf 9826 b->extra_string = NULL;
0101ce28 9827 b->ignore_count = ignore_count;
0101ce28 9828 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 9829 b->condition_not_parsed = 1;
41447f92 9830 b->enable_state = enabled ? bp_enabled : bp_disabled;
cc72b2a2
KP
9831 if ((type_wanted != bp_breakpoint
9832 && type_wanted != bp_hardware_breakpoint) || thread != -1)
f8eba3c6 9833 b->pspace = current_program_space;
8bea4e01 9834
bfccc43c 9835 install_breakpoint (internal, b, 0);
0101ce28
JJ
9836 }
9837
f8eba3c6 9838 if (VEC_length (linespec_sals, canonical.sals) > 1)
95a42b64 9839 {
3e43a32a
MS
9840 warning (_("Multiple breakpoints were set.\nUse the "
9841 "\"delete\" command to delete unwanted breakpoints."));
86b17b60 9842 prev_breakpoint_count = prev_bkpt_count;
95a42b64
TT
9843 }
9844
80c99de1
PA
9845 /* That's it. Discard the cleanups for data inserted into the
9846 breakpoint. */
9847 discard_cleanups (bkpt_chain);
9848 /* But cleanup everything else. */
c3f6f71d 9849 do_cleanups (old_chain);
217dc9e2 9850
80c99de1 9851 /* error call may happen here - have BKPT_CHAIN already discarded. */
217dc9e2 9852 update_global_location_list (1);
fd9b8c24
PA
9853
9854 return 1;
c3f6f71d 9855}
c906108c 9856
348d480f 9857/* Set a breakpoint.
72b2ff0e
VP
9858 ARG is a string describing breakpoint address,
9859 condition, and thread.
9860 FLAG specifies if a breakpoint is hardware on,
9861 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9862 and BP_TEMPFLAG. */
348d480f 9863
98deb0da 9864static void
72b2ff0e 9865break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 9866{
72b2ff0e 9867 int tempflag = flag & BP_TEMPFLAG;
0fb4aa4b
PA
9868 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9869 ? bp_hardware_breakpoint
9870 : bp_breakpoint);
55aa24fb
SDJ
9871 struct breakpoint_ops *ops;
9872 const char *arg_cp = arg;
9873
9874 /* Matching breakpoints on probes. */
9875 if (arg && probe_linespec_to_ops (&arg_cp) != NULL)
9876 ops = &bkpt_probe_breakpoint_ops;
9877 else
9878 ops = &bkpt_breakpoint_ops;
c3f6f71d 9879
8cdf0e15
VP
9880 create_breakpoint (get_current_arch (),
9881 arg,
e7e0cddf 9882 NULL, 0, NULL, 1 /* parse arg */,
0fb4aa4b 9883 tempflag, type_wanted,
8cdf0e15
VP
9884 0 /* Ignore count */,
9885 pending_break_support,
55aa24fb 9886 ops,
8cdf0e15 9887 from_tty,
84f4c1fe 9888 1 /* enabled */,
44f238bb
PA
9889 0 /* internal */,
9890 0);
c906108c
SS
9891}
9892
c906108c
SS
9893/* Helper function for break_command_1 and disassemble_command. */
9894
9895void
fba45db2 9896resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
9897{
9898 CORE_ADDR pc;
9899
9900 if (sal->pc == 0 && sal->symtab != NULL)
9901 {
9902 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 9903 error (_("No line %d in file \"%s\"."),
05cba821 9904 sal->line, symtab_to_filename_for_display (sal->symtab));
c906108c 9905 sal->pc = pc;
6a048695 9906
4a64f543
MS
9907 /* If this SAL corresponds to a breakpoint inserted using a line
9908 number, then skip the function prologue if necessary. */
6a048695 9909 if (sal->explicit_line)
059acae7 9910 skip_prologue_sal (sal);
c906108c
SS
9911 }
9912
9913 if (sal->section == 0 && sal->symtab != NULL)
9914 {
9915 struct blockvector *bv;
c5aa993b
JM
9916 struct block *b;
9917 struct symbol *sym;
c906108c 9918
801e3a5b 9919 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
9920 if (bv != NULL)
9921 {
7f0df278 9922 sym = block_linkage_function (b);
c906108c
SS
9923 if (sym != NULL)
9924 {
9925 fixup_symbol_section (sym, sal->symtab->objfile);
e27d198c 9926 sal->section = SYMBOL_OBJ_SECTION (sal->symtab->objfile, sym);
c906108c
SS
9927 }
9928 else
9929 {
4a64f543
MS
9930 /* It really is worthwhile to have the section, so we'll
9931 just have to look harder. This case can be executed
9932 if we have line numbers but no functions (as can
9933 happen in assembly source). */
c906108c 9934
7cbd4a93 9935 struct bound_minimal_symbol msym;
6c95b8df
PA
9936 struct cleanup *old_chain = save_current_space_and_thread ();
9937
9938 switch_to_program_space_and_thread (sal->pspace);
c906108c
SS
9939
9940 msym = lookup_minimal_symbol_by_pc (sal->pc);
7cbd4a93 9941 if (msym.minsym)
e27d198c 9942 sal->section = SYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
6c95b8df
PA
9943
9944 do_cleanups (old_chain);
c906108c
SS
9945 }
9946 }
9947 }
9948}
9949
9950void
fba45db2 9951break_command (char *arg, int from_tty)
c906108c 9952{
db107f19 9953 break_command_1 (arg, 0, from_tty);
c906108c
SS
9954}
9955
c906108c 9956void
fba45db2 9957tbreak_command (char *arg, int from_tty)
c906108c 9958{
db107f19 9959 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
9960}
9961
c906108c 9962static void
fba45db2 9963hbreak_command (char *arg, int from_tty)
c906108c 9964{
db107f19 9965 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
9966}
9967
9968static void
fba45db2 9969thbreak_command (char *arg, int from_tty)
c906108c 9970{
db107f19 9971 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
9972}
9973
9974static void
fba45db2 9975stop_command (char *arg, int from_tty)
c906108c 9976{
a3f17187 9977 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 9978Usage: stop in <function | address>\n\
a3f17187 9979 stop at <line>\n"));
c906108c
SS
9980}
9981
9982static void
fba45db2 9983stopin_command (char *arg, int from_tty)
c906108c
SS
9984{
9985 int badInput = 0;
9986
c5aa993b 9987 if (arg == (char *) NULL)
c906108c
SS
9988 badInput = 1;
9989 else if (*arg != '*')
9990 {
9991 char *argptr = arg;
9992 int hasColon = 0;
9993
4a64f543 9994 /* Look for a ':'. If this is a line number specification, then
53a5351d 9995 say it is bad, otherwise, it should be an address or
4a64f543 9996 function/method name. */
c906108c 9997 while (*argptr && !hasColon)
c5aa993b
JM
9998 {
9999 hasColon = (*argptr == ':');
10000 argptr++;
10001 }
c906108c
SS
10002
10003 if (hasColon)
c5aa993b 10004 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 10005 else
c5aa993b 10006 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
10007 }
10008
10009 if (badInput)
a3f17187 10010 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 10011 else
db107f19 10012 break_command_1 (arg, 0, from_tty);
c906108c
SS
10013}
10014
10015static void
fba45db2 10016stopat_command (char *arg, int from_tty)
c906108c
SS
10017{
10018 int badInput = 0;
10019
c5aa993b 10020 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
10021 badInput = 1;
10022 else
10023 {
10024 char *argptr = arg;
10025 int hasColon = 0;
10026
4a64f543
MS
10027 /* Look for a ':'. If there is a '::' then get out, otherwise
10028 it is probably a line number. */
c906108c 10029 while (*argptr && !hasColon)
c5aa993b
JM
10030 {
10031 hasColon = (*argptr == ':');
10032 argptr++;
10033 }
c906108c
SS
10034
10035 if (hasColon)
c5aa993b 10036 badInput = (*argptr == ':'); /* we have class::method */
c906108c 10037 else
c5aa993b 10038 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
10039 }
10040
10041 if (badInput)
a3f17187 10042 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 10043 else
db107f19 10044 break_command_1 (arg, 0, from_tty);
c906108c
SS
10045}
10046
e7e0cddf
SS
10047/* The dynamic printf command is mostly like a regular breakpoint, but
10048 with a prewired command list consisting of a single output command,
10049 built from extra arguments supplied on the dprintf command
10050 line. */
10051
da821c7b 10052static void
e7e0cddf
SS
10053dprintf_command (char *arg, int from_tty)
10054{
10055 create_breakpoint (get_current_arch (),
10056 arg,
10057 NULL, 0, NULL, 1 /* parse arg */,
10058 0, bp_dprintf,
10059 0 /* Ignore count */,
10060 pending_break_support,
10061 &dprintf_breakpoint_ops,
10062 from_tty,
10063 1 /* enabled */,
10064 0 /* internal */,
10065 0);
10066}
10067
d3ce09f5
SS
10068static void
10069agent_printf_command (char *arg, int from_tty)
10070{
10071 error (_("May only run agent-printf on the target"));
10072}
10073
f1310107
TJB
10074/* Implement the "breakpoint_hit" breakpoint_ops method for
10075 ranged breakpoints. */
10076
10077static int
10078breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
10079 struct address_space *aspace,
09ac7c10
TT
10080 CORE_ADDR bp_addr,
10081 const struct target_waitstatus *ws)
f1310107 10082{
09ac7c10 10083 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 10084 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
10085 return 0;
10086
f1310107
TJB
10087 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
10088 bl->length, aspace, bp_addr);
10089}
10090
10091/* Implement the "resources_needed" breakpoint_ops method for
10092 ranged breakpoints. */
10093
10094static int
10095resources_needed_ranged_breakpoint (const struct bp_location *bl)
10096{
10097 return target_ranged_break_num_registers ();
10098}
10099
10100/* Implement the "print_it" breakpoint_ops method for
10101 ranged breakpoints. */
10102
10103static enum print_stop_action
348d480f 10104print_it_ranged_breakpoint (bpstat bs)
f1310107 10105{
348d480f 10106 struct breakpoint *b = bs->breakpoint_at;
f1310107 10107 struct bp_location *bl = b->loc;
79a45e25 10108 struct ui_out *uiout = current_uiout;
f1310107
TJB
10109
10110 gdb_assert (b->type == bp_hardware_breakpoint);
10111
10112 /* Ranged breakpoints have only one location. */
10113 gdb_assert (bl && bl->next == NULL);
10114
10115 annotate_breakpoint (b->number);
10116 if (b->disposition == disp_del)
10117 ui_out_text (uiout, "\nTemporary ranged breakpoint ");
10118 else
10119 ui_out_text (uiout, "\nRanged breakpoint ");
10120 if (ui_out_is_mi_like_p (uiout))
10121 {
10122 ui_out_field_string (uiout, "reason",
10123 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
10124 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
10125 }
10126 ui_out_field_int (uiout, "bkptno", b->number);
10127 ui_out_text (uiout, ", ");
10128
10129 return PRINT_SRC_AND_LOC;
10130}
10131
10132/* Implement the "print_one" breakpoint_ops method for
10133 ranged breakpoints. */
10134
10135static void
10136print_one_ranged_breakpoint (struct breakpoint *b,
10137 struct bp_location **last_loc)
10138{
10139 struct bp_location *bl = b->loc;
10140 struct value_print_options opts;
79a45e25 10141 struct ui_out *uiout = current_uiout;
f1310107
TJB
10142
10143 /* Ranged breakpoints have only one location. */
10144 gdb_assert (bl && bl->next == NULL);
10145
10146 get_user_print_options (&opts);
10147
10148 if (opts.addressprint)
10149 /* We don't print the address range here, it will be printed later
10150 by print_one_detail_ranged_breakpoint. */
10151 ui_out_field_skip (uiout, "addr");
10152 annotate_field (5);
10153 print_breakpoint_location (b, bl);
10154 *last_loc = bl;
10155}
10156
10157/* Implement the "print_one_detail" breakpoint_ops method for
10158 ranged breakpoints. */
10159
10160static void
10161print_one_detail_ranged_breakpoint (const struct breakpoint *b,
10162 struct ui_out *uiout)
10163{
10164 CORE_ADDR address_start, address_end;
10165 struct bp_location *bl = b->loc;
f99d8bf4
PA
10166 struct ui_file *stb = mem_fileopen ();
10167 struct cleanup *cleanup = make_cleanup_ui_file_delete (stb);
f1310107
TJB
10168
10169 gdb_assert (bl);
10170
10171 address_start = bl->address;
10172 address_end = address_start + bl->length - 1;
10173
10174 ui_out_text (uiout, "\taddress range: ");
f99d8bf4 10175 fprintf_unfiltered (stb, "[%s, %s]",
f1310107
TJB
10176 print_core_address (bl->gdbarch, address_start),
10177 print_core_address (bl->gdbarch, address_end));
10178 ui_out_field_stream (uiout, "addr", stb);
10179 ui_out_text (uiout, "\n");
10180
10181 do_cleanups (cleanup);
10182}
10183
10184/* Implement the "print_mention" breakpoint_ops method for
10185 ranged breakpoints. */
10186
10187static void
10188print_mention_ranged_breakpoint (struct breakpoint *b)
10189{
10190 struct bp_location *bl = b->loc;
79a45e25 10191 struct ui_out *uiout = current_uiout;
f1310107
TJB
10192
10193 gdb_assert (bl);
10194 gdb_assert (b->type == bp_hardware_breakpoint);
10195
10196 if (ui_out_is_mi_like_p (uiout))
10197 return;
10198
10199 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
10200 b->number, paddress (bl->gdbarch, bl->address),
10201 paddress (bl->gdbarch, bl->address + bl->length - 1));
10202}
10203
10204/* Implement the "print_recreate" breakpoint_ops method for
10205 ranged breakpoints. */
10206
10207static void
10208print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
10209{
10210 fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string,
10211 b->addr_string_range_end);
d9b3f62e 10212 print_recreate_thread (b, fp);
f1310107
TJB
10213}
10214
10215/* The breakpoint_ops structure to be used in ranged breakpoints. */
10216
2060206e 10217static struct breakpoint_ops ranged_breakpoint_ops;
f1310107
TJB
10218
10219/* Find the address where the end of the breakpoint range should be
10220 placed, given the SAL of the end of the range. This is so that if
10221 the user provides a line number, the end of the range is set to the
10222 last instruction of the given line. */
10223
10224static CORE_ADDR
10225find_breakpoint_range_end (struct symtab_and_line sal)
10226{
10227 CORE_ADDR end;
10228
10229 /* If the user provided a PC value, use it. Otherwise,
10230 find the address of the end of the given location. */
10231 if (sal.explicit_pc)
10232 end = sal.pc;
10233 else
10234 {
10235 int ret;
10236 CORE_ADDR start;
10237
10238 ret = find_line_pc_range (sal, &start, &end);
10239 if (!ret)
10240 error (_("Could not find location of the end of the range."));
10241
10242 /* find_line_pc_range returns the start of the next line. */
10243 end--;
10244 }
10245
10246 return end;
10247}
10248
10249/* Implement the "break-range" CLI command. */
10250
10251static void
10252break_range_command (char *arg, int from_tty)
10253{
10254 char *arg_start, *addr_string_start, *addr_string_end;
10255 struct linespec_result canonical_start, canonical_end;
10256 int bp_count, can_use_bp, length;
10257 CORE_ADDR end;
10258 struct breakpoint *b;
10259 struct symtab_and_line sal_start, sal_end;
f1310107 10260 struct cleanup *cleanup_bkpt;
f8eba3c6 10261 struct linespec_sals *lsal_start, *lsal_end;
f1310107
TJB
10262
10263 /* We don't support software ranged breakpoints. */
10264 if (target_ranged_break_num_registers () < 0)
10265 error (_("This target does not support hardware ranged breakpoints."));
10266
10267 bp_count = hw_breakpoint_used_count ();
10268 bp_count += target_ranged_break_num_registers ();
10269 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
10270 bp_count, 0);
10271 if (can_use_bp < 0)
10272 error (_("Hardware breakpoints used exceeds limit."));
10273
f8eba3c6 10274 arg = skip_spaces (arg);
f1310107
TJB
10275 if (arg == NULL || arg[0] == '\0')
10276 error(_("No address range specified."));
10277
f1310107
TJB
10278 init_linespec_result (&canonical_start);
10279
f8eba3c6
TT
10280 arg_start = arg;
10281 parse_breakpoint_sals (&arg, &canonical_start);
f1310107 10282
f8eba3c6 10283 cleanup_bkpt = make_cleanup_destroy_linespec_result (&canonical_start);
f1310107
TJB
10284
10285 if (arg[0] != ',')
10286 error (_("Too few arguments."));
f8eba3c6 10287 else if (VEC_empty (linespec_sals, canonical_start.sals))
f1310107 10288 error (_("Could not find location of the beginning of the range."));
f8eba3c6
TT
10289
10290 lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0);
10291
10292 if (VEC_length (linespec_sals, canonical_start.sals) > 1
10293 || lsal_start->sals.nelts != 1)
f1310107
TJB
10294 error (_("Cannot create a ranged breakpoint with multiple locations."));
10295
f8eba3c6
TT
10296 sal_start = lsal_start->sals.sals[0];
10297 addr_string_start = savestring (arg_start, arg - arg_start);
10298 make_cleanup (xfree, addr_string_start);
f1310107
TJB
10299
10300 arg++; /* Skip the comma. */
f8eba3c6 10301 arg = skip_spaces (arg);
f1310107
TJB
10302
10303 /* Parse the end location. */
10304
f1310107
TJB
10305 init_linespec_result (&canonical_end);
10306 arg_start = arg;
10307
f8eba3c6 10308 /* We call decode_line_full directly here instead of using
f1310107
TJB
10309 parse_breakpoint_sals because we need to specify the start location's
10310 symtab and line as the default symtab and line for the end of the
10311 range. This makes it possible to have ranges like "foo.c:27, +14",
10312 where +14 means 14 lines from the start location. */
f8eba3c6
TT
10313 decode_line_full (&arg, DECODE_LINE_FUNFIRSTLINE,
10314 sal_start.symtab, sal_start.line,
10315 &canonical_end, NULL, NULL);
10316
10317 make_cleanup_destroy_linespec_result (&canonical_end);
f1310107 10318
f8eba3c6 10319 if (VEC_empty (linespec_sals, canonical_end.sals))
f1310107 10320 error (_("Could not find location of the end of the range."));
f8eba3c6
TT
10321
10322 lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0);
10323 if (VEC_length (linespec_sals, canonical_end.sals) > 1
10324 || lsal_end->sals.nelts != 1)
f1310107
TJB
10325 error (_("Cannot create a ranged breakpoint with multiple locations."));
10326
f8eba3c6
TT
10327 sal_end = lsal_end->sals.sals[0];
10328 addr_string_end = savestring (arg_start, arg - arg_start);
10329 make_cleanup (xfree, addr_string_end);
f1310107
TJB
10330
10331 end = find_breakpoint_range_end (sal_end);
10332 if (sal_start.pc > end)
177b42fe 10333 error (_("Invalid address range, end precedes start."));
f1310107
TJB
10334
10335 length = end - sal_start.pc + 1;
10336 if (length < 0)
10337 /* Length overflowed. */
10338 error (_("Address range too large."));
10339 else if (length == 1)
10340 {
10341 /* This range is simple enough to be handled by
10342 the `hbreak' command. */
10343 hbreak_command (addr_string_start, 1);
10344
10345 do_cleanups (cleanup_bkpt);
10346
10347 return;
10348 }
10349
10350 /* Now set up the breakpoint. */
10351 b = set_raw_breakpoint (get_current_arch (), sal_start,
348d480f 10352 bp_hardware_breakpoint, &ranged_breakpoint_ops);
f1310107
TJB
10353 set_breakpoint_count (breakpoint_count + 1);
10354 b->number = breakpoint_count;
10355 b->disposition = disp_donttouch;
f8eba3c6
TT
10356 b->addr_string = xstrdup (addr_string_start);
10357 b->addr_string_range_end = xstrdup (addr_string_end);
f1310107
TJB
10358 b->loc->length = length;
10359
f8eba3c6 10360 do_cleanups (cleanup_bkpt);
f1310107
TJB
10361
10362 mention (b);
8d3788bd 10363 observer_notify_breakpoint_created (b);
f1310107
TJB
10364 update_global_location_list (1);
10365}
10366
4a64f543
MS
10367/* Return non-zero if EXP is verified as constant. Returned zero
10368 means EXP is variable. Also the constant detection may fail for
10369 some constant expressions and in such case still falsely return
10370 zero. */
2e6e3d9c 10371
65d79d4b
SDJ
10372static int
10373watchpoint_exp_is_const (const struct expression *exp)
10374{
10375 int i = exp->nelts;
10376
10377 while (i > 0)
10378 {
10379 int oplenp, argsp;
10380
10381 /* We are only interested in the descriptor of each element. */
10382 operator_length (exp, i, &oplenp, &argsp);
10383 i -= oplenp;
10384
10385 switch (exp->elts[i].opcode)
10386 {
10387 case BINOP_ADD:
10388 case BINOP_SUB:
10389 case BINOP_MUL:
10390 case BINOP_DIV:
10391 case BINOP_REM:
10392 case BINOP_MOD:
10393 case BINOP_LSH:
10394 case BINOP_RSH:
10395 case BINOP_LOGICAL_AND:
10396 case BINOP_LOGICAL_OR:
10397 case BINOP_BITWISE_AND:
10398 case BINOP_BITWISE_IOR:
10399 case BINOP_BITWISE_XOR:
10400 case BINOP_EQUAL:
10401 case BINOP_NOTEQUAL:
10402 case BINOP_LESS:
10403 case BINOP_GTR:
10404 case BINOP_LEQ:
10405 case BINOP_GEQ:
10406 case BINOP_REPEAT:
10407 case BINOP_COMMA:
10408 case BINOP_EXP:
10409 case BINOP_MIN:
10410 case BINOP_MAX:
10411 case BINOP_INTDIV:
10412 case BINOP_CONCAT:
10413 case BINOP_IN:
10414 case BINOP_RANGE:
10415 case TERNOP_COND:
10416 case TERNOP_SLICE:
65d79d4b
SDJ
10417
10418 case OP_LONG:
10419 case OP_DOUBLE:
10420 case OP_DECFLOAT:
10421 case OP_LAST:
10422 case OP_COMPLEX:
10423 case OP_STRING:
65d79d4b
SDJ
10424 case OP_ARRAY:
10425 case OP_TYPE:
608b4967
TT
10426 case OP_TYPEOF:
10427 case OP_DECLTYPE:
6e72ca20 10428 case OP_TYPEID:
65d79d4b
SDJ
10429 case OP_NAME:
10430 case OP_OBJC_NSSTRING:
10431
10432 case UNOP_NEG:
10433 case UNOP_LOGICAL_NOT:
10434 case UNOP_COMPLEMENT:
10435 case UNOP_ADDR:
10436 case UNOP_HIGH:
aeaa2474 10437 case UNOP_CAST:
9eaf6705
TT
10438
10439 case UNOP_CAST_TYPE:
10440 case UNOP_REINTERPRET_CAST:
10441 case UNOP_DYNAMIC_CAST:
4a64f543
MS
10442 /* Unary, binary and ternary operators: We have to check
10443 their operands. If they are constant, then so is the
10444 result of that operation. For instance, if A and B are
10445 determined to be constants, then so is "A + B".
10446
10447 UNOP_IND is one exception to the rule above, because the
10448 value of *ADDR is not necessarily a constant, even when
10449 ADDR is. */
65d79d4b
SDJ
10450 break;
10451
10452 case OP_VAR_VALUE:
10453 /* Check whether the associated symbol is a constant.
4a64f543 10454
65d79d4b 10455 We use SYMBOL_CLASS rather than TYPE_CONST because it's
4a64f543
MS
10456 possible that a buggy compiler could mark a variable as
10457 constant even when it is not, and TYPE_CONST would return
10458 true in this case, while SYMBOL_CLASS wouldn't.
10459
10460 We also have to check for function symbols because they
10461 are always constant. */
65d79d4b
SDJ
10462 {
10463 struct symbol *s = exp->elts[i + 2].symbol;
10464
10465 if (SYMBOL_CLASS (s) != LOC_BLOCK
10466 && SYMBOL_CLASS (s) != LOC_CONST
10467 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10468 return 0;
10469 break;
10470 }
10471
10472 /* The default action is to return 0 because we are using
10473 the optimistic approach here: If we don't know something,
10474 then it is not a constant. */
10475 default:
10476 return 0;
10477 }
10478 }
10479
10480 return 1;
10481}
10482
3a5c3e22
PA
10483/* Implement the "dtor" breakpoint_ops method for watchpoints. */
10484
10485static void
10486dtor_watchpoint (struct breakpoint *self)
10487{
10488 struct watchpoint *w = (struct watchpoint *) self;
10489
10490 xfree (w->cond_exp);
10491 xfree (w->exp);
10492 xfree (w->exp_string);
10493 xfree (w->exp_string_reparse);
10494 value_free (w->val);
10495
10496 base_breakpoint_ops.dtor (self);
10497}
10498
348d480f
PA
10499/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10500
10501static void
10502re_set_watchpoint (struct breakpoint *b)
10503{
3a5c3e22
PA
10504 struct watchpoint *w = (struct watchpoint *) b;
10505
348d480f
PA
10506 /* Watchpoint can be either on expression using entirely global
10507 variables, or it can be on local variables.
10508
10509 Watchpoints of the first kind are never auto-deleted, and even
10510 persist across program restarts. Since they can use variables
10511 from shared libraries, we need to reparse expression as libraries
10512 are loaded and unloaded.
10513
10514 Watchpoints on local variables can also change meaning as result
10515 of solib event. For example, if a watchpoint uses both a local
10516 and a global variables in expression, it's a local watchpoint,
10517 but unloading of a shared library will make the expression
10518 invalid. This is not a very common use case, but we still
10519 re-evaluate expression, to avoid surprises to the user.
10520
10521 Note that for local watchpoints, we re-evaluate it only if
10522 watchpoints frame id is still valid. If it's not, it means the
10523 watchpoint is out of scope and will be deleted soon. In fact,
10524 I'm not sure we'll ever be called in this case.
10525
10526 If a local watchpoint's frame id is still valid, then
3a5c3e22 10527 w->exp_valid_block is likewise valid, and we can safely use it.
348d480f 10528
3a5c3e22
PA
10529 Don't do anything about disabled watchpoints, since they will be
10530 reevaluated again when enabled. */
10531 update_watchpoint (w, 1 /* reparse */);
348d480f
PA
10532}
10533
77b06cd7
TJB
10534/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10535
10536static int
10537insert_watchpoint (struct bp_location *bl)
10538{
3a5c3e22
PA
10539 struct watchpoint *w = (struct watchpoint *) bl->owner;
10540 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10541
10542 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
3a5c3e22 10543 w->cond_exp);
77b06cd7
TJB
10544}
10545
10546/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10547
10548static int
10549remove_watchpoint (struct bp_location *bl)
10550{
3a5c3e22
PA
10551 struct watchpoint *w = (struct watchpoint *) bl->owner;
10552 int length = w->exact ? 1 : bl->length;
e09342b5
TJB
10553
10554 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
3a5c3e22 10555 w->cond_exp);
e09342b5
TJB
10556}
10557
e09342b5 10558static int
348d480f 10559breakpoint_hit_watchpoint (const struct bp_location *bl,
09ac7c10
TT
10560 struct address_space *aspace, CORE_ADDR bp_addr,
10561 const struct target_waitstatus *ws)
e09342b5 10562{
348d480f 10563 struct breakpoint *b = bl->owner;
3a5c3e22 10564 struct watchpoint *w = (struct watchpoint *) b;
77b06cd7 10565
348d480f
PA
10566 /* Continuable hardware watchpoints are treated as non-existent if the
10567 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10568 some data address). Otherwise gdb won't stop on a break instruction
10569 in the code (not from a breakpoint) when a hardware watchpoint has
10570 been defined. Also skip watchpoints which we know did not trigger
10571 (did not match the data address). */
10572 if (is_hardware_watchpoint (b)
3a5c3e22 10573 && w->watchpoint_triggered == watch_triggered_no)
348d480f 10574 return 0;
9c06b0b4 10575
348d480f 10576 return 1;
9c06b0b4
TJB
10577}
10578
348d480f
PA
10579static void
10580check_status_watchpoint (bpstat bs)
9c06b0b4 10581{
348d480f 10582 gdb_assert (is_watchpoint (bs->breakpoint_at));
9c06b0b4 10583
348d480f 10584 bpstat_check_watchpoint (bs);
9c06b0b4
TJB
10585}
10586
10587/* Implement the "resources_needed" breakpoint_ops method for
348d480f 10588 hardware watchpoints. */
9c06b0b4
TJB
10589
10590static int
348d480f 10591resources_needed_watchpoint (const struct bp_location *bl)
9c06b0b4 10592{
3a5c3e22
PA
10593 struct watchpoint *w = (struct watchpoint *) bl->owner;
10594 int length = w->exact? 1 : bl->length;
348d480f
PA
10595
10596 return target_region_ok_for_hw_watchpoint (bl->address, length);
9c06b0b4
TJB
10597}
10598
10599/* Implement the "works_in_software_mode" breakpoint_ops method for
348d480f 10600 hardware watchpoints. */
9c06b0b4
TJB
10601
10602static int
348d480f 10603works_in_software_mode_watchpoint (const struct breakpoint *b)
9c06b0b4 10604{
efa80663
PA
10605 /* Read and access watchpoints only work with hardware support. */
10606 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
9c06b0b4
TJB
10607}
10608
9c06b0b4 10609static enum print_stop_action
348d480f 10610print_it_watchpoint (bpstat bs)
9c06b0b4 10611{
348d480f
PA
10612 struct cleanup *old_chain;
10613 struct breakpoint *b;
f99d8bf4 10614 struct ui_file *stb;
348d480f 10615 enum print_stop_action result;
3a5c3e22 10616 struct watchpoint *w;
79a45e25 10617 struct ui_out *uiout = current_uiout;
348d480f
PA
10618
10619 gdb_assert (bs->bp_location_at != NULL);
10620
348d480f 10621 b = bs->breakpoint_at;
3a5c3e22 10622 w = (struct watchpoint *) b;
348d480f 10623
f99d8bf4
PA
10624 stb = mem_fileopen ();
10625 old_chain = make_cleanup_ui_file_delete (stb);
9c06b0b4
TJB
10626
10627 switch (b->type)
10628 {
348d480f 10629 case bp_watchpoint:
9c06b0b4
TJB
10630 case bp_hardware_watchpoint:
10631 annotate_watchpoint (b->number);
10632 if (ui_out_is_mi_like_p (uiout))
10633 ui_out_field_string
10634 (uiout, "reason",
10635 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
348d480f
PA
10636 mention (b);
10637 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10638 ui_out_text (uiout, "\nOld value = ");
f99d8bf4 10639 watchpoint_value_print (bs->old_val, stb);
348d480f
PA
10640 ui_out_field_stream (uiout, "old", stb);
10641 ui_out_text (uiout, "\nNew value = ");
f99d8bf4 10642 watchpoint_value_print (w->val, stb);
348d480f
PA
10643 ui_out_field_stream (uiout, "new", stb);
10644 ui_out_text (uiout, "\n");
10645 /* More than one watchpoint may have been triggered. */
10646 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10647 break;
10648
10649 case bp_read_watchpoint:
10650 if (ui_out_is_mi_like_p (uiout))
10651 ui_out_field_string
10652 (uiout, "reason",
10653 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
348d480f
PA
10654 mention (b);
10655 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10656 ui_out_text (uiout, "\nValue = ");
f99d8bf4 10657 watchpoint_value_print (w->val, stb);
348d480f
PA
10658 ui_out_field_stream (uiout, "value", stb);
10659 ui_out_text (uiout, "\n");
10660 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10661 break;
10662
10663 case bp_access_watchpoint:
348d480f
PA
10664 if (bs->old_val != NULL)
10665 {
10666 annotate_watchpoint (b->number);
10667 if (ui_out_is_mi_like_p (uiout))
10668 ui_out_field_string
10669 (uiout, "reason",
10670 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10671 mention (b);
10672 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10673 ui_out_text (uiout, "\nOld value = ");
f99d8bf4 10674 watchpoint_value_print (bs->old_val, stb);
348d480f
PA
10675 ui_out_field_stream (uiout, "old", stb);
10676 ui_out_text (uiout, "\nNew value = ");
10677 }
10678 else
10679 {
10680 mention (b);
10681 if (ui_out_is_mi_like_p (uiout))
10682 ui_out_field_string
10683 (uiout, "reason",
10684 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10685 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10686 ui_out_text (uiout, "\nValue = ");
10687 }
f99d8bf4 10688 watchpoint_value_print (w->val, stb);
348d480f
PA
10689 ui_out_field_stream (uiout, "new", stb);
10690 ui_out_text (uiout, "\n");
10691 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10692 break;
10693 default:
348d480f 10694 result = PRINT_UNKNOWN;
9c06b0b4
TJB
10695 }
10696
348d480f
PA
10697 do_cleanups (old_chain);
10698 return result;
10699}
10700
10701/* Implement the "print_mention" breakpoint_ops method for hardware
10702 watchpoints. */
10703
10704static void
10705print_mention_watchpoint (struct breakpoint *b)
10706{
10707 struct cleanup *ui_out_chain;
3a5c3e22 10708 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10709 struct ui_out *uiout = current_uiout;
348d480f
PA
10710
10711 switch (b->type)
10712 {
10713 case bp_watchpoint:
10714 ui_out_text (uiout, "Watchpoint ");
10715 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10716 break;
10717 case bp_hardware_watchpoint:
10718 ui_out_text (uiout, "Hardware watchpoint ");
10719 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10720 break;
10721 case bp_read_watchpoint:
10722 ui_out_text (uiout, "Hardware read watchpoint ");
10723 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
10724 break;
10725 case bp_access_watchpoint:
10726 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
10727 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
10728 break;
10729 default:
10730 internal_error (__FILE__, __LINE__,
10731 _("Invalid hardware watchpoint type."));
10732 }
10733
10734 ui_out_field_int (uiout, "number", b->number);
10735 ui_out_text (uiout, ": ");
3a5c3e22 10736 ui_out_field_string (uiout, "exp", w->exp_string);
348d480f
PA
10737 do_cleanups (ui_out_chain);
10738}
10739
10740/* Implement the "print_recreate" breakpoint_ops method for
10741 watchpoints. */
10742
10743static void
10744print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10745{
3a5c3e22
PA
10746 struct watchpoint *w = (struct watchpoint *) b;
10747
348d480f
PA
10748 switch (b->type)
10749 {
10750 case bp_watchpoint:
10751 case bp_hardware_watchpoint:
10752 fprintf_unfiltered (fp, "watch");
10753 break;
10754 case bp_read_watchpoint:
10755 fprintf_unfiltered (fp, "rwatch");
10756 break;
10757 case bp_access_watchpoint:
10758 fprintf_unfiltered (fp, "awatch");
10759 break;
10760 default:
10761 internal_error (__FILE__, __LINE__,
10762 _("Invalid watchpoint type."));
10763 }
10764
3a5c3e22 10765 fprintf_unfiltered (fp, " %s", w->exp_string);
d9b3f62e 10766 print_recreate_thread (b, fp);
348d480f
PA
10767}
10768
427cd150
TT
10769/* Implement the "explains_signal" breakpoint_ops method for
10770 watchpoints. */
10771
47591c29 10772static int
427cd150
TT
10773explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10774{
10775 /* A software watchpoint cannot cause a signal other than
10776 GDB_SIGNAL_TRAP. */
10777 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
47591c29 10778 return 0;
427cd150 10779
47591c29 10780 return 1;
427cd150
TT
10781}
10782
348d480f
PA
10783/* The breakpoint_ops structure to be used in hardware watchpoints. */
10784
2060206e 10785static struct breakpoint_ops watchpoint_breakpoint_ops;
348d480f
PA
10786
10787/* Implement the "insert" breakpoint_ops method for
10788 masked hardware watchpoints. */
10789
10790static int
10791insert_masked_watchpoint (struct bp_location *bl)
10792{
3a5c3e22
PA
10793 struct watchpoint *w = (struct watchpoint *) bl->owner;
10794
10795 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10796 bl->watchpoint_type);
10797}
10798
10799/* Implement the "remove" breakpoint_ops method for
10800 masked hardware watchpoints. */
10801
10802static int
10803remove_masked_watchpoint (struct bp_location *bl)
10804{
3a5c3e22
PA
10805 struct watchpoint *w = (struct watchpoint *) bl->owner;
10806
10807 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
348d480f
PA
10808 bl->watchpoint_type);
10809}
10810
10811/* Implement the "resources_needed" breakpoint_ops method for
10812 masked hardware watchpoints. */
10813
10814static int
10815resources_needed_masked_watchpoint (const struct bp_location *bl)
10816{
3a5c3e22
PA
10817 struct watchpoint *w = (struct watchpoint *) bl->owner;
10818
10819 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
348d480f
PA
10820}
10821
10822/* Implement the "works_in_software_mode" breakpoint_ops method for
10823 masked hardware watchpoints. */
10824
10825static int
10826works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10827{
10828 return 0;
10829}
10830
10831/* Implement the "print_it" breakpoint_ops method for
10832 masked hardware watchpoints. */
10833
10834static enum print_stop_action
10835print_it_masked_watchpoint (bpstat bs)
10836{
10837 struct breakpoint *b = bs->breakpoint_at;
79a45e25 10838 struct ui_out *uiout = current_uiout;
348d480f
PA
10839
10840 /* Masked watchpoints have only one location. */
10841 gdb_assert (b->loc && b->loc->next == NULL);
10842
10843 switch (b->type)
10844 {
10845 case bp_hardware_watchpoint:
10846 annotate_watchpoint (b->number);
10847 if (ui_out_is_mi_like_p (uiout))
10848 ui_out_field_string
10849 (uiout, "reason",
10850 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10851 break;
10852
10853 case bp_read_watchpoint:
10854 if (ui_out_is_mi_like_p (uiout))
10855 ui_out_field_string
10856 (uiout, "reason",
10857 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10858 break;
10859
10860 case bp_access_watchpoint:
10861 if (ui_out_is_mi_like_p (uiout))
10862 ui_out_field_string
10863 (uiout, "reason",
10864 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10865 break;
10866 default:
10867 internal_error (__FILE__, __LINE__,
10868 _("Invalid hardware watchpoint type."));
10869 }
10870
10871 mention (b);
9c06b0b4
TJB
10872 ui_out_text (uiout, _("\n\
10873Check the underlying instruction at PC for the memory\n\
10874address and value which triggered this watchpoint.\n"));
10875 ui_out_text (uiout, "\n");
10876
10877 /* More than one watchpoint may have been triggered. */
10878 return PRINT_UNKNOWN;
10879}
10880
10881/* Implement the "print_one_detail" breakpoint_ops method for
10882 masked hardware watchpoints. */
10883
10884static void
10885print_one_detail_masked_watchpoint (const struct breakpoint *b,
10886 struct ui_out *uiout)
10887{
3a5c3e22
PA
10888 struct watchpoint *w = (struct watchpoint *) b;
10889
9c06b0b4
TJB
10890 /* Masked watchpoints have only one location. */
10891 gdb_assert (b->loc && b->loc->next == NULL);
10892
10893 ui_out_text (uiout, "\tmask ");
3a5c3e22 10894 ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask);
9c06b0b4
TJB
10895 ui_out_text (uiout, "\n");
10896}
10897
10898/* Implement the "print_mention" breakpoint_ops method for
10899 masked hardware watchpoints. */
10900
10901static void
10902print_mention_masked_watchpoint (struct breakpoint *b)
10903{
3a5c3e22 10904 struct watchpoint *w = (struct watchpoint *) b;
79a45e25 10905 struct ui_out *uiout = current_uiout;
9c06b0b4
TJB
10906 struct cleanup *ui_out_chain;
10907
10908 switch (b->type)
10909 {
10910 case bp_hardware_watchpoint:
10911 ui_out_text (uiout, "Masked hardware watchpoint ");
10912 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10913 break;
10914 case bp_read_watchpoint:
10915 ui_out_text (uiout, "Masked hardware read watchpoint ");
10916 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
10917 break;
10918 case bp_access_watchpoint:
10919 ui_out_text (uiout, "Masked hardware access (read/write) watchpoint ");
10920 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
10921 break;
10922 default:
10923 internal_error (__FILE__, __LINE__,
10924 _("Invalid hardware watchpoint type."));
10925 }
10926
10927 ui_out_field_int (uiout, "number", b->number);
10928 ui_out_text (uiout, ": ");
3a5c3e22 10929 ui_out_field_string (uiout, "exp", w->exp_string);
9c06b0b4
TJB
10930 do_cleanups (ui_out_chain);
10931}
10932
10933/* Implement the "print_recreate" breakpoint_ops method for
10934 masked hardware watchpoints. */
10935
10936static void
10937print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10938{
3a5c3e22 10939 struct watchpoint *w = (struct watchpoint *) b;
9c06b0b4
TJB
10940 char tmp[40];
10941
10942 switch (b->type)
10943 {
10944 case bp_hardware_watchpoint:
10945 fprintf_unfiltered (fp, "watch");
10946 break;
10947 case bp_read_watchpoint:
10948 fprintf_unfiltered (fp, "rwatch");
10949 break;
10950 case bp_access_watchpoint:
10951 fprintf_unfiltered (fp, "awatch");
10952 break;
10953 default:
10954 internal_error (__FILE__, __LINE__,
10955 _("Invalid hardware watchpoint type."));
10956 }
10957
3a5c3e22
PA
10958 sprintf_vma (tmp, w->hw_wp_mask);
10959 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
d9b3f62e 10960 print_recreate_thread (b, fp);
9c06b0b4
TJB
10961}
10962
10963/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10964
2060206e 10965static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
9c06b0b4
TJB
10966
10967/* Tell whether the given watchpoint is a masked hardware watchpoint. */
10968
10969static int
10970is_masked_watchpoint (const struct breakpoint *b)
10971{
10972 return b->ops == &masked_watchpoint_breakpoint_ops;
10973}
10974
53a5351d
JM
10975/* accessflag: hw_write: watch write,
10976 hw_read: watch read,
10977 hw_access: watch access (read or write) */
c906108c 10978static void
bbc13ae3 10979watch_command_1 (const char *arg, int accessflag, int from_tty,
84f4c1fe 10980 int just_location, int internal)
c906108c 10981{
a9634178 10982 volatile struct gdb_exception e;
d983da9c 10983 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c 10984 struct expression *exp;
270140bd 10985 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
a1442452 10986 struct value *val, *mark, *result;
c906108c 10987 struct frame_info *frame;
bbc13ae3
KS
10988 const char *exp_start = NULL;
10989 const char *exp_end = NULL;
10990 const char *tok, *end_tok;
9c06b0b4 10991 int toklen = -1;
bbc13ae3
KS
10992 const char *cond_start = NULL;
10993 const char *cond_end = NULL;
c906108c 10994 enum bptype bp_type;
37e4754d 10995 int thread = -1;
0cf6dd15 10996 int pc = 0;
9c06b0b4
TJB
10997 /* Flag to indicate whether we are going to use masks for
10998 the hardware watchpoint. */
10999 int use_mask = 0;
11000 CORE_ADDR mask = 0;
3a5c3e22 11001 struct watchpoint *w;
bbc13ae3
KS
11002 char *expression;
11003 struct cleanup *back_to;
c906108c 11004
37e4754d
LM
11005 /* Make sure that we actually have parameters to parse. */
11006 if (arg != NULL && arg[0] != '\0')
11007 {
bbc13ae3
KS
11008 const char *value_start;
11009
11010 exp_end = arg + strlen (arg);
37e4754d 11011
9c06b0b4
TJB
11012 /* Look for "parameter value" pairs at the end
11013 of the arguments string. */
bbc13ae3 11014 for (tok = exp_end - 1; tok > arg; tok--)
9c06b0b4
TJB
11015 {
11016 /* Skip whitespace at the end of the argument list. */
11017 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11018 tok--;
11019
11020 /* Find the beginning of the last token.
11021 This is the value of the parameter. */
11022 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11023 tok--;
11024 value_start = tok + 1;
11025
11026 /* Skip whitespace. */
11027 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11028 tok--;
11029
11030 end_tok = tok;
11031
11032 /* Find the beginning of the second to last token.
11033 This is the parameter itself. */
11034 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11035 tok--;
11036 tok++;
11037 toklen = end_tok - tok + 1;
11038
11039 if (toklen == 6 && !strncmp (tok, "thread", 6))
11040 {
11041 /* At this point we've found a "thread" token, which means
11042 the user is trying to set a watchpoint that triggers
11043 only in a specific thread. */
11044 char *endp;
37e4754d 11045
9c06b0b4
TJB
11046 if (thread != -1)
11047 error(_("You can specify only one thread."));
37e4754d 11048
9c06b0b4
TJB
11049 /* Extract the thread ID from the next token. */
11050 thread = strtol (value_start, &endp, 0);
37e4754d 11051
9c06b0b4
TJB
11052 /* Check if the user provided a valid numeric value for the
11053 thread ID. */
11054 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
11055 error (_("Invalid thread ID specification %s."), value_start);
11056
11057 /* Check if the thread actually exists. */
11058 if (!valid_thread_id (thread))
af4908ba 11059 invalid_thread_id_error (thread);
9c06b0b4
TJB
11060 }
11061 else if (toklen == 4 && !strncmp (tok, "mask", 4))
11062 {
11063 /* We've found a "mask" token, which means the user wants to
11064 create a hardware watchpoint that is going to have the mask
11065 facility. */
11066 struct value *mask_value, *mark;
37e4754d 11067
9c06b0b4
TJB
11068 if (use_mask)
11069 error(_("You can specify only one mask."));
37e4754d 11070
9c06b0b4 11071 use_mask = just_location = 1;
37e4754d 11072
9c06b0b4
TJB
11073 mark = value_mark ();
11074 mask_value = parse_to_comma_and_eval (&value_start);
11075 mask = value_as_address (mask_value);
11076 value_free_to_mark (mark);
11077 }
11078 else
11079 /* We didn't recognize what we found. We should stop here. */
11080 break;
37e4754d 11081
9c06b0b4
TJB
11082 /* Truncate the string and get rid of the "parameter value" pair before
11083 the arguments string is parsed by the parse_exp_1 function. */
bbc13ae3 11084 exp_end = tok;
9c06b0b4 11085 }
37e4754d 11086 }
bbc13ae3
KS
11087 else
11088 exp_end = arg;
37e4754d 11089
bbc13ae3
KS
11090 /* Parse the rest of the arguments. From here on out, everything
11091 is in terms of a newly allocated string instead of the original
11092 ARG. */
c906108c 11093 innermost_block = NULL;
bbc13ae3
KS
11094 expression = savestring (arg, exp_end - arg);
11095 back_to = make_cleanup (xfree, expression);
11096 exp_start = arg = expression;
1bb9788d 11097 exp = parse_exp_1 (&arg, 0, 0, 0);
c906108c 11098 exp_end = arg;
fa8a61dc
TT
11099 /* Remove trailing whitespace from the expression before saving it.
11100 This makes the eventual display of the expression string a bit
11101 prettier. */
11102 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
11103 --exp_end;
11104
65d79d4b
SDJ
11105 /* Checking if the expression is not constant. */
11106 if (watchpoint_exp_is_const (exp))
11107 {
11108 int len;
11109
11110 len = exp_end - exp_start;
11111 while (len > 0 && isspace (exp_start[len - 1]))
11112 len--;
11113 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
11114 }
11115
c906108c
SS
11116 exp_valid_block = innermost_block;
11117 mark = value_mark ();
3a1115a0 11118 fetch_subexp_value (exp, &pc, &val, &result, NULL, just_location);
06a64a0b
TT
11119
11120 if (just_location)
11121 {
9c06b0b4
TJB
11122 int ret;
11123
06a64a0b 11124 exp_valid_block = NULL;
a1442452 11125 val = value_addr (result);
06a64a0b
TT
11126 release_value (val);
11127 value_free_to_mark (mark);
9c06b0b4
TJB
11128
11129 if (use_mask)
11130 {
11131 ret = target_masked_watch_num_registers (value_as_address (val),
11132 mask);
11133 if (ret == -1)
11134 error (_("This target does not support masked watchpoints."));
11135 else if (ret == -2)
11136 error (_("Invalid mask or memory region."));
11137 }
06a64a0b
TT
11138 }
11139 else if (val != NULL)
fa4727a6 11140 release_value (val);
c906108c 11141
bbc13ae3
KS
11142 tok = skip_spaces_const (arg);
11143 end_tok = skip_to_space_const (tok);
c906108c
SS
11144
11145 toklen = end_tok - tok;
11146 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
11147 {
2d134ed3
PA
11148 struct expression *cond;
11149
60e1c644 11150 innermost_block = NULL;
c906108c 11151 tok = cond_start = end_tok + 1;
1bb9788d 11152 cond = parse_exp_1 (&tok, 0, 0, 0);
60e1c644
PA
11153
11154 /* The watchpoint expression may not be local, but the condition
11155 may still be. E.g.: `watch global if local > 0'. */
11156 cond_exp_valid_block = innermost_block;
11157
2d134ed3 11158 xfree (cond);
c906108c
SS
11159 cond_end = tok;
11160 }
11161 if (*tok)
8a3fe4f8 11162 error (_("Junk at end of command."));
c906108c 11163
d983da9c 11164 frame = block_innermost_frame (exp_valid_block);
d983da9c
DJ
11165
11166 /* If the expression is "local", then set up a "watchpoint scope"
11167 breakpoint at the point where we've left the scope of the watchpoint
11168 expression. Create the scope breakpoint before the watchpoint, so
11169 that we will encounter it first in bpstat_stop_status. */
60e1c644 11170 if (exp_valid_block && frame)
d983da9c 11171 {
edb3359d
DJ
11172 if (frame_id_p (frame_unwind_caller_id (frame)))
11173 {
11174 scope_breakpoint
a6d9a66e
UW
11175 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
11176 frame_unwind_caller_pc (frame),
06edf0c0
PA
11177 bp_watchpoint_scope,
11178 &momentary_breakpoint_ops);
d983da9c 11179
edb3359d 11180 scope_breakpoint->enable_state = bp_enabled;
d983da9c 11181
edb3359d
DJ
11182 /* Automatically delete the breakpoint when it hits. */
11183 scope_breakpoint->disposition = disp_del;
d983da9c 11184
edb3359d
DJ
11185 /* Only break in the proper frame (help with recursion). */
11186 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
d983da9c 11187
edb3359d 11188 /* Set the address at which we will stop. */
a6d9a66e
UW
11189 scope_breakpoint->loc->gdbarch
11190 = frame_unwind_caller_arch (frame);
edb3359d
DJ
11191 scope_breakpoint->loc->requested_address
11192 = frame_unwind_caller_pc (frame);
11193 scope_breakpoint->loc->address
a6d9a66e
UW
11194 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
11195 scope_breakpoint->loc->requested_address,
edb3359d
DJ
11196 scope_breakpoint->type);
11197 }
d983da9c
DJ
11198 }
11199
e8369a73
AB
11200 /* Now set up the breakpoint. We create all watchpoints as hardware
11201 watchpoints here even if hardware watchpoints are turned off, a call
11202 to update_watchpoint later in this function will cause the type to
11203 drop back to bp_watchpoint (software watchpoint) if required. */
11204
11205 if (accessflag == hw_read)
11206 bp_type = bp_read_watchpoint;
11207 else if (accessflag == hw_access)
11208 bp_type = bp_access_watchpoint;
11209 else
11210 bp_type = bp_hardware_watchpoint;
3a5c3e22
PA
11211
11212 w = XCNEW (struct watchpoint);
11213 b = &w->base;
348d480f 11214 if (use_mask)
3a5c3e22
PA
11215 init_raw_breakpoint_without_location (b, NULL, bp_type,
11216 &masked_watchpoint_breakpoint_ops);
348d480f 11217 else
3a5c3e22
PA
11218 init_raw_breakpoint_without_location (b, NULL, bp_type,
11219 &watchpoint_breakpoint_ops);
37e4754d 11220 b->thread = thread;
b5de0fa7 11221 b->disposition = disp_donttouch;
348d480f 11222 b->pspace = current_program_space;
3a5c3e22
PA
11223 w->exp = exp;
11224 w->exp_valid_block = exp_valid_block;
11225 w->cond_exp_valid_block = cond_exp_valid_block;
06a64a0b
TT
11226 if (just_location)
11227 {
11228 struct type *t = value_type (val);
11229 CORE_ADDR addr = value_as_address (val);
11230 char *name;
11231
11232 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
11233 name = type_to_string (t);
11234
3a5c3e22 11235 w->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
d63d0675 11236 core_addr_to_string (addr));
06a64a0b
TT
11237 xfree (name);
11238
3a5c3e22 11239 w->exp_string = xstrprintf ("-location %.*s",
d63d0675
JK
11240 (int) (exp_end - exp_start), exp_start);
11241
06a64a0b
TT
11242 /* The above expression is in C. */
11243 b->language = language_c;
11244 }
11245 else
3a5c3e22 11246 w->exp_string = savestring (exp_start, exp_end - exp_start);
9c06b0b4
TJB
11247
11248 if (use_mask)
11249 {
3a5c3e22 11250 w->hw_wp_mask = mask;
9c06b0b4
TJB
11251 }
11252 else
11253 {
3a5c3e22
PA
11254 w->val = val;
11255 w->val_valid = 1;
9c06b0b4 11256 }
77b06cd7 11257
c906108c
SS
11258 if (cond_start)
11259 b->cond_string = savestring (cond_start, cond_end - cond_start);
11260 else
11261 b->cond_string = 0;
c5aa993b 11262
c906108c 11263 if (frame)
f6bc2008 11264 {
3a5c3e22
PA
11265 w->watchpoint_frame = get_frame_id (frame);
11266 w->watchpoint_thread = inferior_ptid;
f6bc2008 11267 }
c906108c 11268 else
f6bc2008 11269 {
3a5c3e22
PA
11270 w->watchpoint_frame = null_frame_id;
11271 w->watchpoint_thread = null_ptid;
f6bc2008 11272 }
c906108c 11273
d983da9c 11274 if (scope_breakpoint != NULL)
c906108c 11275 {
d983da9c
DJ
11276 /* The scope breakpoint is related to the watchpoint. We will
11277 need to act on them together. */
11278 b->related_breakpoint = scope_breakpoint;
11279 scope_breakpoint->related_breakpoint = b;
c906108c 11280 }
d983da9c 11281
06a64a0b
TT
11282 if (!just_location)
11283 value_free_to_mark (mark);
2d134ed3 11284
a9634178
TJB
11285 TRY_CATCH (e, RETURN_MASK_ALL)
11286 {
11287 /* Finally update the new watchpoint. This creates the locations
11288 that should be inserted. */
3a5c3e22 11289 update_watchpoint (w, 1);
a9634178
TJB
11290 }
11291 if (e.reason < 0)
11292 {
11293 delete_breakpoint (b);
11294 throw_exception (e);
11295 }
11296
3ea46bff 11297 install_breakpoint (internal, b, 1);
bbc13ae3 11298 do_cleanups (back_to);
c906108c
SS
11299}
11300
e09342b5 11301/* Return count of debug registers needed to watch the given expression.
e09342b5 11302 If the watchpoint cannot be handled in hardware return zero. */
c906108c 11303
c906108c 11304static int
a9634178 11305can_use_hardware_watchpoint (struct value *v)
c906108c
SS
11306{
11307 int found_memory_cnt = 0;
2e70b7b9 11308 struct value *head = v;
c906108c
SS
11309
11310 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 11311 if (!can_use_hw_watchpoints)
c906108c 11312 return 0;
c5aa993b 11313
5c44784c
JM
11314 /* Make sure that the value of the expression depends only upon
11315 memory contents, and values computed from them within GDB. If we
11316 find any register references or function calls, we can't use a
11317 hardware watchpoint.
11318
11319 The idea here is that evaluating an expression generates a series
11320 of values, one holding the value of every subexpression. (The
11321 expression a*b+c has five subexpressions: a, b, a*b, c, and
11322 a*b+c.) GDB's values hold almost enough information to establish
11323 the criteria given above --- they identify memory lvalues,
11324 register lvalues, computed values, etcetera. So we can evaluate
11325 the expression, and then scan the chain of values that leaves
11326 behind to decide whether we can detect any possible change to the
11327 expression's final value using only hardware watchpoints.
11328
11329 However, I don't think that the values returned by inferior
11330 function calls are special in any way. So this function may not
11331 notice that an expression involving an inferior function call
11332 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 11333 for (; v; v = value_next (v))
c906108c 11334 {
5c44784c 11335 if (VALUE_LVAL (v) == lval_memory)
c906108c 11336 {
8464be76
DJ
11337 if (v != head && value_lazy (v))
11338 /* A lazy memory lvalue in the chain is one that GDB never
11339 needed to fetch; we either just used its address (e.g.,
11340 `a' in `a.b') or we never needed it at all (e.g., `a'
11341 in `a,b'). This doesn't apply to HEAD; if that is
11342 lazy then it was not readable, but watch it anyway. */
5c44784c 11343 ;
53a5351d 11344 else
5c44784c
JM
11345 {
11346 /* Ahh, memory we actually used! Check if we can cover
11347 it with hardware watchpoints. */
df407dfe 11348 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
11349
11350 /* We only watch structs and arrays if user asked for it
11351 explicitly, never if they just happen to appear in a
11352 middle of some value chain. */
11353 if (v == head
11354 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
11355 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
11356 {
42ae5230 11357 CORE_ADDR vaddr = value_address (v);
e09342b5
TJB
11358 int len;
11359 int num_regs;
11360
a9634178 11361 len = (target_exact_watchpoints
e09342b5
TJB
11362 && is_scalar_type_recursive (vtype))?
11363 1 : TYPE_LENGTH (value_type (v));
2e70b7b9 11364
e09342b5
TJB
11365 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
11366 if (!num_regs)
2e70b7b9
MS
11367 return 0;
11368 else
e09342b5 11369 found_memory_cnt += num_regs;
2e70b7b9 11370 }
5c44784c 11371 }
c5aa993b 11372 }
5086187c
AC
11373 else if (VALUE_LVAL (v) != not_lval
11374 && deprecated_value_modifiable (v) == 0)
38b6c3b3 11375 return 0; /* These are values from the history (e.g., $1). */
5086187c 11376 else if (VALUE_LVAL (v) == lval_register)
38b6c3b3 11377 return 0; /* Cannot watch a register with a HW watchpoint. */
c906108c
SS
11378 }
11379
11380 /* The expression itself looks suitable for using a hardware
11381 watchpoint, but give the target machine a chance to reject it. */
11382 return found_memory_cnt;
11383}
11384
8b93c638 11385void
84f4c1fe 11386watch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11387{
84f4c1fe 11388 watch_command_1 (arg, hw_write, from_tty, 0, internal);
06a64a0b
TT
11389}
11390
06a64a0b
TT
11391/* A helper function that looks for the "-location" argument and then
11392 calls watch_command_1. */
11393
11394static void
11395watch_maybe_just_location (char *arg, int accessflag, int from_tty)
11396{
11397 int just_location = 0;
11398
11399 if (arg
11400 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11401 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11402 {
e9cafbcc 11403 arg = skip_spaces (arg);
06a64a0b
TT
11404 just_location = 1;
11405 }
11406
84f4c1fe 11407 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
8b93c638 11408}
8926118c 11409
c5aa993b 11410static void
fba45db2 11411watch_command (char *arg, int from_tty)
c906108c 11412{
06a64a0b 11413 watch_maybe_just_location (arg, hw_write, from_tty);
c906108c
SS
11414}
11415
8b93c638 11416void
84f4c1fe 11417rwatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11418{
84f4c1fe 11419 watch_command_1 (arg, hw_read, from_tty, 0, internal);
8b93c638 11420}
8926118c 11421
c5aa993b 11422static void
fba45db2 11423rwatch_command (char *arg, int from_tty)
c906108c 11424{
06a64a0b 11425 watch_maybe_just_location (arg, hw_read, from_tty);
c906108c
SS
11426}
11427
8b93c638 11428void
84f4c1fe 11429awatch_command_wrapper (char *arg, int from_tty, int internal)
8b93c638 11430{
84f4c1fe 11431 watch_command_1 (arg, hw_access, from_tty, 0, internal);
8b93c638 11432}
8926118c 11433
c5aa993b 11434static void
fba45db2 11435awatch_command (char *arg, int from_tty)
c906108c 11436{
06a64a0b 11437 watch_maybe_just_location (arg, hw_access, from_tty);
c906108c 11438}
c906108c 11439\f
c5aa993b 11440
43ff13b4 11441/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
11442 because it uses the mechanisms of breakpoints. */
11443
bfec99b2
PA
11444struct until_break_command_continuation_args
11445{
11446 struct breakpoint *breakpoint;
11447 struct breakpoint *breakpoint2;
186c406b 11448 int thread_num;
bfec99b2
PA
11449};
11450
43ff13b4 11451/* This function is called by fetch_inferior_event via the
4a64f543 11452 cmd_continuation pointer, to complete the until command. It takes
43ff13b4 11453 care of cleaning up the temporary breakpoints set up by the until
4a64f543 11454 command. */
c2c6d25f 11455static void
fa4cd53f 11456until_break_command_continuation (void *arg, int err)
43ff13b4 11457{
bfec99b2
PA
11458 struct until_break_command_continuation_args *a = arg;
11459
11460 delete_breakpoint (a->breakpoint);
11461 if (a->breakpoint2)
11462 delete_breakpoint (a->breakpoint2);
186c406b 11463 delete_longjmp_breakpoint (a->thread_num);
43ff13b4
JM
11464}
11465
c906108c 11466void
ae66c1fc 11467until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
11468{
11469 struct symtabs_and_lines sals;
11470 struct symtab_and_line sal;
8556afb4
PA
11471 struct frame_info *frame;
11472 struct gdbarch *frame_gdbarch;
11473 struct frame_id stack_frame_id;
11474 struct frame_id caller_frame_id;
c906108c 11475 struct breakpoint *breakpoint;
f107f563 11476 struct breakpoint *breakpoint2 = NULL;
c906108c 11477 struct cleanup *old_chain;
186c406b
TT
11478 int thread;
11479 struct thread_info *tp;
c906108c
SS
11480
11481 clear_proceed_status ();
11482
11483 /* Set a breakpoint where the user wants it and at return from
4a64f543 11484 this function. */
c5aa993b 11485
1bfeeb0f 11486 if (last_displayed_sal_is_valid ())
f8eba3c6 11487 sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE,
1bfeeb0f 11488 get_last_displayed_symtab (),
f8eba3c6 11489 get_last_displayed_line ());
c906108c 11490 else
f8eba3c6
TT
11491 sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE,
11492 (struct symtab *) NULL, 0);
c5aa993b 11493
c906108c 11494 if (sals.nelts != 1)
8a3fe4f8 11495 error (_("Couldn't get information on specified line."));
c5aa993b 11496
c906108c 11497 sal = sals.sals[0];
4a64f543 11498 xfree (sals.sals); /* malloc'd, so freed. */
c5aa993b 11499
c906108c 11500 if (*arg)
8a3fe4f8 11501 error (_("Junk at end of arguments."));
c5aa993b 11502
c906108c 11503 resolve_sal_pc (&sal);
c5aa993b 11504
186c406b
TT
11505 tp = inferior_thread ();
11506 thread = tp->num;
11507
883bc8d1
PA
11508 old_chain = make_cleanup (null_cleanup, NULL);
11509
8556afb4
PA
11510 /* Note linespec handling above invalidates the frame chain.
11511 Installing a breakpoint also invalidates the frame chain (as it
11512 may need to switch threads), so do any frame handling before
11513 that. */
11514
11515 frame = get_selected_frame (NULL);
11516 frame_gdbarch = get_frame_arch (frame);
11517 stack_frame_id = get_stack_frame_id (frame);
11518 caller_frame_id = frame_unwind_caller_id (frame);
883bc8d1 11519
ae66c1fc
EZ
11520 /* Keep within the current frame, or in frames called by the current
11521 one. */
edb3359d 11522
883bc8d1 11523 if (frame_id_p (caller_frame_id))
c906108c 11524 {
883bc8d1
PA
11525 struct symtab_and_line sal2;
11526
11527 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11528 sal2.pc = frame_unwind_caller_pc (frame);
a6d9a66e 11529 breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame),
883bc8d1
PA
11530 sal2,
11531 caller_frame_id,
f107f563
VP
11532 bp_until);
11533 make_cleanup_delete_breakpoint (breakpoint2);
186c406b 11534
883bc8d1 11535 set_longjmp_breakpoint (tp, caller_frame_id);
186c406b 11536 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c906108c 11537 }
c5aa993b 11538
c70a6932
JK
11539 /* set_momentary_breakpoint could invalidate FRAME. */
11540 frame = NULL;
11541
883bc8d1
PA
11542 if (anywhere)
11543 /* If the user told us to continue until a specified location,
11544 we don't specify a frame at which we need to stop. */
11545 breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11546 null_frame_id, bp_until);
11547 else
11548 /* Otherwise, specify the selected frame, because we want to stop
11549 only at the very same frame. */
11550 breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11551 stack_frame_id, bp_until);
11552 make_cleanup_delete_breakpoint (breakpoint);
11553
a493e3e2 11554 proceed (-1, GDB_SIGNAL_DEFAULT, 0);
f107f563 11555
4a64f543
MS
11556 /* If we are running asynchronously, and proceed call above has
11557 actually managed to start the target, arrange for breakpoints to
11558 be deleted when the target stops. Otherwise, we're already
11559 stopped and delete breakpoints via cleanup chain. */
f107f563 11560
8ea051c5 11561 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 11562 {
bfec99b2
PA
11563 struct until_break_command_continuation_args *args;
11564 args = xmalloc (sizeof (*args));
f107f563 11565
bfec99b2
PA
11566 args->breakpoint = breakpoint;
11567 args->breakpoint2 = breakpoint2;
186c406b 11568 args->thread_num = thread;
f107f563
VP
11569
11570 discard_cleanups (old_chain);
95e54da7
PA
11571 add_continuation (inferior_thread (),
11572 until_break_command_continuation, args,
604ead4a 11573 xfree);
f107f563
VP
11574 }
11575 else
c5aa993b 11576 do_cleanups (old_chain);
c906108c 11577}
ae66c1fc 11578
c906108c
SS
11579/* This function attempts to parse an optional "if <cond>" clause
11580 from the arg string. If one is not found, it returns NULL.
c5aa993b 11581
c906108c
SS
11582 Else, it returns a pointer to the condition string. (It does not
11583 attempt to evaluate the string against a particular block.) And,
11584 it updates arg to point to the first character following the parsed
4a64f543 11585 if clause in the arg string. */
53a5351d 11586
916703c0 11587char *
fba45db2 11588ep_parse_optional_if_clause (char **arg)
c906108c 11589{
c5aa993b
JM
11590 char *cond_string;
11591
11592 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 11593 return NULL;
c5aa993b 11594
4a64f543 11595 /* Skip the "if" keyword. */
c906108c 11596 (*arg) += 2;
c5aa993b 11597
c906108c 11598 /* Skip any extra leading whitespace, and record the start of the
4a64f543 11599 condition string. */
e9cafbcc 11600 *arg = skip_spaces (*arg);
c906108c 11601 cond_string = *arg;
c5aa993b 11602
4a64f543
MS
11603 /* Assume that the condition occupies the remainder of the arg
11604 string. */
c906108c 11605 (*arg) += strlen (cond_string);
c5aa993b 11606
c906108c
SS
11607 return cond_string;
11608}
c5aa993b 11609
c906108c
SS
11610/* Commands to deal with catching events, such as signals, exceptions,
11611 process start/exit, etc. */
c5aa993b
JM
11612
11613typedef enum
11614{
44feb3ce
TT
11615 catch_fork_temporary, catch_vfork_temporary,
11616 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
11617}
11618catch_fork_kind;
11619
c906108c 11620static void
cc59ec59
MS
11621catch_fork_command_1 (char *arg, int from_tty,
11622 struct cmd_list_element *command)
c906108c 11623{
a6d9a66e 11624 struct gdbarch *gdbarch = get_current_arch ();
c5aa993b 11625 char *cond_string = NULL;
44feb3ce
TT
11626 catch_fork_kind fork_kind;
11627 int tempflag;
11628
11629 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11630 tempflag = (fork_kind == catch_fork_temporary
11631 || fork_kind == catch_vfork_temporary);
c5aa993b 11632
44feb3ce
TT
11633 if (!arg)
11634 arg = "";
e9cafbcc 11635 arg = skip_spaces (arg);
c5aa993b 11636
c906108c 11637 /* The allowed syntax is:
c5aa993b
JM
11638 catch [v]fork
11639 catch [v]fork if <cond>
11640
4a64f543 11641 First, check if there's an if clause. */
c906108c 11642 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 11643
c906108c 11644 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11645 error (_("Junk at end of arguments."));
c5aa993b 11646
c906108c 11647 /* If this target supports it, create a fork or vfork catchpoint
4a64f543 11648 and enable reporting of such events. */
c5aa993b
JM
11649 switch (fork_kind)
11650 {
44feb3ce
TT
11651 case catch_fork_temporary:
11652 case catch_fork_permanent:
a6d9a66e 11653 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11654 &catch_fork_breakpoint_ops);
c906108c 11655 break;
44feb3ce
TT
11656 case catch_vfork_temporary:
11657 case catch_vfork_permanent:
a6d9a66e 11658 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
ce78b96d 11659 &catch_vfork_breakpoint_ops);
c906108c 11660 break;
c5aa993b 11661 default:
8a3fe4f8 11662 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 11663 break;
c5aa993b 11664 }
c906108c
SS
11665}
11666
11667static void
cc59ec59
MS
11668catch_exec_command_1 (char *arg, int from_tty,
11669 struct cmd_list_element *command)
c906108c 11670{
b4d90040 11671 struct exec_catchpoint *c;
a6d9a66e 11672 struct gdbarch *gdbarch = get_current_arch ();
44feb3ce 11673 int tempflag;
c5aa993b 11674 char *cond_string = NULL;
c906108c 11675
44feb3ce
TT
11676 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11677
11678 if (!arg)
11679 arg = "";
e9cafbcc 11680 arg = skip_spaces (arg);
c906108c
SS
11681
11682 /* The allowed syntax is:
c5aa993b
JM
11683 catch exec
11684 catch exec if <cond>
c906108c 11685
4a64f543 11686 First, check if there's an if clause. */
c906108c
SS
11687 cond_string = ep_parse_optional_if_clause (&arg);
11688
11689 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 11690 error (_("Junk at end of arguments."));
c906108c 11691
b4d90040
PA
11692 c = XNEW (struct exec_catchpoint);
11693 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
11694 &catch_exec_breakpoint_ops);
11695 c->exec_pathname = NULL;
11696
3ea46bff 11697 install_breakpoint (0, &c->base, 1);
c906108c 11698}
c5aa993b 11699
9ac4176b 11700void
28010a5d
PA
11701init_ada_exception_breakpoint (struct breakpoint *b,
11702 struct gdbarch *gdbarch,
11703 struct symtab_and_line sal,
11704 char *addr_string,
c0a91b2b 11705 const struct breakpoint_ops *ops,
28010a5d 11706 int tempflag,
349774ef 11707 int enabled,
28010a5d 11708 int from_tty)
f7f9143b 11709{
f7f9143b
JB
11710 if (from_tty)
11711 {
5af949e3
UW
11712 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11713 if (!loc_gdbarch)
11714 loc_gdbarch = gdbarch;
11715
6c95b8df
PA
11716 describe_other_breakpoints (loc_gdbarch,
11717 sal.pspace, sal.pc, sal.section, -1);
f7f9143b
JB
11718 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11719 version for exception catchpoints, because two catchpoints
11720 used for different exception names will use the same address.
11721 In this case, a "breakpoint ... also set at..." warning is
4a64f543 11722 unproductive. Besides, the warning phrasing is also a bit
e5dd4106 11723 inappropriate, we should use the word catchpoint, and tell
f7f9143b
JB
11724 the user what type of catchpoint it is. The above is good
11725 enough for now, though. */
11726 }
11727
28010a5d 11728 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
f7f9143b 11729
349774ef 11730 b->enable_state = enabled ? bp_enabled : bp_disabled;
f7f9143b 11731 b->disposition = tempflag ? disp_del : disp_donttouch;
f7f9143b
JB
11732 b->addr_string = addr_string;
11733 b->language = language_ada;
f7f9143b
JB
11734}
11735
a96d9b2e
SDJ
11736/* Splits the argument using space as delimiter. Returns an xmalloc'd
11737 filter list, or NULL if no filtering is required. */
11738static VEC(int) *
11739catch_syscall_split_args (char *arg)
11740{
11741 VEC(int) *result = NULL;
29d0bb3d 11742 struct cleanup *cleanup = make_cleanup (VEC_cleanup (int), &result);
a96d9b2e
SDJ
11743
11744 while (*arg != '\0')
11745 {
11746 int i, syscall_number;
11747 char *endptr;
11748 char cur_name[128];
11749 struct syscall s;
11750
11751 /* Skip whitespace. */
529480d0 11752 arg = skip_spaces (arg);
a96d9b2e
SDJ
11753
11754 for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i)
11755 cur_name[i] = arg[i];
11756 cur_name[i] = '\0';
11757 arg += i;
11758
11759 /* Check if the user provided a syscall name or a number. */
11760 syscall_number = (int) strtol (cur_name, &endptr, 0);
11761 if (*endptr == '\0')
bccd0dd2 11762 get_syscall_by_number (syscall_number, &s);
a96d9b2e
SDJ
11763 else
11764 {
11765 /* We have a name. Let's check if it's valid and convert it
11766 to a number. */
11767 get_syscall_by_name (cur_name, &s);
11768
11769 if (s.number == UNKNOWN_SYSCALL)
4a64f543
MS
11770 /* Here we have to issue an error instead of a warning,
11771 because GDB cannot do anything useful if there's no
11772 syscall number to be caught. */
a96d9b2e
SDJ
11773 error (_("Unknown syscall name '%s'."), cur_name);
11774 }
11775
11776 /* Ok, it's valid. */
11777 VEC_safe_push (int, result, s.number);
11778 }
11779
11780 discard_cleanups (cleanup);
11781 return result;
11782}
11783
11784/* Implement the "catch syscall" command. */
11785
11786static void
cc59ec59
MS
11787catch_syscall_command_1 (char *arg, int from_tty,
11788 struct cmd_list_element *command)
a96d9b2e
SDJ
11789{
11790 int tempflag;
11791 VEC(int) *filter;
11792 struct syscall s;
11793 struct gdbarch *gdbarch = get_current_arch ();
11794
11795 /* Checking if the feature if supported. */
11796 if (gdbarch_get_syscall_number_p (gdbarch) == 0)
11797 error (_("The feature 'catch syscall' is not supported on \
ea666128 11798this architecture yet."));
a96d9b2e
SDJ
11799
11800 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11801
e9cafbcc 11802 arg = skip_spaces (arg);
a96d9b2e
SDJ
11803
11804 /* We need to do this first "dummy" translation in order
11805 to get the syscall XML file loaded or, most important,
11806 to display a warning to the user if there's no XML file
11807 for his/her architecture. */
11808 get_syscall_by_number (0, &s);
11809
11810 /* The allowed syntax is:
11811 catch syscall
11812 catch syscall <name | number> [<name | number> ... <name | number>]
11813
11814 Let's check if there's a syscall name. */
11815
11816 if (arg != NULL)
11817 filter = catch_syscall_split_args (arg);
11818 else
11819 filter = NULL;
11820
11821 create_syscall_event_catchpoint (tempflag, filter,
11822 &catch_syscall_breakpoint_ops);
11823}
11824
c906108c 11825static void
fba45db2 11826catch_command (char *arg, int from_tty)
c906108c 11827{
44feb3ce 11828 error (_("Catch requires an event name."));
c906108c
SS
11829}
11830\f
11831
11832static void
fba45db2 11833tcatch_command (char *arg, int from_tty)
c906108c 11834{
44feb3ce 11835 error (_("Catch requires an event name."));
c906108c
SS
11836}
11837
8a2c437b
TT
11838/* A qsort comparison function that sorts breakpoints in order. */
11839
11840static int
11841compare_breakpoints (const void *a, const void *b)
11842{
11843 const breakpoint_p *ba = a;
11844 uintptr_t ua = (uintptr_t) *ba;
11845 const breakpoint_p *bb = b;
11846 uintptr_t ub = (uintptr_t) *bb;
11847
11848 if ((*ba)->number < (*bb)->number)
11849 return -1;
11850 else if ((*ba)->number > (*bb)->number)
11851 return 1;
11852
11853 /* Now sort by address, in case we see, e..g, two breakpoints with
11854 the number 0. */
11855 if (ua < ub)
11856 return -1;
94b0e70d 11857 return ua > ub ? 1 : 0;
8a2c437b
TT
11858}
11859
80f8a6eb 11860/* Delete breakpoints by address or line. */
c906108c
SS
11861
11862static void
fba45db2 11863clear_command (char *arg, int from_tty)
c906108c 11864{
8a2c437b 11865 struct breakpoint *b, *prev;
d6e956e5
VP
11866 VEC(breakpoint_p) *found = 0;
11867 int ix;
c906108c
SS
11868 int default_match;
11869 struct symtabs_and_lines sals;
11870 struct symtab_and_line sal;
c906108c 11871 int i;
8a2c437b 11872 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
c906108c
SS
11873
11874 if (arg)
11875 {
39cf75f7
DE
11876 sals = decode_line_with_current_source (arg,
11877 (DECODE_LINE_FUNFIRSTLINE
11878 | DECODE_LINE_LIST_MODE));
cf4ded82 11879 make_cleanup (xfree, sals.sals);
c906108c
SS
11880 default_match = 0;
11881 }
11882 else
11883 {
c5aa993b 11884 sals.sals = (struct symtab_and_line *)
c906108c 11885 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 11886 make_cleanup (xfree, sals.sals);
4a64f543 11887 init_sal (&sal); /* Initialize to zeroes. */
1bfeeb0f
JL
11888
11889 /* Set sal's line, symtab, pc, and pspace to the values
11890 corresponding to the last call to print_frame_info. If the
11891 codepoint is not valid, this will set all the fields to 0. */
11892 get_last_displayed_sal (&sal);
c906108c 11893 if (sal.symtab == 0)
8a3fe4f8 11894 error (_("No source file specified."));
c906108c
SS
11895
11896 sals.sals[0] = sal;
11897 sals.nelts = 1;
11898
11899 default_match = 1;
11900 }
11901
4a64f543
MS
11902 /* We don't call resolve_sal_pc here. That's not as bad as it
11903 seems, because all existing breakpoints typically have both
11904 file/line and pc set. So, if clear is given file/line, we can
11905 match this to existing breakpoint without obtaining pc at all.
ed0616c6
VP
11906
11907 We only support clearing given the address explicitly
11908 present in breakpoint table. Say, we've set breakpoint
4a64f543 11909 at file:line. There were several PC values for that file:line,
ed0616c6 11910 due to optimization, all in one block.
4a64f543
MS
11911
11912 We've picked one PC value. If "clear" is issued with another
ed0616c6
VP
11913 PC corresponding to the same file:line, the breakpoint won't
11914 be cleared. We probably can still clear the breakpoint, but
11915 since the other PC value is never presented to user, user
11916 can only find it by guessing, and it does not seem important
11917 to support that. */
11918
4a64f543
MS
11919 /* For each line spec given, delete bps which correspond to it. Do
11920 it in two passes, solely to preserve the current behavior that
11921 from_tty is forced true if we delete more than one
11922 breakpoint. */
c906108c 11923
80f8a6eb 11924 found = NULL;
8a2c437b 11925 make_cleanup (VEC_cleanup (breakpoint_p), &found);
c906108c
SS
11926 for (i = 0; i < sals.nelts; i++)
11927 {
05cba821
JK
11928 const char *sal_fullname;
11929
c906108c 11930 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
11931 If line given (pc == 0), clear all bpts on specified line.
11932 If defaulting, clear all bpts on default line
c906108c 11933 or at default pc.
c5aa993b
JM
11934
11935 defaulting sal.pc != 0 tests to do
11936
11937 0 1 pc
11938 1 1 pc _and_ line
11939 0 0 line
11940 1 0 <can't happen> */
c906108c
SS
11941
11942 sal = sals.sals[i];
05cba821
JK
11943 sal_fullname = (sal.symtab == NULL
11944 ? NULL : symtab_to_fullname (sal.symtab));
c906108c 11945
4a64f543 11946 /* Find all matching breakpoints and add them to 'found'. */
d6e956e5 11947 ALL_BREAKPOINTS (b)
c5aa993b 11948 {
0d381245 11949 int match = 0;
4a64f543 11950 /* Are we going to delete b? */
cc60f2e3 11951 if (b->type != bp_none && !is_watchpoint (b))
0d381245
VP
11952 {
11953 struct bp_location *loc = b->loc;
11954 for (; loc; loc = loc->next)
11955 {
f8eba3c6
TT
11956 /* If the user specified file:line, don't allow a PC
11957 match. This matches historical gdb behavior. */
11958 int pc_match = (!sal.explicit_line
11959 && sal.pc
11960 && (loc->pspace == sal.pspace)
11961 && (loc->address == sal.pc)
11962 && (!section_is_overlay (loc->section)
11963 || loc->section == sal.section));
4aac40c8
TT
11964 int line_match = 0;
11965
11966 if ((default_match || sal.explicit_line)
2f202fde 11967 && loc->symtab != NULL
05cba821 11968 && sal_fullname != NULL
4aac40c8 11969 && sal.pspace == loc->pspace
05cba821
JK
11970 && loc->line_number == sal.line
11971 && filename_cmp (symtab_to_fullname (loc->symtab),
11972 sal_fullname) == 0)
11973 line_match = 1;
4aac40c8 11974
0d381245
VP
11975 if (pc_match || line_match)
11976 {
11977 match = 1;
11978 break;
11979 }
11980 }
11981 }
11982
11983 if (match)
d6e956e5 11984 VEC_safe_push(breakpoint_p, found, b);
c906108c 11985 }
80f8a6eb 11986 }
8a2c437b 11987
80f8a6eb 11988 /* Now go thru the 'found' chain and delete them. */
d6e956e5 11989 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
11990 {
11991 if (arg)
8a3fe4f8 11992 error (_("No breakpoint at %s."), arg);
80f8a6eb 11993 else
8a3fe4f8 11994 error (_("No breakpoint at this line."));
80f8a6eb 11995 }
c906108c 11996
8a2c437b
TT
11997 /* Remove duplicates from the vec. */
11998 qsort (VEC_address (breakpoint_p, found),
11999 VEC_length (breakpoint_p, found),
12000 sizeof (breakpoint_p),
12001 compare_breakpoints);
12002 prev = VEC_index (breakpoint_p, found, 0);
12003 for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix)
12004 {
12005 if (b == prev)
12006 {
12007 VEC_ordered_remove (breakpoint_p, found, ix);
12008 --ix;
12009 }
12010 }
12011
d6e956e5 12012 if (VEC_length(breakpoint_p, found) > 1)
4a64f543 12013 from_tty = 1; /* Always report if deleted more than one. */
80f8a6eb 12014 if (from_tty)
a3f17187 12015 {
d6e956e5 12016 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
12017 printf_unfiltered (_("Deleted breakpoint "));
12018 else
12019 printf_unfiltered (_("Deleted breakpoints "));
12020 }
d6e956e5
VP
12021
12022 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 12023 {
c5aa993b 12024 if (from_tty)
d6e956e5
VP
12025 printf_unfiltered ("%d ", b->number);
12026 delete_breakpoint (b);
c906108c 12027 }
80f8a6eb
MS
12028 if (from_tty)
12029 putchar_unfiltered ('\n');
8a2c437b
TT
12030
12031 do_cleanups (cleanups);
c906108c
SS
12032}
12033\f
12034/* Delete breakpoint in BS if they are `delete' breakpoints and
12035 all breakpoints that are marked for deletion, whether hit or not.
12036 This is called after any breakpoint is hit, or after errors. */
12037
12038void
fba45db2 12039breakpoint_auto_delete (bpstat bs)
c906108c 12040{
35df4500 12041 struct breakpoint *b, *b_tmp;
c906108c
SS
12042
12043 for (; bs; bs = bs->next)
f431efe5
PA
12044 if (bs->breakpoint_at
12045 && bs->breakpoint_at->disposition == disp_del
c906108c 12046 && bs->stop)
f431efe5 12047 delete_breakpoint (bs->breakpoint_at);
c906108c 12048
35df4500 12049 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 12050 {
b5de0fa7 12051 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
12052 delete_breakpoint (b);
12053 }
c906108c
SS
12054}
12055
4a64f543
MS
12056/* A comparison function for bp_location AP and BP being interfaced to
12057 qsort. Sort elements primarily by their ADDRESS (no matter what
12058 does breakpoint_address_is_meaningful say for its OWNER),
12059 secondarily by ordering first bp_permanent OWNERed elements and
12060 terciarily just ensuring the array is sorted stable way despite
e5dd4106 12061 qsort being an unstable algorithm. */
876fa593
JK
12062
12063static int
494cfb0f 12064bp_location_compare (const void *ap, const void *bp)
876fa593 12065{
494cfb0f
JK
12066 struct bp_location *a = *(void **) ap;
12067 struct bp_location *b = *(void **) bp;
2bdf28a0 12068 /* A and B come from existing breakpoints having non-NULL OWNER. */
876fa593
JK
12069 int a_perm = a->owner->enable_state == bp_permanent;
12070 int b_perm = b->owner->enable_state == bp_permanent;
12071
12072 if (a->address != b->address)
12073 return (a->address > b->address) - (a->address < b->address);
12074
dea2aa5f
LM
12075 /* Sort locations at the same address by their pspace number, keeping
12076 locations of the same inferior (in a multi-inferior environment)
12077 grouped. */
12078
12079 if (a->pspace->num != b->pspace->num)
12080 return ((a->pspace->num > b->pspace->num)
12081 - (a->pspace->num < b->pspace->num));
12082
876fa593
JK
12083 /* Sort permanent breakpoints first. */
12084 if (a_perm != b_perm)
12085 return (a_perm < b_perm) - (a_perm > b_perm);
12086
c56a97f9
JK
12087 /* Make the internal GDB representation stable across GDB runs
12088 where A and B memory inside GDB can differ. Breakpoint locations of
12089 the same type at the same address can be sorted in arbitrary order. */
876fa593
JK
12090
12091 if (a->owner->number != b->owner->number)
c56a97f9
JK
12092 return ((a->owner->number > b->owner->number)
12093 - (a->owner->number < b->owner->number));
876fa593
JK
12094
12095 return (a > b) - (a < b);
12096}
12097
876fa593 12098/* Set bp_location_placed_address_before_address_max and
4a64f543
MS
12099 bp_location_shadow_len_after_address_max according to the current
12100 content of the bp_location array. */
f7545552
TT
12101
12102static void
876fa593 12103bp_location_target_extensions_update (void)
f7545552 12104{
876fa593
JK
12105 struct bp_location *bl, **blp_tmp;
12106
12107 bp_location_placed_address_before_address_max = 0;
12108 bp_location_shadow_len_after_address_max = 0;
12109
12110 ALL_BP_LOCATIONS (bl, blp_tmp)
12111 {
12112 CORE_ADDR start, end, addr;
12113
12114 if (!bp_location_has_shadow (bl))
12115 continue;
12116
12117 start = bl->target_info.placed_address;
12118 end = start + bl->target_info.shadow_len;
12119
12120 gdb_assert (bl->address >= start);
12121 addr = bl->address - start;
12122 if (addr > bp_location_placed_address_before_address_max)
12123 bp_location_placed_address_before_address_max = addr;
12124
12125 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
12126
12127 gdb_assert (bl->address < end);
12128 addr = end - bl->address;
12129 if (addr > bp_location_shadow_len_after_address_max)
12130 bp_location_shadow_len_after_address_max = addr;
12131 }
f7545552
TT
12132}
12133
1e4d1764
YQ
12134/* Download tracepoint locations if they haven't been. */
12135
12136static void
12137download_tracepoint_locations (void)
12138{
7ed2c994 12139 struct breakpoint *b;
1e4d1764
YQ
12140 struct cleanup *old_chain;
12141
12142 if (!target_can_download_tracepoint ())
12143 return;
12144
12145 old_chain = save_current_space_and_thread ();
12146
7ed2c994 12147 ALL_TRACEPOINTS (b)
1e4d1764 12148 {
7ed2c994 12149 struct bp_location *bl;
1e4d1764 12150 struct tracepoint *t;
f2a8bc8a 12151 int bp_location_downloaded = 0;
1e4d1764 12152
7ed2c994 12153 if ((b->type == bp_fast_tracepoint
1e4d1764
YQ
12154 ? !may_insert_fast_tracepoints
12155 : !may_insert_tracepoints))
12156 continue;
12157
7ed2c994
YQ
12158 for (bl = b->loc; bl; bl = bl->next)
12159 {
12160 /* In tracepoint, locations are _never_ duplicated, so
12161 should_be_inserted is equivalent to
12162 unduplicated_should_be_inserted. */
12163 if (!should_be_inserted (bl) || bl->inserted)
12164 continue;
1e4d1764 12165
7ed2c994 12166 switch_to_program_space_and_thread (bl->pspace);
1e4d1764 12167
7ed2c994 12168 target_download_tracepoint (bl);
1e4d1764 12169
7ed2c994 12170 bl->inserted = 1;
f2a8bc8a 12171 bp_location_downloaded = 1;
7ed2c994
YQ
12172 }
12173 t = (struct tracepoint *) b;
12174 t->number_on_target = b->number;
f2a8bc8a
YQ
12175 if (bp_location_downloaded)
12176 observer_notify_breakpoint_modified (b);
1e4d1764
YQ
12177 }
12178
12179 do_cleanups (old_chain);
12180}
12181
934709f0
PW
12182/* Swap the insertion/duplication state between two locations. */
12183
12184static void
12185swap_insertion (struct bp_location *left, struct bp_location *right)
12186{
12187 const int left_inserted = left->inserted;
12188 const int left_duplicate = left->duplicate;
b775012e 12189 const int left_needs_update = left->needs_update;
934709f0
PW
12190 const struct bp_target_info left_target_info = left->target_info;
12191
1e4d1764
YQ
12192 /* Locations of tracepoints can never be duplicated. */
12193 if (is_tracepoint (left->owner))
12194 gdb_assert (!left->duplicate);
12195 if (is_tracepoint (right->owner))
12196 gdb_assert (!right->duplicate);
12197
934709f0
PW
12198 left->inserted = right->inserted;
12199 left->duplicate = right->duplicate;
b775012e 12200 left->needs_update = right->needs_update;
934709f0
PW
12201 left->target_info = right->target_info;
12202 right->inserted = left_inserted;
12203 right->duplicate = left_duplicate;
b775012e 12204 right->needs_update = left_needs_update;
934709f0
PW
12205 right->target_info = left_target_info;
12206}
12207
b775012e
LM
12208/* Force the re-insertion of the locations at ADDRESS. This is called
12209 once a new/deleted/modified duplicate location is found and we are evaluating
12210 conditions on the target's side. Such conditions need to be updated on
12211 the target. */
12212
12213static void
12214force_breakpoint_reinsertion (struct bp_location *bl)
12215{
12216 struct bp_location **locp = NULL, **loc2p;
12217 struct bp_location *loc;
12218 CORE_ADDR address = 0;
12219 int pspace_num;
12220
12221 address = bl->address;
12222 pspace_num = bl->pspace->num;
12223
12224 /* This is only meaningful if the target is
12225 evaluating conditions and if the user has
12226 opted for condition evaluation on the target's
12227 side. */
12228 if (gdb_evaluates_breakpoint_condition_p ()
12229 || !target_supports_evaluation_of_breakpoint_conditions ())
12230 return;
12231
12232 /* Flag all breakpoint locations with this address and
12233 the same program space as the location
12234 as "its condition has changed". We need to
12235 update the conditions on the target's side. */
12236 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
12237 {
12238 loc = *loc2p;
12239
12240 if (!is_breakpoint (loc->owner)
12241 || pspace_num != loc->pspace->num)
12242 continue;
12243
12244 /* Flag the location appropriately. We use a different state to
12245 let everyone know that we already updated the set of locations
12246 with addr bl->address and program space bl->pspace. This is so
12247 we don't have to keep calling these functions just to mark locations
12248 that have already been marked. */
12249 loc->condition_changed = condition_updated;
12250
12251 /* Free the agent expression bytecode as well. We will compute
12252 it later on. */
12253 if (loc->cond_bytecode)
12254 {
12255 free_agent_expr (loc->cond_bytecode);
12256 loc->cond_bytecode = NULL;
12257 }
12258 }
12259}
12260
4cd9bd08 12261/* If SHOULD_INSERT is false, do not insert any breakpoint locations
b60e7edf
PA
12262 into the inferior, only remove already-inserted locations that no
12263 longer should be inserted. Functions that delete a breakpoint or
12264 breakpoints should pass false, so that deleting a breakpoint
12265 doesn't have the side effect of inserting the locations of other
12266 breakpoints that are marked not-inserted, but should_be_inserted
12267 returns true on them.
12268
12269 This behaviour is useful is situations close to tear-down -- e.g.,
12270 after an exec, while the target still has execution, but breakpoint
12271 shadows of the previous executable image should *NOT* be restored
12272 to the new image; or before detaching, where the target still has
12273 execution and wants to delete breakpoints from GDB's lists, and all
12274 breakpoints had already been removed from the inferior. */
12275
0d381245 12276static void
b60e7edf 12277update_global_location_list (int should_insert)
0d381245 12278{
74960c60 12279 struct breakpoint *b;
876fa593 12280 struct bp_location **locp, *loc;
f7545552 12281 struct cleanup *cleanups;
b775012e
LM
12282 /* Last breakpoint location address that was marked for update. */
12283 CORE_ADDR last_addr = 0;
12284 /* Last breakpoint location program space that was marked for update. */
12285 int last_pspace_num = -1;
f7545552 12286
2d134ed3
PA
12287 /* Used in the duplicates detection below. When iterating over all
12288 bp_locations, points to the first bp_location of a given address.
12289 Breakpoints and watchpoints of different types are never
12290 duplicates of each other. Keep one pointer for each type of
12291 breakpoint/watchpoint, so we only need to loop over all locations
12292 once. */
12293 struct bp_location *bp_loc_first; /* breakpoint */
12294 struct bp_location *wp_loc_first; /* hardware watchpoint */
12295 struct bp_location *awp_loc_first; /* access watchpoint */
12296 struct bp_location *rwp_loc_first; /* read watchpoint */
876fa593 12297
4a64f543
MS
12298 /* Saved former bp_location array which we compare against the newly
12299 built bp_location from the current state of ALL_BREAKPOINTS. */
876fa593
JK
12300 struct bp_location **old_location, **old_locp;
12301 unsigned old_location_count;
12302
12303 old_location = bp_location;
12304 old_location_count = bp_location_count;
12305 bp_location = NULL;
12306 bp_location_count = 0;
12307 cleanups = make_cleanup (xfree, old_location);
0d381245 12308
74960c60 12309 ALL_BREAKPOINTS (b)
876fa593
JK
12310 for (loc = b->loc; loc; loc = loc->next)
12311 bp_location_count++;
12312
12313 bp_location = xmalloc (sizeof (*bp_location) * bp_location_count);
12314 locp = bp_location;
12315 ALL_BREAKPOINTS (b)
12316 for (loc = b->loc; loc; loc = loc->next)
12317 *locp++ = loc;
12318 qsort (bp_location, bp_location_count, sizeof (*bp_location),
494cfb0f 12319 bp_location_compare);
876fa593
JK
12320
12321 bp_location_target_extensions_update ();
74960c60 12322
4a64f543
MS
12323 /* Identify bp_location instances that are no longer present in the
12324 new list, and therefore should be freed. Note that it's not
12325 necessary that those locations should be removed from inferior --
12326 if there's another location at the same address (previously
12327 marked as duplicate), we don't need to remove/insert the
12328 location.
876fa593 12329
4a64f543
MS
12330 LOCP is kept in sync with OLD_LOCP, each pointing to the current
12331 and former bp_location array state respectively. */
876fa593
JK
12332
12333 locp = bp_location;
12334 for (old_locp = old_location; old_locp < old_location + old_location_count;
12335 old_locp++)
74960c60 12336 {
876fa593 12337 struct bp_location *old_loc = *old_locp;
c7d46a38 12338 struct bp_location **loc2p;
876fa593 12339
e5dd4106 12340 /* Tells if 'old_loc' is found among the new locations. If
4a64f543 12341 not, we have to free it. */
c7d46a38 12342 int found_object = 0;
20874c92
VP
12343 /* Tells if the location should remain inserted in the target. */
12344 int keep_in_target = 0;
12345 int removed = 0;
876fa593 12346
4a64f543
MS
12347 /* Skip LOCP entries which will definitely never be needed.
12348 Stop either at or being the one matching OLD_LOC. */
876fa593 12349 while (locp < bp_location + bp_location_count
c7d46a38 12350 && (*locp)->address < old_loc->address)
876fa593 12351 locp++;
c7d46a38
PA
12352
12353 for (loc2p = locp;
12354 (loc2p < bp_location + bp_location_count
12355 && (*loc2p)->address == old_loc->address);
12356 loc2p++)
12357 {
b775012e
LM
12358 /* Check if this is a new/duplicated location or a duplicated
12359 location that had its condition modified. If so, we want to send
12360 its condition to the target if evaluation of conditions is taking
12361 place there. */
12362 if ((*loc2p)->condition_changed == condition_modified
12363 && (last_addr != old_loc->address
12364 || last_pspace_num != old_loc->pspace->num))
c7d46a38 12365 {
b775012e
LM
12366 force_breakpoint_reinsertion (*loc2p);
12367 last_pspace_num = old_loc->pspace->num;
c7d46a38 12368 }
b775012e
LM
12369
12370 if (*loc2p == old_loc)
12371 found_object = 1;
c7d46a38 12372 }
74960c60 12373
b775012e
LM
12374 /* We have already handled this address, update it so that we don't
12375 have to go through updates again. */
12376 last_addr = old_loc->address;
12377
12378 /* Target-side condition evaluation: Handle deleted locations. */
12379 if (!found_object)
12380 force_breakpoint_reinsertion (old_loc);
12381
4a64f543
MS
12382 /* If this location is no longer present, and inserted, look if
12383 there's maybe a new location at the same address. If so,
12384 mark that one inserted, and don't remove this one. This is
12385 needed so that we don't have a time window where a breakpoint
12386 at certain location is not inserted. */
74960c60 12387
876fa593 12388 if (old_loc->inserted)
0d381245 12389 {
4a64f543
MS
12390 /* If the location is inserted now, we might have to remove
12391 it. */
74960c60 12392
876fa593 12393 if (found_object && should_be_inserted (old_loc))
74960c60 12394 {
4a64f543
MS
12395 /* The location is still present in the location list,
12396 and still should be inserted. Don't do anything. */
20874c92 12397 keep_in_target = 1;
74960c60
VP
12398 }
12399 else
12400 {
b775012e
LM
12401 /* This location still exists, but it won't be kept in the
12402 target since it may have been disabled. We proceed to
12403 remove its target-side condition. */
12404
4a64f543
MS
12405 /* The location is either no longer present, or got
12406 disabled. See if there's another location at the
12407 same address, in which case we don't need to remove
12408 this one from the target. */
876fa593 12409
2bdf28a0 12410 /* OLD_LOC comes from existing struct breakpoint. */
876fa593
JK
12411 if (breakpoint_address_is_meaningful (old_loc->owner))
12412 {
876fa593 12413 for (loc2p = locp;
c7d46a38
PA
12414 (loc2p < bp_location + bp_location_count
12415 && (*loc2p)->address == old_loc->address);
876fa593
JK
12416 loc2p++)
12417 {
12418 struct bp_location *loc2 = *loc2p;
12419
2d134ed3 12420 if (breakpoint_locations_match (loc2, old_loc))
c7d46a38 12421 {
85d721b8
PA
12422 /* Read watchpoint locations are switched to
12423 access watchpoints, if the former are not
12424 supported, but the latter are. */
12425 if (is_hardware_watchpoint (old_loc->owner))
12426 {
12427 gdb_assert (is_hardware_watchpoint (loc2->owner));
12428 loc2->watchpoint_type = old_loc->watchpoint_type;
12429 }
12430
934709f0
PW
12431 /* loc2 is a duplicated location. We need to check
12432 if it should be inserted in case it will be
12433 unduplicated. */
12434 if (loc2 != old_loc
12435 && unduplicated_should_be_inserted (loc2))
c7d46a38 12436 {
934709f0 12437 swap_insertion (old_loc, loc2);
c7d46a38
PA
12438 keep_in_target = 1;
12439 break;
12440 }
876fa593
JK
12441 }
12442 }
12443 }
74960c60
VP
12444 }
12445
20874c92
VP
12446 if (!keep_in_target)
12447 {
876fa593 12448 if (remove_breakpoint (old_loc, mark_uninserted))
20874c92 12449 {
4a64f543
MS
12450 /* This is just about all we can do. We could keep
12451 this location on the global list, and try to
12452 remove it next time, but there's no particular
12453 reason why we will succeed next time.
20874c92 12454
4a64f543
MS
12455 Note that at this point, old_loc->owner is still
12456 valid, as delete_breakpoint frees the breakpoint
12457 only after calling us. */
3e43a32a
MS
12458 printf_filtered (_("warning: Error removing "
12459 "breakpoint %d\n"),
876fa593 12460 old_loc->owner->number);
20874c92
VP
12461 }
12462 removed = 1;
12463 }
0d381245 12464 }
74960c60
VP
12465
12466 if (!found_object)
1c5cfe86 12467 {
db82e815
PA
12468 if (removed && non_stop
12469 && breakpoint_address_is_meaningful (old_loc->owner)
12470 && !is_hardware_watchpoint (old_loc->owner))
20874c92 12471 {
db82e815
PA
12472 /* This location was removed from the target. In
12473 non-stop mode, a race condition is possible where
12474 we've removed a breakpoint, but stop events for that
12475 breakpoint are already queued and will arrive later.
12476 We apply an heuristic to be able to distinguish such
12477 SIGTRAPs from other random SIGTRAPs: we keep this
12478 breakpoint location for a bit, and will retire it
12479 after we see some number of events. The theory here
12480 is that reporting of events should, "on the average",
12481 be fair, so after a while we'll see events from all
12482 threads that have anything of interest, and no longer
12483 need to keep this breakpoint location around. We
12484 don't hold locations forever so to reduce chances of
12485 mistaking a non-breakpoint SIGTRAP for a breakpoint
12486 SIGTRAP.
12487
12488 The heuristic failing can be disastrous on
12489 decr_pc_after_break targets.
12490
12491 On decr_pc_after_break targets, like e.g., x86-linux,
12492 if we fail to recognize a late breakpoint SIGTRAP,
12493 because events_till_retirement has reached 0 too
12494 soon, we'll fail to do the PC adjustment, and report
12495 a random SIGTRAP to the user. When the user resumes
12496 the inferior, it will most likely immediately crash
2dec564e 12497 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
db82e815
PA
12498 corrupted, because of being resumed e.g., in the
12499 middle of a multi-byte instruction, or skipped a
12500 one-byte instruction. This was actually seen happen
12501 on native x86-linux, and should be less rare on
12502 targets that do not support new thread events, like
12503 remote, due to the heuristic depending on
12504 thread_count.
12505
12506 Mistaking a random SIGTRAP for a breakpoint trap
12507 causes similar symptoms (PC adjustment applied when
12508 it shouldn't), but then again, playing with SIGTRAPs
12509 behind the debugger's back is asking for trouble.
12510
12511 Since hardware watchpoint traps are always
12512 distinguishable from other traps, so we don't need to
12513 apply keep hardware watchpoint moribund locations
12514 around. We simply always ignore hardware watchpoint
12515 traps we can no longer explain. */
12516
876fa593
JK
12517 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12518 old_loc->owner = NULL;
20874c92 12519
876fa593 12520 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
1c5cfe86
PA
12521 }
12522 else
f431efe5
PA
12523 {
12524 old_loc->owner = NULL;
12525 decref_bp_location (&old_loc);
12526 }
20874c92 12527 }
74960c60 12528 }
1c5cfe86 12529
348d480f
PA
12530 /* Rescan breakpoints at the same address and section, marking the
12531 first one as "first" and any others as "duplicates". This is so
12532 that the bpt instruction is only inserted once. If we have a
12533 permanent breakpoint at the same place as BPT, make that one the
12534 official one, and the rest as duplicates. Permanent breakpoints
12535 are sorted first for the same address.
12536
12537 Do the same for hardware watchpoints, but also considering the
12538 watchpoint's type (regular/access/read) and length. */
12539
12540 bp_loc_first = NULL;
12541 wp_loc_first = NULL;
12542 awp_loc_first = NULL;
12543 rwp_loc_first = NULL;
12544 ALL_BP_LOCATIONS (loc, locp)
12545 {
12546 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12547 non-NULL. */
348d480f 12548 struct bp_location **loc_first_p;
d3fbdd86 12549 b = loc->owner;
348d480f 12550
6f380991 12551 if (!unduplicated_should_be_inserted (loc)
348d480f 12552 || !breakpoint_address_is_meaningful (b)
1e4d1764
YQ
12553 /* Don't detect duplicate for tracepoint locations because they are
12554 never duplicated. See the comments in field `duplicate' of
12555 `struct bp_location'. */
348d480f 12556 || is_tracepoint (b))
b775012e
LM
12557 {
12558 /* Clear the condition modification flag. */
12559 loc->condition_changed = condition_unchanged;
12560 continue;
12561 }
348d480f
PA
12562
12563 /* Permanent breakpoint should always be inserted. */
12564 if (b->enable_state == bp_permanent && ! loc->inserted)
12565 internal_error (__FILE__, __LINE__,
12566 _("allegedly permanent breakpoint is not "
12567 "actually inserted"));
12568
12569 if (b->type == bp_hardware_watchpoint)
12570 loc_first_p = &wp_loc_first;
12571 else if (b->type == bp_read_watchpoint)
12572 loc_first_p = &rwp_loc_first;
12573 else if (b->type == bp_access_watchpoint)
12574 loc_first_p = &awp_loc_first;
12575 else
12576 loc_first_p = &bp_loc_first;
12577
12578 if (*loc_first_p == NULL
12579 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12580 || !breakpoint_locations_match (loc, *loc_first_p))
12581 {
12582 *loc_first_p = loc;
12583 loc->duplicate = 0;
b775012e
LM
12584
12585 if (is_breakpoint (loc->owner) && loc->condition_changed)
12586 {
12587 loc->needs_update = 1;
12588 /* Clear the condition modification flag. */
12589 loc->condition_changed = condition_unchanged;
12590 }
348d480f
PA
12591 continue;
12592 }
12593
934709f0
PW
12594
12595 /* This and the above ensure the invariant that the first location
12596 is not duplicated, and is the inserted one.
12597 All following are marked as duplicated, and are not inserted. */
12598 if (loc->inserted)
12599 swap_insertion (loc, *loc_first_p);
348d480f
PA
12600 loc->duplicate = 1;
12601
b775012e
LM
12602 /* Clear the condition modification flag. */
12603 loc->condition_changed = condition_unchanged;
12604
348d480f
PA
12605 if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted
12606 && b->enable_state != bp_permanent)
12607 internal_error (__FILE__, __LINE__,
12608 _("another breakpoint was inserted on top of "
12609 "a permanent breakpoint"));
12610 }
12611
b775012e 12612 if (breakpoints_always_inserted_mode ()
348d480f 12613 && (have_live_inferiors ()
f5656ead 12614 || (gdbarch_has_global_breakpoints (target_gdbarch ()))))
b775012e
LM
12615 {
12616 if (should_insert)
12617 insert_breakpoint_locations ();
12618 else
12619 {
12620 /* Though should_insert is false, we may need to update conditions
12621 on the target's side if it is evaluating such conditions. We
12622 only update conditions for locations that are marked
12623 "needs_update". */
12624 update_inserted_breakpoint_locations ();
12625 }
12626 }
348d480f 12627
1e4d1764
YQ
12628 if (should_insert)
12629 download_tracepoint_locations ();
12630
348d480f
PA
12631 do_cleanups (cleanups);
12632}
12633
12634void
12635breakpoint_retire_moribund (void)
12636{
12637 struct bp_location *loc;
12638 int ix;
12639
12640 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12641 if (--(loc->events_till_retirement) == 0)
12642 {
12643 decref_bp_location (&loc);
12644 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12645 --ix;
12646 }
12647}
12648
12649static void
12650update_global_location_list_nothrow (int inserting)
12651{
bfd189b1 12652 volatile struct gdb_exception e;
348d480f
PA
12653
12654 TRY_CATCH (e, RETURN_MASK_ERROR)
12655 update_global_location_list (inserting);
12656}
12657
12658/* Clear BKP from a BPS. */
12659
12660static void
12661bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12662{
12663 bpstat bs;
12664
12665 for (bs = bps; bs; bs = bs->next)
12666 if (bs->breakpoint_at == bpt)
12667 {
12668 bs->breakpoint_at = NULL;
12669 bs->old_val = NULL;
12670 /* bs->commands will be freed later. */
12671 }
12672}
12673
12674/* Callback for iterate_over_threads. */
12675static int
12676bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12677{
12678 struct breakpoint *bpt = data;
12679
12680 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12681 return 0;
12682}
12683
12684/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12685 callbacks. */
12686
12687static void
12688say_where (struct breakpoint *b)
12689{
12690 struct value_print_options opts;
12691
12692 get_user_print_options (&opts);
12693
12694 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12695 single string. */
12696 if (b->loc == NULL)
12697 {
12698 printf_filtered (_(" (%s) pending."), b->addr_string);
12699 }
12700 else
12701 {
2f202fde 12702 if (opts.addressprint || b->loc->symtab == NULL)
348d480f
PA
12703 {
12704 printf_filtered (" at ");
12705 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12706 gdb_stdout);
12707 }
2f202fde 12708 if (b->loc->symtab != NULL)
f8eba3c6
TT
12709 {
12710 /* If there is a single location, we can print the location
12711 more nicely. */
12712 if (b->loc->next == NULL)
12713 printf_filtered (": file %s, line %d.",
05cba821
JK
12714 symtab_to_filename_for_display (b->loc->symtab),
12715 b->loc->line_number);
f8eba3c6
TT
12716 else
12717 /* This is not ideal, but each location may have a
12718 different file name, and this at least reflects the
12719 real situation somewhat. */
12720 printf_filtered (": %s.", b->addr_string);
12721 }
348d480f
PA
12722
12723 if (b->loc->next)
12724 {
12725 struct bp_location *loc = b->loc;
12726 int n = 0;
12727 for (; loc; loc = loc->next)
12728 ++n;
12729 printf_filtered (" (%d locations)", n);
12730 }
12731 }
12732}
12733
348d480f
PA
12734/* Default bp_location_ops methods. */
12735
12736static void
12737bp_location_dtor (struct bp_location *self)
12738{
12739 xfree (self->cond);
b775012e
LM
12740 if (self->cond_bytecode)
12741 free_agent_expr (self->cond_bytecode);
348d480f 12742 xfree (self->function_name);
8b4f3082
PA
12743
12744 VEC_free (agent_expr_p, self->target_info.conditions);
12745 VEC_free (agent_expr_p, self->target_info.tcommands);
348d480f
PA
12746}
12747
12748static const struct bp_location_ops bp_location_ops =
12749{
12750 bp_location_dtor
12751};
12752
2060206e
PA
12753/* Default breakpoint_ops methods all breakpoint_ops ultimately
12754 inherit from. */
348d480f 12755
2060206e
PA
12756static void
12757base_breakpoint_dtor (struct breakpoint *self)
348d480f
PA
12758{
12759 decref_counted_command_line (&self->commands);
12760 xfree (self->cond_string);
fb81d016 12761 xfree (self->extra_string);
348d480f 12762 xfree (self->addr_string);
f8eba3c6 12763 xfree (self->filter);
348d480f 12764 xfree (self->addr_string_range_end);
348d480f
PA
12765}
12766
2060206e
PA
12767static struct bp_location *
12768base_breakpoint_allocate_location (struct breakpoint *self)
348d480f
PA
12769{
12770 struct bp_location *loc;
12771
12772 loc = XNEW (struct bp_location);
12773 init_bp_location (loc, &bp_location_ops, self);
12774 return loc;
12775}
12776
2060206e
PA
12777static void
12778base_breakpoint_re_set (struct breakpoint *b)
12779{
12780 /* Nothing to re-set. */
12781}
12782
12783#define internal_error_pure_virtual_called() \
12784 gdb_assert_not_reached ("pure virtual function called")
12785
12786static int
12787base_breakpoint_insert_location (struct bp_location *bl)
12788{
12789 internal_error_pure_virtual_called ();
12790}
12791
12792static int
12793base_breakpoint_remove_location (struct bp_location *bl)
12794{
12795 internal_error_pure_virtual_called ();
12796}
12797
12798static int
12799base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12800 struct address_space *aspace,
09ac7c10
TT
12801 CORE_ADDR bp_addr,
12802 const struct target_waitstatus *ws)
2060206e
PA
12803{
12804 internal_error_pure_virtual_called ();
12805}
12806
12807static void
12808base_breakpoint_check_status (bpstat bs)
12809{
12810 /* Always stop. */
12811}
12812
12813/* A "works_in_software_mode" breakpoint_ops method that just internal
12814 errors. */
12815
12816static int
12817base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12818{
12819 internal_error_pure_virtual_called ();
12820}
12821
12822/* A "resources_needed" breakpoint_ops method that just internal
12823 errors. */
12824
12825static int
12826base_breakpoint_resources_needed (const struct bp_location *bl)
12827{
12828 internal_error_pure_virtual_called ();
12829}
12830
12831static enum print_stop_action
12832base_breakpoint_print_it (bpstat bs)
12833{
12834 internal_error_pure_virtual_called ();
12835}
12836
12837static void
12838base_breakpoint_print_one_detail (const struct breakpoint *self,
12839 struct ui_out *uiout)
12840{
12841 /* nothing */
12842}
12843
12844static void
12845base_breakpoint_print_mention (struct breakpoint *b)
12846{
12847 internal_error_pure_virtual_called ();
12848}
12849
12850static void
12851base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12852{
12853 internal_error_pure_virtual_called ();
12854}
12855
983af33b
SDJ
12856static void
12857base_breakpoint_create_sals_from_address (char **arg,
12858 struct linespec_result *canonical,
12859 enum bptype type_wanted,
12860 char *addr_start,
12861 char **copy_arg)
12862{
12863 internal_error_pure_virtual_called ();
12864}
12865
12866static void
12867base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12868 struct linespec_result *c,
983af33b 12869 char *cond_string,
e7e0cddf 12870 char *extra_string,
983af33b
SDJ
12871 enum bptype type_wanted,
12872 enum bpdisp disposition,
12873 int thread,
12874 int task, int ignore_count,
12875 const struct breakpoint_ops *o,
12876 int from_tty, int enabled,
44f238bb 12877 int internal, unsigned flags)
983af33b
SDJ
12878{
12879 internal_error_pure_virtual_called ();
12880}
12881
12882static void
12883base_breakpoint_decode_linespec (struct breakpoint *b, char **s,
12884 struct symtabs_and_lines *sals)
12885{
12886 internal_error_pure_virtual_called ();
12887}
12888
ab04a2af
TT
12889/* The default 'explains_signal' method. */
12890
47591c29 12891static int
427cd150 12892base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
ab04a2af 12893{
47591c29 12894 return 1;
ab04a2af
TT
12895}
12896
9d6e6e84
HZ
12897/* The default "after_condition_true" method. */
12898
12899static void
12900base_breakpoint_after_condition_true (struct bpstats *bs)
12901{
12902 /* Nothing to do. */
12903}
12904
ab04a2af 12905struct breakpoint_ops base_breakpoint_ops =
2060206e
PA
12906{
12907 base_breakpoint_dtor,
12908 base_breakpoint_allocate_location,
12909 base_breakpoint_re_set,
12910 base_breakpoint_insert_location,
12911 base_breakpoint_remove_location,
12912 base_breakpoint_breakpoint_hit,
12913 base_breakpoint_check_status,
12914 base_breakpoint_resources_needed,
12915 base_breakpoint_works_in_software_mode,
12916 base_breakpoint_print_it,
12917 NULL,
12918 base_breakpoint_print_one_detail,
12919 base_breakpoint_print_mention,
983af33b
SDJ
12920 base_breakpoint_print_recreate,
12921 base_breakpoint_create_sals_from_address,
12922 base_breakpoint_create_breakpoints_sal,
12923 base_breakpoint_decode_linespec,
9d6e6e84
HZ
12924 base_breakpoint_explains_signal,
12925 base_breakpoint_after_condition_true,
2060206e
PA
12926};
12927
12928/* Default breakpoint_ops methods. */
12929
12930static void
348d480f
PA
12931bkpt_re_set (struct breakpoint *b)
12932{
06edf0c0
PA
12933 /* FIXME: is this still reachable? */
12934 if (b->addr_string == NULL)
12935 {
12936 /* Anything without a string can't be re-set. */
348d480f 12937 delete_breakpoint (b);
06edf0c0 12938 return;
348d480f 12939 }
06edf0c0
PA
12940
12941 breakpoint_re_set_default (b);
348d480f
PA
12942}
12943
2060206e 12944static int
348d480f
PA
12945bkpt_insert_location (struct bp_location *bl)
12946{
12947 if (bl->loc_type == bp_loc_hardware_breakpoint)
12948 return target_insert_hw_breakpoint (bl->gdbarch,
12949 &bl->target_info);
12950 else
12951 return target_insert_breakpoint (bl->gdbarch,
12952 &bl->target_info);
12953}
12954
2060206e 12955static int
348d480f
PA
12956bkpt_remove_location (struct bp_location *bl)
12957{
12958 if (bl->loc_type == bp_loc_hardware_breakpoint)
12959 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12960 else
12961 return target_remove_breakpoint (bl->gdbarch, &bl->target_info);
12962}
12963
2060206e 12964static int
348d480f 12965bkpt_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
12966 struct address_space *aspace, CORE_ADDR bp_addr,
12967 const struct target_waitstatus *ws)
348d480f 12968{
09ac7c10 12969 if (ws->kind != TARGET_WAITKIND_STOPPED
a493e3e2 12970 || ws->value.sig != GDB_SIGNAL_TRAP)
09ac7c10
TT
12971 return 0;
12972
348d480f
PA
12973 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12974 aspace, bp_addr))
12975 return 0;
12976
12977 if (overlay_debugging /* unmapped overlay section */
12978 && section_is_overlay (bl->section)
12979 && !section_is_mapped (bl->section))
12980 return 0;
12981
12982 return 1;
12983}
12984
2060206e 12985static int
348d480f
PA
12986bkpt_resources_needed (const struct bp_location *bl)
12987{
12988 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12989
12990 return 1;
12991}
12992
2060206e 12993static enum print_stop_action
348d480f
PA
12994bkpt_print_it (bpstat bs)
12995{
348d480f
PA
12996 struct breakpoint *b;
12997 const struct bp_location *bl;
001c8c33 12998 int bp_temp;
79a45e25 12999 struct ui_out *uiout = current_uiout;
348d480f
PA
13000
13001 gdb_assert (bs->bp_location_at != NULL);
13002
13003 bl = bs->bp_location_at;
13004 b = bs->breakpoint_at;
13005
001c8c33
PA
13006 bp_temp = b->disposition == disp_del;
13007 if (bl->address != bl->requested_address)
13008 breakpoint_adjustment_warning (bl->requested_address,
13009 bl->address,
13010 b->number, 1);
13011 annotate_breakpoint (b->number);
13012 if (bp_temp)
13013 ui_out_text (uiout, "\nTemporary breakpoint ");
13014 else
13015 ui_out_text (uiout, "\nBreakpoint ");
13016 if (ui_out_is_mi_like_p (uiout))
348d480f 13017 {
001c8c33
PA
13018 ui_out_field_string (uiout, "reason",
13019 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
13020 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
06edf0c0 13021 }
001c8c33
PA
13022 ui_out_field_int (uiout, "bkptno", b->number);
13023 ui_out_text (uiout, ", ");
06edf0c0 13024
001c8c33 13025 return PRINT_SRC_AND_LOC;
06edf0c0
PA
13026}
13027
2060206e 13028static void
06edf0c0
PA
13029bkpt_print_mention (struct breakpoint *b)
13030{
79a45e25 13031 if (ui_out_is_mi_like_p (current_uiout))
06edf0c0
PA
13032 return;
13033
13034 switch (b->type)
13035 {
13036 case bp_breakpoint:
13037 case bp_gnu_ifunc_resolver:
13038 if (b->disposition == disp_del)
13039 printf_filtered (_("Temporary breakpoint"));
13040 else
13041 printf_filtered (_("Breakpoint"));
13042 printf_filtered (_(" %d"), b->number);
13043 if (b->type == bp_gnu_ifunc_resolver)
13044 printf_filtered (_(" at gnu-indirect-function resolver"));
13045 break;
13046 case bp_hardware_breakpoint:
13047 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
13048 break;
e7e0cddf
SS
13049 case bp_dprintf:
13050 printf_filtered (_("Dprintf %d"), b->number);
13051 break;
06edf0c0
PA
13052 }
13053
13054 say_where (b);
13055}
13056
2060206e 13057static void
06edf0c0
PA
13058bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13059{
13060 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
13061 fprintf_unfiltered (fp, "tbreak");
13062 else if (tp->type == bp_breakpoint)
13063 fprintf_unfiltered (fp, "break");
13064 else if (tp->type == bp_hardware_breakpoint
13065 && tp->disposition == disp_del)
13066 fprintf_unfiltered (fp, "thbreak");
13067 else if (tp->type == bp_hardware_breakpoint)
13068 fprintf_unfiltered (fp, "hbreak");
13069 else
13070 internal_error (__FILE__, __LINE__,
13071 _("unhandled breakpoint type %d"), (int) tp->type);
13072
2060206e 13073 fprintf_unfiltered (fp, " %s", tp->addr_string);
dd11a36c 13074 print_recreate_thread (tp, fp);
06edf0c0
PA
13075}
13076
983af33b
SDJ
13077static void
13078bkpt_create_sals_from_address (char **arg,
13079 struct linespec_result *canonical,
13080 enum bptype type_wanted,
13081 char *addr_start, char **copy_arg)
13082{
13083 create_sals_from_address_default (arg, canonical, type_wanted,
13084 addr_start, copy_arg);
13085}
13086
13087static void
13088bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
13089 struct linespec_result *canonical,
983af33b 13090 char *cond_string,
e7e0cddf 13091 char *extra_string,
983af33b
SDJ
13092 enum bptype type_wanted,
13093 enum bpdisp disposition,
13094 int thread,
13095 int task, int ignore_count,
13096 const struct breakpoint_ops *ops,
13097 int from_tty, int enabled,
44f238bb 13098 int internal, unsigned flags)
983af33b 13099{
023fa29b 13100 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13101 cond_string, extra_string,
13102 type_wanted,
983af33b
SDJ
13103 disposition, thread, task,
13104 ignore_count, ops, from_tty,
44f238bb 13105 enabled, internal, flags);
983af33b
SDJ
13106}
13107
13108static void
13109bkpt_decode_linespec (struct breakpoint *b, char **s,
13110 struct symtabs_and_lines *sals)
13111{
13112 decode_linespec_default (b, s, sals);
13113}
13114
06edf0c0
PA
13115/* Virtual table for internal breakpoints. */
13116
13117static void
13118internal_bkpt_re_set (struct breakpoint *b)
13119{
13120 switch (b->type)
13121 {
13122 /* Delete overlay event and longjmp master breakpoints; they
13123 will be reset later by breakpoint_re_set. */
13124 case bp_overlay_event:
13125 case bp_longjmp_master:
13126 case bp_std_terminate_master:
13127 case bp_exception_master:
13128 delete_breakpoint (b);
13129 break;
13130
13131 /* This breakpoint is special, it's set up when the inferior
13132 starts and we really don't want to touch it. */
13133 case bp_shlib_event:
13134
13135 /* Like bp_shlib_event, this breakpoint type is special. Once
13136 it is set up, we do not want to touch it. */
13137 case bp_thread_event:
13138 break;
13139 }
13140}
13141
13142static void
13143internal_bkpt_check_status (bpstat bs)
13144{
a9b3a50f
PA
13145 if (bs->breakpoint_at->type == bp_shlib_event)
13146 {
13147 /* If requested, stop when the dynamic linker notifies GDB of
13148 events. This allows the user to get control and place
13149 breakpoints in initializer routines for dynamically loaded
13150 objects (among other things). */
13151 bs->stop = stop_on_solib_events;
13152 bs->print = stop_on_solib_events;
13153 }
13154 else
13155 bs->stop = 0;
06edf0c0
PA
13156}
13157
13158static enum print_stop_action
13159internal_bkpt_print_it (bpstat bs)
13160{
06edf0c0 13161 struct breakpoint *b;
06edf0c0 13162
06edf0c0
PA
13163 b = bs->breakpoint_at;
13164
06edf0c0
PA
13165 switch (b->type)
13166 {
348d480f
PA
13167 case bp_shlib_event:
13168 /* Did we stop because the user set the stop_on_solib_events
13169 variable? (If so, we report this as a generic, "Stopped due
13170 to shlib event" message.) */
edcc5120 13171 print_solib_event (0);
348d480f
PA
13172 break;
13173
13174 case bp_thread_event:
13175 /* Not sure how we will get here.
13176 GDB should not stop for these breakpoints. */
13177 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13178 break;
13179
13180 case bp_overlay_event:
13181 /* By analogy with the thread event, GDB should not stop for these. */
13182 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
348d480f
PA
13183 break;
13184
13185 case bp_longjmp_master:
13186 /* These should never be enabled. */
13187 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
348d480f
PA
13188 break;
13189
13190 case bp_std_terminate_master:
13191 /* These should never be enabled. */
13192 printf_filtered (_("std::terminate Master Breakpoint: "
13193 "gdb should not stop!\n"));
348d480f
PA
13194 break;
13195
13196 case bp_exception_master:
13197 /* These should never be enabled. */
13198 printf_filtered (_("Exception Master Breakpoint: "
13199 "gdb should not stop!\n"));
06edf0c0
PA
13200 break;
13201 }
13202
001c8c33 13203 return PRINT_NOTHING;
06edf0c0
PA
13204}
13205
13206static void
13207internal_bkpt_print_mention (struct breakpoint *b)
13208{
13209 /* Nothing to mention. These breakpoints are internal. */
13210}
13211
06edf0c0
PA
13212/* Virtual table for momentary breakpoints */
13213
13214static void
13215momentary_bkpt_re_set (struct breakpoint *b)
13216{
13217 /* Keep temporary breakpoints, which can be encountered when we step
4d1eb6b4 13218 over a dlopen call and solib_add is resetting the breakpoints.
06edf0c0
PA
13219 Otherwise these should have been blown away via the cleanup chain
13220 or by breakpoint_init_inferior when we rerun the executable. */
13221}
13222
13223static void
13224momentary_bkpt_check_status (bpstat bs)
13225{
13226 /* Nothing. The point of these breakpoints is causing a stop. */
13227}
13228
13229static enum print_stop_action
13230momentary_bkpt_print_it (bpstat bs)
13231{
79a45e25
PA
13232 struct ui_out *uiout = current_uiout;
13233
001c8c33 13234 if (ui_out_is_mi_like_p (uiout))
06edf0c0 13235 {
001c8c33 13236 struct breakpoint *b = bs->breakpoint_at;
348d480f 13237
001c8c33
PA
13238 switch (b->type)
13239 {
13240 case bp_finish:
13241 ui_out_field_string
13242 (uiout, "reason",
13243 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
13244 break;
348d480f 13245
001c8c33
PA
13246 case bp_until:
13247 ui_out_field_string
13248 (uiout, "reason",
13249 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
13250 break;
13251 }
348d480f
PA
13252 }
13253
001c8c33 13254 return PRINT_UNKNOWN;
348d480f
PA
13255}
13256
06edf0c0
PA
13257static void
13258momentary_bkpt_print_mention (struct breakpoint *b)
348d480f 13259{
06edf0c0 13260 /* Nothing to mention. These breakpoints are internal. */
348d480f
PA
13261}
13262
e2e4d78b
JK
13263/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
13264
13265 It gets cleared already on the removal of the first one of such placed
13266 breakpoints. This is OK as they get all removed altogether. */
13267
13268static void
13269longjmp_bkpt_dtor (struct breakpoint *self)
13270{
13271 struct thread_info *tp = find_thread_id (self->thread);
13272
13273 if (tp)
13274 tp->initiating_frame = null_frame_id;
13275
13276 momentary_breakpoint_ops.dtor (self);
13277}
13278
55aa24fb
SDJ
13279/* Specific methods for probe breakpoints. */
13280
13281static int
13282bkpt_probe_insert_location (struct bp_location *bl)
13283{
13284 int v = bkpt_insert_location (bl);
13285
13286 if (v == 0)
13287 {
13288 /* The insertion was successful, now let's set the probe's semaphore
13289 if needed. */
13290 bl->probe->pops->set_semaphore (bl->probe, bl->gdbarch);
13291 }
13292
13293 return v;
13294}
13295
13296static int
13297bkpt_probe_remove_location (struct bp_location *bl)
13298{
13299 /* Let's clear the semaphore before removing the location. */
13300 bl->probe->pops->clear_semaphore (bl->probe, bl->gdbarch);
13301
13302 return bkpt_remove_location (bl);
13303}
13304
13305static void
13306bkpt_probe_create_sals_from_address (char **arg,
13307 struct linespec_result *canonical,
13308 enum bptype type_wanted,
13309 char *addr_start, char **copy_arg)
13310{
13311 struct linespec_sals lsal;
13312
13313 lsal.sals = parse_probes (arg, canonical);
13314
13315 *copy_arg = xstrdup (canonical->addr_string);
13316 lsal.canonical = xstrdup (*copy_arg);
13317
13318 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13319}
13320
13321static void
13322bkpt_probe_decode_linespec (struct breakpoint *b, char **s,
13323 struct symtabs_and_lines *sals)
13324{
13325 *sals = parse_probes (s, NULL);
13326 if (!sals->sals)
13327 error (_("probe not found"));
13328}
13329
348d480f 13330/* The breakpoint_ops structure to be used in tracepoints. */
876fa593 13331
348d480f
PA
13332static void
13333tracepoint_re_set (struct breakpoint *b)
13334{
13335 breakpoint_re_set_default (b);
13336}
876fa593 13337
348d480f
PA
13338static int
13339tracepoint_breakpoint_hit (const struct bp_location *bl,
09ac7c10
TT
13340 struct address_space *aspace, CORE_ADDR bp_addr,
13341 const struct target_waitstatus *ws)
348d480f
PA
13342{
13343 /* By definition, the inferior does not report stops at
13344 tracepoints. */
13345 return 0;
74960c60
VP
13346}
13347
13348static void
348d480f
PA
13349tracepoint_print_one_detail (const struct breakpoint *self,
13350 struct ui_out *uiout)
74960c60 13351{
d9b3f62e
PA
13352 struct tracepoint *tp = (struct tracepoint *) self;
13353 if (tp->static_trace_marker_id)
348d480f
PA
13354 {
13355 gdb_assert (self->type == bp_static_tracepoint);
cc59ec59 13356
348d480f
PA
13357 ui_out_text (uiout, "\tmarker id is ");
13358 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
d9b3f62e 13359 tp->static_trace_marker_id);
348d480f
PA
13360 ui_out_text (uiout, "\n");
13361 }
0d381245
VP
13362}
13363
a474d7c2 13364static void
348d480f 13365tracepoint_print_mention (struct breakpoint *b)
a474d7c2 13366{
79a45e25 13367 if (ui_out_is_mi_like_p (current_uiout))
348d480f 13368 return;
cc59ec59 13369
348d480f
PA
13370 switch (b->type)
13371 {
13372 case bp_tracepoint:
13373 printf_filtered (_("Tracepoint"));
13374 printf_filtered (_(" %d"), b->number);
13375 break;
13376 case bp_fast_tracepoint:
13377 printf_filtered (_("Fast tracepoint"));
13378 printf_filtered (_(" %d"), b->number);
13379 break;
13380 case bp_static_tracepoint:
13381 printf_filtered (_("Static tracepoint"));
13382 printf_filtered (_(" %d"), b->number);
13383 break;
13384 default:
13385 internal_error (__FILE__, __LINE__,
13386 _("unhandled tracepoint type %d"), (int) b->type);
13387 }
13388
13389 say_where (b);
a474d7c2
PA
13390}
13391
348d480f 13392static void
d9b3f62e 13393tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
a474d7c2 13394{
d9b3f62e
PA
13395 struct tracepoint *tp = (struct tracepoint *) self;
13396
13397 if (self->type == bp_fast_tracepoint)
348d480f 13398 fprintf_unfiltered (fp, "ftrace");
d9b3f62e 13399 if (self->type == bp_static_tracepoint)
348d480f 13400 fprintf_unfiltered (fp, "strace");
d9b3f62e 13401 else if (self->type == bp_tracepoint)
348d480f
PA
13402 fprintf_unfiltered (fp, "trace");
13403 else
13404 internal_error (__FILE__, __LINE__,
d9b3f62e 13405 _("unhandled tracepoint type %d"), (int) self->type);
cc59ec59 13406
d9b3f62e
PA
13407 fprintf_unfiltered (fp, " %s", self->addr_string);
13408 print_recreate_thread (self, fp);
13409
13410 if (tp->pass_count)
13411 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
a474d7c2
PA
13412}
13413
983af33b
SDJ
13414static void
13415tracepoint_create_sals_from_address (char **arg,
13416 struct linespec_result *canonical,
13417 enum bptype type_wanted,
13418 char *addr_start, char **copy_arg)
13419{
13420 create_sals_from_address_default (arg, canonical, type_wanted,
13421 addr_start, copy_arg);
13422}
13423
13424static void
13425tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13426 struct linespec_result *canonical,
983af33b 13427 char *cond_string,
e7e0cddf 13428 char *extra_string,
983af33b
SDJ
13429 enum bptype type_wanted,
13430 enum bpdisp disposition,
13431 int thread,
13432 int task, int ignore_count,
13433 const struct breakpoint_ops *ops,
13434 int from_tty, int enabled,
44f238bb 13435 int internal, unsigned flags)
983af33b 13436{
023fa29b 13437 create_breakpoints_sal_default (gdbarch, canonical,
e7e0cddf
SS
13438 cond_string, extra_string,
13439 type_wanted,
983af33b
SDJ
13440 disposition, thread, task,
13441 ignore_count, ops, from_tty,
44f238bb 13442 enabled, internal, flags);
983af33b
SDJ
13443}
13444
13445static void
13446tracepoint_decode_linespec (struct breakpoint *b, char **s,
13447 struct symtabs_and_lines *sals)
13448{
13449 decode_linespec_default (b, s, sals);
13450}
13451
2060206e 13452struct breakpoint_ops tracepoint_breakpoint_ops;
348d480f 13453
55aa24fb
SDJ
13454/* The breakpoint_ops structure to be use on tracepoints placed in a
13455 static probe. */
13456
13457static void
13458tracepoint_probe_create_sals_from_address (char **arg,
13459 struct linespec_result *canonical,
13460 enum bptype type_wanted,
13461 char *addr_start, char **copy_arg)
13462{
13463 /* We use the same method for breakpoint on probes. */
13464 bkpt_probe_create_sals_from_address (arg, canonical, type_wanted,
13465 addr_start, copy_arg);
13466}
13467
13468static void
13469tracepoint_probe_decode_linespec (struct breakpoint *b, char **s,
13470 struct symtabs_and_lines *sals)
13471{
13472 /* We use the same method for breakpoint on probes. */
13473 bkpt_probe_decode_linespec (b, s, sals);
13474}
13475
13476static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13477
5c2b4418
HZ
13478/* Dprintf breakpoint_ops methods. */
13479
13480static void
13481dprintf_re_set (struct breakpoint *b)
13482{
13483 breakpoint_re_set_default (b);
13484
13485 /* This breakpoint could have been pending, and be resolved now, and
13486 if so, we should now have the extra string. If we don't, the
13487 dprintf was malformed when created, but we couldn't tell because
13488 we can't extract the extra string until the location is
13489 resolved. */
13490 if (b->loc != NULL && b->extra_string == NULL)
13491 error (_("Format string required"));
13492
13493 /* 1 - connect to target 1, that can run breakpoint commands.
13494 2 - create a dprintf, which resolves fine.
13495 3 - disconnect from target 1
13496 4 - connect to target 2, that can NOT run breakpoint commands.
13497
13498 After steps #3/#4, you'll want the dprintf command list to
13499 be updated, because target 1 and 2 may well return different
13500 answers for target_can_run_breakpoint_commands().
13501 Given absence of finer grained resetting, we get to do
13502 it all the time. */
13503 if (b->extra_string != NULL)
13504 update_dprintf_command_list (b);
13505}
13506
2d9442cc
HZ
13507/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13508
13509static void
13510dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13511{
13512 fprintf_unfiltered (fp, "dprintf %s%s", tp->addr_string,
13513 tp->extra_string);
13514 print_recreate_thread (tp, fp);
13515}
13516
9d6e6e84
HZ
13517/* Implement the "after_condition_true" breakpoint_ops method for
13518 dprintf.
13519
13520 dprintf's are implemented with regular commands in their command
13521 list, but we run the commands here instead of before presenting the
13522 stop to the user, as dprintf's don't actually cause a stop. This
13523 also makes it so that the commands of multiple dprintfs at the same
13524 address are all handled. */
13525
13526static void
13527dprintf_after_condition_true (struct bpstats *bs)
13528{
13529 struct cleanup *old_chain;
13530 struct bpstats tmp_bs = { NULL };
13531 struct bpstats *tmp_bs_p = &tmp_bs;
13532
13533 /* dprintf's never cause a stop. This wasn't set in the
13534 check_status hook instead because that would make the dprintf's
13535 condition not be evaluated. */
13536 bs->stop = 0;
13537
13538 /* Run the command list here. Take ownership of it instead of
13539 copying. We never want these commands to run later in
13540 bpstat_do_actions, if a breakpoint that causes a stop happens to
13541 be set at same address as this dprintf, or even if running the
13542 commands here throws. */
13543 tmp_bs.commands = bs->commands;
13544 bs->commands = NULL;
13545 old_chain = make_cleanup_decref_counted_command_line (&tmp_bs.commands);
13546
13547 bpstat_do_actions_1 (&tmp_bs_p);
13548
13549 /* 'tmp_bs.commands' will usually be NULL by now, but
13550 bpstat_do_actions_1 may return early without processing the whole
13551 list. */
13552 do_cleanups (old_chain);
13553}
13554
983af33b
SDJ
13555/* The breakpoint_ops structure to be used on static tracepoints with
13556 markers (`-m'). */
13557
13558static void
13559strace_marker_create_sals_from_address (char **arg,
13560 struct linespec_result *canonical,
13561 enum bptype type_wanted,
13562 char *addr_start, char **copy_arg)
13563{
13564 struct linespec_sals lsal;
13565
13566 lsal.sals = decode_static_tracepoint_spec (arg);
13567
13568 *copy_arg = savestring (addr_start, *arg - addr_start);
13569
13570 canonical->addr_string = xstrdup (*copy_arg);
13571 lsal.canonical = xstrdup (*copy_arg);
13572 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13573}
13574
13575static void
13576strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13577 struct linespec_result *canonical,
983af33b 13578 char *cond_string,
e7e0cddf 13579 char *extra_string,
983af33b
SDJ
13580 enum bptype type_wanted,
13581 enum bpdisp disposition,
13582 int thread,
13583 int task, int ignore_count,
13584 const struct breakpoint_ops *ops,
13585 int from_tty, int enabled,
44f238bb 13586 int internal, unsigned flags)
983af33b
SDJ
13587{
13588 int i;
52d361e1
YQ
13589 struct linespec_sals *lsal = VEC_index (linespec_sals,
13590 canonical->sals, 0);
983af33b
SDJ
13591
13592 /* If the user is creating a static tracepoint by marker id
13593 (strace -m MARKER_ID), then store the sals index, so that
13594 breakpoint_re_set can try to match up which of the newly
13595 found markers corresponds to this one, and, don't try to
13596 expand multiple locations for each sal, given than SALS
13597 already should contain all sals for MARKER_ID. */
13598
13599 for (i = 0; i < lsal->sals.nelts; ++i)
13600 {
13601 struct symtabs_and_lines expanded;
13602 struct tracepoint *tp;
13603 struct cleanup *old_chain;
13604 char *addr_string;
13605
13606 expanded.nelts = 1;
13607 expanded.sals = &lsal->sals.sals[i];
13608
13609 addr_string = xstrdup (canonical->addr_string);
13610 old_chain = make_cleanup (xfree, addr_string);
13611
13612 tp = XCNEW (struct tracepoint);
13613 init_breakpoint_sal (&tp->base, gdbarch, expanded,
13614 addr_string, NULL,
e7e0cddf
SS
13615 cond_string, extra_string,
13616 type_wanted, disposition,
983af33b 13617 thread, task, ignore_count, ops,
44f238bb 13618 from_tty, enabled, internal, flags,
983af33b
SDJ
13619 canonical->special_display);
13620 /* Given that its possible to have multiple markers with
13621 the same string id, if the user is creating a static
13622 tracepoint by marker id ("strace -m MARKER_ID"), then
13623 store the sals index, so that breakpoint_re_set can
13624 try to match up which of the newly found markers
13625 corresponds to this one */
13626 tp->static_trace_marker_id_idx = i;
13627
13628 install_breakpoint (internal, &tp->base, 0);
13629
13630 discard_cleanups (old_chain);
13631 }
13632}
13633
13634static void
13635strace_marker_decode_linespec (struct breakpoint *b, char **s,
13636 struct symtabs_and_lines *sals)
13637{
13638 struct tracepoint *tp = (struct tracepoint *) b;
13639
13640 *sals = decode_static_tracepoint_spec (s);
13641 if (sals->nelts > tp->static_trace_marker_id_idx)
13642 {
13643 sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx];
13644 sals->nelts = 1;
13645 }
13646 else
13647 error (_("marker %s not found"), tp->static_trace_marker_id);
13648}
13649
13650static struct breakpoint_ops strace_marker_breakpoint_ops;
13651
13652static int
13653strace_marker_p (struct breakpoint *b)
13654{
13655 return b->ops == &strace_marker_breakpoint_ops;
13656}
13657
53a5351d 13658/* Delete a breakpoint and clean up all traces of it in the data
f431efe5 13659 structures. */
c906108c
SS
13660
13661void
fba45db2 13662delete_breakpoint (struct breakpoint *bpt)
c906108c 13663{
52f0bd74 13664 struct breakpoint *b;
c906108c 13665
8a3fe4f8 13666 gdb_assert (bpt != NULL);
c906108c 13667
4a64f543
MS
13668 /* Has this bp already been deleted? This can happen because
13669 multiple lists can hold pointers to bp's. bpstat lists are
13670 especial culprits.
13671
13672 One example of this happening is a watchpoint's scope bp. When
13673 the scope bp triggers, we notice that the watchpoint is out of
13674 scope, and delete it. We also delete its scope bp. But the
13675 scope bp is marked "auto-deleting", and is already on a bpstat.
13676 That bpstat is then checked for auto-deleting bp's, which are
13677 deleted.
13678
13679 A real solution to this problem might involve reference counts in
13680 bp's, and/or giving them pointers back to their referencing
13681 bpstat's, and teaching delete_breakpoint to only free a bp's
13682 storage when no more references were extent. A cheaper bandaid
13683 was chosen. */
c906108c
SS
13684 if (bpt->type == bp_none)
13685 return;
13686
4a64f543
MS
13687 /* At least avoid this stale reference until the reference counting
13688 of breakpoints gets resolved. */
d0fb5eae 13689 if (bpt->related_breakpoint != bpt)
e5a0a904 13690 {
d0fb5eae 13691 struct breakpoint *related;
3a5c3e22 13692 struct watchpoint *w;
d0fb5eae
JK
13693
13694 if (bpt->type == bp_watchpoint_scope)
3a5c3e22 13695 w = (struct watchpoint *) bpt->related_breakpoint;
d0fb5eae 13696 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
3a5c3e22
PA
13697 w = (struct watchpoint *) bpt;
13698 else
13699 w = NULL;
13700 if (w != NULL)
13701 watchpoint_del_at_next_stop (w);
d0fb5eae
JK
13702
13703 /* Unlink bpt from the bpt->related_breakpoint ring. */
13704 for (related = bpt; related->related_breakpoint != bpt;
13705 related = related->related_breakpoint);
13706 related->related_breakpoint = bpt->related_breakpoint;
13707 bpt->related_breakpoint = bpt;
e5a0a904
JK
13708 }
13709
a9634178
TJB
13710 /* watch_command_1 creates a watchpoint but only sets its number if
13711 update_watchpoint succeeds in creating its bp_locations. If there's
13712 a problem in that process, we'll be asked to delete the half-created
13713 watchpoint. In that case, don't announce the deletion. */
13714 if (bpt->number)
13715 observer_notify_breakpoint_deleted (bpt);
c906108c 13716
c906108c
SS
13717 if (breakpoint_chain == bpt)
13718 breakpoint_chain = bpt->next;
13719
c906108c
SS
13720 ALL_BREAKPOINTS (b)
13721 if (b->next == bpt)
c5aa993b
JM
13722 {
13723 b->next = bpt->next;
13724 break;
13725 }
c906108c 13726
f431efe5
PA
13727 /* Be sure no bpstat's are pointing at the breakpoint after it's
13728 been freed. */
13729 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
e5dd4106 13730 in all threads for now. Note that we cannot just remove bpstats
f431efe5
PA
13731 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13732 commands are associated with the bpstat; if we remove it here,
13733 then the later call to bpstat_do_actions (&stop_bpstat); in
13734 event-top.c won't do anything, and temporary breakpoints with
13735 commands won't work. */
13736
13737 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13738
4a64f543
MS
13739 /* Now that breakpoint is removed from breakpoint list, update the
13740 global location list. This will remove locations that used to
13741 belong to this breakpoint. Do this before freeing the breakpoint
13742 itself, since remove_breakpoint looks at location's owner. It
13743 might be better design to have location completely
13744 self-contained, but it's not the case now. */
b60e7edf 13745 update_global_location_list (0);
74960c60 13746
348d480f 13747 bpt->ops->dtor (bpt);
4a64f543
MS
13748 /* On the chance that someone will soon try again to delete this
13749 same bp, we mark it as deleted before freeing its storage. */
c906108c 13750 bpt->type = bp_none;
b8c9b27d 13751 xfree (bpt);
c906108c
SS
13752}
13753
4d6140d9
AC
13754static void
13755do_delete_breakpoint_cleanup (void *b)
13756{
13757 delete_breakpoint (b);
13758}
13759
13760struct cleanup *
13761make_cleanup_delete_breakpoint (struct breakpoint *b)
13762{
13763 return make_cleanup (do_delete_breakpoint_cleanup, b);
13764}
13765
51be5b68
PA
13766/* Iterator function to call a user-provided callback function once
13767 for each of B and its related breakpoints. */
13768
13769static void
13770iterate_over_related_breakpoints (struct breakpoint *b,
13771 void (*function) (struct breakpoint *,
13772 void *),
13773 void *data)
13774{
13775 struct breakpoint *related;
13776
13777 related = b;
13778 do
13779 {
13780 struct breakpoint *next;
13781
13782 /* FUNCTION may delete RELATED. */
13783 next = related->related_breakpoint;
13784
13785 if (next == related)
13786 {
13787 /* RELATED is the last ring entry. */
13788 function (related, data);
13789
13790 /* FUNCTION may have deleted it, so we'd never reach back to
13791 B. There's nothing left to do anyway, so just break
13792 out. */
13793 break;
13794 }
13795 else
13796 function (related, data);
13797
13798 related = next;
13799 }
13800 while (related != b);
13801}
95a42b64
TT
13802
13803static void
13804do_delete_breakpoint (struct breakpoint *b, void *ignore)
13805{
13806 delete_breakpoint (b);
13807}
13808
51be5b68
PA
13809/* A callback for map_breakpoint_numbers that calls
13810 delete_breakpoint. */
13811
13812static void
13813do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
13814{
13815 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
13816}
13817
c906108c 13818void
fba45db2 13819delete_command (char *arg, int from_tty)
c906108c 13820{
35df4500 13821 struct breakpoint *b, *b_tmp;
c906108c 13822
ea9365bb
TT
13823 dont_repeat ();
13824
c906108c
SS
13825 if (arg == 0)
13826 {
13827 int breaks_to_delete = 0;
13828
46c6471b
PA
13829 /* Delete all breakpoints if no argument. Do not delete
13830 internal breakpoints, these have to be deleted with an
13831 explicit breakpoint number argument. */
c5aa993b 13832 ALL_BREAKPOINTS (b)
46c6471b 13833 if (user_breakpoint_p (b))
973d738b
DJ
13834 {
13835 breaks_to_delete = 1;
13836 break;
13837 }
c906108c
SS
13838
13839 /* Ask user only if there are some breakpoints to delete. */
13840 if (!from_tty
e2e0b3e5 13841 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 13842 {
35df4500 13843 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 13844 if (user_breakpoint_p (b))
c5aa993b 13845 delete_breakpoint (b);
c906108c
SS
13846 }
13847 }
13848 else
51be5b68 13849 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
c906108c
SS
13850}
13851
0d381245
VP
13852static int
13853all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 13854{
0d381245 13855 for (; loc; loc = loc->next)
8645ff69
UW
13856 if (!loc->shlib_disabled
13857 && !loc->pspace->executing_startup)
0d381245
VP
13858 return 0;
13859 return 1;
fe3f5fa8
VP
13860}
13861
776592bf
DE
13862/* Subroutine of update_breakpoint_locations to simplify it.
13863 Return non-zero if multiple fns in list LOC have the same name.
13864 Null names are ignored. */
13865
13866static int
13867ambiguous_names_p (struct bp_location *loc)
13868{
13869 struct bp_location *l;
13870 htab_t htab = htab_create_alloc (13, htab_hash_string,
cc59ec59
MS
13871 (int (*) (const void *,
13872 const void *)) streq,
776592bf
DE
13873 NULL, xcalloc, xfree);
13874
13875 for (l = loc; l != NULL; l = l->next)
13876 {
13877 const char **slot;
13878 const char *name = l->function_name;
13879
13880 /* Allow for some names to be NULL, ignore them. */
13881 if (name == NULL)
13882 continue;
13883
13884 slot = (const char **) htab_find_slot (htab, (const void *) name,
13885 INSERT);
4a64f543
MS
13886 /* NOTE: We can assume slot != NULL here because xcalloc never
13887 returns NULL. */
776592bf
DE
13888 if (*slot != NULL)
13889 {
13890 htab_delete (htab);
13891 return 1;
13892 }
13893 *slot = name;
13894 }
13895
13896 htab_delete (htab);
13897 return 0;
13898}
13899
0fb4aa4b
PA
13900/* When symbols change, it probably means the sources changed as well,
13901 and it might mean the static tracepoint markers are no longer at
13902 the same address or line numbers they used to be at last we
13903 checked. Losing your static tracepoints whenever you rebuild is
13904 undesirable. This function tries to resync/rematch gdb static
13905 tracepoints with the markers on the target, for static tracepoints
13906 that have not been set by marker id. Static tracepoint that have
13907 been set by marker id are reset by marker id in breakpoint_re_set.
13908 The heuristic is:
13909
13910 1) For a tracepoint set at a specific address, look for a marker at
13911 the old PC. If one is found there, assume to be the same marker.
13912 If the name / string id of the marker found is different from the
13913 previous known name, assume that means the user renamed the marker
13914 in the sources, and output a warning.
13915
13916 2) For a tracepoint set at a given line number, look for a marker
13917 at the new address of the old line number. If one is found there,
13918 assume to be the same marker. If the name / string id of the
13919 marker found is different from the previous known name, assume that
13920 means the user renamed the marker in the sources, and output a
13921 warning.
13922
13923 3) If a marker is no longer found at the same address or line, it
13924 may mean the marker no longer exists. But it may also just mean
13925 the code changed a bit. Maybe the user added a few lines of code
13926 that made the marker move up or down (in line number terms). Ask
13927 the target for info about the marker with the string id as we knew
13928 it. If found, update line number and address in the matching
13929 static tracepoint. This will get confused if there's more than one
13930 marker with the same ID (possible in UST, although unadvised
13931 precisely because it confuses tools). */
13932
13933static struct symtab_and_line
13934update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13935{
d9b3f62e 13936 struct tracepoint *tp = (struct tracepoint *) b;
0fb4aa4b
PA
13937 struct static_tracepoint_marker marker;
13938 CORE_ADDR pc;
0fb4aa4b
PA
13939
13940 pc = sal.pc;
13941 if (sal.line)
13942 find_line_pc (sal.symtab, sal.line, &pc);
13943
13944 if (target_static_tracepoint_marker_at (pc, &marker))
13945 {
d9b3f62e 13946 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
0fb4aa4b
PA
13947 warning (_("static tracepoint %d changed probed marker from %s to %s"),
13948 b->number,
d9b3f62e 13949 tp->static_trace_marker_id, marker.str_id);
0fb4aa4b 13950
d9b3f62e
PA
13951 xfree (tp->static_trace_marker_id);
13952 tp->static_trace_marker_id = xstrdup (marker.str_id);
0fb4aa4b
PA
13953 release_static_tracepoint_marker (&marker);
13954
13955 return sal;
13956 }
13957
13958 /* Old marker wasn't found on target at lineno. Try looking it up
13959 by string ID. */
13960 if (!sal.explicit_pc
13961 && sal.line != 0
13962 && sal.symtab != NULL
d9b3f62e 13963 && tp->static_trace_marker_id != NULL)
0fb4aa4b
PA
13964 {
13965 VEC(static_tracepoint_marker_p) *markers;
13966
13967 markers
d9b3f62e 13968 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
0fb4aa4b
PA
13969
13970 if (!VEC_empty(static_tracepoint_marker_p, markers))
13971 {
80e1d417 13972 struct symtab_and_line sal2;
0fb4aa4b 13973 struct symbol *sym;
80e1d417 13974 struct static_tracepoint_marker *tpmarker;
79a45e25 13975 struct ui_out *uiout = current_uiout;
0fb4aa4b 13976
80e1d417 13977 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
0fb4aa4b 13978
d9b3f62e 13979 xfree (tp->static_trace_marker_id);
80e1d417 13980 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
0fb4aa4b
PA
13981
13982 warning (_("marker for static tracepoint %d (%s) not "
13983 "found at previous line number"),
d9b3f62e 13984 b->number, tp->static_trace_marker_id);
0fb4aa4b 13985
80e1d417 13986 init_sal (&sal2);
0fb4aa4b 13987
80e1d417 13988 sal2.pc = tpmarker->address;
0fb4aa4b 13989
80e1d417
AS
13990 sal2 = find_pc_line (tpmarker->address, 0);
13991 sym = find_pc_sect_function (tpmarker->address, NULL);
0fb4aa4b
PA
13992 ui_out_text (uiout, "Now in ");
13993 if (sym)
13994 {
13995 ui_out_field_string (uiout, "func",
13996 SYMBOL_PRINT_NAME (sym));
13997 ui_out_text (uiout, " at ");
13998 }
05cba821
JK
13999 ui_out_field_string (uiout, "file",
14000 symtab_to_filename_for_display (sal2.symtab));
0fb4aa4b
PA
14001 ui_out_text (uiout, ":");
14002
14003 if (ui_out_is_mi_like_p (uiout))
14004 {
0b0865da 14005 const char *fullname = symtab_to_fullname (sal2.symtab);
0fb4aa4b 14006
f35a17b5 14007 ui_out_field_string (uiout, "fullname", fullname);
0fb4aa4b
PA
14008 }
14009
80e1d417 14010 ui_out_field_int (uiout, "line", sal2.line);
0fb4aa4b
PA
14011 ui_out_text (uiout, "\n");
14012
80e1d417 14013 b->loc->line_number = sal2.line;
2f202fde 14014 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
0fb4aa4b
PA
14015
14016 xfree (b->addr_string);
14017 b->addr_string = xstrprintf ("%s:%d",
05cba821 14018 symtab_to_filename_for_display (sal2.symtab),
f8eba3c6 14019 b->loc->line_number);
0fb4aa4b
PA
14020
14021 /* Might be nice to check if function changed, and warn if
14022 so. */
14023
80e1d417 14024 release_static_tracepoint_marker (tpmarker);
0fb4aa4b
PA
14025 }
14026 }
14027 return sal;
14028}
14029
8d3788bd
VP
14030/* Returns 1 iff locations A and B are sufficiently same that
14031 we don't need to report breakpoint as changed. */
14032
14033static int
14034locations_are_equal (struct bp_location *a, struct bp_location *b)
14035{
14036 while (a && b)
14037 {
14038 if (a->address != b->address)
14039 return 0;
14040
14041 if (a->shlib_disabled != b->shlib_disabled)
14042 return 0;
14043
14044 if (a->enabled != b->enabled)
14045 return 0;
14046
14047 a = a->next;
14048 b = b->next;
14049 }
14050
14051 if ((a == NULL) != (b == NULL))
14052 return 0;
14053
14054 return 1;
14055}
14056
f1310107
TJB
14057/* Create new breakpoint locations for B (a hardware or software breakpoint)
14058 based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is
14059 a ranged breakpoint. */
14060
0e30163f 14061void
0d381245 14062update_breakpoint_locations (struct breakpoint *b,
f1310107
TJB
14063 struct symtabs_and_lines sals,
14064 struct symtabs_and_lines sals_end)
fe3f5fa8
VP
14065{
14066 int i;
0d381245
VP
14067 struct bp_location *existing_locations = b->loc;
14068
f8eba3c6
TT
14069 if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1))
14070 {
14071 /* Ranged breakpoints have only one start location and one end
14072 location. */
14073 b->enable_state = bp_disabled;
14074 update_global_location_list (1);
14075 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
14076 "multiple locations found\n"),
14077 b->number);
14078 return;
14079 }
f1310107 14080
4a64f543
MS
14081 /* If there's no new locations, and all existing locations are
14082 pending, don't do anything. This optimizes the common case where
14083 all locations are in the same shared library, that was unloaded.
14084 We'd like to retain the location, so that when the library is
14085 loaded again, we don't loose the enabled/disabled status of the
14086 individual locations. */
0d381245 14087 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
14088 return;
14089
fe3f5fa8
VP
14090 b->loc = NULL;
14091
0d381245 14092 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 14093 {
f8eba3c6
TT
14094 struct bp_location *new_loc;
14095
14096 switch_to_program_space_and_thread (sals.sals[i].pspace);
14097
14098 new_loc = add_location_to_breakpoint (b, &(sals.sals[i]));
fe3f5fa8 14099
0d381245
VP
14100 /* Reparse conditions, they might contain references to the
14101 old symtab. */
14102 if (b->cond_string != NULL)
14103 {
bbc13ae3 14104 const char *s;
bfd189b1 14105 volatile struct gdb_exception e;
fe3f5fa8 14106
0d381245
VP
14107 s = b->cond_string;
14108 TRY_CATCH (e, RETURN_MASK_ERROR)
14109 {
1bb9788d
TT
14110 new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc,
14111 block_for_pc (sals.sals[i].pc),
0d381245
VP
14112 0);
14113 }
14114 if (e.reason < 0)
14115 {
3e43a32a
MS
14116 warning (_("failed to reevaluate condition "
14117 "for breakpoint %d: %s"),
0d381245
VP
14118 b->number, e.message);
14119 new_loc->enabled = 0;
14120 }
14121 }
fe3f5fa8 14122
f1310107
TJB
14123 if (sals_end.nelts)
14124 {
14125 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
14126
14127 new_loc->length = end - sals.sals[0].pc + 1;
14128 }
0d381245 14129 }
fe3f5fa8 14130
514f746b
AR
14131 /* Update locations of permanent breakpoints. */
14132 if (b->enable_state == bp_permanent)
14133 make_breakpoint_permanent (b);
14134
4a64f543
MS
14135 /* If possible, carry over 'disable' status from existing
14136 breakpoints. */
0d381245
VP
14137 {
14138 struct bp_location *e = existing_locations;
776592bf
DE
14139 /* If there are multiple breakpoints with the same function name,
14140 e.g. for inline functions, comparing function names won't work.
14141 Instead compare pc addresses; this is just a heuristic as things
14142 may have moved, but in practice it gives the correct answer
14143 often enough until a better solution is found. */
14144 int have_ambiguous_names = ambiguous_names_p (b->loc);
14145
0d381245
VP
14146 for (; e; e = e->next)
14147 {
14148 if (!e->enabled && e->function_name)
14149 {
14150 struct bp_location *l = b->loc;
776592bf
DE
14151 if (have_ambiguous_names)
14152 {
14153 for (; l; l = l->next)
f1310107 14154 if (breakpoint_locations_match (e, l))
776592bf
DE
14155 {
14156 l->enabled = 0;
14157 break;
14158 }
14159 }
14160 else
14161 {
14162 for (; l; l = l->next)
14163 if (l->function_name
14164 && strcmp (e->function_name, l->function_name) == 0)
14165 {
14166 l->enabled = 0;
14167 break;
14168 }
14169 }
0d381245
VP
14170 }
14171 }
14172 }
fe3f5fa8 14173
8d3788bd
VP
14174 if (!locations_are_equal (existing_locations, b->loc))
14175 observer_notify_breakpoint_modified (b);
14176
b60e7edf 14177 update_global_location_list (1);
fe3f5fa8
VP
14178}
14179
ef23e705
TJB
14180/* Find the SaL locations corresponding to the given ADDR_STRING.
14181 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
14182
14183static struct symtabs_and_lines
14184addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found)
14185{
14186 char *s;
02d20e4a 14187 struct symtabs_and_lines sals = {0};
f8eba3c6 14188 volatile struct gdb_exception e;
ef23e705 14189
983af33b 14190 gdb_assert (b->ops != NULL);
ef23e705 14191 s = addr_string;
ef23e705
TJB
14192
14193 TRY_CATCH (e, RETURN_MASK_ERROR)
14194 {
983af33b 14195 b->ops->decode_linespec (b, &s, &sals);
ef23e705
TJB
14196 }
14197 if (e.reason < 0)
14198 {
14199 int not_found_and_ok = 0;
14200 /* For pending breakpoints, it's expected that parsing will
14201 fail until the right shared library is loaded. User has
14202 already told to create pending breakpoints and don't need
14203 extra messages. If breakpoint is in bp_shlib_disabled
14204 state, then user already saw the message about that
14205 breakpoint being disabled, and don't want to see more
14206 errors. */
58438ac1 14207 if (e.error == NOT_FOUND_ERROR
ef23e705
TJB
14208 && (b->condition_not_parsed
14209 || (b->loc && b->loc->shlib_disabled)
f8eba3c6 14210 || (b->loc && b->loc->pspace->executing_startup)
ef23e705
TJB
14211 || b->enable_state == bp_disabled))
14212 not_found_and_ok = 1;
14213
14214 if (!not_found_and_ok)
14215 {
14216 /* We surely don't want to warn about the same breakpoint
14217 10 times. One solution, implemented here, is disable
14218 the breakpoint on error. Another solution would be to
14219 have separate 'warning emitted' flag. Since this
14220 happens only when a binary has changed, I don't know
14221 which approach is better. */
14222 b->enable_state = bp_disabled;
14223 throw_exception (e);
14224 }
14225 }
14226
58438ac1 14227 if (e.reason == 0 || e.error != NOT_FOUND_ERROR)
ef23e705 14228 {
f8eba3c6 14229 int i;
ef23e705 14230
f8eba3c6
TT
14231 for (i = 0; i < sals.nelts; ++i)
14232 resolve_sal_pc (&sals.sals[i]);
ef23e705
TJB
14233 if (b->condition_not_parsed && s && s[0])
14234 {
ed1d1739
KS
14235 char *cond_string, *extra_string;
14236 int thread, task;
ef23e705
TJB
14237
14238 find_condition_and_thread (s, sals.sals[0].pc,
e7e0cddf
SS
14239 &cond_string, &thread, &task,
14240 &extra_string);
ef23e705
TJB
14241 if (cond_string)
14242 b->cond_string = cond_string;
14243 b->thread = thread;
14244 b->task = task;
e7e0cddf
SS
14245 if (extra_string)
14246 b->extra_string = extra_string;
ef23e705
TJB
14247 b->condition_not_parsed = 0;
14248 }
14249
983af33b 14250 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
ef23e705 14251 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
ef23e705 14252
58438ac1
TT
14253 *found = 1;
14254 }
14255 else
14256 *found = 0;
ef23e705
TJB
14257
14258 return sals;
14259}
14260
348d480f
PA
14261/* The default re_set method, for typical hardware or software
14262 breakpoints. Reevaluate the breakpoint and recreate its
14263 locations. */
14264
14265static void
28010a5d 14266breakpoint_re_set_default (struct breakpoint *b)
ef23e705
TJB
14267{
14268 int found;
f1310107 14269 struct symtabs_and_lines sals, sals_end;
ef23e705 14270 struct symtabs_and_lines expanded = {0};
f1310107 14271 struct symtabs_and_lines expanded_end = {0};
ef23e705
TJB
14272
14273 sals = addr_string_to_sals (b, b->addr_string, &found);
14274 if (found)
14275 {
14276 make_cleanup (xfree, sals.sals);
f8eba3c6 14277 expanded = sals;
ef23e705
TJB
14278 }
14279
f1310107
TJB
14280 if (b->addr_string_range_end)
14281 {
14282 sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found);
14283 if (found)
14284 {
14285 make_cleanup (xfree, sals_end.sals);
f8eba3c6 14286 expanded_end = sals_end;
f1310107
TJB
14287 }
14288 }
14289
14290 update_breakpoint_locations (b, expanded, expanded_end);
28010a5d
PA
14291}
14292
983af33b
SDJ
14293/* Default method for creating SALs from an address string. It basically
14294 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
14295
14296static void
14297create_sals_from_address_default (char **arg,
14298 struct linespec_result *canonical,
14299 enum bptype type_wanted,
14300 char *addr_start, char **copy_arg)
14301{
14302 parse_breakpoint_sals (arg, canonical);
14303}
14304
14305/* Call create_breakpoints_sal for the given arguments. This is the default
14306 function for the `create_breakpoints_sal' method of
14307 breakpoint_ops. */
14308
14309static void
14310create_breakpoints_sal_default (struct gdbarch *gdbarch,
14311 struct linespec_result *canonical,
983af33b 14312 char *cond_string,
e7e0cddf 14313 char *extra_string,
983af33b
SDJ
14314 enum bptype type_wanted,
14315 enum bpdisp disposition,
14316 int thread,
14317 int task, int ignore_count,
14318 const struct breakpoint_ops *ops,
14319 int from_tty, int enabled,
44f238bb 14320 int internal, unsigned flags)
983af33b
SDJ
14321{
14322 create_breakpoints_sal (gdbarch, canonical, cond_string,
e7e0cddf 14323 extra_string,
983af33b
SDJ
14324 type_wanted, disposition,
14325 thread, task, ignore_count, ops, from_tty,
44f238bb 14326 enabled, internal, flags);
983af33b
SDJ
14327}
14328
14329/* Decode the line represented by S by calling decode_line_full. This is the
14330 default function for the `decode_linespec' method of breakpoint_ops. */
14331
14332static void
14333decode_linespec_default (struct breakpoint *b, char **s,
14334 struct symtabs_and_lines *sals)
14335{
14336 struct linespec_result canonical;
14337
14338 init_linespec_result (&canonical);
14339 decode_line_full (s, DECODE_LINE_FUNFIRSTLINE,
14340 (struct symtab *) NULL, 0,
14341 &canonical, multiple_symbols_all,
14342 b->filter);
14343
14344 /* We should get 0 or 1 resulting SALs. */
14345 gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2);
14346
14347 if (VEC_length (linespec_sals, canonical.sals) > 0)
14348 {
14349 struct linespec_sals *lsal;
14350
14351 lsal = VEC_index (linespec_sals, canonical.sals, 0);
14352 *sals = lsal->sals;
14353 /* Arrange it so the destructor does not free the
14354 contents. */
14355 lsal->sals.sals = NULL;
14356 }
14357
14358 destroy_linespec_result (&canonical);
14359}
14360
28010a5d
PA
14361/* Prepare the global context for a re-set of breakpoint B. */
14362
14363static struct cleanup *
14364prepare_re_set_context (struct breakpoint *b)
14365{
14366 struct cleanup *cleanups;
14367
14368 input_radix = b->input_radix;
14369 cleanups = save_current_space_and_thread ();
f8eba3c6
TT
14370 if (b->pspace != NULL)
14371 switch_to_program_space_and_thread (b->pspace);
28010a5d
PA
14372 set_language (b->language);
14373
14374 return cleanups;
ef23e705
TJB
14375}
14376
c906108c
SS
14377/* Reset a breakpoint given it's struct breakpoint * BINT.
14378 The value we return ends up being the return value from catch_errors.
14379 Unused in this case. */
14380
14381static int
4efb68b1 14382breakpoint_re_set_one (void *bint)
c906108c 14383{
4a64f543 14384 /* Get past catch_errs. */
53a5351d 14385 struct breakpoint *b = (struct breakpoint *) bint;
348d480f 14386 struct cleanup *cleanups;
c906108c 14387
348d480f
PA
14388 cleanups = prepare_re_set_context (b);
14389 b->ops->re_set (b);
14390 do_cleanups (cleanups);
c906108c
SS
14391 return 0;
14392}
14393
69de3c6a 14394/* Re-set all breakpoints after symbols have been re-loaded. */
c906108c 14395void
69de3c6a 14396breakpoint_re_set (void)
c906108c 14397{
35df4500 14398 struct breakpoint *b, *b_tmp;
c906108c
SS
14399 enum language save_language;
14400 int save_input_radix;
6c95b8df 14401 struct cleanup *old_chain;
c5aa993b 14402
c906108c
SS
14403 save_language = current_language->la_language;
14404 save_input_radix = input_radix;
6c95b8df
PA
14405 old_chain = save_current_program_space ();
14406
35df4500 14407 ALL_BREAKPOINTS_SAFE (b, b_tmp)
c5aa993b 14408 {
4a64f543 14409 /* Format possible error msg. */
fe3f5fa8 14410 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
14411 b->number);
14412 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 14413 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 14414 do_cleanups (cleanups);
c5aa993b 14415 }
c906108c
SS
14416 set_language (save_language);
14417 input_radix = save_input_radix;
e62c965a 14418
0756c555 14419 jit_breakpoint_re_set ();
4efc6507 14420
6c95b8df
PA
14421 do_cleanups (old_chain);
14422
af02033e
PP
14423 create_overlay_event_breakpoint ();
14424 create_longjmp_master_breakpoint ();
14425 create_std_terminate_master_breakpoint ();
186c406b 14426 create_exception_master_breakpoint ();
c906108c
SS
14427}
14428\f
c906108c
SS
14429/* Reset the thread number of this breakpoint:
14430
14431 - If the breakpoint is for all threads, leave it as-is.
4a64f543 14432 - Else, reset it to the current thread for inferior_ptid. */
c906108c 14433void
fba45db2 14434breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
14435{
14436 if (b->thread != -1)
14437 {
39f77062
KB
14438 if (in_thread_list (inferior_ptid))
14439 b->thread = pid_to_thread_id (inferior_ptid);
6c95b8df
PA
14440
14441 /* We're being called after following a fork. The new fork is
14442 selected as current, and unless this was a vfork will have a
14443 different program space from the original thread. Reset that
14444 as well. */
14445 b->loc->pspace = current_program_space;
c906108c
SS
14446 }
14447}
14448
03ac34d5
MS
14449/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14450 If from_tty is nonzero, it prints a message to that effect,
14451 which ends with a period (no newline). */
14452
c906108c 14453void
fba45db2 14454set_ignore_count (int bptnum, int count, int from_tty)
c906108c 14455{
52f0bd74 14456 struct breakpoint *b;
c906108c
SS
14457
14458 if (count < 0)
14459 count = 0;
14460
14461 ALL_BREAKPOINTS (b)
14462 if (b->number == bptnum)
c5aa993b 14463 {
d77f58be
SS
14464 if (is_tracepoint (b))
14465 {
14466 if (from_tty && count != 0)
14467 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14468 bptnum);
14469 return;
14470 }
14471
c5aa993b 14472 b->ignore_count = count;
221ea385
KS
14473 if (from_tty)
14474 {
14475 if (count == 0)
3e43a32a
MS
14476 printf_filtered (_("Will stop next time "
14477 "breakpoint %d is reached."),
221ea385
KS
14478 bptnum);
14479 else if (count == 1)
a3f17187 14480 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
14481 bptnum);
14482 else
3e43a32a
MS
14483 printf_filtered (_("Will ignore next %d "
14484 "crossings of breakpoint %d."),
221ea385
KS
14485 count, bptnum);
14486 }
8d3788bd 14487 observer_notify_breakpoint_modified (b);
c5aa993b
JM
14488 return;
14489 }
c906108c 14490
8a3fe4f8 14491 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
14492}
14493
c906108c
SS
14494/* Command to set ignore-count of breakpoint N to COUNT. */
14495
14496static void
fba45db2 14497ignore_command (char *args, int from_tty)
c906108c
SS
14498{
14499 char *p = args;
52f0bd74 14500 int num;
c906108c
SS
14501
14502 if (p == 0)
e2e0b3e5 14503 error_no_arg (_("a breakpoint number"));
c5aa993b 14504
c906108c 14505 num = get_number (&p);
5c44784c 14506 if (num == 0)
8a3fe4f8 14507 error (_("bad breakpoint number: '%s'"), args);
c906108c 14508 if (*p == 0)
8a3fe4f8 14509 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
14510
14511 set_ignore_count (num,
14512 longest_to_int (value_as_long (parse_and_eval (p))),
14513 from_tty);
221ea385
KS
14514 if (from_tty)
14515 printf_filtered ("\n");
c906108c
SS
14516}
14517\f
14518/* Call FUNCTION on each of the breakpoints
14519 whose numbers are given in ARGS. */
14520
14521static void
95a42b64
TT
14522map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
14523 void *),
14524 void *data)
c906108c 14525{
52f0bd74
AC
14526 int num;
14527 struct breakpoint *b, *tmp;
11cf8741 14528 int match;
197f0a60 14529 struct get_number_or_range_state state;
c906108c 14530
197f0a60 14531 if (args == 0)
e2e0b3e5 14532 error_no_arg (_("one or more breakpoint numbers"));
c906108c 14533
197f0a60
TT
14534 init_number_or_range (&state, args);
14535
14536 while (!state.finished)
c906108c 14537 {
197f0a60
TT
14538 char *p = state.string;
14539
11cf8741 14540 match = 0;
c5aa993b 14541
197f0a60 14542 num = get_number_or_range (&state);
5c44784c 14543 if (num == 0)
c5aa993b 14544 {
8a3fe4f8 14545 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
14546 }
14547 else
14548 {
14549 ALL_BREAKPOINTS_SAFE (b, tmp)
14550 if (b->number == num)
14551 {
11cf8741 14552 match = 1;
cdac0397 14553 function (b, data);
11cf8741 14554 break;
5c44784c 14555 }
11cf8741 14556 if (match == 0)
a3f17187 14557 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 14558 }
c906108c
SS
14559 }
14560}
14561
0d381245
VP
14562static struct bp_location *
14563find_location_by_number (char *number)
14564{
14565 char *dot = strchr (number, '.');
14566 char *p1;
14567 int bp_num;
14568 int loc_num;
14569 struct breakpoint *b;
14570 struct bp_location *loc;
14571
14572 *dot = '\0';
14573
14574 p1 = number;
197f0a60 14575 bp_num = get_number (&p1);
0d381245
VP
14576 if (bp_num == 0)
14577 error (_("Bad breakpoint number '%s'"), number);
14578
14579 ALL_BREAKPOINTS (b)
14580 if (b->number == bp_num)
14581 {
14582 break;
14583 }
14584
14585 if (!b || b->number != bp_num)
14586 error (_("Bad breakpoint number '%s'"), number);
14587
14588 p1 = dot+1;
197f0a60 14589 loc_num = get_number (&p1);
0d381245
VP
14590 if (loc_num == 0)
14591 error (_("Bad breakpoint location number '%s'"), number);
14592
14593 --loc_num;
14594 loc = b->loc;
14595 for (;loc_num && loc; --loc_num, loc = loc->next)
14596 ;
14597 if (!loc)
14598 error (_("Bad breakpoint location number '%s'"), dot+1);
14599
14600 return loc;
14601}
14602
14603
1900040c
MS
14604/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14605 If from_tty is nonzero, it prints a message to that effect,
14606 which ends with a period (no newline). */
14607
c906108c 14608void
fba45db2 14609disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
14610{
14611 /* Never disable a watchpoint scope breakpoint; we want to
14612 hit them when we leave scope so we can delete both the
14613 watchpoint and its scope breakpoint at that time. */
14614 if (bpt->type == bp_watchpoint_scope)
14615 return;
14616
c2c6d25f 14617 /* You can't disable permanent breakpoints. */
b5de0fa7 14618 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
14619 return;
14620
b5de0fa7 14621 bpt->enable_state = bp_disabled;
c906108c 14622
b775012e
LM
14623 /* Mark breakpoint locations modified. */
14624 mark_breakpoint_modified (bpt);
14625
d248b706
KY
14626 if (target_supports_enable_disable_tracepoint ()
14627 && current_trace_status ()->running && is_tracepoint (bpt))
14628 {
14629 struct bp_location *location;
14630
14631 for (location = bpt->loc; location; location = location->next)
14632 target_disable_tracepoint (location);
14633 }
14634
b60e7edf 14635 update_global_location_list (0);
c906108c 14636
8d3788bd 14637 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14638}
14639
51be5b68
PA
14640/* A callback for iterate_over_related_breakpoints. */
14641
14642static void
14643do_disable_breakpoint (struct breakpoint *b, void *ignore)
14644{
14645 disable_breakpoint (b);
14646}
14647
95a42b64
TT
14648/* A callback for map_breakpoint_numbers that calls
14649 disable_breakpoint. */
14650
14651static void
14652do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
14653{
51be5b68 14654 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
95a42b64
TT
14655}
14656
c906108c 14657static void
fba45db2 14658disable_command (char *args, int from_tty)
c906108c 14659{
c906108c 14660 if (args == 0)
46c6471b
PA
14661 {
14662 struct breakpoint *bpt;
14663
14664 ALL_BREAKPOINTS (bpt)
14665 if (user_breakpoint_p (bpt))
14666 disable_breakpoint (bpt);
14667 }
9eaabc75 14668 else
0d381245 14669 {
9eaabc75
MW
14670 char *num = extract_arg (&args);
14671
14672 while (num)
d248b706 14673 {
9eaabc75 14674 if (strchr (num, '.'))
b775012e 14675 {
9eaabc75
MW
14676 struct bp_location *loc = find_location_by_number (num);
14677
14678 if (loc)
14679 {
14680 if (loc->enabled)
14681 {
14682 loc->enabled = 0;
14683 mark_breakpoint_location_modified (loc);
14684 }
14685 if (target_supports_enable_disable_tracepoint ()
14686 && current_trace_status ()->running && loc->owner
14687 && is_tracepoint (loc->owner))
14688 target_disable_tracepoint (loc);
14689 }
14690 update_global_location_list (0);
b775012e 14691 }
9eaabc75
MW
14692 else
14693 map_breakpoint_numbers (num, do_map_disable_breakpoint, NULL);
14694 num = extract_arg (&args);
d248b706 14695 }
0d381245 14696 }
c906108c
SS
14697}
14698
14699static void
816338b5
SS
14700enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14701 int count)
c906108c 14702{
afe38095 14703 int target_resources_ok;
c906108c
SS
14704
14705 if (bpt->type == bp_hardware_breakpoint)
14706 {
14707 int i;
c5aa993b 14708 i = hw_breakpoint_used_count ();
53a5351d 14709 target_resources_ok =
d92524f1 14710 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
53a5351d 14711 i + 1, 0);
c906108c 14712 if (target_resources_ok == 0)
8a3fe4f8 14713 error (_("No hardware breakpoint support in the target."));
c906108c 14714 else if (target_resources_ok < 0)
8a3fe4f8 14715 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
14716 }
14717
cc60f2e3 14718 if (is_watchpoint (bpt))
c906108c 14719 {
d07205c2
JK
14720 /* Initialize it just to avoid a GCC false warning. */
14721 enum enable_state orig_enable_state = 0;
bfd189b1 14722 volatile struct gdb_exception e;
dde02812
ES
14723
14724 TRY_CATCH (e, RETURN_MASK_ALL)
c906108c 14725 {
3a5c3e22
PA
14726 struct watchpoint *w = (struct watchpoint *) bpt;
14727
1e718ff1
TJB
14728 orig_enable_state = bpt->enable_state;
14729 bpt->enable_state = bp_enabled;
3a5c3e22 14730 update_watchpoint (w, 1 /* reparse */);
c906108c 14731 }
dde02812 14732 if (e.reason < 0)
c5aa993b 14733 {
1e718ff1 14734 bpt->enable_state = orig_enable_state;
dde02812
ES
14735 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14736 bpt->number);
14737 return;
c5aa993b 14738 }
c906108c 14739 }
0101ce28 14740
b4c291bb
KH
14741 if (bpt->enable_state != bp_permanent)
14742 bpt->enable_state = bp_enabled;
d248b706 14743
b775012e
LM
14744 bpt->enable_state = bp_enabled;
14745
14746 /* Mark breakpoint locations modified. */
14747 mark_breakpoint_modified (bpt);
14748
d248b706
KY
14749 if (target_supports_enable_disable_tracepoint ()
14750 && current_trace_status ()->running && is_tracepoint (bpt))
14751 {
14752 struct bp_location *location;
14753
14754 for (location = bpt->loc; location; location = location->next)
14755 target_enable_tracepoint (location);
14756 }
14757
b4c291bb 14758 bpt->disposition = disposition;
816338b5 14759 bpt->enable_count = count;
b60e7edf 14760 update_global_location_list (1);
9c97429f 14761
8d3788bd 14762 observer_notify_breakpoint_modified (bpt);
c906108c
SS
14763}
14764
fe3f5fa8 14765
c906108c 14766void
fba45db2 14767enable_breakpoint (struct breakpoint *bpt)
c906108c 14768{
816338b5 14769 enable_breakpoint_disp (bpt, bpt->disposition, 0);
51be5b68
PA
14770}
14771
14772static void
14773do_enable_breakpoint (struct breakpoint *bpt, void *arg)
14774{
14775 enable_breakpoint (bpt);
c906108c
SS
14776}
14777
95a42b64
TT
14778/* A callback for map_breakpoint_numbers that calls
14779 enable_breakpoint. */
14780
14781static void
14782do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
14783{
51be5b68 14784 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
95a42b64
TT
14785}
14786
c906108c
SS
14787/* The enable command enables the specified breakpoints (or all defined
14788 breakpoints) so they once again become (or continue to be) effective
1272ad14 14789 in stopping the inferior. */
c906108c 14790
c906108c 14791static void
fba45db2 14792enable_command (char *args, int from_tty)
c906108c 14793{
c906108c 14794 if (args == 0)
46c6471b
PA
14795 {
14796 struct breakpoint *bpt;
14797
14798 ALL_BREAKPOINTS (bpt)
14799 if (user_breakpoint_p (bpt))
14800 enable_breakpoint (bpt);
14801 }
9eaabc75 14802 else
0d381245 14803 {
9eaabc75
MW
14804 char *num = extract_arg (&args);
14805
14806 while (num)
d248b706 14807 {
9eaabc75 14808 if (strchr (num, '.'))
b775012e 14809 {
9eaabc75
MW
14810 struct bp_location *loc = find_location_by_number (num);
14811
14812 if (loc)
14813 {
14814 if (!loc->enabled)
14815 {
14816 loc->enabled = 1;
14817 mark_breakpoint_location_modified (loc);
14818 }
14819 if (target_supports_enable_disable_tracepoint ()
14820 && current_trace_status ()->running && loc->owner
14821 && is_tracepoint (loc->owner))
14822 target_enable_tracepoint (loc);
14823 }
14824 update_global_location_list (1);
b775012e 14825 }
9eaabc75
MW
14826 else
14827 map_breakpoint_numbers (num, do_map_enable_breakpoint, NULL);
14828 num = extract_arg (&args);
d248b706 14829 }
0d381245 14830 }
c906108c
SS
14831}
14832
816338b5
SS
14833/* This struct packages up disposition data for application to multiple
14834 breakpoints. */
14835
14836struct disp_data
14837{
14838 enum bpdisp disp;
14839 int count;
14840};
14841
c906108c 14842static void
51be5b68
PA
14843do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
14844{
816338b5 14845 struct disp_data disp_data = *(struct disp_data *) arg;
51be5b68 14846
816338b5 14847 enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count);
51be5b68
PA
14848}
14849
14850static void
14851do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 14852{
816338b5 14853 struct disp_data disp = { disp_disable, 1 };
51be5b68
PA
14854
14855 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
14856}
14857
c906108c 14858static void
fba45db2 14859enable_once_command (char *args, int from_tty)
c906108c 14860{
51be5b68 14861 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
c906108c
SS
14862}
14863
816338b5
SS
14864static void
14865do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr)
14866{
14867 struct disp_data disp = { disp_disable, *(int *) countptr };
14868
14869 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
14870}
14871
14872static void
14873enable_count_command (char *args, int from_tty)
14874{
14875 int count = get_number (&args);
14876
14877 map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count);
14878}
14879
c906108c 14880static void
51be5b68 14881do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
c906108c 14882{
816338b5 14883 struct disp_data disp = { disp_del, 1 };
51be5b68
PA
14884
14885 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
c906108c
SS
14886}
14887
c906108c 14888static void
fba45db2 14889enable_delete_command (char *args, int from_tty)
c906108c 14890{
51be5b68 14891 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
c906108c
SS
14892}
14893\f
fa8d40ab
JJ
14894static void
14895set_breakpoint_cmd (char *args, int from_tty)
14896{
14897}
14898
14899static void
14900show_breakpoint_cmd (char *args, int from_tty)
14901{
14902}
14903
1f3b5d1b
PP
14904/* Invalidate last known value of any hardware watchpoint if
14905 the memory which that value represents has been written to by
14906 GDB itself. */
14907
14908static void
8de0566d
YQ
14909invalidate_bp_value_on_memory_change (struct inferior *inferior,
14910 CORE_ADDR addr, ssize_t len,
1f3b5d1b
PP
14911 const bfd_byte *data)
14912{
14913 struct breakpoint *bp;
14914
14915 ALL_BREAKPOINTS (bp)
14916 if (bp->enable_state == bp_enabled
3a5c3e22 14917 && bp->type == bp_hardware_watchpoint)
1f3b5d1b 14918 {
3a5c3e22 14919 struct watchpoint *wp = (struct watchpoint *) bp;
1f3b5d1b 14920
3a5c3e22
PA
14921 if (wp->val_valid && wp->val)
14922 {
14923 struct bp_location *loc;
14924
14925 for (loc = bp->loc; loc != NULL; loc = loc->next)
14926 if (loc->loc_type == bp_loc_hardware_watchpoint
14927 && loc->address + loc->length > addr
14928 && addr + len > loc->address)
14929 {
14930 value_free (wp->val);
14931 wp->val = NULL;
14932 wp->val_valid = 0;
14933 }
14934 }
1f3b5d1b
PP
14935 }
14936}
14937
8181d85f
DJ
14938/* Create and insert a raw software breakpoint at PC. Return an
14939 identifier, which should be used to remove the breakpoint later.
14940 In general, places which call this should be using something on the
14941 breakpoint chain instead; this function should be eliminated
14942 someday. */
14943
14944void *
6c95b8df
PA
14945deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch,
14946 struct address_space *aspace, CORE_ADDR pc)
8181d85f
DJ
14947{
14948 struct bp_target_info *bp_tgt;
14949
6c95b8df 14950 bp_tgt = XZALLOC (struct bp_target_info);
8181d85f 14951
6c95b8df 14952 bp_tgt->placed_address_space = aspace;
8181d85f 14953 bp_tgt->placed_address = pc;
6c95b8df 14954
a6d9a66e 14955 if (target_insert_breakpoint (gdbarch, bp_tgt) != 0)
8181d85f
DJ
14956 {
14957 /* Could not insert the breakpoint. */
14958 xfree (bp_tgt);
14959 return NULL;
14960 }
14961
14962 return bp_tgt;
14963}
14964
4a64f543
MS
14965/* Remove a breakpoint BP inserted by
14966 deprecated_insert_raw_breakpoint. */
8181d85f
DJ
14967
14968int
a6d9a66e 14969deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp)
8181d85f
DJ
14970{
14971 struct bp_target_info *bp_tgt = bp;
14972 int ret;
14973
a6d9a66e 14974 ret = target_remove_breakpoint (gdbarch, bp_tgt);
8181d85f
DJ
14975 xfree (bp_tgt);
14976
14977 return ret;
14978}
14979
4a64f543
MS
14980/* One (or perhaps two) breakpoints used for software single
14981 stepping. */
8181d85f
DJ
14982
14983static void *single_step_breakpoints[2];
a6d9a66e 14984static struct gdbarch *single_step_gdbarch[2];
8181d85f
DJ
14985
14986/* Create and insert a breakpoint for software single step. */
14987
14988void
6c95b8df 14989insert_single_step_breakpoint (struct gdbarch *gdbarch,
4a64f543
MS
14990 struct address_space *aspace,
14991 CORE_ADDR next_pc)
8181d85f
DJ
14992{
14993 void **bpt_p;
14994
14995 if (single_step_breakpoints[0] == NULL)
a6d9a66e
UW
14996 {
14997 bpt_p = &single_step_breakpoints[0];
14998 single_step_gdbarch[0] = gdbarch;
14999 }
8181d85f
DJ
15000 else
15001 {
15002 gdb_assert (single_step_breakpoints[1] == NULL);
15003 bpt_p = &single_step_breakpoints[1];
a6d9a66e 15004 single_step_gdbarch[1] = gdbarch;
8181d85f
DJ
15005 }
15006
4a64f543
MS
15007 /* NOTE drow/2006-04-11: A future improvement to this function would
15008 be to only create the breakpoints once, and actually put them on
15009 the breakpoint chain. That would let us use set_raw_breakpoint.
15010 We could adjust the addresses each time they were needed. Doing
15011 this requires corresponding changes elsewhere where single step
15012 breakpoints are handled, however. So, for now, we use this. */
8181d85f 15013
6c95b8df 15014 *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc);
8181d85f 15015 if (*bpt_p == NULL)
5af949e3
UW
15016 error (_("Could not insert single-step breakpoint at %s"),
15017 paddress (gdbarch, next_pc));
8181d85f
DJ
15018}
15019
f02253f1
HZ
15020/* Check if the breakpoints used for software single stepping
15021 were inserted or not. */
15022
15023int
15024single_step_breakpoints_inserted (void)
15025{
15026 return (single_step_breakpoints[0] != NULL
15027 || single_step_breakpoints[1] != NULL);
15028}
15029
8181d85f
DJ
15030/* Remove and delete any breakpoints used for software single step. */
15031
15032void
15033remove_single_step_breakpoints (void)
15034{
15035 gdb_assert (single_step_breakpoints[0] != NULL);
15036
15037 /* See insert_single_step_breakpoint for more about this deprecated
15038 call. */
a6d9a66e
UW
15039 deprecated_remove_raw_breakpoint (single_step_gdbarch[0],
15040 single_step_breakpoints[0]);
15041 single_step_gdbarch[0] = NULL;
8181d85f
DJ
15042 single_step_breakpoints[0] = NULL;
15043
15044 if (single_step_breakpoints[1] != NULL)
15045 {
a6d9a66e
UW
15046 deprecated_remove_raw_breakpoint (single_step_gdbarch[1],
15047 single_step_breakpoints[1]);
15048 single_step_gdbarch[1] = NULL;
8181d85f
DJ
15049 single_step_breakpoints[1] = NULL;
15050 }
15051}
15052
d03285ec
UW
15053/* Delete software single step breakpoints without removing them from
15054 the inferior. This is intended to be used if the inferior's address
15055 space where they were inserted is already gone, e.g. after exit or
15056 exec. */
15057
15058void
15059cancel_single_step_breakpoints (void)
15060{
15061 int i;
15062
15063 for (i = 0; i < 2; i++)
15064 if (single_step_breakpoints[i])
15065 {
15066 xfree (single_step_breakpoints[i]);
15067 single_step_breakpoints[i] = NULL;
15068 single_step_gdbarch[i] = NULL;
15069 }
15070}
15071
15072/* Detach software single-step breakpoints from INFERIOR_PTID without
15073 removing them. */
15074
15075static void
15076detach_single_step_breakpoints (void)
15077{
15078 int i;
15079
15080 for (i = 0; i < 2; i++)
15081 if (single_step_breakpoints[i])
15082 target_remove_breakpoint (single_step_gdbarch[i],
15083 single_step_breakpoints[i]);
15084}
15085
4a64f543
MS
15086/* Check whether a software single-step breakpoint is inserted at
15087 PC. */
1aafd4da
UW
15088
15089static int
cc59ec59
MS
15090single_step_breakpoint_inserted_here_p (struct address_space *aspace,
15091 CORE_ADDR pc)
1aafd4da
UW
15092{
15093 int i;
15094
15095 for (i = 0; i < 2; i++)
15096 {
15097 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
6c95b8df
PA
15098 if (bp_tgt
15099 && breakpoint_address_match (bp_tgt->placed_address_space,
15100 bp_tgt->placed_address,
15101 aspace, pc))
1aafd4da
UW
15102 return 1;
15103 }
15104
15105 return 0;
15106}
15107
a96d9b2e
SDJ
15108/* Returns 0 if 'bp' is NOT a syscall catchpoint,
15109 non-zero otherwise. */
15110static int
15111is_syscall_catchpoint_enabled (struct breakpoint *bp)
15112{
15113 if (syscall_catchpoint_p (bp)
15114 && bp->enable_state != bp_disabled
15115 && bp->enable_state != bp_call_disabled)
15116 return 1;
15117 else
15118 return 0;
15119}
15120
15121int
15122catch_syscall_enabled (void)
15123{
fa3064dd
YQ
15124 struct catch_syscall_inferior_data *inf_data
15125 = get_catch_syscall_inferior_data (current_inferior ());
a96d9b2e 15126
fa3064dd 15127 return inf_data->total_syscalls_count != 0;
a96d9b2e
SDJ
15128}
15129
15130int
15131catching_syscall_number (int syscall_number)
15132{
15133 struct breakpoint *bp;
15134
15135 ALL_BREAKPOINTS (bp)
15136 if (is_syscall_catchpoint_enabled (bp))
15137 {
be5c67c1
PA
15138 struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp;
15139
15140 if (c->syscalls_to_be_caught)
a96d9b2e
SDJ
15141 {
15142 int i, iter;
15143 for (i = 0;
be5c67c1 15144 VEC_iterate (int, c->syscalls_to_be_caught, i, iter);
a96d9b2e
SDJ
15145 i++)
15146 if (syscall_number == iter)
15147 return 1;
15148 }
15149 else
15150 return 1;
15151 }
15152
15153 return 0;
15154}
15155
15156/* Complete syscall names. Used by "catch syscall". */
49c4e619 15157static VEC (char_ptr) *
a96d9b2e 15158catch_syscall_completer (struct cmd_list_element *cmd,
6f937416 15159 const char *text, const char *word)
a96d9b2e
SDJ
15160{
15161 const char **list = get_syscall_names ();
49c4e619 15162 VEC (char_ptr) *retlist
b45627a0 15163 = (list == NULL) ? NULL : complete_on_enum (list, word, word);
cc59ec59 15164
c38eea1a
MS
15165 xfree (list);
15166 return retlist;
a96d9b2e
SDJ
15167}
15168
1042e4c0
SS
15169/* Tracepoint-specific operations. */
15170
15171/* Set tracepoint count to NUM. */
15172static void
15173set_tracepoint_count (int num)
15174{
15175 tracepoint_count = num;
4fa62494 15176 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
1042e4c0
SS
15177}
15178
70221824 15179static void
1042e4c0
SS
15180trace_command (char *arg, int from_tty)
15181{
55aa24fb
SDJ
15182 struct breakpoint_ops *ops;
15183 const char *arg_cp = arg;
15184
15185 if (arg && probe_linespec_to_ops (&arg_cp))
15186 ops = &tracepoint_probe_breakpoint_ops;
15187 else
15188 ops = &tracepoint_breakpoint_ops;
15189
558a9d82
YQ
15190 create_breakpoint (get_current_arch (),
15191 arg,
15192 NULL, 0, NULL, 1 /* parse arg */,
15193 0 /* tempflag */,
15194 bp_tracepoint /* type_wanted */,
15195 0 /* Ignore count */,
15196 pending_break_support,
15197 ops,
15198 from_tty,
15199 1 /* enabled */,
15200 0 /* internal */, 0);
1042e4c0
SS
15201}
15202
70221824 15203static void
7a697b8d
SS
15204ftrace_command (char *arg, int from_tty)
15205{
558a9d82
YQ
15206 create_breakpoint (get_current_arch (),
15207 arg,
15208 NULL, 0, NULL, 1 /* parse arg */,
15209 0 /* tempflag */,
15210 bp_fast_tracepoint /* type_wanted */,
15211 0 /* Ignore count */,
15212 pending_break_support,
15213 &tracepoint_breakpoint_ops,
15214 from_tty,
15215 1 /* enabled */,
15216 0 /* internal */, 0);
0fb4aa4b
PA
15217}
15218
15219/* strace command implementation. Creates a static tracepoint. */
15220
70221824 15221static void
0fb4aa4b
PA
15222strace_command (char *arg, int from_tty)
15223{
983af33b
SDJ
15224 struct breakpoint_ops *ops;
15225
15226 /* Decide if we are dealing with a static tracepoint marker (`-m'),
15227 or with a normal static tracepoint. */
15228 if (arg && strncmp (arg, "-m", 2) == 0 && isspace (arg[2]))
15229 ops = &strace_marker_breakpoint_ops;
15230 else
15231 ops = &tracepoint_breakpoint_ops;
15232
558a9d82
YQ
15233 create_breakpoint (get_current_arch (),
15234 arg,
15235 NULL, 0, NULL, 1 /* parse arg */,
15236 0 /* tempflag */,
15237 bp_static_tracepoint /* type_wanted */,
15238 0 /* Ignore count */,
15239 pending_break_support,
15240 ops,
15241 from_tty,
15242 1 /* enabled */,
15243 0 /* internal */, 0);
7a697b8d
SS
15244}
15245
409873ef
SS
15246/* Set up a fake reader function that gets command lines from a linked
15247 list that was acquired during tracepoint uploading. */
15248
15249static struct uploaded_tp *this_utp;
3149d8c1 15250static int next_cmd;
409873ef
SS
15251
15252static char *
15253read_uploaded_action (void)
15254{
15255 char *rslt;
15256
3149d8c1 15257 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
409873ef 15258
3149d8c1 15259 next_cmd++;
409873ef
SS
15260
15261 return rslt;
15262}
15263
00bf0b85
SS
15264/* Given information about a tracepoint as recorded on a target (which
15265 can be either a live system or a trace file), attempt to create an
15266 equivalent GDB tracepoint. This is not a reliable process, since
15267 the target does not necessarily have all the information used when
15268 the tracepoint was originally defined. */
15269
d9b3f62e 15270struct tracepoint *
00bf0b85 15271create_tracepoint_from_upload (struct uploaded_tp *utp)
d5551862 15272{
409873ef 15273 char *addr_str, small_buf[100];
d9b3f62e 15274 struct tracepoint *tp;
fd9b8c24 15275
409873ef
SS
15276 if (utp->at_string)
15277 addr_str = utp->at_string;
15278 else
15279 {
15280 /* In the absence of a source location, fall back to raw
15281 address. Since there is no way to confirm that the address
15282 means the same thing as when the trace was started, warn the
15283 user. */
3e43a32a
MS
15284 warning (_("Uploaded tracepoint %d has no "
15285 "source location, using raw address"),
409873ef 15286 utp->number);
8c042590 15287 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
409873ef
SS
15288 addr_str = small_buf;
15289 }
15290
15291 /* There's not much we can do with a sequence of bytecodes. */
15292 if (utp->cond && !utp->cond_string)
3e43a32a
MS
15293 warning (_("Uploaded tracepoint %d condition "
15294 "has no source form, ignoring it"),
409873ef 15295 utp->number);
d5551862 15296
8cdf0e15 15297 if (!create_breakpoint (get_current_arch (),
409873ef 15298 addr_str,
e7e0cddf
SS
15299 utp->cond_string, -1, NULL,
15300 0 /* parse cond/thread */,
8cdf0e15 15301 0 /* tempflag */,
0fb4aa4b 15302 utp->type /* type_wanted */,
8cdf0e15
VP
15303 0 /* Ignore count */,
15304 pending_break_support,
348d480f 15305 &tracepoint_breakpoint_ops,
8cdf0e15 15306 0 /* from_tty */,
84f4c1fe 15307 utp->enabled /* enabled */,
44f238bb
PA
15308 0 /* internal */,
15309 CREATE_BREAKPOINT_FLAGS_INSERTED))
fd9b8c24
PA
15310 return NULL;
15311
409873ef 15312 /* Get the tracepoint we just created. */
fd9b8c24
PA
15313 tp = get_tracepoint (tracepoint_count);
15314 gdb_assert (tp != NULL);
d5551862 15315
00bf0b85
SS
15316 if (utp->pass > 0)
15317 {
8c042590
PM
15318 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
15319 tp->base.number);
00bf0b85 15320
409873ef 15321 trace_pass_command (small_buf, 0);
00bf0b85
SS
15322 }
15323
409873ef
SS
15324 /* If we have uploaded versions of the original commands, set up a
15325 special-purpose "reader" function and call the usual command line
15326 reader, then pass the result to the breakpoint command-setting
15327 function. */
3149d8c1 15328 if (!VEC_empty (char_ptr, utp->cmd_strings))
00bf0b85 15329 {
409873ef 15330 struct command_line *cmd_list;
00bf0b85 15331
409873ef 15332 this_utp = utp;
3149d8c1 15333 next_cmd = 0;
d5551862 15334
409873ef
SS
15335 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
15336
d9b3f62e 15337 breakpoint_set_commands (&tp->base, cmd_list);
00bf0b85 15338 }
3149d8c1
SS
15339 else if (!VEC_empty (char_ptr, utp->actions)
15340 || !VEC_empty (char_ptr, utp->step_actions))
3e43a32a
MS
15341 warning (_("Uploaded tracepoint %d actions "
15342 "have no source form, ignoring them"),
409873ef 15343 utp->number);
00bf0b85 15344
f196051f
SS
15345 /* Copy any status information that might be available. */
15346 tp->base.hit_count = utp->hit_count;
15347 tp->traceframe_usage = utp->traceframe_usage;
15348
00bf0b85 15349 return tp;
d9b3f62e 15350}
00bf0b85 15351
1042e4c0
SS
15352/* Print information on tracepoint number TPNUM_EXP, or all if
15353 omitted. */
15354
15355static void
e5a67952 15356tracepoints_info (char *args, int from_tty)
1042e4c0 15357{
79a45e25 15358 struct ui_out *uiout = current_uiout;
e5a67952 15359 int num_printed;
1042e4c0 15360
e5a67952 15361 num_printed = breakpoint_1 (args, 0, is_tracepoint);
d77f58be
SS
15362
15363 if (num_printed == 0)
1042e4c0 15364 {
e5a67952 15365 if (args == NULL || *args == '\0')
d77f58be
SS
15366 ui_out_message (uiout, 0, "No tracepoints.\n");
15367 else
e5a67952 15368 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
1042e4c0 15369 }
ad443146
SS
15370
15371 default_collect_info ();
1042e4c0
SS
15372}
15373
4a64f543 15374/* The 'enable trace' command enables tracepoints.
1042e4c0
SS
15375 Not supported by all targets. */
15376static void
15377enable_trace_command (char *args, int from_tty)
15378{
15379 enable_command (args, from_tty);
15380}
15381
4a64f543 15382/* The 'disable trace' command disables tracepoints.
1042e4c0
SS
15383 Not supported by all targets. */
15384static void
15385disable_trace_command (char *args, int from_tty)
15386{
15387 disable_command (args, from_tty);
15388}
15389
4a64f543 15390/* Remove a tracepoint (or all if no argument). */
1042e4c0
SS
15391static void
15392delete_trace_command (char *arg, int from_tty)
15393{
35df4500 15394 struct breakpoint *b, *b_tmp;
1042e4c0
SS
15395
15396 dont_repeat ();
15397
15398 if (arg == 0)
15399 {
15400 int breaks_to_delete = 0;
15401
15402 /* Delete all breakpoints if no argument.
15403 Do not delete internal or call-dummy breakpoints, these
4a64f543
MS
15404 have to be deleted with an explicit breakpoint number
15405 argument. */
1042e4c0 15406 ALL_TRACEPOINTS (b)
46c6471b 15407 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0
SS
15408 {
15409 breaks_to_delete = 1;
15410 break;
15411 }
1042e4c0
SS
15412
15413 /* Ask user only if there are some breakpoints to delete. */
15414 if (!from_tty
15415 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
15416 {
35df4500 15417 ALL_BREAKPOINTS_SAFE (b, b_tmp)
46c6471b 15418 if (is_tracepoint (b) && user_breakpoint_p (b))
1042e4c0 15419 delete_breakpoint (b);
1042e4c0
SS
15420 }
15421 }
15422 else
51be5b68 15423 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
1042e4c0
SS
15424}
15425
197f0a60
TT
15426/* Helper function for trace_pass_command. */
15427
15428static void
d9b3f62e 15429trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
197f0a60 15430{
d9b3f62e 15431 tp->pass_count = count;
6f6484cd 15432 observer_notify_breakpoint_modified (&tp->base);
197f0a60
TT
15433 if (from_tty)
15434 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
d9b3f62e 15435 tp->base.number, count);
197f0a60
TT
15436}
15437
1042e4c0
SS
15438/* Set passcount for tracepoint.
15439
15440 First command argument is passcount, second is tracepoint number.
15441 If tracepoint number omitted, apply to most recently defined.
15442 Also accepts special argument "all". */
15443
15444static void
15445trace_pass_command (char *args, int from_tty)
15446{
d9b3f62e 15447 struct tracepoint *t1;
1042e4c0 15448 unsigned int count;
1042e4c0
SS
15449
15450 if (args == 0 || *args == 0)
3e43a32a
MS
15451 error (_("passcount command requires an "
15452 "argument (count + optional TP num)"));
1042e4c0 15453
4a64f543 15454 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
1042e4c0 15455
529480d0 15456 args = skip_spaces (args);
1042e4c0
SS
15457 if (*args && strncasecmp (args, "all", 3) == 0)
15458 {
d9b3f62e
PA
15459 struct breakpoint *b;
15460
1042e4c0 15461 args += 3; /* Skip special argument "all". */
1042e4c0
SS
15462 if (*args)
15463 error (_("Junk at end of arguments."));
1042e4c0 15464
d9b3f62e 15465 ALL_TRACEPOINTS (b)
197f0a60 15466 {
d9b3f62e 15467 t1 = (struct tracepoint *) b;
197f0a60
TT
15468 trace_pass_set_count (t1, count, from_tty);
15469 }
15470 }
15471 else if (*args == '\0')
1042e4c0 15472 {
197f0a60 15473 t1 = get_tracepoint_by_number (&args, NULL, 1);
1042e4c0 15474 if (t1)
197f0a60
TT
15475 trace_pass_set_count (t1, count, from_tty);
15476 }
15477 else
15478 {
15479 struct get_number_or_range_state state;
15480
15481 init_number_or_range (&state, args);
15482 while (!state.finished)
1042e4c0 15483 {
197f0a60
TT
15484 t1 = get_tracepoint_by_number (&args, &state, 1);
15485 if (t1)
15486 trace_pass_set_count (t1, count, from_tty);
1042e4c0
SS
15487 }
15488 }
1042e4c0
SS
15489}
15490
d9b3f62e 15491struct tracepoint *
1042e4c0
SS
15492get_tracepoint (int num)
15493{
15494 struct breakpoint *t;
15495
15496 ALL_TRACEPOINTS (t)
15497 if (t->number == num)
d9b3f62e 15498 return (struct tracepoint *) t;
1042e4c0
SS
15499
15500 return NULL;
15501}
15502
d5551862
SS
15503/* Find the tracepoint with the given target-side number (which may be
15504 different from the tracepoint number after disconnecting and
15505 reconnecting). */
15506
d9b3f62e 15507struct tracepoint *
d5551862
SS
15508get_tracepoint_by_number_on_target (int num)
15509{
d9b3f62e 15510 struct breakpoint *b;
d5551862 15511
d9b3f62e
PA
15512 ALL_TRACEPOINTS (b)
15513 {
15514 struct tracepoint *t = (struct tracepoint *) b;
15515
15516 if (t->number_on_target == num)
15517 return t;
15518 }
d5551862
SS
15519
15520 return NULL;
15521}
15522
1042e4c0 15523/* Utility: parse a tracepoint number and look it up in the list.
197f0a60
TT
15524 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
15525 If OPTIONAL_P is true, then if the argument is missing, the most
1042e4c0 15526 recent tracepoint (tracepoint_count) is returned. */
d9b3f62e 15527struct tracepoint *
197f0a60
TT
15528get_tracepoint_by_number (char **arg,
15529 struct get_number_or_range_state *state,
15530 int optional_p)
1042e4c0 15531{
1042e4c0
SS
15532 struct breakpoint *t;
15533 int tpnum;
15534 char *instring = arg == NULL ? NULL : *arg;
15535
197f0a60
TT
15536 if (state)
15537 {
15538 gdb_assert (!state->finished);
15539 tpnum = get_number_or_range (state);
15540 }
15541 else if (arg == NULL || *arg == NULL || ! **arg)
1042e4c0
SS
15542 {
15543 if (optional_p)
15544 tpnum = tracepoint_count;
15545 else
15546 error_no_arg (_("tracepoint number"));
15547 }
15548 else
197f0a60 15549 tpnum = get_number (arg);
1042e4c0
SS
15550
15551 if (tpnum <= 0)
15552 {
15553 if (instring && *instring)
15554 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
15555 instring);
15556 else
3e43a32a
MS
15557 printf_filtered (_("Tracepoint argument missing "
15558 "and no previous tracepoint\n"));
1042e4c0
SS
15559 return NULL;
15560 }
15561
15562 ALL_TRACEPOINTS (t)
15563 if (t->number == tpnum)
15564 {
d9b3f62e 15565 return (struct tracepoint *) t;
1042e4c0
SS
15566 }
15567
1042e4c0
SS
15568 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15569 return NULL;
15570}
15571
d9b3f62e
PA
15572void
15573print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15574{
15575 if (b->thread != -1)
15576 fprintf_unfiltered (fp, " thread %d", b->thread);
15577
15578 if (b->task != 0)
15579 fprintf_unfiltered (fp, " task %d", b->task);
15580
15581 fprintf_unfiltered (fp, "\n");
15582}
15583
6149aea9
PA
15584/* Save information on user settable breakpoints (watchpoints, etc) to
15585 a new script file named FILENAME. If FILTER is non-NULL, call it
15586 on each breakpoint and only include the ones for which it returns
15587 non-zero. */
15588
1042e4c0 15589static void
6149aea9
PA
15590save_breakpoints (char *filename, int from_tty,
15591 int (*filter) (const struct breakpoint *))
1042e4c0
SS
15592{
15593 struct breakpoint *tp;
6149aea9 15594 int any = 0;
1042e4c0 15595 struct cleanup *cleanup;
a7bdde9e 15596 struct ui_file *fp;
6149aea9 15597 int extra_trace_bits = 0;
1042e4c0 15598
6149aea9
PA
15599 if (filename == 0 || *filename == 0)
15600 error (_("Argument required (file name in which to save)"));
1042e4c0
SS
15601
15602 /* See if we have anything to save. */
6149aea9 15603 ALL_BREAKPOINTS (tp)
1042e4c0 15604 {
6149aea9 15605 /* Skip internal and momentary breakpoints. */
09d682a4 15606 if (!user_breakpoint_p (tp))
6149aea9
PA
15607 continue;
15608
15609 /* If we have a filter, only save the breakpoints it accepts. */
15610 if (filter && !filter (tp))
15611 continue;
15612
15613 any = 1;
15614
15615 if (is_tracepoint (tp))
15616 {
15617 extra_trace_bits = 1;
15618
15619 /* We can stop searching. */
15620 break;
15621 }
1042e4c0 15622 }
6149aea9
PA
15623
15624 if (!any)
1042e4c0 15625 {
6149aea9 15626 warning (_("Nothing to save."));
1042e4c0
SS
15627 return;
15628 }
15629
c718be47
PA
15630 filename = tilde_expand (filename);
15631 cleanup = make_cleanup (xfree, filename);
15632 fp = gdb_fopen (filename, "w");
059fb39f 15633 if (!fp)
6149aea9
PA
15634 error (_("Unable to open file '%s' for saving (%s)"),
15635 filename, safe_strerror (errno));
a7bdde9e 15636 make_cleanup_ui_file_delete (fp);
8bf6485c 15637
6149aea9
PA
15638 if (extra_trace_bits)
15639 save_trace_state_variables (fp);
8bf6485c 15640
6149aea9 15641 ALL_BREAKPOINTS (tp)
1042e4c0 15642 {
6149aea9 15643 /* Skip internal and momentary breakpoints. */
09d682a4 15644 if (!user_breakpoint_p (tp))
6149aea9 15645 continue;
8bf6485c 15646
6149aea9
PA
15647 /* If we have a filter, only save the breakpoints it accepts. */
15648 if (filter && !filter (tp))
15649 continue;
15650
348d480f 15651 tp->ops->print_recreate (tp, fp);
1042e4c0 15652
6149aea9
PA
15653 /* Note, we can't rely on tp->number for anything, as we can't
15654 assume the recreated breakpoint numbers will match. Use $bpnum
15655 instead. */
15656
15657 if (tp->cond_string)
15658 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
15659
15660 if (tp->ignore_count)
15661 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
15662
2d9442cc 15663 if (tp->type != bp_dprintf && tp->commands)
1042e4c0 15664 {
a7bdde9e
VP
15665 volatile struct gdb_exception ex;
15666
6149aea9 15667 fprintf_unfiltered (fp, " commands\n");
a7bdde9e 15668
79a45e25 15669 ui_out_redirect (current_uiout, fp);
14dba4b4 15670 TRY_CATCH (ex, RETURN_MASK_ALL)
1042e4c0 15671 {
79a45e25 15672 print_command_lines (current_uiout, tp->commands->commands, 2);
a7bdde9e 15673 }
79a45e25 15674 ui_out_redirect (current_uiout, NULL);
1042e4c0 15675
a7bdde9e
VP
15676 if (ex.reason < 0)
15677 throw_exception (ex);
1042e4c0 15678
a7bdde9e 15679 fprintf_unfiltered (fp, " end\n");
1042e4c0 15680 }
6149aea9
PA
15681
15682 if (tp->enable_state == bp_disabled)
15683 fprintf_unfiltered (fp, "disable\n");
15684
15685 /* If this is a multi-location breakpoint, check if the locations
15686 should be individually disabled. Watchpoint locations are
15687 special, and not user visible. */
15688 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15689 {
15690 struct bp_location *loc;
15691 int n = 1;
15692
15693 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15694 if (!loc->enabled)
15695 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
15696 }
1042e4c0 15697 }
8bf6485c 15698
6149aea9 15699 if (extra_trace_bits && *default_collect)
8bf6485c
SS
15700 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
15701
1042e4c0 15702 if (from_tty)
6149aea9 15703 printf_filtered (_("Saved to file '%s'.\n"), filename);
c718be47 15704 do_cleanups (cleanup);
6149aea9
PA
15705}
15706
15707/* The `save breakpoints' command. */
15708
15709static void
15710save_breakpoints_command (char *args, int from_tty)
15711{
15712 save_breakpoints (args, from_tty, NULL);
15713}
15714
15715/* The `save tracepoints' command. */
15716
15717static void
15718save_tracepoints_command (char *args, int from_tty)
15719{
15720 save_breakpoints (args, from_tty, is_tracepoint);
1042e4c0
SS
15721}
15722
15723/* Create a vector of all tracepoints. */
15724
15725VEC(breakpoint_p) *
eeae04df 15726all_tracepoints (void)
1042e4c0
SS
15727{
15728 VEC(breakpoint_p) *tp_vec = 0;
15729 struct breakpoint *tp;
15730
15731 ALL_TRACEPOINTS (tp)
15732 {
15733 VEC_safe_push (breakpoint_p, tp_vec, tp);
15734 }
15735
15736 return tp_vec;
15737}
15738
c906108c 15739\f
4a64f543
MS
15740/* This help string is used for the break, hbreak, tbreak and thbreak
15741 commands. It is defined as a macro to prevent duplication.
15742 COMMAND should be a string constant containing the name of the
15743 command. */
31e2b00f 15744#define BREAK_ARGS_HELP(command) \
fb7b5af4
SDJ
15745command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15746PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15747probe point. Accepted values are `-probe' (for a generic, automatically\n\
15748guessed probe type) or `-probe-stap' (for a SystemTap probe).\n\
31e2b00f
AS
15749LOCATION may be a line number, function name, or \"*\" and an address.\n\
15750If a line number is specified, break at start of code for that line.\n\
15751If a function is specified, break at start of code for that function.\n\
15752If an address is specified, break at that exact address.\n\
dc10affe
PA
15753With no LOCATION, uses current execution address of the selected\n\
15754stack frame. This is useful for breaking on return to a stack frame.\n\
31e2b00f
AS
15755\n\
15756THREADNUM is the number from \"info threads\".\n\
15757CONDITION is a boolean expression.\n\
15758\n\
d41c0fc8
PA
15759Multiple breakpoints at one place are permitted, and useful if their\n\
15760conditions are different.\n\
31e2b00f
AS
15761\n\
15762Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15763
44feb3ce
TT
15764/* List of subcommands for "catch". */
15765static struct cmd_list_element *catch_cmdlist;
15766
15767/* List of subcommands for "tcatch". */
15768static struct cmd_list_element *tcatch_cmdlist;
15769
9ac4176b 15770void
44feb3ce
TT
15771add_catch_command (char *name, char *docstring,
15772 void (*sfunc) (char *args, int from_tty,
15773 struct cmd_list_element *command),
625e8578 15774 completer_ftype *completer,
44feb3ce
TT
15775 void *user_data_catch,
15776 void *user_data_tcatch)
15777{
15778 struct cmd_list_element *command;
15779
15780 command = add_cmd (name, class_breakpoint, NULL, docstring,
15781 &catch_cmdlist);
15782 set_cmd_sfunc (command, sfunc);
15783 set_cmd_context (command, user_data_catch);
a96d9b2e 15784 set_cmd_completer (command, completer);
44feb3ce
TT
15785
15786 command = add_cmd (name, class_breakpoint, NULL, docstring,
15787 &tcatch_cmdlist);
15788 set_cmd_sfunc (command, sfunc);
15789 set_cmd_context (command, user_data_tcatch);
a96d9b2e 15790 set_cmd_completer (command, completer);
44feb3ce
TT
15791}
15792
6c95b8df 15793static void
a79b8f6e 15794clear_syscall_counts (struct inferior *inf)
6c95b8df 15795{
fa3064dd
YQ
15796 struct catch_syscall_inferior_data *inf_data
15797 = get_catch_syscall_inferior_data (inf);
15798
15799 inf_data->total_syscalls_count = 0;
15800 inf_data->any_syscall_count = 0;
15801 VEC_free (int, inf_data->syscalls_counts);
6c95b8df
PA
15802}
15803
6149aea9
PA
15804static void
15805save_command (char *arg, int from_tty)
15806{
3e43a32a
MS
15807 printf_unfiltered (_("\"save\" must be followed by "
15808 "the name of a save subcommand.\n"));
6149aea9
PA
15809 help_list (save_cmdlist, "save ", -1, gdb_stdout);
15810}
15811
84f4c1fe
PM
15812struct breakpoint *
15813iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15814 void *data)
15815{
35df4500 15816 struct breakpoint *b, *b_tmp;
84f4c1fe 15817
35df4500 15818 ALL_BREAKPOINTS_SAFE (b, b_tmp)
84f4c1fe
PM
15819 {
15820 if ((*callback) (b, data))
15821 return b;
15822 }
15823
15824 return NULL;
15825}
15826
0574c78f
GB
15827/* Zero if any of the breakpoint's locations could be a location where
15828 functions have been inlined, nonzero otherwise. */
15829
15830static int
15831is_non_inline_function (struct breakpoint *b)
15832{
15833 /* The shared library event breakpoint is set on the address of a
15834 non-inline function. */
15835 if (b->type == bp_shlib_event)
15836 return 1;
15837
15838 return 0;
15839}
15840
15841/* Nonzero if the specified PC cannot be a location where functions
15842 have been inlined. */
15843
15844int
09ac7c10
TT
15845pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc,
15846 const struct target_waitstatus *ws)
0574c78f
GB
15847{
15848 struct breakpoint *b;
15849 struct bp_location *bl;
15850
15851 ALL_BREAKPOINTS (b)
15852 {
15853 if (!is_non_inline_function (b))
15854 continue;
15855
15856 for (bl = b->loc; bl != NULL; bl = bl->next)
15857 {
15858 if (!bl->shlib_disabled
09ac7c10 15859 && bpstat_check_location (bl, aspace, pc, ws))
0574c78f
GB
15860 return 1;
15861 }
15862 }
15863
15864 return 0;
15865}
15866
2f202fde
JK
15867/* Remove any references to OBJFILE which is going to be freed. */
15868
15869void
15870breakpoint_free_objfile (struct objfile *objfile)
15871{
15872 struct bp_location **locp, *loc;
15873
15874 ALL_BP_LOCATIONS (loc, locp)
15875 if (loc->symtab != NULL && loc->symtab->objfile == objfile)
15876 loc->symtab = NULL;
15877}
15878
2060206e
PA
15879void
15880initialize_breakpoint_ops (void)
15881{
15882 static int initialized = 0;
15883
15884 struct breakpoint_ops *ops;
15885
15886 if (initialized)
15887 return;
15888 initialized = 1;
15889
15890 /* The breakpoint_ops structure to be inherit by all kinds of
15891 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15892 internal and momentary breakpoints, etc.). */
15893 ops = &bkpt_base_breakpoint_ops;
15894 *ops = base_breakpoint_ops;
15895 ops->re_set = bkpt_re_set;
15896 ops->insert_location = bkpt_insert_location;
15897 ops->remove_location = bkpt_remove_location;
15898 ops->breakpoint_hit = bkpt_breakpoint_hit;
983af33b
SDJ
15899 ops->create_sals_from_address = bkpt_create_sals_from_address;
15900 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
15901 ops->decode_linespec = bkpt_decode_linespec;
2060206e
PA
15902
15903 /* The breakpoint_ops structure to be used in regular breakpoints. */
15904 ops = &bkpt_breakpoint_ops;
15905 *ops = bkpt_base_breakpoint_ops;
15906 ops->re_set = bkpt_re_set;
15907 ops->resources_needed = bkpt_resources_needed;
15908 ops->print_it = bkpt_print_it;
15909 ops->print_mention = bkpt_print_mention;
15910 ops->print_recreate = bkpt_print_recreate;
15911
15912 /* Ranged breakpoints. */
15913 ops = &ranged_breakpoint_ops;
15914 *ops = bkpt_breakpoint_ops;
15915 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15916 ops->resources_needed = resources_needed_ranged_breakpoint;
15917 ops->print_it = print_it_ranged_breakpoint;
15918 ops->print_one = print_one_ranged_breakpoint;
15919 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15920 ops->print_mention = print_mention_ranged_breakpoint;
15921 ops->print_recreate = print_recreate_ranged_breakpoint;
15922
15923 /* Internal breakpoints. */
15924 ops = &internal_breakpoint_ops;
15925 *ops = bkpt_base_breakpoint_ops;
15926 ops->re_set = internal_bkpt_re_set;
15927 ops->check_status = internal_bkpt_check_status;
15928 ops->print_it = internal_bkpt_print_it;
15929 ops->print_mention = internal_bkpt_print_mention;
15930
15931 /* Momentary breakpoints. */
15932 ops = &momentary_breakpoint_ops;
15933 *ops = bkpt_base_breakpoint_ops;
15934 ops->re_set = momentary_bkpt_re_set;
15935 ops->check_status = momentary_bkpt_check_status;
15936 ops->print_it = momentary_bkpt_print_it;
15937 ops->print_mention = momentary_bkpt_print_mention;
15938
e2e4d78b
JK
15939 /* Momentary breakpoints for bp_longjmp and bp_exception. */
15940 ops = &longjmp_breakpoint_ops;
15941 *ops = momentary_breakpoint_ops;
15942 ops->dtor = longjmp_bkpt_dtor;
15943
55aa24fb
SDJ
15944 /* Probe breakpoints. */
15945 ops = &bkpt_probe_breakpoint_ops;
15946 *ops = bkpt_breakpoint_ops;
15947 ops->insert_location = bkpt_probe_insert_location;
15948 ops->remove_location = bkpt_probe_remove_location;
15949 ops->create_sals_from_address = bkpt_probe_create_sals_from_address;
15950 ops->decode_linespec = bkpt_probe_decode_linespec;
15951
2060206e
PA
15952 /* Watchpoints. */
15953 ops = &watchpoint_breakpoint_ops;
15954 *ops = base_breakpoint_ops;
3a5c3e22 15955 ops->dtor = dtor_watchpoint;
2060206e
PA
15956 ops->re_set = re_set_watchpoint;
15957 ops->insert_location = insert_watchpoint;
15958 ops->remove_location = remove_watchpoint;
15959 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15960 ops->check_status = check_status_watchpoint;
15961 ops->resources_needed = resources_needed_watchpoint;
15962 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15963 ops->print_it = print_it_watchpoint;
15964 ops->print_mention = print_mention_watchpoint;
15965 ops->print_recreate = print_recreate_watchpoint;
427cd150 15966 ops->explains_signal = explains_signal_watchpoint;
2060206e
PA
15967
15968 /* Masked watchpoints. */
15969 ops = &masked_watchpoint_breakpoint_ops;
15970 *ops = watchpoint_breakpoint_ops;
15971 ops->insert_location = insert_masked_watchpoint;
15972 ops->remove_location = remove_masked_watchpoint;
15973 ops->resources_needed = resources_needed_masked_watchpoint;
15974 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15975 ops->print_it = print_it_masked_watchpoint;
15976 ops->print_one_detail = print_one_detail_masked_watchpoint;
15977 ops->print_mention = print_mention_masked_watchpoint;
15978 ops->print_recreate = print_recreate_masked_watchpoint;
15979
15980 /* Tracepoints. */
15981 ops = &tracepoint_breakpoint_ops;
15982 *ops = base_breakpoint_ops;
15983 ops->re_set = tracepoint_re_set;
15984 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15985 ops->print_one_detail = tracepoint_print_one_detail;
15986 ops->print_mention = tracepoint_print_mention;
15987 ops->print_recreate = tracepoint_print_recreate;
983af33b
SDJ
15988 ops->create_sals_from_address = tracepoint_create_sals_from_address;
15989 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
15990 ops->decode_linespec = tracepoint_decode_linespec;
15991
55aa24fb
SDJ
15992 /* Probe tracepoints. */
15993 ops = &tracepoint_probe_breakpoint_ops;
15994 *ops = tracepoint_breakpoint_ops;
15995 ops->create_sals_from_address = tracepoint_probe_create_sals_from_address;
15996 ops->decode_linespec = tracepoint_probe_decode_linespec;
15997
983af33b
SDJ
15998 /* Static tracepoints with marker (`-m'). */
15999 ops = &strace_marker_breakpoint_ops;
16000 *ops = tracepoint_breakpoint_ops;
16001 ops->create_sals_from_address = strace_marker_create_sals_from_address;
16002 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
16003 ops->decode_linespec = strace_marker_decode_linespec;
2060206e
PA
16004
16005 /* Fork catchpoints. */
16006 ops = &catch_fork_breakpoint_ops;
16007 *ops = base_breakpoint_ops;
16008 ops->insert_location = insert_catch_fork;
16009 ops->remove_location = remove_catch_fork;
16010 ops->breakpoint_hit = breakpoint_hit_catch_fork;
16011 ops->print_it = print_it_catch_fork;
16012 ops->print_one = print_one_catch_fork;
16013 ops->print_mention = print_mention_catch_fork;
16014 ops->print_recreate = print_recreate_catch_fork;
16015
16016 /* Vfork catchpoints. */
16017 ops = &catch_vfork_breakpoint_ops;
16018 *ops = base_breakpoint_ops;
16019 ops->insert_location = insert_catch_vfork;
16020 ops->remove_location = remove_catch_vfork;
16021 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
16022 ops->print_it = print_it_catch_vfork;
16023 ops->print_one = print_one_catch_vfork;
16024 ops->print_mention = print_mention_catch_vfork;
16025 ops->print_recreate = print_recreate_catch_vfork;
16026
16027 /* Exec catchpoints. */
16028 ops = &catch_exec_breakpoint_ops;
16029 *ops = base_breakpoint_ops;
16030 ops->dtor = dtor_catch_exec;
16031 ops->insert_location = insert_catch_exec;
16032 ops->remove_location = remove_catch_exec;
16033 ops->breakpoint_hit = breakpoint_hit_catch_exec;
16034 ops->print_it = print_it_catch_exec;
16035 ops->print_one = print_one_catch_exec;
16036 ops->print_mention = print_mention_catch_exec;
16037 ops->print_recreate = print_recreate_catch_exec;
16038
16039 /* Syscall catchpoints. */
16040 ops = &catch_syscall_breakpoint_ops;
16041 *ops = base_breakpoint_ops;
16042 ops->dtor = dtor_catch_syscall;
16043 ops->insert_location = insert_catch_syscall;
16044 ops->remove_location = remove_catch_syscall;
16045 ops->breakpoint_hit = breakpoint_hit_catch_syscall;
16046 ops->print_it = print_it_catch_syscall;
16047 ops->print_one = print_one_catch_syscall;
16048 ops->print_mention = print_mention_catch_syscall;
16049 ops->print_recreate = print_recreate_catch_syscall;
edcc5120
TT
16050
16051 /* Solib-related catchpoints. */
16052 ops = &catch_solib_breakpoint_ops;
16053 *ops = base_breakpoint_ops;
16054 ops->dtor = dtor_catch_solib;
16055 ops->insert_location = insert_catch_solib;
16056 ops->remove_location = remove_catch_solib;
16057 ops->breakpoint_hit = breakpoint_hit_catch_solib;
16058 ops->check_status = check_status_catch_solib;
16059 ops->print_it = print_it_catch_solib;
16060 ops->print_one = print_one_catch_solib;
16061 ops->print_mention = print_mention_catch_solib;
16062 ops->print_recreate = print_recreate_catch_solib;
e7e0cddf
SS
16063
16064 ops = &dprintf_breakpoint_ops;
16065 *ops = bkpt_base_breakpoint_ops;
5c2b4418 16066 ops->re_set = dprintf_re_set;
e7e0cddf
SS
16067 ops->resources_needed = bkpt_resources_needed;
16068 ops->print_it = bkpt_print_it;
16069 ops->print_mention = bkpt_print_mention;
2d9442cc 16070 ops->print_recreate = dprintf_print_recreate;
9d6e6e84 16071 ops->after_condition_true = dprintf_after_condition_true;
2060206e
PA
16072}
16073
8bfd80db
YQ
16074/* Chain containing all defined "enable breakpoint" subcommands. */
16075
16076static struct cmd_list_element *enablebreaklist = NULL;
16077
c906108c 16078void
fba45db2 16079_initialize_breakpoint (void)
c906108c
SS
16080{
16081 struct cmd_list_element *c;
16082
2060206e
PA
16083 initialize_breakpoint_ops ();
16084
84acb35a 16085 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
63644780 16086 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
6c95b8df 16087 observer_attach_inferior_exit (clear_syscall_counts);
1f3b5d1b 16088 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
84acb35a 16089
55aa24fb
SDJ
16090 breakpoint_objfile_key
16091 = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes);
17450429 16092
fa3064dd 16093 catch_syscall_inferior_data
8e260fc0
TT
16094 = register_inferior_data_with_cleanup (NULL,
16095 catch_syscall_inferior_data_cleanup);
fa3064dd 16096
c906108c
SS
16097 breakpoint_chain = 0;
16098 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
16099 before a breakpoint is set. */
16100 breakpoint_count = 0;
16101
1042e4c0
SS
16102 tracepoint_count = 0;
16103
1bedd215
AC
16104 add_com ("ignore", class_breakpoint, ignore_command, _("\
16105Set ignore-count of breakpoint number N to COUNT.\n\
16106Usage is `ignore N COUNT'."));
c906108c 16107 if (xdb_commands)
c5aa993b 16108 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 16109
1bedd215
AC
16110 add_com ("commands", class_breakpoint, commands_command, _("\
16111Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
16112Give breakpoint number as argument after \"commands\".\n\
16113With no argument, the targeted breakpoint is the last one set.\n\
16114The commands themselves follow starting on the next line.\n\
16115Type a line containing \"end\" to indicate the end of them.\n\
16116Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 16117then no output is printed when it is hit, except what the commands print."));
c906108c 16118
d55637df 16119 c = add_com ("condition", class_breakpoint, condition_command, _("\
1bedd215 16120Specify breakpoint number N to break only if COND is true.\n\
c906108c 16121Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 16122expression to be evaluated whenever breakpoint N is reached."));
d55637df 16123 set_cmd_completer (c, condition_completer);
c906108c 16124
1bedd215 16125 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 16126Set a temporary breakpoint.\n\
c906108c
SS
16127Like \"break\" except the breakpoint is only temporary,\n\
16128so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
16129by using \"enable delete\" on the breakpoint number.\n\
16130\n"
16131BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 16132 set_cmd_completer (c, location_completer);
c94fdfd0 16133
1bedd215 16134 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
a3be7890 16135Set a hardware assisted breakpoint.\n\
c906108c 16136Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
16137some target hardware may not have this support.\n\
16138\n"
16139BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 16140 set_cmd_completer (c, location_completer);
c906108c 16141
1bedd215 16142 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 16143Set a temporary hardware assisted breakpoint.\n\
c906108c 16144Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
16145so it will be deleted when hit.\n\
16146\n"
16147BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 16148 set_cmd_completer (c, location_completer);
c906108c 16149
1bedd215
AC
16150 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
16151Enable some breakpoints.\n\
c906108c
SS
16152Give breakpoint numbers (separated by spaces) as arguments.\n\
16153With no subcommand, breakpoints are enabled until you command otherwise.\n\
16154This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16155With a subcommand you can enable temporarily."),
c906108c
SS
16156 &enablelist, "enable ", 1, &cmdlist);
16157 if (xdb_commands)
1bedd215
AC
16158 add_com ("ab", class_breakpoint, enable_command, _("\
16159Enable some breakpoints.\n\
c906108c
SS
16160Give breakpoint numbers (separated by spaces) as arguments.\n\
16161With no subcommand, breakpoints are enabled until you command otherwise.\n\
16162This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16163With a subcommand you can enable temporarily."));
c906108c
SS
16164
16165 add_com_alias ("en", "enable", class_breakpoint, 1);
16166
84951ab5 16167 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
1bedd215 16168Enable some breakpoints.\n\
c906108c
SS
16169Give breakpoint numbers (separated by spaces) as arguments.\n\
16170This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 16171May be abbreviated to simply \"enable\".\n"),
c5aa993b 16172 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 16173
1a966eab
AC
16174 add_cmd ("once", no_class, enable_once_command, _("\
16175Enable breakpoints for one hit. Give breakpoint numbers.\n\
16176If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
16177 &enablebreaklist);
16178
1a966eab
AC
16179 add_cmd ("delete", no_class, enable_delete_command, _("\
16180Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16181If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16182 &enablebreaklist);
16183
816338b5
SS
16184 add_cmd ("count", no_class, enable_count_command, _("\
16185Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16186If a breakpoint is hit while enabled in this fashion,\n\
16187the count is decremented; when it reaches zero, the breakpoint is disabled."),
16188 &enablebreaklist);
16189
1a966eab
AC
16190 add_cmd ("delete", no_class, enable_delete_command, _("\
16191Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16192If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
16193 &enablelist);
16194
1a966eab
AC
16195 add_cmd ("once", no_class, enable_once_command, _("\
16196Enable breakpoints for one hit. Give breakpoint numbers.\n\
16197If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
816338b5
SS
16198 &enablelist);
16199
16200 add_cmd ("count", no_class, enable_count_command, _("\
16201Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16202If a breakpoint is hit while enabled in this fashion,\n\
16203the count is decremented; when it reaches zero, the breakpoint is disabled."),
c906108c
SS
16204 &enablelist);
16205
1bedd215
AC
16206 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
16207Disable some breakpoints.\n\
c906108c
SS
16208Arguments are breakpoint numbers with spaces in between.\n\
16209To disable all breakpoints, give no argument.\n\
64b9b334 16210A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
c906108c
SS
16211 &disablelist, "disable ", 1, &cmdlist);
16212 add_com_alias ("dis", "disable", class_breakpoint, 1);
16213 add_com_alias ("disa", "disable", class_breakpoint, 1);
16214 if (xdb_commands)
1bedd215
AC
16215 add_com ("sb", class_breakpoint, disable_command, _("\
16216Disable some breakpoints.\n\
c906108c
SS
16217Arguments are breakpoint numbers with spaces in between.\n\
16218To disable all breakpoints, give no argument.\n\
64b9b334 16219A disabled breakpoint is not forgotten, but has no effect until re-enabled."));
c906108c 16220
1a966eab
AC
16221 add_cmd ("breakpoints", class_alias, disable_command, _("\
16222Disable some breakpoints.\n\
c906108c
SS
16223Arguments are breakpoint numbers with spaces in between.\n\
16224To disable all breakpoints, give no argument.\n\
64b9b334 16225A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
1a966eab 16226This command may be abbreviated \"disable\"."),
c906108c
SS
16227 &disablelist);
16228
1bedd215
AC
16229 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
16230Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16231Arguments are breakpoint numbers with spaces in between.\n\
16232To delete all breakpoints, give no argument.\n\
16233\n\
16234Also a prefix command for deletion of other GDB objects.\n\
1bedd215 16235The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
16236 &deletelist, "delete ", 1, &cmdlist);
16237 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 16238 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 16239 if (xdb_commands)
1bedd215
AC
16240 add_com ("db", class_breakpoint, delete_command, _("\
16241Delete some breakpoints.\n\
c906108c 16242Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 16243To delete all breakpoints, give no argument.\n"));
c906108c 16244
1a966eab
AC
16245 add_cmd ("breakpoints", class_alias, delete_command, _("\
16246Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
16247Arguments are breakpoint numbers with spaces in between.\n\
16248To delete all breakpoints, give no argument.\n\
1a966eab 16249This command may be abbreviated \"delete\"."),
c906108c
SS
16250 &deletelist);
16251
1bedd215
AC
16252 add_com ("clear", class_breakpoint, clear_command, _("\
16253Clear breakpoint at specified line or function.\n\
c906108c
SS
16254Argument may be line number, function name, or \"*\" and an address.\n\
16255If line number is specified, all breakpoints in that line are cleared.\n\
16256If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
16257If an address is specified, breakpoints at that address are cleared.\n\
16258\n\
16259With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
16260is executing in.\n\
16261\n\
1bedd215 16262See also the \"delete\" command which clears breakpoints by number."));
a6cc4789 16263 add_com_alias ("cl", "clear", class_breakpoint, 1);
c906108c 16264
1bedd215 16265 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
16266Set breakpoint at specified line or function.\n"
16267BREAK_ARGS_HELP ("break")));
5ba2abeb 16268 set_cmd_completer (c, location_completer);
c94fdfd0 16269
c906108c
SS
16270 add_com_alias ("b", "break", class_run, 1);
16271 add_com_alias ("br", "break", class_run, 1);
16272 add_com_alias ("bre", "break", class_run, 1);
16273 add_com_alias ("brea", "break", class_run, 1);
16274
7681d515
PM
16275 if (xdb_commands)
16276 add_com_alias ("ba", "break", class_breakpoint, 1);
c906108c
SS
16277
16278 if (dbx_commands)
16279 {
1bedd215
AC
16280 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
16281Break in function/address or break at a line in the current file."),
c5aa993b
JM
16282 &stoplist, "stop ", 1, &cmdlist);
16283 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 16284 _("Break in function or address."), &stoplist);
c5aa993b 16285 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 16286 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
16287 add_com ("status", class_info, breakpoints_info, _("\
16288Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16289The \"Type\" column indicates one of:\n\
16290\tbreakpoint - normal breakpoint\n\
16291\twatchpoint - watchpoint\n\
16292The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16293the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16294breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16295address and file/line number respectively.\n\
16296\n\
16297Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16298are set to the address of the last breakpoint listed unless the command\n\
16299is prefixed with \"server \".\n\n\
c906108c 16300Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16301breakpoint set."));
c906108c
SS
16302 }
16303
1bedd215 16304 add_info ("breakpoints", breakpoints_info, _("\
e5a67952 16305Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
c906108c
SS
16306The \"Type\" column indicates one of:\n\
16307\tbreakpoint - normal breakpoint\n\
16308\twatchpoint - watchpoint\n\
16309The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16310the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16311breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16312address and file/line number respectively.\n\
16313\n\
16314Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16315are set to the address of the last breakpoint listed unless the command\n\
16316is prefixed with \"server \".\n\n\
c906108c 16317Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16318breakpoint set."));
c906108c 16319
6b04bdb7
MS
16320 add_info_alias ("b", "breakpoints", 1);
16321
c906108c 16322 if (xdb_commands)
1bedd215
AC
16323 add_com ("lb", class_breakpoint, breakpoints_info, _("\
16324Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16325The \"Type\" column indicates one of:\n\
16326\tbreakpoint - normal breakpoint\n\
16327\twatchpoint - watchpoint\n\
16328The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16329the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16330breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
16331address and file/line number respectively.\n\
16332\n\
16333Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16334are set to the address of the last breakpoint listed unless the command\n\
16335is prefixed with \"server \".\n\n\
c906108c 16336Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 16337breakpoint set."));
c906108c 16338
1a966eab
AC
16339 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
16340Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
16341The \"Type\" column indicates one of:\n\
16342\tbreakpoint - normal breakpoint\n\
16343\twatchpoint - watchpoint\n\
16344\tlongjmp - internal breakpoint used to step through longjmp()\n\
16345\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
16346\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
16347\tfinish - internal breakpoint used by the \"finish\" command\n\
16348The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
16349the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16350breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
16351address and file/line number respectively.\n\
16352\n\
16353Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
16354are set to the address of the last breakpoint listed unless the command\n\
16355is prefixed with \"server \".\n\n\
c906108c 16356Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 16357breakpoint set."),
c906108c
SS
16358 &maintenanceinfolist);
16359
44feb3ce
TT
16360 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
16361Set catchpoints to catch events."),
16362 &catch_cmdlist, "catch ",
16363 0/*allow-unknown*/, &cmdlist);
16364
16365 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
16366Set temporary catchpoints to catch events."),
16367 &tcatch_cmdlist, "tcatch ",
16368 0/*allow-unknown*/, &cmdlist);
16369
44feb3ce
TT
16370 add_catch_command ("fork", _("Catch calls to fork."),
16371 catch_fork_command_1,
a96d9b2e 16372 NULL,
44feb3ce
TT
16373 (void *) (uintptr_t) catch_fork_permanent,
16374 (void *) (uintptr_t) catch_fork_temporary);
16375 add_catch_command ("vfork", _("Catch calls to vfork."),
16376 catch_fork_command_1,
a96d9b2e 16377 NULL,
44feb3ce
TT
16378 (void *) (uintptr_t) catch_vfork_permanent,
16379 (void *) (uintptr_t) catch_vfork_temporary);
16380 add_catch_command ("exec", _("Catch calls to exec."),
16381 catch_exec_command_1,
a96d9b2e
SDJ
16382 NULL,
16383 CATCH_PERMANENT,
16384 CATCH_TEMPORARY);
edcc5120
TT
16385 add_catch_command ("load", _("Catch loads of shared libraries.\n\
16386Usage: catch load [REGEX]\n\
16387If REGEX is given, only stop for libraries matching the regular expression."),
16388 catch_load_command_1,
16389 NULL,
16390 CATCH_PERMANENT,
16391 CATCH_TEMPORARY);
16392 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
16393Usage: catch unload [REGEX]\n\
16394If REGEX is given, only stop for libraries matching the regular expression."),
16395 catch_unload_command_1,
16396 NULL,
16397 CATCH_PERMANENT,
16398 CATCH_TEMPORARY);
a96d9b2e
SDJ
16399 add_catch_command ("syscall", _("\
16400Catch system calls by their names and/or numbers.\n\
16401Arguments say which system calls to catch. If no arguments\n\
16402are given, every system call will be caught.\n\
16403Arguments, if given, should be one or more system call names\n\
16404(if your system supports that), or system call numbers."),
16405 catch_syscall_command_1,
16406 catch_syscall_completer,
44feb3ce
TT
16407 CATCH_PERMANENT,
16408 CATCH_TEMPORARY);
c5aa993b 16409
1bedd215
AC
16410 c = add_com ("watch", class_breakpoint, watch_command, _("\
16411Set a watchpoint for an expression.\n\
06a64a0b 16412Usage: watch [-l|-location] EXPRESSION\n\
c906108c 16413A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16414an expression changes.\n\
16415If -l or -location is given, this evaluates EXPRESSION and watches\n\
16416the memory to which it refers."));
65d12d83 16417 set_cmd_completer (c, expression_completer);
c906108c 16418
1bedd215
AC
16419 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
16420Set a read watchpoint for an expression.\n\
06a64a0b 16421Usage: rwatch [-l|-location] EXPRESSION\n\
c906108c 16422A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16423an expression is read.\n\
16424If -l or -location is given, this evaluates EXPRESSION and watches\n\
16425the memory to which it refers."));
65d12d83 16426 set_cmd_completer (c, expression_completer);
c906108c 16427
1bedd215
AC
16428 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
16429Set a watchpoint for an expression.\n\
06a64a0b 16430Usage: awatch [-l|-location] EXPRESSION\n\
c906108c 16431A watchpoint stops execution of your program whenever the value of\n\
06a64a0b
TT
16432an expression is either read or written.\n\
16433If -l or -location is given, this evaluates EXPRESSION and watches\n\
16434the memory to which it refers."));
65d12d83 16435 set_cmd_completer (c, expression_completer);
c906108c 16436
d77f58be 16437 add_info ("watchpoints", watchpoints_info, _("\
e5a67952 16438Status of specified watchpoints (all watchpoints if no argument)."));
c906108c 16439
920d2a44
AC
16440 /* XXX: cagney/2005-02-23: This should be a boolean, and should
16441 respond to changes - contrary to the description. */
85c07804
AC
16442 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
16443 &can_use_hw_watchpoints, _("\
16444Set debugger's willingness to use watchpoint hardware."), _("\
16445Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
16446If zero, gdb will not use hardware for new watchpoints, even if\n\
16447such is available. (However, any hardware watchpoints that were\n\
16448created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
16449hardware.)"),
16450 NULL,
920d2a44 16451 show_can_use_hw_watchpoints,
85c07804 16452 &setlist, &showlist);
c906108c
SS
16453
16454 can_use_hw_watchpoints = 1;
fa8d40ab 16455
1042e4c0
SS
16456 /* Tracepoint manipulation commands. */
16457
16458 c = add_com ("trace", class_breakpoint, trace_command, _("\
16459Set a tracepoint at specified line or function.\n\
16460\n"
16461BREAK_ARGS_HELP ("trace") "\n\
16462Do \"help tracepoints\" for info on other tracepoint commands."));
16463 set_cmd_completer (c, location_completer);
16464
16465 add_com_alias ("tp", "trace", class_alias, 0);
16466 add_com_alias ("tr", "trace", class_alias, 1);
16467 add_com_alias ("tra", "trace", class_alias, 1);
16468 add_com_alias ("trac", "trace", class_alias, 1);
16469
7a697b8d
SS
16470 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
16471Set a fast tracepoint at specified line or function.\n\
16472\n"
16473BREAK_ARGS_HELP ("ftrace") "\n\
16474Do \"help tracepoints\" for info on other tracepoint commands."));
16475 set_cmd_completer (c, location_completer);
16476
0fb4aa4b
PA
16477 c = add_com ("strace", class_breakpoint, strace_command, _("\
16478Set a static tracepoint at specified line, function or marker.\n\
16479\n\
16480strace [LOCATION] [if CONDITION]\n\
16481LOCATION may be a line number, function name, \"*\" and an address,\n\
16482or -m MARKER_ID.\n\
16483If a line number is specified, probe the marker at start of code\n\
16484for that line. If a function is specified, probe the marker at start\n\
16485of code for that function. If an address is specified, probe the marker\n\
16486at that exact address. If a marker id is specified, probe the marker\n\
16487with that name. With no LOCATION, uses current execution address of\n\
16488the selected stack frame.\n\
16489Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
16490This collects arbitrary user data passed in the probe point call to the\n\
16491tracing library. You can inspect it when analyzing the trace buffer,\n\
16492by printing the $_sdata variable like any other convenience variable.\n\
16493\n\
16494CONDITION is a boolean expression.\n\
16495\n\
d41c0fc8
PA
16496Multiple tracepoints at one place are permitted, and useful if their\n\
16497conditions are different.\n\
0fb4aa4b
PA
16498\n\
16499Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
16500Do \"help tracepoints\" for info on other tracepoint commands."));
16501 set_cmd_completer (c, location_completer);
16502
1042e4c0 16503 add_info ("tracepoints", tracepoints_info, _("\
e5a67952 16504Status of specified tracepoints (all tracepoints if no argument).\n\
1042e4c0
SS
16505Convenience variable \"$tpnum\" contains the number of the\n\
16506last tracepoint set."));
16507
16508 add_info_alias ("tp", "tracepoints", 1);
16509
16510 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
16511Delete specified tracepoints.\n\
16512Arguments are tracepoint numbers, separated by spaces.\n\
16513No argument means delete all tracepoints."),
16514 &deletelist);
7e20dfcd 16515 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
1042e4c0
SS
16516
16517 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
16518Disable specified tracepoints.\n\
16519Arguments are tracepoint numbers, separated by spaces.\n\
16520No argument means disable all tracepoints."),
16521 &disablelist);
16522 deprecate_cmd (c, "disable");
16523
16524 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
16525Enable specified tracepoints.\n\
16526Arguments are tracepoint numbers, separated by spaces.\n\
16527No argument means enable all tracepoints."),
16528 &enablelist);
16529 deprecate_cmd (c, "enable");
16530
16531 add_com ("passcount", class_trace, trace_pass_command, _("\
16532Set the passcount for a tracepoint.\n\
16533The trace will end when the tracepoint has been passed 'count' times.\n\
16534Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
16535if TPNUM is omitted, passcount refers to the last tracepoint defined."));
16536
6149aea9
PA
16537 add_prefix_cmd ("save", class_breakpoint, save_command,
16538 _("Save breakpoint definitions as a script."),
16539 &save_cmdlist, "save ",
16540 0/*allow-unknown*/, &cmdlist);
16541
16542 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
16543Save current breakpoint definitions as a script.\n\
cce7e648 16544This includes all types of breakpoints (breakpoints, watchpoints,\n\
6149aea9
PA
16545catchpoints, tracepoints). Use the 'source' command in another debug\n\
16546session to restore them."),
16547 &save_cmdlist);
16548 set_cmd_completer (c, filename_completer);
16549
16550 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
1042e4c0 16551Save current tracepoint definitions as a script.\n\
6149aea9
PA
16552Use the 'source' command in another debug session to restore them."),
16553 &save_cmdlist);
1042e4c0
SS
16554 set_cmd_completer (c, filename_completer);
16555
6149aea9
PA
16556 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
16557 deprecate_cmd (c, "save tracepoints");
16558
1bedd215 16559 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
16560Breakpoint specific settings\n\
16561Configure various breakpoint-specific variables such as\n\
1bedd215 16562pending breakpoint behavior"),
fa8d40ab
JJ
16563 &breakpoint_set_cmdlist, "set breakpoint ",
16564 0/*allow-unknown*/, &setlist);
1bedd215 16565 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
16566Breakpoint specific settings\n\
16567Configure various breakpoint-specific variables such as\n\
1bedd215 16568pending breakpoint behavior"),
fa8d40ab
JJ
16569 &breakpoint_show_cmdlist, "show breakpoint ",
16570 0/*allow-unknown*/, &showlist);
16571
7915a72c
AC
16572 add_setshow_auto_boolean_cmd ("pending", no_class,
16573 &pending_break_support, _("\
16574Set debugger's behavior regarding pending breakpoints."), _("\
16575Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
16576If on, an unrecognized breakpoint location will cause gdb to create a\n\
16577pending breakpoint. If off, an unrecognized breakpoint location results in\n\
16578an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 16579user-query to see if a pending breakpoint should be created."),
2c5b56ce 16580 NULL,
920d2a44 16581 show_pending_break_support,
6e1d7d6c
AC
16582 &breakpoint_set_cmdlist,
16583 &breakpoint_show_cmdlist);
fa8d40ab
JJ
16584
16585 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
16586
16587 add_setshow_boolean_cmd ("auto-hw", no_class,
16588 &automatic_hardware_breakpoints, _("\
16589Set automatic usage of hardware breakpoints."), _("\
16590Show automatic usage of hardware breakpoints."), _("\
16591If set, the debugger will automatically use hardware breakpoints for\n\
16592breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
16593a warning will be emitted for such breakpoints."),
16594 NULL,
16595 show_automatic_hardware_breakpoints,
16596 &breakpoint_set_cmdlist,
16597 &breakpoint_show_cmdlist);
74960c60 16598
72d0e2c5
YQ
16599 add_setshow_auto_boolean_cmd ("always-inserted", class_support,
16600 &always_inserted_mode, _("\
74960c60
VP
16601Set mode for inserting breakpoints."), _("\
16602Show mode for inserting breakpoints."), _("\
33e5cbd6
PA
16603When this mode is off, breakpoints are inserted in inferior when it is\n\
16604resumed, and removed when execution stops. When this mode is on,\n\
16605breakpoints are inserted immediately and removed only when the user\n\
16606deletes the breakpoint. When this mode is auto (which is the default),\n\
16607the behaviour depends on the non-stop setting (see help set non-stop).\n\
16608In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
16609behaves as if always-inserted mode is on; if gdb is controlling the\n\
16610inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
72d0e2c5
YQ
16611 NULL,
16612 &show_always_inserted_mode,
16613 &breakpoint_set_cmdlist,
16614 &breakpoint_show_cmdlist);
f1310107 16615
b775012e
LM
16616 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
16617 condition_evaluation_enums,
16618 &condition_evaluation_mode_1, _("\
16619Set mode of breakpoint condition evaluation."), _("\
16620Show mode of breakpoint condition evaluation."), _("\
d1cda5d9 16621When this is set to \"host\", breakpoint conditions will be\n\
b775012e
LM
16622evaluated on the host's side by GDB. When it is set to \"target\",\n\
16623breakpoint conditions will be downloaded to the target (if the target\n\
16624supports such feature) and conditions will be evaluated on the target's side.\n\
16625If this is set to \"auto\" (default), this will be automatically set to\n\
16626\"target\" if it supports condition evaluation, otherwise it will\n\
16627be set to \"gdb\""),
16628 &set_condition_evaluation_mode,
16629 &show_condition_evaluation_mode,
16630 &breakpoint_set_cmdlist,
16631 &breakpoint_show_cmdlist);
16632
f1310107
TJB
16633 add_com ("break-range", class_breakpoint, break_range_command, _("\
16634Set a breakpoint for an address range.\n\
16635break-range START-LOCATION, END-LOCATION\n\
16636where START-LOCATION and END-LOCATION can be one of the following:\n\
16637 LINENUM, for that line in the current file,\n\
16638 FILE:LINENUM, for that line in that file,\n\
16639 +OFFSET, for that number of lines after the current line\n\
16640 or the start of the range\n\
16641 FUNCTION, for the first line in that function,\n\
16642 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16643 *ADDRESS, for the instruction at that address.\n\
16644\n\
16645The breakpoint will stop execution of the inferior whenever it executes\n\
16646an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16647range (including START-LOCATION and END-LOCATION)."));
16648
e7e0cddf
SS
16649 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
16650Set a dynamic printf at specified line or function.\n\
16651dprintf location,format string,arg1,arg2,...\n\
16652location may be a line number, function name, or \"*\" and an address.\n\
16653If a line number is specified, break at start of code for that line.\n\
0e4777df 16654If a function is specified, break at start of code for that function."));
e7e0cddf
SS
16655 set_cmd_completer (c, location_completer);
16656
16657 add_setshow_enum_cmd ("dprintf-style", class_support,
16658 dprintf_style_enums, &dprintf_style, _("\
16659Set the style of usage for dynamic printf."), _("\
16660Show the style of usage for dynamic printf."), _("\
16661This setting chooses how GDB will do a dynamic printf.\n\
16662If the value is \"gdb\", then the printing is done by GDB to its own\n\
16663console, as with the \"printf\" command.\n\
16664If the value is \"call\", the print is done by calling a function in your\n\
16665program; by default printf(), but you can choose a different function or\n\
16666output stream by setting dprintf-function and dprintf-channel."),
16667 update_dprintf_commands, NULL,
16668 &setlist, &showlist);
16669
16670 dprintf_function = xstrdup ("printf");
16671 add_setshow_string_cmd ("dprintf-function", class_support,
16672 &dprintf_function, _("\
16673Set the function to use for dynamic printf"), _("\
16674Show the function to use for dynamic printf"), NULL,
16675 update_dprintf_commands, NULL,
16676 &setlist, &showlist);
16677
16678 dprintf_channel = xstrdup ("");
16679 add_setshow_string_cmd ("dprintf-channel", class_support,
16680 &dprintf_channel, _("\
16681Set the channel to use for dynamic printf"), _("\
16682Show the channel to use for dynamic printf"), NULL,
16683 update_dprintf_commands, NULL,
16684 &setlist, &showlist);
16685
d3ce09f5
SS
16686 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16687 &disconnected_dprintf, _("\
16688Set whether dprintf continues after GDB disconnects."), _("\
16689Show whether dprintf continues after GDB disconnects."), _("\
16690Use this to let dprintf commands continue to hit and produce output\n\
16691even if GDB disconnects or detaches from the target."),
16692 NULL,
16693 NULL,
16694 &setlist, &showlist);
16695
16696 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16697agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16698(target agent only) This is useful for formatted output in user-defined commands."));
16699
765dc015 16700 automatic_hardware_breakpoints = 1;
f3b1572e
PA
16701
16702 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
49fa26b0 16703 observer_attach_thread_exit (remove_threaded_breakpoints);
c906108c 16704}
This page took 2.414995 seconds and 4 git commands to generate.