PR symtab/19914 fix handling of dwp + split debug
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
... / ...
CommitLineData
1/* Everything about breakpoints, for GDB.
2
3 Copyright (C) 1986-2016 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "arch-utils.h"
22#include <ctype.h>
23#include "hashtab.h"
24#include "symtab.h"
25#include "frame.h"
26#include "breakpoint.h"
27#include "tracepoint.h"
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 "infrun.h"
36#include "gdbthread.h"
37#include "target.h"
38#include "language.h"
39#include "gdb-demangle.h"
40#include "filenames.h"
41#include "annotate.h"
42#include "symfile.h"
43#include "objfiles.h"
44#include "source.h"
45#include "linespec.h"
46#include "completer.h"
47#include "gdb.h"
48#include "ui-out.h"
49#include "cli/cli-script.h"
50#include "block.h"
51#include "solib.h"
52#include "solist.h"
53#include "observer.h"
54#include "memattr.h"
55#include "ada-lang.h"
56#include "top.h"
57#include "valprint.h"
58#include "jit.h"
59#include "parser-defs.h"
60#include "gdb_regex.h"
61#include "probe.h"
62#include "cli/cli-utils.h"
63#include "continuations.h"
64#include "stack.h"
65#include "skip.h"
66#include "ax-gdb.h"
67#include "dummy-frame.h"
68#include "interps.h"
69#include "format.h"
70#include "location.h"
71#include "thread-fsm.h"
72#include "tid-parse.h"
73
74/* readline include files */
75#include "readline/readline.h"
76#include "readline/history.h"
77
78/* readline defines this. */
79#undef savestring
80
81#include "mi/mi-common.h"
82#include "extension.h"
83
84/* Enums for exception-handling support. */
85enum exception_event_kind
86{
87 EX_EVENT_THROW,
88 EX_EVENT_RETHROW,
89 EX_EVENT_CATCH
90};
91
92/* Prototypes for local functions. */
93
94static void enable_delete_command (char *, int);
95
96static void enable_once_command (char *, int);
97
98static void enable_count_command (char *, int);
99
100static void disable_command (char *, int);
101
102static void enable_command (char *, int);
103
104static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
105 void *),
106 void *);
107
108static void ignore_command (char *, int);
109
110static int breakpoint_re_set_one (void *);
111
112static void breakpoint_re_set_default (struct breakpoint *);
113
114static void
115 create_sals_from_location_default (const struct event_location *location,
116 struct linespec_result *canonical,
117 enum bptype type_wanted);
118
119static void create_breakpoints_sal_default (struct gdbarch *,
120 struct linespec_result *,
121 char *, char *, enum bptype,
122 enum bpdisp, int, int,
123 int,
124 const struct breakpoint_ops *,
125 int, int, int, unsigned);
126
127static void decode_location_default (struct breakpoint *b,
128 const struct event_location *location,
129 struct program_space *search_pspace,
130 struct symtabs_and_lines *sals);
131
132static void clear_command (char *, int);
133
134static void catch_command (char *, int);
135
136static int can_use_hardware_watchpoint (struct value *);
137
138static void break_command_1 (char *, int, int);
139
140static void mention (struct breakpoint *);
141
142static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
143 enum bptype,
144 const struct breakpoint_ops *);
145static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
146 const struct symtab_and_line *);
147
148/* This function is used in gdbtk sources and thus can not be made
149 static. */
150struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
151 struct symtab_and_line,
152 enum bptype,
153 const struct breakpoint_ops *);
154
155static struct breakpoint *
156 momentary_breakpoint_from_master (struct breakpoint *orig,
157 enum bptype type,
158 const struct breakpoint_ops *ops,
159 int loc_enabled);
160
161static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
162
163static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
164 CORE_ADDR bpaddr,
165 enum bptype bptype);
166
167static void describe_other_breakpoints (struct gdbarch *,
168 struct program_space *, CORE_ADDR,
169 struct obj_section *, int);
170
171static int watchpoint_locations_match (struct bp_location *loc1,
172 struct bp_location *loc2);
173
174static int breakpoint_location_address_match (struct bp_location *bl,
175 struct address_space *aspace,
176 CORE_ADDR addr);
177
178static int breakpoint_location_address_range_overlap (struct bp_location *,
179 struct address_space *,
180 CORE_ADDR, int);
181
182static void breakpoints_info (char *, int);
183
184static void watchpoints_info (char *, int);
185
186static int breakpoint_1 (char *, int,
187 int (*) (const struct breakpoint *));
188
189static int breakpoint_cond_eval (void *);
190
191static void cleanup_executing_breakpoints (void *);
192
193static void commands_command (char *, int);
194
195static void condition_command (char *, int);
196
197typedef enum
198 {
199 mark_inserted,
200 mark_uninserted
201 }
202insertion_state_t;
203
204static int remove_breakpoint (struct bp_location *, insertion_state_t);
205static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
206
207static enum print_stop_action print_bp_stop_message (bpstat bs);
208
209static int watchpoint_check (void *);
210
211static void maintenance_info_breakpoints (char *, int);
212
213static int hw_breakpoint_used_count (void);
214
215static int hw_watchpoint_use_count (struct breakpoint *);
216
217static int hw_watchpoint_used_count_others (struct breakpoint *except,
218 enum bptype type,
219 int *other_type_used);
220
221static void hbreak_command (char *, int);
222
223static void thbreak_command (char *, int);
224
225static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
226 int count);
227
228static void stop_command (char *arg, int from_tty);
229
230static void stopin_command (char *arg, int from_tty);
231
232static void stopat_command (char *arg, int from_tty);
233
234static void tcatch_command (char *arg, int from_tty);
235
236static void free_bp_location (struct bp_location *loc);
237static void incref_bp_location (struct bp_location *loc);
238static void decref_bp_location (struct bp_location **loc);
239
240static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
241
242/* update_global_location_list's modes of operation wrt to whether to
243 insert locations now. */
244enum ugll_insert_mode
245{
246 /* Don't insert any breakpoint locations into the inferior, only
247 remove already-inserted locations that no longer should be
248 inserted. Functions that delete a breakpoint or breakpoints
249 should specify this mode, so that deleting a breakpoint doesn't
250 have the side effect of inserting the locations of other
251 breakpoints that are marked not-inserted, but should_be_inserted
252 returns true on them.
253
254 This behavior is useful is situations close to tear-down -- e.g.,
255 after an exec, while the target still has execution, but
256 breakpoint shadows of the previous executable image should *NOT*
257 be restored to the new image; or before detaching, where the
258 target still has execution and wants to delete breakpoints from
259 GDB's lists, and all breakpoints had already been removed from
260 the inferior. */
261 UGLL_DONT_INSERT,
262
263 /* May insert breakpoints iff breakpoints_should_be_inserted_now
264 claims breakpoints should be inserted now. */
265 UGLL_MAY_INSERT,
266
267 /* Insert locations now, irrespective of
268 breakpoints_should_be_inserted_now. E.g., say all threads are
269 stopped right now, and the user did "continue". We need to
270 insert breakpoints _before_ resuming the target, but
271 UGLL_MAY_INSERT wouldn't insert them, because
272 breakpoints_should_be_inserted_now returns false at that point,
273 as no thread is running yet. */
274 UGLL_INSERT
275};
276
277static void update_global_location_list (enum ugll_insert_mode);
278
279static void update_global_location_list_nothrow (enum ugll_insert_mode);
280
281static int is_hardware_watchpoint (const struct breakpoint *bpt);
282
283static void insert_breakpoint_locations (void);
284
285static void tracepoints_info (char *, int);
286
287static void delete_trace_command (char *, int);
288
289static void enable_trace_command (char *, int);
290
291static void disable_trace_command (char *, int);
292
293static void trace_pass_command (char *, int);
294
295static void set_tracepoint_count (int num);
296
297static int is_masked_watchpoint (const struct breakpoint *b);
298
299static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
300
301/* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
302 otherwise. */
303
304static int strace_marker_p (struct breakpoint *b);
305
306/* The breakpoint_ops structure to be inherited by all breakpoint_ops
307 that are implemented on top of software or hardware breakpoints
308 (user breakpoints, internal and momentary breakpoints, etc.). */
309static struct breakpoint_ops bkpt_base_breakpoint_ops;
310
311/* Internal breakpoints class type. */
312static struct breakpoint_ops internal_breakpoint_ops;
313
314/* Momentary breakpoints class type. */
315static struct breakpoint_ops momentary_breakpoint_ops;
316
317/* Momentary breakpoints for bp_longjmp and bp_exception class type. */
318static struct breakpoint_ops longjmp_breakpoint_ops;
319
320/* The breakpoint_ops structure to be used in regular user created
321 breakpoints. */
322struct breakpoint_ops bkpt_breakpoint_ops;
323
324/* Breakpoints set on probes. */
325static struct breakpoint_ops bkpt_probe_breakpoint_ops;
326
327/* Dynamic printf class type. */
328struct breakpoint_ops dprintf_breakpoint_ops;
329
330/* The style in which to perform a dynamic printf. This is a user
331 option because different output options have different tradeoffs;
332 if GDB does the printing, there is better error handling if there
333 is a problem with any of the arguments, but using an inferior
334 function lets you have special-purpose printers and sending of
335 output to the same place as compiled-in print functions. */
336
337static const char dprintf_style_gdb[] = "gdb";
338static const char dprintf_style_call[] = "call";
339static const char dprintf_style_agent[] = "agent";
340static const char *const dprintf_style_enums[] = {
341 dprintf_style_gdb,
342 dprintf_style_call,
343 dprintf_style_agent,
344 NULL
345};
346static const char *dprintf_style = dprintf_style_gdb;
347
348/* The function to use for dynamic printf if the preferred style is to
349 call into the inferior. The value is simply a string that is
350 copied into the command, so it can be anything that GDB can
351 evaluate to a callable address, not necessarily a function name. */
352
353static char *dprintf_function = "";
354
355/* The channel to use for dynamic printf if the preferred style is to
356 call into the inferior; if a nonempty string, it will be passed to
357 the call as the first argument, with the format string as the
358 second. As with the dprintf function, this can be anything that
359 GDB knows how to evaluate, so in addition to common choices like
360 "stderr", this could be an app-specific expression like
361 "mystreams[curlogger]". */
362
363static char *dprintf_channel = "";
364
365/* True if dprintf commands should continue to operate even if GDB
366 has disconnected. */
367static int disconnected_dprintf = 1;
368
369/* A reference-counted struct command_line. This lets multiple
370 breakpoints share a single command list. */
371struct counted_command_line
372{
373 /* The reference count. */
374 int refc;
375
376 /* The command list. */
377 struct command_line *commands;
378};
379
380struct command_line *
381breakpoint_commands (struct breakpoint *b)
382{
383 return b->commands ? b->commands->commands : NULL;
384}
385
386/* Flag indicating that a command has proceeded the inferior past the
387 current breakpoint. */
388
389static int breakpoint_proceeded;
390
391const char *
392bpdisp_text (enum bpdisp disp)
393{
394 /* NOTE: the following values are a part of MI protocol and
395 represent values of 'disp' field returned when inferior stops at
396 a breakpoint. */
397 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
398
399 return bpdisps[(int) disp];
400}
401
402/* Prototypes for exported functions. */
403/* If FALSE, gdb will not use hardware support for watchpoints, even
404 if such is available. */
405static int can_use_hw_watchpoints;
406
407static void
408show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
409 struct cmd_list_element *c,
410 const char *value)
411{
412 fprintf_filtered (file,
413 _("Debugger's willingness to use "
414 "watchpoint hardware is %s.\n"),
415 value);
416}
417
418/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
419 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
420 for unrecognized breakpoint locations.
421 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
422static enum auto_boolean pending_break_support;
423static void
424show_pending_break_support (struct ui_file *file, int from_tty,
425 struct cmd_list_element *c,
426 const char *value)
427{
428 fprintf_filtered (file,
429 _("Debugger's behavior regarding "
430 "pending breakpoints is %s.\n"),
431 value);
432}
433
434/* If 1, gdb will automatically use hardware breakpoints for breakpoints
435 set with "break" but falling in read-only memory.
436 If 0, gdb will warn about such breakpoints, but won't automatically
437 use hardware breakpoints. */
438static int automatic_hardware_breakpoints;
439static void
440show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
441 struct cmd_list_element *c,
442 const char *value)
443{
444 fprintf_filtered (file,
445 _("Automatic usage of hardware breakpoints is %s.\n"),
446 value);
447}
448
449/* If on, GDB keeps breakpoints inserted even if the inferior is
450 stopped, and immediately inserts any new breakpoints as soon as
451 they're created. If off (default), GDB keeps breakpoints off of
452 the target as long as possible. That is, it delays inserting
453 breakpoints until the next resume, and removes them again when the
454 target fully stops. This is a bit safer in case GDB crashes while
455 processing user input. */
456static int always_inserted_mode = 0;
457
458static void
459show_always_inserted_mode (struct ui_file *file, int from_tty,
460 struct cmd_list_element *c, const char *value)
461{
462 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
463 value);
464}
465
466/* See breakpoint.h. */
467
468int
469breakpoints_should_be_inserted_now (void)
470{
471 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
472 {
473 /* If breakpoints are global, they should be inserted even if no
474 thread under gdb's control is running, or even if there are
475 no threads under GDB's control yet. */
476 return 1;
477 }
478 else if (target_has_execution)
479 {
480 struct thread_info *tp;
481
482 if (always_inserted_mode)
483 {
484 /* The user wants breakpoints inserted even if all threads
485 are stopped. */
486 return 1;
487 }
488
489 if (threads_are_executing ())
490 return 1;
491
492 /* Don't remove breakpoints yet if, even though all threads are
493 stopped, we still have events to process. */
494 ALL_NON_EXITED_THREADS (tp)
495 if (tp->resumed
496 && tp->suspend.waitstatus_pending_p)
497 return 1;
498 }
499 return 0;
500}
501
502static const char condition_evaluation_both[] = "host or target";
503
504/* Modes for breakpoint condition evaluation. */
505static const char condition_evaluation_auto[] = "auto";
506static const char condition_evaluation_host[] = "host";
507static const char condition_evaluation_target[] = "target";
508static const char *const condition_evaluation_enums[] = {
509 condition_evaluation_auto,
510 condition_evaluation_host,
511 condition_evaluation_target,
512 NULL
513};
514
515/* Global that holds the current mode for breakpoint condition evaluation. */
516static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
517
518/* Global that we use to display information to the user (gets its value from
519 condition_evaluation_mode_1. */
520static const char *condition_evaluation_mode = condition_evaluation_auto;
521
522/* Translate a condition evaluation mode MODE into either "host"
523 or "target". This is used mostly to translate from "auto" to the
524 real setting that is being used. It returns the translated
525 evaluation mode. */
526
527static const char *
528translate_condition_evaluation_mode (const char *mode)
529{
530 if (mode == condition_evaluation_auto)
531 {
532 if (target_supports_evaluation_of_breakpoint_conditions ())
533 return condition_evaluation_target;
534 else
535 return condition_evaluation_host;
536 }
537 else
538 return mode;
539}
540
541/* Discovers what condition_evaluation_auto translates to. */
542
543static const char *
544breakpoint_condition_evaluation_mode (void)
545{
546 return translate_condition_evaluation_mode (condition_evaluation_mode);
547}
548
549/* Return true if GDB should evaluate breakpoint conditions or false
550 otherwise. */
551
552static int
553gdb_evaluates_breakpoint_condition_p (void)
554{
555 const char *mode = breakpoint_condition_evaluation_mode ();
556
557 return (mode == condition_evaluation_host);
558}
559
560void _initialize_breakpoint (void);
561
562/* Are we executing breakpoint commands? */
563static int executing_breakpoint_commands;
564
565/* Are overlay event breakpoints enabled? */
566static int overlay_events_enabled;
567
568/* See description in breakpoint.h. */
569int target_exact_watchpoints = 0;
570
571/* Walk the following statement or block through all breakpoints.
572 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
573 current breakpoint. */
574
575#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
576
577#define ALL_BREAKPOINTS_SAFE(B,TMP) \
578 for (B = breakpoint_chain; \
579 B ? (TMP=B->next, 1): 0; \
580 B = TMP)
581
582/* Similar iterator for the low-level breakpoints. SAFE variant is
583 not provided so update_global_location_list must not be called
584 while executing the block of ALL_BP_LOCATIONS. */
585
586#define ALL_BP_LOCATIONS(B,BP_TMP) \
587 for (BP_TMP = bp_location; \
588 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
589 BP_TMP++)
590
591/* Iterates through locations with address ADDRESS for the currently selected
592 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
593 to where the loop should start from.
594 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
595 appropriate location to start with. */
596
597#define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
598 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
599 BP_LOCP_TMP = BP_LOCP_START; \
600 BP_LOCP_START \
601 && (BP_LOCP_TMP < bp_location + bp_location_count \
602 && (*BP_LOCP_TMP)->address == ADDRESS); \
603 BP_LOCP_TMP++)
604
605/* Iterator for tracepoints only. */
606
607#define ALL_TRACEPOINTS(B) \
608 for (B = breakpoint_chain; B; B = B->next) \
609 if (is_tracepoint (B))
610
611/* Chains of all breakpoints defined. */
612
613struct breakpoint *breakpoint_chain;
614
615/* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
616
617static struct bp_location **bp_location;
618
619/* Number of elements of BP_LOCATION. */
620
621static unsigned bp_location_count;
622
623/* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
624 ADDRESS for the current elements of BP_LOCATION which get a valid
625 result from bp_location_has_shadow. You can use it for roughly
626 limiting the subrange of BP_LOCATION to scan for shadow bytes for
627 an address you need to read. */
628
629static CORE_ADDR bp_location_placed_address_before_address_max;
630
631/* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
632 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
633 BP_LOCATION which get a valid result from bp_location_has_shadow.
634 You can use it for roughly limiting the subrange of BP_LOCATION to
635 scan for shadow bytes for an address you need to read. */
636
637static CORE_ADDR bp_location_shadow_len_after_address_max;
638
639/* The locations that no longer correspond to any breakpoint, unlinked
640 from bp_location array, but for which a hit may still be reported
641 by a target. */
642VEC(bp_location_p) *moribund_locations = NULL;
643
644/* Number of last breakpoint made. */
645
646static int breakpoint_count;
647
648/* The value of `breakpoint_count' before the last command that
649 created breakpoints. If the last (break-like) command created more
650 than one breakpoint, then the difference between BREAKPOINT_COUNT
651 and PREV_BREAKPOINT_COUNT is more than one. */
652static int prev_breakpoint_count;
653
654/* Number of last tracepoint made. */
655
656static int tracepoint_count;
657
658static struct cmd_list_element *breakpoint_set_cmdlist;
659static struct cmd_list_element *breakpoint_show_cmdlist;
660struct cmd_list_element *save_cmdlist;
661
662/* See declaration at breakpoint.h. */
663
664struct breakpoint *
665breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
666 void *user_data)
667{
668 struct breakpoint *b = NULL;
669
670 ALL_BREAKPOINTS (b)
671 {
672 if (func (b, user_data) != 0)
673 break;
674 }
675
676 return b;
677}
678
679/* Return whether a breakpoint is an active enabled breakpoint. */
680static int
681breakpoint_enabled (struct breakpoint *b)
682{
683 return (b->enable_state == bp_enabled);
684}
685
686/* Set breakpoint count to NUM. */
687
688static void
689set_breakpoint_count (int num)
690{
691 prev_breakpoint_count = breakpoint_count;
692 breakpoint_count = num;
693 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
694}
695
696/* Used by `start_rbreak_breakpoints' below, to record the current
697 breakpoint count before "rbreak" creates any breakpoint. */
698static int rbreak_start_breakpoint_count;
699
700/* Called at the start an "rbreak" command to record the first
701 breakpoint made. */
702
703void
704start_rbreak_breakpoints (void)
705{
706 rbreak_start_breakpoint_count = breakpoint_count;
707}
708
709/* Called at the end of an "rbreak" command to record the last
710 breakpoint made. */
711
712void
713end_rbreak_breakpoints (void)
714{
715 prev_breakpoint_count = rbreak_start_breakpoint_count;
716}
717
718/* Used in run_command to zero the hit count when a new run starts. */
719
720void
721clear_breakpoint_hit_counts (void)
722{
723 struct breakpoint *b;
724
725 ALL_BREAKPOINTS (b)
726 b->hit_count = 0;
727}
728
729/* Allocate a new counted_command_line with reference count of 1.
730 The new structure owns COMMANDS. */
731
732static struct counted_command_line *
733alloc_counted_command_line (struct command_line *commands)
734{
735 struct counted_command_line *result = XNEW (struct counted_command_line);
736
737 result->refc = 1;
738 result->commands = commands;
739
740 return result;
741}
742
743/* Increment reference count. This does nothing if CMD is NULL. */
744
745static void
746incref_counted_command_line (struct counted_command_line *cmd)
747{
748 if (cmd)
749 ++cmd->refc;
750}
751
752/* Decrement reference count. If the reference count reaches 0,
753 destroy the counted_command_line. Sets *CMDP to NULL. This does
754 nothing if *CMDP is NULL. */
755
756static void
757decref_counted_command_line (struct counted_command_line **cmdp)
758{
759 if (*cmdp)
760 {
761 if (--(*cmdp)->refc == 0)
762 {
763 free_command_lines (&(*cmdp)->commands);
764 xfree (*cmdp);
765 }
766 *cmdp = NULL;
767 }
768}
769
770/* A cleanup function that calls decref_counted_command_line. */
771
772static void
773do_cleanup_counted_command_line (void *arg)
774{
775 decref_counted_command_line ((struct counted_command_line **) arg);
776}
777
778/* Create a cleanup that calls decref_counted_command_line on the
779 argument. */
780
781static struct cleanup *
782make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp)
783{
784 return make_cleanup (do_cleanup_counted_command_line, cmdp);
785}
786
787\f
788/* Return the breakpoint with the specified number, or NULL
789 if the number does not refer to an existing breakpoint. */
790
791struct breakpoint *
792get_breakpoint (int num)
793{
794 struct breakpoint *b;
795
796 ALL_BREAKPOINTS (b)
797 if (b->number == num)
798 return b;
799
800 return NULL;
801}
802
803\f
804
805/* Mark locations as "conditions have changed" in case the target supports
806 evaluating conditions on its side. */
807
808static void
809mark_breakpoint_modified (struct breakpoint *b)
810{
811 struct bp_location *loc;
812
813 /* This is only meaningful if the target is
814 evaluating conditions and if the user has
815 opted for condition evaluation on the target's
816 side. */
817 if (gdb_evaluates_breakpoint_condition_p ()
818 || !target_supports_evaluation_of_breakpoint_conditions ())
819 return;
820
821 if (!is_breakpoint (b))
822 return;
823
824 for (loc = b->loc; loc; loc = loc->next)
825 loc->condition_changed = condition_modified;
826}
827
828/* Mark location as "conditions have changed" in case the target supports
829 evaluating conditions on its side. */
830
831static void
832mark_breakpoint_location_modified (struct bp_location *loc)
833{
834 /* This is only meaningful if the target is
835 evaluating conditions and if the user has
836 opted for condition evaluation on the target's
837 side. */
838 if (gdb_evaluates_breakpoint_condition_p ()
839 || !target_supports_evaluation_of_breakpoint_conditions ())
840
841 return;
842
843 if (!is_breakpoint (loc->owner))
844 return;
845
846 loc->condition_changed = condition_modified;
847}
848
849/* Sets the condition-evaluation mode using the static global
850 condition_evaluation_mode. */
851
852static void
853set_condition_evaluation_mode (char *args, int from_tty,
854 struct cmd_list_element *c)
855{
856 const char *old_mode, *new_mode;
857
858 if ((condition_evaluation_mode_1 == condition_evaluation_target)
859 && !target_supports_evaluation_of_breakpoint_conditions ())
860 {
861 condition_evaluation_mode_1 = condition_evaluation_mode;
862 warning (_("Target does not support breakpoint condition evaluation.\n"
863 "Using host evaluation mode instead."));
864 return;
865 }
866
867 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
868 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
869
870 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
871 settings was "auto". */
872 condition_evaluation_mode = condition_evaluation_mode_1;
873
874 /* Only update the mode if the user picked a different one. */
875 if (new_mode != old_mode)
876 {
877 struct bp_location *loc, **loc_tmp;
878 /* If the user switched to a different evaluation mode, we
879 need to synch the changes with the target as follows:
880
881 "host" -> "target": Send all (valid) conditions to the target.
882 "target" -> "host": Remove all the conditions from the target.
883 */
884
885 if (new_mode == condition_evaluation_target)
886 {
887 /* Mark everything modified and synch conditions with the
888 target. */
889 ALL_BP_LOCATIONS (loc, loc_tmp)
890 mark_breakpoint_location_modified (loc);
891 }
892 else
893 {
894 /* Manually mark non-duplicate locations to synch conditions
895 with the target. We do this to remove all the conditions the
896 target knows about. */
897 ALL_BP_LOCATIONS (loc, loc_tmp)
898 if (is_breakpoint (loc->owner) && loc->inserted)
899 loc->needs_update = 1;
900 }
901
902 /* Do the update. */
903 update_global_location_list (UGLL_MAY_INSERT);
904 }
905
906 return;
907}
908
909/* Shows the current mode of breakpoint condition evaluation. Explicitly shows
910 what "auto" is translating to. */
911
912static void
913show_condition_evaluation_mode (struct ui_file *file, int from_tty,
914 struct cmd_list_element *c, const char *value)
915{
916 if (condition_evaluation_mode == condition_evaluation_auto)
917 fprintf_filtered (file,
918 _("Breakpoint condition evaluation "
919 "mode is %s (currently %s).\n"),
920 value,
921 breakpoint_condition_evaluation_mode ());
922 else
923 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
924 value);
925}
926
927/* A comparison function for bp_location AP and BP that is used by
928 bsearch. This comparison function only cares about addresses, unlike
929 the more general bp_location_compare function. */
930
931static int
932bp_location_compare_addrs (const void *ap, const void *bp)
933{
934 const struct bp_location *a = *(const struct bp_location **) ap;
935 const struct bp_location *b = *(const struct bp_location **) bp;
936
937 if (a->address == b->address)
938 return 0;
939 else
940 return ((a->address > b->address) - (a->address < b->address));
941}
942
943/* Helper function to skip all bp_locations with addresses
944 less than ADDRESS. It returns the first bp_location that
945 is greater than or equal to ADDRESS. If none is found, just
946 return NULL. */
947
948static struct bp_location **
949get_first_locp_gte_addr (CORE_ADDR address)
950{
951 struct bp_location dummy_loc;
952 struct bp_location *dummy_locp = &dummy_loc;
953 struct bp_location **locp_found = NULL;
954
955 /* Initialize the dummy location's address field. */
956 memset (&dummy_loc, 0, sizeof (struct bp_location));
957 dummy_loc.address = address;
958
959 /* Find a close match to the first location at ADDRESS. */
960 locp_found = ((struct bp_location **)
961 bsearch (&dummy_locp, bp_location, bp_location_count,
962 sizeof (struct bp_location **),
963 bp_location_compare_addrs));
964
965 /* Nothing was found, nothing left to do. */
966 if (locp_found == NULL)
967 return NULL;
968
969 /* We may have found a location that is at ADDRESS but is not the first in the
970 location's list. Go backwards (if possible) and locate the first one. */
971 while ((locp_found - 1) >= bp_location
972 && (*(locp_found - 1))->address == address)
973 locp_found--;
974
975 return locp_found;
976}
977
978void
979set_breakpoint_condition (struct breakpoint *b, const char *exp,
980 int from_tty)
981{
982 xfree (b->cond_string);
983 b->cond_string = NULL;
984
985 if (is_watchpoint (b))
986 {
987 struct watchpoint *w = (struct watchpoint *) b;
988
989 xfree (w->cond_exp);
990 w->cond_exp = NULL;
991 }
992 else
993 {
994 struct bp_location *loc;
995
996 for (loc = b->loc; loc; loc = loc->next)
997 {
998 xfree (loc->cond);
999 loc->cond = NULL;
1000
1001 /* No need to free the condition agent expression
1002 bytecode (if we have one). We will handle this
1003 when we go through update_global_location_list. */
1004 }
1005 }
1006
1007 if (*exp == 0)
1008 {
1009 if (from_tty)
1010 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
1011 }
1012 else
1013 {
1014 const char *arg = exp;
1015
1016 /* I don't know if it matters whether this is the string the user
1017 typed in or the decompiled expression. */
1018 b->cond_string = xstrdup (arg);
1019 b->condition_not_parsed = 0;
1020
1021 if (is_watchpoint (b))
1022 {
1023 struct watchpoint *w = (struct watchpoint *) b;
1024
1025 innermost_block = NULL;
1026 arg = exp;
1027 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
1028 if (*arg)
1029 error (_("Junk at end of expression"));
1030 w->cond_exp_valid_block = innermost_block;
1031 }
1032 else
1033 {
1034 struct bp_location *loc;
1035
1036 for (loc = b->loc; loc; loc = loc->next)
1037 {
1038 arg = exp;
1039 loc->cond =
1040 parse_exp_1 (&arg, loc->address,
1041 block_for_pc (loc->address), 0);
1042 if (*arg)
1043 error (_("Junk at end of expression"));
1044 }
1045 }
1046 }
1047 mark_breakpoint_modified (b);
1048
1049 observer_notify_breakpoint_modified (b);
1050}
1051
1052/* Completion for the "condition" command. */
1053
1054static VEC (char_ptr) *
1055condition_completer (struct cmd_list_element *cmd,
1056 const char *text, const char *word)
1057{
1058 const char *space;
1059
1060 text = skip_spaces_const (text);
1061 space = skip_to_space_const (text);
1062 if (*space == '\0')
1063 {
1064 int len;
1065 struct breakpoint *b;
1066 VEC (char_ptr) *result = NULL;
1067
1068 if (text[0] == '$')
1069 {
1070 /* We don't support completion of history indices. */
1071 if (isdigit (text[1]))
1072 return NULL;
1073 return complete_internalvar (&text[1]);
1074 }
1075
1076 /* We're completing the breakpoint number. */
1077 len = strlen (text);
1078
1079 ALL_BREAKPOINTS (b)
1080 {
1081 char number[50];
1082
1083 xsnprintf (number, sizeof (number), "%d", b->number);
1084
1085 if (strncmp (number, text, len) == 0)
1086 VEC_safe_push (char_ptr, result, xstrdup (number));
1087 }
1088
1089 return result;
1090 }
1091
1092 /* We're completing the expression part. */
1093 text = skip_spaces_const (space);
1094 return expression_completer (cmd, text, word);
1095}
1096
1097/* condition N EXP -- set break condition of breakpoint N to EXP. */
1098
1099static void
1100condition_command (char *arg, int from_tty)
1101{
1102 struct breakpoint *b;
1103 char *p;
1104 int bnum;
1105
1106 if (arg == 0)
1107 error_no_arg (_("breakpoint number"));
1108
1109 p = arg;
1110 bnum = get_number (&p);
1111 if (bnum == 0)
1112 error (_("Bad breakpoint argument: '%s'"), arg);
1113
1114 ALL_BREAKPOINTS (b)
1115 if (b->number == bnum)
1116 {
1117 /* Check if this breakpoint has a "stop" method implemented in an
1118 extension language. This method and conditions entered into GDB
1119 from the CLI are mutually exclusive. */
1120 const struct extension_language_defn *extlang
1121 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
1122
1123 if (extlang != NULL)
1124 {
1125 error (_("Only one stop condition allowed. There is currently"
1126 " a %s stop condition defined for this breakpoint."),
1127 ext_lang_capitalized_name (extlang));
1128 }
1129 set_breakpoint_condition (b, p, from_tty);
1130
1131 if (is_breakpoint (b))
1132 update_global_location_list (UGLL_MAY_INSERT);
1133
1134 return;
1135 }
1136
1137 error (_("No breakpoint number %d."), bnum);
1138}
1139
1140/* Check that COMMAND do not contain commands that are suitable
1141 only for tracepoints and not suitable for ordinary breakpoints.
1142 Throw if any such commands is found. */
1143
1144static void
1145check_no_tracepoint_commands (struct command_line *commands)
1146{
1147 struct command_line *c;
1148
1149 for (c = commands; c; c = c->next)
1150 {
1151 int i;
1152
1153 if (c->control_type == while_stepping_control)
1154 error (_("The 'while-stepping' command can "
1155 "only be used for tracepoints"));
1156
1157 for (i = 0; i < c->body_count; ++i)
1158 check_no_tracepoint_commands ((c->body_list)[i]);
1159
1160 /* Not that command parsing removes leading whitespace and comment
1161 lines and also empty lines. So, we only need to check for
1162 command directly. */
1163 if (strstr (c->line, "collect ") == c->line)
1164 error (_("The 'collect' command can only be used for tracepoints"));
1165
1166 if (strstr (c->line, "teval ") == c->line)
1167 error (_("The 'teval' command can only be used for tracepoints"));
1168 }
1169}
1170
1171/* Encapsulate tests for different types of tracepoints. */
1172
1173static int
1174is_tracepoint_type (enum bptype type)
1175{
1176 return (type == bp_tracepoint
1177 || type == bp_fast_tracepoint
1178 || type == bp_static_tracepoint);
1179}
1180
1181int
1182is_tracepoint (const struct breakpoint *b)
1183{
1184 return is_tracepoint_type (b->type);
1185}
1186
1187/* A helper function that validates that COMMANDS are valid for a
1188 breakpoint. This function will throw an exception if a problem is
1189 found. */
1190
1191static void
1192validate_commands_for_breakpoint (struct breakpoint *b,
1193 struct command_line *commands)
1194{
1195 if (is_tracepoint (b))
1196 {
1197 struct tracepoint *t = (struct tracepoint *) b;
1198 struct command_line *c;
1199 struct command_line *while_stepping = 0;
1200
1201 /* Reset the while-stepping step count. The previous commands
1202 might have included a while-stepping action, while the new
1203 ones might not. */
1204 t->step_count = 0;
1205
1206 /* We need to verify that each top-level element of commands is
1207 valid for tracepoints, that there's at most one
1208 while-stepping element, and that the while-stepping's body
1209 has valid tracing commands excluding nested while-stepping.
1210 We also need to validate the tracepoint action line in the
1211 context of the tracepoint --- validate_actionline actually
1212 has side effects, like setting the tracepoint's
1213 while-stepping STEP_COUNT, in addition to checking if the
1214 collect/teval actions parse and make sense in the
1215 tracepoint's context. */
1216 for (c = commands; c; c = c->next)
1217 {
1218 if (c->control_type == while_stepping_control)
1219 {
1220 if (b->type == bp_fast_tracepoint)
1221 error (_("The 'while-stepping' command "
1222 "cannot be used for fast tracepoint"));
1223 else if (b->type == bp_static_tracepoint)
1224 error (_("The 'while-stepping' command "
1225 "cannot be used for static tracepoint"));
1226
1227 if (while_stepping)
1228 error (_("The 'while-stepping' command "
1229 "can be used only once"));
1230 else
1231 while_stepping = c;
1232 }
1233
1234 validate_actionline (c->line, b);
1235 }
1236 if (while_stepping)
1237 {
1238 struct command_line *c2;
1239
1240 gdb_assert (while_stepping->body_count == 1);
1241 c2 = while_stepping->body_list[0];
1242 for (; c2; c2 = c2->next)
1243 {
1244 if (c2->control_type == while_stepping_control)
1245 error (_("The 'while-stepping' command cannot be nested"));
1246 }
1247 }
1248 }
1249 else
1250 {
1251 check_no_tracepoint_commands (commands);
1252 }
1253}
1254
1255/* Return a vector of all the static tracepoints set at ADDR. The
1256 caller is responsible for releasing the vector. */
1257
1258VEC(breakpoint_p) *
1259static_tracepoints_here (CORE_ADDR addr)
1260{
1261 struct breakpoint *b;
1262 VEC(breakpoint_p) *found = 0;
1263 struct bp_location *loc;
1264
1265 ALL_BREAKPOINTS (b)
1266 if (b->type == bp_static_tracepoint)
1267 {
1268 for (loc = b->loc; loc; loc = loc->next)
1269 if (loc->address == addr)
1270 VEC_safe_push(breakpoint_p, found, b);
1271 }
1272
1273 return found;
1274}
1275
1276/* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
1277 validate that only allowed commands are included. */
1278
1279void
1280breakpoint_set_commands (struct breakpoint *b,
1281 struct command_line *commands)
1282{
1283 validate_commands_for_breakpoint (b, commands);
1284
1285 decref_counted_command_line (&b->commands);
1286 b->commands = alloc_counted_command_line (commands);
1287 observer_notify_breakpoint_modified (b);
1288}
1289
1290/* Set the internal `silent' flag on the breakpoint. Note that this
1291 is not the same as the "silent" that may appear in the breakpoint's
1292 commands. */
1293
1294void
1295breakpoint_set_silent (struct breakpoint *b, int silent)
1296{
1297 int old_silent = b->silent;
1298
1299 b->silent = silent;
1300 if (old_silent != silent)
1301 observer_notify_breakpoint_modified (b);
1302}
1303
1304/* Set the thread for this breakpoint. If THREAD is -1, make the
1305 breakpoint work for any thread. */
1306
1307void
1308breakpoint_set_thread (struct breakpoint *b, int thread)
1309{
1310 int old_thread = b->thread;
1311
1312 b->thread = thread;
1313 if (old_thread != thread)
1314 observer_notify_breakpoint_modified (b);
1315}
1316
1317/* Set the task for this breakpoint. If TASK is 0, make the
1318 breakpoint work for any task. */
1319
1320void
1321breakpoint_set_task (struct breakpoint *b, int task)
1322{
1323 int old_task = b->task;
1324
1325 b->task = task;
1326 if (old_task != task)
1327 observer_notify_breakpoint_modified (b);
1328}
1329
1330void
1331check_tracepoint_command (char *line, void *closure)
1332{
1333 struct breakpoint *b = (struct breakpoint *) closure;
1334
1335 validate_actionline (line, b);
1336}
1337
1338/* A structure used to pass information through
1339 map_breakpoint_numbers. */
1340
1341struct commands_info
1342{
1343 /* True if the command was typed at a tty. */
1344 int from_tty;
1345
1346 /* The breakpoint range spec. */
1347 char *arg;
1348
1349 /* Non-NULL if the body of the commands are being read from this
1350 already-parsed command. */
1351 struct command_line *control;
1352
1353 /* The command lines read from the user, or NULL if they have not
1354 yet been read. */
1355 struct counted_command_line *cmd;
1356};
1357
1358/* A callback for map_breakpoint_numbers that sets the commands for
1359 commands_command. */
1360
1361static void
1362do_map_commands_command (struct breakpoint *b, void *data)
1363{
1364 struct commands_info *info = (struct commands_info *) data;
1365
1366 if (info->cmd == NULL)
1367 {
1368 struct command_line *l;
1369
1370 if (info->control != NULL)
1371 l = copy_command_lines (info->control->body_list[0]);
1372 else
1373 {
1374 struct cleanup *old_chain;
1375 char *str;
1376
1377 str = xstrprintf (_("Type commands for breakpoint(s) "
1378 "%s, one per line."),
1379 info->arg);
1380
1381 old_chain = make_cleanup (xfree, str);
1382
1383 l = read_command_lines (str,
1384 info->from_tty, 1,
1385 (is_tracepoint (b)
1386 ? check_tracepoint_command : 0),
1387 b);
1388
1389 do_cleanups (old_chain);
1390 }
1391
1392 info->cmd = alloc_counted_command_line (l);
1393 }
1394
1395 /* If a breakpoint was on the list more than once, we don't need to
1396 do anything. */
1397 if (b->commands != info->cmd)
1398 {
1399 validate_commands_for_breakpoint (b, info->cmd->commands);
1400 incref_counted_command_line (info->cmd);
1401 decref_counted_command_line (&b->commands);
1402 b->commands = info->cmd;
1403 observer_notify_breakpoint_modified (b);
1404 }
1405}
1406
1407static void
1408commands_command_1 (char *arg, int from_tty,
1409 struct command_line *control)
1410{
1411 struct cleanup *cleanups;
1412 struct commands_info info;
1413
1414 info.from_tty = from_tty;
1415 info.control = control;
1416 info.cmd = NULL;
1417 /* If we read command lines from the user, then `info' will hold an
1418 extra reference to the commands that we must clean up. */
1419 cleanups = make_cleanup_decref_counted_command_line (&info.cmd);
1420
1421 if (arg == NULL || !*arg)
1422 {
1423 if (breakpoint_count - prev_breakpoint_count > 1)
1424 arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1,
1425 breakpoint_count);
1426 else if (breakpoint_count > 0)
1427 arg = xstrprintf ("%d", breakpoint_count);
1428 else
1429 {
1430 /* So that we don't try to free the incoming non-NULL
1431 argument in the cleanup below. Mapping breakpoint
1432 numbers will fail in this case. */
1433 arg = NULL;
1434 }
1435 }
1436 else
1437 /* The command loop has some static state, so we need to preserve
1438 our argument. */
1439 arg = xstrdup (arg);
1440
1441 if (arg != NULL)
1442 make_cleanup (xfree, arg);
1443
1444 info.arg = arg;
1445
1446 map_breakpoint_numbers (arg, do_map_commands_command, &info);
1447
1448 if (info.cmd == NULL)
1449 error (_("No breakpoints specified."));
1450
1451 do_cleanups (cleanups);
1452}
1453
1454static void
1455commands_command (char *arg, int from_tty)
1456{
1457 commands_command_1 (arg, from_tty, NULL);
1458}
1459
1460/* Like commands_command, but instead of reading the commands from
1461 input stream, takes them from an already parsed command structure.
1462
1463 This is used by cli-script.c to DTRT with breakpoint commands
1464 that are part of if and while bodies. */
1465enum command_control_type
1466commands_from_control_command (char *arg, struct command_line *cmd)
1467{
1468 commands_command_1 (arg, 0, cmd);
1469 return simple_control;
1470}
1471
1472/* Return non-zero if BL->TARGET_INFO contains valid information. */
1473
1474static int
1475bp_location_has_shadow (struct bp_location *bl)
1476{
1477 if (bl->loc_type != bp_loc_software_breakpoint)
1478 return 0;
1479 if (!bl->inserted)
1480 return 0;
1481 if (bl->target_info.shadow_len == 0)
1482 /* BL isn't valid, or doesn't shadow memory. */
1483 return 0;
1484 return 1;
1485}
1486
1487/* Update BUF, which is LEN bytes read from the target address
1488 MEMADDR, by replacing a memory breakpoint with its shadowed
1489 contents.
1490
1491 If READBUF is not NULL, this buffer must not overlap with the of
1492 the breakpoint location's shadow_contents buffer. Otherwise, a
1493 failed assertion internal error will be raised. */
1494
1495static void
1496one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1497 const gdb_byte *writebuf_org,
1498 ULONGEST memaddr, LONGEST len,
1499 struct bp_target_info *target_info,
1500 struct gdbarch *gdbarch)
1501{
1502 /* Now do full processing of the found relevant range of elements. */
1503 CORE_ADDR bp_addr = 0;
1504 int bp_size = 0;
1505 int bptoffset = 0;
1506
1507 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1508 current_program_space->aspace, 0))
1509 {
1510 /* The breakpoint is inserted in a different address space. */
1511 return;
1512 }
1513
1514 /* Addresses and length of the part of the breakpoint that
1515 we need to copy. */
1516 bp_addr = target_info->placed_address;
1517 bp_size = target_info->shadow_len;
1518
1519 if (bp_addr + bp_size <= memaddr)
1520 {
1521 /* The breakpoint is entirely before the chunk of memory we are
1522 reading. */
1523 return;
1524 }
1525
1526 if (bp_addr >= memaddr + len)
1527 {
1528 /* The breakpoint is entirely after the chunk of memory we are
1529 reading. */
1530 return;
1531 }
1532
1533 /* Offset within shadow_contents. */
1534 if (bp_addr < memaddr)
1535 {
1536 /* Only copy the second part of the breakpoint. */
1537 bp_size -= memaddr - bp_addr;
1538 bptoffset = memaddr - bp_addr;
1539 bp_addr = memaddr;
1540 }
1541
1542 if (bp_addr + bp_size > memaddr + len)
1543 {
1544 /* Only copy the first part of the breakpoint. */
1545 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1546 }
1547
1548 if (readbuf != NULL)
1549 {
1550 /* Verify that the readbuf buffer does not overlap with the
1551 shadow_contents buffer. */
1552 gdb_assert (target_info->shadow_contents >= readbuf + len
1553 || readbuf >= (target_info->shadow_contents
1554 + target_info->shadow_len));
1555
1556 /* Update the read buffer with this inserted breakpoint's
1557 shadow. */
1558 memcpy (readbuf + bp_addr - memaddr,
1559 target_info->shadow_contents + bptoffset, bp_size);
1560 }
1561 else
1562 {
1563 const unsigned char *bp;
1564 CORE_ADDR addr = target_info->reqstd_address;
1565 int placed_size;
1566
1567 /* Update the shadow with what we want to write to memory. */
1568 memcpy (target_info->shadow_contents + bptoffset,
1569 writebuf_org + bp_addr - memaddr, bp_size);
1570
1571 /* Determine appropriate breakpoint contents and size for this
1572 address. */
1573 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
1574
1575 /* Update the final write buffer with this inserted
1576 breakpoint's INSN. */
1577 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1578 }
1579}
1580
1581/* Update BUF, which is LEN bytes read from the target address MEMADDR,
1582 by replacing any memory breakpoints with their shadowed contents.
1583
1584 If READBUF is not NULL, this buffer must not overlap with any of
1585 the breakpoint location's shadow_contents buffers. Otherwise,
1586 a failed assertion internal error will be raised.
1587
1588 The range of shadowed area by each bp_location is:
1589 bl->address - bp_location_placed_address_before_address_max
1590 up to bl->address + bp_location_shadow_len_after_address_max
1591 The range we were requested to resolve shadows for is:
1592 memaddr ... memaddr + len
1593 Thus the safe cutoff boundaries for performance optimization are
1594 memaddr + len <= (bl->address
1595 - bp_location_placed_address_before_address_max)
1596 and:
1597 bl->address + bp_location_shadow_len_after_address_max <= memaddr */
1598
1599void
1600breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1601 const gdb_byte *writebuf_org,
1602 ULONGEST memaddr, LONGEST len)
1603{
1604 /* Left boundary, right boundary and median element of our binary
1605 search. */
1606 unsigned bc_l, bc_r, bc;
1607 size_t i;
1608
1609 /* Find BC_L which is a leftmost element which may affect BUF
1610 content. It is safe to report lower value but a failure to
1611 report higher one. */
1612
1613 bc_l = 0;
1614 bc_r = bp_location_count;
1615 while (bc_l + 1 < bc_r)
1616 {
1617 struct bp_location *bl;
1618
1619 bc = (bc_l + bc_r) / 2;
1620 bl = bp_location[bc];
1621
1622 /* Check first BL->ADDRESS will not overflow due to the added
1623 constant. Then advance the left boundary only if we are sure
1624 the BC element can in no way affect the BUF content (MEMADDR
1625 to MEMADDR + LEN range).
1626
1627 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1628 offset so that we cannot miss a breakpoint with its shadow
1629 range tail still reaching MEMADDR. */
1630
1631 if ((bl->address + bp_location_shadow_len_after_address_max
1632 >= bl->address)
1633 && (bl->address + bp_location_shadow_len_after_address_max
1634 <= memaddr))
1635 bc_l = bc;
1636 else
1637 bc_r = bc;
1638 }
1639
1640 /* Due to the binary search above, we need to make sure we pick the
1641 first location that's at BC_L's address. E.g., if there are
1642 multiple locations at the same address, BC_L may end up pointing
1643 at a duplicate location, and miss the "master"/"inserted"
1644 location. Say, given locations L1, L2 and L3 at addresses A and
1645 B:
1646
1647 L1@A, L2@A, L3@B, ...
1648
1649 BC_L could end up pointing at location L2, while the "master"
1650 location could be L1. Since the `loc->inserted' flag is only set
1651 on "master" locations, we'd forget to restore the shadow of L1
1652 and L2. */
1653 while (bc_l > 0
1654 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1655 bc_l--;
1656
1657 /* Now do full processing of the found relevant range of elements. */
1658
1659 for (bc = bc_l; bc < bp_location_count; bc++)
1660 {
1661 struct bp_location *bl = bp_location[bc];
1662 CORE_ADDR bp_addr = 0;
1663 int bp_size = 0;
1664 int bptoffset = 0;
1665
1666 /* bp_location array has BL->OWNER always non-NULL. */
1667 if (bl->owner->type == bp_none)
1668 warning (_("reading through apparently deleted breakpoint #%d?"),
1669 bl->owner->number);
1670
1671 /* Performance optimization: any further element can no longer affect BUF
1672 content. */
1673
1674 if (bl->address >= bp_location_placed_address_before_address_max
1675 && memaddr + len <= (bl->address
1676 - bp_location_placed_address_before_address_max))
1677 break;
1678
1679 if (!bp_location_has_shadow (bl))
1680 continue;
1681
1682 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1683 memaddr, len, &bl->target_info, bl->gdbarch);
1684 }
1685}
1686
1687\f
1688
1689/* Return true if BPT is either a software breakpoint or a hardware
1690 breakpoint. */
1691
1692int
1693is_breakpoint (const struct breakpoint *bpt)
1694{
1695 return (bpt->type == bp_breakpoint
1696 || bpt->type == bp_hardware_breakpoint
1697 || bpt->type == bp_dprintf);
1698}
1699
1700/* Return true if BPT is of any hardware watchpoint kind. */
1701
1702static int
1703is_hardware_watchpoint (const struct breakpoint *bpt)
1704{
1705 return (bpt->type == bp_hardware_watchpoint
1706 || bpt->type == bp_read_watchpoint
1707 || bpt->type == bp_access_watchpoint);
1708}
1709
1710/* Return true if BPT is of any watchpoint kind, hardware or
1711 software. */
1712
1713int
1714is_watchpoint (const struct breakpoint *bpt)
1715{
1716 return (is_hardware_watchpoint (bpt)
1717 || bpt->type == bp_watchpoint);
1718}
1719
1720/* Returns true if the current thread and its running state are safe
1721 to evaluate or update watchpoint B. Watchpoints on local
1722 expressions need to be evaluated in the context of the thread that
1723 was current when the watchpoint was created, and, that thread needs
1724 to be stopped to be able to select the correct frame context.
1725 Watchpoints on global expressions can be evaluated on any thread,
1726 and in any state. It is presently left to the target allowing
1727 memory accesses when threads are running. */
1728
1729static int
1730watchpoint_in_thread_scope (struct watchpoint *b)
1731{
1732 return (b->base.pspace == current_program_space
1733 && (ptid_equal (b->watchpoint_thread, null_ptid)
1734 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1735 && !is_executing (inferior_ptid))));
1736}
1737
1738/* Set watchpoint B to disp_del_at_next_stop, even including its possible
1739 associated bp_watchpoint_scope breakpoint. */
1740
1741static void
1742watchpoint_del_at_next_stop (struct watchpoint *w)
1743{
1744 struct breakpoint *b = &w->base;
1745
1746 if (b->related_breakpoint != b)
1747 {
1748 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1749 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1750 b->related_breakpoint->disposition = disp_del_at_next_stop;
1751 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1752 b->related_breakpoint = b;
1753 }
1754 b->disposition = disp_del_at_next_stop;
1755}
1756
1757/* Extract a bitfield value from value VAL using the bit parameters contained in
1758 watchpoint W. */
1759
1760static struct value *
1761extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1762{
1763 struct value *bit_val;
1764
1765 if (val == NULL)
1766 return NULL;
1767
1768 bit_val = allocate_value (value_type (val));
1769
1770 unpack_value_bitfield (bit_val,
1771 w->val_bitpos,
1772 w->val_bitsize,
1773 value_contents_for_printing (val),
1774 value_offset (val),
1775 val);
1776
1777 return bit_val;
1778}
1779
1780/* Allocate a dummy location and add it to B, which must be a software
1781 watchpoint. This is required because even if a software watchpoint
1782 is not watching any memory, bpstat_stop_status requires a location
1783 to be able to report stops. */
1784
1785static void
1786software_watchpoint_add_no_memory_location (struct breakpoint *b,
1787 struct program_space *pspace)
1788{
1789 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1790
1791 b->loc = allocate_bp_location (b);
1792 b->loc->pspace = pspace;
1793 b->loc->address = -1;
1794 b->loc->length = -1;
1795}
1796
1797/* Returns true if B is a software watchpoint that is not watching any
1798 memory (e.g., "watch $pc"). */
1799
1800static int
1801is_no_memory_software_watchpoint (struct breakpoint *b)
1802{
1803 return (b->type == bp_watchpoint
1804 && b->loc != NULL
1805 && b->loc->next == NULL
1806 && b->loc->address == -1
1807 && b->loc->length == -1);
1808}
1809
1810/* Assuming that B is a watchpoint:
1811 - Reparse watchpoint expression, if REPARSE is non-zero
1812 - Evaluate expression and store the result in B->val
1813 - Evaluate the condition if there is one, and store the result
1814 in b->loc->cond.
1815 - Update the list of values that must be watched in B->loc.
1816
1817 If the watchpoint disposition is disp_del_at_next_stop, then do
1818 nothing. If this is local watchpoint that is out of scope, delete
1819 it.
1820
1821 Even with `set breakpoint always-inserted on' the watchpoints are
1822 removed + inserted on each stop here. Normal breakpoints must
1823 never be removed because they might be missed by a running thread
1824 when debugging in non-stop mode. On the other hand, hardware
1825 watchpoints (is_hardware_watchpoint; processed here) are specific
1826 to each LWP since they are stored in each LWP's hardware debug
1827 registers. Therefore, such LWP must be stopped first in order to
1828 be able to modify its hardware watchpoints.
1829
1830 Hardware watchpoints must be reset exactly once after being
1831 presented to the user. It cannot be done sooner, because it would
1832 reset the data used to present the watchpoint hit to the user. And
1833 it must not be done later because it could display the same single
1834 watchpoint hit during multiple GDB stops. Note that the latter is
1835 relevant only to the hardware watchpoint types bp_read_watchpoint
1836 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1837 not user-visible - its hit is suppressed if the memory content has
1838 not changed.
1839
1840 The following constraints influence the location where we can reset
1841 hardware watchpoints:
1842
1843 * target_stopped_by_watchpoint and target_stopped_data_address are
1844 called several times when GDB stops.
1845
1846 [linux]
1847 * Multiple hardware watchpoints can be hit at the same time,
1848 causing GDB to stop. GDB only presents one hardware watchpoint
1849 hit at a time as the reason for stopping, and all the other hits
1850 are presented later, one after the other, each time the user
1851 requests the execution to be resumed. Execution is not resumed
1852 for the threads still having pending hit event stored in
1853 LWP_INFO->STATUS. While the watchpoint is already removed from
1854 the inferior on the first stop the thread hit event is kept being
1855 reported from its cached value by linux_nat_stopped_data_address
1856 until the real thread resume happens after the watchpoint gets
1857 presented and thus its LWP_INFO->STATUS gets reset.
1858
1859 Therefore the hardware watchpoint hit can get safely reset on the
1860 watchpoint removal from inferior. */
1861
1862static void
1863update_watchpoint (struct watchpoint *b, int reparse)
1864{
1865 int within_current_scope;
1866 struct frame_id saved_frame_id;
1867 int frame_saved;
1868
1869 /* If this is a local watchpoint, we only want to check if the
1870 watchpoint frame is in scope if the current thread is the thread
1871 that was used to create the watchpoint. */
1872 if (!watchpoint_in_thread_scope (b))
1873 return;
1874
1875 if (b->base.disposition == disp_del_at_next_stop)
1876 return;
1877
1878 frame_saved = 0;
1879
1880 /* Determine if the watchpoint is within scope. */
1881 if (b->exp_valid_block == NULL)
1882 within_current_scope = 1;
1883 else
1884 {
1885 struct frame_info *fi = get_current_frame ();
1886 struct gdbarch *frame_arch = get_frame_arch (fi);
1887 CORE_ADDR frame_pc = get_frame_pc (fi);
1888
1889 /* If we're at a point where the stack has been destroyed
1890 (e.g. in a function epilogue), unwinding may not work
1891 properly. Do not attempt to recreate locations at this
1892 point. See similar comments in watchpoint_check. */
1893 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
1894 return;
1895
1896 /* Save the current frame's ID so we can restore it after
1897 evaluating the watchpoint expression on its own frame. */
1898 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1899 took a frame parameter, so that we didn't have to change the
1900 selected frame. */
1901 frame_saved = 1;
1902 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1903
1904 fi = frame_find_by_id (b->watchpoint_frame);
1905 within_current_scope = (fi != NULL);
1906 if (within_current_scope)
1907 select_frame (fi);
1908 }
1909
1910 /* We don't free locations. They are stored in the bp_location array
1911 and update_global_location_list will eventually delete them and
1912 remove breakpoints if needed. */
1913 b->base.loc = NULL;
1914
1915 if (within_current_scope && reparse)
1916 {
1917 const char *s;
1918
1919 if (b->exp)
1920 {
1921 xfree (b->exp);
1922 b->exp = NULL;
1923 }
1924 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1925 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
1926 /* If the meaning of expression itself changed, the old value is
1927 no longer relevant. We don't want to report a watchpoint hit
1928 to the user when the old value and the new value may actually
1929 be completely different objects. */
1930 value_free (b->val);
1931 b->val = NULL;
1932 b->val_valid = 0;
1933
1934 /* Note that unlike with breakpoints, the watchpoint's condition
1935 expression is stored in the breakpoint object, not in the
1936 locations (re)created below. */
1937 if (b->base.cond_string != NULL)
1938 {
1939 if (b->cond_exp != NULL)
1940 {
1941 xfree (b->cond_exp);
1942 b->cond_exp = NULL;
1943 }
1944
1945 s = b->base.cond_string;
1946 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
1947 }
1948 }
1949
1950 /* If we failed to parse the expression, for example because
1951 it refers to a global variable in a not-yet-loaded shared library,
1952 don't try to insert watchpoint. We don't automatically delete
1953 such watchpoint, though, since failure to parse expression
1954 is different from out-of-scope watchpoint. */
1955 if (!target_has_execution)
1956 {
1957 /* Without execution, memory can't change. No use to try and
1958 set watchpoint locations. The watchpoint will be reset when
1959 the target gains execution, through breakpoint_re_set. */
1960 if (!can_use_hw_watchpoints)
1961 {
1962 if (b->base.ops->works_in_software_mode (&b->base))
1963 b->base.type = bp_watchpoint;
1964 else
1965 error (_("Can't set read/access watchpoint when "
1966 "hardware watchpoints are disabled."));
1967 }
1968 }
1969 else if (within_current_scope && b->exp)
1970 {
1971 int pc = 0;
1972 struct value *val_chain, *v, *result, *next;
1973 struct program_space *frame_pspace;
1974
1975 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain, 0);
1976
1977 /* Avoid setting b->val if it's already set. The meaning of
1978 b->val is 'the last value' user saw, and we should update
1979 it only if we reported that last value to user. As it
1980 happens, the code that reports it updates b->val directly.
1981 We don't keep track of the memory value for masked
1982 watchpoints. */
1983 if (!b->val_valid && !is_masked_watchpoint (&b->base))
1984 {
1985 if (b->val_bitsize != 0)
1986 {
1987 v = extract_bitfield_from_watchpoint_value (b, v);
1988 if (v != NULL)
1989 release_value (v);
1990 }
1991 b->val = v;
1992 b->val_valid = 1;
1993 }
1994
1995 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1996
1997 /* Look at each value on the value chain. */
1998 for (v = val_chain; v; v = value_next (v))
1999 {
2000 /* If it's a memory location, and GDB actually needed
2001 its contents to evaluate the expression, then we
2002 must watch it. If the first value returned is
2003 still lazy, that means an error occurred reading it;
2004 watch it anyway in case it becomes readable. */
2005 if (VALUE_LVAL (v) == lval_memory
2006 && (v == val_chain || ! value_lazy (v)))
2007 {
2008 struct type *vtype = check_typedef (value_type (v));
2009
2010 /* We only watch structs and arrays if user asked
2011 for it explicitly, never if they just happen to
2012 appear in the middle of some value chain. */
2013 if (v == result
2014 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2015 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2016 {
2017 CORE_ADDR addr;
2018 enum target_hw_bp_type type;
2019 struct bp_location *loc, **tmp;
2020 int bitpos = 0, bitsize = 0;
2021
2022 if (value_bitsize (v) != 0)
2023 {
2024 /* Extract the bit parameters out from the bitfield
2025 sub-expression. */
2026 bitpos = value_bitpos (v);
2027 bitsize = value_bitsize (v);
2028 }
2029 else if (v == result && b->val_bitsize != 0)
2030 {
2031 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
2032 lvalue whose bit parameters are saved in the fields
2033 VAL_BITPOS and VAL_BITSIZE. */
2034 bitpos = b->val_bitpos;
2035 bitsize = b->val_bitsize;
2036 }
2037
2038 addr = value_address (v);
2039 if (bitsize != 0)
2040 {
2041 /* Skip the bytes that don't contain the bitfield. */
2042 addr += bitpos / 8;
2043 }
2044
2045 type = hw_write;
2046 if (b->base.type == bp_read_watchpoint)
2047 type = hw_read;
2048 else if (b->base.type == bp_access_watchpoint)
2049 type = hw_access;
2050
2051 loc = allocate_bp_location (&b->base);
2052 for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next))
2053 ;
2054 *tmp = loc;
2055 loc->gdbarch = get_type_arch (value_type (v));
2056
2057 loc->pspace = frame_pspace;
2058 loc->address = addr;
2059
2060 if (bitsize != 0)
2061 {
2062 /* Just cover the bytes that make up the bitfield. */
2063 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
2064 }
2065 else
2066 loc->length = TYPE_LENGTH (value_type (v));
2067
2068 loc->watchpoint_type = type;
2069 }
2070 }
2071 }
2072
2073 /* Change the type of breakpoint between hardware assisted or
2074 an ordinary watchpoint depending on the hardware support
2075 and free hardware slots. REPARSE is set when the inferior
2076 is started. */
2077 if (reparse)
2078 {
2079 int reg_cnt;
2080 enum bp_loc_type loc_type;
2081 struct bp_location *bl;
2082
2083 reg_cnt = can_use_hardware_watchpoint (val_chain);
2084
2085 if (reg_cnt)
2086 {
2087 int i, target_resources_ok, other_type_used;
2088 enum bptype type;
2089
2090 /* Use an exact watchpoint when there's only one memory region to be
2091 watched, and only one debug register is needed to watch it. */
2092 b->exact = target_exact_watchpoints && reg_cnt == 1;
2093
2094 /* We need to determine how many resources are already
2095 used for all other hardware watchpoints plus this one
2096 to see if we still have enough resources to also fit
2097 this watchpoint in as well. */
2098
2099 /* If this is a software watchpoint, we try to turn it
2100 to a hardware one -- count resources as if B was of
2101 hardware watchpoint type. */
2102 type = b->base.type;
2103 if (type == bp_watchpoint)
2104 type = bp_hardware_watchpoint;
2105
2106 /* This watchpoint may or may not have been placed on
2107 the list yet at this point (it won't be in the list
2108 if we're trying to create it for the first time,
2109 through watch_command), so always account for it
2110 manually. */
2111
2112 /* Count resources used by all watchpoints except B. */
2113 i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used);
2114
2115 /* Add in the resources needed for B. */
2116 i += hw_watchpoint_use_count (&b->base);
2117
2118 target_resources_ok
2119 = target_can_use_hardware_watchpoint (type, i, other_type_used);
2120 if (target_resources_ok <= 0)
2121 {
2122 int sw_mode = b->base.ops->works_in_software_mode (&b->base);
2123
2124 if (target_resources_ok == 0 && !sw_mode)
2125 error (_("Target does not support this type of "
2126 "hardware watchpoint."));
2127 else if (target_resources_ok < 0 && !sw_mode)
2128 error (_("There are not enough available hardware "
2129 "resources for this watchpoint."));
2130
2131 /* Downgrade to software watchpoint. */
2132 b->base.type = bp_watchpoint;
2133 }
2134 else
2135 {
2136 /* If this was a software watchpoint, we've just
2137 found we have enough resources to turn it to a
2138 hardware watchpoint. Otherwise, this is a
2139 nop. */
2140 b->base.type = type;
2141 }
2142 }
2143 else if (!b->base.ops->works_in_software_mode (&b->base))
2144 {
2145 if (!can_use_hw_watchpoints)
2146 error (_("Can't set read/access watchpoint when "
2147 "hardware watchpoints are disabled."));
2148 else
2149 error (_("Expression cannot be implemented with "
2150 "read/access watchpoint."));
2151 }
2152 else
2153 b->base.type = bp_watchpoint;
2154
2155 loc_type = (b->base.type == bp_watchpoint? bp_loc_other
2156 : bp_loc_hardware_watchpoint);
2157 for (bl = b->base.loc; bl; bl = bl->next)
2158 bl->loc_type = loc_type;
2159 }
2160
2161 for (v = val_chain; v; v = next)
2162 {
2163 next = value_next (v);
2164 if (v != b->val)
2165 value_free (v);
2166 }
2167
2168 /* If a software watchpoint is not watching any memory, then the
2169 above left it without any location set up. But,
2170 bpstat_stop_status requires a location to be able to report
2171 stops, so make sure there's at least a dummy one. */
2172 if (b->base.type == bp_watchpoint && b->base.loc == NULL)
2173 software_watchpoint_add_no_memory_location (&b->base, frame_pspace);
2174 }
2175 else if (!within_current_scope)
2176 {
2177 printf_filtered (_("\
2178Watchpoint %d deleted because the program has left the block\n\
2179in which its expression is valid.\n"),
2180 b->base.number);
2181 watchpoint_del_at_next_stop (b);
2182 }
2183
2184 /* Restore the selected frame. */
2185 if (frame_saved)
2186 select_frame (frame_find_by_id (saved_frame_id));
2187}
2188
2189
2190/* Returns 1 iff breakpoint location should be
2191 inserted in the inferior. We don't differentiate the type of BL's owner
2192 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2193 breakpoint_ops is not defined, because in insert_bp_location,
2194 tracepoint's insert_location will not be called. */
2195static int
2196should_be_inserted (struct bp_location *bl)
2197{
2198 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
2199 return 0;
2200
2201 if (bl->owner->disposition == disp_del_at_next_stop)
2202 return 0;
2203
2204 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
2205 return 0;
2206
2207 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2208 return 0;
2209
2210 /* This is set for example, when we're attached to the parent of a
2211 vfork, and have detached from the child. The child is running
2212 free, and we expect it to do an exec or exit, at which point the
2213 OS makes the parent schedulable again (and the target reports
2214 that the vfork is done). Until the child is done with the shared
2215 memory region, do not insert breakpoints in the parent, otherwise
2216 the child could still trip on the parent's breakpoints. Since
2217 the parent is blocked anyway, it won't miss any breakpoint. */
2218 if (bl->pspace->breakpoints_not_allowed)
2219 return 0;
2220
2221 /* Don't insert a breakpoint if we're trying to step past its
2222 location, except if the breakpoint is a single-step breakpoint,
2223 and the breakpoint's thread is the thread which is stepping past
2224 a breakpoint. */
2225 if ((bl->loc_type == bp_loc_software_breakpoint
2226 || bl->loc_type == bp_loc_hardware_breakpoint)
2227 && stepping_past_instruction_at (bl->pspace->aspace,
2228 bl->address)
2229 /* The single-step breakpoint may be inserted at the location
2230 we're trying to step if the instruction branches to itself.
2231 However, the instruction won't be executed at all and it may
2232 break the semantics of the instruction, for example, the
2233 instruction is a conditional branch or updates some flags.
2234 We can't fix it unless GDB is able to emulate the instruction
2235 or switch to displaced stepping. */
2236 && !(bl->owner->type == bp_single_step
2237 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
2238 {
2239 if (debug_infrun)
2240 {
2241 fprintf_unfiltered (gdb_stdlog,
2242 "infrun: skipping breakpoint: "
2243 "stepping past insn at: %s\n",
2244 paddress (bl->gdbarch, bl->address));
2245 }
2246 return 0;
2247 }
2248
2249 /* Don't insert watchpoints if we're trying to step past the
2250 instruction that triggered one. */
2251 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2252 && stepping_past_nonsteppable_watchpoint ())
2253 {
2254 if (debug_infrun)
2255 {
2256 fprintf_unfiltered (gdb_stdlog,
2257 "infrun: stepping past non-steppable watchpoint. "
2258 "skipping watchpoint at %s:%d\n",
2259 paddress (bl->gdbarch, bl->address),
2260 bl->length);
2261 }
2262 return 0;
2263 }
2264
2265 return 1;
2266}
2267
2268/* Same as should_be_inserted but does the check assuming
2269 that the location is not duplicated. */
2270
2271static int
2272unduplicated_should_be_inserted (struct bp_location *bl)
2273{
2274 int result;
2275 const int save_duplicate = bl->duplicate;
2276
2277 bl->duplicate = 0;
2278 result = should_be_inserted (bl);
2279 bl->duplicate = save_duplicate;
2280 return result;
2281}
2282
2283/* Parses a conditional described by an expression COND into an
2284 agent expression bytecode suitable for evaluation
2285 by the bytecode interpreter. Return NULL if there was
2286 any error during parsing. */
2287
2288static struct agent_expr *
2289parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2290{
2291 struct agent_expr *aexpr = NULL;
2292
2293 if (!cond)
2294 return NULL;
2295
2296 /* We don't want to stop processing, so catch any errors
2297 that may show up. */
2298 TRY
2299 {
2300 aexpr = gen_eval_for_expr (scope, cond);
2301 }
2302
2303 CATCH (ex, RETURN_MASK_ERROR)
2304 {
2305 /* If we got here, it means the condition could not be parsed to a valid
2306 bytecode expression and thus can't be evaluated on the target's side.
2307 It's no use iterating through the conditions. */
2308 return NULL;
2309 }
2310 END_CATCH
2311
2312 /* We have a valid agent expression. */
2313 return aexpr;
2314}
2315
2316/* Based on location BL, create a list of breakpoint conditions to be
2317 passed on to the target. If we have duplicated locations with different
2318 conditions, we will add such conditions to the list. The idea is that the
2319 target will evaluate the list of conditions and will only notify GDB when
2320 one of them is true. */
2321
2322static void
2323build_target_condition_list (struct bp_location *bl)
2324{
2325 struct bp_location **locp = NULL, **loc2p;
2326 int null_condition_or_parse_error = 0;
2327 int modified = bl->needs_update;
2328 struct bp_location *loc;
2329
2330 /* Release conditions left over from a previous insert. */
2331 VEC_free (agent_expr_p, bl->target_info.conditions);
2332
2333 /* This is only meaningful if the target is
2334 evaluating conditions and if the user has
2335 opted for condition evaluation on the target's
2336 side. */
2337 if (gdb_evaluates_breakpoint_condition_p ()
2338 || !target_supports_evaluation_of_breakpoint_conditions ())
2339 return;
2340
2341 /* Do a first pass to check for locations with no assigned
2342 conditions or conditions that fail to parse to a valid agent expression
2343 bytecode. If any of these happen, then it's no use to send conditions
2344 to the target since this location will always trigger and generate a
2345 response back to GDB. */
2346 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2347 {
2348 loc = (*loc2p);
2349 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2350 {
2351 if (modified)
2352 {
2353 struct agent_expr *aexpr;
2354
2355 /* Re-parse the conditions since something changed. In that
2356 case we already freed the condition bytecodes (see
2357 force_breakpoint_reinsertion). We just
2358 need to parse the condition to bytecodes again. */
2359 aexpr = parse_cond_to_aexpr (bl->address, loc->cond);
2360 loc->cond_bytecode = aexpr;
2361 }
2362
2363 /* If we have a NULL bytecode expression, it means something
2364 went wrong or we have a null condition expression. */
2365 if (!loc->cond_bytecode)
2366 {
2367 null_condition_or_parse_error = 1;
2368 break;
2369 }
2370 }
2371 }
2372
2373 /* If any of these happened, it means we will have to evaluate the conditions
2374 for the location's address on gdb's side. It is no use keeping bytecodes
2375 for all the other duplicate locations, thus we free all of them here.
2376
2377 This is so we have a finer control over which locations' conditions are
2378 being evaluated by GDB or the remote stub. */
2379 if (null_condition_or_parse_error)
2380 {
2381 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2382 {
2383 loc = (*loc2p);
2384 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2385 {
2386 /* Only go as far as the first NULL bytecode is
2387 located. */
2388 if (!loc->cond_bytecode)
2389 return;
2390
2391 free_agent_expr (loc->cond_bytecode);
2392 loc->cond_bytecode = NULL;
2393 }
2394 }
2395 }
2396
2397 /* No NULL conditions or failed bytecode generation. Build a condition list
2398 for this location's address. */
2399 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2400 {
2401 loc = (*loc2p);
2402 if (loc->cond
2403 && is_breakpoint (loc->owner)
2404 && loc->pspace->num == bl->pspace->num
2405 && loc->owner->enable_state == bp_enabled
2406 && loc->enabled)
2407 /* Add the condition to the vector. This will be used later to send the
2408 conditions to the target. */
2409 VEC_safe_push (agent_expr_p, bl->target_info.conditions,
2410 loc->cond_bytecode);
2411 }
2412
2413 return;
2414}
2415
2416/* Parses a command described by string CMD into an agent expression
2417 bytecode suitable for evaluation by the bytecode interpreter.
2418 Return NULL if there was any error during parsing. */
2419
2420static struct agent_expr *
2421parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2422{
2423 struct cleanup *old_cleanups = 0;
2424 struct expression *expr, **argvec;
2425 struct agent_expr *aexpr = NULL;
2426 const char *cmdrest;
2427 const char *format_start, *format_end;
2428 struct format_piece *fpieces;
2429 int nargs;
2430 struct gdbarch *gdbarch = get_current_arch ();
2431
2432 if (!cmd)
2433 return NULL;
2434
2435 cmdrest = cmd;
2436
2437 if (*cmdrest == ',')
2438 ++cmdrest;
2439 cmdrest = skip_spaces_const (cmdrest);
2440
2441 if (*cmdrest++ != '"')
2442 error (_("No format string following the location"));
2443
2444 format_start = cmdrest;
2445
2446 fpieces = parse_format_string (&cmdrest);
2447
2448 old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces);
2449
2450 format_end = cmdrest;
2451
2452 if (*cmdrest++ != '"')
2453 error (_("Bad format string, non-terminated '\"'."));
2454
2455 cmdrest = skip_spaces_const (cmdrest);
2456
2457 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2458 error (_("Invalid argument syntax"));
2459
2460 if (*cmdrest == ',')
2461 cmdrest++;
2462 cmdrest = skip_spaces_const (cmdrest);
2463
2464 /* For each argument, make an expression. */
2465
2466 argvec = (struct expression **) alloca (strlen (cmd)
2467 * sizeof (struct expression *));
2468
2469 nargs = 0;
2470 while (*cmdrest != '\0')
2471 {
2472 const char *cmd1;
2473
2474 cmd1 = cmdrest;
2475 expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2476 argvec[nargs++] = expr;
2477 cmdrest = cmd1;
2478 if (*cmdrest == ',')
2479 ++cmdrest;
2480 }
2481
2482 /* We don't want to stop processing, so catch any errors
2483 that may show up. */
2484 TRY
2485 {
2486 aexpr = gen_printf (scope, gdbarch, 0, 0,
2487 format_start, format_end - format_start,
2488 fpieces, nargs, argvec);
2489 }
2490 CATCH (ex, RETURN_MASK_ERROR)
2491 {
2492 /* If we got here, it means the command could not be parsed to a valid
2493 bytecode expression and thus can't be evaluated on the target's side.
2494 It's no use iterating through the other commands. */
2495 aexpr = NULL;
2496 }
2497 END_CATCH
2498
2499 do_cleanups (old_cleanups);
2500
2501 /* We have a valid agent expression, return it. */
2502 return aexpr;
2503}
2504
2505/* Based on location BL, create a list of breakpoint commands to be
2506 passed on to the target. If we have duplicated locations with
2507 different commands, we will add any such to the list. */
2508
2509static void
2510build_target_command_list (struct bp_location *bl)
2511{
2512 struct bp_location **locp = NULL, **loc2p;
2513 int null_command_or_parse_error = 0;
2514 int modified = bl->needs_update;
2515 struct bp_location *loc;
2516
2517 /* Release commands left over from a previous insert. */
2518 VEC_free (agent_expr_p, bl->target_info.tcommands);
2519
2520 if (!target_can_run_breakpoint_commands ())
2521 return;
2522
2523 /* For now, limit to agent-style dprintf breakpoints. */
2524 if (dprintf_style != dprintf_style_agent)
2525 return;
2526
2527 /* For now, if we have any duplicate location that isn't a dprintf,
2528 don't install the target-side commands, as that would make the
2529 breakpoint not be reported to the core, and we'd lose
2530 control. */
2531 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2532 {
2533 loc = (*loc2p);
2534 if (is_breakpoint (loc->owner)
2535 && loc->pspace->num == bl->pspace->num
2536 && loc->owner->type != bp_dprintf)
2537 return;
2538 }
2539
2540 /* Do a first pass to check for locations with no assigned
2541 conditions or conditions that fail to parse to a valid agent expression
2542 bytecode. If any of these happen, then it's no use to send conditions
2543 to the target since this location will always trigger and generate a
2544 response back to GDB. */
2545 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2546 {
2547 loc = (*loc2p);
2548 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2549 {
2550 if (modified)
2551 {
2552 struct agent_expr *aexpr;
2553
2554 /* Re-parse the commands since something changed. In that
2555 case we already freed the command bytecodes (see
2556 force_breakpoint_reinsertion). We just
2557 need to parse the command to bytecodes again. */
2558 aexpr = parse_cmd_to_aexpr (bl->address,
2559 loc->owner->extra_string);
2560 loc->cmd_bytecode = aexpr;
2561 }
2562
2563 /* If we have a NULL bytecode expression, it means something
2564 went wrong or we have a null command expression. */
2565 if (!loc->cmd_bytecode)
2566 {
2567 null_command_or_parse_error = 1;
2568 break;
2569 }
2570 }
2571 }
2572
2573 /* If anything failed, then we're not doing target-side commands,
2574 and so clean up. */
2575 if (null_command_or_parse_error)
2576 {
2577 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2578 {
2579 loc = (*loc2p);
2580 if (is_breakpoint (loc->owner)
2581 && loc->pspace->num == bl->pspace->num)
2582 {
2583 /* Only go as far as the first NULL bytecode is
2584 located. */
2585 if (loc->cmd_bytecode == NULL)
2586 return;
2587
2588 free_agent_expr (loc->cmd_bytecode);
2589 loc->cmd_bytecode = NULL;
2590 }
2591 }
2592 }
2593
2594 /* No NULL commands or failed bytecode generation. Build a command list
2595 for this location's address. */
2596 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2597 {
2598 loc = (*loc2p);
2599 if (loc->owner->extra_string
2600 && is_breakpoint (loc->owner)
2601 && loc->pspace->num == bl->pspace->num
2602 && loc->owner->enable_state == bp_enabled
2603 && loc->enabled)
2604 /* Add the command to the vector. This will be used later
2605 to send the commands to the target. */
2606 VEC_safe_push (agent_expr_p, bl->target_info.tcommands,
2607 loc->cmd_bytecode);
2608 }
2609
2610 bl->target_info.persist = 0;
2611 /* Maybe flag this location as persistent. */
2612 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2613 bl->target_info.persist = 1;
2614}
2615
2616/* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2617 location. Any error messages are printed to TMP_ERROR_STREAM; and
2618 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
2619 Returns 0 for success, 1 if the bp_location type is not supported or
2620 -1 for failure.
2621
2622 NOTE drow/2003-09-09: This routine could be broken down to an
2623 object-style method for each breakpoint or catchpoint type. */
2624static int
2625insert_bp_location (struct bp_location *bl,
2626 struct ui_file *tmp_error_stream,
2627 int *disabled_breaks,
2628 int *hw_breakpoint_error,
2629 int *hw_bp_error_explained_already)
2630{
2631 enum errors bp_err = GDB_NO_ERROR;
2632 const char *bp_err_message = NULL;
2633
2634 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2635 return 0;
2636
2637 /* Note we don't initialize bl->target_info, as that wipes out
2638 the breakpoint location's shadow_contents if the breakpoint
2639 is still inserted at that location. This in turn breaks
2640 target_read_memory which depends on these buffers when
2641 a memory read is requested at the breakpoint location:
2642 Once the target_info has been wiped, we fail to see that
2643 we have a breakpoint inserted at that address and thus
2644 read the breakpoint instead of returning the data saved in
2645 the breakpoint location's shadow contents. */
2646 bl->target_info.reqstd_address = bl->address;
2647 bl->target_info.placed_address_space = bl->pspace->aspace;
2648 bl->target_info.length = bl->length;
2649
2650 /* When working with target-side conditions, we must pass all the conditions
2651 for the same breakpoint address down to the target since GDB will not
2652 insert those locations. With a list of breakpoint conditions, the target
2653 can decide when to stop and notify GDB. */
2654
2655 if (is_breakpoint (bl->owner))
2656 {
2657 build_target_condition_list (bl);
2658 build_target_command_list (bl);
2659 /* Reset the modification marker. */
2660 bl->needs_update = 0;
2661 }
2662
2663 if (bl->loc_type == bp_loc_software_breakpoint
2664 || bl->loc_type == bp_loc_hardware_breakpoint)
2665 {
2666 if (bl->owner->type != bp_hardware_breakpoint)
2667 {
2668 /* If the explicitly specified breakpoint type
2669 is not hardware breakpoint, check the memory map to see
2670 if the breakpoint address is in read only memory or not.
2671
2672 Two important cases are:
2673 - location type is not hardware breakpoint, memory
2674 is readonly. We change the type of the location to
2675 hardware breakpoint.
2676 - location type is hardware breakpoint, memory is
2677 read-write. This means we've previously made the
2678 location hardware one, but then the memory map changed,
2679 so we undo.
2680
2681 When breakpoints are removed, remove_breakpoints will use
2682 location types we've just set here, the only possible
2683 problem is that memory map has changed during running
2684 program, but it's not going to work anyway with current
2685 gdb. */
2686 struct mem_region *mr
2687 = lookup_mem_region (bl->target_info.reqstd_address);
2688
2689 if (mr)
2690 {
2691 if (automatic_hardware_breakpoints)
2692 {
2693 enum bp_loc_type new_type;
2694
2695 if (mr->attrib.mode != MEM_RW)
2696 new_type = bp_loc_hardware_breakpoint;
2697 else
2698 new_type = bp_loc_software_breakpoint;
2699
2700 if (new_type != bl->loc_type)
2701 {
2702 static int said = 0;
2703
2704 bl->loc_type = new_type;
2705 if (!said)
2706 {
2707 fprintf_filtered (gdb_stdout,
2708 _("Note: automatically using "
2709 "hardware breakpoints for "
2710 "read-only addresses.\n"));
2711 said = 1;
2712 }
2713 }
2714 }
2715 else if (bl->loc_type == bp_loc_software_breakpoint
2716 && mr->attrib.mode != MEM_RW)
2717 {
2718 fprintf_unfiltered (tmp_error_stream,
2719 _("Cannot insert breakpoint %d.\n"
2720 "Cannot set software breakpoint "
2721 "at read-only address %s\n"),
2722 bl->owner->number,
2723 paddress (bl->gdbarch, bl->address));
2724 return 1;
2725 }
2726 }
2727 }
2728
2729 /* First check to see if we have to handle an overlay. */
2730 if (overlay_debugging == ovly_off
2731 || bl->section == NULL
2732 || !(section_is_overlay (bl->section)))
2733 {
2734 /* No overlay handling: just set the breakpoint. */
2735 TRY
2736 {
2737 int val;
2738
2739 val = bl->owner->ops->insert_location (bl);
2740 if (val)
2741 bp_err = GENERIC_ERROR;
2742 }
2743 CATCH (e, RETURN_MASK_ALL)
2744 {
2745 bp_err = e.error;
2746 bp_err_message = e.message;
2747 }
2748 END_CATCH
2749 }
2750 else
2751 {
2752 /* This breakpoint is in an overlay section.
2753 Shall we set a breakpoint at the LMA? */
2754 if (!overlay_events_enabled)
2755 {
2756 /* Yes -- overlay event support is not active,
2757 so we must try to set a breakpoint at the LMA.
2758 This will not work for a hardware breakpoint. */
2759 if (bl->loc_type == bp_loc_hardware_breakpoint)
2760 warning (_("hardware breakpoint %d not supported in overlay!"),
2761 bl->owner->number);
2762 else
2763 {
2764 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2765 bl->section);
2766 /* Set a software (trap) breakpoint at the LMA. */
2767 bl->overlay_target_info = bl->target_info;
2768 bl->overlay_target_info.reqstd_address = addr;
2769
2770 /* No overlay handling: just set the breakpoint. */
2771 TRY
2772 {
2773 int val;
2774
2775 val = target_insert_breakpoint (bl->gdbarch,
2776 &bl->overlay_target_info);
2777 if (val)
2778 bp_err = GENERIC_ERROR;
2779 }
2780 CATCH (e, RETURN_MASK_ALL)
2781 {
2782 bp_err = e.error;
2783 bp_err_message = e.message;
2784 }
2785 END_CATCH
2786
2787 if (bp_err != GDB_NO_ERROR)
2788 fprintf_unfiltered (tmp_error_stream,
2789 "Overlay breakpoint %d "
2790 "failed: in ROM?\n",
2791 bl->owner->number);
2792 }
2793 }
2794 /* Shall we set a breakpoint at the VMA? */
2795 if (section_is_mapped (bl->section))
2796 {
2797 /* Yes. This overlay section is mapped into memory. */
2798 TRY
2799 {
2800 int val;
2801
2802 val = bl->owner->ops->insert_location (bl);
2803 if (val)
2804 bp_err = GENERIC_ERROR;
2805 }
2806 CATCH (e, RETURN_MASK_ALL)
2807 {
2808 bp_err = e.error;
2809 bp_err_message = e.message;
2810 }
2811 END_CATCH
2812 }
2813 else
2814 {
2815 /* No. This breakpoint will not be inserted.
2816 No error, but do not mark the bp as 'inserted'. */
2817 return 0;
2818 }
2819 }
2820
2821 if (bp_err != GDB_NO_ERROR)
2822 {
2823 /* Can't set the breakpoint. */
2824
2825 /* In some cases, we might not be able to insert a
2826 breakpoint in a shared library that has already been
2827 removed, but we have not yet processed the shlib unload
2828 event. Unfortunately, some targets that implement
2829 breakpoint insertion themselves can't tell why the
2830 breakpoint insertion failed (e.g., the remote target
2831 doesn't define error codes), so we must treat generic
2832 errors as memory errors. */
2833 if ((bp_err == GENERIC_ERROR || bp_err == MEMORY_ERROR)
2834 && bl->loc_type == bp_loc_software_breakpoint
2835 && (solib_name_from_address (bl->pspace, bl->address)
2836 || shared_objfile_contains_address_p (bl->pspace,
2837 bl->address)))
2838 {
2839 /* See also: disable_breakpoints_in_shlibs. */
2840 bl->shlib_disabled = 1;
2841 observer_notify_breakpoint_modified (bl->owner);
2842 if (!*disabled_breaks)
2843 {
2844 fprintf_unfiltered (tmp_error_stream,
2845 "Cannot insert breakpoint %d.\n",
2846 bl->owner->number);
2847 fprintf_unfiltered (tmp_error_stream,
2848 "Temporarily disabling shared "
2849 "library breakpoints:\n");
2850 }
2851 *disabled_breaks = 1;
2852 fprintf_unfiltered (tmp_error_stream,
2853 "breakpoint #%d\n", bl->owner->number);
2854 return 0;
2855 }
2856 else
2857 {
2858 if (bl->loc_type == bp_loc_hardware_breakpoint)
2859 {
2860 *hw_breakpoint_error = 1;
2861 *hw_bp_error_explained_already = bp_err_message != NULL;
2862 fprintf_unfiltered (tmp_error_stream,
2863 "Cannot insert hardware breakpoint %d%s",
2864 bl->owner->number, bp_err_message ? ":" : ".\n");
2865 if (bp_err_message != NULL)
2866 fprintf_unfiltered (tmp_error_stream, "%s.\n", bp_err_message);
2867 }
2868 else
2869 {
2870 if (bp_err_message == NULL)
2871 {
2872 char *message
2873 = memory_error_message (TARGET_XFER_E_IO,
2874 bl->gdbarch, bl->address);
2875 struct cleanup *old_chain = make_cleanup (xfree, message);
2876
2877 fprintf_unfiltered (tmp_error_stream,
2878 "Cannot insert breakpoint %d.\n"
2879 "%s\n",
2880 bl->owner->number, message);
2881 do_cleanups (old_chain);
2882 }
2883 else
2884 {
2885 fprintf_unfiltered (tmp_error_stream,
2886 "Cannot insert breakpoint %d: %s\n",
2887 bl->owner->number,
2888 bp_err_message);
2889 }
2890 }
2891 return 1;
2892
2893 }
2894 }
2895 else
2896 bl->inserted = 1;
2897
2898 return 0;
2899 }
2900
2901 else if (bl->loc_type == bp_loc_hardware_watchpoint
2902 /* NOTE drow/2003-09-08: This state only exists for removing
2903 watchpoints. It's not clear that it's necessary... */
2904 && bl->owner->disposition != disp_del_at_next_stop)
2905 {
2906 int val;
2907
2908 gdb_assert (bl->owner->ops != NULL
2909 && bl->owner->ops->insert_location != NULL);
2910
2911 val = bl->owner->ops->insert_location (bl);
2912
2913 /* If trying to set a read-watchpoint, and it turns out it's not
2914 supported, try emulating one with an access watchpoint. */
2915 if (val == 1 && bl->watchpoint_type == hw_read)
2916 {
2917 struct bp_location *loc, **loc_temp;
2918
2919 /* But don't try to insert it, if there's already another
2920 hw_access location that would be considered a duplicate
2921 of this one. */
2922 ALL_BP_LOCATIONS (loc, loc_temp)
2923 if (loc != bl
2924 && loc->watchpoint_type == hw_access
2925 && watchpoint_locations_match (bl, loc))
2926 {
2927 bl->duplicate = 1;
2928 bl->inserted = 1;
2929 bl->target_info = loc->target_info;
2930 bl->watchpoint_type = hw_access;
2931 val = 0;
2932 break;
2933 }
2934
2935 if (val == 1)
2936 {
2937 bl->watchpoint_type = hw_access;
2938 val = bl->owner->ops->insert_location (bl);
2939
2940 if (val)
2941 /* Back to the original value. */
2942 bl->watchpoint_type = hw_read;
2943 }
2944 }
2945
2946 bl->inserted = (val == 0);
2947 }
2948
2949 else if (bl->owner->type == bp_catchpoint)
2950 {
2951 int val;
2952
2953 gdb_assert (bl->owner->ops != NULL
2954 && bl->owner->ops->insert_location != NULL);
2955
2956 val = bl->owner->ops->insert_location (bl);
2957 if (val)
2958 {
2959 bl->owner->enable_state = bp_disabled;
2960
2961 if (val == 1)
2962 warning (_("\
2963Error inserting catchpoint %d: Your system does not support this type\n\
2964of catchpoint."), bl->owner->number);
2965 else
2966 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2967 }
2968
2969 bl->inserted = (val == 0);
2970
2971 /* We've already printed an error message if there was a problem
2972 inserting this catchpoint, and we've disabled the catchpoint,
2973 so just return success. */
2974 return 0;
2975 }
2976
2977 return 0;
2978}
2979
2980/* This function is called when program space PSPACE is about to be
2981 deleted. It takes care of updating breakpoints to not reference
2982 PSPACE anymore. */
2983
2984void
2985breakpoint_program_space_exit (struct program_space *pspace)
2986{
2987 struct breakpoint *b, *b_temp;
2988 struct bp_location *loc, **loc_temp;
2989
2990 /* Remove any breakpoint that was set through this program space. */
2991 ALL_BREAKPOINTS_SAFE (b, b_temp)
2992 {
2993 if (b->pspace == pspace)
2994 delete_breakpoint (b);
2995 }
2996
2997 /* Breakpoints set through other program spaces could have locations
2998 bound to PSPACE as well. Remove those. */
2999 ALL_BP_LOCATIONS (loc, loc_temp)
3000 {
3001 struct bp_location *tmp;
3002
3003 if (loc->pspace == pspace)
3004 {
3005 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
3006 if (loc->owner->loc == loc)
3007 loc->owner->loc = loc->next;
3008 else
3009 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
3010 if (tmp->next == loc)
3011 {
3012 tmp->next = loc->next;
3013 break;
3014 }
3015 }
3016 }
3017
3018 /* Now update the global location list to permanently delete the
3019 removed locations above. */
3020 update_global_location_list (UGLL_DONT_INSERT);
3021}
3022
3023/* Make sure all breakpoints are inserted in inferior.
3024 Throws exception on any error.
3025 A breakpoint that is already inserted won't be inserted
3026 again, so calling this function twice is safe. */
3027void
3028insert_breakpoints (void)
3029{
3030 struct breakpoint *bpt;
3031
3032 ALL_BREAKPOINTS (bpt)
3033 if (is_hardware_watchpoint (bpt))
3034 {
3035 struct watchpoint *w = (struct watchpoint *) bpt;
3036
3037 update_watchpoint (w, 0 /* don't reparse. */);
3038 }
3039
3040 /* Updating watchpoints creates new locations, so update the global
3041 location list. Explicitly tell ugll to insert locations and
3042 ignore breakpoints_always_inserted_mode. */
3043 update_global_location_list (UGLL_INSERT);
3044}
3045
3046/* Invoke CALLBACK for each of bp_location. */
3047
3048void
3049iterate_over_bp_locations (walk_bp_location_callback callback)
3050{
3051 struct bp_location *loc, **loc_tmp;
3052
3053 ALL_BP_LOCATIONS (loc, loc_tmp)
3054 {
3055 callback (loc, NULL);
3056 }
3057}
3058
3059/* This is used when we need to synch breakpoint conditions between GDB and the
3060 target. It is the case with deleting and disabling of breakpoints when using
3061 always-inserted mode. */
3062
3063static void
3064update_inserted_breakpoint_locations (void)
3065{
3066 struct bp_location *bl, **blp_tmp;
3067 int error_flag = 0;
3068 int val = 0;
3069 int disabled_breaks = 0;
3070 int hw_breakpoint_error = 0;
3071 int hw_bp_details_reported = 0;
3072
3073 struct ui_file *tmp_error_stream = mem_fileopen ();
3074 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
3075
3076 /* Explicitly mark the warning -- this will only be printed if
3077 there was an error. */
3078 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
3079
3080 save_current_space_and_thread ();
3081
3082 ALL_BP_LOCATIONS (bl, blp_tmp)
3083 {
3084 /* We only want to update software breakpoints and hardware
3085 breakpoints. */
3086 if (!is_breakpoint (bl->owner))
3087 continue;
3088
3089 /* We only want to update locations that are already inserted
3090 and need updating. This is to avoid unwanted insertion during
3091 deletion of breakpoints. */
3092 if (!bl->inserted || (bl->inserted && !bl->needs_update))
3093 continue;
3094
3095 switch_to_program_space_and_thread (bl->pspace);
3096
3097 /* For targets that support global breakpoints, there's no need
3098 to select an inferior to insert breakpoint to. In fact, even
3099 if we aren't attached to any process yet, we should still
3100 insert breakpoints. */
3101 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
3102 && ptid_equal (inferior_ptid, null_ptid))
3103 continue;
3104
3105 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
3106 &hw_breakpoint_error, &hw_bp_details_reported);
3107 if (val)
3108 error_flag = val;
3109 }
3110
3111 if (error_flag)
3112 {
3113 target_terminal_ours_for_output ();
3114 error_stream (tmp_error_stream);
3115 }
3116
3117 do_cleanups (cleanups);
3118}
3119
3120/* Used when starting or continuing the program. */
3121
3122static void
3123insert_breakpoint_locations (void)
3124{
3125 struct breakpoint *bpt;
3126 struct bp_location *bl, **blp_tmp;
3127 int error_flag = 0;
3128 int val = 0;
3129 int disabled_breaks = 0;
3130 int hw_breakpoint_error = 0;
3131 int hw_bp_error_explained_already = 0;
3132
3133 struct ui_file *tmp_error_stream = mem_fileopen ();
3134 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
3135
3136 /* Explicitly mark the warning -- this will only be printed if
3137 there was an error. */
3138 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
3139
3140 save_current_space_and_thread ();
3141
3142 ALL_BP_LOCATIONS (bl, blp_tmp)
3143 {
3144 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
3145 continue;
3146
3147 /* There is no point inserting thread-specific breakpoints if
3148 the thread no longer exists. ALL_BP_LOCATIONS bp_location
3149 has BL->OWNER always non-NULL. */
3150 if (bl->owner->thread != -1
3151 && !valid_global_thread_id (bl->owner->thread))
3152 continue;
3153
3154 switch_to_program_space_and_thread (bl->pspace);
3155
3156 /* For targets that support global breakpoints, there's no need
3157 to select an inferior to insert breakpoint to. In fact, even
3158 if we aren't attached to any process yet, we should still
3159 insert breakpoints. */
3160 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
3161 && ptid_equal (inferior_ptid, null_ptid))
3162 continue;
3163
3164 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
3165 &hw_breakpoint_error, &hw_bp_error_explained_already);
3166 if (val)
3167 error_flag = val;
3168 }
3169
3170 /* If we failed to insert all locations of a watchpoint, remove
3171 them, as half-inserted watchpoint is of limited use. */
3172 ALL_BREAKPOINTS (bpt)
3173 {
3174 int some_failed = 0;
3175 struct bp_location *loc;
3176
3177 if (!is_hardware_watchpoint (bpt))
3178 continue;
3179
3180 if (!breakpoint_enabled (bpt))
3181 continue;
3182
3183 if (bpt->disposition == disp_del_at_next_stop)
3184 continue;
3185
3186 for (loc = bpt->loc; loc; loc = loc->next)
3187 if (!loc->inserted && should_be_inserted (loc))
3188 {
3189 some_failed = 1;
3190 break;
3191 }
3192 if (some_failed)
3193 {
3194 for (loc = bpt->loc; loc; loc = loc->next)
3195 if (loc->inserted)
3196 remove_breakpoint (loc, mark_uninserted);
3197
3198 hw_breakpoint_error = 1;
3199 fprintf_unfiltered (tmp_error_stream,
3200 "Could not insert hardware watchpoint %d.\n",
3201 bpt->number);
3202 error_flag = -1;
3203 }
3204 }
3205
3206 if (error_flag)
3207 {
3208 /* If a hardware breakpoint or watchpoint was inserted, add a
3209 message about possibly exhausted resources. */
3210 if (hw_breakpoint_error && !hw_bp_error_explained_already)
3211 {
3212 fprintf_unfiltered (tmp_error_stream,
3213 "Could not insert hardware breakpoints:\n\
3214You may have requested too many hardware breakpoints/watchpoints.\n");
3215 }
3216 target_terminal_ours_for_output ();
3217 error_stream (tmp_error_stream);
3218 }
3219
3220 do_cleanups (cleanups);
3221}
3222
3223/* Used when the program stops.
3224 Returns zero if successful, or non-zero if there was a problem
3225 removing a breakpoint location. */
3226
3227int
3228remove_breakpoints (void)
3229{
3230 struct bp_location *bl, **blp_tmp;
3231 int val = 0;
3232
3233 ALL_BP_LOCATIONS (bl, blp_tmp)
3234 {
3235 if (bl->inserted && !is_tracepoint (bl->owner))
3236 val |= remove_breakpoint (bl, mark_uninserted);
3237 }
3238 return val;
3239}
3240
3241/* When a thread exits, remove breakpoints that are related to
3242 that thread. */
3243
3244static void
3245remove_threaded_breakpoints (struct thread_info *tp, int silent)
3246{
3247 struct breakpoint *b, *b_tmp;
3248
3249 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3250 {
3251 if (b->thread == tp->global_num && user_breakpoint_p (b))
3252 {
3253 b->disposition = disp_del_at_next_stop;
3254
3255 printf_filtered (_("\
3256Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3257 b->number, print_thread_id (tp));
3258
3259 /* Hide it from the user. */
3260 b->number = 0;
3261 }
3262 }
3263}
3264
3265/* Remove breakpoints of process PID. */
3266
3267int
3268remove_breakpoints_pid (int pid)
3269{
3270 struct bp_location *bl, **blp_tmp;
3271 int val;
3272 struct inferior *inf = find_inferior_pid (pid);
3273
3274 ALL_BP_LOCATIONS (bl, blp_tmp)
3275 {
3276 if (bl->pspace != inf->pspace)
3277 continue;
3278
3279 if (bl->inserted && !bl->target_info.persist)
3280 {
3281 val = remove_breakpoint (bl, mark_uninserted);
3282 if (val != 0)
3283 return val;
3284 }
3285 }
3286 return 0;
3287}
3288
3289int
3290reattach_breakpoints (int pid)
3291{
3292 struct cleanup *old_chain;
3293 struct bp_location *bl, **blp_tmp;
3294 int val;
3295 struct ui_file *tmp_error_stream;
3296 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
3297 struct inferior *inf;
3298 struct thread_info *tp;
3299
3300 tp = any_live_thread_of_process (pid);
3301 if (tp == NULL)
3302 return 1;
3303
3304 inf = find_inferior_pid (pid);
3305 old_chain = save_inferior_ptid ();
3306
3307 inferior_ptid = tp->ptid;
3308
3309 tmp_error_stream = mem_fileopen ();
3310 make_cleanup_ui_file_delete (tmp_error_stream);
3311
3312 ALL_BP_LOCATIONS (bl, blp_tmp)
3313 {
3314 if (bl->pspace != inf->pspace)
3315 continue;
3316
3317 if (bl->inserted)
3318 {
3319 bl->inserted = 0;
3320 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3);
3321 if (val != 0)
3322 {
3323 do_cleanups (old_chain);
3324 return val;
3325 }
3326 }
3327 }
3328 do_cleanups (old_chain);
3329 return 0;
3330}
3331
3332static int internal_breakpoint_number = -1;
3333
3334/* Set the breakpoint number of B, depending on the value of INTERNAL.
3335 If INTERNAL is non-zero, the breakpoint number will be populated
3336 from internal_breakpoint_number and that variable decremented.
3337 Otherwise the breakpoint number will be populated from
3338 breakpoint_count and that value incremented. Internal breakpoints
3339 do not set the internal var bpnum. */
3340static void
3341set_breakpoint_number (int internal, struct breakpoint *b)
3342{
3343 if (internal)
3344 b->number = internal_breakpoint_number--;
3345 else
3346 {
3347 set_breakpoint_count (breakpoint_count + 1);
3348 b->number = breakpoint_count;
3349 }
3350}
3351
3352static struct breakpoint *
3353create_internal_breakpoint (struct gdbarch *gdbarch,
3354 CORE_ADDR address, enum bptype type,
3355 const struct breakpoint_ops *ops)
3356{
3357 struct symtab_and_line sal;
3358 struct breakpoint *b;
3359
3360 init_sal (&sal); /* Initialize to zeroes. */
3361
3362 sal.pc = address;
3363 sal.section = find_pc_overlay (sal.pc);
3364 sal.pspace = current_program_space;
3365
3366 b = set_raw_breakpoint (gdbarch, sal, type, ops);
3367 b->number = internal_breakpoint_number--;
3368 b->disposition = disp_donttouch;
3369
3370 return b;
3371}
3372
3373static const char *const longjmp_names[] =
3374 {
3375 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3376 };
3377#define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3378
3379/* Per-objfile data private to breakpoint.c. */
3380struct breakpoint_objfile_data
3381{
3382 /* Minimal symbol for "_ovly_debug_event" (if any). */
3383 struct bound_minimal_symbol overlay_msym;
3384
3385 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3386 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES];
3387
3388 /* True if we have looked for longjmp probes. */
3389 int longjmp_searched;
3390
3391 /* SystemTap probe points for longjmp (if any). */
3392 VEC (probe_p) *longjmp_probes;
3393
3394 /* Minimal symbol for "std::terminate()" (if any). */
3395 struct bound_minimal_symbol terminate_msym;
3396
3397 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3398 struct bound_minimal_symbol exception_msym;
3399
3400 /* True if we have looked for exception probes. */
3401 int exception_searched;
3402
3403 /* SystemTap probe points for unwinding (if any). */
3404 VEC (probe_p) *exception_probes;
3405};
3406
3407static const struct objfile_data *breakpoint_objfile_key;
3408
3409/* Minimal symbol not found sentinel. */
3410static struct minimal_symbol msym_not_found;
3411
3412/* Returns TRUE if MSYM point to the "not found" sentinel. */
3413
3414static int
3415msym_not_found_p (const struct minimal_symbol *msym)
3416{
3417 return msym == &msym_not_found;
3418}
3419
3420/* Return per-objfile data needed by breakpoint.c.
3421 Allocate the data if necessary. */
3422
3423static struct breakpoint_objfile_data *
3424get_breakpoint_objfile_data (struct objfile *objfile)
3425{
3426 struct breakpoint_objfile_data *bp_objfile_data;
3427
3428 bp_objfile_data = ((struct breakpoint_objfile_data *)
3429 objfile_data (objfile, breakpoint_objfile_key));
3430 if (bp_objfile_data == NULL)
3431 {
3432 bp_objfile_data =
3433 XOBNEW (&objfile->objfile_obstack, struct breakpoint_objfile_data);
3434
3435 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
3436 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3437 }
3438 return bp_objfile_data;
3439}
3440
3441static void
3442free_breakpoint_probes (struct objfile *obj, void *data)
3443{
3444 struct breakpoint_objfile_data *bp_objfile_data
3445 = (struct breakpoint_objfile_data *) data;
3446
3447 VEC_free (probe_p, bp_objfile_data->longjmp_probes);
3448 VEC_free (probe_p, bp_objfile_data->exception_probes);
3449}
3450
3451static void
3452create_overlay_event_breakpoint (void)
3453{
3454 struct objfile *objfile;
3455 const char *const func_name = "_ovly_debug_event";
3456
3457 ALL_OBJFILES (objfile)
3458 {
3459 struct breakpoint *b;
3460 struct breakpoint_objfile_data *bp_objfile_data;
3461 CORE_ADDR addr;
3462 struct explicit_location explicit_loc;
3463
3464 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3465
3466 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
3467 continue;
3468
3469 if (bp_objfile_data->overlay_msym.minsym == NULL)
3470 {
3471 struct bound_minimal_symbol m;
3472
3473 m = lookup_minimal_symbol_text (func_name, objfile);
3474 if (m.minsym == NULL)
3475 {
3476 /* Avoid future lookups in this objfile. */
3477 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
3478 continue;
3479 }
3480 bp_objfile_data->overlay_msym = m;
3481 }
3482
3483 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
3484 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3485 bp_overlay_event,
3486 &internal_breakpoint_ops);
3487 initialize_explicit_location (&explicit_loc);
3488 explicit_loc.function_name = ASTRDUP (func_name);
3489 b->location = new_explicit_location (&explicit_loc);
3490
3491 if (overlay_debugging == ovly_auto)
3492 {
3493 b->enable_state = bp_enabled;
3494 overlay_events_enabled = 1;
3495 }
3496 else
3497 {
3498 b->enable_state = bp_disabled;
3499 overlay_events_enabled = 0;
3500 }
3501 }
3502}
3503
3504static void
3505create_longjmp_master_breakpoint (void)
3506{
3507 struct program_space *pspace;
3508 struct cleanup *old_chain;
3509
3510 old_chain = save_current_program_space ();
3511
3512 ALL_PSPACES (pspace)
3513 {
3514 struct objfile *objfile;
3515
3516 set_current_program_space (pspace);
3517
3518 ALL_OBJFILES (objfile)
3519 {
3520 int i;
3521 struct gdbarch *gdbarch;
3522 struct breakpoint_objfile_data *bp_objfile_data;
3523
3524 gdbarch = get_objfile_arch (objfile);
3525
3526 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3527
3528 if (!bp_objfile_data->longjmp_searched)
3529 {
3530 VEC (probe_p) *ret;
3531
3532 ret = find_probes_in_objfile (objfile, "libc", "longjmp");
3533 if (ret != NULL)
3534 {
3535 /* We are only interested in checking one element. */
3536 struct probe *p = VEC_index (probe_p, ret, 0);
3537
3538 if (!can_evaluate_probe_arguments (p))
3539 {
3540 /* We cannot use the probe interface here, because it does
3541 not know how to evaluate arguments. */
3542 VEC_free (probe_p, ret);
3543 ret = NULL;
3544 }
3545 }
3546 bp_objfile_data->longjmp_probes = ret;
3547 bp_objfile_data->longjmp_searched = 1;
3548 }
3549
3550 if (bp_objfile_data->longjmp_probes != NULL)
3551 {
3552 int i;
3553 struct probe *probe;
3554 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3555
3556 for (i = 0;
3557 VEC_iterate (probe_p,
3558 bp_objfile_data->longjmp_probes,
3559 i, probe);
3560 ++i)
3561 {
3562 struct breakpoint *b;
3563
3564 b = create_internal_breakpoint (gdbarch,
3565 get_probe_address (probe,
3566 objfile),
3567 bp_longjmp_master,
3568 &internal_breakpoint_ops);
3569 b->location
3570 = new_probe_location ("-probe-stap libc:longjmp");
3571 b->enable_state = bp_disabled;
3572 }
3573
3574 continue;
3575 }
3576
3577 if (!gdbarch_get_longjmp_target_p (gdbarch))
3578 continue;
3579
3580 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
3581 {
3582 struct breakpoint *b;
3583 const char *func_name;
3584 CORE_ADDR addr;
3585 struct explicit_location explicit_loc;
3586
3587 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
3588 continue;
3589
3590 func_name = longjmp_names[i];
3591 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
3592 {
3593 struct bound_minimal_symbol m;
3594
3595 m = lookup_minimal_symbol_text (func_name, objfile);
3596 if (m.minsym == NULL)
3597 {
3598 /* Prevent future lookups in this objfile. */
3599 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
3600 continue;
3601 }
3602 bp_objfile_data->longjmp_msym[i] = m;
3603 }
3604
3605 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
3606 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3607 &internal_breakpoint_ops);
3608 initialize_explicit_location (&explicit_loc);
3609 explicit_loc.function_name = ASTRDUP (func_name);
3610 b->location = new_explicit_location (&explicit_loc);
3611 b->enable_state = bp_disabled;
3612 }
3613 }
3614 }
3615
3616 do_cleanups (old_chain);
3617}
3618
3619/* Create a master std::terminate breakpoint. */
3620static void
3621create_std_terminate_master_breakpoint (void)
3622{
3623 struct program_space *pspace;
3624 struct cleanup *old_chain;
3625 const char *const func_name = "std::terminate()";
3626
3627 old_chain = save_current_program_space ();
3628
3629 ALL_PSPACES (pspace)
3630 {
3631 struct objfile *objfile;
3632 CORE_ADDR addr;
3633
3634 set_current_program_space (pspace);
3635
3636 ALL_OBJFILES (objfile)
3637 {
3638 struct breakpoint *b;
3639 struct breakpoint_objfile_data *bp_objfile_data;
3640 struct explicit_location explicit_loc;
3641
3642 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3643
3644 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
3645 continue;
3646
3647 if (bp_objfile_data->terminate_msym.minsym == NULL)
3648 {
3649 struct bound_minimal_symbol m;
3650
3651 m = lookup_minimal_symbol (func_name, NULL, objfile);
3652 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3653 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
3654 {
3655 /* Prevent future lookups in this objfile. */
3656 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
3657 continue;
3658 }
3659 bp_objfile_data->terminate_msym = m;
3660 }
3661
3662 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
3663 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3664 bp_std_terminate_master,
3665 &internal_breakpoint_ops);
3666 initialize_explicit_location (&explicit_loc);
3667 explicit_loc.function_name = ASTRDUP (func_name);
3668 b->location = new_explicit_location (&explicit_loc);
3669 b->enable_state = bp_disabled;
3670 }
3671 }
3672
3673 do_cleanups (old_chain);
3674}
3675
3676/* Install a master breakpoint on the unwinder's debug hook. */
3677
3678static void
3679create_exception_master_breakpoint (void)
3680{
3681 struct objfile *objfile;
3682 const char *const func_name = "_Unwind_DebugHook";
3683
3684 ALL_OBJFILES (objfile)
3685 {
3686 struct breakpoint *b;
3687 struct gdbarch *gdbarch;
3688 struct breakpoint_objfile_data *bp_objfile_data;
3689 CORE_ADDR addr;
3690 struct explicit_location explicit_loc;
3691
3692 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3693
3694 /* We prefer the SystemTap probe point if it exists. */
3695 if (!bp_objfile_data->exception_searched)
3696 {
3697 VEC (probe_p) *ret;
3698
3699 ret = find_probes_in_objfile (objfile, "libgcc", "unwind");
3700
3701 if (ret != NULL)
3702 {
3703 /* We are only interested in checking one element. */
3704 struct probe *p = VEC_index (probe_p, ret, 0);
3705
3706 if (!can_evaluate_probe_arguments (p))
3707 {
3708 /* We cannot use the probe interface here, because it does
3709 not know how to evaluate arguments. */
3710 VEC_free (probe_p, ret);
3711 ret = NULL;
3712 }
3713 }
3714 bp_objfile_data->exception_probes = ret;
3715 bp_objfile_data->exception_searched = 1;
3716 }
3717
3718 if (bp_objfile_data->exception_probes != NULL)
3719 {
3720 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3721 int i;
3722 struct probe *probe;
3723
3724 for (i = 0;
3725 VEC_iterate (probe_p,
3726 bp_objfile_data->exception_probes,
3727 i, probe);
3728 ++i)
3729 {
3730 struct breakpoint *b;
3731
3732 b = create_internal_breakpoint (gdbarch,
3733 get_probe_address (probe,
3734 objfile),
3735 bp_exception_master,
3736 &internal_breakpoint_ops);
3737 b->location
3738 = new_probe_location ("-probe-stap libgcc:unwind");
3739 b->enable_state = bp_disabled;
3740 }
3741
3742 continue;
3743 }
3744
3745 /* Otherwise, try the hook function. */
3746
3747 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
3748 continue;
3749
3750 gdbarch = get_objfile_arch (objfile);
3751
3752 if (bp_objfile_data->exception_msym.minsym == NULL)
3753 {
3754 struct bound_minimal_symbol debug_hook;
3755
3756 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3757 if (debug_hook.minsym == NULL)
3758 {
3759 bp_objfile_data->exception_msym.minsym = &msym_not_found;
3760 continue;
3761 }
3762
3763 bp_objfile_data->exception_msym = debug_hook;
3764 }
3765
3766 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
3767 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3768 &current_target);
3769 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3770 &internal_breakpoint_ops);
3771 initialize_explicit_location (&explicit_loc);
3772 explicit_loc.function_name = ASTRDUP (func_name);
3773 b->location = new_explicit_location (&explicit_loc);
3774 b->enable_state = bp_disabled;
3775 }
3776}
3777
3778/* Does B have a location spec? */
3779
3780static int
3781breakpoint_event_location_empty_p (const struct breakpoint *b)
3782{
3783 return b->location != NULL && event_location_empty_p (b->location);
3784}
3785
3786void
3787update_breakpoints_after_exec (void)
3788{
3789 struct breakpoint *b, *b_tmp;
3790 struct bp_location *bploc, **bplocp_tmp;
3791
3792 /* We're about to delete breakpoints from GDB's lists. If the
3793 INSERTED flag is true, GDB will try to lift the breakpoints by
3794 writing the breakpoints' "shadow contents" back into memory. The
3795 "shadow contents" are NOT valid after an exec, so GDB should not
3796 do that. Instead, the target is responsible from marking
3797 breakpoints out as soon as it detects an exec. We don't do that
3798 here instead, because there may be other attempts to delete
3799 breakpoints after detecting an exec and before reaching here. */
3800 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
3801 if (bploc->pspace == current_program_space)
3802 gdb_assert (!bploc->inserted);
3803
3804 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3805 {
3806 if (b->pspace != current_program_space)
3807 continue;
3808
3809 /* Solib breakpoints must be explicitly reset after an exec(). */
3810 if (b->type == bp_shlib_event)
3811 {
3812 delete_breakpoint (b);
3813 continue;
3814 }
3815
3816 /* JIT breakpoints must be explicitly reset after an exec(). */
3817 if (b->type == bp_jit_event)
3818 {
3819 delete_breakpoint (b);
3820 continue;
3821 }
3822
3823 /* Thread event breakpoints must be set anew after an exec(),
3824 as must overlay event and longjmp master breakpoints. */
3825 if (b->type == bp_thread_event || b->type == bp_overlay_event
3826 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3827 || b->type == bp_exception_master)
3828 {
3829 delete_breakpoint (b);
3830 continue;
3831 }
3832
3833 /* Step-resume breakpoints are meaningless after an exec(). */
3834 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
3835 {
3836 delete_breakpoint (b);
3837 continue;
3838 }
3839
3840 /* Just like single-step breakpoints. */
3841 if (b->type == bp_single_step)
3842 {
3843 delete_breakpoint (b);
3844 continue;
3845 }
3846
3847 /* Longjmp and longjmp-resume breakpoints are also meaningless
3848 after an exec. */
3849 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
3850 || b->type == bp_longjmp_call_dummy
3851 || b->type == bp_exception || b->type == bp_exception_resume)
3852 {
3853 delete_breakpoint (b);
3854 continue;
3855 }
3856
3857 if (b->type == bp_catchpoint)
3858 {
3859 /* For now, none of the bp_catchpoint breakpoints need to
3860 do anything at this point. In the future, if some of
3861 the catchpoints need to something, we will need to add
3862 a new method, and call this method from here. */
3863 continue;
3864 }
3865
3866 /* bp_finish is a special case. The only way we ought to be able
3867 to see one of these when an exec() has happened, is if the user
3868 caught a vfork, and then said "finish". Ordinarily a finish just
3869 carries them to the call-site of the current callee, by setting
3870 a temporary bp there and resuming. But in this case, the finish
3871 will carry them entirely through the vfork & exec.
3872
3873 We don't want to allow a bp_finish to remain inserted now. But
3874 we can't safely delete it, 'cause finish_command has a handle to
3875 the bp on a bpstat, and will later want to delete it. There's a
3876 chance (and I've seen it happen) that if we delete the bp_finish
3877 here, that its storage will get reused by the time finish_command
3878 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3879 We really must allow finish_command to delete a bp_finish.
3880
3881 In the absence of a general solution for the "how do we know
3882 it's safe to delete something others may have handles to?"
3883 problem, what we'll do here is just uninsert the bp_finish, and
3884 let finish_command delete it.
3885
3886 (We know the bp_finish is "doomed" in the sense that it's
3887 momentary, and will be deleted as soon as finish_command sees
3888 the inferior stopped. So it doesn't matter that the bp's
3889 address is probably bogus in the new a.out, unlike e.g., the
3890 solib breakpoints.) */
3891
3892 if (b->type == bp_finish)
3893 {
3894 continue;
3895 }
3896
3897 /* Without a symbolic address, we have little hope of the
3898 pre-exec() address meaning the same thing in the post-exec()
3899 a.out. */
3900 if (breakpoint_event_location_empty_p (b))
3901 {
3902 delete_breakpoint (b);
3903 continue;
3904 }
3905 }
3906}
3907
3908int
3909detach_breakpoints (ptid_t ptid)
3910{
3911 struct bp_location *bl, **blp_tmp;
3912 int val = 0;
3913 struct cleanup *old_chain = save_inferior_ptid ();
3914 struct inferior *inf = current_inferior ();
3915
3916 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
3917 error (_("Cannot detach breakpoints of inferior_ptid"));
3918
3919 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
3920 inferior_ptid = ptid;
3921 ALL_BP_LOCATIONS (bl, blp_tmp)
3922 {
3923 if (bl->pspace != inf->pspace)
3924 continue;
3925
3926 /* This function must physically remove breakpoints locations
3927 from the specified ptid, without modifying the breakpoint
3928 package's state. Locations of type bp_loc_other are only
3929 maintained at GDB side. So, there is no need to remove
3930 these bp_loc_other locations. Moreover, removing these
3931 would modify the breakpoint package's state. */
3932 if (bl->loc_type == bp_loc_other)
3933 continue;
3934
3935 if (bl->inserted)
3936 val |= remove_breakpoint_1 (bl, mark_inserted);
3937 }
3938
3939 do_cleanups (old_chain);
3940 return val;
3941}
3942
3943/* Remove the breakpoint location BL from the current address space.
3944 Note that this is used to detach breakpoints from a child fork.
3945 When we get here, the child isn't in the inferior list, and neither
3946 do we have objects to represent its address space --- we should
3947 *not* look at bl->pspace->aspace here. */
3948
3949static int
3950remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
3951{
3952 int val;
3953
3954 /* BL is never in moribund_locations by our callers. */
3955 gdb_assert (bl->owner != NULL);
3956
3957 /* The type of none suggests that owner is actually deleted.
3958 This should not ever happen. */
3959 gdb_assert (bl->owner->type != bp_none);
3960
3961 if (bl->loc_type == bp_loc_software_breakpoint
3962 || bl->loc_type == bp_loc_hardware_breakpoint)
3963 {
3964 /* "Normal" instruction breakpoint: either the standard
3965 trap-instruction bp (bp_breakpoint), or a
3966 bp_hardware_breakpoint. */
3967
3968 /* First check to see if we have to handle an overlay. */
3969 if (overlay_debugging == ovly_off
3970 || bl->section == NULL
3971 || !(section_is_overlay (bl->section)))
3972 {
3973 /* No overlay handling: just remove the breakpoint. */
3974
3975 /* If we're trying to uninsert a memory breakpoint that we
3976 know is set in a dynamic object that is marked
3977 shlib_disabled, then either the dynamic object was
3978 removed with "remove-symbol-file" or with
3979 "nosharedlibrary". In the former case, we don't know
3980 whether another dynamic object might have loaded over the
3981 breakpoint's address -- the user might well let us know
3982 about it next with add-symbol-file (the whole point of
3983 add-symbol-file is letting the user manually maintain a
3984 list of dynamically loaded objects). If we have the
3985 breakpoint's shadow memory, that is, this is a software
3986 breakpoint managed by GDB, check whether the breakpoint
3987 is still inserted in memory, to avoid overwriting wrong
3988 code with stale saved shadow contents. Note that HW
3989 breakpoints don't have shadow memory, as they're
3990 implemented using a mechanism that is not dependent on
3991 being able to modify the target's memory, and as such
3992 they should always be removed. */
3993 if (bl->shlib_disabled
3994 && bl->target_info.shadow_len != 0
3995 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3996 val = 0;
3997 else
3998 val = bl->owner->ops->remove_location (bl);
3999 }
4000 else
4001 {
4002 /* This breakpoint is in an overlay section.
4003 Did we set a breakpoint at the LMA? */
4004 if (!overlay_events_enabled)
4005 {
4006 /* Yes -- overlay event support is not active, so we
4007 should have set a breakpoint at the LMA. Remove it.
4008 */
4009 /* Ignore any failures: if the LMA is in ROM, we will
4010 have already warned when we failed to insert it. */
4011 if (bl->loc_type == bp_loc_hardware_breakpoint)
4012 target_remove_hw_breakpoint (bl->gdbarch,
4013 &bl->overlay_target_info);
4014 else
4015 target_remove_breakpoint (bl->gdbarch,
4016 &bl->overlay_target_info);
4017 }
4018 /* Did we set a breakpoint at the VMA?
4019 If so, we will have marked the breakpoint 'inserted'. */
4020 if (bl->inserted)
4021 {
4022 /* Yes -- remove it. Previously we did not bother to
4023 remove the breakpoint if the section had been
4024 unmapped, but let's not rely on that being safe. We
4025 don't know what the overlay manager might do. */
4026
4027 /* However, we should remove *software* breakpoints only
4028 if the section is still mapped, or else we overwrite
4029 wrong code with the saved shadow contents. */
4030 if (bl->loc_type == bp_loc_hardware_breakpoint
4031 || section_is_mapped (bl->section))
4032 val = bl->owner->ops->remove_location (bl);
4033 else
4034 val = 0;
4035 }
4036 else
4037 {
4038 /* No -- not inserted, so no need to remove. No error. */
4039 val = 0;
4040 }
4041 }
4042
4043 /* In some cases, we might not be able to remove a breakpoint in
4044 a shared library that has already been removed, but we have
4045 not yet processed the shlib unload event. Similarly for an
4046 unloaded add-symbol-file object - the user might not yet have
4047 had the chance to remove-symbol-file it. shlib_disabled will
4048 be set if the library/object has already been removed, but
4049 the breakpoint hasn't been uninserted yet, e.g., after
4050 "nosharedlibrary" or "remove-symbol-file" with breakpoints
4051 always-inserted mode. */
4052 if (val
4053 && (bl->loc_type == bp_loc_software_breakpoint
4054 && (bl->shlib_disabled
4055 || solib_name_from_address (bl->pspace, bl->address)
4056 || shared_objfile_contains_address_p (bl->pspace,
4057 bl->address))))
4058 val = 0;
4059
4060 if (val)
4061 return val;
4062 bl->inserted = (is == mark_inserted);
4063 }
4064 else if (bl->loc_type == bp_loc_hardware_watchpoint)
4065 {
4066 gdb_assert (bl->owner->ops != NULL
4067 && bl->owner->ops->remove_location != NULL);
4068
4069 bl->inserted = (is == mark_inserted);
4070 bl->owner->ops->remove_location (bl);
4071
4072 /* Failure to remove any of the hardware watchpoints comes here. */
4073 if ((is == mark_uninserted) && (bl->inserted))
4074 warning (_("Could not remove hardware watchpoint %d."),
4075 bl->owner->number);
4076 }
4077 else if (bl->owner->type == bp_catchpoint
4078 && breakpoint_enabled (bl->owner)
4079 && !bl->duplicate)
4080 {
4081 gdb_assert (bl->owner->ops != NULL
4082 && bl->owner->ops->remove_location != NULL);
4083
4084 val = bl->owner->ops->remove_location (bl);
4085 if (val)
4086 return val;
4087
4088 bl->inserted = (is == mark_inserted);
4089 }
4090
4091 return 0;
4092}
4093
4094static int
4095remove_breakpoint (struct bp_location *bl, insertion_state_t is)
4096{
4097 int ret;
4098 struct cleanup *old_chain;
4099
4100 /* BL is never in moribund_locations by our callers. */
4101 gdb_assert (bl->owner != NULL);
4102
4103 /* The type of none suggests that owner is actually deleted.
4104 This should not ever happen. */
4105 gdb_assert (bl->owner->type != bp_none);
4106
4107 old_chain = save_current_space_and_thread ();
4108
4109 switch_to_program_space_and_thread (bl->pspace);
4110
4111 ret = remove_breakpoint_1 (bl, is);
4112
4113 do_cleanups (old_chain);
4114 return ret;
4115}
4116
4117/* Clear the "inserted" flag in all breakpoints. */
4118
4119void
4120mark_breakpoints_out (void)
4121{
4122 struct bp_location *bl, **blp_tmp;
4123
4124 ALL_BP_LOCATIONS (bl, blp_tmp)
4125 if (bl->pspace == current_program_space)
4126 bl->inserted = 0;
4127}
4128
4129/* Clear the "inserted" flag in all breakpoints and delete any
4130 breakpoints which should go away between runs of the program.
4131
4132 Plus other such housekeeping that has to be done for breakpoints
4133 between runs.
4134
4135 Note: this function gets called at the end of a run (by
4136 generic_mourn_inferior) and when a run begins (by
4137 init_wait_for_inferior). */
4138
4139
4140
4141void
4142breakpoint_init_inferior (enum inf_context context)
4143{
4144 struct breakpoint *b, *b_tmp;
4145 struct bp_location *bl, **blp_tmp;
4146 int ix;
4147 struct program_space *pspace = current_program_space;
4148
4149 /* If breakpoint locations are shared across processes, then there's
4150 nothing to do. */
4151 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
4152 return;
4153
4154 mark_breakpoints_out ();
4155
4156 ALL_BREAKPOINTS_SAFE (b, b_tmp)
4157 {
4158 if (b->loc && b->loc->pspace != pspace)
4159 continue;
4160
4161 switch (b->type)
4162 {
4163 case bp_call_dummy:
4164 case bp_longjmp_call_dummy:
4165
4166 /* If the call dummy breakpoint is at the entry point it will
4167 cause problems when the inferior is rerun, so we better get
4168 rid of it. */
4169
4170 case bp_watchpoint_scope:
4171
4172 /* Also get rid of scope breakpoints. */
4173
4174 case bp_shlib_event:
4175
4176 /* Also remove solib event breakpoints. Their addresses may
4177 have changed since the last time we ran the program.
4178 Actually we may now be debugging against different target;
4179 and so the solib backend that installed this breakpoint may
4180 not be used in by the target. E.g.,
4181
4182 (gdb) file prog-linux
4183 (gdb) run # native linux target
4184 ...
4185 (gdb) kill
4186 (gdb) file prog-win.exe
4187 (gdb) tar rem :9999 # remote Windows gdbserver.
4188 */
4189
4190 case bp_step_resume:
4191
4192 /* Also remove step-resume breakpoints. */
4193
4194 case bp_single_step:
4195
4196 /* Also remove single-step breakpoints. */
4197
4198 delete_breakpoint (b);
4199 break;
4200
4201 case bp_watchpoint:
4202 case bp_hardware_watchpoint:
4203 case bp_read_watchpoint:
4204 case bp_access_watchpoint:
4205 {
4206 struct watchpoint *w = (struct watchpoint *) b;
4207
4208 /* Likewise for watchpoints on local expressions. */
4209 if (w->exp_valid_block != NULL)
4210 delete_breakpoint (b);
4211 else if (context == inf_starting)
4212 {
4213 /* Reset val field to force reread of starting value in
4214 insert_breakpoints. */
4215 if (w->val)
4216 value_free (w->val);
4217 w->val = NULL;
4218 w->val_valid = 0;
4219 }
4220 }
4221 break;
4222 default:
4223 break;
4224 }
4225 }
4226
4227 /* Get rid of the moribund locations. */
4228 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
4229 decref_bp_location (&bl);
4230 VEC_free (bp_location_p, moribund_locations);
4231}
4232
4233/* These functions concern about actual breakpoints inserted in the
4234 target --- to e.g. check if we need to do decr_pc adjustment or if
4235 we need to hop over the bkpt --- so we check for address space
4236 match, not program space. */
4237
4238/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
4239 exists at PC. It returns ordinary_breakpoint_here if it's an
4240 ordinary breakpoint, or permanent_breakpoint_here if it's a
4241 permanent breakpoint.
4242 - When continuing from a location with an ordinary breakpoint, we
4243 actually single step once before calling insert_breakpoints.
4244 - When continuing from a location with a permanent breakpoint, we
4245 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
4246 the target, to advance the PC past the breakpoint. */
4247
4248enum breakpoint_here
4249breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
4250{
4251 struct bp_location *bl, **blp_tmp;
4252 int any_breakpoint_here = 0;
4253
4254 ALL_BP_LOCATIONS (bl, blp_tmp)
4255 {
4256 if (bl->loc_type != bp_loc_software_breakpoint
4257 && bl->loc_type != bp_loc_hardware_breakpoint)
4258 continue;
4259
4260 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
4261 if ((breakpoint_enabled (bl->owner)
4262 || bl->permanent)
4263 && breakpoint_location_address_match (bl, aspace, pc))
4264 {
4265 if (overlay_debugging
4266 && section_is_overlay (bl->section)
4267 && !section_is_mapped (bl->section))
4268 continue; /* unmapped overlay -- can't be a match */
4269 else if (bl->permanent)
4270 return permanent_breakpoint_here;
4271 else
4272 any_breakpoint_here = 1;
4273 }
4274 }
4275
4276 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
4277}
4278
4279/* See breakpoint.h. */
4280
4281int
4282breakpoint_in_range_p (struct address_space *aspace,
4283 CORE_ADDR addr, ULONGEST len)
4284{
4285 struct bp_location *bl, **blp_tmp;
4286
4287 ALL_BP_LOCATIONS (bl, blp_tmp)
4288 {
4289 if (bl->loc_type != bp_loc_software_breakpoint
4290 && bl->loc_type != bp_loc_hardware_breakpoint)
4291 continue;
4292
4293 if ((breakpoint_enabled (bl->owner)
4294 || bl->permanent)
4295 && breakpoint_location_address_range_overlap (bl, aspace,
4296 addr, len))
4297 {
4298 if (overlay_debugging
4299 && section_is_overlay (bl->section)
4300 && !section_is_mapped (bl->section))
4301 {
4302 /* Unmapped overlay -- can't be a match. */
4303 continue;
4304 }
4305
4306 return 1;
4307 }
4308 }
4309
4310 return 0;
4311}
4312
4313/* Return true if there's a moribund breakpoint at PC. */
4314
4315int
4316moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
4317{
4318 struct bp_location *loc;
4319 int ix;
4320
4321 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
4322 if (breakpoint_location_address_match (loc, aspace, pc))
4323 return 1;
4324
4325 return 0;
4326}
4327
4328/* Returns non-zero iff BL is inserted at PC, in address space
4329 ASPACE. */
4330
4331static int
4332bp_location_inserted_here_p (struct bp_location *bl,
4333 struct address_space *aspace, CORE_ADDR pc)
4334{
4335 if (bl->inserted
4336 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4337 aspace, pc))
4338 {
4339 if (overlay_debugging
4340 && section_is_overlay (bl->section)
4341 && !section_is_mapped (bl->section))
4342 return 0; /* unmapped overlay -- can't be a match */
4343 else
4344 return 1;
4345 }
4346 return 0;
4347}
4348
4349/* Returns non-zero iff there's a breakpoint inserted at PC. */
4350
4351int
4352breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
4353{
4354 struct bp_location **blp, **blp_tmp = NULL;
4355 struct bp_location *bl;
4356
4357 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4358 {
4359 struct bp_location *bl = *blp;
4360
4361 if (bl->loc_type != bp_loc_software_breakpoint
4362 && bl->loc_type != bp_loc_hardware_breakpoint)
4363 continue;
4364
4365 if (bp_location_inserted_here_p (bl, aspace, pc))
4366 return 1;
4367 }
4368 return 0;
4369}
4370
4371/* This function returns non-zero iff there is a software breakpoint
4372 inserted at PC. */
4373
4374int
4375software_breakpoint_inserted_here_p (struct address_space *aspace,
4376 CORE_ADDR pc)
4377{
4378 struct bp_location **blp, **blp_tmp = NULL;
4379 struct bp_location *bl;
4380
4381 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4382 {
4383 struct bp_location *bl = *blp;
4384
4385 if (bl->loc_type != bp_loc_software_breakpoint)
4386 continue;
4387
4388 if (bp_location_inserted_here_p (bl, aspace, pc))
4389 return 1;
4390 }
4391
4392 return 0;
4393}
4394
4395/* See breakpoint.h. */
4396
4397int
4398hardware_breakpoint_inserted_here_p (struct address_space *aspace,
4399 CORE_ADDR pc)
4400{
4401 struct bp_location **blp, **blp_tmp = NULL;
4402 struct bp_location *bl;
4403
4404 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4405 {
4406 struct bp_location *bl = *blp;
4407
4408 if (bl->loc_type != bp_loc_hardware_breakpoint)
4409 continue;
4410
4411 if (bp_location_inserted_here_p (bl, aspace, pc))
4412 return 1;
4413 }
4414
4415 return 0;
4416}
4417
4418int
4419hardware_watchpoint_inserted_in_range (struct address_space *aspace,
4420 CORE_ADDR addr, ULONGEST len)
4421{
4422 struct breakpoint *bpt;
4423
4424 ALL_BREAKPOINTS (bpt)
4425 {
4426 struct bp_location *loc;
4427
4428 if (bpt->type != bp_hardware_watchpoint
4429 && bpt->type != bp_access_watchpoint)
4430 continue;
4431
4432 if (!breakpoint_enabled (bpt))
4433 continue;
4434
4435 for (loc = bpt->loc; loc; loc = loc->next)
4436 if (loc->pspace->aspace == aspace && loc->inserted)
4437 {
4438 CORE_ADDR l, h;
4439
4440 /* Check for intersection. */
4441 l = max (loc->address, addr);
4442 h = min (loc->address + loc->length, addr + len);
4443 if (l < h)
4444 return 1;
4445 }
4446 }
4447 return 0;
4448}
4449\f
4450
4451/* bpstat stuff. External routines' interfaces are documented
4452 in breakpoint.h. */
4453
4454int
4455is_catchpoint (struct breakpoint *ep)
4456{
4457 return (ep->type == bp_catchpoint);
4458}
4459
4460/* Frees any storage that is part of a bpstat. Does not walk the
4461 'next' chain. */
4462
4463static void
4464bpstat_free (bpstat bs)
4465{
4466 if (bs->old_val != NULL)
4467 value_free (bs->old_val);
4468 decref_counted_command_line (&bs->commands);
4469 decref_bp_location (&bs->bp_location_at);
4470 xfree (bs);
4471}
4472
4473/* Clear a bpstat so that it says we are not at any breakpoint.
4474 Also free any storage that is part of a bpstat. */
4475
4476void
4477bpstat_clear (bpstat *bsp)
4478{
4479 bpstat p;
4480 bpstat q;
4481
4482 if (bsp == 0)
4483 return;
4484 p = *bsp;
4485 while (p != NULL)
4486 {
4487 q = p->next;
4488 bpstat_free (p);
4489 p = q;
4490 }
4491 *bsp = NULL;
4492}
4493
4494/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4495 is part of the bpstat is copied as well. */
4496
4497bpstat
4498bpstat_copy (bpstat bs)
4499{
4500 bpstat p = NULL;
4501 bpstat tmp;
4502 bpstat retval = NULL;
4503
4504 if (bs == NULL)
4505 return bs;
4506
4507 for (; bs != NULL; bs = bs->next)
4508 {
4509 tmp = (bpstat) xmalloc (sizeof (*tmp));
4510 memcpy (tmp, bs, sizeof (*tmp));
4511 incref_counted_command_line (tmp->commands);
4512 incref_bp_location (tmp->bp_location_at);
4513 if (bs->old_val != NULL)
4514 {
4515 tmp->old_val = value_copy (bs->old_val);
4516 release_value (tmp->old_val);
4517 }
4518
4519 if (p == NULL)
4520 /* This is the first thing in the chain. */
4521 retval = tmp;
4522 else
4523 p->next = tmp;
4524 p = tmp;
4525 }
4526 p->next = NULL;
4527 return retval;
4528}
4529
4530/* Find the bpstat associated with this breakpoint. */
4531
4532bpstat
4533bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
4534{
4535 if (bsp == NULL)
4536 return NULL;
4537
4538 for (; bsp != NULL; bsp = bsp->next)
4539 {
4540 if (bsp->breakpoint_at == breakpoint)
4541 return bsp;
4542 }
4543 return NULL;
4544}
4545
4546/* See breakpoint.h. */
4547
4548int
4549bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
4550{
4551 for (; bsp != NULL; bsp = bsp->next)
4552 {
4553 if (bsp->breakpoint_at == NULL)
4554 {
4555 /* A moribund location can never explain a signal other than
4556 GDB_SIGNAL_TRAP. */
4557 if (sig == GDB_SIGNAL_TRAP)
4558 return 1;
4559 }
4560 else
4561 {
4562 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4563 sig))
4564 return 1;
4565 }
4566 }
4567
4568 return 0;
4569}
4570
4571/* Put in *NUM the breakpoint number of the first breakpoint we are
4572 stopped at. *BSP upon return is a bpstat which points to the
4573 remaining breakpoints stopped at (but which is not guaranteed to be
4574 good for anything but further calls to bpstat_num).
4575
4576 Return 0 if passed a bpstat which does not indicate any breakpoints.
4577 Return -1 if stopped at a breakpoint that has been deleted since
4578 we set it.
4579 Return 1 otherwise. */
4580
4581int
4582bpstat_num (bpstat *bsp, int *num)
4583{
4584 struct breakpoint *b;
4585
4586 if ((*bsp) == NULL)
4587 return 0; /* No more breakpoint values */
4588
4589 /* We assume we'll never have several bpstats that correspond to a
4590 single breakpoint -- otherwise, this function might return the
4591 same number more than once and this will look ugly. */
4592 b = (*bsp)->breakpoint_at;
4593 *bsp = (*bsp)->next;
4594 if (b == NULL)
4595 return -1; /* breakpoint that's been deleted since */
4596
4597 *num = b->number; /* We have its number */
4598 return 1;
4599}
4600
4601/* See breakpoint.h. */
4602
4603void
4604bpstat_clear_actions (void)
4605{
4606 struct thread_info *tp;
4607 bpstat bs;
4608
4609 if (ptid_equal (inferior_ptid, null_ptid))
4610 return;
4611
4612 tp = find_thread_ptid (inferior_ptid);
4613 if (tp == NULL)
4614 return;
4615
4616 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
4617 {
4618 decref_counted_command_line (&bs->commands);
4619
4620 if (bs->old_val != NULL)
4621 {
4622 value_free (bs->old_val);
4623 bs->old_val = NULL;
4624 }
4625 }
4626}
4627
4628/* Called when a command is about to proceed the inferior. */
4629
4630static void
4631breakpoint_about_to_proceed (void)
4632{
4633 if (!ptid_equal (inferior_ptid, null_ptid))
4634 {
4635 struct thread_info *tp = inferior_thread ();
4636
4637 /* Allow inferior function calls in breakpoint commands to not
4638 interrupt the command list. When the call finishes
4639 successfully, the inferior will be standing at the same
4640 breakpoint as if nothing happened. */
4641 if (tp->control.in_infcall)
4642 return;
4643 }
4644
4645 breakpoint_proceeded = 1;
4646}
4647
4648/* Stub for cleaning up our state if we error-out of a breakpoint
4649 command. */
4650static void
4651cleanup_executing_breakpoints (void *ignore)
4652{
4653 executing_breakpoint_commands = 0;
4654}
4655
4656/* Return non-zero iff CMD as the first line of a command sequence is `silent'
4657 or its equivalent. */
4658
4659static int
4660command_line_is_silent (struct command_line *cmd)
4661{
4662 return cmd && (strcmp ("silent", cmd->line) == 0);
4663}
4664
4665/* Execute all the commands associated with all the breakpoints at
4666 this location. Any of these commands could cause the process to
4667 proceed beyond this point, etc. We look out for such changes by
4668 checking the global "breakpoint_proceeded" after each command.
4669
4670 Returns true if a breakpoint command resumed the inferior. In that
4671 case, it is the caller's responsibility to recall it again with the
4672 bpstat of the current thread. */
4673
4674static int
4675bpstat_do_actions_1 (bpstat *bsp)
4676{
4677 bpstat bs;
4678 struct cleanup *old_chain;
4679 int again = 0;
4680
4681 /* Avoid endless recursion if a `source' command is contained
4682 in bs->commands. */
4683 if (executing_breakpoint_commands)
4684 return 0;
4685
4686 executing_breakpoint_commands = 1;
4687 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
4688
4689 prevent_dont_repeat ();
4690
4691 /* This pointer will iterate over the list of bpstat's. */
4692 bs = *bsp;
4693
4694 breakpoint_proceeded = 0;
4695 for (; bs != NULL; bs = bs->next)
4696 {
4697 struct counted_command_line *ccmd;
4698 struct command_line *cmd;
4699 struct cleanup *this_cmd_tree_chain;
4700
4701 /* Take ownership of the BSP's command tree, if it has one.
4702
4703 The command tree could legitimately contain commands like
4704 'step' and 'next', which call clear_proceed_status, which
4705 frees stop_bpstat's command tree. To make sure this doesn't
4706 free the tree we're executing out from under us, we need to
4707 take ownership of the tree ourselves. Since a given bpstat's
4708 commands are only executed once, we don't need to copy it; we
4709 can clear the pointer in the bpstat, and make sure we free
4710 the tree when we're done. */
4711 ccmd = bs->commands;
4712 bs->commands = NULL;
4713 this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd);
4714 cmd = ccmd ? ccmd->commands : NULL;
4715 if (command_line_is_silent (cmd))
4716 {
4717 /* The action has been already done by bpstat_stop_status. */
4718 cmd = cmd->next;
4719 }
4720
4721 while (cmd != NULL)
4722 {
4723 execute_control_command (cmd);
4724
4725 if (breakpoint_proceeded)
4726 break;
4727 else
4728 cmd = cmd->next;
4729 }
4730
4731 /* We can free this command tree now. */
4732 do_cleanups (this_cmd_tree_chain);
4733
4734 if (breakpoint_proceeded)
4735 {
4736 if (interpreter_async)
4737 /* If we are in async mode, then the target might be still
4738 running, not stopped at any breakpoint, so nothing for
4739 us to do here -- just return to the event loop. */
4740 ;
4741 else
4742 /* In sync mode, when execute_control_command returns
4743 we're already standing on the next breakpoint.
4744 Breakpoint commands for that stop were not run, since
4745 execute_command does not run breakpoint commands --
4746 only command_line_handler does, but that one is not
4747 involved in execution of breakpoint commands. So, we
4748 can now execute breakpoint commands. It should be
4749 noted that making execute_command do bpstat actions is
4750 not an option -- in this case we'll have recursive
4751 invocation of bpstat for each breakpoint with a
4752 command, and can easily blow up GDB stack. Instead, we
4753 return true, which will trigger the caller to recall us
4754 with the new stop_bpstat. */
4755 again = 1;
4756 break;
4757 }
4758 }
4759 do_cleanups (old_chain);
4760 return again;
4761}
4762
4763void
4764bpstat_do_actions (void)
4765{
4766 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4767
4768 /* Do any commands attached to breakpoint we are stopped at. */
4769 while (!ptid_equal (inferior_ptid, null_ptid)
4770 && target_has_execution
4771 && !is_exited (inferior_ptid)
4772 && !is_executing (inferior_ptid))
4773 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4774 and only return when it is stopped at the next breakpoint, we
4775 keep doing breakpoint actions until it returns false to
4776 indicate the inferior was not resumed. */
4777 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
4778 break;
4779
4780 discard_cleanups (cleanup_if_error);
4781}
4782
4783/* Print out the (old or new) value associated with a watchpoint. */
4784
4785static void
4786watchpoint_value_print (struct value *val, struct ui_file *stream)
4787{
4788 if (val == NULL)
4789 fprintf_unfiltered (stream, _("<unreadable>"));
4790 else
4791 {
4792 struct value_print_options opts;
4793 get_user_print_options (&opts);
4794 value_print (val, stream, &opts);
4795 }
4796}
4797
4798/* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4799 debugging multiple threads. */
4800
4801void
4802maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4803{
4804 if (ui_out_is_mi_like_p (uiout))
4805 return;
4806
4807 ui_out_text (uiout, "\n");
4808
4809 if (show_thread_that_caused_stop ())
4810 {
4811 const char *name;
4812 struct thread_info *thr = inferior_thread ();
4813
4814 ui_out_text (uiout, "Thread ");
4815 ui_out_field_fmt (uiout, "thread-id", "%s", print_thread_id (thr));
4816
4817 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4818 if (name != NULL)
4819 {
4820 ui_out_text (uiout, " \"");
4821 ui_out_field_fmt (uiout, "name", "%s", name);
4822 ui_out_text (uiout, "\"");
4823 }
4824
4825 ui_out_text (uiout, " hit ");
4826 }
4827}
4828
4829/* Generic routine for printing messages indicating why we
4830 stopped. The behavior of this function depends on the value
4831 'print_it' in the bpstat structure. Under some circumstances we
4832 may decide not to print anything here and delegate the task to
4833 normal_stop(). */
4834
4835static enum print_stop_action
4836print_bp_stop_message (bpstat bs)
4837{
4838 switch (bs->print_it)
4839 {
4840 case print_it_noop:
4841 /* Nothing should be printed for this bpstat entry. */
4842 return PRINT_UNKNOWN;
4843 break;
4844
4845 case print_it_done:
4846 /* We still want to print the frame, but we already printed the
4847 relevant messages. */
4848 return PRINT_SRC_AND_LOC;
4849 break;
4850
4851 case print_it_normal:
4852 {
4853 struct breakpoint *b = bs->breakpoint_at;
4854
4855 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4856 which has since been deleted. */
4857 if (b == NULL)
4858 return PRINT_UNKNOWN;
4859
4860 /* Normal case. Call the breakpoint's print_it method. */
4861 return b->ops->print_it (bs);
4862 }
4863 break;
4864
4865 default:
4866 internal_error (__FILE__, __LINE__,
4867 _("print_bp_stop_message: unrecognized enum value"));
4868 break;
4869 }
4870}
4871
4872/* A helper function that prints a shared library stopped event. */
4873
4874static void
4875print_solib_event (int is_catchpoint)
4876{
4877 int any_deleted
4878 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4879 int any_added
4880 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4881
4882 if (!is_catchpoint)
4883 {
4884 if (any_added || any_deleted)
4885 ui_out_text (current_uiout,
4886 _("Stopped due to shared library event:\n"));
4887 else
4888 ui_out_text (current_uiout,
4889 _("Stopped due to shared library event (no "
4890 "libraries added or removed)\n"));
4891 }
4892
4893 if (ui_out_is_mi_like_p (current_uiout))
4894 ui_out_field_string (current_uiout, "reason",
4895 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4896
4897 if (any_deleted)
4898 {
4899 struct cleanup *cleanup;
4900 char *name;
4901 int ix;
4902
4903 ui_out_text (current_uiout, _(" Inferior unloaded "));
4904 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4905 "removed");
4906 for (ix = 0;
4907 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4908 ix, name);
4909 ++ix)
4910 {
4911 if (ix > 0)
4912 ui_out_text (current_uiout, " ");
4913 ui_out_field_string (current_uiout, "library", name);
4914 ui_out_text (current_uiout, "\n");
4915 }
4916
4917 do_cleanups (cleanup);
4918 }
4919
4920 if (any_added)
4921 {
4922 struct so_list *iter;
4923 int ix;
4924 struct cleanup *cleanup;
4925
4926 ui_out_text (current_uiout, _(" Inferior loaded "));
4927 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4928 "added");
4929 for (ix = 0;
4930 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4931 ix, iter);
4932 ++ix)
4933 {
4934 if (ix > 0)
4935 ui_out_text (current_uiout, " ");
4936 ui_out_field_string (current_uiout, "library", iter->so_name);
4937 ui_out_text (current_uiout, "\n");
4938 }
4939
4940 do_cleanups (cleanup);
4941 }
4942}
4943
4944/* Print a message indicating what happened. This is called from
4945 normal_stop(). The input to this routine is the head of the bpstat
4946 list - a list of the eventpoints that caused this stop. KIND is
4947 the target_waitkind for the stopping event. This
4948 routine calls the generic print routine for printing a message
4949 about reasons for stopping. This will print (for example) the
4950 "Breakpoint n," part of the output. The return value of this
4951 routine is one of:
4952
4953 PRINT_UNKNOWN: Means we printed nothing.
4954 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4955 code to print the location. An example is
4956 "Breakpoint 1, " which should be followed by
4957 the location.
4958 PRINT_SRC_ONLY: Means we printed something, but there is no need
4959 to also print the location part of the message.
4960 An example is the catch/throw messages, which
4961 don't require a location appended to the end.
4962 PRINT_NOTHING: We have done some printing and we don't need any
4963 further info to be printed. */
4964
4965enum print_stop_action
4966bpstat_print (bpstat bs, int kind)
4967{
4968 enum print_stop_action val;
4969
4970 /* Maybe another breakpoint in the chain caused us to stop.
4971 (Currently all watchpoints go on the bpstat whether hit or not.
4972 That probably could (should) be changed, provided care is taken
4973 with respect to bpstat_explains_signal). */
4974 for (; bs; bs = bs->next)
4975 {
4976 val = print_bp_stop_message (bs);
4977 if (val == PRINT_SRC_ONLY
4978 || val == PRINT_SRC_AND_LOC
4979 || val == PRINT_NOTHING)
4980 return val;
4981 }
4982
4983 /* If we had hit a shared library event breakpoint,
4984 print_bp_stop_message would print out this message. If we hit an
4985 OS-level shared library event, do the same thing. */
4986 if (kind == TARGET_WAITKIND_LOADED)
4987 {
4988 print_solib_event (0);
4989 return PRINT_NOTHING;
4990 }
4991
4992 /* We reached the end of the chain, or we got a null BS to start
4993 with and nothing was printed. */
4994 return PRINT_UNKNOWN;
4995}
4996
4997/* Evaluate the expression EXP and return 1 if value is zero.
4998 This returns the inverse of the condition because it is called
4999 from catch_errors which returns 0 if an exception happened, and if an
5000 exception happens we want execution to stop.
5001 The argument is a "struct expression *" that has been cast to a
5002 "void *" to make it pass through catch_errors. */
5003
5004static int
5005breakpoint_cond_eval (void *exp)
5006{
5007 struct value *mark = value_mark ();
5008 int i = !value_true (evaluate_expression ((struct expression *) exp));
5009
5010 value_free_to_mark (mark);
5011 return i;
5012}
5013
5014/* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
5015
5016static bpstat
5017bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
5018{
5019 bpstat bs;
5020
5021 bs = (bpstat) xmalloc (sizeof (*bs));
5022 bs->next = NULL;
5023 **bs_link_pointer = bs;
5024 *bs_link_pointer = &bs->next;
5025 bs->breakpoint_at = bl->owner;
5026 bs->bp_location_at = bl;
5027 incref_bp_location (bl);
5028 /* If the condition is false, etc., don't do the commands. */
5029 bs->commands = NULL;
5030 bs->old_val = NULL;
5031 bs->print_it = print_it_normal;
5032 return bs;
5033}
5034\f
5035/* The target has stopped with waitstatus WS. Check if any hardware
5036 watchpoints have triggered, according to the target. */
5037
5038int
5039watchpoints_triggered (struct target_waitstatus *ws)
5040{
5041 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
5042 CORE_ADDR addr;
5043 struct breakpoint *b;
5044
5045 if (!stopped_by_watchpoint)
5046 {
5047 /* We were not stopped by a watchpoint. Mark all watchpoints
5048 as not triggered. */
5049 ALL_BREAKPOINTS (b)
5050 if (is_hardware_watchpoint (b))
5051 {
5052 struct watchpoint *w = (struct watchpoint *) b;
5053
5054 w->watchpoint_triggered = watch_triggered_no;
5055 }
5056
5057 return 0;
5058 }
5059
5060 if (!target_stopped_data_address (&current_target, &addr))
5061 {
5062 /* We were stopped by a watchpoint, but we don't know where.
5063 Mark all watchpoints as unknown. */
5064 ALL_BREAKPOINTS (b)
5065 if (is_hardware_watchpoint (b))
5066 {
5067 struct watchpoint *w = (struct watchpoint *) b;
5068
5069 w->watchpoint_triggered = watch_triggered_unknown;
5070 }
5071
5072 return 1;
5073 }
5074
5075 /* The target could report the data address. Mark watchpoints
5076 affected by this data address as triggered, and all others as not
5077 triggered. */
5078
5079 ALL_BREAKPOINTS (b)
5080 if (is_hardware_watchpoint (b))
5081 {
5082 struct watchpoint *w = (struct watchpoint *) b;
5083 struct bp_location *loc;
5084
5085 w->watchpoint_triggered = watch_triggered_no;
5086 for (loc = b->loc; loc; loc = loc->next)
5087 {
5088 if (is_masked_watchpoint (b))
5089 {
5090 CORE_ADDR newaddr = addr & w->hw_wp_mask;
5091 CORE_ADDR start = loc->address & w->hw_wp_mask;
5092
5093 if (newaddr == start)
5094 {
5095 w->watchpoint_triggered = watch_triggered_yes;
5096 break;
5097 }
5098 }
5099 /* Exact match not required. Within range is sufficient. */
5100 else if (target_watchpoint_addr_within_range (&current_target,
5101 addr, loc->address,
5102 loc->length))
5103 {
5104 w->watchpoint_triggered = watch_triggered_yes;
5105 break;
5106 }
5107 }
5108 }
5109
5110 return 1;
5111}
5112
5113/* Possible return values for watchpoint_check (this can't be an enum
5114 because of check_errors). */
5115/* The watchpoint has been deleted. */
5116#define WP_DELETED 1
5117/* The value has changed. */
5118#define WP_VALUE_CHANGED 2
5119/* The value has not changed. */
5120#define WP_VALUE_NOT_CHANGED 3
5121/* Ignore this watchpoint, no matter if the value changed or not. */
5122#define WP_IGNORE 4
5123
5124#define BP_TEMPFLAG 1
5125#define BP_HARDWAREFLAG 2
5126
5127/* Evaluate watchpoint condition expression and check if its value
5128 changed.
5129
5130 P should be a pointer to struct bpstat, but is defined as a void *
5131 in order for this function to be usable with catch_errors. */
5132
5133static int
5134watchpoint_check (void *p)
5135{
5136 bpstat bs = (bpstat) p;
5137 struct watchpoint *b;
5138 struct frame_info *fr;
5139 int within_current_scope;
5140
5141 /* BS is built from an existing struct breakpoint. */
5142 gdb_assert (bs->breakpoint_at != NULL);
5143 b = (struct watchpoint *) bs->breakpoint_at;
5144
5145 /* If this is a local watchpoint, we only want to check if the
5146 watchpoint frame is in scope if the current thread is the thread
5147 that was used to create the watchpoint. */
5148 if (!watchpoint_in_thread_scope (b))
5149 return WP_IGNORE;
5150
5151 if (b->exp_valid_block == NULL)
5152 within_current_scope = 1;
5153 else
5154 {
5155 struct frame_info *frame = get_current_frame ();
5156 struct gdbarch *frame_arch = get_frame_arch (frame);
5157 CORE_ADDR frame_pc = get_frame_pc (frame);
5158
5159 /* stack_frame_destroyed_p() returns a non-zero value if we're
5160 still in the function but the stack frame has already been
5161 invalidated. Since we can't rely on the values of local
5162 variables after the stack has been destroyed, we are treating
5163 the watchpoint in that state as `not changed' without further
5164 checking. Don't mark watchpoints as changed if the current
5165 frame is in an epilogue - even if they are in some other
5166 frame, our view of the stack is likely to be wrong and
5167 frame_find_by_id could error out. */
5168 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
5169 return WP_IGNORE;
5170
5171 fr = frame_find_by_id (b->watchpoint_frame);
5172 within_current_scope = (fr != NULL);
5173
5174 /* If we've gotten confused in the unwinder, we might have
5175 returned a frame that can't describe this variable. */
5176 if (within_current_scope)
5177 {
5178 struct symbol *function;
5179
5180 function = get_frame_function (fr);
5181 if (function == NULL
5182 || !contained_in (b->exp_valid_block,
5183 SYMBOL_BLOCK_VALUE (function)))
5184 within_current_scope = 0;
5185 }
5186
5187 if (within_current_scope)
5188 /* If we end up stopping, the current frame will get selected
5189 in normal_stop. So this call to select_frame won't affect
5190 the user. */
5191 select_frame (fr);
5192 }
5193
5194 if (within_current_scope)
5195 {
5196 /* We use value_{,free_to_}mark because it could be a *long*
5197 time before we return to the command level and call
5198 free_all_values. We can't call free_all_values because we
5199 might be in the middle of evaluating a function call. */
5200
5201 int pc = 0;
5202 struct value *mark;
5203 struct value *new_val;
5204
5205 if (is_masked_watchpoint (&b->base))
5206 /* Since we don't know the exact trigger address (from
5207 stopped_data_address), just tell the user we've triggered
5208 a mask watchpoint. */
5209 return WP_VALUE_CHANGED;
5210
5211 mark = value_mark ();
5212 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL, 0);
5213
5214 if (b->val_bitsize != 0)
5215 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
5216
5217 /* We use value_equal_contents instead of value_equal because
5218 the latter coerces an array to a pointer, thus comparing just
5219 the address of the array instead of its contents. This is
5220 not what we want. */
5221 if ((b->val != NULL) != (new_val != NULL)
5222 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
5223 {
5224 if (new_val != NULL)
5225 {
5226 release_value (new_val);
5227 value_free_to_mark (mark);
5228 }
5229 bs->old_val = b->val;
5230 b->val = new_val;
5231 b->val_valid = 1;
5232 return WP_VALUE_CHANGED;
5233 }
5234 else
5235 {
5236 /* Nothing changed. */
5237 value_free_to_mark (mark);
5238 return WP_VALUE_NOT_CHANGED;
5239 }
5240 }
5241 else
5242 {
5243 struct ui_out *uiout = current_uiout;
5244
5245 /* This seems like the only logical thing to do because
5246 if we temporarily ignored the watchpoint, then when
5247 we reenter the block in which it is valid it contains
5248 garbage (in the case of a function, it may have two
5249 garbage values, one before and one after the prologue).
5250 So we can't even detect the first assignment to it and
5251 watch after that (since the garbage may or may not equal
5252 the first value assigned). */
5253 /* We print all the stop information in
5254 breakpoint_ops->print_it, but in this case, by the time we
5255 call breakpoint_ops->print_it this bp will be deleted
5256 already. So we have no choice but print the information
5257 here. */
5258 if (ui_out_is_mi_like_p (uiout))
5259 ui_out_field_string
5260 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
5261 ui_out_text (uiout, "\nWatchpoint ");
5262 ui_out_field_int (uiout, "wpnum", b->base.number);
5263 ui_out_text (uiout,
5264 " deleted because the program has left the block in\n\
5265which its expression is valid.\n");
5266
5267 /* Make sure the watchpoint's commands aren't executed. */
5268 decref_counted_command_line (&b->base.commands);
5269 watchpoint_del_at_next_stop (b);
5270
5271 return WP_DELETED;
5272 }
5273}
5274
5275/* Return true if it looks like target has stopped due to hitting
5276 breakpoint location BL. This function does not check if we should
5277 stop, only if BL explains the stop. */
5278
5279static int
5280bpstat_check_location (const struct bp_location *bl,
5281 struct address_space *aspace, CORE_ADDR bp_addr,
5282 const struct target_waitstatus *ws)
5283{
5284 struct breakpoint *b = bl->owner;
5285
5286 /* BL is from an existing breakpoint. */
5287 gdb_assert (b != NULL);
5288
5289 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
5290}
5291
5292/* Determine if the watched values have actually changed, and we
5293 should stop. If not, set BS->stop to 0. */
5294
5295static void
5296bpstat_check_watchpoint (bpstat bs)
5297{
5298 const struct bp_location *bl;
5299 struct watchpoint *b;
5300
5301 /* BS is built for existing struct breakpoint. */
5302 bl = bs->bp_location_at;
5303 gdb_assert (bl != NULL);
5304 b = (struct watchpoint *) bs->breakpoint_at;
5305 gdb_assert (b != NULL);
5306
5307 {
5308 int must_check_value = 0;
5309
5310 if (b->base.type == bp_watchpoint)
5311 /* For a software watchpoint, we must always check the
5312 watched value. */
5313 must_check_value = 1;
5314 else if (b->watchpoint_triggered == watch_triggered_yes)
5315 /* We have a hardware watchpoint (read, write, or access)
5316 and the target earlier reported an address watched by
5317 this watchpoint. */
5318 must_check_value = 1;
5319 else if (b->watchpoint_triggered == watch_triggered_unknown
5320 && b->base.type == bp_hardware_watchpoint)
5321 /* We were stopped by a hardware watchpoint, but the target could
5322 not report the data address. We must check the watchpoint's
5323 value. Access and read watchpoints are out of luck; without
5324 a data address, we can't figure it out. */
5325 must_check_value = 1;
5326
5327 if (must_check_value)
5328 {
5329 char *message
5330 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
5331 b->base.number);
5332 struct cleanup *cleanups = make_cleanup (xfree, message);
5333 int e = catch_errors (watchpoint_check, bs, message,
5334 RETURN_MASK_ALL);
5335 do_cleanups (cleanups);
5336 switch (e)
5337 {
5338 case WP_DELETED:
5339 /* We've already printed what needs to be printed. */
5340 bs->print_it = print_it_done;
5341 /* Stop. */
5342 break;
5343 case WP_IGNORE:
5344 bs->print_it = print_it_noop;
5345 bs->stop = 0;
5346 break;
5347 case WP_VALUE_CHANGED:
5348 if (b->base.type == bp_read_watchpoint)
5349 {
5350 /* There are two cases to consider here:
5351
5352 1. We're watching the triggered memory for reads.
5353 In that case, trust the target, and always report
5354 the watchpoint hit to the user. Even though
5355 reads don't cause value changes, the value may
5356 have changed since the last time it was read, and
5357 since we're not trapping writes, we will not see
5358 those, and as such we should ignore our notion of
5359 old value.
5360
5361 2. We're watching the triggered memory for both
5362 reads and writes. There are two ways this may
5363 happen:
5364
5365 2.1. This is a target that can't break on data
5366 reads only, but can break on accesses (reads or
5367 writes), such as e.g., x86. We detect this case
5368 at the time we try to insert read watchpoints.
5369
5370 2.2. Otherwise, the target supports read
5371 watchpoints, but, the user set an access or write
5372 watchpoint watching the same memory as this read
5373 watchpoint.
5374
5375 If we're watching memory writes as well as reads,
5376 ignore watchpoint hits when we find that the
5377 value hasn't changed, as reads don't cause
5378 changes. This still gives false positives when
5379 the program writes the same value to memory as
5380 what there was already in memory (we will confuse
5381 it for a read), but it's much better than
5382 nothing. */
5383
5384 int other_write_watchpoint = 0;
5385
5386 if (bl->watchpoint_type == hw_read)
5387 {
5388 struct breakpoint *other_b;
5389
5390 ALL_BREAKPOINTS (other_b)
5391 if (other_b->type == bp_hardware_watchpoint
5392 || other_b->type == bp_access_watchpoint)
5393 {
5394 struct watchpoint *other_w =
5395 (struct watchpoint *) other_b;
5396
5397 if (other_w->watchpoint_triggered
5398 == watch_triggered_yes)
5399 {
5400 other_write_watchpoint = 1;
5401 break;
5402 }
5403 }
5404 }
5405
5406 if (other_write_watchpoint
5407 || bl->watchpoint_type == hw_access)
5408 {
5409 /* We're watching the same memory for writes,
5410 and the value changed since the last time we
5411 updated it, so this trap must be for a write.
5412 Ignore it. */
5413 bs->print_it = print_it_noop;
5414 bs->stop = 0;
5415 }
5416 }
5417 break;
5418 case WP_VALUE_NOT_CHANGED:
5419 if (b->base.type == bp_hardware_watchpoint
5420 || b->base.type == bp_watchpoint)
5421 {
5422 /* Don't stop: write watchpoints shouldn't fire if
5423 the value hasn't changed. */
5424 bs->print_it = print_it_noop;
5425 bs->stop = 0;
5426 }
5427 /* Stop. */
5428 break;
5429 default:
5430 /* Can't happen. */
5431 case 0:
5432 /* Error from catch_errors. */
5433 printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number);
5434 watchpoint_del_at_next_stop (b);
5435 /* We've already printed what needs to be printed. */
5436 bs->print_it = print_it_done;
5437 break;
5438 }
5439 }
5440 else /* must_check_value == 0 */
5441 {
5442 /* This is a case where some watchpoint(s) triggered, but
5443 not at the address of this watchpoint, or else no
5444 watchpoint triggered after all. So don't print
5445 anything for this watchpoint. */
5446 bs->print_it = print_it_noop;
5447 bs->stop = 0;
5448 }
5449 }
5450}
5451
5452/* For breakpoints that are currently marked as telling gdb to stop,
5453 check conditions (condition proper, frame, thread and ignore count)
5454 of breakpoint referred to by BS. If we should not stop for this
5455 breakpoint, set BS->stop to 0. */
5456
5457static void
5458bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5459{
5460 const struct bp_location *bl;
5461 struct breakpoint *b;
5462 int value_is_zero = 0;
5463 struct expression *cond;
5464
5465 gdb_assert (bs->stop);
5466
5467 /* BS is built for existing struct breakpoint. */
5468 bl = bs->bp_location_at;
5469 gdb_assert (bl != NULL);
5470 b = bs->breakpoint_at;
5471 gdb_assert (b != NULL);
5472
5473 /* Even if the target evaluated the condition on its end and notified GDB, we
5474 need to do so again since GDB does not know if we stopped due to a
5475 breakpoint or a single step breakpoint. */
5476
5477 if (frame_id_p (b->frame_id)
5478 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
5479 {
5480 bs->stop = 0;
5481 return;
5482 }
5483
5484 /* If this is a thread/task-specific breakpoint, don't waste cpu
5485 evaluating the condition if this isn't the specified
5486 thread/task. */
5487 if ((b->thread != -1 && b->thread != ptid_to_global_thread_id (ptid))
5488 || (b->task != 0 && b->task != ada_get_task_number (ptid)))
5489
5490 {
5491 bs->stop = 0;
5492 return;
5493 }
5494
5495 /* Evaluate extension language breakpoints that have a "stop" method
5496 implemented. */
5497 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
5498
5499 if (is_watchpoint (b))
5500 {
5501 struct watchpoint *w = (struct watchpoint *) b;
5502
5503 cond = w->cond_exp;
5504 }
5505 else
5506 cond = bl->cond;
5507
5508 if (cond && b->disposition != disp_del_at_next_stop)
5509 {
5510 int within_current_scope = 1;
5511 struct watchpoint * w;
5512
5513 /* We use value_mark and value_free_to_mark because it could
5514 be a long time before we return to the command level and
5515 call free_all_values. We can't call free_all_values
5516 because we might be in the middle of evaluating a
5517 function call. */
5518 struct value *mark = value_mark ();
5519
5520 if (is_watchpoint (b))
5521 w = (struct watchpoint *) b;
5522 else
5523 w = NULL;
5524
5525 /* Need to select the frame, with all that implies so that
5526 the conditions will have the right context. Because we
5527 use the frame, we will not see an inlined function's
5528 variables when we arrive at a breakpoint at the start
5529 of the inlined function; the current frame will be the
5530 call site. */
5531 if (w == NULL || w->cond_exp_valid_block == NULL)
5532 select_frame (get_current_frame ());
5533 else
5534 {
5535 struct frame_info *frame;
5536
5537 /* For local watchpoint expressions, which particular
5538 instance of a local is being watched matters, so we
5539 keep track of the frame to evaluate the expression
5540 in. To evaluate the condition however, it doesn't
5541 really matter which instantiation of the function
5542 where the condition makes sense triggers the
5543 watchpoint. This allows an expression like "watch
5544 global if q > 10" set in `func', catch writes to
5545 global on all threads that call `func', or catch
5546 writes on all recursive calls of `func' by a single
5547 thread. We simply always evaluate the condition in
5548 the innermost frame that's executing where it makes
5549 sense to evaluate the condition. It seems
5550 intuitive. */
5551 frame = block_innermost_frame (w->cond_exp_valid_block);
5552 if (frame != NULL)
5553 select_frame (frame);
5554 else
5555 within_current_scope = 0;
5556 }
5557 if (within_current_scope)
5558 value_is_zero
5559 = catch_errors (breakpoint_cond_eval, cond,
5560 "Error in testing breakpoint condition:\n",
5561 RETURN_MASK_ALL);
5562 else
5563 {
5564 warning (_("Watchpoint condition cannot be tested "
5565 "in the current scope"));
5566 /* If we failed to set the right context for this
5567 watchpoint, unconditionally report it. */
5568 value_is_zero = 0;
5569 }
5570 /* FIXME-someday, should give breakpoint #. */
5571 value_free_to_mark (mark);
5572 }
5573
5574 if (cond && value_is_zero)
5575 {
5576 bs->stop = 0;
5577 }
5578 else if (b->ignore_count > 0)
5579 {
5580 b->ignore_count--;
5581 bs->stop = 0;
5582 /* Increase the hit count even though we don't stop. */
5583 ++(b->hit_count);
5584 observer_notify_breakpoint_modified (b);
5585 }
5586}
5587
5588/* Returns true if we need to track moribund locations of LOC's type
5589 on the current target. */
5590
5591static int
5592need_moribund_for_location_type (struct bp_location *loc)
5593{
5594 return ((loc->loc_type == bp_loc_software_breakpoint
5595 && !target_supports_stopped_by_sw_breakpoint ())
5596 || (loc->loc_type == bp_loc_hardware_breakpoint
5597 && !target_supports_stopped_by_hw_breakpoint ()));
5598}
5599
5600
5601/* Get a bpstat associated with having just stopped at address
5602 BP_ADDR in thread PTID.
5603
5604 Determine whether we stopped at a breakpoint, etc, or whether we
5605 don't understand this stop. Result is a chain of bpstat's such
5606 that:
5607
5608 if we don't understand the stop, the result is a null pointer.
5609
5610 if we understand why we stopped, the result is not null.
5611
5612 Each element of the chain refers to a particular breakpoint or
5613 watchpoint at which we have stopped. (We may have stopped for
5614 several reasons concurrently.)
5615
5616 Each element of the chain has valid next, breakpoint_at,
5617 commands, FIXME??? fields. */
5618
5619bpstat
5620bpstat_stop_status (struct address_space *aspace,
5621 CORE_ADDR bp_addr, ptid_t ptid,
5622 const struct target_waitstatus *ws)
5623{
5624 struct breakpoint *b = NULL;
5625 struct bp_location *bl;
5626 struct bp_location *loc;
5627 /* First item of allocated bpstat's. */
5628 bpstat bs_head = NULL, *bs_link = &bs_head;
5629 /* Pointer to the last thing in the chain currently. */
5630 bpstat bs;
5631 int ix;
5632 int need_remove_insert;
5633 int removed_any;
5634
5635 /* First, build the bpstat chain with locations that explain a
5636 target stop, while being careful to not set the target running,
5637 as that may invalidate locations (in particular watchpoint
5638 locations are recreated). Resuming will happen here with
5639 breakpoint conditions or watchpoint expressions that include
5640 inferior function calls. */
5641
5642 ALL_BREAKPOINTS (b)
5643 {
5644 if (!breakpoint_enabled (b))
5645 continue;
5646
5647 for (bl = b->loc; bl != NULL; bl = bl->next)
5648 {
5649 /* For hardware watchpoints, we look only at the first
5650 location. The watchpoint_check function will work on the
5651 entire expression, not the individual locations. For
5652 read watchpoints, the watchpoints_triggered function has
5653 checked all locations already. */
5654 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5655 break;
5656
5657 if (!bl->enabled || bl->shlib_disabled)
5658 continue;
5659
5660 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
5661 continue;
5662
5663 /* Come here if it's a watchpoint, or if the break address
5664 matches. */
5665
5666 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
5667 explain stop. */
5668
5669 /* Assume we stop. Should we find a watchpoint that is not
5670 actually triggered, or if the condition of the breakpoint
5671 evaluates as false, we'll reset 'stop' to 0. */
5672 bs->stop = 1;
5673 bs->print = 1;
5674
5675 /* If this is a scope breakpoint, mark the associated
5676 watchpoint as triggered so that we will handle the
5677 out-of-scope event. We'll get to the watchpoint next
5678 iteration. */
5679 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
5680 {
5681 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5682
5683 w->watchpoint_triggered = watch_triggered_yes;
5684 }
5685 }
5686 }
5687
5688 /* Check if a moribund breakpoint explains the stop. */
5689 if (!target_supports_stopped_by_sw_breakpoint ()
5690 || !target_supports_stopped_by_hw_breakpoint ())
5691 {
5692 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
5693 {
5694 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5695 && need_moribund_for_location_type (loc))
5696 {
5697 bs = bpstat_alloc (loc, &bs_link);
5698 /* For hits of moribund locations, we should just proceed. */
5699 bs->stop = 0;
5700 bs->print = 0;
5701 bs->print_it = print_it_noop;
5702 }
5703 }
5704 }
5705
5706 /* A bit of special processing for shlib breakpoints. We need to
5707 process solib loading here, so that the lists of loaded and
5708 unloaded libraries are correct before we handle "catch load" and
5709 "catch unload". */
5710 for (bs = bs_head; bs != NULL; bs = bs->next)
5711 {
5712 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
5713 {
5714 handle_solib_event ();
5715 break;
5716 }
5717 }
5718
5719 /* Now go through the locations that caused the target to stop, and
5720 check whether we're interested in reporting this stop to higher
5721 layers, or whether we should resume the target transparently. */
5722
5723 removed_any = 0;
5724
5725 for (bs = bs_head; bs != NULL; bs = bs->next)
5726 {
5727 if (!bs->stop)
5728 continue;
5729
5730 b = bs->breakpoint_at;
5731 b->ops->check_status (bs);
5732 if (bs->stop)
5733 {
5734 bpstat_check_breakpoint_conditions (bs, ptid);
5735
5736 if (bs->stop)
5737 {
5738 ++(b->hit_count);
5739 observer_notify_breakpoint_modified (b);
5740
5741 /* We will stop here. */
5742 if (b->disposition == disp_disable)
5743 {
5744 --(b->enable_count);
5745 if (b->enable_count <= 0)
5746 b->enable_state = bp_disabled;
5747 removed_any = 1;
5748 }
5749 if (b->silent)
5750 bs->print = 0;
5751 bs->commands = b->commands;
5752 incref_counted_command_line (bs->commands);
5753 if (command_line_is_silent (bs->commands
5754 ? bs->commands->commands : NULL))
5755 bs->print = 0;
5756
5757 b->ops->after_condition_true (bs);
5758 }
5759
5760 }
5761
5762 /* Print nothing for this entry if we don't stop or don't
5763 print. */
5764 if (!bs->stop || !bs->print)
5765 bs->print_it = print_it_noop;
5766 }
5767
5768 /* If we aren't stopping, the value of some hardware watchpoint may
5769 not have changed, but the intermediate memory locations we are
5770 watching may have. Don't bother if we're stopping; this will get
5771 done later. */
5772 need_remove_insert = 0;
5773 if (! bpstat_causes_stop (bs_head))
5774 for (bs = bs_head; bs != NULL; bs = bs->next)
5775 if (!bs->stop
5776 && bs->breakpoint_at
5777 && is_hardware_watchpoint (bs->breakpoint_at))
5778 {
5779 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5780
5781 update_watchpoint (w, 0 /* don't reparse. */);
5782 need_remove_insert = 1;
5783 }
5784
5785 if (need_remove_insert)
5786 update_global_location_list (UGLL_MAY_INSERT);
5787 else if (removed_any)
5788 update_global_location_list (UGLL_DONT_INSERT);
5789
5790 return bs_head;
5791}
5792
5793static void
5794handle_jit_event (void)
5795{
5796 struct frame_info *frame;
5797 struct gdbarch *gdbarch;
5798
5799 if (debug_infrun)
5800 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5801
5802 /* Switch terminal for any messages produced by
5803 breakpoint_re_set. */
5804 target_terminal_ours_for_output ();
5805
5806 frame = get_current_frame ();
5807 gdbarch = get_frame_arch (frame);
5808
5809 jit_event_handler (gdbarch);
5810
5811 target_terminal_inferior ();
5812}
5813
5814/* Prepare WHAT final decision for infrun. */
5815
5816/* Decide what infrun needs to do with this bpstat. */
5817
5818struct bpstat_what
5819bpstat_what (bpstat bs_head)
5820{
5821 struct bpstat_what retval;
5822 int jit_event = 0;
5823 bpstat bs;
5824
5825 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
5826 retval.call_dummy = STOP_NONE;
5827 retval.is_longjmp = 0;
5828
5829 for (bs = bs_head; bs != NULL; bs = bs->next)
5830 {
5831 /* Extract this BS's action. After processing each BS, we check
5832 if its action overrides all we've seem so far. */
5833 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5834 enum bptype bptype;
5835
5836 if (bs->breakpoint_at == NULL)
5837 {
5838 /* I suspect this can happen if it was a momentary
5839 breakpoint which has since been deleted. */
5840 bptype = bp_none;
5841 }
5842 else
5843 bptype = bs->breakpoint_at->type;
5844
5845 switch (bptype)
5846 {
5847 case bp_none:
5848 break;
5849 case bp_breakpoint:
5850 case bp_hardware_breakpoint:
5851 case bp_single_step:
5852 case bp_until:
5853 case bp_finish:
5854 case bp_shlib_event:
5855 if (bs->stop)
5856 {
5857 if (bs->print)
5858 this_action = BPSTAT_WHAT_STOP_NOISY;
5859 else
5860 this_action = BPSTAT_WHAT_STOP_SILENT;
5861 }
5862 else
5863 this_action = BPSTAT_WHAT_SINGLE;
5864 break;
5865 case bp_watchpoint:
5866 case bp_hardware_watchpoint:
5867 case bp_read_watchpoint:
5868 case bp_access_watchpoint:
5869 if (bs->stop)
5870 {
5871 if (bs->print)
5872 this_action = BPSTAT_WHAT_STOP_NOISY;
5873 else
5874 this_action = BPSTAT_WHAT_STOP_SILENT;
5875 }
5876 else
5877 {
5878 /* There was a watchpoint, but we're not stopping.
5879 This requires no further action. */
5880 }
5881 break;
5882 case bp_longjmp:
5883 case bp_longjmp_call_dummy:
5884 case bp_exception:
5885 if (bs->stop)
5886 {
5887 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5888 retval.is_longjmp = bptype != bp_exception;
5889 }
5890 else
5891 this_action = BPSTAT_WHAT_SINGLE;
5892 break;
5893 case bp_longjmp_resume:
5894 case bp_exception_resume:
5895 if (bs->stop)
5896 {
5897 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5898 retval.is_longjmp = bptype == bp_longjmp_resume;
5899 }
5900 else
5901 this_action = BPSTAT_WHAT_SINGLE;
5902 break;
5903 case bp_step_resume:
5904 if (bs->stop)
5905 this_action = BPSTAT_WHAT_STEP_RESUME;
5906 else
5907 {
5908 /* It is for the wrong frame. */
5909 this_action = BPSTAT_WHAT_SINGLE;
5910 }
5911 break;
5912 case bp_hp_step_resume:
5913 if (bs->stop)
5914 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5915 else
5916 {
5917 /* It is for the wrong frame. */
5918 this_action = BPSTAT_WHAT_SINGLE;
5919 }
5920 break;
5921 case bp_watchpoint_scope:
5922 case bp_thread_event:
5923 case bp_overlay_event:
5924 case bp_longjmp_master:
5925 case bp_std_terminate_master:
5926 case bp_exception_master:
5927 this_action = BPSTAT_WHAT_SINGLE;
5928 break;
5929 case bp_catchpoint:
5930 if (bs->stop)
5931 {
5932 if (bs->print)
5933 this_action = BPSTAT_WHAT_STOP_NOISY;
5934 else
5935 this_action = BPSTAT_WHAT_STOP_SILENT;
5936 }
5937 else
5938 {
5939 /* There was a catchpoint, but we're not stopping.
5940 This requires no further action. */
5941 }
5942 break;
5943 case bp_jit_event:
5944 jit_event = 1;
5945 this_action = BPSTAT_WHAT_SINGLE;
5946 break;
5947 case bp_call_dummy:
5948 /* Make sure the action is stop (silent or noisy),
5949 so infrun.c pops the dummy frame. */
5950 retval.call_dummy = STOP_STACK_DUMMY;
5951 this_action = BPSTAT_WHAT_STOP_SILENT;
5952 break;
5953 case bp_std_terminate:
5954 /* Make sure the action is stop (silent or noisy),
5955 so infrun.c pops the dummy frame. */
5956 retval.call_dummy = STOP_STD_TERMINATE;
5957 this_action = BPSTAT_WHAT_STOP_SILENT;
5958 break;
5959 case bp_tracepoint:
5960 case bp_fast_tracepoint:
5961 case bp_static_tracepoint:
5962 /* Tracepoint hits should not be reported back to GDB, and
5963 if one got through somehow, it should have been filtered
5964 out already. */
5965 internal_error (__FILE__, __LINE__,
5966 _("bpstat_what: tracepoint encountered"));
5967 break;
5968 case bp_gnu_ifunc_resolver:
5969 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5970 this_action = BPSTAT_WHAT_SINGLE;
5971 break;
5972 case bp_gnu_ifunc_resolver_return:
5973 /* The breakpoint will be removed, execution will restart from the
5974 PC of the former breakpoint. */
5975 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5976 break;
5977
5978 case bp_dprintf:
5979 if (bs->stop)
5980 this_action = BPSTAT_WHAT_STOP_SILENT;
5981 else
5982 this_action = BPSTAT_WHAT_SINGLE;
5983 break;
5984
5985 default:
5986 internal_error (__FILE__, __LINE__,
5987 _("bpstat_what: unhandled bptype %d"), (int) bptype);
5988 }
5989
5990 retval.main_action = max (retval.main_action, this_action);
5991 }
5992
5993 return retval;
5994}
5995
5996void
5997bpstat_run_callbacks (bpstat bs_head)
5998{
5999 bpstat bs;
6000
6001 for (bs = bs_head; bs != NULL; bs = bs->next)
6002 {
6003 struct breakpoint *b = bs->breakpoint_at;
6004
6005 if (b == NULL)
6006 continue;
6007 switch (b->type)
6008 {
6009 case bp_jit_event:
6010 handle_jit_event ();
6011 break;
6012 case bp_gnu_ifunc_resolver:
6013 gnu_ifunc_resolver_stop (b);
6014 break;
6015 case bp_gnu_ifunc_resolver_return:
6016 gnu_ifunc_resolver_return_stop (b);
6017 break;
6018 }
6019 }
6020}
6021
6022/* Nonzero if we should step constantly (e.g. watchpoints on machines
6023 without hardware support). This isn't related to a specific bpstat,
6024 just to things like whether watchpoints are set. */
6025
6026int
6027bpstat_should_step (void)
6028{
6029 struct breakpoint *b;
6030
6031 ALL_BREAKPOINTS (b)
6032 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
6033 return 1;
6034 return 0;
6035}
6036
6037int
6038bpstat_causes_stop (bpstat bs)
6039{
6040 for (; bs != NULL; bs = bs->next)
6041 if (bs->stop)
6042 return 1;
6043
6044 return 0;
6045}
6046
6047\f
6048
6049/* Compute a string of spaces suitable to indent the next line
6050 so it starts at the position corresponding to the table column
6051 named COL_NAME in the currently active table of UIOUT. */
6052
6053static char *
6054wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
6055{
6056 static char wrap_indent[80];
6057 int i, total_width, width, align;
6058 char *text;
6059
6060 total_width = 0;
6061 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
6062 {
6063 if (strcmp (text, col_name) == 0)
6064 {
6065 gdb_assert (total_width < sizeof wrap_indent);
6066 memset (wrap_indent, ' ', total_width);
6067 wrap_indent[total_width] = 0;
6068
6069 return wrap_indent;
6070 }
6071
6072 total_width += width + 1;
6073 }
6074
6075 return NULL;
6076}
6077
6078/* Determine if the locations of this breakpoint will have their conditions
6079 evaluated by the target, host or a mix of both. Returns the following:
6080
6081 "host": Host evals condition.
6082 "host or target": Host or Target evals condition.
6083 "target": Target evals condition.
6084*/
6085
6086static const char *
6087bp_condition_evaluator (struct breakpoint *b)
6088{
6089 struct bp_location *bl;
6090 char host_evals = 0;
6091 char target_evals = 0;
6092
6093 if (!b)
6094 return NULL;
6095
6096 if (!is_breakpoint (b))
6097 return NULL;
6098
6099 if (gdb_evaluates_breakpoint_condition_p ()
6100 || !target_supports_evaluation_of_breakpoint_conditions ())
6101 return condition_evaluation_host;
6102
6103 for (bl = b->loc; bl; bl = bl->next)
6104 {
6105 if (bl->cond_bytecode)
6106 target_evals++;
6107 else
6108 host_evals++;
6109 }
6110
6111 if (host_evals && target_evals)
6112 return condition_evaluation_both;
6113 else if (target_evals)
6114 return condition_evaluation_target;
6115 else
6116 return condition_evaluation_host;
6117}
6118
6119/* Determine the breakpoint location's condition evaluator. This is
6120 similar to bp_condition_evaluator, but for locations. */
6121
6122static const char *
6123bp_location_condition_evaluator (struct bp_location *bl)
6124{
6125 if (bl && !is_breakpoint (bl->owner))
6126 return NULL;
6127
6128 if (gdb_evaluates_breakpoint_condition_p ()
6129 || !target_supports_evaluation_of_breakpoint_conditions ())
6130 return condition_evaluation_host;
6131
6132 if (bl && bl->cond_bytecode)
6133 return condition_evaluation_target;
6134 else
6135 return condition_evaluation_host;
6136}
6137
6138/* Print the LOC location out of the list of B->LOC locations. */
6139
6140static void
6141print_breakpoint_location (struct breakpoint *b,
6142 struct bp_location *loc)
6143{
6144 struct ui_out *uiout = current_uiout;
6145 struct cleanup *old_chain = save_current_program_space ();
6146
6147 if (loc != NULL && loc->shlib_disabled)
6148 loc = NULL;
6149
6150 if (loc != NULL)
6151 set_current_program_space (loc->pspace);
6152
6153 if (b->display_canonical)
6154 ui_out_field_string (uiout, "what",
6155 event_location_to_string (b->location));
6156 else if (loc && loc->symtab)
6157 {
6158 struct symbol *sym
6159 = find_pc_sect_function (loc->address, loc->section);
6160 if (sym)
6161 {
6162 ui_out_text (uiout, "in ");
6163 ui_out_field_string (uiout, "func",
6164 SYMBOL_PRINT_NAME (sym));
6165 ui_out_text (uiout, " ");
6166 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
6167 ui_out_text (uiout, "at ");
6168 }
6169 ui_out_field_string (uiout, "file",
6170 symtab_to_filename_for_display (loc->symtab));
6171 ui_out_text (uiout, ":");
6172
6173 if (ui_out_is_mi_like_p (uiout))
6174 ui_out_field_string (uiout, "fullname",
6175 symtab_to_fullname (loc->symtab));
6176
6177 ui_out_field_int (uiout, "line", loc->line_number);
6178 }
6179 else if (loc)
6180 {
6181 struct ui_file *stb = mem_fileopen ();
6182 struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb);
6183
6184 print_address_symbolic (loc->gdbarch, loc->address, stb,
6185 demangle, "");
6186 ui_out_field_stream (uiout, "at", stb);
6187
6188 do_cleanups (stb_chain);
6189 }
6190 else
6191 {
6192 ui_out_field_string (uiout, "pending",
6193 event_location_to_string (b->location));
6194 /* If extra_string is available, it could be holding a condition
6195 or dprintf arguments. In either case, make sure it is printed,
6196 too, but only for non-MI streams. */
6197 if (!ui_out_is_mi_like_p (uiout) && b->extra_string != NULL)
6198 {
6199 if (b->type == bp_dprintf)
6200 ui_out_text (uiout, ",");
6201 else
6202 ui_out_text (uiout, " ");
6203 ui_out_text (uiout, b->extra_string);
6204 }
6205 }
6206
6207 if (loc && is_breakpoint (b)
6208 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
6209 && bp_condition_evaluator (b) == condition_evaluation_both)
6210 {
6211 ui_out_text (uiout, " (");
6212 ui_out_field_string (uiout, "evaluated-by",
6213 bp_location_condition_evaluator (loc));
6214 ui_out_text (uiout, ")");
6215 }
6216
6217 do_cleanups (old_chain);
6218}
6219
6220static const char *
6221bptype_string (enum bptype type)
6222{
6223 struct ep_type_description
6224 {
6225 enum bptype type;
6226 char *description;
6227 };
6228 static struct ep_type_description bptypes[] =
6229 {
6230 {bp_none, "?deleted?"},
6231 {bp_breakpoint, "breakpoint"},
6232 {bp_hardware_breakpoint, "hw breakpoint"},
6233 {bp_single_step, "sw single-step"},
6234 {bp_until, "until"},
6235 {bp_finish, "finish"},
6236 {bp_watchpoint, "watchpoint"},
6237 {bp_hardware_watchpoint, "hw watchpoint"},
6238 {bp_read_watchpoint, "read watchpoint"},
6239 {bp_access_watchpoint, "acc watchpoint"},
6240 {bp_longjmp, "longjmp"},
6241 {bp_longjmp_resume, "longjmp resume"},
6242 {bp_longjmp_call_dummy, "longjmp for call dummy"},
6243 {bp_exception, "exception"},
6244 {bp_exception_resume, "exception resume"},
6245 {bp_step_resume, "step resume"},
6246 {bp_hp_step_resume, "high-priority step resume"},
6247 {bp_watchpoint_scope, "watchpoint scope"},
6248 {bp_call_dummy, "call dummy"},
6249 {bp_std_terminate, "std::terminate"},
6250 {bp_shlib_event, "shlib events"},
6251 {bp_thread_event, "thread events"},
6252 {bp_overlay_event, "overlay events"},
6253 {bp_longjmp_master, "longjmp master"},
6254 {bp_std_terminate_master, "std::terminate master"},
6255 {bp_exception_master, "exception master"},
6256 {bp_catchpoint, "catchpoint"},
6257 {bp_tracepoint, "tracepoint"},
6258 {bp_fast_tracepoint, "fast tracepoint"},
6259 {bp_static_tracepoint, "static tracepoint"},
6260 {bp_dprintf, "dprintf"},
6261 {bp_jit_event, "jit events"},
6262 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
6263 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
6264 };
6265
6266 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
6267 || ((int) type != bptypes[(int) type].type))
6268 internal_error (__FILE__, __LINE__,
6269 _("bptypes table does not describe type #%d."),
6270 (int) type);
6271
6272 return bptypes[(int) type].description;
6273}
6274
6275/* For MI, output a field named 'thread-groups' with a list as the value.
6276 For CLI, prefix the list with the string 'inf'. */
6277
6278static void
6279output_thread_groups (struct ui_out *uiout,
6280 const char *field_name,
6281 VEC(int) *inf_num,
6282 int mi_only)
6283{
6284 struct cleanup *back_to;
6285 int is_mi = ui_out_is_mi_like_p (uiout);
6286 int inf;
6287 int i;
6288
6289 /* For backward compatibility, don't display inferiors in CLI unless
6290 there are several. Always display them for MI. */
6291 if (!is_mi && mi_only)
6292 return;
6293
6294 back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name);
6295
6296 for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i)
6297 {
6298 if (is_mi)
6299 {
6300 char mi_group[10];
6301
6302 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf);
6303 ui_out_field_string (uiout, NULL, mi_group);
6304 }
6305 else
6306 {
6307 if (i == 0)
6308 ui_out_text (uiout, " inf ");
6309 else
6310 ui_out_text (uiout, ", ");
6311
6312 ui_out_text (uiout, plongest (inf));
6313 }
6314 }
6315
6316 do_cleanups (back_to);
6317}
6318
6319/* Print B to gdb_stdout. */
6320
6321static void
6322print_one_breakpoint_location (struct breakpoint *b,
6323 struct bp_location *loc,
6324 int loc_number,
6325 struct bp_location **last_loc,
6326 int allflag)
6327{
6328 struct command_line *l;
6329 static char bpenables[] = "nynny";
6330
6331 struct ui_out *uiout = current_uiout;
6332 int header_of_multiple = 0;
6333 int part_of_multiple = (loc != NULL);
6334 struct value_print_options opts;
6335
6336 get_user_print_options (&opts);
6337
6338 gdb_assert (!loc || loc_number != 0);
6339 /* See comment in print_one_breakpoint concerning treatment of
6340 breakpoints with single disabled location. */
6341 if (loc == NULL
6342 && (b->loc != NULL
6343 && (b->loc->next != NULL || !b->loc->enabled)))
6344 header_of_multiple = 1;
6345 if (loc == NULL)
6346 loc = b->loc;
6347
6348 annotate_record ();
6349
6350 /* 1 */
6351 annotate_field (0);
6352 if (part_of_multiple)
6353 {
6354 char *formatted;
6355 formatted = xstrprintf ("%d.%d", b->number, loc_number);
6356 ui_out_field_string (uiout, "number", formatted);
6357 xfree (formatted);
6358 }
6359 else
6360 {
6361 ui_out_field_int (uiout, "number", b->number);
6362 }
6363
6364 /* 2 */
6365 annotate_field (1);
6366 if (part_of_multiple)
6367 ui_out_field_skip (uiout, "type");
6368 else
6369 ui_out_field_string (uiout, "type", bptype_string (b->type));
6370
6371 /* 3 */
6372 annotate_field (2);
6373 if (part_of_multiple)
6374 ui_out_field_skip (uiout, "disp");
6375 else
6376 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
6377
6378
6379 /* 4 */
6380 annotate_field (3);
6381 if (part_of_multiple)
6382 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
6383 else
6384 ui_out_field_fmt (uiout, "enabled", "%c",
6385 bpenables[(int) b->enable_state]);
6386 ui_out_spaces (uiout, 2);
6387
6388
6389 /* 5 and 6 */
6390 if (b->ops != NULL && b->ops->print_one != NULL)
6391 {
6392 /* Although the print_one can possibly print all locations,
6393 calling it here is not likely to get any nice result. So,
6394 make sure there's just one location. */
6395 gdb_assert (b->loc == NULL || b->loc->next == NULL);
6396 b->ops->print_one (b, last_loc);
6397 }
6398 else
6399 switch (b->type)
6400 {
6401 case bp_none:
6402 internal_error (__FILE__, __LINE__,
6403 _("print_one_breakpoint: bp_none encountered\n"));
6404 break;
6405
6406 case bp_watchpoint:
6407 case bp_hardware_watchpoint:
6408 case bp_read_watchpoint:
6409 case bp_access_watchpoint:
6410 {
6411 struct watchpoint *w = (struct watchpoint *) b;
6412
6413 /* Field 4, the address, is omitted (which makes the columns
6414 not line up too nicely with the headers, but the effect
6415 is relatively readable). */
6416 if (opts.addressprint)
6417 ui_out_field_skip (uiout, "addr");
6418 annotate_field (5);
6419 ui_out_field_string (uiout, "what", w->exp_string);
6420 }
6421 break;
6422
6423 case bp_breakpoint:
6424 case bp_hardware_breakpoint:
6425 case bp_single_step:
6426 case bp_until:
6427 case bp_finish:
6428 case bp_longjmp:
6429 case bp_longjmp_resume:
6430 case bp_longjmp_call_dummy:
6431 case bp_exception:
6432 case bp_exception_resume:
6433 case bp_step_resume:
6434 case bp_hp_step_resume:
6435 case bp_watchpoint_scope:
6436 case bp_call_dummy:
6437 case bp_std_terminate:
6438 case bp_shlib_event:
6439 case bp_thread_event:
6440 case bp_overlay_event:
6441 case bp_longjmp_master:
6442 case bp_std_terminate_master:
6443 case bp_exception_master:
6444 case bp_tracepoint:
6445 case bp_fast_tracepoint:
6446 case bp_static_tracepoint:
6447 case bp_dprintf:
6448 case bp_jit_event:
6449 case bp_gnu_ifunc_resolver:
6450 case bp_gnu_ifunc_resolver_return:
6451 if (opts.addressprint)
6452 {
6453 annotate_field (4);
6454 if (header_of_multiple)
6455 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
6456 else if (b->loc == NULL || loc->shlib_disabled)
6457 ui_out_field_string (uiout, "addr", "<PENDING>");
6458 else
6459 ui_out_field_core_addr (uiout, "addr",
6460 loc->gdbarch, loc->address);
6461 }
6462 annotate_field (5);
6463 if (!header_of_multiple)
6464 print_breakpoint_location (b, loc);
6465 if (b->loc)
6466 *last_loc = b->loc;
6467 break;
6468 }
6469
6470
6471 if (loc != NULL && !header_of_multiple)
6472 {
6473 struct inferior *inf;
6474 VEC(int) *inf_num = NULL;
6475 int mi_only = 1;
6476
6477 ALL_INFERIORS (inf)
6478 {
6479 if (inf->pspace == loc->pspace)
6480 VEC_safe_push (int, inf_num, inf->num);
6481 }
6482
6483 /* For backward compatibility, don't display inferiors in CLI unless
6484 there are several. Always display for MI. */
6485 if (allflag
6486 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6487 && (number_of_program_spaces () > 1
6488 || number_of_inferiors () > 1)
6489 /* LOC is for existing B, it cannot be in
6490 moribund_locations and thus having NULL OWNER. */
6491 && loc->owner->type != bp_catchpoint))
6492 mi_only = 0;
6493 output_thread_groups (uiout, "thread-groups", inf_num, mi_only);
6494 VEC_free (int, inf_num);
6495 }
6496
6497 if (!part_of_multiple)
6498 {
6499 if (b->thread != -1)
6500 {
6501 /* FIXME: This seems to be redundant and lost here; see the
6502 "stop only in" line a little further down. */
6503 ui_out_text (uiout, " thread ");
6504 ui_out_field_int (uiout, "thread", b->thread);
6505 }
6506 else if (b->task != 0)
6507 {
6508 ui_out_text (uiout, " task ");
6509 ui_out_field_int (uiout, "task", b->task);
6510 }
6511 }
6512
6513 ui_out_text (uiout, "\n");
6514
6515 if (!part_of_multiple)
6516 b->ops->print_one_detail (b, uiout);
6517
6518 if (part_of_multiple && frame_id_p (b->frame_id))
6519 {
6520 annotate_field (6);
6521 ui_out_text (uiout, "\tstop only in stack frame at ");
6522 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
6523 the frame ID. */
6524 ui_out_field_core_addr (uiout, "frame",
6525 b->gdbarch, b->frame_id.stack_addr);
6526 ui_out_text (uiout, "\n");
6527 }
6528
6529 if (!part_of_multiple && b->cond_string)
6530 {
6531 annotate_field (7);
6532 if (is_tracepoint (b))
6533 ui_out_text (uiout, "\ttrace only if ");
6534 else
6535 ui_out_text (uiout, "\tstop only if ");
6536 ui_out_field_string (uiout, "cond", b->cond_string);
6537
6538 /* Print whether the target is doing the breakpoint's condition
6539 evaluation. If GDB is doing the evaluation, don't print anything. */
6540 if (is_breakpoint (b)
6541 && breakpoint_condition_evaluation_mode ()
6542 == condition_evaluation_target)
6543 {
6544 ui_out_text (uiout, " (");
6545 ui_out_field_string (uiout, "evaluated-by",
6546 bp_condition_evaluator (b));
6547 ui_out_text (uiout, " evals)");
6548 }
6549 ui_out_text (uiout, "\n");
6550 }
6551
6552 if (!part_of_multiple && b->thread != -1)
6553 {
6554 /* FIXME should make an annotation for this. */
6555 ui_out_text (uiout, "\tstop only in thread ");
6556 if (ui_out_is_mi_like_p (uiout))
6557 ui_out_field_int (uiout, "thread", b->thread);
6558 else
6559 {
6560 struct thread_info *thr = find_thread_global_id (b->thread);
6561
6562 ui_out_field_string (uiout, "thread", print_thread_id (thr));
6563 }
6564 ui_out_text (uiout, "\n");
6565 }
6566
6567 if (!part_of_multiple)
6568 {
6569 if (b->hit_count)
6570 {
6571 /* FIXME should make an annotation for this. */
6572 if (is_catchpoint (b))
6573 ui_out_text (uiout, "\tcatchpoint");
6574 else if (is_tracepoint (b))
6575 ui_out_text (uiout, "\ttracepoint");
6576 else
6577 ui_out_text (uiout, "\tbreakpoint");
6578 ui_out_text (uiout, " already hit ");
6579 ui_out_field_int (uiout, "times", b->hit_count);
6580 if (b->hit_count == 1)
6581 ui_out_text (uiout, " time\n");
6582 else
6583 ui_out_text (uiout, " times\n");
6584 }
6585 else
6586 {
6587 /* Output the count also if it is zero, but only if this is mi. */
6588 if (ui_out_is_mi_like_p (uiout))
6589 ui_out_field_int (uiout, "times", b->hit_count);
6590 }
6591 }
6592
6593 if (!part_of_multiple && b->ignore_count)
6594 {
6595 annotate_field (8);
6596 ui_out_text (uiout, "\tignore next ");
6597 ui_out_field_int (uiout, "ignore", b->ignore_count);
6598 ui_out_text (uiout, " hits\n");
6599 }
6600
6601 /* Note that an enable count of 1 corresponds to "enable once"
6602 behavior, which is reported by the combination of enablement and
6603 disposition, so we don't need to mention it here. */
6604 if (!part_of_multiple && b->enable_count > 1)
6605 {
6606 annotate_field (8);
6607 ui_out_text (uiout, "\tdisable after ");
6608 /* Tweak the wording to clarify that ignore and enable counts
6609 are distinct, and have additive effect. */
6610 if (b->ignore_count)
6611 ui_out_text (uiout, "additional ");
6612 else
6613 ui_out_text (uiout, "next ");
6614 ui_out_field_int (uiout, "enable", b->enable_count);
6615 ui_out_text (uiout, " hits\n");
6616 }
6617
6618 if (!part_of_multiple && is_tracepoint (b))
6619 {
6620 struct tracepoint *tp = (struct tracepoint *) b;
6621
6622 if (tp->traceframe_usage)
6623 {
6624 ui_out_text (uiout, "\ttrace buffer usage ");
6625 ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage);
6626 ui_out_text (uiout, " bytes\n");
6627 }
6628 }
6629
6630 l = b->commands ? b->commands->commands : NULL;
6631 if (!part_of_multiple && l)
6632 {
6633 struct cleanup *script_chain;
6634
6635 annotate_field (9);
6636 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
6637 print_command_lines (uiout, l, 4);
6638 do_cleanups (script_chain);
6639 }
6640
6641 if (is_tracepoint (b))
6642 {
6643 struct tracepoint *t = (struct tracepoint *) b;
6644
6645 if (!part_of_multiple && t->pass_count)
6646 {
6647 annotate_field (10);
6648 ui_out_text (uiout, "\tpass count ");
6649 ui_out_field_int (uiout, "pass", t->pass_count);
6650 ui_out_text (uiout, " \n");
6651 }
6652
6653 /* Don't display it when tracepoint or tracepoint location is
6654 pending. */
6655 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6656 {
6657 annotate_field (11);
6658
6659 if (ui_out_is_mi_like_p (uiout))
6660 ui_out_field_string (uiout, "installed",
6661 loc->inserted ? "y" : "n");
6662 else
6663 {
6664 if (loc->inserted)
6665 ui_out_text (uiout, "\t");
6666 else
6667 ui_out_text (uiout, "\tnot ");
6668 ui_out_text (uiout, "installed on target\n");
6669 }
6670 }
6671 }
6672
6673 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
6674 {
6675 if (is_watchpoint (b))
6676 {
6677 struct watchpoint *w = (struct watchpoint *) b;
6678
6679 ui_out_field_string (uiout, "original-location", w->exp_string);
6680 }
6681 else if (b->location != NULL
6682 && event_location_to_string (b->location) != NULL)
6683 ui_out_field_string (uiout, "original-location",
6684 event_location_to_string (b->location));
6685 }
6686}
6687
6688static void
6689print_one_breakpoint (struct breakpoint *b,
6690 struct bp_location **last_loc,
6691 int allflag)
6692{
6693 struct cleanup *bkpt_chain;
6694 struct ui_out *uiout = current_uiout;
6695
6696 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
6697
6698 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6699 do_cleanups (bkpt_chain);
6700
6701 /* If this breakpoint has custom print function,
6702 it's already printed. Otherwise, print individual
6703 locations, if any. */
6704 if (b->ops == NULL || b->ops->print_one == NULL)
6705 {
6706 /* If breakpoint has a single location that is disabled, we
6707 print it as if it had several locations, since otherwise it's
6708 hard to represent "breakpoint enabled, location disabled"
6709 situation.
6710
6711 Note that while hardware watchpoints have several locations
6712 internally, that's not a property exposed to user. */
6713 if (b->loc
6714 && !is_hardware_watchpoint (b)
6715 && (b->loc->next || !b->loc->enabled))
6716 {
6717 struct bp_location *loc;
6718 int n = 1;
6719
6720 for (loc = b->loc; loc; loc = loc->next, ++n)
6721 {
6722 struct cleanup *inner2 =
6723 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
6724 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6725 do_cleanups (inner2);
6726 }
6727 }
6728 }
6729}
6730
6731static int
6732breakpoint_address_bits (struct breakpoint *b)
6733{
6734 int print_address_bits = 0;
6735 struct bp_location *loc;
6736
6737 /* Software watchpoints that aren't watching memory don't have an
6738 address to print. */
6739 if (is_no_memory_software_watchpoint (b))
6740 return 0;
6741
6742 for (loc = b->loc; loc; loc = loc->next)
6743 {
6744 int addr_bit;
6745
6746 addr_bit = gdbarch_addr_bit (loc->gdbarch);
6747 if (addr_bit > print_address_bits)
6748 print_address_bits = addr_bit;
6749 }
6750
6751 return print_address_bits;
6752}
6753
6754struct captured_breakpoint_query_args
6755 {
6756 int bnum;
6757 };
6758
6759static int
6760do_captured_breakpoint_query (struct ui_out *uiout, void *data)
6761{
6762 struct captured_breakpoint_query_args *args
6763 = (struct captured_breakpoint_query_args *) data;
6764 struct breakpoint *b;
6765 struct bp_location *dummy_loc = NULL;
6766
6767 ALL_BREAKPOINTS (b)
6768 {
6769 if (args->bnum == b->number)
6770 {
6771 print_one_breakpoint (b, &dummy_loc, 0);
6772 return GDB_RC_OK;
6773 }
6774 }
6775 return GDB_RC_NONE;
6776}
6777
6778enum gdb_rc
6779gdb_breakpoint_query (struct ui_out *uiout, int bnum,
6780 char **error_message)
6781{
6782 struct captured_breakpoint_query_args args;
6783
6784 args.bnum = bnum;
6785 /* For the moment we don't trust print_one_breakpoint() to not throw
6786 an error. */
6787 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
6788 error_message, RETURN_MASK_ALL) < 0)
6789 return GDB_RC_FAIL;
6790 else
6791 return GDB_RC_OK;
6792}
6793
6794/* Return true if this breakpoint was set by the user, false if it is
6795 internal or momentary. */
6796
6797int
6798user_breakpoint_p (struct breakpoint *b)
6799{
6800 return b->number > 0;
6801}
6802
6803/* Print information on user settable breakpoint (watchpoint, etc)
6804 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6805 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6806 FILTER is non-NULL, call it on each breakpoint and only include the
6807 ones for which it returns non-zero. Return the total number of
6808 breakpoints listed. */
6809
6810static int
6811breakpoint_1 (char *args, int allflag,
6812 int (*filter) (const struct breakpoint *))
6813{
6814 struct breakpoint *b;
6815 struct bp_location *last_loc = NULL;
6816 int nr_printable_breakpoints;
6817 struct cleanup *bkpttbl_chain;
6818 struct value_print_options opts;
6819 int print_address_bits = 0;
6820 int print_type_col_width = 14;
6821 struct ui_out *uiout = current_uiout;
6822
6823 get_user_print_options (&opts);
6824
6825 /* Compute the number of rows in the table, as well as the size
6826 required for address fields. */
6827 nr_printable_breakpoints = 0;
6828 ALL_BREAKPOINTS (b)
6829 {
6830 /* If we have a filter, only list the breakpoints it accepts. */
6831 if (filter && !filter (b))
6832 continue;
6833
6834 /* If we have an "args" string, it is a list of breakpoints to
6835 accept. Skip the others. */
6836 if (args != NULL && *args != '\0')
6837 {
6838 if (allflag && parse_and_eval_long (args) != b->number)
6839 continue;
6840 if (!allflag && !number_is_in_list (args, b->number))
6841 continue;
6842 }
6843
6844 if (allflag || user_breakpoint_p (b))
6845 {
6846 int addr_bit, type_len;
6847
6848 addr_bit = breakpoint_address_bits (b);
6849 if (addr_bit > print_address_bits)
6850 print_address_bits = addr_bit;
6851
6852 type_len = strlen (bptype_string (b->type));
6853 if (type_len > print_type_col_width)
6854 print_type_col_width = type_len;
6855
6856 nr_printable_breakpoints++;
6857 }
6858 }
6859
6860 if (opts.addressprint)
6861 bkpttbl_chain
6862 = make_cleanup_ui_out_table_begin_end (uiout, 6,
6863 nr_printable_breakpoints,
6864 "BreakpointTable");
6865 else
6866 bkpttbl_chain
6867 = make_cleanup_ui_out_table_begin_end (uiout, 5,
6868 nr_printable_breakpoints,
6869 "BreakpointTable");
6870
6871 if (nr_printable_breakpoints > 0)
6872 annotate_breakpoints_headers ();
6873 if (nr_printable_breakpoints > 0)
6874 annotate_field (0);
6875 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
6876 if (nr_printable_breakpoints > 0)
6877 annotate_field (1);
6878 ui_out_table_header (uiout, print_type_col_width, ui_left,
6879 "type", "Type"); /* 2 */
6880 if (nr_printable_breakpoints > 0)
6881 annotate_field (2);
6882 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
6883 if (nr_printable_breakpoints > 0)
6884 annotate_field (3);
6885 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
6886 if (opts.addressprint)
6887 {
6888 if (nr_printable_breakpoints > 0)
6889 annotate_field (4);
6890 if (print_address_bits <= 32)
6891 ui_out_table_header (uiout, 10, ui_left,
6892 "addr", "Address"); /* 5 */
6893 else
6894 ui_out_table_header (uiout, 18, ui_left,
6895 "addr", "Address"); /* 5 */
6896 }
6897 if (nr_printable_breakpoints > 0)
6898 annotate_field (5);
6899 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
6900 ui_out_table_body (uiout);
6901 if (nr_printable_breakpoints > 0)
6902 annotate_breakpoints_table ();
6903
6904 ALL_BREAKPOINTS (b)
6905 {
6906 QUIT;
6907 /* If we have a filter, only list the breakpoints it accepts. */
6908 if (filter && !filter (b))
6909 continue;
6910
6911 /* If we have an "args" string, it is a list of breakpoints to
6912 accept. Skip the others. */
6913
6914 if (args != NULL && *args != '\0')
6915 {
6916 if (allflag) /* maintenance info breakpoint */
6917 {
6918 if (parse_and_eval_long (args) != b->number)
6919 continue;
6920 }
6921 else /* all others */
6922 {
6923 if (!number_is_in_list (args, b->number))
6924 continue;
6925 }
6926 }
6927 /* We only print out user settable breakpoints unless the
6928 allflag is set. */
6929 if (allflag || user_breakpoint_p (b))
6930 print_one_breakpoint (b, &last_loc, allflag);
6931 }
6932
6933 do_cleanups (bkpttbl_chain);
6934
6935 if (nr_printable_breakpoints == 0)
6936 {
6937 /* If there's a filter, let the caller decide how to report
6938 empty list. */
6939 if (!filter)
6940 {
6941 if (args == NULL || *args == '\0')
6942 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
6943 else
6944 ui_out_message (uiout, 0,
6945 "No breakpoint or watchpoint matching '%s'.\n",
6946 args);
6947 }
6948 }
6949 else
6950 {
6951 if (last_loc && !server_command)
6952 set_next_address (last_loc->gdbarch, last_loc->address);
6953 }
6954
6955 /* FIXME? Should this be moved up so that it is only called when
6956 there have been breakpoints? */
6957 annotate_breakpoints_table_end ();
6958
6959 return nr_printable_breakpoints;
6960}
6961
6962/* Display the value of default-collect in a way that is generally
6963 compatible with the breakpoint list. */
6964
6965static void
6966default_collect_info (void)
6967{
6968 struct ui_out *uiout = current_uiout;
6969
6970 /* If it has no value (which is frequently the case), say nothing; a
6971 message like "No default-collect." gets in user's face when it's
6972 not wanted. */
6973 if (!*default_collect)
6974 return;
6975
6976 /* The following phrase lines up nicely with per-tracepoint collect
6977 actions. */
6978 ui_out_text (uiout, "default collect ");
6979 ui_out_field_string (uiout, "default-collect", default_collect);
6980 ui_out_text (uiout, " \n");
6981}
6982
6983static void
6984breakpoints_info (char *args, int from_tty)
6985{
6986 breakpoint_1 (args, 0, NULL);
6987
6988 default_collect_info ();
6989}
6990
6991static void
6992watchpoints_info (char *args, int from_tty)
6993{
6994 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
6995 struct ui_out *uiout = current_uiout;
6996
6997 if (num_printed == 0)
6998 {
6999 if (args == NULL || *args == '\0')
7000 ui_out_message (uiout, 0, "No watchpoints.\n");
7001 else
7002 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
7003 }
7004}
7005
7006static void
7007maintenance_info_breakpoints (char *args, int from_tty)
7008{
7009 breakpoint_1 (args, 1, NULL);
7010
7011 default_collect_info ();
7012}
7013
7014static int
7015breakpoint_has_pc (struct breakpoint *b,
7016 struct program_space *pspace,
7017 CORE_ADDR pc, struct obj_section *section)
7018{
7019 struct bp_location *bl = b->loc;
7020
7021 for (; bl; bl = bl->next)
7022 {
7023 if (bl->pspace == pspace
7024 && bl->address == pc
7025 && (!overlay_debugging || bl->section == section))
7026 return 1;
7027 }
7028 return 0;
7029}
7030
7031/* Print a message describing any user-breakpoints set at PC. This
7032 concerns with logical breakpoints, so we match program spaces, not
7033 address spaces. */
7034
7035static void
7036describe_other_breakpoints (struct gdbarch *gdbarch,
7037 struct program_space *pspace, CORE_ADDR pc,
7038 struct obj_section *section, int thread)
7039{
7040 int others = 0;
7041 struct breakpoint *b;
7042
7043 ALL_BREAKPOINTS (b)
7044 others += (user_breakpoint_p (b)
7045 && breakpoint_has_pc (b, pspace, pc, section));
7046 if (others > 0)
7047 {
7048 if (others == 1)
7049 printf_filtered (_("Note: breakpoint "));
7050 else /* if (others == ???) */
7051 printf_filtered (_("Note: breakpoints "));
7052 ALL_BREAKPOINTS (b)
7053 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
7054 {
7055 others--;
7056 printf_filtered ("%d", b->number);
7057 if (b->thread == -1 && thread != -1)
7058 printf_filtered (" (all threads)");
7059 else if (b->thread != -1)
7060 printf_filtered (" (thread %d)", b->thread);
7061 printf_filtered ("%s%s ",
7062 ((b->enable_state == bp_disabled
7063 || b->enable_state == bp_call_disabled)
7064 ? " (disabled)"
7065 : ""),
7066 (others > 1) ? ","
7067 : ((others == 1) ? " and" : ""));
7068 }
7069 printf_filtered (_("also set at pc "));
7070 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
7071 printf_filtered (".\n");
7072 }
7073}
7074\f
7075
7076/* Return true iff it is meaningful to use the address member of
7077 BPT locations. For some breakpoint types, the locations' address members
7078 are irrelevant and it makes no sense to attempt to compare them to other
7079 addresses (or use them for any other purpose either).
7080
7081 More specifically, each of the following breakpoint types will
7082 always have a zero valued location address and we don't want to mark
7083 breakpoints of any of these types to be a duplicate of an actual
7084 breakpoint location at address zero:
7085
7086 bp_watchpoint
7087 bp_catchpoint
7088
7089*/
7090
7091static int
7092breakpoint_address_is_meaningful (struct breakpoint *bpt)
7093{
7094 enum bptype type = bpt->type;
7095
7096 return (type != bp_watchpoint && type != bp_catchpoint);
7097}
7098
7099/* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
7100 true if LOC1 and LOC2 represent the same watchpoint location. */
7101
7102static int
7103watchpoint_locations_match (struct bp_location *loc1,
7104 struct bp_location *loc2)
7105{
7106 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
7107 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
7108
7109 /* Both of them must exist. */
7110 gdb_assert (w1 != NULL);
7111 gdb_assert (w2 != NULL);
7112
7113 /* If the target can evaluate the condition expression in hardware,
7114 then we we need to insert both watchpoints even if they are at
7115 the same place. Otherwise the watchpoint will only trigger when
7116 the condition of whichever watchpoint was inserted evaluates to
7117 true, not giving a chance for GDB to check the condition of the
7118 other watchpoint. */
7119 if ((w1->cond_exp
7120 && target_can_accel_watchpoint_condition (loc1->address,
7121 loc1->length,
7122 loc1->watchpoint_type,
7123 w1->cond_exp))
7124 || (w2->cond_exp
7125 && target_can_accel_watchpoint_condition (loc2->address,
7126 loc2->length,
7127 loc2->watchpoint_type,
7128 w2->cond_exp)))
7129 return 0;
7130
7131 /* Note that this checks the owner's type, not the location's. In
7132 case the target does not support read watchpoints, but does
7133 support access watchpoints, we'll have bp_read_watchpoint
7134 watchpoints with hw_access locations. Those should be considered
7135 duplicates of hw_read locations. The hw_read locations will
7136 become hw_access locations later. */
7137 return (loc1->owner->type == loc2->owner->type
7138 && loc1->pspace->aspace == loc2->pspace->aspace
7139 && loc1->address == loc2->address
7140 && loc1->length == loc2->length);
7141}
7142
7143/* See breakpoint.h. */
7144
7145int
7146breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
7147 struct address_space *aspace2, CORE_ADDR addr2)
7148{
7149 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
7150 || aspace1 == aspace2)
7151 && addr1 == addr2);
7152}
7153
7154/* Returns true if {ASPACE2,ADDR2} falls within the range determined by
7155 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
7156 matches ASPACE2. On targets that have global breakpoints, the address
7157 space doesn't really matter. */
7158
7159static int
7160breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
7161 int len1, struct address_space *aspace2,
7162 CORE_ADDR addr2)
7163{
7164 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
7165 || aspace1 == aspace2)
7166 && addr2 >= addr1 && addr2 < addr1 + len1);
7167}
7168
7169/* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
7170 a ranged breakpoint. In most targets, a match happens only if ASPACE
7171 matches the breakpoint's address space. On targets that have global
7172 breakpoints, the address space doesn't really matter. */
7173
7174static int
7175breakpoint_location_address_match (struct bp_location *bl,
7176 struct address_space *aspace,
7177 CORE_ADDR addr)
7178{
7179 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
7180 aspace, addr)
7181 || (bl->length
7182 && breakpoint_address_match_range (bl->pspace->aspace,
7183 bl->address, bl->length,
7184 aspace, addr)));
7185}
7186
7187/* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
7188 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
7189 match happens only if ASPACE matches the breakpoint's address
7190 space. On targets that have global breakpoints, the address space
7191 doesn't really matter. */
7192
7193static int
7194breakpoint_location_address_range_overlap (struct bp_location *bl,
7195 struct address_space *aspace,
7196 CORE_ADDR addr, int len)
7197{
7198 if (gdbarch_has_global_breakpoints (target_gdbarch ())
7199 || bl->pspace->aspace == aspace)
7200 {
7201 int bl_len = bl->length != 0 ? bl->length : 1;
7202
7203 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
7204 return 1;
7205 }
7206 return 0;
7207}
7208
7209/* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
7210 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
7211 true, otherwise returns false. */
7212
7213static int
7214tracepoint_locations_match (struct bp_location *loc1,
7215 struct bp_location *loc2)
7216{
7217 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
7218 /* Since tracepoint locations are never duplicated with others', tracepoint
7219 locations at the same address of different tracepoints are regarded as
7220 different locations. */
7221 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
7222 else
7223 return 0;
7224}
7225
7226/* Assuming LOC1 and LOC2's types' have meaningful target addresses
7227 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
7228 represent the same location. */
7229
7230static int
7231breakpoint_locations_match (struct bp_location *loc1,
7232 struct bp_location *loc2)
7233{
7234 int hw_point1, hw_point2;
7235
7236 /* Both of them must not be in moribund_locations. */
7237 gdb_assert (loc1->owner != NULL);
7238 gdb_assert (loc2->owner != NULL);
7239
7240 hw_point1 = is_hardware_watchpoint (loc1->owner);
7241 hw_point2 = is_hardware_watchpoint (loc2->owner);
7242
7243 if (hw_point1 != hw_point2)
7244 return 0;
7245 else if (hw_point1)
7246 return watchpoint_locations_match (loc1, loc2);
7247 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
7248 return tracepoint_locations_match (loc1, loc2);
7249 else
7250 /* We compare bp_location.length in order to cover ranged breakpoints. */
7251 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
7252 loc2->pspace->aspace, loc2->address)
7253 && loc1->length == loc2->length);
7254}
7255
7256static void
7257breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
7258 int bnum, int have_bnum)
7259{
7260 /* The longest string possibly returned by hex_string_custom
7261 is 50 chars. These must be at least that big for safety. */
7262 char astr1[64];
7263 char astr2[64];
7264
7265 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
7266 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
7267 if (have_bnum)
7268 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
7269 bnum, astr1, astr2);
7270 else
7271 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
7272}
7273
7274/* Adjust a breakpoint's address to account for architectural
7275 constraints on breakpoint placement. Return the adjusted address.
7276 Note: Very few targets require this kind of adjustment. For most
7277 targets, this function is simply the identity function. */
7278
7279static CORE_ADDR
7280adjust_breakpoint_address (struct gdbarch *gdbarch,
7281 CORE_ADDR bpaddr, enum bptype bptype)
7282{
7283 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
7284 {
7285 /* Very few targets need any kind of breakpoint adjustment. */
7286 return bpaddr;
7287 }
7288 else if (bptype == bp_watchpoint
7289 || bptype == bp_hardware_watchpoint
7290 || bptype == bp_read_watchpoint
7291 || bptype == bp_access_watchpoint
7292 || bptype == bp_catchpoint)
7293 {
7294 /* Watchpoints and the various bp_catch_* eventpoints should not
7295 have their addresses modified. */
7296 return bpaddr;
7297 }
7298 else if (bptype == bp_single_step)
7299 {
7300 /* Single-step breakpoints should not have their addresses
7301 modified. If there's any architectural constrain that
7302 applies to this address, then it should have already been
7303 taken into account when the breakpoint was created in the
7304 first place. If we didn't do this, stepping through e.g.,
7305 Thumb-2 IT blocks would break. */
7306 return bpaddr;
7307 }
7308 else
7309 {
7310 CORE_ADDR adjusted_bpaddr;
7311
7312 /* Some targets have architectural constraints on the placement
7313 of breakpoint instructions. Obtain the adjusted address. */
7314 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
7315
7316 /* An adjusted breakpoint address can significantly alter
7317 a user's expectations. Print a warning if an adjustment
7318 is required. */
7319 if (adjusted_bpaddr != bpaddr)
7320 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
7321
7322 return adjusted_bpaddr;
7323 }
7324}
7325
7326void
7327init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
7328 struct breakpoint *owner)
7329{
7330 memset (loc, 0, sizeof (*loc));
7331
7332 gdb_assert (ops != NULL);
7333
7334 loc->ops = ops;
7335 loc->owner = owner;
7336 loc->cond = NULL;
7337 loc->cond_bytecode = NULL;
7338 loc->shlib_disabled = 0;
7339 loc->enabled = 1;
7340
7341 switch (owner->type)
7342 {
7343 case bp_breakpoint:
7344 case bp_single_step:
7345 case bp_until:
7346 case bp_finish:
7347 case bp_longjmp:
7348 case bp_longjmp_resume:
7349 case bp_longjmp_call_dummy:
7350 case bp_exception:
7351 case bp_exception_resume:
7352 case bp_step_resume:
7353 case bp_hp_step_resume:
7354 case bp_watchpoint_scope:
7355 case bp_call_dummy:
7356 case bp_std_terminate:
7357 case bp_shlib_event:
7358 case bp_thread_event:
7359 case bp_overlay_event:
7360 case bp_jit_event:
7361 case bp_longjmp_master:
7362 case bp_std_terminate_master:
7363 case bp_exception_master:
7364 case bp_gnu_ifunc_resolver:
7365 case bp_gnu_ifunc_resolver_return:
7366 case bp_dprintf:
7367 loc->loc_type = bp_loc_software_breakpoint;
7368 mark_breakpoint_location_modified (loc);
7369 break;
7370 case bp_hardware_breakpoint:
7371 loc->loc_type = bp_loc_hardware_breakpoint;
7372 mark_breakpoint_location_modified (loc);
7373 break;
7374 case bp_hardware_watchpoint:
7375 case bp_read_watchpoint:
7376 case bp_access_watchpoint:
7377 loc->loc_type = bp_loc_hardware_watchpoint;
7378 break;
7379 case bp_watchpoint:
7380 case bp_catchpoint:
7381 case bp_tracepoint:
7382 case bp_fast_tracepoint:
7383 case bp_static_tracepoint:
7384 loc->loc_type = bp_loc_other;
7385 break;
7386 default:
7387 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
7388 }
7389
7390 loc->refc = 1;
7391}
7392
7393/* Allocate a struct bp_location. */
7394
7395static struct bp_location *
7396allocate_bp_location (struct breakpoint *bpt)
7397{
7398 return bpt->ops->allocate_location (bpt);
7399}
7400
7401static void
7402free_bp_location (struct bp_location *loc)
7403{
7404 loc->ops->dtor (loc);
7405 xfree (loc);
7406}
7407
7408/* Increment reference count. */
7409
7410static void
7411incref_bp_location (struct bp_location *bl)
7412{
7413 ++bl->refc;
7414}
7415
7416/* Decrement reference count. If the reference count reaches 0,
7417 destroy the bp_location. Sets *BLP to NULL. */
7418
7419static void
7420decref_bp_location (struct bp_location **blp)
7421{
7422 gdb_assert ((*blp)->refc > 0);
7423
7424 if (--(*blp)->refc == 0)
7425 free_bp_location (*blp);
7426 *blp = NULL;
7427}
7428
7429/* Add breakpoint B at the end of the global breakpoint chain. */
7430
7431static void
7432add_to_breakpoint_chain (struct breakpoint *b)
7433{
7434 struct breakpoint *b1;
7435
7436 /* Add this breakpoint to the end of the chain so that a list of
7437 breakpoints will come out in order of increasing numbers. */
7438
7439 b1 = breakpoint_chain;
7440 if (b1 == 0)
7441 breakpoint_chain = b;
7442 else
7443 {
7444 while (b1->next)
7445 b1 = b1->next;
7446 b1->next = b;
7447 }
7448}
7449
7450/* Initializes breakpoint B with type BPTYPE and no locations yet. */
7451
7452static void
7453init_raw_breakpoint_without_location (struct breakpoint *b,
7454 struct gdbarch *gdbarch,
7455 enum bptype bptype,
7456 const struct breakpoint_ops *ops)
7457{
7458 memset (b, 0, sizeof (*b));
7459
7460 gdb_assert (ops != NULL);
7461
7462 b->ops = ops;
7463 b->type = bptype;
7464 b->gdbarch = gdbarch;
7465 b->language = current_language->la_language;
7466 b->input_radix = input_radix;
7467 b->thread = -1;
7468 b->enable_state = bp_enabled;
7469 b->next = 0;
7470 b->silent = 0;
7471 b->ignore_count = 0;
7472 b->commands = NULL;
7473 b->frame_id = null_frame_id;
7474 b->condition_not_parsed = 0;
7475 b->py_bp_object = NULL;
7476 b->related_breakpoint = b;
7477 b->location = NULL;
7478}
7479
7480/* Helper to set_raw_breakpoint below. Creates a breakpoint
7481 that has type BPTYPE and has no locations as yet. */
7482
7483static struct breakpoint *
7484set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
7485 enum bptype bptype,
7486 const struct breakpoint_ops *ops)
7487{
7488 struct breakpoint *b = XNEW (struct breakpoint);
7489
7490 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7491 add_to_breakpoint_chain (b);
7492 return b;
7493}
7494
7495/* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7496 resolutions should be made as the user specified the location explicitly
7497 enough. */
7498
7499static void
7500set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
7501{
7502 gdb_assert (loc->owner != NULL);
7503
7504 if (loc->owner->type == bp_breakpoint
7505 || loc->owner->type == bp_hardware_breakpoint
7506 || is_tracepoint (loc->owner))
7507 {
7508 int is_gnu_ifunc;
7509 const char *function_name;
7510 CORE_ADDR func_addr;
7511
7512 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
7513 &func_addr, NULL, &is_gnu_ifunc);
7514
7515 if (is_gnu_ifunc && !explicit_loc)
7516 {
7517 struct breakpoint *b = loc->owner;
7518
7519 gdb_assert (loc->pspace == current_program_space);
7520 if (gnu_ifunc_resolve_name (function_name,
7521 &loc->requested_address))
7522 {
7523 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7524 loc->address = adjust_breakpoint_address (loc->gdbarch,
7525 loc->requested_address,
7526 b->type);
7527 }
7528 else if (b->type == bp_breakpoint && b->loc == loc
7529 && loc->next == NULL && b->related_breakpoint == b)
7530 {
7531 /* Create only the whole new breakpoint of this type but do not
7532 mess more complicated breakpoints with multiple locations. */
7533 b->type = bp_gnu_ifunc_resolver;
7534 /* Remember the resolver's address for use by the return
7535 breakpoint. */
7536 loc->related_address = func_addr;
7537 }
7538 }
7539
7540 if (function_name)
7541 loc->function_name = xstrdup (function_name);
7542 }
7543}
7544
7545/* Attempt to determine architecture of location identified by SAL. */
7546struct gdbarch *
7547get_sal_arch (struct symtab_and_line sal)
7548{
7549 if (sal.section)
7550 return get_objfile_arch (sal.section->objfile);
7551 if (sal.symtab)
7552 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
7553
7554 return NULL;
7555}
7556
7557/* Low level routine for partially initializing a breakpoint of type
7558 BPTYPE. The newly created breakpoint's address, section, source
7559 file name, and line number are provided by SAL.
7560
7561 It is expected that the caller will complete the initialization of
7562 the newly created breakpoint struct as well as output any status
7563 information regarding the creation of a new breakpoint. */
7564
7565static void
7566init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
7567 struct symtab_and_line sal, enum bptype bptype,
7568 const struct breakpoint_ops *ops)
7569{
7570 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7571
7572 add_location_to_breakpoint (b, &sal);
7573
7574 if (bptype != bp_catchpoint)
7575 gdb_assert (sal.pspace != NULL);
7576
7577 /* Store the program space that was used to set the breakpoint,
7578 except for ordinary breakpoints, which are independent of the
7579 program space. */
7580 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7581 b->pspace = sal.pspace;
7582}
7583
7584/* set_raw_breakpoint is a low level routine for allocating and
7585 partially initializing a breakpoint of type BPTYPE. The newly
7586 created breakpoint's address, section, source file name, and line
7587 number are provided by SAL. The newly created and partially
7588 initialized breakpoint is added to the breakpoint chain and
7589 is also returned as the value of this function.
7590
7591 It is expected that the caller will complete the initialization of
7592 the newly created breakpoint struct as well as output any status
7593 information regarding the creation of a new breakpoint. In
7594 particular, set_raw_breakpoint does NOT set the breakpoint
7595 number! Care should be taken to not allow an error to occur
7596 prior to completing the initialization of the breakpoint. If this
7597 should happen, a bogus breakpoint will be left on the chain. */
7598
7599struct breakpoint *
7600set_raw_breakpoint (struct gdbarch *gdbarch,
7601 struct symtab_and_line sal, enum bptype bptype,
7602 const struct breakpoint_ops *ops)
7603{
7604 struct breakpoint *b = XNEW (struct breakpoint);
7605
7606 init_raw_breakpoint (b, gdbarch, sal, bptype, ops);
7607 add_to_breakpoint_chain (b);
7608 return b;
7609}
7610
7611/* Call this routine when stepping and nexting to enable a breakpoint
7612 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7613 initiated the operation. */
7614
7615void
7616set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
7617{
7618 struct breakpoint *b, *b_tmp;
7619 int thread = tp->global_num;
7620
7621 /* To avoid having to rescan all objfile symbols at every step,
7622 we maintain a list of continually-inserted but always disabled
7623 longjmp "master" breakpoints. Here, we simply create momentary
7624 clones of those and enable them for the requested thread. */
7625 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7626 if (b->pspace == current_program_space
7627 && (b->type == bp_longjmp_master
7628 || b->type == bp_exception_master))
7629 {
7630 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7631 struct breakpoint *clone;
7632
7633 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7634 after their removal. */
7635 clone = momentary_breakpoint_from_master (b, type,
7636 &longjmp_breakpoint_ops, 1);
7637 clone->thread = thread;
7638 }
7639
7640 tp->initiating_frame = frame;
7641}
7642
7643/* Delete all longjmp breakpoints from THREAD. */
7644void
7645delete_longjmp_breakpoint (int thread)
7646{
7647 struct breakpoint *b, *b_tmp;
7648
7649 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7650 if (b->type == bp_longjmp || b->type == bp_exception)
7651 {
7652 if (b->thread == thread)
7653 delete_breakpoint (b);
7654 }
7655}
7656
7657void
7658delete_longjmp_breakpoint_at_next_stop (int thread)
7659{
7660 struct breakpoint *b, *b_tmp;
7661
7662 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7663 if (b->type == bp_longjmp || b->type == bp_exception)
7664 {
7665 if (b->thread == thread)
7666 b->disposition = disp_del_at_next_stop;
7667 }
7668}
7669
7670/* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7671 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7672 pointer to any of them. Return NULL if this system cannot place longjmp
7673 breakpoints. */
7674
7675struct breakpoint *
7676set_longjmp_breakpoint_for_call_dummy (void)
7677{
7678 struct breakpoint *b, *retval = NULL;
7679
7680 ALL_BREAKPOINTS (b)
7681 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7682 {
7683 struct breakpoint *new_b;
7684
7685 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
7686 &momentary_breakpoint_ops,
7687 1);
7688 new_b->thread = ptid_to_global_thread_id (inferior_ptid);
7689
7690 /* Link NEW_B into the chain of RETVAL breakpoints. */
7691
7692 gdb_assert (new_b->related_breakpoint == new_b);
7693 if (retval == NULL)
7694 retval = new_b;
7695 new_b->related_breakpoint = retval;
7696 while (retval->related_breakpoint != new_b->related_breakpoint)
7697 retval = retval->related_breakpoint;
7698 retval->related_breakpoint = new_b;
7699 }
7700
7701 return retval;
7702}
7703
7704/* Verify all existing dummy frames and their associated breakpoints for
7705 TP. Remove those which can no longer be found in the current frame
7706 stack.
7707
7708 You should call this function only at places where it is safe to currently
7709 unwind the whole stack. Failed stack unwind would discard live dummy
7710 frames. */
7711
7712void
7713check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
7714{
7715 struct breakpoint *b, *b_tmp;
7716
7717 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7718 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
7719 {
7720 struct breakpoint *dummy_b = b->related_breakpoint;
7721
7722 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7723 dummy_b = dummy_b->related_breakpoint;
7724 if (dummy_b->type != bp_call_dummy
7725 || frame_find_by_id (dummy_b->frame_id) != NULL)
7726 continue;
7727
7728 dummy_frame_discard (dummy_b->frame_id, tp->ptid);
7729
7730 while (b->related_breakpoint != b)
7731 {
7732 if (b_tmp == b->related_breakpoint)
7733 b_tmp = b->related_breakpoint->next;
7734 delete_breakpoint (b->related_breakpoint);
7735 }
7736 delete_breakpoint (b);
7737 }
7738}
7739
7740void
7741enable_overlay_breakpoints (void)
7742{
7743 struct breakpoint *b;
7744
7745 ALL_BREAKPOINTS (b)
7746 if (b->type == bp_overlay_event)
7747 {
7748 b->enable_state = bp_enabled;
7749 update_global_location_list (UGLL_MAY_INSERT);
7750 overlay_events_enabled = 1;
7751 }
7752}
7753
7754void
7755disable_overlay_breakpoints (void)
7756{
7757 struct breakpoint *b;
7758
7759 ALL_BREAKPOINTS (b)
7760 if (b->type == bp_overlay_event)
7761 {
7762 b->enable_state = bp_disabled;
7763 update_global_location_list (UGLL_DONT_INSERT);
7764 overlay_events_enabled = 0;
7765 }
7766}
7767
7768/* Set an active std::terminate breakpoint for each std::terminate
7769 master breakpoint. */
7770void
7771set_std_terminate_breakpoint (void)
7772{
7773 struct breakpoint *b, *b_tmp;
7774
7775 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7776 if (b->pspace == current_program_space
7777 && b->type == bp_std_terminate_master)
7778 {
7779 momentary_breakpoint_from_master (b, bp_std_terminate,
7780 &momentary_breakpoint_ops, 1);
7781 }
7782}
7783
7784/* Delete all the std::terminate breakpoints. */
7785void
7786delete_std_terminate_breakpoint (void)
7787{
7788 struct breakpoint *b, *b_tmp;
7789
7790 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7791 if (b->type == bp_std_terminate)
7792 delete_breakpoint (b);
7793}
7794
7795struct breakpoint *
7796create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7797{
7798 struct breakpoint *b;
7799
7800 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7801 &internal_breakpoint_ops);
7802
7803 b->enable_state = bp_enabled;
7804 /* location has to be used or breakpoint_re_set will delete me. */
7805 b->location = new_address_location (b->loc->address, NULL, 0);
7806
7807 update_global_location_list_nothrow (UGLL_MAY_INSERT);
7808
7809 return b;
7810}
7811
7812struct lang_and_radix
7813 {
7814 enum language lang;
7815 int radix;
7816 };
7817
7818/* Create a breakpoint for JIT code registration and unregistration. */
7819
7820struct breakpoint *
7821create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7822{
7823 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7824 &internal_breakpoint_ops);
7825}
7826
7827/* Remove JIT code registration and unregistration breakpoint(s). */
7828
7829void
7830remove_jit_event_breakpoints (void)
7831{
7832 struct breakpoint *b, *b_tmp;
7833
7834 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7835 if (b->type == bp_jit_event
7836 && b->loc->pspace == current_program_space)
7837 delete_breakpoint (b);
7838}
7839
7840void
7841remove_solib_event_breakpoints (void)
7842{
7843 struct breakpoint *b, *b_tmp;
7844
7845 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7846 if (b->type == bp_shlib_event
7847 && b->loc->pspace == current_program_space)
7848 delete_breakpoint (b);
7849}
7850
7851/* See breakpoint.h. */
7852
7853void
7854remove_solib_event_breakpoints_at_next_stop (void)
7855{
7856 struct breakpoint *b, *b_tmp;
7857
7858 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7859 if (b->type == bp_shlib_event
7860 && b->loc->pspace == current_program_space)
7861 b->disposition = disp_del_at_next_stop;
7862}
7863
7864/* Helper for create_solib_event_breakpoint /
7865 create_and_insert_solib_event_breakpoint. Allows specifying which
7866 INSERT_MODE to pass through to update_global_location_list. */
7867
7868static struct breakpoint *
7869create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7870 enum ugll_insert_mode insert_mode)
7871{
7872 struct breakpoint *b;
7873
7874 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7875 &internal_breakpoint_ops);
7876 update_global_location_list_nothrow (insert_mode);
7877 return b;
7878}
7879
7880struct breakpoint *
7881create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7882{
7883 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7884}
7885
7886/* See breakpoint.h. */
7887
7888struct breakpoint *
7889create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7890{
7891 struct breakpoint *b;
7892
7893 /* Explicitly tell update_global_location_list to insert
7894 locations. */
7895 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
7896 if (!b->loc->inserted)
7897 {
7898 delete_breakpoint (b);
7899 return NULL;
7900 }
7901 return b;
7902}
7903
7904/* Disable any breakpoints that are on code in shared libraries. Only
7905 apply to enabled breakpoints, disabled ones can just stay disabled. */
7906
7907void
7908disable_breakpoints_in_shlibs (void)
7909{
7910 struct bp_location *loc, **locp_tmp;
7911
7912 ALL_BP_LOCATIONS (loc, locp_tmp)
7913 {
7914 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7915 struct breakpoint *b = loc->owner;
7916
7917 /* We apply the check to all breakpoints, including disabled for
7918 those with loc->duplicate set. This is so that when breakpoint
7919 becomes enabled, or the duplicate is removed, gdb will try to
7920 insert all breakpoints. If we don't set shlib_disabled here,
7921 we'll try to insert those breakpoints and fail. */
7922 if (((b->type == bp_breakpoint)
7923 || (b->type == bp_jit_event)
7924 || (b->type == bp_hardware_breakpoint)
7925 || (is_tracepoint (b)))
7926 && loc->pspace == current_program_space
7927 && !loc->shlib_disabled
7928 && solib_name_from_address (loc->pspace, loc->address)
7929 )
7930 {
7931 loc->shlib_disabled = 1;
7932 }
7933 }
7934}
7935
7936/* Disable any breakpoints and tracepoints that are in SOLIB upon
7937 notification of unloaded_shlib. Only apply to enabled breakpoints,
7938 disabled ones can just stay disabled. */
7939
7940static void
7941disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7942{
7943 struct bp_location *loc, **locp_tmp;
7944 int disabled_shlib_breaks = 0;
7945
7946 /* SunOS a.out shared libraries are always mapped, so do not
7947 disable breakpoints; they will only be reported as unloaded
7948 through clear_solib when GDB discards its shared library
7949 list. See clear_solib for more information. */
7950 if (exec_bfd != NULL
7951 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
7952 return;
7953
7954 ALL_BP_LOCATIONS (loc, locp_tmp)
7955 {
7956 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7957 struct breakpoint *b = loc->owner;
7958
7959 if (solib->pspace == loc->pspace
7960 && !loc->shlib_disabled
7961 && (((b->type == bp_breakpoint
7962 || b->type == bp_jit_event
7963 || b->type == bp_hardware_breakpoint)
7964 && (loc->loc_type == bp_loc_hardware_breakpoint
7965 || loc->loc_type == bp_loc_software_breakpoint))
7966 || is_tracepoint (b))
7967 && solib_contains_address_p (solib, loc->address))
7968 {
7969 loc->shlib_disabled = 1;
7970 /* At this point, we cannot rely on remove_breakpoint
7971 succeeding so we must mark the breakpoint as not inserted
7972 to prevent future errors occurring in remove_breakpoints. */
7973 loc->inserted = 0;
7974
7975 /* This may cause duplicate notifications for the same breakpoint. */
7976 observer_notify_breakpoint_modified (b);
7977
7978 if (!disabled_shlib_breaks)
7979 {
7980 target_terminal_ours_for_output ();
7981 warning (_("Temporarily disabling breakpoints "
7982 "for unloaded shared library \"%s\""),
7983 solib->so_name);
7984 }
7985 disabled_shlib_breaks = 1;
7986 }
7987 }
7988}
7989
7990/* Disable any breakpoints and tracepoints in OBJFILE upon
7991 notification of free_objfile. Only apply to enabled breakpoints,
7992 disabled ones can just stay disabled. */
7993
7994static void
7995disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7996{
7997 struct breakpoint *b;
7998
7999 if (objfile == NULL)
8000 return;
8001
8002 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
8003 managed by the user with add-symbol-file/remove-symbol-file.
8004 Similarly to how breakpoints in shared libraries are handled in
8005 response to "nosharedlibrary", mark breakpoints in such modules
8006 shlib_disabled so they end up uninserted on the next global
8007 location list update. Shared libraries not loaded by the user
8008 aren't handled here -- they're already handled in
8009 disable_breakpoints_in_unloaded_shlib, called by solib.c's
8010 solib_unloaded observer. We skip objfiles that are not
8011 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
8012 main objfile). */
8013 if ((objfile->flags & OBJF_SHARED) == 0
8014 || (objfile->flags & OBJF_USERLOADED) == 0)
8015 return;
8016
8017 ALL_BREAKPOINTS (b)
8018 {
8019 struct bp_location *loc;
8020 int bp_modified = 0;
8021
8022 if (!is_breakpoint (b) && !is_tracepoint (b))
8023 continue;
8024
8025 for (loc = b->loc; loc != NULL; loc = loc->next)
8026 {
8027 CORE_ADDR loc_addr = loc->address;
8028
8029 if (loc->loc_type != bp_loc_hardware_breakpoint
8030 && loc->loc_type != bp_loc_software_breakpoint)
8031 continue;
8032
8033 if (loc->shlib_disabled != 0)
8034 continue;
8035
8036 if (objfile->pspace != loc->pspace)
8037 continue;
8038
8039 if (loc->loc_type != bp_loc_hardware_breakpoint
8040 && loc->loc_type != bp_loc_software_breakpoint)
8041 continue;
8042
8043 if (is_addr_in_objfile (loc_addr, objfile))
8044 {
8045 loc->shlib_disabled = 1;
8046 /* At this point, we don't know whether the object was
8047 unmapped from the inferior or not, so leave the
8048 inserted flag alone. We'll handle failure to
8049 uninsert quietly, in case the object was indeed
8050 unmapped. */
8051
8052 mark_breakpoint_location_modified (loc);
8053
8054 bp_modified = 1;
8055 }
8056 }
8057
8058 if (bp_modified)
8059 observer_notify_breakpoint_modified (b);
8060 }
8061}
8062
8063/* FORK & VFORK catchpoints. */
8064
8065/* An instance of this type is used to represent a fork or vfork
8066 catchpoint. It includes a "struct breakpoint" as a kind of base
8067 class; users downcast to "struct breakpoint *" when needed. A
8068 breakpoint is really of this type iff its ops pointer points to
8069 CATCH_FORK_BREAKPOINT_OPS. */
8070
8071struct fork_catchpoint
8072{
8073 /* The base class. */
8074 struct breakpoint base;
8075
8076 /* Process id of a child process whose forking triggered this
8077 catchpoint. This field is only valid immediately after this
8078 catchpoint has triggered. */
8079 ptid_t forked_inferior_pid;
8080};
8081
8082/* Implement the "insert" breakpoint_ops method for fork
8083 catchpoints. */
8084
8085static int
8086insert_catch_fork (struct bp_location *bl)
8087{
8088 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
8089}
8090
8091/* Implement the "remove" breakpoint_ops method for fork
8092 catchpoints. */
8093
8094static int
8095remove_catch_fork (struct bp_location *bl)
8096{
8097 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
8098}
8099
8100/* Implement the "breakpoint_hit" breakpoint_ops method for fork
8101 catchpoints. */
8102
8103static int
8104breakpoint_hit_catch_fork (const struct bp_location *bl,
8105 struct address_space *aspace, CORE_ADDR bp_addr,
8106 const struct target_waitstatus *ws)
8107{
8108 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8109
8110 if (ws->kind != TARGET_WAITKIND_FORKED)
8111 return 0;
8112
8113 c->forked_inferior_pid = ws->value.related_pid;
8114 return 1;
8115}
8116
8117/* Implement the "print_it" breakpoint_ops method for fork
8118 catchpoints. */
8119
8120static enum print_stop_action
8121print_it_catch_fork (bpstat bs)
8122{
8123 struct ui_out *uiout = current_uiout;
8124 struct breakpoint *b = bs->breakpoint_at;
8125 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
8126
8127 annotate_catchpoint (b->number);
8128 maybe_print_thread_hit_breakpoint (uiout);
8129 if (b->disposition == disp_del)
8130 ui_out_text (uiout, "Temporary catchpoint ");
8131 else
8132 ui_out_text (uiout, "Catchpoint ");
8133 if (ui_out_is_mi_like_p (uiout))
8134 {
8135 ui_out_field_string (uiout, "reason",
8136 async_reason_lookup (EXEC_ASYNC_FORK));
8137 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8138 }
8139 ui_out_field_int (uiout, "bkptno", b->number);
8140 ui_out_text (uiout, " (forked process ");
8141 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8142 ui_out_text (uiout, "), ");
8143 return PRINT_SRC_AND_LOC;
8144}
8145
8146/* Implement the "print_one" breakpoint_ops method for fork
8147 catchpoints. */
8148
8149static void
8150print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
8151{
8152 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8153 struct value_print_options opts;
8154 struct ui_out *uiout = current_uiout;
8155
8156 get_user_print_options (&opts);
8157
8158 /* Field 4, the address, is omitted (which makes the columns not
8159 line up too nicely with the headers, but the effect is relatively
8160 readable). */
8161 if (opts.addressprint)
8162 ui_out_field_skip (uiout, "addr");
8163 annotate_field (5);
8164 ui_out_text (uiout, "fork");
8165 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
8166 {
8167 ui_out_text (uiout, ", process ");
8168 ui_out_field_int (uiout, "what",
8169 ptid_get_pid (c->forked_inferior_pid));
8170 ui_out_spaces (uiout, 1);
8171 }
8172
8173 if (ui_out_is_mi_like_p (uiout))
8174 ui_out_field_string (uiout, "catch-type", "fork");
8175}
8176
8177/* Implement the "print_mention" breakpoint_ops method for fork
8178 catchpoints. */
8179
8180static void
8181print_mention_catch_fork (struct breakpoint *b)
8182{
8183 printf_filtered (_("Catchpoint %d (fork)"), b->number);
8184}
8185
8186/* Implement the "print_recreate" breakpoint_ops method for fork
8187 catchpoints. */
8188
8189static void
8190print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
8191{
8192 fprintf_unfiltered (fp, "catch fork");
8193 print_recreate_thread (b, fp);
8194}
8195
8196/* The breakpoint_ops structure to be used in fork catchpoints. */
8197
8198static struct breakpoint_ops catch_fork_breakpoint_ops;
8199
8200/* Implement the "insert" breakpoint_ops method for vfork
8201 catchpoints. */
8202
8203static int
8204insert_catch_vfork (struct bp_location *bl)
8205{
8206 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
8207}
8208
8209/* Implement the "remove" breakpoint_ops method for vfork
8210 catchpoints. */
8211
8212static int
8213remove_catch_vfork (struct bp_location *bl)
8214{
8215 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
8216}
8217
8218/* Implement the "breakpoint_hit" breakpoint_ops method for vfork
8219 catchpoints. */
8220
8221static int
8222breakpoint_hit_catch_vfork (const struct bp_location *bl,
8223 struct address_space *aspace, CORE_ADDR bp_addr,
8224 const struct target_waitstatus *ws)
8225{
8226 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8227
8228 if (ws->kind != TARGET_WAITKIND_VFORKED)
8229 return 0;
8230
8231 c->forked_inferior_pid = ws->value.related_pid;
8232 return 1;
8233}
8234
8235/* Implement the "print_it" breakpoint_ops method for vfork
8236 catchpoints. */
8237
8238static enum print_stop_action
8239print_it_catch_vfork (bpstat bs)
8240{
8241 struct ui_out *uiout = current_uiout;
8242 struct breakpoint *b = bs->breakpoint_at;
8243 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8244
8245 annotate_catchpoint (b->number);
8246 maybe_print_thread_hit_breakpoint (uiout);
8247 if (b->disposition == disp_del)
8248 ui_out_text (uiout, "Temporary catchpoint ");
8249 else
8250 ui_out_text (uiout, "Catchpoint ");
8251 if (ui_out_is_mi_like_p (uiout))
8252 {
8253 ui_out_field_string (uiout, "reason",
8254 async_reason_lookup (EXEC_ASYNC_VFORK));
8255 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8256 }
8257 ui_out_field_int (uiout, "bkptno", b->number);
8258 ui_out_text (uiout, " (vforked process ");
8259 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8260 ui_out_text (uiout, "), ");
8261 return PRINT_SRC_AND_LOC;
8262}
8263
8264/* Implement the "print_one" breakpoint_ops method for vfork
8265 catchpoints. */
8266
8267static void
8268print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
8269{
8270 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8271 struct value_print_options opts;
8272 struct ui_out *uiout = current_uiout;
8273
8274 get_user_print_options (&opts);
8275 /* Field 4, the address, is omitted (which makes the columns not
8276 line up too nicely with the headers, but the effect is relatively
8277 readable). */
8278 if (opts.addressprint)
8279 ui_out_field_skip (uiout, "addr");
8280 annotate_field (5);
8281 ui_out_text (uiout, "vfork");
8282 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
8283 {
8284 ui_out_text (uiout, ", process ");
8285 ui_out_field_int (uiout, "what",
8286 ptid_get_pid (c->forked_inferior_pid));
8287 ui_out_spaces (uiout, 1);
8288 }
8289
8290 if (ui_out_is_mi_like_p (uiout))
8291 ui_out_field_string (uiout, "catch-type", "vfork");
8292}
8293
8294/* Implement the "print_mention" breakpoint_ops method for vfork
8295 catchpoints. */
8296
8297static void
8298print_mention_catch_vfork (struct breakpoint *b)
8299{
8300 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
8301}
8302
8303/* Implement the "print_recreate" breakpoint_ops method for vfork
8304 catchpoints. */
8305
8306static void
8307print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
8308{
8309 fprintf_unfiltered (fp, "catch vfork");
8310 print_recreate_thread (b, fp);
8311}
8312
8313/* The breakpoint_ops structure to be used in vfork catchpoints. */
8314
8315static struct breakpoint_ops catch_vfork_breakpoint_ops;
8316
8317/* An instance of this type is used to represent an solib catchpoint.
8318 It includes a "struct breakpoint" as a kind of base class; users
8319 downcast to "struct breakpoint *" when needed. A breakpoint is
8320 really of this type iff its ops pointer points to
8321 CATCH_SOLIB_BREAKPOINT_OPS. */
8322
8323struct solib_catchpoint
8324{
8325 /* The base class. */
8326 struct breakpoint base;
8327
8328 /* True for "catch load", false for "catch unload". */
8329 unsigned char is_load;
8330
8331 /* Regular expression to match, if any. COMPILED is only valid when
8332 REGEX is non-NULL. */
8333 char *regex;
8334 regex_t compiled;
8335};
8336
8337static void
8338dtor_catch_solib (struct breakpoint *b)
8339{
8340 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8341
8342 if (self->regex)
8343 regfree (&self->compiled);
8344 xfree (self->regex);
8345
8346 base_breakpoint_ops.dtor (b);
8347}
8348
8349static int
8350insert_catch_solib (struct bp_location *ignore)
8351{
8352 return 0;
8353}
8354
8355static int
8356remove_catch_solib (struct bp_location *ignore)
8357{
8358 return 0;
8359}
8360
8361static int
8362breakpoint_hit_catch_solib (const struct bp_location *bl,
8363 struct address_space *aspace,
8364 CORE_ADDR bp_addr,
8365 const struct target_waitstatus *ws)
8366{
8367 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
8368 struct breakpoint *other;
8369
8370 if (ws->kind == TARGET_WAITKIND_LOADED)
8371 return 1;
8372
8373 ALL_BREAKPOINTS (other)
8374 {
8375 struct bp_location *other_bl;
8376
8377 if (other == bl->owner)
8378 continue;
8379
8380 if (other->type != bp_shlib_event)
8381 continue;
8382
8383 if (self->base.pspace != NULL && other->pspace != self->base.pspace)
8384 continue;
8385
8386 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
8387 {
8388 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
8389 return 1;
8390 }
8391 }
8392
8393 return 0;
8394}
8395
8396static void
8397check_status_catch_solib (struct bpstats *bs)
8398{
8399 struct solib_catchpoint *self
8400 = (struct solib_catchpoint *) bs->breakpoint_at;
8401 int ix;
8402
8403 if (self->is_load)
8404 {
8405 struct so_list *iter;
8406
8407 for (ix = 0;
8408 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
8409 ix, iter);
8410 ++ix)
8411 {
8412 if (!self->regex
8413 || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0)
8414 return;
8415 }
8416 }
8417 else
8418 {
8419 char *iter;
8420
8421 for (ix = 0;
8422 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
8423 ix, iter);
8424 ++ix)
8425 {
8426 if (!self->regex
8427 || regexec (&self->compiled, iter, 0, NULL, 0) == 0)
8428 return;
8429 }
8430 }
8431
8432 bs->stop = 0;
8433 bs->print_it = print_it_noop;
8434}
8435
8436static enum print_stop_action
8437print_it_catch_solib (bpstat bs)
8438{
8439 struct breakpoint *b = bs->breakpoint_at;
8440 struct ui_out *uiout = current_uiout;
8441
8442 annotate_catchpoint (b->number);
8443 maybe_print_thread_hit_breakpoint (uiout);
8444 if (b->disposition == disp_del)
8445 ui_out_text (uiout, "Temporary catchpoint ");
8446 else
8447 ui_out_text (uiout, "Catchpoint ");
8448 ui_out_field_int (uiout, "bkptno", b->number);
8449 ui_out_text (uiout, "\n");
8450 if (ui_out_is_mi_like_p (uiout))
8451 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8452 print_solib_event (1);
8453 return PRINT_SRC_AND_LOC;
8454}
8455
8456static void
8457print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8458{
8459 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8460 struct value_print_options opts;
8461 struct ui_out *uiout = current_uiout;
8462 char *msg;
8463
8464 get_user_print_options (&opts);
8465 /* Field 4, the address, is omitted (which makes the columns not
8466 line up too nicely with the headers, but the effect is relatively
8467 readable). */
8468 if (opts.addressprint)
8469 {
8470 annotate_field (4);
8471 ui_out_field_skip (uiout, "addr");
8472 }
8473
8474 annotate_field (5);
8475 if (self->is_load)
8476 {
8477 if (self->regex)
8478 msg = xstrprintf (_("load of library matching %s"), self->regex);
8479 else
8480 msg = xstrdup (_("load of library"));
8481 }
8482 else
8483 {
8484 if (self->regex)
8485 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8486 else
8487 msg = xstrdup (_("unload of library"));
8488 }
8489 ui_out_field_string (uiout, "what", msg);
8490 xfree (msg);
8491
8492 if (ui_out_is_mi_like_p (uiout))
8493 ui_out_field_string (uiout, "catch-type",
8494 self->is_load ? "load" : "unload");
8495}
8496
8497static void
8498print_mention_catch_solib (struct breakpoint *b)
8499{
8500 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8501
8502 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8503 self->is_load ? "load" : "unload");
8504}
8505
8506static void
8507print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8508{
8509 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8510
8511 fprintf_unfiltered (fp, "%s %s",
8512 b->disposition == disp_del ? "tcatch" : "catch",
8513 self->is_load ? "load" : "unload");
8514 if (self->regex)
8515 fprintf_unfiltered (fp, " %s", self->regex);
8516 fprintf_unfiltered (fp, "\n");
8517}
8518
8519static struct breakpoint_ops catch_solib_breakpoint_ops;
8520
8521/* Shared helper function (MI and CLI) for creating and installing
8522 a shared object event catchpoint. If IS_LOAD is non-zero then
8523 the events to be caught are load events, otherwise they are
8524 unload events. If IS_TEMP is non-zero the catchpoint is a
8525 temporary one. If ENABLED is non-zero the catchpoint is
8526 created in an enabled state. */
8527
8528void
8529add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled)
8530{
8531 struct solib_catchpoint *c;
8532 struct gdbarch *gdbarch = get_current_arch ();
8533 struct cleanup *cleanup;
8534
8535 if (!arg)
8536 arg = "";
8537 arg = skip_spaces (arg);
8538
8539 c = XCNEW (struct solib_catchpoint);
8540 cleanup = make_cleanup (xfree, c);
8541
8542 if (*arg != '\0')
8543 {
8544 int errcode;
8545
8546 errcode = regcomp (&c->compiled, arg, REG_NOSUB);
8547 if (errcode != 0)
8548 {
8549 char *err = get_regcomp_error (errcode, &c->compiled);
8550
8551 make_cleanup (xfree, err);
8552 error (_("Invalid regexp (%s): %s"), err, arg);
8553 }
8554 c->regex = xstrdup (arg);
8555 }
8556
8557 c->is_load = is_load;
8558 init_catchpoint (&c->base, gdbarch, is_temp, NULL,
8559 &catch_solib_breakpoint_ops);
8560
8561 c->base.enable_state = enabled ? bp_enabled : bp_disabled;
8562
8563 discard_cleanups (cleanup);
8564 install_breakpoint (0, &c->base, 1);
8565}
8566
8567/* A helper function that does all the work for "catch load" and
8568 "catch unload". */
8569
8570static void
8571catch_load_or_unload (char *arg, int from_tty, int is_load,
8572 struct cmd_list_element *command)
8573{
8574 int tempflag;
8575 const int enabled = 1;
8576
8577 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8578
8579 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8580}
8581
8582static void
8583catch_load_command_1 (char *arg, int from_tty,
8584 struct cmd_list_element *command)
8585{
8586 catch_load_or_unload (arg, from_tty, 1, command);
8587}
8588
8589static void
8590catch_unload_command_1 (char *arg, int from_tty,
8591 struct cmd_list_element *command)
8592{
8593 catch_load_or_unload (arg, from_tty, 0, command);
8594}
8595
8596/* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8597 is non-zero, then make the breakpoint temporary. If COND_STRING is
8598 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8599 the breakpoint_ops structure associated to the catchpoint. */
8600
8601void
8602init_catchpoint (struct breakpoint *b,
8603 struct gdbarch *gdbarch, int tempflag,
8604 char *cond_string,
8605 const struct breakpoint_ops *ops)
8606{
8607 struct symtab_and_line sal;
8608
8609 init_sal (&sal);
8610 sal.pspace = current_program_space;
8611
8612 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
8613
8614 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
8615 b->disposition = tempflag ? disp_del : disp_donttouch;
8616}
8617
8618void
8619install_breakpoint (int internal, struct breakpoint *b, int update_gll)
8620{
8621 add_to_breakpoint_chain (b);
8622 set_breakpoint_number (internal, b);
8623 if (is_tracepoint (b))
8624 set_tracepoint_count (breakpoint_count);
8625 if (!internal)
8626 mention (b);
8627 observer_notify_breakpoint_created (b);
8628
8629 if (update_gll)
8630 update_global_location_list (UGLL_MAY_INSERT);
8631}
8632
8633static void
8634create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8635 int tempflag, char *cond_string,
8636 const struct breakpoint_ops *ops)
8637{
8638 struct fork_catchpoint *c = XNEW (struct fork_catchpoint);
8639
8640 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
8641
8642 c->forked_inferior_pid = null_ptid;
8643
8644 install_breakpoint (0, &c->base, 1);
8645}
8646
8647/* Exec catchpoints. */
8648
8649/* An instance of this type is used to represent an exec catchpoint.
8650 It includes a "struct breakpoint" as a kind of base class; users
8651 downcast to "struct breakpoint *" when needed. A breakpoint is
8652 really of this type iff its ops pointer points to
8653 CATCH_EXEC_BREAKPOINT_OPS. */
8654
8655struct exec_catchpoint
8656{
8657 /* The base class. */
8658 struct breakpoint base;
8659
8660 /* Filename of a program whose exec triggered this catchpoint.
8661 This field is only valid immediately after this catchpoint has
8662 triggered. */
8663 char *exec_pathname;
8664};
8665
8666/* Implement the "dtor" breakpoint_ops method for exec
8667 catchpoints. */
8668
8669static void
8670dtor_catch_exec (struct breakpoint *b)
8671{
8672 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8673
8674 xfree (c->exec_pathname);
8675
8676 base_breakpoint_ops.dtor (b);
8677}
8678
8679static int
8680insert_catch_exec (struct bp_location *bl)
8681{
8682 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
8683}
8684
8685static int
8686remove_catch_exec (struct bp_location *bl)
8687{
8688 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
8689}
8690
8691static int
8692breakpoint_hit_catch_exec (const struct bp_location *bl,
8693 struct address_space *aspace, CORE_ADDR bp_addr,
8694 const struct target_waitstatus *ws)
8695{
8696 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8697
8698 if (ws->kind != TARGET_WAITKIND_EXECD)
8699 return 0;
8700
8701 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8702 return 1;
8703}
8704
8705static enum print_stop_action
8706print_it_catch_exec (bpstat bs)
8707{
8708 struct ui_out *uiout = current_uiout;
8709 struct breakpoint *b = bs->breakpoint_at;
8710 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8711
8712 annotate_catchpoint (b->number);
8713 maybe_print_thread_hit_breakpoint (uiout);
8714 if (b->disposition == disp_del)
8715 ui_out_text (uiout, "Temporary catchpoint ");
8716 else
8717 ui_out_text (uiout, "Catchpoint ");
8718 if (ui_out_is_mi_like_p (uiout))
8719 {
8720 ui_out_field_string (uiout, "reason",
8721 async_reason_lookup (EXEC_ASYNC_EXEC));
8722 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8723 }
8724 ui_out_field_int (uiout, "bkptno", b->number);
8725 ui_out_text (uiout, " (exec'd ");
8726 ui_out_field_string (uiout, "new-exec", c->exec_pathname);
8727 ui_out_text (uiout, "), ");
8728
8729 return PRINT_SRC_AND_LOC;
8730}
8731
8732static void
8733print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
8734{
8735 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8736 struct value_print_options opts;
8737 struct ui_out *uiout = current_uiout;
8738
8739 get_user_print_options (&opts);
8740
8741 /* Field 4, the address, is omitted (which makes the columns
8742 not line up too nicely with the headers, but the effect
8743 is relatively readable). */
8744 if (opts.addressprint)
8745 ui_out_field_skip (uiout, "addr");
8746 annotate_field (5);
8747 ui_out_text (uiout, "exec");
8748 if (c->exec_pathname != NULL)
8749 {
8750 ui_out_text (uiout, ", program \"");
8751 ui_out_field_string (uiout, "what", c->exec_pathname);
8752 ui_out_text (uiout, "\" ");
8753 }
8754
8755 if (ui_out_is_mi_like_p (uiout))
8756 ui_out_field_string (uiout, "catch-type", "exec");
8757}
8758
8759static void
8760print_mention_catch_exec (struct breakpoint *b)
8761{
8762 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8763}
8764
8765/* Implement the "print_recreate" breakpoint_ops method for exec
8766 catchpoints. */
8767
8768static void
8769print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8770{
8771 fprintf_unfiltered (fp, "catch exec");
8772 print_recreate_thread (b, fp);
8773}
8774
8775static struct breakpoint_ops catch_exec_breakpoint_ops;
8776
8777static int
8778hw_breakpoint_used_count (void)
8779{
8780 int i = 0;
8781 struct breakpoint *b;
8782 struct bp_location *bl;
8783
8784 ALL_BREAKPOINTS (b)
8785 {
8786 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
8787 for (bl = b->loc; bl; bl = bl->next)
8788 {
8789 /* Special types of hardware breakpoints may use more than
8790 one register. */
8791 i += b->ops->resources_needed (bl);
8792 }
8793 }
8794
8795 return i;
8796}
8797
8798/* Returns the resources B would use if it were a hardware
8799 watchpoint. */
8800
8801static int
8802hw_watchpoint_use_count (struct breakpoint *b)
8803{
8804 int i = 0;
8805 struct bp_location *bl;
8806
8807 if (!breakpoint_enabled (b))
8808 return 0;
8809
8810 for (bl = b->loc; bl; bl = bl->next)
8811 {
8812 /* Special types of hardware watchpoints may use more than
8813 one register. */
8814 i += b->ops->resources_needed (bl);
8815 }
8816
8817 return i;
8818}
8819
8820/* Returns the sum the used resources of all hardware watchpoints of
8821 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8822 the sum of the used resources of all hardware watchpoints of other
8823 types _not_ TYPE. */
8824
8825static int
8826hw_watchpoint_used_count_others (struct breakpoint *except,
8827 enum bptype type, int *other_type_used)
8828{
8829 int i = 0;
8830 struct breakpoint *b;
8831
8832 *other_type_used = 0;
8833 ALL_BREAKPOINTS (b)
8834 {
8835 if (b == except)
8836 continue;
8837 if (!breakpoint_enabled (b))
8838 continue;
8839
8840 if (b->type == type)
8841 i += hw_watchpoint_use_count (b);
8842 else if (is_hardware_watchpoint (b))
8843 *other_type_used = 1;
8844 }
8845
8846 return i;
8847}
8848
8849void
8850disable_watchpoints_before_interactive_call_start (void)
8851{
8852 struct breakpoint *b;
8853
8854 ALL_BREAKPOINTS (b)
8855 {
8856 if (is_watchpoint (b) && breakpoint_enabled (b))
8857 {
8858 b->enable_state = bp_call_disabled;
8859 update_global_location_list (UGLL_DONT_INSERT);
8860 }
8861 }
8862}
8863
8864void
8865enable_watchpoints_after_interactive_call_stop (void)
8866{
8867 struct breakpoint *b;
8868
8869 ALL_BREAKPOINTS (b)
8870 {
8871 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
8872 {
8873 b->enable_state = bp_enabled;
8874 update_global_location_list (UGLL_MAY_INSERT);
8875 }
8876 }
8877}
8878
8879void
8880disable_breakpoints_before_startup (void)
8881{
8882 current_program_space->executing_startup = 1;
8883 update_global_location_list (UGLL_DONT_INSERT);
8884}
8885
8886void
8887enable_breakpoints_after_startup (void)
8888{
8889 current_program_space->executing_startup = 0;
8890 breakpoint_re_set ();
8891}
8892
8893/* Create a new single-step breakpoint for thread THREAD, with no
8894 locations. */
8895
8896static struct breakpoint *
8897new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8898{
8899 struct breakpoint *b = XNEW (struct breakpoint);
8900
8901 init_raw_breakpoint_without_location (b, gdbarch, bp_single_step,
8902 &momentary_breakpoint_ops);
8903
8904 b->disposition = disp_donttouch;
8905 b->frame_id = null_frame_id;
8906
8907 b->thread = thread;
8908 gdb_assert (b->thread != 0);
8909
8910 add_to_breakpoint_chain (b);
8911
8912 return b;
8913}
8914
8915/* Set a momentary breakpoint of type TYPE at address specified by
8916 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8917 frame. */
8918
8919struct breakpoint *
8920set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8921 struct frame_id frame_id, enum bptype type)
8922{
8923 struct breakpoint *b;
8924
8925 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8926 tail-called one. */
8927 gdb_assert (!frame_id_artificial_p (frame_id));
8928
8929 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
8930 b->enable_state = bp_enabled;
8931 b->disposition = disp_donttouch;
8932 b->frame_id = frame_id;
8933
8934 /* If we're debugging a multi-threaded program, then we want
8935 momentary breakpoints to be active in only a single thread of
8936 control. */
8937 if (in_thread_list (inferior_ptid))
8938 b->thread = ptid_to_global_thread_id (inferior_ptid);
8939
8940 update_global_location_list_nothrow (UGLL_MAY_INSERT);
8941
8942 return b;
8943}
8944
8945/* Make a momentary breakpoint based on the master breakpoint ORIG.
8946 The new breakpoint will have type TYPE, use OPS as its
8947 breakpoint_ops, and will set enabled to LOC_ENABLED. */
8948
8949static struct breakpoint *
8950momentary_breakpoint_from_master (struct breakpoint *orig,
8951 enum bptype type,
8952 const struct breakpoint_ops *ops,
8953 int loc_enabled)
8954{
8955 struct breakpoint *copy;
8956
8957 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
8958 copy->loc = allocate_bp_location (copy);
8959 set_breakpoint_location_function (copy->loc, 1);
8960
8961 copy->loc->gdbarch = orig->loc->gdbarch;
8962 copy->loc->requested_address = orig->loc->requested_address;
8963 copy->loc->address = orig->loc->address;
8964 copy->loc->section = orig->loc->section;
8965 copy->loc->pspace = orig->loc->pspace;
8966 copy->loc->probe = orig->loc->probe;
8967 copy->loc->line_number = orig->loc->line_number;
8968 copy->loc->symtab = orig->loc->symtab;
8969 copy->loc->enabled = loc_enabled;
8970 copy->frame_id = orig->frame_id;
8971 copy->thread = orig->thread;
8972 copy->pspace = orig->pspace;
8973
8974 copy->enable_state = bp_enabled;
8975 copy->disposition = disp_donttouch;
8976 copy->number = internal_breakpoint_number--;
8977
8978 update_global_location_list_nothrow (UGLL_DONT_INSERT);
8979 return copy;
8980}
8981
8982/* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8983 ORIG is NULL. */
8984
8985struct breakpoint *
8986clone_momentary_breakpoint (struct breakpoint *orig)
8987{
8988 /* If there's nothing to clone, then return nothing. */
8989 if (orig == NULL)
8990 return NULL;
8991
8992 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
8993}
8994
8995struct breakpoint *
8996set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8997 enum bptype type)
8998{
8999 struct symtab_and_line sal;
9000
9001 sal = find_pc_line (pc, 0);
9002 sal.pc = pc;
9003 sal.section = find_pc_overlay (pc);
9004 sal.explicit_pc = 1;
9005
9006 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
9007}
9008\f
9009
9010/* Tell the user we have just set a breakpoint B. */
9011
9012static void
9013mention (struct breakpoint *b)
9014{
9015 b->ops->print_mention (b);
9016 if (ui_out_is_mi_like_p (current_uiout))
9017 return;
9018 printf_filtered ("\n");
9019}
9020\f
9021
9022static int bp_loc_is_permanent (struct bp_location *loc);
9023
9024static struct bp_location *
9025add_location_to_breakpoint (struct breakpoint *b,
9026 const struct symtab_and_line *sal)
9027{
9028 struct bp_location *loc, **tmp;
9029 CORE_ADDR adjusted_address;
9030 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
9031
9032 if (loc_gdbarch == NULL)
9033 loc_gdbarch = b->gdbarch;
9034
9035 /* Adjust the breakpoint's address prior to allocating a location.
9036 Once we call allocate_bp_location(), that mostly uninitialized
9037 location will be placed on the location chain. Adjustment of the
9038 breakpoint may cause target_read_memory() to be called and we do
9039 not want its scan of the location chain to find a breakpoint and
9040 location that's only been partially initialized. */
9041 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
9042 sal->pc, b->type);
9043
9044 /* Sort the locations by their ADDRESS. */
9045 loc = allocate_bp_location (b);
9046 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
9047 tmp = &((*tmp)->next))
9048 ;
9049 loc->next = *tmp;
9050 *tmp = loc;
9051
9052 loc->requested_address = sal->pc;
9053 loc->address = adjusted_address;
9054 loc->pspace = sal->pspace;
9055 loc->probe.probe = sal->probe;
9056 loc->probe.objfile = sal->objfile;
9057 gdb_assert (loc->pspace != NULL);
9058 loc->section = sal->section;
9059 loc->gdbarch = loc_gdbarch;
9060 loc->line_number = sal->line;
9061 loc->symtab = sal->symtab;
9062
9063 set_breakpoint_location_function (loc,
9064 sal->explicit_pc || sal->explicit_line);
9065
9066 /* While by definition, permanent breakpoints are already present in the
9067 code, we don't mark the location as inserted. Normally one would expect
9068 that GDB could rely on that breakpoint instruction to stop the program,
9069 thus removing the need to insert its own breakpoint, except that executing
9070 the breakpoint instruction can kill the target instead of reporting a
9071 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
9072 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
9073 with "Trap 0x02 while interrupts disabled, Error state". Letting the
9074 breakpoint be inserted normally results in QEMU knowing about the GDB
9075 breakpoint, and thus trap before the breakpoint instruction is executed.
9076 (If GDB later needs to continue execution past the permanent breakpoint,
9077 it manually increments the PC, thus avoiding executing the breakpoint
9078 instruction.) */
9079 if (bp_loc_is_permanent (loc))
9080 loc->permanent = 1;
9081
9082 return loc;
9083}
9084\f
9085
9086/* See breakpoint.h. */
9087
9088int
9089program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
9090{
9091 int len;
9092 CORE_ADDR addr;
9093 const gdb_byte *bpoint;
9094 gdb_byte *target_mem;
9095 struct cleanup *cleanup;
9096 int retval = 0;
9097
9098 addr = address;
9099 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
9100
9101 /* Software breakpoints unsupported? */
9102 if (bpoint == NULL)
9103 return 0;
9104
9105 target_mem = (gdb_byte *) alloca (len);
9106
9107 /* Enable the automatic memory restoration from breakpoints while
9108 we read the memory. Otherwise we could say about our temporary
9109 breakpoints they are permanent. */
9110 cleanup = make_show_memory_breakpoints_cleanup (0);
9111
9112 if (target_read_memory (address, target_mem, len) == 0
9113 && memcmp (target_mem, bpoint, len) == 0)
9114 retval = 1;
9115
9116 do_cleanups (cleanup);
9117
9118 return retval;
9119}
9120
9121/* Return 1 if LOC is pointing to a permanent breakpoint,
9122 return 0 otherwise. */
9123
9124static int
9125bp_loc_is_permanent (struct bp_location *loc)
9126{
9127 struct cleanup *cleanup;
9128 int retval;
9129
9130 gdb_assert (loc != NULL);
9131
9132 /* If we have a catchpoint or a watchpoint, just return 0. We should not
9133 attempt to read from the addresses the locations of these breakpoint types
9134 point to. program_breakpoint_here_p, below, will attempt to read
9135 memory. */
9136 if (!breakpoint_address_is_meaningful (loc->owner))
9137 return 0;
9138
9139 cleanup = save_current_space_and_thread ();
9140 switch_to_program_space_and_thread (loc->pspace);
9141
9142 retval = program_breakpoint_here_p (loc->gdbarch, loc->address);
9143
9144 do_cleanups (cleanup);
9145
9146 return retval;
9147}
9148
9149/* Build a command list for the dprintf corresponding to the current
9150 settings of the dprintf style options. */
9151
9152static void
9153update_dprintf_command_list (struct breakpoint *b)
9154{
9155 char *dprintf_args = b->extra_string;
9156 char *printf_line = NULL;
9157
9158 if (!dprintf_args)
9159 return;
9160
9161 dprintf_args = skip_spaces (dprintf_args);
9162
9163 /* Allow a comma, as it may have terminated a location, but don't
9164 insist on it. */
9165 if (*dprintf_args == ',')
9166 ++dprintf_args;
9167 dprintf_args = skip_spaces (dprintf_args);
9168
9169 if (*dprintf_args != '"')
9170 error (_("Bad format string, missing '\"'."));
9171
9172 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
9173 printf_line = xstrprintf ("printf %s", dprintf_args);
9174 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
9175 {
9176 if (!dprintf_function)
9177 error (_("No function supplied for dprintf call"));
9178
9179 if (dprintf_channel && strlen (dprintf_channel) > 0)
9180 printf_line = xstrprintf ("call (void) %s (%s,%s)",
9181 dprintf_function,
9182 dprintf_channel,
9183 dprintf_args);
9184 else
9185 printf_line = xstrprintf ("call (void) %s (%s)",
9186 dprintf_function,
9187 dprintf_args);
9188 }
9189 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
9190 {
9191 if (target_can_run_breakpoint_commands ())
9192 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
9193 else
9194 {
9195 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
9196 printf_line = xstrprintf ("printf %s", dprintf_args);
9197 }
9198 }
9199 else
9200 internal_error (__FILE__, __LINE__,
9201 _("Invalid dprintf style."));
9202
9203 gdb_assert (printf_line != NULL);
9204 /* Manufacture a printf sequence. */
9205 {
9206 struct command_line *printf_cmd_line = XNEW (struct command_line);
9207
9208 printf_cmd_line->control_type = simple_control;
9209 printf_cmd_line->body_count = 0;
9210 printf_cmd_line->body_list = NULL;
9211 printf_cmd_line->next = NULL;
9212 printf_cmd_line->line = printf_line;
9213
9214 breakpoint_set_commands (b, printf_cmd_line);
9215 }
9216}
9217
9218/* Update all dprintf commands, making their command lists reflect
9219 current style settings. */
9220
9221static void
9222update_dprintf_commands (char *args, int from_tty,
9223 struct cmd_list_element *c)
9224{
9225 struct breakpoint *b;
9226
9227 ALL_BREAKPOINTS (b)
9228 {
9229 if (b->type == bp_dprintf)
9230 update_dprintf_command_list (b);
9231 }
9232}
9233
9234/* Create a breakpoint with SAL as location. Use LOCATION
9235 as a description of the location, and COND_STRING
9236 as condition expression. If LOCATION is NULL then create an
9237 "address location" from the address in the SAL. */
9238
9239static void
9240init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
9241 struct symtabs_and_lines sals,
9242 struct event_location *location,
9243 char *filter, char *cond_string,
9244 char *extra_string,
9245 enum bptype type, enum bpdisp disposition,
9246 int thread, int task, int ignore_count,
9247 const struct breakpoint_ops *ops, int from_tty,
9248 int enabled, int internal, unsigned flags,
9249 int display_canonical)
9250{
9251 int i;
9252
9253 if (type == bp_hardware_breakpoint)
9254 {
9255 int target_resources_ok;
9256
9257 i = hw_breakpoint_used_count ();
9258 target_resources_ok =
9259 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9260 i + 1, 0);
9261 if (target_resources_ok == 0)
9262 error (_("No hardware breakpoint support in the target."));
9263 else if (target_resources_ok < 0)
9264 error (_("Hardware breakpoints used exceeds limit."));
9265 }
9266
9267 gdb_assert (sals.nelts > 0);
9268
9269 for (i = 0; i < sals.nelts; ++i)
9270 {
9271 struct symtab_and_line sal = sals.sals[i];
9272 struct bp_location *loc;
9273
9274 if (from_tty)
9275 {
9276 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9277 if (!loc_gdbarch)
9278 loc_gdbarch = gdbarch;
9279
9280 describe_other_breakpoints (loc_gdbarch,
9281 sal.pspace, sal.pc, sal.section, thread);
9282 }
9283
9284 if (i == 0)
9285 {
9286 init_raw_breakpoint (b, gdbarch, sal, type, ops);
9287 b->thread = thread;
9288 b->task = task;
9289
9290 b->cond_string = cond_string;
9291 b->extra_string = extra_string;
9292 b->ignore_count = ignore_count;
9293 b->enable_state = enabled ? bp_enabled : bp_disabled;
9294 b->disposition = disposition;
9295
9296 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9297 b->loc->inserted = 1;
9298
9299 if (type == bp_static_tracepoint)
9300 {
9301 struct tracepoint *t = (struct tracepoint *) b;
9302 struct static_tracepoint_marker marker;
9303
9304 if (strace_marker_p (b))
9305 {
9306 /* We already know the marker exists, otherwise, we
9307 wouldn't see a sal for it. */
9308 const char *p = &event_location_to_string (b->location)[3];
9309 const char *endp;
9310 char *marker_str;
9311
9312 p = skip_spaces_const (p);
9313
9314 endp = skip_to_space_const (p);
9315
9316 marker_str = savestring (p, endp - p);
9317 t->static_trace_marker_id = marker_str;
9318
9319 printf_filtered (_("Probed static tracepoint "
9320 "marker \"%s\"\n"),
9321 t->static_trace_marker_id);
9322 }
9323 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
9324 {
9325 t->static_trace_marker_id = xstrdup (marker.str_id);
9326 release_static_tracepoint_marker (&marker);
9327
9328 printf_filtered (_("Probed static tracepoint "
9329 "marker \"%s\"\n"),
9330 t->static_trace_marker_id);
9331 }
9332 else
9333 warning (_("Couldn't determine the static "
9334 "tracepoint marker to probe"));
9335 }
9336
9337 loc = b->loc;
9338 }
9339 else
9340 {
9341 loc = add_location_to_breakpoint (b, &sal);
9342 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9343 loc->inserted = 1;
9344 }
9345
9346 if (b->cond_string)
9347 {
9348 const char *arg = b->cond_string;
9349
9350 loc->cond = parse_exp_1 (&arg, loc->address,
9351 block_for_pc (loc->address), 0);
9352 if (*arg)
9353 error (_("Garbage '%s' follows condition"), arg);
9354 }
9355
9356 /* Dynamic printf requires and uses additional arguments on the
9357 command line, otherwise it's an error. */
9358 if (type == bp_dprintf)
9359 {
9360 if (b->extra_string)
9361 update_dprintf_command_list (b);
9362 else
9363 error (_("Format string required"));
9364 }
9365 else if (b->extra_string)
9366 error (_("Garbage '%s' at end of command"), b->extra_string);
9367 }
9368
9369 b->display_canonical = display_canonical;
9370 if (location != NULL)
9371 b->location = location;
9372 else
9373 {
9374 const char *addr_string = NULL;
9375 int addr_string_len = 0;
9376
9377 if (location != NULL)
9378 addr_string = event_location_to_string (location);
9379 if (addr_string != NULL)
9380 addr_string_len = strlen (addr_string);
9381
9382 b->location = new_address_location (b->loc->address,
9383 addr_string, addr_string_len);
9384 }
9385 b->filter = filter;
9386}
9387
9388static void
9389create_breakpoint_sal (struct gdbarch *gdbarch,
9390 struct symtabs_and_lines sals,
9391 struct event_location *location,
9392 char *filter, char *cond_string,
9393 char *extra_string,
9394 enum bptype type, enum bpdisp disposition,
9395 int thread, int task, int ignore_count,
9396 const struct breakpoint_ops *ops, int from_tty,
9397 int enabled, int internal, unsigned flags,
9398 int display_canonical)
9399{
9400 struct breakpoint *b;
9401 struct cleanup *old_chain;
9402
9403 if (is_tracepoint_type (type))
9404 {
9405 struct tracepoint *t;
9406
9407 t = XCNEW (struct tracepoint);
9408 b = &t->base;
9409 }
9410 else
9411 b = XNEW (struct breakpoint);
9412
9413 old_chain = make_cleanup (xfree, b);
9414
9415 init_breakpoint_sal (b, gdbarch,
9416 sals, location,
9417 filter, cond_string, extra_string,
9418 type, disposition,
9419 thread, task, ignore_count,
9420 ops, from_tty,
9421 enabled, internal, flags,
9422 display_canonical);
9423 discard_cleanups (old_chain);
9424
9425 install_breakpoint (internal, b, 0);
9426}
9427
9428/* Add SALS.nelts breakpoints to the breakpoint table. For each
9429 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9430 value. COND_STRING, if not NULL, specified the condition to be
9431 used for all breakpoints. Essentially the only case where
9432 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9433 function. In that case, it's still not possible to specify
9434 separate conditions for different overloaded functions, so
9435 we take just a single condition string.
9436
9437 NOTE: If the function succeeds, the caller is expected to cleanup
9438 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
9439 array contents). If the function fails (error() is called), the
9440 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
9441 COND and SALS arrays and each of those arrays contents. */
9442
9443static void
9444create_breakpoints_sal (struct gdbarch *gdbarch,
9445 struct linespec_result *canonical,
9446 char *cond_string, char *extra_string,
9447 enum bptype type, enum bpdisp disposition,
9448 int thread, int task, int ignore_count,
9449 const struct breakpoint_ops *ops, int from_tty,
9450 int enabled, int internal, unsigned flags)
9451{
9452 int i;
9453 struct linespec_sals *lsal;
9454
9455 if (canonical->pre_expanded)
9456 gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1);
9457
9458 for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i)
9459 {
9460 /* Note that 'location' can be NULL in the case of a plain
9461 'break', without arguments. */
9462 struct event_location *location
9463 = (canonical->location != NULL
9464 ? copy_event_location (canonical->location) : NULL);
9465 char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL;
9466 struct cleanup *inner = make_cleanup_delete_event_location (location);
9467
9468 make_cleanup (xfree, filter_string);
9469 create_breakpoint_sal (gdbarch, lsal->sals,
9470 location,
9471 filter_string,
9472 cond_string, extra_string,
9473 type, disposition,
9474 thread, task, ignore_count, ops,
9475 from_tty, enabled, internal, flags,
9476 canonical->special_display);
9477 discard_cleanups (inner);
9478 }
9479}
9480
9481/* Parse LOCATION which is assumed to be a SAL specification possibly
9482 followed by conditionals. On return, SALS contains an array of SAL
9483 addresses found. LOCATION points to the end of the SAL (for
9484 linespec locations).
9485
9486 The array and the line spec strings are allocated on the heap, it is
9487 the caller's responsibility to free them. */
9488
9489static void
9490parse_breakpoint_sals (const struct event_location *location,
9491 struct linespec_result *canonical)
9492{
9493 struct symtab_and_line cursal;
9494
9495 if (event_location_type (location) == LINESPEC_LOCATION)
9496 {
9497 const char *address = get_linespec_location (location);
9498
9499 if (address == NULL)
9500 {
9501 /* The last displayed codepoint, if it's valid, is our default
9502 breakpoint address. */
9503 if (last_displayed_sal_is_valid ())
9504 {
9505 struct linespec_sals lsal;
9506 struct symtab_and_line sal;
9507 CORE_ADDR pc;
9508
9509 init_sal (&sal); /* Initialize to zeroes. */
9510 lsal.sals.sals = XNEW (struct symtab_and_line);
9511
9512 /* Set sal's pspace, pc, symtab, and line to the values
9513 corresponding to the last call to print_frame_info.
9514 Be sure to reinitialize LINE with NOTCURRENT == 0
9515 as the breakpoint line number is inappropriate otherwise.
9516 find_pc_line would adjust PC, re-set it back. */
9517 get_last_displayed_sal (&sal);
9518 pc = sal.pc;
9519 sal = find_pc_line (pc, 0);
9520
9521 /* "break" without arguments is equivalent to "break *PC"
9522 where PC is the last displayed codepoint's address. So
9523 make sure to set sal.explicit_pc to prevent GDB from
9524 trying to expand the list of sals to include all other
9525 instances with the same symtab and line. */
9526 sal.pc = pc;
9527 sal.explicit_pc = 1;
9528
9529 lsal.sals.sals[0] = sal;
9530 lsal.sals.nelts = 1;
9531 lsal.canonical = NULL;
9532
9533 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
9534 return;
9535 }
9536 else
9537 error (_("No default breakpoint address now."));
9538 }
9539 }
9540
9541 /* Force almost all breakpoints to be in terms of the
9542 current_source_symtab (which is decode_line_1's default).
9543 This should produce the results we want almost all of the
9544 time while leaving default_breakpoint_* alone.
9545
9546 ObjC: However, don't match an Objective-C method name which
9547 may have a '+' or '-' succeeded by a '['. */
9548 cursal = get_current_source_symtab_and_line ();
9549 if (last_displayed_sal_is_valid ())
9550 {
9551 const char *address = NULL;
9552
9553 if (event_location_type (location) == LINESPEC_LOCATION)
9554 address = get_linespec_location (location);
9555
9556 if (!cursal.symtab
9557 || (address != NULL
9558 && strchr ("+-", address[0]) != NULL
9559 && address[1] != '['))
9560 {
9561 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9562 get_last_displayed_symtab (),
9563 get_last_displayed_line (),
9564 canonical, NULL, NULL);
9565 return;
9566 }
9567 }
9568
9569 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9570 cursal.symtab, cursal.line, canonical, NULL, NULL);
9571}
9572
9573
9574/* Convert each SAL into a real PC. Verify that the PC can be
9575 inserted as a breakpoint. If it can't throw an error. */
9576
9577static void
9578breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
9579{
9580 int i;
9581
9582 for (i = 0; i < sals->nelts; i++)
9583 resolve_sal_pc (&sals->sals[i]);
9584}
9585
9586/* Fast tracepoints may have restrictions on valid locations. For
9587 instance, a fast tracepoint using a jump instead of a trap will
9588 likely have to overwrite more bytes than a trap would, and so can
9589 only be placed where the instruction is longer than the jump, or a
9590 multi-instruction sequence does not have a jump into the middle of
9591 it, etc. */
9592
9593static void
9594check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9595 struct symtabs_and_lines *sals)
9596{
9597 int i, rslt;
9598 struct symtab_and_line *sal;
9599 char *msg;
9600 struct cleanup *old_chain;
9601
9602 for (i = 0; i < sals->nelts; i++)
9603 {
9604 struct gdbarch *sarch;
9605
9606 sal = &sals->sals[i];
9607
9608 sarch = get_sal_arch (*sal);
9609 /* We fall back to GDBARCH if there is no architecture
9610 associated with SAL. */
9611 if (sarch == NULL)
9612 sarch = gdbarch;
9613 rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, &msg);
9614 old_chain = make_cleanup (xfree, msg);
9615
9616 if (!rslt)
9617 error (_("May not have a fast tracepoint at 0x%s%s"),
9618 paddress (sarch, sal->pc), (msg ? msg : ""));
9619
9620 do_cleanups (old_chain);
9621 }
9622}
9623
9624/* Given TOK, a string specification of condition and thread, as
9625 accepted by the 'break' command, extract the condition
9626 string and thread number and set *COND_STRING and *THREAD.
9627 PC identifies the context at which the condition should be parsed.
9628 If no condition is found, *COND_STRING is set to NULL.
9629 If no thread is found, *THREAD is set to -1. */
9630
9631static void
9632find_condition_and_thread (const char *tok, CORE_ADDR pc,
9633 char **cond_string, int *thread, int *task,
9634 char **rest)
9635{
9636 *cond_string = NULL;
9637 *thread = -1;
9638 *task = 0;
9639 *rest = NULL;
9640
9641 while (tok && *tok)
9642 {
9643 const char *end_tok;
9644 int toklen;
9645 const char *cond_start = NULL;
9646 const char *cond_end = NULL;
9647
9648 tok = skip_spaces_const (tok);
9649
9650 if ((*tok == '"' || *tok == ',') && rest)
9651 {
9652 *rest = savestring (tok, strlen (tok));
9653 return;
9654 }
9655
9656 end_tok = skip_to_space_const (tok);
9657
9658 toklen = end_tok - tok;
9659
9660 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9661 {
9662 struct expression *expr;
9663
9664 tok = cond_start = end_tok + 1;
9665 expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
9666 xfree (expr);
9667 cond_end = tok;
9668 *cond_string = savestring (cond_start, cond_end - cond_start);
9669 }
9670 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9671 {
9672 const char *tmptok;
9673 struct thread_info *thr;
9674
9675 tok = end_tok + 1;
9676 thr = parse_thread_id (tok, &tmptok);
9677 if (tok == tmptok)
9678 error (_("Junk after thread keyword."));
9679 *thread = thr->global_num;
9680 tok = tmptok;
9681 }
9682 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9683 {
9684 char *tmptok;
9685
9686 tok = end_tok + 1;
9687 *task = strtol (tok, &tmptok, 0);
9688 if (tok == tmptok)
9689 error (_("Junk after task keyword."));
9690 if (!valid_task_id (*task))
9691 error (_("Unknown task %d."), *task);
9692 tok = tmptok;
9693 }
9694 else if (rest)
9695 {
9696 *rest = savestring (tok, strlen (tok));
9697 return;
9698 }
9699 else
9700 error (_("Junk at end of arguments."));
9701 }
9702}
9703
9704/* Decode a static tracepoint marker spec. */
9705
9706static struct symtabs_and_lines
9707decode_static_tracepoint_spec (const char **arg_p)
9708{
9709 VEC(static_tracepoint_marker_p) *markers = NULL;
9710 struct symtabs_and_lines sals;
9711 struct cleanup *old_chain;
9712 const char *p = &(*arg_p)[3];
9713 const char *endp;
9714 char *marker_str;
9715 int i;
9716
9717 p = skip_spaces_const (p);
9718
9719 endp = skip_to_space_const (p);
9720
9721 marker_str = savestring (p, endp - p);
9722 old_chain = make_cleanup (xfree, marker_str);
9723
9724 markers = target_static_tracepoint_markers_by_strid (marker_str);
9725 if (VEC_empty(static_tracepoint_marker_p, markers))
9726 error (_("No known static tracepoint marker named %s"), marker_str);
9727
9728 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
9729 sals.sals = XNEWVEC (struct symtab_and_line, sals.nelts);
9730
9731 for (i = 0; i < sals.nelts; i++)
9732 {
9733 struct static_tracepoint_marker *marker;
9734
9735 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9736
9737 init_sal (&sals.sals[i]);
9738
9739 sals.sals[i] = find_pc_line (marker->address, 0);
9740 sals.sals[i].pc = marker->address;
9741
9742 release_static_tracepoint_marker (marker);
9743 }
9744
9745 do_cleanups (old_chain);
9746
9747 *arg_p = endp;
9748 return sals;
9749}
9750
9751/* See breakpoint.h. */
9752
9753int
9754create_breakpoint (struct gdbarch *gdbarch,
9755 const struct event_location *location, char *cond_string,
9756 int thread, char *extra_string,
9757 int parse_extra,
9758 int tempflag, enum bptype type_wanted,
9759 int ignore_count,
9760 enum auto_boolean pending_break_support,
9761 const struct breakpoint_ops *ops,
9762 int from_tty, int enabled, int internal,
9763 unsigned flags)
9764{
9765 struct linespec_result canonical;
9766 struct cleanup *old_chain;
9767 struct cleanup *bkpt_chain = NULL;
9768 int pending = 0;
9769 int task = 0;
9770 int prev_bkpt_count = breakpoint_count;
9771
9772 gdb_assert (ops != NULL);
9773
9774 /* If extra_string isn't useful, set it to NULL. */
9775 if (extra_string != NULL && *extra_string == '\0')
9776 extra_string = NULL;
9777
9778 init_linespec_result (&canonical);
9779
9780 TRY
9781 {
9782 ops->create_sals_from_location (location, &canonical, type_wanted);
9783 }
9784 CATCH (e, RETURN_MASK_ERROR)
9785 {
9786 /* If caller is interested in rc value from parse, set
9787 value. */
9788 if (e.error == NOT_FOUND_ERROR)
9789 {
9790 /* If pending breakpoint support is turned off, throw
9791 error. */
9792
9793 if (pending_break_support == AUTO_BOOLEAN_FALSE)
9794 throw_exception (e);
9795
9796 exception_print (gdb_stderr, e);
9797
9798 /* If pending breakpoint support is auto query and the user
9799 selects no, then simply return the error code. */
9800 if (pending_break_support == AUTO_BOOLEAN_AUTO
9801 && !nquery (_("Make %s pending on future shared library load? "),
9802 bptype_string (type_wanted)))
9803 return 0;
9804
9805 /* At this point, either the user was queried about setting
9806 a pending breakpoint and selected yes, or pending
9807 breakpoint behavior is on and thus a pending breakpoint
9808 is defaulted on behalf of the user. */
9809 pending = 1;
9810 }
9811 else
9812 throw_exception (e);
9813 }
9814 END_CATCH
9815
9816 if (!pending && VEC_empty (linespec_sals, canonical.sals))
9817 return 0;
9818
9819 /* Create a chain of things that always need to be cleaned up. */
9820 old_chain = make_cleanup_destroy_linespec_result (&canonical);
9821
9822 /* ----------------------------- SNIP -----------------------------
9823 Anything added to the cleanup chain beyond this point is assumed
9824 to be part of a breakpoint. If the breakpoint create succeeds
9825 then the memory is not reclaimed. */
9826 bkpt_chain = make_cleanup (null_cleanup, 0);
9827
9828 /* Resolve all line numbers to PC's and verify that the addresses
9829 are ok for the target. */
9830 if (!pending)
9831 {
9832 int ix;
9833 struct linespec_sals *iter;
9834
9835 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9836 breakpoint_sals_to_pc (&iter->sals);
9837 }
9838
9839 /* Fast tracepoints may have additional restrictions on location. */
9840 if (!pending && type_wanted == bp_fast_tracepoint)
9841 {
9842 int ix;
9843 struct linespec_sals *iter;
9844
9845 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9846 check_fast_tracepoint_sals (gdbarch, &iter->sals);
9847 }
9848
9849 /* Verify that condition can be parsed, before setting any
9850 breakpoints. Allocate a separate condition expression for each
9851 breakpoint. */
9852 if (!pending)
9853 {
9854 if (parse_extra)
9855 {
9856 char *rest;
9857 struct linespec_sals *lsal;
9858
9859 lsal = VEC_index (linespec_sals, canonical.sals, 0);
9860
9861 /* Here we only parse 'arg' to separate condition
9862 from thread number, so parsing in context of first
9863 sal is OK. When setting the breakpoint we'll
9864 re-parse it in context of each sal. */
9865
9866 find_condition_and_thread (extra_string, lsal->sals.sals[0].pc,
9867 &cond_string, &thread, &task, &rest);
9868 if (cond_string)
9869 make_cleanup (xfree, cond_string);
9870 if (rest)
9871 make_cleanup (xfree, rest);
9872 if (rest)
9873 extra_string = rest;
9874 else
9875 extra_string = NULL;
9876 }
9877 else
9878 {
9879 if (type_wanted != bp_dprintf
9880 && extra_string != NULL && *extra_string != '\0')
9881 error (_("Garbage '%s' at end of location"), extra_string);
9882
9883 /* Create a private copy of condition string. */
9884 if (cond_string)
9885 {
9886 cond_string = xstrdup (cond_string);
9887 make_cleanup (xfree, cond_string);
9888 }
9889 /* Create a private copy of any extra string. */
9890 if (extra_string)
9891 {
9892 extra_string = xstrdup (extra_string);
9893 make_cleanup (xfree, extra_string);
9894 }
9895 }
9896
9897 ops->create_breakpoints_sal (gdbarch, &canonical,
9898 cond_string, extra_string, type_wanted,
9899 tempflag ? disp_del : disp_donttouch,
9900 thread, task, ignore_count, ops,
9901 from_tty, enabled, internal, flags);
9902 }
9903 else
9904 {
9905 struct breakpoint *b;
9906
9907 if (is_tracepoint_type (type_wanted))
9908 {
9909 struct tracepoint *t;
9910
9911 t = XCNEW (struct tracepoint);
9912 b = &t->base;
9913 }
9914 else
9915 b = XNEW (struct breakpoint);
9916
9917 init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops);
9918 b->location = copy_event_location (location);
9919
9920 if (parse_extra)
9921 b->cond_string = NULL;
9922 else
9923 {
9924 /* Create a private copy of condition string. */
9925 if (cond_string)
9926 {
9927 cond_string = xstrdup (cond_string);
9928 make_cleanup (xfree, cond_string);
9929 }
9930 b->cond_string = cond_string;
9931 b->thread = thread;
9932 }
9933
9934 /* Create a private copy of any extra string. */
9935 if (extra_string != NULL)
9936 {
9937 extra_string = xstrdup (extra_string);
9938 make_cleanup (xfree, extra_string);
9939 }
9940 b->extra_string = extra_string;
9941 b->ignore_count = ignore_count;
9942 b->disposition = tempflag ? disp_del : disp_donttouch;
9943 b->condition_not_parsed = 1;
9944 b->enable_state = enabled ? bp_enabled : bp_disabled;
9945 if ((type_wanted != bp_breakpoint
9946 && type_wanted != bp_hardware_breakpoint) || thread != -1)
9947 b->pspace = current_program_space;
9948
9949 install_breakpoint (internal, b, 0);
9950 }
9951
9952 if (VEC_length (linespec_sals, canonical.sals) > 1)
9953 {
9954 warning (_("Multiple breakpoints were set.\nUse the "
9955 "\"delete\" command to delete unwanted breakpoints."));
9956 prev_breakpoint_count = prev_bkpt_count;
9957 }
9958
9959 /* That's it. Discard the cleanups for data inserted into the
9960 breakpoint. */
9961 discard_cleanups (bkpt_chain);
9962 /* But cleanup everything else. */
9963 do_cleanups (old_chain);
9964
9965 /* error call may happen here - have BKPT_CHAIN already discarded. */
9966 update_global_location_list (UGLL_MAY_INSERT);
9967
9968 return 1;
9969}
9970
9971/* Set a breakpoint.
9972 ARG is a string describing breakpoint address,
9973 condition, and thread.
9974 FLAG specifies if a breakpoint is hardware on,
9975 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9976 and BP_TEMPFLAG. */
9977
9978static void
9979break_command_1 (char *arg, int flag, int from_tty)
9980{
9981 int tempflag = flag & BP_TEMPFLAG;
9982 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9983 ? bp_hardware_breakpoint
9984 : bp_breakpoint);
9985 struct breakpoint_ops *ops;
9986 struct event_location *location;
9987 struct cleanup *cleanup;
9988
9989 location = string_to_event_location (&arg, current_language);
9990 cleanup = make_cleanup_delete_event_location (location);
9991
9992 /* Matching breakpoints on probes. */
9993 if (location != NULL
9994 && event_location_type (location) == PROBE_LOCATION)
9995 ops = &bkpt_probe_breakpoint_ops;
9996 else
9997 ops = &bkpt_breakpoint_ops;
9998
9999 create_breakpoint (get_current_arch (),
10000 location,
10001 NULL, 0, arg, 1 /* parse arg */,
10002 tempflag, type_wanted,
10003 0 /* Ignore count */,
10004 pending_break_support,
10005 ops,
10006 from_tty,
10007 1 /* enabled */,
10008 0 /* internal */,
10009 0);
10010 do_cleanups (cleanup);
10011}
10012
10013/* Helper function for break_command_1 and disassemble_command. */
10014
10015void
10016resolve_sal_pc (struct symtab_and_line *sal)
10017{
10018 CORE_ADDR pc;
10019
10020 if (sal->pc == 0 && sal->symtab != NULL)
10021 {
10022 if (!find_line_pc (sal->symtab, sal->line, &pc))
10023 error (_("No line %d in file \"%s\"."),
10024 sal->line, symtab_to_filename_for_display (sal->symtab));
10025 sal->pc = pc;
10026
10027 /* If this SAL corresponds to a breakpoint inserted using a line
10028 number, then skip the function prologue if necessary. */
10029 if (sal->explicit_line)
10030 skip_prologue_sal (sal);
10031 }
10032
10033 if (sal->section == 0 && sal->symtab != NULL)
10034 {
10035 const struct blockvector *bv;
10036 const struct block *b;
10037 struct symbol *sym;
10038
10039 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
10040 SYMTAB_COMPUNIT (sal->symtab));
10041 if (bv != NULL)
10042 {
10043 sym = block_linkage_function (b);
10044 if (sym != NULL)
10045 {
10046 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
10047 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
10048 sym);
10049 }
10050 else
10051 {
10052 /* It really is worthwhile to have the section, so we'll
10053 just have to look harder. This case can be executed
10054 if we have line numbers but no functions (as can
10055 happen in assembly source). */
10056
10057 struct bound_minimal_symbol msym;
10058 struct cleanup *old_chain = save_current_space_and_thread ();
10059
10060 switch_to_program_space_and_thread (sal->pspace);
10061
10062 msym = lookup_minimal_symbol_by_pc (sal->pc);
10063 if (msym.minsym)
10064 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
10065
10066 do_cleanups (old_chain);
10067 }
10068 }
10069 }
10070}
10071
10072void
10073break_command (char *arg, int from_tty)
10074{
10075 break_command_1 (arg, 0, from_tty);
10076}
10077
10078void
10079tbreak_command (char *arg, int from_tty)
10080{
10081 break_command_1 (arg, BP_TEMPFLAG, from_tty);
10082}
10083
10084static void
10085hbreak_command (char *arg, int from_tty)
10086{
10087 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
10088}
10089
10090static void
10091thbreak_command (char *arg, int from_tty)
10092{
10093 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
10094}
10095
10096static void
10097stop_command (char *arg, int from_tty)
10098{
10099 printf_filtered (_("Specify the type of breakpoint to set.\n\
10100Usage: stop in <function | address>\n\
10101 stop at <line>\n"));
10102}
10103
10104static void
10105stopin_command (char *arg, int from_tty)
10106{
10107 int badInput = 0;
10108
10109 if (arg == (char *) NULL)
10110 badInput = 1;
10111 else if (*arg != '*')
10112 {
10113 char *argptr = arg;
10114 int hasColon = 0;
10115
10116 /* Look for a ':'. If this is a line number specification, then
10117 say it is bad, otherwise, it should be an address or
10118 function/method name. */
10119 while (*argptr && !hasColon)
10120 {
10121 hasColon = (*argptr == ':');
10122 argptr++;
10123 }
10124
10125 if (hasColon)
10126 badInput = (*argptr != ':'); /* Not a class::method */
10127 else
10128 badInput = isdigit (*arg); /* a simple line number */
10129 }
10130
10131 if (badInput)
10132 printf_filtered (_("Usage: stop in <function | address>\n"));
10133 else
10134 break_command_1 (arg, 0, from_tty);
10135}
10136
10137static void
10138stopat_command (char *arg, int from_tty)
10139{
10140 int badInput = 0;
10141
10142 if (arg == (char *) NULL || *arg == '*') /* no line number */
10143 badInput = 1;
10144 else
10145 {
10146 char *argptr = arg;
10147 int hasColon = 0;
10148
10149 /* Look for a ':'. If there is a '::' then get out, otherwise
10150 it is probably a line number. */
10151 while (*argptr && !hasColon)
10152 {
10153 hasColon = (*argptr == ':');
10154 argptr++;
10155 }
10156
10157 if (hasColon)
10158 badInput = (*argptr == ':'); /* we have class::method */
10159 else
10160 badInput = !isdigit (*arg); /* not a line number */
10161 }
10162
10163 if (badInput)
10164 printf_filtered (_("Usage: stop at <line>\n"));
10165 else
10166 break_command_1 (arg, 0, from_tty);
10167}
10168
10169/* The dynamic printf command is mostly like a regular breakpoint, but
10170 with a prewired command list consisting of a single output command,
10171 built from extra arguments supplied on the dprintf command
10172 line. */
10173
10174static void
10175dprintf_command (char *arg, int from_tty)
10176{
10177 struct event_location *location;
10178 struct cleanup *cleanup;
10179
10180 location = string_to_event_location (&arg, current_language);
10181 cleanup = make_cleanup_delete_event_location (location);
10182
10183 /* If non-NULL, ARG should have been advanced past the location;
10184 the next character must be ','. */
10185 if (arg != NULL)
10186 {
10187 if (arg[0] != ',' || arg[1] == '\0')
10188 error (_("Format string required"));
10189 else
10190 {
10191 /* Skip the comma. */
10192 ++arg;
10193 }
10194 }
10195
10196 create_breakpoint (get_current_arch (),
10197 location,
10198 NULL, 0, arg, 1 /* parse arg */,
10199 0, bp_dprintf,
10200 0 /* Ignore count */,
10201 pending_break_support,
10202 &dprintf_breakpoint_ops,
10203 from_tty,
10204 1 /* enabled */,
10205 0 /* internal */,
10206 0);
10207 do_cleanups (cleanup);
10208}
10209
10210static void
10211agent_printf_command (char *arg, int from_tty)
10212{
10213 error (_("May only run agent-printf on the target"));
10214}
10215
10216/* Implement the "breakpoint_hit" breakpoint_ops method for
10217 ranged breakpoints. */
10218
10219static int
10220breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
10221 struct address_space *aspace,
10222 CORE_ADDR bp_addr,
10223 const struct target_waitstatus *ws)
10224{
10225 if (ws->kind != TARGET_WAITKIND_STOPPED
10226 || ws->value.sig != GDB_SIGNAL_TRAP)
10227 return 0;
10228
10229 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
10230 bl->length, aspace, bp_addr);
10231}
10232
10233/* Implement the "resources_needed" breakpoint_ops method for
10234 ranged breakpoints. */
10235
10236static int
10237resources_needed_ranged_breakpoint (const struct bp_location *bl)
10238{
10239 return target_ranged_break_num_registers ();
10240}
10241
10242/* Implement the "print_it" breakpoint_ops method for
10243 ranged breakpoints. */
10244
10245static enum print_stop_action
10246print_it_ranged_breakpoint (bpstat bs)
10247{
10248 struct breakpoint *b = bs->breakpoint_at;
10249 struct bp_location *bl = b->loc;
10250 struct ui_out *uiout = current_uiout;
10251
10252 gdb_assert (b->type == bp_hardware_breakpoint);
10253
10254 /* Ranged breakpoints have only one location. */
10255 gdb_assert (bl && bl->next == NULL);
10256
10257 annotate_breakpoint (b->number);
10258
10259 maybe_print_thread_hit_breakpoint (uiout);
10260
10261 if (b->disposition == disp_del)
10262 ui_out_text (uiout, "Temporary ranged breakpoint ");
10263 else
10264 ui_out_text (uiout, "Ranged breakpoint ");
10265 if (ui_out_is_mi_like_p (uiout))
10266 {
10267 ui_out_field_string (uiout, "reason",
10268 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
10269 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
10270 }
10271 ui_out_field_int (uiout, "bkptno", b->number);
10272 ui_out_text (uiout, ", ");
10273
10274 return PRINT_SRC_AND_LOC;
10275}
10276
10277/* Implement the "print_one" breakpoint_ops method for
10278 ranged breakpoints. */
10279
10280static void
10281print_one_ranged_breakpoint (struct breakpoint *b,
10282 struct bp_location **last_loc)
10283{
10284 struct bp_location *bl = b->loc;
10285 struct value_print_options opts;
10286 struct ui_out *uiout = current_uiout;
10287
10288 /* Ranged breakpoints have only one location. */
10289 gdb_assert (bl && bl->next == NULL);
10290
10291 get_user_print_options (&opts);
10292
10293 if (opts.addressprint)
10294 /* We don't print the address range here, it will be printed later
10295 by print_one_detail_ranged_breakpoint. */
10296 ui_out_field_skip (uiout, "addr");
10297 annotate_field (5);
10298 print_breakpoint_location (b, bl);
10299 *last_loc = bl;
10300}
10301
10302/* Implement the "print_one_detail" breakpoint_ops method for
10303 ranged breakpoints. */
10304
10305static void
10306print_one_detail_ranged_breakpoint (const struct breakpoint *b,
10307 struct ui_out *uiout)
10308{
10309 CORE_ADDR address_start, address_end;
10310 struct bp_location *bl = b->loc;
10311 struct ui_file *stb = mem_fileopen ();
10312 struct cleanup *cleanup = make_cleanup_ui_file_delete (stb);
10313
10314 gdb_assert (bl);
10315
10316 address_start = bl->address;
10317 address_end = address_start + bl->length - 1;
10318
10319 ui_out_text (uiout, "\taddress range: ");
10320 fprintf_unfiltered (stb, "[%s, %s]",
10321 print_core_address (bl->gdbarch, address_start),
10322 print_core_address (bl->gdbarch, address_end));
10323 ui_out_field_stream (uiout, "addr", stb);
10324 ui_out_text (uiout, "\n");
10325
10326 do_cleanups (cleanup);
10327}
10328
10329/* Implement the "print_mention" breakpoint_ops method for
10330 ranged breakpoints. */
10331
10332static void
10333print_mention_ranged_breakpoint (struct breakpoint *b)
10334{
10335 struct bp_location *bl = b->loc;
10336 struct ui_out *uiout = current_uiout;
10337
10338 gdb_assert (bl);
10339 gdb_assert (b->type == bp_hardware_breakpoint);
10340
10341 if (ui_out_is_mi_like_p (uiout))
10342 return;
10343
10344 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
10345 b->number, paddress (bl->gdbarch, bl->address),
10346 paddress (bl->gdbarch, bl->address + bl->length - 1));
10347}
10348
10349/* Implement the "print_recreate" breakpoint_ops method for
10350 ranged breakpoints. */
10351
10352static void
10353print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
10354{
10355 fprintf_unfiltered (fp, "break-range %s, %s",
10356 event_location_to_string (b->location),
10357 event_location_to_string (b->location_range_end));
10358 print_recreate_thread (b, fp);
10359}
10360
10361/* The breakpoint_ops structure to be used in ranged breakpoints. */
10362
10363static struct breakpoint_ops ranged_breakpoint_ops;
10364
10365/* Find the address where the end of the breakpoint range should be
10366 placed, given the SAL of the end of the range. This is so that if
10367 the user provides a line number, the end of the range is set to the
10368 last instruction of the given line. */
10369
10370static CORE_ADDR
10371find_breakpoint_range_end (struct symtab_and_line sal)
10372{
10373 CORE_ADDR end;
10374
10375 /* If the user provided a PC value, use it. Otherwise,
10376 find the address of the end of the given location. */
10377 if (sal.explicit_pc)
10378 end = sal.pc;
10379 else
10380 {
10381 int ret;
10382 CORE_ADDR start;
10383
10384 ret = find_line_pc_range (sal, &start, &end);
10385 if (!ret)
10386 error (_("Could not find location of the end of the range."));
10387
10388 /* find_line_pc_range returns the start of the next line. */
10389 end--;
10390 }
10391
10392 return end;
10393}
10394
10395/* Implement the "break-range" CLI command. */
10396
10397static void
10398break_range_command (char *arg, int from_tty)
10399{
10400 char *arg_start, *addr_string_start, *addr_string_end;
10401 struct linespec_result canonical_start, canonical_end;
10402 int bp_count, can_use_bp, length;
10403 CORE_ADDR end;
10404 struct breakpoint *b;
10405 struct symtab_and_line sal_start, sal_end;
10406 struct cleanup *cleanup_bkpt;
10407 struct linespec_sals *lsal_start, *lsal_end;
10408 struct event_location *start_location, *end_location;
10409
10410 /* We don't support software ranged breakpoints. */
10411 if (target_ranged_break_num_registers () < 0)
10412 error (_("This target does not support hardware ranged breakpoints."));
10413
10414 bp_count = hw_breakpoint_used_count ();
10415 bp_count += target_ranged_break_num_registers ();
10416 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
10417 bp_count, 0);
10418 if (can_use_bp < 0)
10419 error (_("Hardware breakpoints used exceeds limit."));
10420
10421 arg = skip_spaces (arg);
10422 if (arg == NULL || arg[0] == '\0')
10423 error(_("No address range specified."));
10424
10425 init_linespec_result (&canonical_start);
10426
10427 arg_start = arg;
10428 start_location = string_to_event_location (&arg, current_language);
10429 cleanup_bkpt = make_cleanup_delete_event_location (start_location);
10430 parse_breakpoint_sals (start_location, &canonical_start);
10431 make_cleanup_destroy_linespec_result (&canonical_start);
10432
10433 if (arg[0] != ',')
10434 error (_("Too few arguments."));
10435 else if (VEC_empty (linespec_sals, canonical_start.sals))
10436 error (_("Could not find location of the beginning of the range."));
10437
10438 lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0);
10439
10440 if (VEC_length (linespec_sals, canonical_start.sals) > 1
10441 || lsal_start->sals.nelts != 1)
10442 error (_("Cannot create a ranged breakpoint with multiple locations."));
10443
10444 sal_start = lsal_start->sals.sals[0];
10445 addr_string_start = savestring (arg_start, arg - arg_start);
10446 make_cleanup (xfree, addr_string_start);
10447
10448 arg++; /* Skip the comma. */
10449 arg = skip_spaces (arg);
10450
10451 /* Parse the end location. */
10452
10453 init_linespec_result (&canonical_end);
10454 arg_start = arg;
10455
10456 /* We call decode_line_full directly here instead of using
10457 parse_breakpoint_sals because we need to specify the start location's
10458 symtab and line as the default symtab and line for the end of the
10459 range. This makes it possible to have ranges like "foo.c:27, +14",
10460 where +14 means 14 lines from the start location. */
10461 end_location = string_to_event_location (&arg, current_language);
10462 make_cleanup_delete_event_location (end_location);
10463 decode_line_full (end_location, DECODE_LINE_FUNFIRSTLINE, NULL,
10464 sal_start.symtab, sal_start.line,
10465 &canonical_end, NULL, NULL);
10466
10467 make_cleanup_destroy_linespec_result (&canonical_end);
10468
10469 if (VEC_empty (linespec_sals, canonical_end.sals))
10470 error (_("Could not find location of the end of the range."));
10471
10472 lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0);
10473 if (VEC_length (linespec_sals, canonical_end.sals) > 1
10474 || lsal_end->sals.nelts != 1)
10475 error (_("Cannot create a ranged breakpoint with multiple locations."));
10476
10477 sal_end = lsal_end->sals.sals[0];
10478
10479 end = find_breakpoint_range_end (sal_end);
10480 if (sal_start.pc > end)
10481 error (_("Invalid address range, end precedes start."));
10482
10483 length = end - sal_start.pc + 1;
10484 if (length < 0)
10485 /* Length overflowed. */
10486 error (_("Address range too large."));
10487 else if (length == 1)
10488 {
10489 /* This range is simple enough to be handled by
10490 the `hbreak' command. */
10491 hbreak_command (addr_string_start, 1);
10492
10493 do_cleanups (cleanup_bkpt);
10494
10495 return;
10496 }
10497
10498 /* Now set up the breakpoint. */
10499 b = set_raw_breakpoint (get_current_arch (), sal_start,
10500 bp_hardware_breakpoint, &ranged_breakpoint_ops);
10501 set_breakpoint_count (breakpoint_count + 1);
10502 b->number = breakpoint_count;
10503 b->disposition = disp_donttouch;
10504 b->location = copy_event_location (start_location);
10505 b->location_range_end = copy_event_location (end_location);
10506 b->loc->length = length;
10507
10508 do_cleanups (cleanup_bkpt);
10509
10510 mention (b);
10511 observer_notify_breakpoint_created (b);
10512 update_global_location_list (UGLL_MAY_INSERT);
10513}
10514
10515/* Return non-zero if EXP is verified as constant. Returned zero
10516 means EXP is variable. Also the constant detection may fail for
10517 some constant expressions and in such case still falsely return
10518 zero. */
10519
10520static int
10521watchpoint_exp_is_const (const struct expression *exp)
10522{
10523 int i = exp->nelts;
10524
10525 while (i > 0)
10526 {
10527 int oplenp, argsp;
10528
10529 /* We are only interested in the descriptor of each element. */
10530 operator_length (exp, i, &oplenp, &argsp);
10531 i -= oplenp;
10532
10533 switch (exp->elts[i].opcode)
10534 {
10535 case BINOP_ADD:
10536 case BINOP_SUB:
10537 case BINOP_MUL:
10538 case BINOP_DIV:
10539 case BINOP_REM:
10540 case BINOP_MOD:
10541 case BINOP_LSH:
10542 case BINOP_RSH:
10543 case BINOP_LOGICAL_AND:
10544 case BINOP_LOGICAL_OR:
10545 case BINOP_BITWISE_AND:
10546 case BINOP_BITWISE_IOR:
10547 case BINOP_BITWISE_XOR:
10548 case BINOP_EQUAL:
10549 case BINOP_NOTEQUAL:
10550 case BINOP_LESS:
10551 case BINOP_GTR:
10552 case BINOP_LEQ:
10553 case BINOP_GEQ:
10554 case BINOP_REPEAT:
10555 case BINOP_COMMA:
10556 case BINOP_EXP:
10557 case BINOP_MIN:
10558 case BINOP_MAX:
10559 case BINOP_INTDIV:
10560 case BINOP_CONCAT:
10561 case TERNOP_COND:
10562 case TERNOP_SLICE:
10563
10564 case OP_LONG:
10565 case OP_DOUBLE:
10566 case OP_DECFLOAT:
10567 case OP_LAST:
10568 case OP_COMPLEX:
10569 case OP_STRING:
10570 case OP_ARRAY:
10571 case OP_TYPE:
10572 case OP_TYPEOF:
10573 case OP_DECLTYPE:
10574 case OP_TYPEID:
10575 case OP_NAME:
10576 case OP_OBJC_NSSTRING:
10577
10578 case UNOP_NEG:
10579 case UNOP_LOGICAL_NOT:
10580 case UNOP_COMPLEMENT:
10581 case UNOP_ADDR:
10582 case UNOP_HIGH:
10583 case UNOP_CAST:
10584
10585 case UNOP_CAST_TYPE:
10586 case UNOP_REINTERPRET_CAST:
10587 case UNOP_DYNAMIC_CAST:
10588 /* Unary, binary and ternary operators: We have to check
10589 their operands. If they are constant, then so is the
10590 result of that operation. For instance, if A and B are
10591 determined to be constants, then so is "A + B".
10592
10593 UNOP_IND is one exception to the rule above, because the
10594 value of *ADDR is not necessarily a constant, even when
10595 ADDR is. */
10596 break;
10597
10598 case OP_VAR_VALUE:
10599 /* Check whether the associated symbol is a constant.
10600
10601 We use SYMBOL_CLASS rather than TYPE_CONST because it's
10602 possible that a buggy compiler could mark a variable as
10603 constant even when it is not, and TYPE_CONST would return
10604 true in this case, while SYMBOL_CLASS wouldn't.
10605
10606 We also have to check for function symbols because they
10607 are always constant. */
10608 {
10609 struct symbol *s = exp->elts[i + 2].symbol;
10610
10611 if (SYMBOL_CLASS (s) != LOC_BLOCK
10612 && SYMBOL_CLASS (s) != LOC_CONST
10613 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10614 return 0;
10615 break;
10616 }
10617
10618 /* The default action is to return 0 because we are using
10619 the optimistic approach here: If we don't know something,
10620 then it is not a constant. */
10621 default:
10622 return 0;
10623 }
10624 }
10625
10626 return 1;
10627}
10628
10629/* Implement the "dtor" breakpoint_ops method for watchpoints. */
10630
10631static void
10632dtor_watchpoint (struct breakpoint *self)
10633{
10634 struct watchpoint *w = (struct watchpoint *) self;
10635
10636 xfree (w->cond_exp);
10637 xfree (w->exp);
10638 xfree (w->exp_string);
10639 xfree (w->exp_string_reparse);
10640 value_free (w->val);
10641
10642 base_breakpoint_ops.dtor (self);
10643}
10644
10645/* Implement the "re_set" breakpoint_ops method for watchpoints. */
10646
10647static void
10648re_set_watchpoint (struct breakpoint *b)
10649{
10650 struct watchpoint *w = (struct watchpoint *) b;
10651
10652 /* Watchpoint can be either on expression using entirely global
10653 variables, or it can be on local variables.
10654
10655 Watchpoints of the first kind are never auto-deleted, and even
10656 persist across program restarts. Since they can use variables
10657 from shared libraries, we need to reparse expression as libraries
10658 are loaded and unloaded.
10659
10660 Watchpoints on local variables can also change meaning as result
10661 of solib event. For example, if a watchpoint uses both a local
10662 and a global variables in expression, it's a local watchpoint,
10663 but unloading of a shared library will make the expression
10664 invalid. This is not a very common use case, but we still
10665 re-evaluate expression, to avoid surprises to the user.
10666
10667 Note that for local watchpoints, we re-evaluate it only if
10668 watchpoints frame id is still valid. If it's not, it means the
10669 watchpoint is out of scope and will be deleted soon. In fact,
10670 I'm not sure we'll ever be called in this case.
10671
10672 If a local watchpoint's frame id is still valid, then
10673 w->exp_valid_block is likewise valid, and we can safely use it.
10674
10675 Don't do anything about disabled watchpoints, since they will be
10676 reevaluated again when enabled. */
10677 update_watchpoint (w, 1 /* reparse */);
10678}
10679
10680/* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10681
10682static int
10683insert_watchpoint (struct bp_location *bl)
10684{
10685 struct watchpoint *w = (struct watchpoint *) bl->owner;
10686 int length = w->exact ? 1 : bl->length;
10687
10688 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
10689 w->cond_exp);
10690}
10691
10692/* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10693
10694static int
10695remove_watchpoint (struct bp_location *bl)
10696{
10697 struct watchpoint *w = (struct watchpoint *) bl->owner;
10698 int length = w->exact ? 1 : bl->length;
10699
10700 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
10701 w->cond_exp);
10702}
10703
10704static int
10705breakpoint_hit_watchpoint (const struct bp_location *bl,
10706 struct address_space *aspace, CORE_ADDR bp_addr,
10707 const struct target_waitstatus *ws)
10708{
10709 struct breakpoint *b = bl->owner;
10710 struct watchpoint *w = (struct watchpoint *) b;
10711
10712 /* Continuable hardware watchpoints are treated as non-existent if the
10713 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10714 some data address). Otherwise gdb won't stop on a break instruction
10715 in the code (not from a breakpoint) when a hardware watchpoint has
10716 been defined. Also skip watchpoints which we know did not trigger
10717 (did not match the data address). */
10718 if (is_hardware_watchpoint (b)
10719 && w->watchpoint_triggered == watch_triggered_no)
10720 return 0;
10721
10722 return 1;
10723}
10724
10725static void
10726check_status_watchpoint (bpstat bs)
10727{
10728 gdb_assert (is_watchpoint (bs->breakpoint_at));
10729
10730 bpstat_check_watchpoint (bs);
10731}
10732
10733/* Implement the "resources_needed" breakpoint_ops method for
10734 hardware watchpoints. */
10735
10736static int
10737resources_needed_watchpoint (const struct bp_location *bl)
10738{
10739 struct watchpoint *w = (struct watchpoint *) bl->owner;
10740 int length = w->exact? 1 : bl->length;
10741
10742 return target_region_ok_for_hw_watchpoint (bl->address, length);
10743}
10744
10745/* Implement the "works_in_software_mode" breakpoint_ops method for
10746 hardware watchpoints. */
10747
10748static int
10749works_in_software_mode_watchpoint (const struct breakpoint *b)
10750{
10751 /* Read and access watchpoints only work with hardware support. */
10752 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
10753}
10754
10755static enum print_stop_action
10756print_it_watchpoint (bpstat bs)
10757{
10758 struct cleanup *old_chain;
10759 struct breakpoint *b;
10760 struct ui_file *stb;
10761 enum print_stop_action result;
10762 struct watchpoint *w;
10763 struct ui_out *uiout = current_uiout;
10764
10765 gdb_assert (bs->bp_location_at != NULL);
10766
10767 b = bs->breakpoint_at;
10768 w = (struct watchpoint *) b;
10769
10770 stb = mem_fileopen ();
10771 old_chain = make_cleanup_ui_file_delete (stb);
10772
10773 annotate_watchpoint (b->number);
10774 maybe_print_thread_hit_breakpoint (uiout);
10775
10776 switch (b->type)
10777 {
10778 case bp_watchpoint:
10779 case bp_hardware_watchpoint:
10780 if (ui_out_is_mi_like_p (uiout))
10781 ui_out_field_string
10782 (uiout, "reason",
10783 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10784 mention (b);
10785 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10786 ui_out_text (uiout, "\nOld value = ");
10787 watchpoint_value_print (bs->old_val, stb);
10788 ui_out_field_stream (uiout, "old", stb);
10789 ui_out_text (uiout, "\nNew value = ");
10790 watchpoint_value_print (w->val, stb);
10791 ui_out_field_stream (uiout, "new", stb);
10792 ui_out_text (uiout, "\n");
10793 /* More than one watchpoint may have been triggered. */
10794 result = PRINT_UNKNOWN;
10795 break;
10796
10797 case bp_read_watchpoint:
10798 if (ui_out_is_mi_like_p (uiout))
10799 ui_out_field_string
10800 (uiout, "reason",
10801 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10802 mention (b);
10803 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10804 ui_out_text (uiout, "\nValue = ");
10805 watchpoint_value_print (w->val, stb);
10806 ui_out_field_stream (uiout, "value", stb);
10807 ui_out_text (uiout, "\n");
10808 result = PRINT_UNKNOWN;
10809 break;
10810
10811 case bp_access_watchpoint:
10812 if (bs->old_val != NULL)
10813 {
10814 if (ui_out_is_mi_like_p (uiout))
10815 ui_out_field_string
10816 (uiout, "reason",
10817 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10818 mention (b);
10819 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10820 ui_out_text (uiout, "\nOld value = ");
10821 watchpoint_value_print (bs->old_val, stb);
10822 ui_out_field_stream (uiout, "old", stb);
10823 ui_out_text (uiout, "\nNew value = ");
10824 }
10825 else
10826 {
10827 mention (b);
10828 if (ui_out_is_mi_like_p (uiout))
10829 ui_out_field_string
10830 (uiout, "reason",
10831 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10832 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10833 ui_out_text (uiout, "\nValue = ");
10834 }
10835 watchpoint_value_print (w->val, stb);
10836 ui_out_field_stream (uiout, "new", stb);
10837 ui_out_text (uiout, "\n");
10838 result = PRINT_UNKNOWN;
10839 break;
10840 default:
10841 result = PRINT_UNKNOWN;
10842 }
10843
10844 do_cleanups (old_chain);
10845 return result;
10846}
10847
10848/* Implement the "print_mention" breakpoint_ops method for hardware
10849 watchpoints. */
10850
10851static void
10852print_mention_watchpoint (struct breakpoint *b)
10853{
10854 struct cleanup *ui_out_chain;
10855 struct watchpoint *w = (struct watchpoint *) b;
10856 struct ui_out *uiout = current_uiout;
10857
10858 switch (b->type)
10859 {
10860 case bp_watchpoint:
10861 ui_out_text (uiout, "Watchpoint ");
10862 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10863 break;
10864 case bp_hardware_watchpoint:
10865 ui_out_text (uiout, "Hardware watchpoint ");
10866 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10867 break;
10868 case bp_read_watchpoint:
10869 ui_out_text (uiout, "Hardware read watchpoint ");
10870 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
10871 break;
10872 case bp_access_watchpoint:
10873 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
10874 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
10875 break;
10876 default:
10877 internal_error (__FILE__, __LINE__,
10878 _("Invalid hardware watchpoint type."));
10879 }
10880
10881 ui_out_field_int (uiout, "number", b->number);
10882 ui_out_text (uiout, ": ");
10883 ui_out_field_string (uiout, "exp", w->exp_string);
10884 do_cleanups (ui_out_chain);
10885}
10886
10887/* Implement the "print_recreate" breakpoint_ops method for
10888 watchpoints. */
10889
10890static void
10891print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10892{
10893 struct watchpoint *w = (struct watchpoint *) b;
10894
10895 switch (b->type)
10896 {
10897 case bp_watchpoint:
10898 case bp_hardware_watchpoint:
10899 fprintf_unfiltered (fp, "watch");
10900 break;
10901 case bp_read_watchpoint:
10902 fprintf_unfiltered (fp, "rwatch");
10903 break;
10904 case bp_access_watchpoint:
10905 fprintf_unfiltered (fp, "awatch");
10906 break;
10907 default:
10908 internal_error (__FILE__, __LINE__,
10909 _("Invalid watchpoint type."));
10910 }
10911
10912 fprintf_unfiltered (fp, " %s", w->exp_string);
10913 print_recreate_thread (b, fp);
10914}
10915
10916/* Implement the "explains_signal" breakpoint_ops method for
10917 watchpoints. */
10918
10919static int
10920explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10921{
10922 /* A software watchpoint cannot cause a signal other than
10923 GDB_SIGNAL_TRAP. */
10924 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
10925 return 0;
10926
10927 return 1;
10928}
10929
10930/* The breakpoint_ops structure to be used in hardware watchpoints. */
10931
10932static struct breakpoint_ops watchpoint_breakpoint_ops;
10933
10934/* Implement the "insert" breakpoint_ops method for
10935 masked hardware watchpoints. */
10936
10937static int
10938insert_masked_watchpoint (struct bp_location *bl)
10939{
10940 struct watchpoint *w = (struct watchpoint *) bl->owner;
10941
10942 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
10943 bl->watchpoint_type);
10944}
10945
10946/* Implement the "remove" breakpoint_ops method for
10947 masked hardware watchpoints. */
10948
10949static int
10950remove_masked_watchpoint (struct bp_location *bl)
10951{
10952 struct watchpoint *w = (struct watchpoint *) bl->owner;
10953
10954 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
10955 bl->watchpoint_type);
10956}
10957
10958/* Implement the "resources_needed" breakpoint_ops method for
10959 masked hardware watchpoints. */
10960
10961static int
10962resources_needed_masked_watchpoint (const struct bp_location *bl)
10963{
10964 struct watchpoint *w = (struct watchpoint *) bl->owner;
10965
10966 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
10967}
10968
10969/* Implement the "works_in_software_mode" breakpoint_ops method for
10970 masked hardware watchpoints. */
10971
10972static int
10973works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10974{
10975 return 0;
10976}
10977
10978/* Implement the "print_it" breakpoint_ops method for
10979 masked hardware watchpoints. */
10980
10981static enum print_stop_action
10982print_it_masked_watchpoint (bpstat bs)
10983{
10984 struct breakpoint *b = bs->breakpoint_at;
10985 struct ui_out *uiout = current_uiout;
10986
10987 /* Masked watchpoints have only one location. */
10988 gdb_assert (b->loc && b->loc->next == NULL);
10989
10990 annotate_watchpoint (b->number);
10991 maybe_print_thread_hit_breakpoint (uiout);
10992
10993 switch (b->type)
10994 {
10995 case bp_hardware_watchpoint:
10996 if (ui_out_is_mi_like_p (uiout))
10997 ui_out_field_string
10998 (uiout, "reason",
10999 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
11000 break;
11001
11002 case bp_read_watchpoint:
11003 if (ui_out_is_mi_like_p (uiout))
11004 ui_out_field_string
11005 (uiout, "reason",
11006 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
11007 break;
11008
11009 case bp_access_watchpoint:
11010 if (ui_out_is_mi_like_p (uiout))
11011 ui_out_field_string
11012 (uiout, "reason",
11013 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
11014 break;
11015 default:
11016 internal_error (__FILE__, __LINE__,
11017 _("Invalid hardware watchpoint type."));
11018 }
11019
11020 mention (b);
11021 ui_out_text (uiout, _("\n\
11022Check the underlying instruction at PC for the memory\n\
11023address and value which triggered this watchpoint.\n"));
11024 ui_out_text (uiout, "\n");
11025
11026 /* More than one watchpoint may have been triggered. */
11027 return PRINT_UNKNOWN;
11028}
11029
11030/* Implement the "print_one_detail" breakpoint_ops method for
11031 masked hardware watchpoints. */
11032
11033static void
11034print_one_detail_masked_watchpoint (const struct breakpoint *b,
11035 struct ui_out *uiout)
11036{
11037 struct watchpoint *w = (struct watchpoint *) b;
11038
11039 /* Masked watchpoints have only one location. */
11040 gdb_assert (b->loc && b->loc->next == NULL);
11041
11042 ui_out_text (uiout, "\tmask ");
11043 ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask);
11044 ui_out_text (uiout, "\n");
11045}
11046
11047/* Implement the "print_mention" breakpoint_ops method for
11048 masked hardware watchpoints. */
11049
11050static void
11051print_mention_masked_watchpoint (struct breakpoint *b)
11052{
11053 struct watchpoint *w = (struct watchpoint *) b;
11054 struct ui_out *uiout = current_uiout;
11055 struct cleanup *ui_out_chain;
11056
11057 switch (b->type)
11058 {
11059 case bp_hardware_watchpoint:
11060 ui_out_text (uiout, "Masked hardware watchpoint ");
11061 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11062 break;
11063 case bp_read_watchpoint:
11064 ui_out_text (uiout, "Masked hardware read watchpoint ");
11065 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
11066 break;
11067 case bp_access_watchpoint:
11068 ui_out_text (uiout, "Masked hardware access (read/write) watchpoint ");
11069 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
11070 break;
11071 default:
11072 internal_error (__FILE__, __LINE__,
11073 _("Invalid hardware watchpoint type."));
11074 }
11075
11076 ui_out_field_int (uiout, "number", b->number);
11077 ui_out_text (uiout, ": ");
11078 ui_out_field_string (uiout, "exp", w->exp_string);
11079 do_cleanups (ui_out_chain);
11080}
11081
11082/* Implement the "print_recreate" breakpoint_ops method for
11083 masked hardware watchpoints. */
11084
11085static void
11086print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
11087{
11088 struct watchpoint *w = (struct watchpoint *) b;
11089 char tmp[40];
11090
11091 switch (b->type)
11092 {
11093 case bp_hardware_watchpoint:
11094 fprintf_unfiltered (fp, "watch");
11095 break;
11096 case bp_read_watchpoint:
11097 fprintf_unfiltered (fp, "rwatch");
11098 break;
11099 case bp_access_watchpoint:
11100 fprintf_unfiltered (fp, "awatch");
11101 break;
11102 default:
11103 internal_error (__FILE__, __LINE__,
11104 _("Invalid hardware watchpoint type."));
11105 }
11106
11107 sprintf_vma (tmp, w->hw_wp_mask);
11108 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
11109 print_recreate_thread (b, fp);
11110}
11111
11112/* The breakpoint_ops structure to be used in masked hardware watchpoints. */
11113
11114static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
11115
11116/* Tell whether the given watchpoint is a masked hardware watchpoint. */
11117
11118static int
11119is_masked_watchpoint (const struct breakpoint *b)
11120{
11121 return b->ops == &masked_watchpoint_breakpoint_ops;
11122}
11123
11124/* accessflag: hw_write: watch write,
11125 hw_read: watch read,
11126 hw_access: watch access (read or write) */
11127static void
11128watch_command_1 (const char *arg, int accessflag, int from_tty,
11129 int just_location, int internal)
11130{
11131 struct breakpoint *b, *scope_breakpoint = NULL;
11132 struct expression *exp;
11133 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
11134 struct value *val, *mark, *result;
11135 int saved_bitpos = 0, saved_bitsize = 0;
11136 struct frame_info *frame;
11137 const char *exp_start = NULL;
11138 const char *exp_end = NULL;
11139 const char *tok, *end_tok;
11140 int toklen = -1;
11141 const char *cond_start = NULL;
11142 const char *cond_end = NULL;
11143 enum bptype bp_type;
11144 int thread = -1;
11145 int pc = 0;
11146 /* Flag to indicate whether we are going to use masks for
11147 the hardware watchpoint. */
11148 int use_mask = 0;
11149 CORE_ADDR mask = 0;
11150 struct watchpoint *w;
11151 char *expression;
11152 struct cleanup *back_to;
11153
11154 /* Make sure that we actually have parameters to parse. */
11155 if (arg != NULL && arg[0] != '\0')
11156 {
11157 const char *value_start;
11158
11159 exp_end = arg + strlen (arg);
11160
11161 /* Look for "parameter value" pairs at the end
11162 of the arguments string. */
11163 for (tok = exp_end - 1; tok > arg; tok--)
11164 {
11165 /* Skip whitespace at the end of the argument list. */
11166 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11167 tok--;
11168
11169 /* Find the beginning of the last token.
11170 This is the value of the parameter. */
11171 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11172 tok--;
11173 value_start = tok + 1;
11174
11175 /* Skip whitespace. */
11176 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11177 tok--;
11178
11179 end_tok = tok;
11180
11181 /* Find the beginning of the second to last token.
11182 This is the parameter itself. */
11183 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11184 tok--;
11185 tok++;
11186 toklen = end_tok - tok + 1;
11187
11188 if (toklen == 6 && startswith (tok, "thread"))
11189 {
11190 struct thread_info *thr;
11191 /* At this point we've found a "thread" token, which means
11192 the user is trying to set a watchpoint that triggers
11193 only in a specific thread. */
11194 const char *endp;
11195
11196 if (thread != -1)
11197 error(_("You can specify only one thread."));
11198
11199 /* Extract the thread ID from the next token. */
11200 thr = parse_thread_id (value_start, &endp);
11201
11202 /* Check if the user provided a valid thread ID. */
11203 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
11204 invalid_thread_id_error (value_start);
11205
11206 thread = thr->global_num;
11207 }
11208 else if (toklen == 4 && startswith (tok, "mask"))
11209 {
11210 /* We've found a "mask" token, which means the user wants to
11211 create a hardware watchpoint that is going to have the mask
11212 facility. */
11213 struct value *mask_value, *mark;
11214
11215 if (use_mask)
11216 error(_("You can specify only one mask."));
11217
11218 use_mask = just_location = 1;
11219
11220 mark = value_mark ();
11221 mask_value = parse_to_comma_and_eval (&value_start);
11222 mask = value_as_address (mask_value);
11223 value_free_to_mark (mark);
11224 }
11225 else
11226 /* We didn't recognize what we found. We should stop here. */
11227 break;
11228
11229 /* Truncate the string and get rid of the "parameter value" pair before
11230 the arguments string is parsed by the parse_exp_1 function. */
11231 exp_end = tok;
11232 }
11233 }
11234 else
11235 exp_end = arg;
11236
11237 /* Parse the rest of the arguments. From here on out, everything
11238 is in terms of a newly allocated string instead of the original
11239 ARG. */
11240 innermost_block = NULL;
11241 expression = savestring (arg, exp_end - arg);
11242 back_to = make_cleanup (xfree, expression);
11243 exp_start = arg = expression;
11244 exp = parse_exp_1 (&arg, 0, 0, 0);
11245 exp_end = arg;
11246 /* Remove trailing whitespace from the expression before saving it.
11247 This makes the eventual display of the expression string a bit
11248 prettier. */
11249 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
11250 --exp_end;
11251
11252 /* Checking if the expression is not constant. */
11253 if (watchpoint_exp_is_const (exp))
11254 {
11255 int len;
11256
11257 len = exp_end - exp_start;
11258 while (len > 0 && isspace (exp_start[len - 1]))
11259 len--;
11260 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
11261 }
11262
11263 exp_valid_block = innermost_block;
11264 mark = value_mark ();
11265 fetch_subexp_value (exp, &pc, &val, &result, NULL, just_location);
11266
11267 if (val != NULL && just_location)
11268 {
11269 saved_bitpos = value_bitpos (val);
11270 saved_bitsize = value_bitsize (val);
11271 }
11272
11273 if (just_location)
11274 {
11275 int ret;
11276
11277 exp_valid_block = NULL;
11278 val = value_addr (result);
11279 release_value (val);
11280 value_free_to_mark (mark);
11281
11282 if (use_mask)
11283 {
11284 ret = target_masked_watch_num_registers (value_as_address (val),
11285 mask);
11286 if (ret == -1)
11287 error (_("This target does not support masked watchpoints."));
11288 else if (ret == -2)
11289 error (_("Invalid mask or memory region."));
11290 }
11291 }
11292 else if (val != NULL)
11293 release_value (val);
11294
11295 tok = skip_spaces_const (arg);
11296 end_tok = skip_to_space_const (tok);
11297
11298 toklen = end_tok - tok;
11299 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
11300 {
11301 struct expression *cond;
11302
11303 innermost_block = NULL;
11304 tok = cond_start = end_tok + 1;
11305 cond = parse_exp_1 (&tok, 0, 0, 0);
11306
11307 /* The watchpoint expression may not be local, but the condition
11308 may still be. E.g.: `watch global if local > 0'. */
11309 cond_exp_valid_block = innermost_block;
11310
11311 xfree (cond);
11312 cond_end = tok;
11313 }
11314 if (*tok)
11315 error (_("Junk at end of command."));
11316
11317 frame = block_innermost_frame (exp_valid_block);
11318
11319 /* If the expression is "local", then set up a "watchpoint scope"
11320 breakpoint at the point where we've left the scope of the watchpoint
11321 expression. Create the scope breakpoint before the watchpoint, so
11322 that we will encounter it first in bpstat_stop_status. */
11323 if (exp_valid_block && frame)
11324 {
11325 if (frame_id_p (frame_unwind_caller_id (frame)))
11326 {
11327 scope_breakpoint
11328 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
11329 frame_unwind_caller_pc (frame),
11330 bp_watchpoint_scope,
11331 &momentary_breakpoint_ops);
11332
11333 scope_breakpoint->enable_state = bp_enabled;
11334
11335 /* Automatically delete the breakpoint when it hits. */
11336 scope_breakpoint->disposition = disp_del;
11337
11338 /* Only break in the proper frame (help with recursion). */
11339 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
11340
11341 /* Set the address at which we will stop. */
11342 scope_breakpoint->loc->gdbarch
11343 = frame_unwind_caller_arch (frame);
11344 scope_breakpoint->loc->requested_address
11345 = frame_unwind_caller_pc (frame);
11346 scope_breakpoint->loc->address
11347 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
11348 scope_breakpoint->loc->requested_address,
11349 scope_breakpoint->type);
11350 }
11351 }
11352
11353 /* Now set up the breakpoint. We create all watchpoints as hardware
11354 watchpoints here even if hardware watchpoints are turned off, a call
11355 to update_watchpoint later in this function will cause the type to
11356 drop back to bp_watchpoint (software watchpoint) if required. */
11357
11358 if (accessflag == hw_read)
11359 bp_type = bp_read_watchpoint;
11360 else if (accessflag == hw_access)
11361 bp_type = bp_access_watchpoint;
11362 else
11363 bp_type = bp_hardware_watchpoint;
11364
11365 w = XCNEW (struct watchpoint);
11366 b = &w->base;
11367 if (use_mask)
11368 init_raw_breakpoint_without_location (b, NULL, bp_type,
11369 &masked_watchpoint_breakpoint_ops);
11370 else
11371 init_raw_breakpoint_without_location (b, NULL, bp_type,
11372 &watchpoint_breakpoint_ops);
11373 b->thread = thread;
11374 b->disposition = disp_donttouch;
11375 b->pspace = current_program_space;
11376 w->exp = exp;
11377 w->exp_valid_block = exp_valid_block;
11378 w->cond_exp_valid_block = cond_exp_valid_block;
11379 if (just_location)
11380 {
11381 struct type *t = value_type (val);
11382 CORE_ADDR addr = value_as_address (val);
11383 char *name;
11384
11385 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
11386 name = type_to_string (t);
11387
11388 w->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
11389 core_addr_to_string (addr));
11390 xfree (name);
11391
11392 w->exp_string = xstrprintf ("-location %.*s",
11393 (int) (exp_end - exp_start), exp_start);
11394
11395 /* The above expression is in C. */
11396 b->language = language_c;
11397 }
11398 else
11399 w->exp_string = savestring (exp_start, exp_end - exp_start);
11400
11401 if (use_mask)
11402 {
11403 w->hw_wp_mask = mask;
11404 }
11405 else
11406 {
11407 w->val = val;
11408 w->val_bitpos = saved_bitpos;
11409 w->val_bitsize = saved_bitsize;
11410 w->val_valid = 1;
11411 }
11412
11413 if (cond_start)
11414 b->cond_string = savestring (cond_start, cond_end - cond_start);
11415 else
11416 b->cond_string = 0;
11417
11418 if (frame)
11419 {
11420 w->watchpoint_frame = get_frame_id (frame);
11421 w->watchpoint_thread = inferior_ptid;
11422 }
11423 else
11424 {
11425 w->watchpoint_frame = null_frame_id;
11426 w->watchpoint_thread = null_ptid;
11427 }
11428
11429 if (scope_breakpoint != NULL)
11430 {
11431 /* The scope breakpoint is related to the watchpoint. We will
11432 need to act on them together. */
11433 b->related_breakpoint = scope_breakpoint;
11434 scope_breakpoint->related_breakpoint = b;
11435 }
11436
11437 if (!just_location)
11438 value_free_to_mark (mark);
11439
11440 TRY
11441 {
11442 /* Finally update the new watchpoint. This creates the locations
11443 that should be inserted. */
11444 update_watchpoint (w, 1);
11445 }
11446 CATCH (e, RETURN_MASK_ALL)
11447 {
11448 delete_breakpoint (b);
11449 throw_exception (e);
11450 }
11451 END_CATCH
11452
11453 install_breakpoint (internal, b, 1);
11454 do_cleanups (back_to);
11455}
11456
11457/* Return count of debug registers needed to watch the given expression.
11458 If the watchpoint cannot be handled in hardware return zero. */
11459
11460static int
11461can_use_hardware_watchpoint (struct value *v)
11462{
11463 int found_memory_cnt = 0;
11464 struct value *head = v;
11465
11466 /* Did the user specifically forbid us to use hardware watchpoints? */
11467 if (!can_use_hw_watchpoints)
11468 return 0;
11469
11470 /* Make sure that the value of the expression depends only upon
11471 memory contents, and values computed from them within GDB. If we
11472 find any register references or function calls, we can't use a
11473 hardware watchpoint.
11474
11475 The idea here is that evaluating an expression generates a series
11476 of values, one holding the value of every subexpression. (The
11477 expression a*b+c has five subexpressions: a, b, a*b, c, and
11478 a*b+c.) GDB's values hold almost enough information to establish
11479 the criteria given above --- they identify memory lvalues,
11480 register lvalues, computed values, etcetera. So we can evaluate
11481 the expression, and then scan the chain of values that leaves
11482 behind to decide whether we can detect any possible change to the
11483 expression's final value using only hardware watchpoints.
11484
11485 However, I don't think that the values returned by inferior
11486 function calls are special in any way. So this function may not
11487 notice that an expression involving an inferior function call
11488 can't be watched with hardware watchpoints. FIXME. */
11489 for (; v; v = value_next (v))
11490 {
11491 if (VALUE_LVAL (v) == lval_memory)
11492 {
11493 if (v != head && value_lazy (v))
11494 /* A lazy memory lvalue in the chain is one that GDB never
11495 needed to fetch; we either just used its address (e.g.,
11496 `a' in `a.b') or we never needed it at all (e.g., `a'
11497 in `a,b'). This doesn't apply to HEAD; if that is
11498 lazy then it was not readable, but watch it anyway. */
11499 ;
11500 else
11501 {
11502 /* Ahh, memory we actually used! Check if we can cover
11503 it with hardware watchpoints. */
11504 struct type *vtype = check_typedef (value_type (v));
11505
11506 /* We only watch structs and arrays if user asked for it
11507 explicitly, never if they just happen to appear in a
11508 middle of some value chain. */
11509 if (v == head
11510 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
11511 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
11512 {
11513 CORE_ADDR vaddr = value_address (v);
11514 int len;
11515 int num_regs;
11516
11517 len = (target_exact_watchpoints
11518 && is_scalar_type_recursive (vtype))?
11519 1 : TYPE_LENGTH (value_type (v));
11520
11521 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
11522 if (!num_regs)
11523 return 0;
11524 else
11525 found_memory_cnt += num_regs;
11526 }
11527 }
11528 }
11529 else if (VALUE_LVAL (v) != not_lval
11530 && deprecated_value_modifiable (v) == 0)
11531 return 0; /* These are values from the history (e.g., $1). */
11532 else if (VALUE_LVAL (v) == lval_register)
11533 return 0; /* Cannot watch a register with a HW watchpoint. */
11534 }
11535
11536 /* The expression itself looks suitable for using a hardware
11537 watchpoint, but give the target machine a chance to reject it. */
11538 return found_memory_cnt;
11539}
11540
11541void
11542watch_command_wrapper (char *arg, int from_tty, int internal)
11543{
11544 watch_command_1 (arg, hw_write, from_tty, 0, internal);
11545}
11546
11547/* A helper function that looks for the "-location" argument and then
11548 calls watch_command_1. */
11549
11550static void
11551watch_maybe_just_location (char *arg, int accessflag, int from_tty)
11552{
11553 int just_location = 0;
11554
11555 if (arg
11556 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11557 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11558 {
11559 arg = skip_spaces (arg);
11560 just_location = 1;
11561 }
11562
11563 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
11564}
11565
11566static void
11567watch_command (char *arg, int from_tty)
11568{
11569 watch_maybe_just_location (arg, hw_write, from_tty);
11570}
11571
11572void
11573rwatch_command_wrapper (char *arg, int from_tty, int internal)
11574{
11575 watch_command_1 (arg, hw_read, from_tty, 0, internal);
11576}
11577
11578static void
11579rwatch_command (char *arg, int from_tty)
11580{
11581 watch_maybe_just_location (arg, hw_read, from_tty);
11582}
11583
11584void
11585awatch_command_wrapper (char *arg, int from_tty, int internal)
11586{
11587 watch_command_1 (arg, hw_access, from_tty, 0, internal);
11588}
11589
11590static void
11591awatch_command (char *arg, int from_tty)
11592{
11593 watch_maybe_just_location (arg, hw_access, from_tty);
11594}
11595\f
11596
11597/* Data for the FSM that manages the until(location)/advance commands
11598 in infcmd.c. Here because it uses the mechanisms of
11599 breakpoints. */
11600
11601struct until_break_fsm
11602{
11603 /* The base class. */
11604 struct thread_fsm thread_fsm;
11605
11606 /* The thread that as current when the command was executed. */
11607 int thread;
11608
11609 /* The breakpoint set at the destination location. */
11610 struct breakpoint *location_breakpoint;
11611
11612 /* Breakpoint set at the return address in the caller frame. May be
11613 NULL. */
11614 struct breakpoint *caller_breakpoint;
11615};
11616
11617static void until_break_fsm_clean_up (struct thread_fsm *self);
11618static int until_break_fsm_should_stop (struct thread_fsm *self);
11619static enum async_reply_reason
11620 until_break_fsm_async_reply_reason (struct thread_fsm *self);
11621
11622/* until_break_fsm's vtable. */
11623
11624static struct thread_fsm_ops until_break_fsm_ops =
11625{
11626 NULL, /* dtor */
11627 until_break_fsm_clean_up,
11628 until_break_fsm_should_stop,
11629 NULL, /* return_value */
11630 until_break_fsm_async_reply_reason,
11631};
11632
11633/* Allocate a new until_break_command_fsm. */
11634
11635static struct until_break_fsm *
11636new_until_break_fsm (int thread,
11637 struct breakpoint *location_breakpoint,
11638 struct breakpoint *caller_breakpoint)
11639{
11640 struct until_break_fsm *sm;
11641
11642 sm = XCNEW (struct until_break_fsm);
11643 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops);
11644
11645 sm->thread = thread;
11646 sm->location_breakpoint = location_breakpoint;
11647 sm->caller_breakpoint = caller_breakpoint;
11648
11649 return sm;
11650}
11651
11652/* Implementation of the 'should_stop' FSM method for the
11653 until(location)/advance commands. */
11654
11655static int
11656until_break_fsm_should_stop (struct thread_fsm *self)
11657{
11658 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11659 struct thread_info *tp = inferior_thread ();
11660
11661 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11662 sm->location_breakpoint) != NULL
11663 || (sm->caller_breakpoint != NULL
11664 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11665 sm->caller_breakpoint) != NULL))
11666 thread_fsm_set_finished (self);
11667
11668 return 1;
11669}
11670
11671/* Implementation of the 'clean_up' FSM method for the
11672 until(location)/advance commands. */
11673
11674static void
11675until_break_fsm_clean_up (struct thread_fsm *self)
11676{
11677 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11678
11679 /* Clean up our temporary breakpoints. */
11680 if (sm->location_breakpoint != NULL)
11681 {
11682 delete_breakpoint (sm->location_breakpoint);
11683 sm->location_breakpoint = NULL;
11684 }
11685 if (sm->caller_breakpoint != NULL)
11686 {
11687 delete_breakpoint (sm->caller_breakpoint);
11688 sm->caller_breakpoint = NULL;
11689 }
11690 delete_longjmp_breakpoint (sm->thread);
11691}
11692
11693/* Implementation of the 'async_reply_reason' FSM method for the
11694 until(location)/advance commands. */
11695
11696static enum async_reply_reason
11697until_break_fsm_async_reply_reason (struct thread_fsm *self)
11698{
11699 return EXEC_ASYNC_LOCATION_REACHED;
11700}
11701
11702void
11703until_break_command (char *arg, int from_tty, int anywhere)
11704{
11705 struct symtabs_and_lines sals;
11706 struct symtab_and_line sal;
11707 struct frame_info *frame;
11708 struct gdbarch *frame_gdbarch;
11709 struct frame_id stack_frame_id;
11710 struct frame_id caller_frame_id;
11711 struct breakpoint *location_breakpoint;
11712 struct breakpoint *caller_breakpoint = NULL;
11713 struct cleanup *old_chain, *cleanup;
11714 int thread;
11715 struct thread_info *tp;
11716 struct event_location *location;
11717 struct until_break_fsm *sm;
11718
11719 clear_proceed_status (0);
11720
11721 /* Set a breakpoint where the user wants it and at return from
11722 this function. */
11723
11724 location = string_to_event_location (&arg, current_language);
11725 cleanup = make_cleanup_delete_event_location (location);
11726
11727 if (last_displayed_sal_is_valid ())
11728 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE, NULL,
11729 get_last_displayed_symtab (),
11730 get_last_displayed_line ());
11731 else
11732 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE,
11733 NULL, (struct symtab *) NULL, 0);
11734
11735 if (sals.nelts != 1)
11736 error (_("Couldn't get information on specified line."));
11737
11738 sal = sals.sals[0];
11739 xfree (sals.sals); /* malloc'd, so freed. */
11740
11741 if (*arg)
11742 error (_("Junk at end of arguments."));
11743
11744 resolve_sal_pc (&sal);
11745
11746 tp = inferior_thread ();
11747 thread = tp->global_num;
11748
11749 old_chain = make_cleanup (null_cleanup, NULL);
11750
11751 /* Note linespec handling above invalidates the frame chain.
11752 Installing a breakpoint also invalidates the frame chain (as it
11753 may need to switch threads), so do any frame handling before
11754 that. */
11755
11756 frame = get_selected_frame (NULL);
11757 frame_gdbarch = get_frame_arch (frame);
11758 stack_frame_id = get_stack_frame_id (frame);
11759 caller_frame_id = frame_unwind_caller_id (frame);
11760
11761 /* Keep within the current frame, or in frames called by the current
11762 one. */
11763
11764 if (frame_id_p (caller_frame_id))
11765 {
11766 struct symtab_and_line sal2;
11767 struct gdbarch *caller_gdbarch;
11768
11769 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11770 sal2.pc = frame_unwind_caller_pc (frame);
11771 caller_gdbarch = frame_unwind_caller_arch (frame);
11772 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11773 sal2,
11774 caller_frame_id,
11775 bp_until);
11776 make_cleanup_delete_breakpoint (caller_breakpoint);
11777
11778 set_longjmp_breakpoint (tp, caller_frame_id);
11779 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
11780 }
11781
11782 /* set_momentary_breakpoint could invalidate FRAME. */
11783 frame = NULL;
11784
11785 if (anywhere)
11786 /* If the user told us to continue until a specified location,
11787 we don't specify a frame at which we need to stop. */
11788 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11789 null_frame_id, bp_until);
11790 else
11791 /* Otherwise, specify the selected frame, because we want to stop
11792 only at the very same frame. */
11793 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11794 stack_frame_id, bp_until);
11795 make_cleanup_delete_breakpoint (location_breakpoint);
11796
11797 sm = new_until_break_fsm (tp->global_num,
11798 location_breakpoint, caller_breakpoint);
11799 tp->thread_fsm = &sm->thread_fsm;
11800
11801 discard_cleanups (old_chain);
11802
11803 proceed (-1, GDB_SIGNAL_DEFAULT);
11804
11805 do_cleanups (cleanup);
11806}
11807
11808/* This function attempts to parse an optional "if <cond>" clause
11809 from the arg string. If one is not found, it returns NULL.
11810
11811 Else, it returns a pointer to the condition string. (It does not
11812 attempt to evaluate the string against a particular block.) And,
11813 it updates arg to point to the first character following the parsed
11814 if clause in the arg string. */
11815
11816char *
11817ep_parse_optional_if_clause (char **arg)
11818{
11819 char *cond_string;
11820
11821 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
11822 return NULL;
11823
11824 /* Skip the "if" keyword. */
11825 (*arg) += 2;
11826
11827 /* Skip any extra leading whitespace, and record the start of the
11828 condition string. */
11829 *arg = skip_spaces (*arg);
11830 cond_string = *arg;
11831
11832 /* Assume that the condition occupies the remainder of the arg
11833 string. */
11834 (*arg) += strlen (cond_string);
11835
11836 return cond_string;
11837}
11838
11839/* Commands to deal with catching events, such as signals, exceptions,
11840 process start/exit, etc. */
11841
11842typedef enum
11843{
11844 catch_fork_temporary, catch_vfork_temporary,
11845 catch_fork_permanent, catch_vfork_permanent
11846}
11847catch_fork_kind;
11848
11849static void
11850catch_fork_command_1 (char *arg, int from_tty,
11851 struct cmd_list_element *command)
11852{
11853 struct gdbarch *gdbarch = get_current_arch ();
11854 char *cond_string = NULL;
11855 catch_fork_kind fork_kind;
11856 int tempflag;
11857
11858 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11859 tempflag = (fork_kind == catch_fork_temporary
11860 || fork_kind == catch_vfork_temporary);
11861
11862 if (!arg)
11863 arg = "";
11864 arg = skip_spaces (arg);
11865
11866 /* The allowed syntax is:
11867 catch [v]fork
11868 catch [v]fork if <cond>
11869
11870 First, check if there's an if clause. */
11871 cond_string = ep_parse_optional_if_clause (&arg);
11872
11873 if ((*arg != '\0') && !isspace (*arg))
11874 error (_("Junk at end of arguments."));
11875
11876 /* If this target supports it, create a fork or vfork catchpoint
11877 and enable reporting of such events. */
11878 switch (fork_kind)
11879 {
11880 case catch_fork_temporary:
11881 case catch_fork_permanent:
11882 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11883 &catch_fork_breakpoint_ops);
11884 break;
11885 case catch_vfork_temporary:
11886 case catch_vfork_permanent:
11887 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11888 &catch_vfork_breakpoint_ops);
11889 break;
11890 default:
11891 error (_("unsupported or unknown fork kind; cannot catch it"));
11892 break;
11893 }
11894}
11895
11896static void
11897catch_exec_command_1 (char *arg, int from_tty,
11898 struct cmd_list_element *command)
11899{
11900 struct exec_catchpoint *c;
11901 struct gdbarch *gdbarch = get_current_arch ();
11902 int tempflag;
11903 char *cond_string = NULL;
11904
11905 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11906
11907 if (!arg)
11908 arg = "";
11909 arg = skip_spaces (arg);
11910
11911 /* The allowed syntax is:
11912 catch exec
11913 catch exec if <cond>
11914
11915 First, check if there's an if clause. */
11916 cond_string = ep_parse_optional_if_clause (&arg);
11917
11918 if ((*arg != '\0') && !isspace (*arg))
11919 error (_("Junk at end of arguments."));
11920
11921 c = XNEW (struct exec_catchpoint);
11922 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
11923 &catch_exec_breakpoint_ops);
11924 c->exec_pathname = NULL;
11925
11926 install_breakpoint (0, &c->base, 1);
11927}
11928
11929void
11930init_ada_exception_breakpoint (struct breakpoint *b,
11931 struct gdbarch *gdbarch,
11932 struct symtab_and_line sal,
11933 char *addr_string,
11934 const struct breakpoint_ops *ops,
11935 int tempflag,
11936 int enabled,
11937 int from_tty)
11938{
11939 if (from_tty)
11940 {
11941 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11942 if (!loc_gdbarch)
11943 loc_gdbarch = gdbarch;
11944
11945 describe_other_breakpoints (loc_gdbarch,
11946 sal.pspace, sal.pc, sal.section, -1);
11947 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11948 version for exception catchpoints, because two catchpoints
11949 used for different exception names will use the same address.
11950 In this case, a "breakpoint ... also set at..." warning is
11951 unproductive. Besides, the warning phrasing is also a bit
11952 inappropriate, we should use the word catchpoint, and tell
11953 the user what type of catchpoint it is. The above is good
11954 enough for now, though. */
11955 }
11956
11957 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
11958
11959 b->enable_state = enabled ? bp_enabled : bp_disabled;
11960 b->disposition = tempflag ? disp_del : disp_donttouch;
11961 b->location = string_to_event_location (&addr_string,
11962 language_def (language_ada));
11963 b->language = language_ada;
11964}
11965
11966static void
11967catch_command (char *arg, int from_tty)
11968{
11969 error (_("Catch requires an event name."));
11970}
11971\f
11972
11973static void
11974tcatch_command (char *arg, int from_tty)
11975{
11976 error (_("Catch requires an event name."));
11977}
11978
11979/* A qsort comparison function that sorts breakpoints in order. */
11980
11981static int
11982compare_breakpoints (const void *a, const void *b)
11983{
11984 const breakpoint_p *ba = (const breakpoint_p *) a;
11985 uintptr_t ua = (uintptr_t) *ba;
11986 const breakpoint_p *bb = (const breakpoint_p *) b;
11987 uintptr_t ub = (uintptr_t) *bb;
11988
11989 if ((*ba)->number < (*bb)->number)
11990 return -1;
11991 else if ((*ba)->number > (*bb)->number)
11992 return 1;
11993
11994 /* Now sort by address, in case we see, e..g, two breakpoints with
11995 the number 0. */
11996 if (ua < ub)
11997 return -1;
11998 return ua > ub ? 1 : 0;
11999}
12000
12001/* Delete breakpoints by address or line. */
12002
12003static void
12004clear_command (char *arg, int from_tty)
12005{
12006 struct breakpoint *b, *prev;
12007 VEC(breakpoint_p) *found = 0;
12008 int ix;
12009 int default_match;
12010 struct symtabs_and_lines sals;
12011 struct symtab_and_line sal;
12012 int i;
12013 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
12014
12015 if (arg)
12016 {
12017 sals = decode_line_with_current_source (arg,
12018 (DECODE_LINE_FUNFIRSTLINE
12019 | DECODE_LINE_LIST_MODE));
12020 make_cleanup (xfree, sals.sals);
12021 default_match = 0;
12022 }
12023 else
12024 {
12025 sals.sals = XNEW (struct symtab_and_line);
12026 make_cleanup (xfree, sals.sals);
12027 init_sal (&sal); /* Initialize to zeroes. */
12028
12029 /* Set sal's line, symtab, pc, and pspace to the values
12030 corresponding to the last call to print_frame_info. If the
12031 codepoint is not valid, this will set all the fields to 0. */
12032 get_last_displayed_sal (&sal);
12033 if (sal.symtab == 0)
12034 error (_("No source file specified."));
12035
12036 sals.sals[0] = sal;
12037 sals.nelts = 1;
12038
12039 default_match = 1;
12040 }
12041
12042 /* We don't call resolve_sal_pc here. That's not as bad as it
12043 seems, because all existing breakpoints typically have both
12044 file/line and pc set. So, if clear is given file/line, we can
12045 match this to existing breakpoint without obtaining pc at all.
12046
12047 We only support clearing given the address explicitly
12048 present in breakpoint table. Say, we've set breakpoint
12049 at file:line. There were several PC values for that file:line,
12050 due to optimization, all in one block.
12051
12052 We've picked one PC value. If "clear" is issued with another
12053 PC corresponding to the same file:line, the breakpoint won't
12054 be cleared. We probably can still clear the breakpoint, but
12055 since the other PC value is never presented to user, user
12056 can only find it by guessing, and it does not seem important
12057 to support that. */
12058
12059 /* For each line spec given, delete bps which correspond to it. Do
12060 it in two passes, solely to preserve the current behavior that
12061 from_tty is forced true if we delete more than one
12062 breakpoint. */
12063
12064 found = NULL;
12065 make_cleanup (VEC_cleanup (breakpoint_p), &found);
12066 for (i = 0; i < sals.nelts; i++)
12067 {
12068 const char *sal_fullname;
12069
12070 /* If exact pc given, clear bpts at that pc.
12071 If line given (pc == 0), clear all bpts on specified line.
12072 If defaulting, clear all bpts on default line
12073 or at default pc.
12074
12075 defaulting sal.pc != 0 tests to do
12076
12077 0 1 pc
12078 1 1 pc _and_ line
12079 0 0 line
12080 1 0 <can't happen> */
12081
12082 sal = sals.sals[i];
12083 sal_fullname = (sal.symtab == NULL
12084 ? NULL : symtab_to_fullname (sal.symtab));
12085
12086 /* Find all matching breakpoints and add them to 'found'. */
12087 ALL_BREAKPOINTS (b)
12088 {
12089 int match = 0;
12090 /* Are we going to delete b? */
12091 if (b->type != bp_none && !is_watchpoint (b))
12092 {
12093 struct bp_location *loc = b->loc;
12094 for (; loc; loc = loc->next)
12095 {
12096 /* If the user specified file:line, don't allow a PC
12097 match. This matches historical gdb behavior. */
12098 int pc_match = (!sal.explicit_line
12099 && sal.pc
12100 && (loc->pspace == sal.pspace)
12101 && (loc->address == sal.pc)
12102 && (!section_is_overlay (loc->section)
12103 || loc->section == sal.section));
12104 int line_match = 0;
12105
12106 if ((default_match || sal.explicit_line)
12107 && loc->symtab != NULL
12108 && sal_fullname != NULL
12109 && sal.pspace == loc->pspace
12110 && loc->line_number == sal.line
12111 && filename_cmp (symtab_to_fullname (loc->symtab),
12112 sal_fullname) == 0)
12113 line_match = 1;
12114
12115 if (pc_match || line_match)
12116 {
12117 match = 1;
12118 break;
12119 }
12120 }
12121 }
12122
12123 if (match)
12124 VEC_safe_push(breakpoint_p, found, b);
12125 }
12126 }
12127
12128 /* Now go thru the 'found' chain and delete them. */
12129 if (VEC_empty(breakpoint_p, found))
12130 {
12131 if (arg)
12132 error (_("No breakpoint at %s."), arg);
12133 else
12134 error (_("No breakpoint at this line."));
12135 }
12136
12137 /* Remove duplicates from the vec. */
12138 qsort (VEC_address (breakpoint_p, found),
12139 VEC_length (breakpoint_p, found),
12140 sizeof (breakpoint_p),
12141 compare_breakpoints);
12142 prev = VEC_index (breakpoint_p, found, 0);
12143 for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix)
12144 {
12145 if (b == prev)
12146 {
12147 VEC_ordered_remove (breakpoint_p, found, ix);
12148 --ix;
12149 }
12150 }
12151
12152 if (VEC_length(breakpoint_p, found) > 1)
12153 from_tty = 1; /* Always report if deleted more than one. */
12154 if (from_tty)
12155 {
12156 if (VEC_length(breakpoint_p, found) == 1)
12157 printf_unfiltered (_("Deleted breakpoint "));
12158 else
12159 printf_unfiltered (_("Deleted breakpoints "));
12160 }
12161
12162 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
12163 {
12164 if (from_tty)
12165 printf_unfiltered ("%d ", b->number);
12166 delete_breakpoint (b);
12167 }
12168 if (from_tty)
12169 putchar_unfiltered ('\n');
12170
12171 do_cleanups (cleanups);
12172}
12173\f
12174/* Delete breakpoint in BS if they are `delete' breakpoints and
12175 all breakpoints that are marked for deletion, whether hit or not.
12176 This is called after any breakpoint is hit, or after errors. */
12177
12178void
12179breakpoint_auto_delete (bpstat bs)
12180{
12181 struct breakpoint *b, *b_tmp;
12182
12183 for (; bs; bs = bs->next)
12184 if (bs->breakpoint_at
12185 && bs->breakpoint_at->disposition == disp_del
12186 && bs->stop)
12187 delete_breakpoint (bs->breakpoint_at);
12188
12189 ALL_BREAKPOINTS_SAFE (b, b_tmp)
12190 {
12191 if (b->disposition == disp_del_at_next_stop)
12192 delete_breakpoint (b);
12193 }
12194}
12195
12196/* A comparison function for bp_location AP and BP being interfaced to
12197 qsort. Sort elements primarily by their ADDRESS (no matter what
12198 does breakpoint_address_is_meaningful say for its OWNER),
12199 secondarily by ordering first permanent elements and
12200 terciarily just ensuring the array is sorted stable way despite
12201 qsort being an unstable algorithm. */
12202
12203static int
12204bp_location_compare (const void *ap, const void *bp)
12205{
12206 const struct bp_location *a = *(const struct bp_location **) ap;
12207 const struct bp_location *b = *(const struct bp_location **) bp;
12208
12209 if (a->address != b->address)
12210 return (a->address > b->address) - (a->address < b->address);
12211
12212 /* Sort locations at the same address by their pspace number, keeping
12213 locations of the same inferior (in a multi-inferior environment)
12214 grouped. */
12215
12216 if (a->pspace->num != b->pspace->num)
12217 return ((a->pspace->num > b->pspace->num)
12218 - (a->pspace->num < b->pspace->num));
12219
12220 /* Sort permanent breakpoints first. */
12221 if (a->permanent != b->permanent)
12222 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
12223
12224 /* Make the internal GDB representation stable across GDB runs
12225 where A and B memory inside GDB can differ. Breakpoint locations of
12226 the same type at the same address can be sorted in arbitrary order. */
12227
12228 if (a->owner->number != b->owner->number)
12229 return ((a->owner->number > b->owner->number)
12230 - (a->owner->number < b->owner->number));
12231
12232 return (a > b) - (a < b);
12233}
12234
12235/* Set bp_location_placed_address_before_address_max and
12236 bp_location_shadow_len_after_address_max according to the current
12237 content of the bp_location array. */
12238
12239static void
12240bp_location_target_extensions_update (void)
12241{
12242 struct bp_location *bl, **blp_tmp;
12243
12244 bp_location_placed_address_before_address_max = 0;
12245 bp_location_shadow_len_after_address_max = 0;
12246
12247 ALL_BP_LOCATIONS (bl, blp_tmp)
12248 {
12249 CORE_ADDR start, end, addr;
12250
12251 if (!bp_location_has_shadow (bl))
12252 continue;
12253
12254 start = bl->target_info.placed_address;
12255 end = start + bl->target_info.shadow_len;
12256
12257 gdb_assert (bl->address >= start);
12258 addr = bl->address - start;
12259 if (addr > bp_location_placed_address_before_address_max)
12260 bp_location_placed_address_before_address_max = addr;
12261
12262 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
12263
12264 gdb_assert (bl->address < end);
12265 addr = end - bl->address;
12266 if (addr > bp_location_shadow_len_after_address_max)
12267 bp_location_shadow_len_after_address_max = addr;
12268 }
12269}
12270
12271/* Download tracepoint locations if they haven't been. */
12272
12273static void
12274download_tracepoint_locations (void)
12275{
12276 struct breakpoint *b;
12277 struct cleanup *old_chain;
12278 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
12279
12280 old_chain = save_current_space_and_thread ();
12281
12282 ALL_TRACEPOINTS (b)
12283 {
12284 struct bp_location *bl;
12285 struct tracepoint *t;
12286 int bp_location_downloaded = 0;
12287
12288 if ((b->type == bp_fast_tracepoint
12289 ? !may_insert_fast_tracepoints
12290 : !may_insert_tracepoints))
12291 continue;
12292
12293 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
12294 {
12295 if (target_can_download_tracepoint ())
12296 can_download_tracepoint = TRIBOOL_TRUE;
12297 else
12298 can_download_tracepoint = TRIBOOL_FALSE;
12299 }
12300
12301 if (can_download_tracepoint == TRIBOOL_FALSE)
12302 break;
12303
12304 for (bl = b->loc; bl; bl = bl->next)
12305 {
12306 /* In tracepoint, locations are _never_ duplicated, so
12307 should_be_inserted is equivalent to
12308 unduplicated_should_be_inserted. */
12309 if (!should_be_inserted (bl) || bl->inserted)
12310 continue;
12311
12312 switch_to_program_space_and_thread (bl->pspace);
12313
12314 target_download_tracepoint (bl);
12315
12316 bl->inserted = 1;
12317 bp_location_downloaded = 1;
12318 }
12319 t = (struct tracepoint *) b;
12320 t->number_on_target = b->number;
12321 if (bp_location_downloaded)
12322 observer_notify_breakpoint_modified (b);
12323 }
12324
12325 do_cleanups (old_chain);
12326}
12327
12328/* Swap the insertion/duplication state between two locations. */
12329
12330static void
12331swap_insertion (struct bp_location *left, struct bp_location *right)
12332{
12333 const int left_inserted = left->inserted;
12334 const int left_duplicate = left->duplicate;
12335 const int left_needs_update = left->needs_update;
12336 const struct bp_target_info left_target_info = left->target_info;
12337
12338 /* Locations of tracepoints can never be duplicated. */
12339 if (is_tracepoint (left->owner))
12340 gdb_assert (!left->duplicate);
12341 if (is_tracepoint (right->owner))
12342 gdb_assert (!right->duplicate);
12343
12344 left->inserted = right->inserted;
12345 left->duplicate = right->duplicate;
12346 left->needs_update = right->needs_update;
12347 left->target_info = right->target_info;
12348 right->inserted = left_inserted;
12349 right->duplicate = left_duplicate;
12350 right->needs_update = left_needs_update;
12351 right->target_info = left_target_info;
12352}
12353
12354/* Force the re-insertion of the locations at ADDRESS. This is called
12355 once a new/deleted/modified duplicate location is found and we are evaluating
12356 conditions on the target's side. Such conditions need to be updated on
12357 the target. */
12358
12359static void
12360force_breakpoint_reinsertion (struct bp_location *bl)
12361{
12362 struct bp_location **locp = NULL, **loc2p;
12363 struct bp_location *loc;
12364 CORE_ADDR address = 0;
12365 int pspace_num;
12366
12367 address = bl->address;
12368 pspace_num = bl->pspace->num;
12369
12370 /* This is only meaningful if the target is
12371 evaluating conditions and if the user has
12372 opted for condition evaluation on the target's
12373 side. */
12374 if (gdb_evaluates_breakpoint_condition_p ()
12375 || !target_supports_evaluation_of_breakpoint_conditions ())
12376 return;
12377
12378 /* Flag all breakpoint locations with this address and
12379 the same program space as the location
12380 as "its condition has changed". We need to
12381 update the conditions on the target's side. */
12382 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
12383 {
12384 loc = *loc2p;
12385
12386 if (!is_breakpoint (loc->owner)
12387 || pspace_num != loc->pspace->num)
12388 continue;
12389
12390 /* Flag the location appropriately. We use a different state to
12391 let everyone know that we already updated the set of locations
12392 with addr bl->address and program space bl->pspace. This is so
12393 we don't have to keep calling these functions just to mark locations
12394 that have already been marked. */
12395 loc->condition_changed = condition_updated;
12396
12397 /* Free the agent expression bytecode as well. We will compute
12398 it later on. */
12399 if (loc->cond_bytecode)
12400 {
12401 free_agent_expr (loc->cond_bytecode);
12402 loc->cond_bytecode = NULL;
12403 }
12404 }
12405}
12406/* Called whether new breakpoints are created, or existing breakpoints
12407 deleted, to update the global location list and recompute which
12408 locations are duplicate of which.
12409
12410 The INSERT_MODE flag determines whether locations may not, may, or
12411 shall be inserted now. See 'enum ugll_insert_mode' for more
12412 info. */
12413
12414static void
12415update_global_location_list (enum ugll_insert_mode insert_mode)
12416{
12417 struct breakpoint *b;
12418 struct bp_location **locp, *loc;
12419 struct cleanup *cleanups;
12420 /* Last breakpoint location address that was marked for update. */
12421 CORE_ADDR last_addr = 0;
12422 /* Last breakpoint location program space that was marked for update. */
12423 int last_pspace_num = -1;
12424
12425 /* Used in the duplicates detection below. When iterating over all
12426 bp_locations, points to the first bp_location of a given address.
12427 Breakpoints and watchpoints of different types are never
12428 duplicates of each other. Keep one pointer for each type of
12429 breakpoint/watchpoint, so we only need to loop over all locations
12430 once. */
12431 struct bp_location *bp_loc_first; /* breakpoint */
12432 struct bp_location *wp_loc_first; /* hardware watchpoint */
12433 struct bp_location *awp_loc_first; /* access watchpoint */
12434 struct bp_location *rwp_loc_first; /* read watchpoint */
12435
12436 /* Saved former bp_location array which we compare against the newly
12437 built bp_location from the current state of ALL_BREAKPOINTS. */
12438 struct bp_location **old_location, **old_locp;
12439 unsigned old_location_count;
12440
12441 old_location = bp_location;
12442 old_location_count = bp_location_count;
12443 bp_location = NULL;
12444 bp_location_count = 0;
12445 cleanups = make_cleanup (xfree, old_location);
12446
12447 ALL_BREAKPOINTS (b)
12448 for (loc = b->loc; loc; loc = loc->next)
12449 bp_location_count++;
12450
12451 bp_location = XNEWVEC (struct bp_location *, bp_location_count);
12452 locp = bp_location;
12453 ALL_BREAKPOINTS (b)
12454 for (loc = b->loc; loc; loc = loc->next)
12455 *locp++ = loc;
12456 qsort (bp_location, bp_location_count, sizeof (*bp_location),
12457 bp_location_compare);
12458
12459 bp_location_target_extensions_update ();
12460
12461 /* Identify bp_location instances that are no longer present in the
12462 new list, and therefore should be freed. Note that it's not
12463 necessary that those locations should be removed from inferior --
12464 if there's another location at the same address (previously
12465 marked as duplicate), we don't need to remove/insert the
12466 location.
12467
12468 LOCP is kept in sync with OLD_LOCP, each pointing to the current
12469 and former bp_location array state respectively. */
12470
12471 locp = bp_location;
12472 for (old_locp = old_location; old_locp < old_location + old_location_count;
12473 old_locp++)
12474 {
12475 struct bp_location *old_loc = *old_locp;
12476 struct bp_location **loc2p;
12477
12478 /* Tells if 'old_loc' is found among the new locations. If
12479 not, we have to free it. */
12480 int found_object = 0;
12481 /* Tells if the location should remain inserted in the target. */
12482 int keep_in_target = 0;
12483 int removed = 0;
12484
12485 /* Skip LOCP entries which will definitely never be needed.
12486 Stop either at or being the one matching OLD_LOC. */
12487 while (locp < bp_location + bp_location_count
12488 && (*locp)->address < old_loc->address)
12489 locp++;
12490
12491 for (loc2p = locp;
12492 (loc2p < bp_location + bp_location_count
12493 && (*loc2p)->address == old_loc->address);
12494 loc2p++)
12495 {
12496 /* Check if this is a new/duplicated location or a duplicated
12497 location that had its condition modified. If so, we want to send
12498 its condition to the target if evaluation of conditions is taking
12499 place there. */
12500 if ((*loc2p)->condition_changed == condition_modified
12501 && (last_addr != old_loc->address
12502 || last_pspace_num != old_loc->pspace->num))
12503 {
12504 force_breakpoint_reinsertion (*loc2p);
12505 last_pspace_num = old_loc->pspace->num;
12506 }
12507
12508 if (*loc2p == old_loc)
12509 found_object = 1;
12510 }
12511
12512 /* We have already handled this address, update it so that we don't
12513 have to go through updates again. */
12514 last_addr = old_loc->address;
12515
12516 /* Target-side condition evaluation: Handle deleted locations. */
12517 if (!found_object)
12518 force_breakpoint_reinsertion (old_loc);
12519
12520 /* If this location is no longer present, and inserted, look if
12521 there's maybe a new location at the same address. If so,
12522 mark that one inserted, and don't remove this one. This is
12523 needed so that we don't have a time window where a breakpoint
12524 at certain location is not inserted. */
12525
12526 if (old_loc->inserted)
12527 {
12528 /* If the location is inserted now, we might have to remove
12529 it. */
12530
12531 if (found_object && should_be_inserted (old_loc))
12532 {
12533 /* The location is still present in the location list,
12534 and still should be inserted. Don't do anything. */
12535 keep_in_target = 1;
12536 }
12537 else
12538 {
12539 /* This location still exists, but it won't be kept in the
12540 target since it may have been disabled. We proceed to
12541 remove its target-side condition. */
12542
12543 /* The location is either no longer present, or got
12544 disabled. See if there's another location at the
12545 same address, in which case we don't need to remove
12546 this one from the target. */
12547
12548 /* OLD_LOC comes from existing struct breakpoint. */
12549 if (breakpoint_address_is_meaningful (old_loc->owner))
12550 {
12551 for (loc2p = locp;
12552 (loc2p < bp_location + bp_location_count
12553 && (*loc2p)->address == old_loc->address);
12554 loc2p++)
12555 {
12556 struct bp_location *loc2 = *loc2p;
12557
12558 if (breakpoint_locations_match (loc2, old_loc))
12559 {
12560 /* Read watchpoint locations are switched to
12561 access watchpoints, if the former are not
12562 supported, but the latter are. */
12563 if (is_hardware_watchpoint (old_loc->owner))
12564 {
12565 gdb_assert (is_hardware_watchpoint (loc2->owner));
12566 loc2->watchpoint_type = old_loc->watchpoint_type;
12567 }
12568
12569 /* loc2 is a duplicated location. We need to check
12570 if it should be inserted in case it will be
12571 unduplicated. */
12572 if (loc2 != old_loc
12573 && unduplicated_should_be_inserted (loc2))
12574 {
12575 swap_insertion (old_loc, loc2);
12576 keep_in_target = 1;
12577 break;
12578 }
12579 }
12580 }
12581 }
12582 }
12583
12584 if (!keep_in_target)
12585 {
12586 if (remove_breakpoint (old_loc, mark_uninserted))
12587 {
12588 /* This is just about all we can do. We could keep
12589 this location on the global list, and try to
12590 remove it next time, but there's no particular
12591 reason why we will succeed next time.
12592
12593 Note that at this point, old_loc->owner is still
12594 valid, as delete_breakpoint frees the breakpoint
12595 only after calling us. */
12596 printf_filtered (_("warning: Error removing "
12597 "breakpoint %d\n"),
12598 old_loc->owner->number);
12599 }
12600 removed = 1;
12601 }
12602 }
12603
12604 if (!found_object)
12605 {
12606 if (removed && target_is_non_stop_p ()
12607 && need_moribund_for_location_type (old_loc))
12608 {
12609 /* This location was removed from the target. In
12610 non-stop mode, a race condition is possible where
12611 we've removed a breakpoint, but stop events for that
12612 breakpoint are already queued and will arrive later.
12613 We apply an heuristic to be able to distinguish such
12614 SIGTRAPs from other random SIGTRAPs: we keep this
12615 breakpoint location for a bit, and will retire it
12616 after we see some number of events. The theory here
12617 is that reporting of events should, "on the average",
12618 be fair, so after a while we'll see events from all
12619 threads that have anything of interest, and no longer
12620 need to keep this breakpoint location around. We
12621 don't hold locations forever so to reduce chances of
12622 mistaking a non-breakpoint SIGTRAP for a breakpoint
12623 SIGTRAP.
12624
12625 The heuristic failing can be disastrous on
12626 decr_pc_after_break targets.
12627
12628 On decr_pc_after_break targets, like e.g., x86-linux,
12629 if we fail to recognize a late breakpoint SIGTRAP,
12630 because events_till_retirement has reached 0 too
12631 soon, we'll fail to do the PC adjustment, and report
12632 a random SIGTRAP to the user. When the user resumes
12633 the inferior, it will most likely immediately crash
12634 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
12635 corrupted, because of being resumed e.g., in the
12636 middle of a multi-byte instruction, or skipped a
12637 one-byte instruction. This was actually seen happen
12638 on native x86-linux, and should be less rare on
12639 targets that do not support new thread events, like
12640 remote, due to the heuristic depending on
12641 thread_count.
12642
12643 Mistaking a random SIGTRAP for a breakpoint trap
12644 causes similar symptoms (PC adjustment applied when
12645 it shouldn't), but then again, playing with SIGTRAPs
12646 behind the debugger's back is asking for trouble.
12647
12648 Since hardware watchpoint traps are always
12649 distinguishable from other traps, so we don't need to
12650 apply keep hardware watchpoint moribund locations
12651 around. We simply always ignore hardware watchpoint
12652 traps we can no longer explain. */
12653
12654 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12655 old_loc->owner = NULL;
12656
12657 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
12658 }
12659 else
12660 {
12661 old_loc->owner = NULL;
12662 decref_bp_location (&old_loc);
12663 }
12664 }
12665 }
12666
12667 /* Rescan breakpoints at the same address and section, marking the
12668 first one as "first" and any others as "duplicates". This is so
12669 that the bpt instruction is only inserted once. If we have a
12670 permanent breakpoint at the same place as BPT, make that one the
12671 official one, and the rest as duplicates. Permanent breakpoints
12672 are sorted first for the same address.
12673
12674 Do the same for hardware watchpoints, but also considering the
12675 watchpoint's type (regular/access/read) and length. */
12676
12677 bp_loc_first = NULL;
12678 wp_loc_first = NULL;
12679 awp_loc_first = NULL;
12680 rwp_loc_first = NULL;
12681 ALL_BP_LOCATIONS (loc, locp)
12682 {
12683 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12684 non-NULL. */
12685 struct bp_location **loc_first_p;
12686 b = loc->owner;
12687
12688 if (!unduplicated_should_be_inserted (loc)
12689 || !breakpoint_address_is_meaningful (b)
12690 /* Don't detect duplicate for tracepoint locations because they are
12691 never duplicated. See the comments in field `duplicate' of
12692 `struct bp_location'. */
12693 || is_tracepoint (b))
12694 {
12695 /* Clear the condition modification flag. */
12696 loc->condition_changed = condition_unchanged;
12697 continue;
12698 }
12699
12700 if (b->type == bp_hardware_watchpoint)
12701 loc_first_p = &wp_loc_first;
12702 else if (b->type == bp_read_watchpoint)
12703 loc_first_p = &rwp_loc_first;
12704 else if (b->type == bp_access_watchpoint)
12705 loc_first_p = &awp_loc_first;
12706 else
12707 loc_first_p = &bp_loc_first;
12708
12709 if (*loc_first_p == NULL
12710 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12711 || !breakpoint_locations_match (loc, *loc_first_p))
12712 {
12713 *loc_first_p = loc;
12714 loc->duplicate = 0;
12715
12716 if (is_breakpoint (loc->owner) && loc->condition_changed)
12717 {
12718 loc->needs_update = 1;
12719 /* Clear the condition modification flag. */
12720 loc->condition_changed = condition_unchanged;
12721 }
12722 continue;
12723 }
12724
12725
12726 /* This and the above ensure the invariant that the first location
12727 is not duplicated, and is the inserted one.
12728 All following are marked as duplicated, and are not inserted. */
12729 if (loc->inserted)
12730 swap_insertion (loc, *loc_first_p);
12731 loc->duplicate = 1;
12732
12733 /* Clear the condition modification flag. */
12734 loc->condition_changed = condition_unchanged;
12735 }
12736
12737 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
12738 {
12739 if (insert_mode != UGLL_DONT_INSERT)
12740 insert_breakpoint_locations ();
12741 else
12742 {
12743 /* Even though the caller told us to not insert new
12744 locations, we may still need to update conditions on the
12745 target's side of breakpoints that were already inserted
12746 if the target is evaluating breakpoint conditions. We
12747 only update conditions for locations that are marked
12748 "needs_update". */
12749 update_inserted_breakpoint_locations ();
12750 }
12751 }
12752
12753 if (insert_mode != UGLL_DONT_INSERT)
12754 download_tracepoint_locations ();
12755
12756 do_cleanups (cleanups);
12757}
12758
12759void
12760breakpoint_retire_moribund (void)
12761{
12762 struct bp_location *loc;
12763 int ix;
12764
12765 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12766 if (--(loc->events_till_retirement) == 0)
12767 {
12768 decref_bp_location (&loc);
12769 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12770 --ix;
12771 }
12772}
12773
12774static void
12775update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
12776{
12777
12778 TRY
12779 {
12780 update_global_location_list (insert_mode);
12781 }
12782 CATCH (e, RETURN_MASK_ERROR)
12783 {
12784 }
12785 END_CATCH
12786}
12787
12788/* Clear BKP from a BPS. */
12789
12790static void
12791bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12792{
12793 bpstat bs;
12794
12795 for (bs = bps; bs; bs = bs->next)
12796 if (bs->breakpoint_at == bpt)
12797 {
12798 bs->breakpoint_at = NULL;
12799 bs->old_val = NULL;
12800 /* bs->commands will be freed later. */
12801 }
12802}
12803
12804/* Callback for iterate_over_threads. */
12805static int
12806bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12807{
12808 struct breakpoint *bpt = (struct breakpoint *) data;
12809
12810 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12811 return 0;
12812}
12813
12814/* Helper for breakpoint and tracepoint breakpoint_ops->mention
12815 callbacks. */
12816
12817static void
12818say_where (struct breakpoint *b)
12819{
12820 struct value_print_options opts;
12821
12822 get_user_print_options (&opts);
12823
12824 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12825 single string. */
12826 if (b->loc == NULL)
12827 {
12828 /* For pending locations, the output differs slightly based
12829 on b->extra_string. If this is non-NULL, it contains either
12830 a condition or dprintf arguments. */
12831 if (b->extra_string == NULL)
12832 {
12833 printf_filtered (_(" (%s) pending."),
12834 event_location_to_string (b->location));
12835 }
12836 else if (b->type == bp_dprintf)
12837 {
12838 printf_filtered (_(" (%s,%s) pending."),
12839 event_location_to_string (b->location),
12840 b->extra_string);
12841 }
12842 else
12843 {
12844 printf_filtered (_(" (%s %s) pending."),
12845 event_location_to_string (b->location),
12846 b->extra_string);
12847 }
12848 }
12849 else
12850 {
12851 if (opts.addressprint || b->loc->symtab == NULL)
12852 {
12853 printf_filtered (" at ");
12854 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12855 gdb_stdout);
12856 }
12857 if (b->loc->symtab != NULL)
12858 {
12859 /* If there is a single location, we can print the location
12860 more nicely. */
12861 if (b->loc->next == NULL)
12862 printf_filtered (": file %s, line %d.",
12863 symtab_to_filename_for_display (b->loc->symtab),
12864 b->loc->line_number);
12865 else
12866 /* This is not ideal, but each location may have a
12867 different file name, and this at least reflects the
12868 real situation somewhat. */
12869 printf_filtered (": %s.",
12870 event_location_to_string (b->location));
12871 }
12872
12873 if (b->loc->next)
12874 {
12875 struct bp_location *loc = b->loc;
12876 int n = 0;
12877 for (; loc; loc = loc->next)
12878 ++n;
12879 printf_filtered (" (%d locations)", n);
12880 }
12881 }
12882}
12883
12884/* Default bp_location_ops methods. */
12885
12886static void
12887bp_location_dtor (struct bp_location *self)
12888{
12889 xfree (self->cond);
12890 if (self->cond_bytecode)
12891 free_agent_expr (self->cond_bytecode);
12892 xfree (self->function_name);
12893
12894 VEC_free (agent_expr_p, self->target_info.conditions);
12895 VEC_free (agent_expr_p, self->target_info.tcommands);
12896}
12897
12898static const struct bp_location_ops bp_location_ops =
12899{
12900 bp_location_dtor
12901};
12902
12903/* Default breakpoint_ops methods all breakpoint_ops ultimately
12904 inherit from. */
12905
12906static void
12907base_breakpoint_dtor (struct breakpoint *self)
12908{
12909 decref_counted_command_line (&self->commands);
12910 xfree (self->cond_string);
12911 xfree (self->extra_string);
12912 xfree (self->filter);
12913 delete_event_location (self->location);
12914 delete_event_location (self->location_range_end);
12915}
12916
12917static struct bp_location *
12918base_breakpoint_allocate_location (struct breakpoint *self)
12919{
12920 struct bp_location *loc;
12921
12922 loc = XNEW (struct bp_location);
12923 init_bp_location (loc, &bp_location_ops, self);
12924 return loc;
12925}
12926
12927static void
12928base_breakpoint_re_set (struct breakpoint *b)
12929{
12930 /* Nothing to re-set. */
12931}
12932
12933#define internal_error_pure_virtual_called() \
12934 gdb_assert_not_reached ("pure virtual function called")
12935
12936static int
12937base_breakpoint_insert_location (struct bp_location *bl)
12938{
12939 internal_error_pure_virtual_called ();
12940}
12941
12942static int
12943base_breakpoint_remove_location (struct bp_location *bl)
12944{
12945 internal_error_pure_virtual_called ();
12946}
12947
12948static int
12949base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12950 struct address_space *aspace,
12951 CORE_ADDR bp_addr,
12952 const struct target_waitstatus *ws)
12953{
12954 internal_error_pure_virtual_called ();
12955}
12956
12957static void
12958base_breakpoint_check_status (bpstat bs)
12959{
12960 /* Always stop. */
12961}
12962
12963/* A "works_in_software_mode" breakpoint_ops method that just internal
12964 errors. */
12965
12966static int
12967base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12968{
12969 internal_error_pure_virtual_called ();
12970}
12971
12972/* A "resources_needed" breakpoint_ops method that just internal
12973 errors. */
12974
12975static int
12976base_breakpoint_resources_needed (const struct bp_location *bl)
12977{
12978 internal_error_pure_virtual_called ();
12979}
12980
12981static enum print_stop_action
12982base_breakpoint_print_it (bpstat bs)
12983{
12984 internal_error_pure_virtual_called ();
12985}
12986
12987static void
12988base_breakpoint_print_one_detail (const struct breakpoint *self,
12989 struct ui_out *uiout)
12990{
12991 /* nothing */
12992}
12993
12994static void
12995base_breakpoint_print_mention (struct breakpoint *b)
12996{
12997 internal_error_pure_virtual_called ();
12998}
12999
13000static void
13001base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
13002{
13003 internal_error_pure_virtual_called ();
13004}
13005
13006static void
13007base_breakpoint_create_sals_from_location
13008 (const struct event_location *location,
13009 struct linespec_result *canonical,
13010 enum bptype type_wanted)
13011{
13012 internal_error_pure_virtual_called ();
13013}
13014
13015static void
13016base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13017 struct linespec_result *c,
13018 char *cond_string,
13019 char *extra_string,
13020 enum bptype type_wanted,
13021 enum bpdisp disposition,
13022 int thread,
13023 int task, int ignore_count,
13024 const struct breakpoint_ops *o,
13025 int from_tty, int enabled,
13026 int internal, unsigned flags)
13027{
13028 internal_error_pure_virtual_called ();
13029}
13030
13031static void
13032base_breakpoint_decode_location (struct breakpoint *b,
13033 const struct event_location *location,
13034 struct program_space *search_pspace,
13035 struct symtabs_and_lines *sals)
13036{
13037 internal_error_pure_virtual_called ();
13038}
13039
13040/* The default 'explains_signal' method. */
13041
13042static int
13043base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
13044{
13045 return 1;
13046}
13047
13048/* The default "after_condition_true" method. */
13049
13050static void
13051base_breakpoint_after_condition_true (struct bpstats *bs)
13052{
13053 /* Nothing to do. */
13054}
13055
13056struct breakpoint_ops base_breakpoint_ops =
13057{
13058 base_breakpoint_dtor,
13059 base_breakpoint_allocate_location,
13060 base_breakpoint_re_set,
13061 base_breakpoint_insert_location,
13062 base_breakpoint_remove_location,
13063 base_breakpoint_breakpoint_hit,
13064 base_breakpoint_check_status,
13065 base_breakpoint_resources_needed,
13066 base_breakpoint_works_in_software_mode,
13067 base_breakpoint_print_it,
13068 NULL,
13069 base_breakpoint_print_one_detail,
13070 base_breakpoint_print_mention,
13071 base_breakpoint_print_recreate,
13072 base_breakpoint_create_sals_from_location,
13073 base_breakpoint_create_breakpoints_sal,
13074 base_breakpoint_decode_location,
13075 base_breakpoint_explains_signal,
13076 base_breakpoint_after_condition_true,
13077};
13078
13079/* Default breakpoint_ops methods. */
13080
13081static void
13082bkpt_re_set (struct breakpoint *b)
13083{
13084 /* FIXME: is this still reachable? */
13085 if (breakpoint_event_location_empty_p (b))
13086 {
13087 /* Anything without a location can't be re-set. */
13088 delete_breakpoint (b);
13089 return;
13090 }
13091
13092 breakpoint_re_set_default (b);
13093}
13094
13095static int
13096bkpt_insert_location (struct bp_location *bl)
13097{
13098 if (bl->loc_type == bp_loc_hardware_breakpoint)
13099 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
13100 else
13101 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
13102}
13103
13104static int
13105bkpt_remove_location (struct bp_location *bl)
13106{
13107 if (bl->loc_type == bp_loc_hardware_breakpoint)
13108 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
13109 else
13110 return target_remove_breakpoint (bl->gdbarch, &bl->target_info);
13111}
13112
13113static int
13114bkpt_breakpoint_hit (const struct bp_location *bl,
13115 struct address_space *aspace, CORE_ADDR bp_addr,
13116 const struct target_waitstatus *ws)
13117{
13118 if (ws->kind != TARGET_WAITKIND_STOPPED
13119 || ws->value.sig != GDB_SIGNAL_TRAP)
13120 return 0;
13121
13122 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
13123 aspace, bp_addr))
13124 return 0;
13125
13126 if (overlay_debugging /* unmapped overlay section */
13127 && section_is_overlay (bl->section)
13128 && !section_is_mapped (bl->section))
13129 return 0;
13130
13131 return 1;
13132}
13133
13134static int
13135dprintf_breakpoint_hit (const struct bp_location *bl,
13136 struct address_space *aspace, CORE_ADDR bp_addr,
13137 const struct target_waitstatus *ws)
13138{
13139 if (dprintf_style == dprintf_style_agent
13140 && target_can_run_breakpoint_commands ())
13141 {
13142 /* An agent-style dprintf never causes a stop. If we see a trap
13143 for this address it must be for a breakpoint that happens to
13144 be set at the same address. */
13145 return 0;
13146 }
13147
13148 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
13149}
13150
13151static int
13152bkpt_resources_needed (const struct bp_location *bl)
13153{
13154 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
13155
13156 return 1;
13157}
13158
13159static enum print_stop_action
13160bkpt_print_it (bpstat bs)
13161{
13162 struct breakpoint *b;
13163 const struct bp_location *bl;
13164 int bp_temp;
13165 struct ui_out *uiout = current_uiout;
13166
13167 gdb_assert (bs->bp_location_at != NULL);
13168
13169 bl = bs->bp_location_at;
13170 b = bs->breakpoint_at;
13171
13172 bp_temp = b->disposition == disp_del;
13173 if (bl->address != bl->requested_address)
13174 breakpoint_adjustment_warning (bl->requested_address,
13175 bl->address,
13176 b->number, 1);
13177 annotate_breakpoint (b->number);
13178 maybe_print_thread_hit_breakpoint (uiout);
13179
13180 if (bp_temp)
13181 ui_out_text (uiout, "Temporary breakpoint ");
13182 else
13183 ui_out_text (uiout, "Breakpoint ");
13184 if (ui_out_is_mi_like_p (uiout))
13185 {
13186 ui_out_field_string (uiout, "reason",
13187 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
13188 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
13189 }
13190 ui_out_field_int (uiout, "bkptno", b->number);
13191 ui_out_text (uiout, ", ");
13192
13193 return PRINT_SRC_AND_LOC;
13194}
13195
13196static void
13197bkpt_print_mention (struct breakpoint *b)
13198{
13199 if (ui_out_is_mi_like_p (current_uiout))
13200 return;
13201
13202 switch (b->type)
13203 {
13204 case bp_breakpoint:
13205 case bp_gnu_ifunc_resolver:
13206 if (b->disposition == disp_del)
13207 printf_filtered (_("Temporary breakpoint"));
13208 else
13209 printf_filtered (_("Breakpoint"));
13210 printf_filtered (_(" %d"), b->number);
13211 if (b->type == bp_gnu_ifunc_resolver)
13212 printf_filtered (_(" at gnu-indirect-function resolver"));
13213 break;
13214 case bp_hardware_breakpoint:
13215 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
13216 break;
13217 case bp_dprintf:
13218 printf_filtered (_("Dprintf %d"), b->number);
13219 break;
13220 }
13221
13222 say_where (b);
13223}
13224
13225static void
13226bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13227{
13228 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
13229 fprintf_unfiltered (fp, "tbreak");
13230 else if (tp->type == bp_breakpoint)
13231 fprintf_unfiltered (fp, "break");
13232 else if (tp->type == bp_hardware_breakpoint
13233 && tp->disposition == disp_del)
13234 fprintf_unfiltered (fp, "thbreak");
13235 else if (tp->type == bp_hardware_breakpoint)
13236 fprintf_unfiltered (fp, "hbreak");
13237 else
13238 internal_error (__FILE__, __LINE__,
13239 _("unhandled breakpoint type %d"), (int) tp->type);
13240
13241 fprintf_unfiltered (fp, " %s",
13242 event_location_to_string (tp->location));
13243
13244 /* Print out extra_string if this breakpoint is pending. It might
13245 contain, for example, conditions that were set by the user. */
13246 if (tp->loc == NULL && tp->extra_string != NULL)
13247 fprintf_unfiltered (fp, " %s", tp->extra_string);
13248
13249 print_recreate_thread (tp, fp);
13250}
13251
13252static void
13253bkpt_create_sals_from_location (const struct event_location *location,
13254 struct linespec_result *canonical,
13255 enum bptype type_wanted)
13256{
13257 create_sals_from_location_default (location, canonical, type_wanted);
13258}
13259
13260static void
13261bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
13262 struct linespec_result *canonical,
13263 char *cond_string,
13264 char *extra_string,
13265 enum bptype type_wanted,
13266 enum bpdisp disposition,
13267 int thread,
13268 int task, int ignore_count,
13269 const struct breakpoint_ops *ops,
13270 int from_tty, int enabled,
13271 int internal, unsigned flags)
13272{
13273 create_breakpoints_sal_default (gdbarch, canonical,
13274 cond_string, extra_string,
13275 type_wanted,
13276 disposition, thread, task,
13277 ignore_count, ops, from_tty,
13278 enabled, internal, flags);
13279}
13280
13281static void
13282bkpt_decode_location (struct breakpoint *b,
13283 const struct event_location *location,
13284 struct program_space *search_pspace,
13285 struct symtabs_and_lines *sals)
13286{
13287 decode_location_default (b, location, search_pspace, sals);
13288}
13289
13290/* Virtual table for internal breakpoints. */
13291
13292static void
13293internal_bkpt_re_set (struct breakpoint *b)
13294{
13295 switch (b->type)
13296 {
13297 /* Delete overlay event and longjmp master breakpoints; they
13298 will be reset later by breakpoint_re_set. */
13299 case bp_overlay_event:
13300 case bp_longjmp_master:
13301 case bp_std_terminate_master:
13302 case bp_exception_master:
13303 delete_breakpoint (b);
13304 break;
13305
13306 /* This breakpoint is special, it's set up when the inferior
13307 starts and we really don't want to touch it. */
13308 case bp_shlib_event:
13309
13310 /* Like bp_shlib_event, this breakpoint type is special. Once
13311 it is set up, we do not want to touch it. */
13312 case bp_thread_event:
13313 break;
13314 }
13315}
13316
13317static void
13318internal_bkpt_check_status (bpstat bs)
13319{
13320 if (bs->breakpoint_at->type == bp_shlib_event)
13321 {
13322 /* If requested, stop when the dynamic linker notifies GDB of
13323 events. This allows the user to get control and place
13324 breakpoints in initializer routines for dynamically loaded
13325 objects (among other things). */
13326 bs->stop = stop_on_solib_events;
13327 bs->print = stop_on_solib_events;
13328 }
13329 else
13330 bs->stop = 0;
13331}
13332
13333static enum print_stop_action
13334internal_bkpt_print_it (bpstat bs)
13335{
13336 struct breakpoint *b;
13337
13338 b = bs->breakpoint_at;
13339
13340 switch (b->type)
13341 {
13342 case bp_shlib_event:
13343 /* Did we stop because the user set the stop_on_solib_events
13344 variable? (If so, we report this as a generic, "Stopped due
13345 to shlib event" message.) */
13346 print_solib_event (0);
13347 break;
13348
13349 case bp_thread_event:
13350 /* Not sure how we will get here.
13351 GDB should not stop for these breakpoints. */
13352 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
13353 break;
13354
13355 case bp_overlay_event:
13356 /* By analogy with the thread event, GDB should not stop for these. */
13357 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
13358 break;
13359
13360 case bp_longjmp_master:
13361 /* These should never be enabled. */
13362 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
13363 break;
13364
13365 case bp_std_terminate_master:
13366 /* These should never be enabled. */
13367 printf_filtered (_("std::terminate Master Breakpoint: "
13368 "gdb should not stop!\n"));
13369 break;
13370
13371 case bp_exception_master:
13372 /* These should never be enabled. */
13373 printf_filtered (_("Exception Master Breakpoint: "
13374 "gdb should not stop!\n"));
13375 break;
13376 }
13377
13378 return PRINT_NOTHING;
13379}
13380
13381static void
13382internal_bkpt_print_mention (struct breakpoint *b)
13383{
13384 /* Nothing to mention. These breakpoints are internal. */
13385}
13386
13387/* Virtual table for momentary breakpoints */
13388
13389static void
13390momentary_bkpt_re_set (struct breakpoint *b)
13391{
13392 /* Keep temporary breakpoints, which can be encountered when we step
13393 over a dlopen call and solib_add is resetting the breakpoints.
13394 Otherwise these should have been blown away via the cleanup chain
13395 or by breakpoint_init_inferior when we rerun the executable. */
13396}
13397
13398static void
13399momentary_bkpt_check_status (bpstat bs)
13400{
13401 /* Nothing. The point of these breakpoints is causing a stop. */
13402}
13403
13404static enum print_stop_action
13405momentary_bkpt_print_it (bpstat bs)
13406{
13407 return PRINT_UNKNOWN;
13408}
13409
13410static void
13411momentary_bkpt_print_mention (struct breakpoint *b)
13412{
13413 /* Nothing to mention. These breakpoints are internal. */
13414}
13415
13416/* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
13417
13418 It gets cleared already on the removal of the first one of such placed
13419 breakpoints. This is OK as they get all removed altogether. */
13420
13421static void
13422longjmp_bkpt_dtor (struct breakpoint *self)
13423{
13424 struct thread_info *tp = find_thread_global_id (self->thread);
13425
13426 if (tp)
13427 tp->initiating_frame = null_frame_id;
13428
13429 momentary_breakpoint_ops.dtor (self);
13430}
13431
13432/* Specific methods for probe breakpoints. */
13433
13434static int
13435bkpt_probe_insert_location (struct bp_location *bl)
13436{
13437 int v = bkpt_insert_location (bl);
13438
13439 if (v == 0)
13440 {
13441 /* The insertion was successful, now let's set the probe's semaphore
13442 if needed. */
13443 if (bl->probe.probe->pops->set_semaphore != NULL)
13444 bl->probe.probe->pops->set_semaphore (bl->probe.probe,
13445 bl->probe.objfile,
13446 bl->gdbarch);
13447 }
13448
13449 return v;
13450}
13451
13452static int
13453bkpt_probe_remove_location (struct bp_location *bl)
13454{
13455 /* Let's clear the semaphore before removing the location. */
13456 if (bl->probe.probe->pops->clear_semaphore != NULL)
13457 bl->probe.probe->pops->clear_semaphore (bl->probe.probe,
13458 bl->probe.objfile,
13459 bl->gdbarch);
13460
13461 return bkpt_remove_location (bl);
13462}
13463
13464static void
13465bkpt_probe_create_sals_from_location (const struct event_location *location,
13466 struct linespec_result *canonical,
13467 enum bptype type_wanted)
13468{
13469 struct linespec_sals lsal;
13470
13471 lsal.sals = parse_probes (location, NULL, canonical);
13472 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
13473 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13474}
13475
13476static void
13477bkpt_probe_decode_location (struct breakpoint *b,
13478 const struct event_location *location,
13479 struct program_space *search_pspace,
13480 struct symtabs_and_lines *sals)
13481{
13482 *sals = parse_probes (location, search_pspace, NULL);
13483 if (!sals->sals)
13484 error (_("probe not found"));
13485}
13486
13487/* The breakpoint_ops structure to be used in tracepoints. */
13488
13489static void
13490tracepoint_re_set (struct breakpoint *b)
13491{
13492 breakpoint_re_set_default (b);
13493}
13494
13495static int
13496tracepoint_breakpoint_hit (const struct bp_location *bl,
13497 struct address_space *aspace, CORE_ADDR bp_addr,
13498 const struct target_waitstatus *ws)
13499{
13500 /* By definition, the inferior does not report stops at
13501 tracepoints. */
13502 return 0;
13503}
13504
13505static void
13506tracepoint_print_one_detail (const struct breakpoint *self,
13507 struct ui_out *uiout)
13508{
13509 struct tracepoint *tp = (struct tracepoint *) self;
13510 if (tp->static_trace_marker_id)
13511 {
13512 gdb_assert (self->type == bp_static_tracepoint);
13513
13514 ui_out_text (uiout, "\tmarker id is ");
13515 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
13516 tp->static_trace_marker_id);
13517 ui_out_text (uiout, "\n");
13518 }
13519}
13520
13521static void
13522tracepoint_print_mention (struct breakpoint *b)
13523{
13524 if (ui_out_is_mi_like_p (current_uiout))
13525 return;
13526
13527 switch (b->type)
13528 {
13529 case bp_tracepoint:
13530 printf_filtered (_("Tracepoint"));
13531 printf_filtered (_(" %d"), b->number);
13532 break;
13533 case bp_fast_tracepoint:
13534 printf_filtered (_("Fast tracepoint"));
13535 printf_filtered (_(" %d"), b->number);
13536 break;
13537 case bp_static_tracepoint:
13538 printf_filtered (_("Static tracepoint"));
13539 printf_filtered (_(" %d"), b->number);
13540 break;
13541 default:
13542 internal_error (__FILE__, __LINE__,
13543 _("unhandled tracepoint type %d"), (int) b->type);
13544 }
13545
13546 say_where (b);
13547}
13548
13549static void
13550tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
13551{
13552 struct tracepoint *tp = (struct tracepoint *) self;
13553
13554 if (self->type == bp_fast_tracepoint)
13555 fprintf_unfiltered (fp, "ftrace");
13556 else if (self->type == bp_static_tracepoint)
13557 fprintf_unfiltered (fp, "strace");
13558 else if (self->type == bp_tracepoint)
13559 fprintf_unfiltered (fp, "trace");
13560 else
13561 internal_error (__FILE__, __LINE__,
13562 _("unhandled tracepoint type %d"), (int) self->type);
13563
13564 fprintf_unfiltered (fp, " %s",
13565 event_location_to_string (self->location));
13566 print_recreate_thread (self, fp);
13567
13568 if (tp->pass_count)
13569 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
13570}
13571
13572static void
13573tracepoint_create_sals_from_location (const struct event_location *location,
13574 struct linespec_result *canonical,
13575 enum bptype type_wanted)
13576{
13577 create_sals_from_location_default (location, canonical, type_wanted);
13578}
13579
13580static void
13581tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13582 struct linespec_result *canonical,
13583 char *cond_string,
13584 char *extra_string,
13585 enum bptype type_wanted,
13586 enum bpdisp disposition,
13587 int thread,
13588 int task, int ignore_count,
13589 const struct breakpoint_ops *ops,
13590 int from_tty, int enabled,
13591 int internal, unsigned flags)
13592{
13593 create_breakpoints_sal_default (gdbarch, canonical,
13594 cond_string, extra_string,
13595 type_wanted,
13596 disposition, thread, task,
13597 ignore_count, ops, from_tty,
13598 enabled, internal, flags);
13599}
13600
13601static void
13602tracepoint_decode_location (struct breakpoint *b,
13603 const struct event_location *location,
13604 struct program_space *search_pspace,
13605 struct symtabs_and_lines *sals)
13606{
13607 decode_location_default (b, location, search_pspace, sals);
13608}
13609
13610struct breakpoint_ops tracepoint_breakpoint_ops;
13611
13612/* The breakpoint_ops structure to be use on tracepoints placed in a
13613 static probe. */
13614
13615static void
13616tracepoint_probe_create_sals_from_location
13617 (const struct event_location *location,
13618 struct linespec_result *canonical,
13619 enum bptype type_wanted)
13620{
13621 /* We use the same method for breakpoint on probes. */
13622 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
13623}
13624
13625static void
13626tracepoint_probe_decode_location (struct breakpoint *b,
13627 const struct event_location *location,
13628 struct program_space *search_pspace,
13629 struct symtabs_and_lines *sals)
13630{
13631 /* We use the same method for breakpoint on probes. */
13632 bkpt_probe_decode_location (b, location, search_pspace, sals);
13633}
13634
13635static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13636
13637/* Dprintf breakpoint_ops methods. */
13638
13639static void
13640dprintf_re_set (struct breakpoint *b)
13641{
13642 breakpoint_re_set_default (b);
13643
13644 /* extra_string should never be non-NULL for dprintf. */
13645 gdb_assert (b->extra_string != NULL);
13646
13647 /* 1 - connect to target 1, that can run breakpoint commands.
13648 2 - create a dprintf, which resolves fine.
13649 3 - disconnect from target 1
13650 4 - connect to target 2, that can NOT run breakpoint commands.
13651
13652 After steps #3/#4, you'll want the dprintf command list to
13653 be updated, because target 1 and 2 may well return different
13654 answers for target_can_run_breakpoint_commands().
13655 Given absence of finer grained resetting, we get to do
13656 it all the time. */
13657 if (b->extra_string != NULL)
13658 update_dprintf_command_list (b);
13659}
13660
13661/* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13662
13663static void
13664dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13665{
13666 fprintf_unfiltered (fp, "dprintf %s,%s",
13667 event_location_to_string (tp->location),
13668 tp->extra_string);
13669 print_recreate_thread (tp, fp);
13670}
13671
13672/* Implement the "after_condition_true" breakpoint_ops method for
13673 dprintf.
13674
13675 dprintf's are implemented with regular commands in their command
13676 list, but we run the commands here instead of before presenting the
13677 stop to the user, as dprintf's don't actually cause a stop. This
13678 also makes it so that the commands of multiple dprintfs at the same
13679 address are all handled. */
13680
13681static void
13682dprintf_after_condition_true (struct bpstats *bs)
13683{
13684 struct cleanup *old_chain;
13685 struct bpstats tmp_bs = { NULL };
13686 struct bpstats *tmp_bs_p = &tmp_bs;
13687
13688 /* dprintf's never cause a stop. This wasn't set in the
13689 check_status hook instead because that would make the dprintf's
13690 condition not be evaluated. */
13691 bs->stop = 0;
13692
13693 /* Run the command list here. Take ownership of it instead of
13694 copying. We never want these commands to run later in
13695 bpstat_do_actions, if a breakpoint that causes a stop happens to
13696 be set at same address as this dprintf, or even if running the
13697 commands here throws. */
13698 tmp_bs.commands = bs->commands;
13699 bs->commands = NULL;
13700 old_chain = make_cleanup_decref_counted_command_line (&tmp_bs.commands);
13701
13702 bpstat_do_actions_1 (&tmp_bs_p);
13703
13704 /* 'tmp_bs.commands' will usually be NULL by now, but
13705 bpstat_do_actions_1 may return early without processing the whole
13706 list. */
13707 do_cleanups (old_chain);
13708}
13709
13710/* The breakpoint_ops structure to be used on static tracepoints with
13711 markers (`-m'). */
13712
13713static void
13714strace_marker_create_sals_from_location (const struct event_location *location,
13715 struct linespec_result *canonical,
13716 enum bptype type_wanted)
13717{
13718 struct linespec_sals lsal;
13719 const char *arg_start, *arg;
13720 char *str;
13721 struct cleanup *cleanup;
13722
13723 arg = arg_start = get_linespec_location (location);
13724 lsal.sals = decode_static_tracepoint_spec (&arg);
13725
13726 str = savestring (arg_start, arg - arg_start);
13727 cleanup = make_cleanup (xfree, str);
13728 canonical->location = new_linespec_location (&str);
13729 do_cleanups (cleanup);
13730
13731 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
13732 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13733}
13734
13735static void
13736strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13737 struct linespec_result *canonical,
13738 char *cond_string,
13739 char *extra_string,
13740 enum bptype type_wanted,
13741 enum bpdisp disposition,
13742 int thread,
13743 int task, int ignore_count,
13744 const struct breakpoint_ops *ops,
13745 int from_tty, int enabled,
13746 int internal, unsigned flags)
13747{
13748 int i;
13749 struct linespec_sals *lsal = VEC_index (linespec_sals,
13750 canonical->sals, 0);
13751
13752 /* If the user is creating a static tracepoint by marker id
13753 (strace -m MARKER_ID), then store the sals index, so that
13754 breakpoint_re_set can try to match up which of the newly
13755 found markers corresponds to this one, and, don't try to
13756 expand multiple locations for each sal, given than SALS
13757 already should contain all sals for MARKER_ID. */
13758
13759 for (i = 0; i < lsal->sals.nelts; ++i)
13760 {
13761 struct symtabs_and_lines expanded;
13762 struct tracepoint *tp;
13763 struct cleanup *old_chain;
13764 struct event_location *location;
13765
13766 expanded.nelts = 1;
13767 expanded.sals = &lsal->sals.sals[i];
13768
13769 location = copy_event_location (canonical->location);
13770 old_chain = make_cleanup_delete_event_location (location);
13771
13772 tp = XCNEW (struct tracepoint);
13773 init_breakpoint_sal (&tp->base, gdbarch, expanded,
13774 location, NULL,
13775 cond_string, extra_string,
13776 type_wanted, disposition,
13777 thread, task, ignore_count, ops,
13778 from_tty, enabled, internal, flags,
13779 canonical->special_display);
13780 /* Given that its possible to have multiple markers with
13781 the same string id, if the user is creating a static
13782 tracepoint by marker id ("strace -m MARKER_ID"), then
13783 store the sals index, so that breakpoint_re_set can
13784 try to match up which of the newly found markers
13785 corresponds to this one */
13786 tp->static_trace_marker_id_idx = i;
13787
13788 install_breakpoint (internal, &tp->base, 0);
13789
13790 discard_cleanups (old_chain);
13791 }
13792}
13793
13794static void
13795strace_marker_decode_location (struct breakpoint *b,
13796 const struct event_location *location,
13797 struct program_space *search_pspace,
13798 struct symtabs_and_lines *sals)
13799{
13800 struct tracepoint *tp = (struct tracepoint *) b;
13801 const char *s = get_linespec_location (location);
13802
13803 *sals = decode_static_tracepoint_spec (&s);
13804 if (sals->nelts > tp->static_trace_marker_id_idx)
13805 {
13806 sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx];
13807 sals->nelts = 1;
13808 }
13809 else
13810 error (_("marker %s not found"), tp->static_trace_marker_id);
13811}
13812
13813static struct breakpoint_ops strace_marker_breakpoint_ops;
13814
13815static int
13816strace_marker_p (struct breakpoint *b)
13817{
13818 return b->ops == &strace_marker_breakpoint_ops;
13819}
13820
13821/* Delete a breakpoint and clean up all traces of it in the data
13822 structures. */
13823
13824void
13825delete_breakpoint (struct breakpoint *bpt)
13826{
13827 struct breakpoint *b;
13828
13829 gdb_assert (bpt != NULL);
13830
13831 /* Has this bp already been deleted? This can happen because
13832 multiple lists can hold pointers to bp's. bpstat lists are
13833 especial culprits.
13834
13835 One example of this happening is a watchpoint's scope bp. When
13836 the scope bp triggers, we notice that the watchpoint is out of
13837 scope, and delete it. We also delete its scope bp. But the
13838 scope bp is marked "auto-deleting", and is already on a bpstat.
13839 That bpstat is then checked for auto-deleting bp's, which are
13840 deleted.
13841
13842 A real solution to this problem might involve reference counts in
13843 bp's, and/or giving them pointers back to their referencing
13844 bpstat's, and teaching delete_breakpoint to only free a bp's
13845 storage when no more references were extent. A cheaper bandaid
13846 was chosen. */
13847 if (bpt->type == bp_none)
13848 return;
13849
13850 /* At least avoid this stale reference until the reference counting
13851 of breakpoints gets resolved. */
13852 if (bpt->related_breakpoint != bpt)
13853 {
13854 struct breakpoint *related;
13855 struct watchpoint *w;
13856
13857 if (bpt->type == bp_watchpoint_scope)
13858 w = (struct watchpoint *) bpt->related_breakpoint;
13859 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
13860 w = (struct watchpoint *) bpt;
13861 else
13862 w = NULL;
13863 if (w != NULL)
13864 watchpoint_del_at_next_stop (w);
13865
13866 /* Unlink bpt from the bpt->related_breakpoint ring. */
13867 for (related = bpt; related->related_breakpoint != bpt;
13868 related = related->related_breakpoint);
13869 related->related_breakpoint = bpt->related_breakpoint;
13870 bpt->related_breakpoint = bpt;
13871 }
13872
13873 /* watch_command_1 creates a watchpoint but only sets its number if
13874 update_watchpoint succeeds in creating its bp_locations. If there's
13875 a problem in that process, we'll be asked to delete the half-created
13876 watchpoint. In that case, don't announce the deletion. */
13877 if (bpt->number)
13878 observer_notify_breakpoint_deleted (bpt);
13879
13880 if (breakpoint_chain == bpt)
13881 breakpoint_chain = bpt->next;
13882
13883 ALL_BREAKPOINTS (b)
13884 if (b->next == bpt)
13885 {
13886 b->next = bpt->next;
13887 break;
13888 }
13889
13890 /* Be sure no bpstat's are pointing at the breakpoint after it's
13891 been freed. */
13892 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
13893 in all threads for now. Note that we cannot just remove bpstats
13894 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13895 commands are associated with the bpstat; if we remove it here,
13896 then the later call to bpstat_do_actions (&stop_bpstat); in
13897 event-top.c won't do anything, and temporary breakpoints with
13898 commands won't work. */
13899
13900 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13901
13902 /* Now that breakpoint is removed from breakpoint list, update the
13903 global location list. This will remove locations that used to
13904 belong to this breakpoint. Do this before freeing the breakpoint
13905 itself, since remove_breakpoint looks at location's owner. It
13906 might be better design to have location completely
13907 self-contained, but it's not the case now. */
13908 update_global_location_list (UGLL_DONT_INSERT);
13909
13910 bpt->ops->dtor (bpt);
13911 /* On the chance that someone will soon try again to delete this
13912 same bp, we mark it as deleted before freeing its storage. */
13913 bpt->type = bp_none;
13914 xfree (bpt);
13915}
13916
13917static void
13918do_delete_breakpoint_cleanup (void *b)
13919{
13920 delete_breakpoint ((struct breakpoint *) b);
13921}
13922
13923struct cleanup *
13924make_cleanup_delete_breakpoint (struct breakpoint *b)
13925{
13926 return make_cleanup (do_delete_breakpoint_cleanup, b);
13927}
13928
13929/* Iterator function to call a user-provided callback function once
13930 for each of B and its related breakpoints. */
13931
13932static void
13933iterate_over_related_breakpoints (struct breakpoint *b,
13934 void (*function) (struct breakpoint *,
13935 void *),
13936 void *data)
13937{
13938 struct breakpoint *related;
13939
13940 related = b;
13941 do
13942 {
13943 struct breakpoint *next;
13944
13945 /* FUNCTION may delete RELATED. */
13946 next = related->related_breakpoint;
13947
13948 if (next == related)
13949 {
13950 /* RELATED is the last ring entry. */
13951 function (related, data);
13952
13953 /* FUNCTION may have deleted it, so we'd never reach back to
13954 B. There's nothing left to do anyway, so just break
13955 out. */
13956 break;
13957 }
13958 else
13959 function (related, data);
13960
13961 related = next;
13962 }
13963 while (related != b);
13964}
13965
13966static void
13967do_delete_breakpoint (struct breakpoint *b, void *ignore)
13968{
13969 delete_breakpoint (b);
13970}
13971
13972/* A callback for map_breakpoint_numbers that calls
13973 delete_breakpoint. */
13974
13975static void
13976do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
13977{
13978 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
13979}
13980
13981void
13982delete_command (char *arg, int from_tty)
13983{
13984 struct breakpoint *b, *b_tmp;
13985
13986 dont_repeat ();
13987
13988 if (arg == 0)
13989 {
13990 int breaks_to_delete = 0;
13991
13992 /* Delete all breakpoints if no argument. Do not delete
13993 internal breakpoints, these have to be deleted with an
13994 explicit breakpoint number argument. */
13995 ALL_BREAKPOINTS (b)
13996 if (user_breakpoint_p (b))
13997 {
13998 breaks_to_delete = 1;
13999 break;
14000 }
14001
14002 /* Ask user only if there are some breakpoints to delete. */
14003 if (!from_tty
14004 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
14005 {
14006 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14007 if (user_breakpoint_p (b))
14008 delete_breakpoint (b);
14009 }
14010 }
14011 else
14012 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
14013}
14014
14015/* Return true if all locations of B bound to PSPACE are pending. If
14016 PSPACE is NULL, all locations of all program spaces are
14017 considered. */
14018
14019static int
14020all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
14021{
14022 struct bp_location *loc;
14023
14024 for (loc = b->loc; loc != NULL; loc = loc->next)
14025 if ((pspace == NULL
14026 || loc->pspace == pspace)
14027 && !loc->shlib_disabled
14028 && !loc->pspace->executing_startup)
14029 return 0;
14030 return 1;
14031}
14032
14033/* Subroutine of update_breakpoint_locations to simplify it.
14034 Return non-zero if multiple fns in list LOC have the same name.
14035 Null names are ignored. */
14036
14037static int
14038ambiguous_names_p (struct bp_location *loc)
14039{
14040 struct bp_location *l;
14041 htab_t htab = htab_create_alloc (13, htab_hash_string,
14042 (int (*) (const void *,
14043 const void *)) streq,
14044 NULL, xcalloc, xfree);
14045
14046 for (l = loc; l != NULL; l = l->next)
14047 {
14048 const char **slot;
14049 const char *name = l->function_name;
14050
14051 /* Allow for some names to be NULL, ignore them. */
14052 if (name == NULL)
14053 continue;
14054
14055 slot = (const char **) htab_find_slot (htab, (const void *) name,
14056 INSERT);
14057 /* NOTE: We can assume slot != NULL here because xcalloc never
14058 returns NULL. */
14059 if (*slot != NULL)
14060 {
14061 htab_delete (htab);
14062 return 1;
14063 }
14064 *slot = name;
14065 }
14066
14067 htab_delete (htab);
14068 return 0;
14069}
14070
14071/* When symbols change, it probably means the sources changed as well,
14072 and it might mean the static tracepoint markers are no longer at
14073 the same address or line numbers they used to be at last we
14074 checked. Losing your static tracepoints whenever you rebuild is
14075 undesirable. This function tries to resync/rematch gdb static
14076 tracepoints with the markers on the target, for static tracepoints
14077 that have not been set by marker id. Static tracepoint that have
14078 been set by marker id are reset by marker id in breakpoint_re_set.
14079 The heuristic is:
14080
14081 1) For a tracepoint set at a specific address, look for a marker at
14082 the old PC. If one is found there, assume to be the same marker.
14083 If the name / string id of the marker found is different from the
14084 previous known name, assume that means the user renamed the marker
14085 in the sources, and output a warning.
14086
14087 2) For a tracepoint set at a given line number, look for a marker
14088 at the new address of the old line number. If one is found there,
14089 assume to be the same marker. If the name / string id of the
14090 marker found is different from the previous known name, assume that
14091 means the user renamed the marker in the sources, and output a
14092 warning.
14093
14094 3) If a marker is no longer found at the same address or line, it
14095 may mean the marker no longer exists. But it may also just mean
14096 the code changed a bit. Maybe the user added a few lines of code
14097 that made the marker move up or down (in line number terms). Ask
14098 the target for info about the marker with the string id as we knew
14099 it. If found, update line number and address in the matching
14100 static tracepoint. This will get confused if there's more than one
14101 marker with the same ID (possible in UST, although unadvised
14102 precisely because it confuses tools). */
14103
14104static struct symtab_and_line
14105update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
14106{
14107 struct tracepoint *tp = (struct tracepoint *) b;
14108 struct static_tracepoint_marker marker;
14109 CORE_ADDR pc;
14110
14111 pc = sal.pc;
14112 if (sal.line)
14113 find_line_pc (sal.symtab, sal.line, &pc);
14114
14115 if (target_static_tracepoint_marker_at (pc, &marker))
14116 {
14117 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
14118 warning (_("static tracepoint %d changed probed marker from %s to %s"),
14119 b->number,
14120 tp->static_trace_marker_id, marker.str_id);
14121
14122 xfree (tp->static_trace_marker_id);
14123 tp->static_trace_marker_id = xstrdup (marker.str_id);
14124 release_static_tracepoint_marker (&marker);
14125
14126 return sal;
14127 }
14128
14129 /* Old marker wasn't found on target at lineno. Try looking it up
14130 by string ID. */
14131 if (!sal.explicit_pc
14132 && sal.line != 0
14133 && sal.symtab != NULL
14134 && tp->static_trace_marker_id != NULL)
14135 {
14136 VEC(static_tracepoint_marker_p) *markers;
14137
14138 markers
14139 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
14140
14141 if (!VEC_empty(static_tracepoint_marker_p, markers))
14142 {
14143 struct symtab_and_line sal2;
14144 struct symbol *sym;
14145 struct static_tracepoint_marker *tpmarker;
14146 struct ui_out *uiout = current_uiout;
14147 struct explicit_location explicit_loc;
14148
14149 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
14150
14151 xfree (tp->static_trace_marker_id);
14152 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
14153
14154 warning (_("marker for static tracepoint %d (%s) not "
14155 "found at previous line number"),
14156 b->number, tp->static_trace_marker_id);
14157
14158 init_sal (&sal2);
14159
14160 sal2.pc = tpmarker->address;
14161
14162 sal2 = find_pc_line (tpmarker->address, 0);
14163 sym = find_pc_sect_function (tpmarker->address, NULL);
14164 ui_out_text (uiout, "Now in ");
14165 if (sym)
14166 {
14167 ui_out_field_string (uiout, "func",
14168 SYMBOL_PRINT_NAME (sym));
14169 ui_out_text (uiout, " at ");
14170 }
14171 ui_out_field_string (uiout, "file",
14172 symtab_to_filename_for_display (sal2.symtab));
14173 ui_out_text (uiout, ":");
14174
14175 if (ui_out_is_mi_like_p (uiout))
14176 {
14177 const char *fullname = symtab_to_fullname (sal2.symtab);
14178
14179 ui_out_field_string (uiout, "fullname", fullname);
14180 }
14181
14182 ui_out_field_int (uiout, "line", sal2.line);
14183 ui_out_text (uiout, "\n");
14184
14185 b->loc->line_number = sal2.line;
14186 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
14187
14188 delete_event_location (b->location);
14189 initialize_explicit_location (&explicit_loc);
14190 explicit_loc.source_filename
14191 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
14192 explicit_loc.line_offset.offset = b->loc->line_number;
14193 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
14194 b->location = new_explicit_location (&explicit_loc);
14195
14196 /* Might be nice to check if function changed, and warn if
14197 so. */
14198
14199 release_static_tracepoint_marker (tpmarker);
14200 }
14201 }
14202 return sal;
14203}
14204
14205/* Returns 1 iff locations A and B are sufficiently same that
14206 we don't need to report breakpoint as changed. */
14207
14208static int
14209locations_are_equal (struct bp_location *a, struct bp_location *b)
14210{
14211 while (a && b)
14212 {
14213 if (a->address != b->address)
14214 return 0;
14215
14216 if (a->shlib_disabled != b->shlib_disabled)
14217 return 0;
14218
14219 if (a->enabled != b->enabled)
14220 return 0;
14221
14222 a = a->next;
14223 b = b->next;
14224 }
14225
14226 if ((a == NULL) != (b == NULL))
14227 return 0;
14228
14229 return 1;
14230}
14231
14232/* Split all locations of B that are bound to PSPACE out of B's
14233 location list to a separate list and return that list's head. If
14234 PSPACE is NULL, hoist out all locations of B. */
14235
14236static struct bp_location *
14237hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
14238{
14239 struct bp_location head;
14240 struct bp_location *i = b->loc;
14241 struct bp_location **i_link = &b->loc;
14242 struct bp_location *hoisted = &head;
14243
14244 if (pspace == NULL)
14245 {
14246 i = b->loc;
14247 b->loc = NULL;
14248 return i;
14249 }
14250
14251 head.next = NULL;
14252
14253 while (i != NULL)
14254 {
14255 if (i->pspace == pspace)
14256 {
14257 *i_link = i->next;
14258 i->next = NULL;
14259 hoisted->next = i;
14260 hoisted = i;
14261 }
14262 else
14263 i_link = &i->next;
14264 i = *i_link;
14265 }
14266
14267 return head.next;
14268}
14269
14270/* Create new breakpoint locations for B (a hardware or software
14271 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
14272 zero, then B is a ranged breakpoint. Only recreates locations for
14273 FILTER_PSPACE. Locations of other program spaces are left
14274 untouched. */
14275
14276void
14277update_breakpoint_locations (struct breakpoint *b,
14278 struct program_space *filter_pspace,
14279 struct symtabs_and_lines sals,
14280 struct symtabs_and_lines sals_end)
14281{
14282 int i;
14283 struct bp_location *existing_locations;
14284
14285 if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1))
14286 {
14287 /* Ranged breakpoints have only one start location and one end
14288 location. */
14289 b->enable_state = bp_disabled;
14290 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
14291 "multiple locations found\n"),
14292 b->number);
14293 return;
14294 }
14295
14296 /* If there's no new locations, and all existing locations are
14297 pending, don't do anything. This optimizes the common case where
14298 all locations are in the same shared library, that was unloaded.
14299 We'd like to retain the location, so that when the library is
14300 loaded again, we don't loose the enabled/disabled status of the
14301 individual locations. */
14302 if (all_locations_are_pending (b, filter_pspace) && sals.nelts == 0)
14303 return;
14304
14305 existing_locations = hoist_existing_locations (b, filter_pspace);
14306
14307 for (i = 0; i < sals.nelts; ++i)
14308 {
14309 struct bp_location *new_loc;
14310
14311 switch_to_program_space_and_thread (sals.sals[i].pspace);
14312
14313 new_loc = add_location_to_breakpoint (b, &(sals.sals[i]));
14314
14315 /* Reparse conditions, they might contain references to the
14316 old symtab. */
14317 if (b->cond_string != NULL)
14318 {
14319 const char *s;
14320
14321 s = b->cond_string;
14322 TRY
14323 {
14324 new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc,
14325 block_for_pc (sals.sals[i].pc),
14326 0);
14327 }
14328 CATCH (e, RETURN_MASK_ERROR)
14329 {
14330 warning (_("failed to reevaluate condition "
14331 "for breakpoint %d: %s"),
14332 b->number, e.message);
14333 new_loc->enabled = 0;
14334 }
14335 END_CATCH
14336 }
14337
14338 if (sals_end.nelts)
14339 {
14340 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
14341
14342 new_loc->length = end - sals.sals[0].pc + 1;
14343 }
14344 }
14345
14346 /* If possible, carry over 'disable' status from existing
14347 breakpoints. */
14348 {
14349 struct bp_location *e = existing_locations;
14350 /* If there are multiple breakpoints with the same function name,
14351 e.g. for inline functions, comparing function names won't work.
14352 Instead compare pc addresses; this is just a heuristic as things
14353 may have moved, but in practice it gives the correct answer
14354 often enough until a better solution is found. */
14355 int have_ambiguous_names = ambiguous_names_p (b->loc);
14356
14357 for (; e; e = e->next)
14358 {
14359 if (!e->enabled && e->function_name)
14360 {
14361 struct bp_location *l = b->loc;
14362 if (have_ambiguous_names)
14363 {
14364 for (; l; l = l->next)
14365 if (breakpoint_locations_match (e, l))
14366 {
14367 l->enabled = 0;
14368 break;
14369 }
14370 }
14371 else
14372 {
14373 for (; l; l = l->next)
14374 if (l->function_name
14375 && strcmp (e->function_name, l->function_name) == 0)
14376 {
14377 l->enabled = 0;
14378 break;
14379 }
14380 }
14381 }
14382 }
14383 }
14384
14385 if (!locations_are_equal (existing_locations, b->loc))
14386 observer_notify_breakpoint_modified (b);
14387}
14388
14389/* Find the SaL locations corresponding to the given LOCATION.
14390 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
14391
14392static struct symtabs_and_lines
14393location_to_sals (struct breakpoint *b, struct event_location *location,
14394 struct program_space *search_pspace, int *found)
14395{
14396 struct symtabs_and_lines sals = {0};
14397 struct gdb_exception exception = exception_none;
14398
14399 gdb_assert (b->ops != NULL);
14400
14401 TRY
14402 {
14403 b->ops->decode_location (b, location, search_pspace, &sals);
14404 }
14405 CATCH (e, RETURN_MASK_ERROR)
14406 {
14407 int not_found_and_ok = 0;
14408
14409 exception = e;
14410
14411 /* For pending breakpoints, it's expected that parsing will
14412 fail until the right shared library is loaded. User has
14413 already told to create pending breakpoints and don't need
14414 extra messages. If breakpoint is in bp_shlib_disabled
14415 state, then user already saw the message about that
14416 breakpoint being disabled, and don't want to see more
14417 errors. */
14418 if (e.error == NOT_FOUND_ERROR
14419 && (b->condition_not_parsed
14420 || (b->loc != NULL
14421 && search_pspace != NULL
14422 && b->loc->pspace != search_pspace)
14423 || (b->loc && b->loc->shlib_disabled)
14424 || (b->loc && b->loc->pspace->executing_startup)
14425 || b->enable_state == bp_disabled))
14426 not_found_and_ok = 1;
14427
14428 if (!not_found_and_ok)
14429 {
14430 /* We surely don't want to warn about the same breakpoint
14431 10 times. One solution, implemented here, is disable
14432 the breakpoint on error. Another solution would be to
14433 have separate 'warning emitted' flag. Since this
14434 happens only when a binary has changed, I don't know
14435 which approach is better. */
14436 b->enable_state = bp_disabled;
14437 throw_exception (e);
14438 }
14439 }
14440 END_CATCH
14441
14442 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
14443 {
14444 int i;
14445
14446 for (i = 0; i < sals.nelts; ++i)
14447 resolve_sal_pc (&sals.sals[i]);
14448 if (b->condition_not_parsed && b->extra_string != NULL)
14449 {
14450 char *cond_string, *extra_string;
14451 int thread, task;
14452
14453 find_condition_and_thread (b->extra_string, sals.sals[0].pc,
14454 &cond_string, &thread, &task,
14455 &extra_string);
14456 gdb_assert (b->cond_string == NULL);
14457 if (cond_string)
14458 b->cond_string = cond_string;
14459 b->thread = thread;
14460 b->task = task;
14461 if (extra_string)
14462 {
14463 xfree (b->extra_string);
14464 b->extra_string = extra_string;
14465 }
14466 b->condition_not_parsed = 0;
14467 }
14468
14469 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
14470 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
14471
14472 *found = 1;
14473 }
14474 else
14475 *found = 0;
14476
14477 return sals;
14478}
14479
14480/* The default re_set method, for typical hardware or software
14481 breakpoints. Reevaluate the breakpoint and recreate its
14482 locations. */
14483
14484static void
14485breakpoint_re_set_default (struct breakpoint *b)
14486{
14487 int found;
14488 struct symtabs_and_lines sals, sals_end;
14489 struct symtabs_and_lines expanded = {0};
14490 struct symtabs_and_lines expanded_end = {0};
14491 struct program_space *filter_pspace = current_program_space;
14492
14493 sals = location_to_sals (b, b->location, filter_pspace, &found);
14494 if (found)
14495 {
14496 make_cleanup (xfree, sals.sals);
14497 expanded = sals;
14498 }
14499
14500 if (b->location_range_end != NULL)
14501 {
14502 sals_end = location_to_sals (b, b->location_range_end,
14503 filter_pspace, &found);
14504 if (found)
14505 {
14506 make_cleanup (xfree, sals_end.sals);
14507 expanded_end = sals_end;
14508 }
14509 }
14510
14511 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
14512}
14513
14514/* Default method for creating SALs from an address string. It basically
14515 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
14516
14517static void
14518create_sals_from_location_default (const struct event_location *location,
14519 struct linespec_result *canonical,
14520 enum bptype type_wanted)
14521{
14522 parse_breakpoint_sals (location, canonical);
14523}
14524
14525/* Call create_breakpoints_sal for the given arguments. This is the default
14526 function for the `create_breakpoints_sal' method of
14527 breakpoint_ops. */
14528
14529static void
14530create_breakpoints_sal_default (struct gdbarch *gdbarch,
14531 struct linespec_result *canonical,
14532 char *cond_string,
14533 char *extra_string,
14534 enum bptype type_wanted,
14535 enum bpdisp disposition,
14536 int thread,
14537 int task, int ignore_count,
14538 const struct breakpoint_ops *ops,
14539 int from_tty, int enabled,
14540 int internal, unsigned flags)
14541{
14542 create_breakpoints_sal (gdbarch, canonical, cond_string,
14543 extra_string,
14544 type_wanted, disposition,
14545 thread, task, ignore_count, ops, from_tty,
14546 enabled, internal, flags);
14547}
14548
14549/* Decode the line represented by S by calling decode_line_full. This is the
14550 default function for the `decode_location' method of breakpoint_ops. */
14551
14552static void
14553decode_location_default (struct breakpoint *b,
14554 const struct event_location *location,
14555 struct program_space *search_pspace,
14556 struct symtabs_and_lines *sals)
14557{
14558 struct linespec_result canonical;
14559
14560 init_linespec_result (&canonical);
14561 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
14562 (struct symtab *) NULL, 0,
14563 &canonical, multiple_symbols_all,
14564 b->filter);
14565
14566 /* We should get 0 or 1 resulting SALs. */
14567 gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2);
14568
14569 if (VEC_length (linespec_sals, canonical.sals) > 0)
14570 {
14571 struct linespec_sals *lsal;
14572
14573 lsal = VEC_index (linespec_sals, canonical.sals, 0);
14574 *sals = lsal->sals;
14575 /* Arrange it so the destructor does not free the
14576 contents. */
14577 lsal->sals.sals = NULL;
14578 }
14579
14580 destroy_linespec_result (&canonical);
14581}
14582
14583/* Prepare the global context for a re-set of breakpoint B. */
14584
14585static struct cleanup *
14586prepare_re_set_context (struct breakpoint *b)
14587{
14588 input_radix = b->input_radix;
14589 set_language (b->language);
14590
14591 return make_cleanup (null_cleanup, NULL);
14592}
14593
14594/* Reset a breakpoint given it's struct breakpoint * BINT.
14595 The value we return ends up being the return value from catch_errors.
14596 Unused in this case. */
14597
14598static int
14599breakpoint_re_set_one (void *bint)
14600{
14601 /* Get past catch_errs. */
14602 struct breakpoint *b = (struct breakpoint *) bint;
14603 struct cleanup *cleanups;
14604
14605 cleanups = prepare_re_set_context (b);
14606 b->ops->re_set (b);
14607 do_cleanups (cleanups);
14608 return 0;
14609}
14610
14611/* Re-set breakpoint locations for the current program space.
14612 Locations bound to other program spaces are left untouched. */
14613
14614void
14615breakpoint_re_set (void)
14616{
14617 struct breakpoint *b, *b_tmp;
14618 enum language save_language;
14619 int save_input_radix;
14620 struct cleanup *old_chain;
14621
14622 save_language = current_language->la_language;
14623 save_input_radix = input_radix;
14624 old_chain = save_current_space_and_thread ();
14625
14626 /* Note: we must not try to insert locations until after all
14627 breakpoints have been re-set. Otherwise, e.g., when re-setting
14628 breakpoint 1, we'd insert the locations of breakpoint 2, which
14629 hadn't been re-set yet, and thus may have stale locations. */
14630
14631 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14632 {
14633 /* Format possible error msg. */
14634 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
14635 b->number);
14636 struct cleanup *cleanups = make_cleanup (xfree, message);
14637 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
14638 do_cleanups (cleanups);
14639 }
14640 set_language (save_language);
14641 input_radix = save_input_radix;
14642
14643 jit_breakpoint_re_set ();
14644
14645 do_cleanups (old_chain);
14646
14647 create_overlay_event_breakpoint ();
14648 create_longjmp_master_breakpoint ();
14649 create_std_terminate_master_breakpoint ();
14650 create_exception_master_breakpoint ();
14651
14652 /* Now we can insert. */
14653 update_global_location_list (UGLL_MAY_INSERT);
14654}
14655\f
14656/* Reset the thread number of this breakpoint:
14657
14658 - If the breakpoint is for all threads, leave it as-is.
14659 - Else, reset it to the current thread for inferior_ptid. */
14660void
14661breakpoint_re_set_thread (struct breakpoint *b)
14662{
14663 if (b->thread != -1)
14664 {
14665 if (in_thread_list (inferior_ptid))
14666 b->thread = ptid_to_global_thread_id (inferior_ptid);
14667
14668 /* We're being called after following a fork. The new fork is
14669 selected as current, and unless this was a vfork will have a
14670 different program space from the original thread. Reset that
14671 as well. */
14672 b->loc->pspace = current_program_space;
14673 }
14674}
14675
14676/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14677 If from_tty is nonzero, it prints a message to that effect,
14678 which ends with a period (no newline). */
14679
14680void
14681set_ignore_count (int bptnum, int count, int from_tty)
14682{
14683 struct breakpoint *b;
14684
14685 if (count < 0)
14686 count = 0;
14687
14688 ALL_BREAKPOINTS (b)
14689 if (b->number == bptnum)
14690 {
14691 if (is_tracepoint (b))
14692 {
14693 if (from_tty && count != 0)
14694 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14695 bptnum);
14696 return;
14697 }
14698
14699 b->ignore_count = count;
14700 if (from_tty)
14701 {
14702 if (count == 0)
14703 printf_filtered (_("Will stop next time "
14704 "breakpoint %d is reached."),
14705 bptnum);
14706 else if (count == 1)
14707 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
14708 bptnum);
14709 else
14710 printf_filtered (_("Will ignore next %d "
14711 "crossings of breakpoint %d."),
14712 count, bptnum);
14713 }
14714 observer_notify_breakpoint_modified (b);
14715 return;
14716 }
14717
14718 error (_("No breakpoint number %d."), bptnum);
14719}
14720
14721/* Command to set ignore-count of breakpoint N to COUNT. */
14722
14723static void
14724ignore_command (char *args, int from_tty)
14725{
14726 char *p = args;
14727 int num;
14728
14729 if (p == 0)
14730 error_no_arg (_("a breakpoint number"));
14731
14732 num = get_number (&p);
14733 if (num == 0)
14734 error (_("bad breakpoint number: '%s'"), args);
14735 if (*p == 0)
14736 error (_("Second argument (specified ignore-count) is missing."));
14737
14738 set_ignore_count (num,
14739 longest_to_int (value_as_long (parse_and_eval (p))),
14740 from_tty);
14741 if (from_tty)
14742 printf_filtered ("\n");
14743}
14744\f
14745/* Call FUNCTION on each of the breakpoints
14746 whose numbers are given in ARGS. */
14747
14748static void
14749map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
14750 void *),
14751 void *data)
14752{
14753 int num;
14754 struct breakpoint *b, *tmp;
14755 int match;
14756 struct get_number_or_range_state state;
14757
14758 if (args == 0 || *args == '\0')
14759 error_no_arg (_("one or more breakpoint numbers"));
14760
14761 init_number_or_range (&state, args);
14762
14763 while (!state.finished)
14764 {
14765 const char *p = state.string;
14766
14767 match = 0;
14768
14769 num = get_number_or_range (&state);
14770 if (num == 0)
14771 {
14772 warning (_("bad breakpoint number at or near '%s'"), p);
14773 }
14774 else
14775 {
14776 ALL_BREAKPOINTS_SAFE (b, tmp)
14777 if (b->number == num)
14778 {
14779 match = 1;
14780 function (b, data);
14781 break;
14782 }
14783 if (match == 0)
14784 printf_unfiltered (_("No breakpoint number %d.\n"), num);
14785 }
14786 }
14787}
14788
14789static struct bp_location *
14790find_location_by_number (char *number)
14791{
14792 char *dot = strchr (number, '.');
14793 char *p1;
14794 int bp_num;
14795 int loc_num;
14796 struct breakpoint *b;
14797 struct bp_location *loc;
14798
14799 *dot = '\0';
14800
14801 p1 = number;
14802 bp_num = get_number (&p1);
14803 if (bp_num == 0)
14804 error (_("Bad breakpoint number '%s'"), number);
14805
14806 ALL_BREAKPOINTS (b)
14807 if (b->number == bp_num)
14808 {
14809 break;
14810 }
14811
14812 if (!b || b->number != bp_num)
14813 error (_("Bad breakpoint number '%s'"), number);
14814
14815 p1 = dot+1;
14816 loc_num = get_number (&p1);
14817 if (loc_num == 0)
14818 error (_("Bad breakpoint location number '%s'"), number);
14819
14820 --loc_num;
14821 loc = b->loc;
14822 for (;loc_num && loc; --loc_num, loc = loc->next)
14823 ;
14824 if (!loc)
14825 error (_("Bad breakpoint location number '%s'"), dot+1);
14826
14827 return loc;
14828}
14829
14830
14831/* Set ignore-count of breakpoint number BPTNUM to COUNT.
14832 If from_tty is nonzero, it prints a message to that effect,
14833 which ends with a period (no newline). */
14834
14835void
14836disable_breakpoint (struct breakpoint *bpt)
14837{
14838 /* Never disable a watchpoint scope breakpoint; we want to
14839 hit them when we leave scope so we can delete both the
14840 watchpoint and its scope breakpoint at that time. */
14841 if (bpt->type == bp_watchpoint_scope)
14842 return;
14843
14844 bpt->enable_state = bp_disabled;
14845
14846 /* Mark breakpoint locations modified. */
14847 mark_breakpoint_modified (bpt);
14848
14849 if (target_supports_enable_disable_tracepoint ()
14850 && current_trace_status ()->running && is_tracepoint (bpt))
14851 {
14852 struct bp_location *location;
14853
14854 for (location = bpt->loc; location; location = location->next)
14855 target_disable_tracepoint (location);
14856 }
14857
14858 update_global_location_list (UGLL_DONT_INSERT);
14859
14860 observer_notify_breakpoint_modified (bpt);
14861}
14862
14863/* A callback for iterate_over_related_breakpoints. */
14864
14865static void
14866do_disable_breakpoint (struct breakpoint *b, void *ignore)
14867{
14868 disable_breakpoint (b);
14869}
14870
14871/* A callback for map_breakpoint_numbers that calls
14872 disable_breakpoint. */
14873
14874static void
14875do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
14876{
14877 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
14878}
14879
14880static void
14881disable_command (char *args, int from_tty)
14882{
14883 if (args == 0)
14884 {
14885 struct breakpoint *bpt;
14886
14887 ALL_BREAKPOINTS (bpt)
14888 if (user_breakpoint_p (bpt))
14889 disable_breakpoint (bpt);
14890 }
14891 else
14892 {
14893 char *num = extract_arg (&args);
14894
14895 while (num)
14896 {
14897 if (strchr (num, '.'))
14898 {
14899 struct bp_location *loc = find_location_by_number (num);
14900
14901 if (loc)
14902 {
14903 if (loc->enabled)
14904 {
14905 loc->enabled = 0;
14906 mark_breakpoint_location_modified (loc);
14907 }
14908 if (target_supports_enable_disable_tracepoint ()
14909 && current_trace_status ()->running && loc->owner
14910 && is_tracepoint (loc->owner))
14911 target_disable_tracepoint (loc);
14912 }
14913 update_global_location_list (UGLL_DONT_INSERT);
14914 }
14915 else
14916 map_breakpoint_numbers (num, do_map_disable_breakpoint, NULL);
14917 num = extract_arg (&args);
14918 }
14919 }
14920}
14921
14922static void
14923enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14924 int count)
14925{
14926 int target_resources_ok;
14927
14928 if (bpt->type == bp_hardware_breakpoint)
14929 {
14930 int i;
14931 i = hw_breakpoint_used_count ();
14932 target_resources_ok =
14933 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
14934 i + 1, 0);
14935 if (target_resources_ok == 0)
14936 error (_("No hardware breakpoint support in the target."));
14937 else if (target_resources_ok < 0)
14938 error (_("Hardware breakpoints used exceeds limit."));
14939 }
14940
14941 if (is_watchpoint (bpt))
14942 {
14943 /* Initialize it just to avoid a GCC false warning. */
14944 enum enable_state orig_enable_state = bp_disabled;
14945
14946 TRY
14947 {
14948 struct watchpoint *w = (struct watchpoint *) bpt;
14949
14950 orig_enable_state = bpt->enable_state;
14951 bpt->enable_state = bp_enabled;
14952 update_watchpoint (w, 1 /* reparse */);
14953 }
14954 CATCH (e, RETURN_MASK_ALL)
14955 {
14956 bpt->enable_state = orig_enable_state;
14957 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14958 bpt->number);
14959 return;
14960 }
14961 END_CATCH
14962 }
14963
14964 bpt->enable_state = bp_enabled;
14965
14966 /* Mark breakpoint locations modified. */
14967 mark_breakpoint_modified (bpt);
14968
14969 if (target_supports_enable_disable_tracepoint ()
14970 && current_trace_status ()->running && is_tracepoint (bpt))
14971 {
14972 struct bp_location *location;
14973
14974 for (location = bpt->loc; location; location = location->next)
14975 target_enable_tracepoint (location);
14976 }
14977
14978 bpt->disposition = disposition;
14979 bpt->enable_count = count;
14980 update_global_location_list (UGLL_MAY_INSERT);
14981
14982 observer_notify_breakpoint_modified (bpt);
14983}
14984
14985
14986void
14987enable_breakpoint (struct breakpoint *bpt)
14988{
14989 enable_breakpoint_disp (bpt, bpt->disposition, 0);
14990}
14991
14992static void
14993do_enable_breakpoint (struct breakpoint *bpt, void *arg)
14994{
14995 enable_breakpoint (bpt);
14996}
14997
14998/* A callback for map_breakpoint_numbers that calls
14999 enable_breakpoint. */
15000
15001static void
15002do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
15003{
15004 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
15005}
15006
15007/* The enable command enables the specified breakpoints (or all defined
15008 breakpoints) so they once again become (or continue to be) effective
15009 in stopping the inferior. */
15010
15011static void
15012enable_command (char *args, int from_tty)
15013{
15014 if (args == 0)
15015 {
15016 struct breakpoint *bpt;
15017
15018 ALL_BREAKPOINTS (bpt)
15019 if (user_breakpoint_p (bpt))
15020 enable_breakpoint (bpt);
15021 }
15022 else
15023 {
15024 char *num = extract_arg (&args);
15025
15026 while (num)
15027 {
15028 if (strchr (num, '.'))
15029 {
15030 struct bp_location *loc = find_location_by_number (num);
15031
15032 if (loc)
15033 {
15034 if (!loc->enabled)
15035 {
15036 loc->enabled = 1;
15037 mark_breakpoint_location_modified (loc);
15038 }
15039 if (target_supports_enable_disable_tracepoint ()
15040 && current_trace_status ()->running && loc->owner
15041 && is_tracepoint (loc->owner))
15042 target_enable_tracepoint (loc);
15043 }
15044 update_global_location_list (UGLL_MAY_INSERT);
15045 }
15046 else
15047 map_breakpoint_numbers (num, do_map_enable_breakpoint, NULL);
15048 num = extract_arg (&args);
15049 }
15050 }
15051}
15052
15053/* This struct packages up disposition data for application to multiple
15054 breakpoints. */
15055
15056struct disp_data
15057{
15058 enum bpdisp disp;
15059 int count;
15060};
15061
15062static void
15063do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
15064{
15065 struct disp_data disp_data = *(struct disp_data *) arg;
15066
15067 enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count);
15068}
15069
15070static void
15071do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
15072{
15073 struct disp_data disp = { disp_disable, 1 };
15074
15075 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15076}
15077
15078static void
15079enable_once_command (char *args, int from_tty)
15080{
15081 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
15082}
15083
15084static void
15085do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr)
15086{
15087 struct disp_data disp = { disp_disable, *(int *) countptr };
15088
15089 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15090}
15091
15092static void
15093enable_count_command (char *args, int from_tty)
15094{
15095 int count;
15096
15097 if (args == NULL)
15098 error_no_arg (_("hit count"));
15099
15100 count = get_number (&args);
15101
15102 map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count);
15103}
15104
15105static void
15106do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
15107{
15108 struct disp_data disp = { disp_del, 1 };
15109
15110 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15111}
15112
15113static void
15114enable_delete_command (char *args, int from_tty)
15115{
15116 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
15117}
15118\f
15119static void
15120set_breakpoint_cmd (char *args, int from_tty)
15121{
15122}
15123
15124static void
15125show_breakpoint_cmd (char *args, int from_tty)
15126{
15127}
15128
15129/* Invalidate last known value of any hardware watchpoint if
15130 the memory which that value represents has been written to by
15131 GDB itself. */
15132
15133static void
15134invalidate_bp_value_on_memory_change (struct inferior *inferior,
15135 CORE_ADDR addr, ssize_t len,
15136 const bfd_byte *data)
15137{
15138 struct breakpoint *bp;
15139
15140 ALL_BREAKPOINTS (bp)
15141 if (bp->enable_state == bp_enabled
15142 && bp->type == bp_hardware_watchpoint)
15143 {
15144 struct watchpoint *wp = (struct watchpoint *) bp;
15145
15146 if (wp->val_valid && wp->val)
15147 {
15148 struct bp_location *loc;
15149
15150 for (loc = bp->loc; loc != NULL; loc = loc->next)
15151 if (loc->loc_type == bp_loc_hardware_watchpoint
15152 && loc->address + loc->length > addr
15153 && addr + len > loc->address)
15154 {
15155 value_free (wp->val);
15156 wp->val = NULL;
15157 wp->val_valid = 0;
15158 }
15159 }
15160 }
15161}
15162
15163/* Create and insert a breakpoint for software single step. */
15164
15165void
15166insert_single_step_breakpoint (struct gdbarch *gdbarch,
15167 struct address_space *aspace,
15168 CORE_ADDR next_pc)
15169{
15170 struct thread_info *tp = inferior_thread ();
15171 struct symtab_and_line sal;
15172 CORE_ADDR pc = next_pc;
15173
15174 if (tp->control.single_step_breakpoints == NULL)
15175 {
15176 tp->control.single_step_breakpoints
15177 = new_single_step_breakpoint (tp->global_num, gdbarch);
15178 }
15179
15180 sal = find_pc_line (pc, 0);
15181 sal.pc = pc;
15182 sal.section = find_pc_overlay (pc);
15183 sal.explicit_pc = 1;
15184 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
15185
15186 update_global_location_list (UGLL_INSERT);
15187}
15188
15189/* See breakpoint.h. */
15190
15191int
15192breakpoint_has_location_inserted_here (struct breakpoint *bp,
15193 struct address_space *aspace,
15194 CORE_ADDR pc)
15195{
15196 struct bp_location *loc;
15197
15198 for (loc = bp->loc; loc != NULL; loc = loc->next)
15199 if (loc->inserted
15200 && breakpoint_location_address_match (loc, aspace, pc))
15201 return 1;
15202
15203 return 0;
15204}
15205
15206/* Check whether a software single-step breakpoint is inserted at
15207 PC. */
15208
15209int
15210single_step_breakpoint_inserted_here_p (struct address_space *aspace,
15211 CORE_ADDR pc)
15212{
15213 struct breakpoint *bpt;
15214
15215 ALL_BREAKPOINTS (bpt)
15216 {
15217 if (bpt->type == bp_single_step
15218 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
15219 return 1;
15220 }
15221 return 0;
15222}
15223
15224/* Tracepoint-specific operations. */
15225
15226/* Set tracepoint count to NUM. */
15227static void
15228set_tracepoint_count (int num)
15229{
15230 tracepoint_count = num;
15231 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
15232}
15233
15234static void
15235trace_command (char *arg, int from_tty)
15236{
15237 struct breakpoint_ops *ops;
15238 struct event_location *location;
15239 struct cleanup *back_to;
15240
15241 location = string_to_event_location (&arg, current_language);
15242 back_to = make_cleanup_delete_event_location (location);
15243 if (location != NULL
15244 && event_location_type (location) == PROBE_LOCATION)
15245 ops = &tracepoint_probe_breakpoint_ops;
15246 else
15247 ops = &tracepoint_breakpoint_ops;
15248
15249 create_breakpoint (get_current_arch (),
15250 location,
15251 NULL, 0, arg, 1 /* parse arg */,
15252 0 /* tempflag */,
15253 bp_tracepoint /* type_wanted */,
15254 0 /* Ignore count */,
15255 pending_break_support,
15256 ops,
15257 from_tty,
15258 1 /* enabled */,
15259 0 /* internal */, 0);
15260 do_cleanups (back_to);
15261}
15262
15263static void
15264ftrace_command (char *arg, int from_tty)
15265{
15266 struct event_location *location;
15267 struct cleanup *back_to;
15268
15269 location = string_to_event_location (&arg, current_language);
15270 back_to = make_cleanup_delete_event_location (location);
15271 create_breakpoint (get_current_arch (),
15272 location,
15273 NULL, 0, arg, 1 /* parse arg */,
15274 0 /* tempflag */,
15275 bp_fast_tracepoint /* type_wanted */,
15276 0 /* Ignore count */,
15277 pending_break_support,
15278 &tracepoint_breakpoint_ops,
15279 from_tty,
15280 1 /* enabled */,
15281 0 /* internal */, 0);
15282 do_cleanups (back_to);
15283}
15284
15285/* strace command implementation. Creates a static tracepoint. */
15286
15287static void
15288strace_command (char *arg, int from_tty)
15289{
15290 struct breakpoint_ops *ops;
15291 struct event_location *location;
15292 struct cleanup *back_to;
15293
15294 /* Decide if we are dealing with a static tracepoint marker (`-m'),
15295 or with a normal static tracepoint. */
15296 if (arg && startswith (arg, "-m") && isspace (arg[2]))
15297 {
15298 ops = &strace_marker_breakpoint_ops;
15299 location = new_linespec_location (&arg);
15300 }
15301 else
15302 {
15303 ops = &tracepoint_breakpoint_ops;
15304 location = string_to_event_location (&arg, current_language);
15305 }
15306
15307 back_to = make_cleanup_delete_event_location (location);
15308 create_breakpoint (get_current_arch (),
15309 location,
15310 NULL, 0, arg, 1 /* parse arg */,
15311 0 /* tempflag */,
15312 bp_static_tracepoint /* type_wanted */,
15313 0 /* Ignore count */,
15314 pending_break_support,
15315 ops,
15316 from_tty,
15317 1 /* enabled */,
15318 0 /* internal */, 0);
15319 do_cleanups (back_to);
15320}
15321
15322/* Set up a fake reader function that gets command lines from a linked
15323 list that was acquired during tracepoint uploading. */
15324
15325static struct uploaded_tp *this_utp;
15326static int next_cmd;
15327
15328static char *
15329read_uploaded_action (void)
15330{
15331 char *rslt;
15332
15333 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
15334
15335 next_cmd++;
15336
15337 return rslt;
15338}
15339
15340/* Given information about a tracepoint as recorded on a target (which
15341 can be either a live system or a trace file), attempt to create an
15342 equivalent GDB tracepoint. This is not a reliable process, since
15343 the target does not necessarily have all the information used when
15344 the tracepoint was originally defined. */
15345
15346struct tracepoint *
15347create_tracepoint_from_upload (struct uploaded_tp *utp)
15348{
15349 char *addr_str, small_buf[100];
15350 struct tracepoint *tp;
15351 struct event_location *location;
15352 struct cleanup *cleanup;
15353
15354 if (utp->at_string)
15355 addr_str = utp->at_string;
15356 else
15357 {
15358 /* In the absence of a source location, fall back to raw
15359 address. Since there is no way to confirm that the address
15360 means the same thing as when the trace was started, warn the
15361 user. */
15362 warning (_("Uploaded tracepoint %d has no "
15363 "source location, using raw address"),
15364 utp->number);
15365 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
15366 addr_str = small_buf;
15367 }
15368
15369 /* There's not much we can do with a sequence of bytecodes. */
15370 if (utp->cond && !utp->cond_string)
15371 warning (_("Uploaded tracepoint %d condition "
15372 "has no source form, ignoring it"),
15373 utp->number);
15374
15375 location = string_to_event_location (&addr_str, current_language);
15376 cleanup = make_cleanup_delete_event_location (location);
15377 if (!create_breakpoint (get_current_arch (),
15378 location,
15379 utp->cond_string, -1, addr_str,
15380 0 /* parse cond/thread */,
15381 0 /* tempflag */,
15382 utp->type /* type_wanted */,
15383 0 /* Ignore count */,
15384 pending_break_support,
15385 &tracepoint_breakpoint_ops,
15386 0 /* from_tty */,
15387 utp->enabled /* enabled */,
15388 0 /* internal */,
15389 CREATE_BREAKPOINT_FLAGS_INSERTED))
15390 {
15391 do_cleanups (cleanup);
15392 return NULL;
15393 }
15394
15395 do_cleanups (cleanup);
15396
15397 /* Get the tracepoint we just created. */
15398 tp = get_tracepoint (tracepoint_count);
15399 gdb_assert (tp != NULL);
15400
15401 if (utp->pass > 0)
15402 {
15403 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
15404 tp->base.number);
15405
15406 trace_pass_command (small_buf, 0);
15407 }
15408
15409 /* If we have uploaded versions of the original commands, set up a
15410 special-purpose "reader" function and call the usual command line
15411 reader, then pass the result to the breakpoint command-setting
15412 function. */
15413 if (!VEC_empty (char_ptr, utp->cmd_strings))
15414 {
15415 struct command_line *cmd_list;
15416
15417 this_utp = utp;
15418 next_cmd = 0;
15419
15420 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
15421
15422 breakpoint_set_commands (&tp->base, cmd_list);
15423 }
15424 else if (!VEC_empty (char_ptr, utp->actions)
15425 || !VEC_empty (char_ptr, utp->step_actions))
15426 warning (_("Uploaded tracepoint %d actions "
15427 "have no source form, ignoring them"),
15428 utp->number);
15429
15430 /* Copy any status information that might be available. */
15431 tp->base.hit_count = utp->hit_count;
15432 tp->traceframe_usage = utp->traceframe_usage;
15433
15434 return tp;
15435}
15436
15437/* Print information on tracepoint number TPNUM_EXP, or all if
15438 omitted. */
15439
15440static void
15441tracepoints_info (char *args, int from_tty)
15442{
15443 struct ui_out *uiout = current_uiout;
15444 int num_printed;
15445
15446 num_printed = breakpoint_1 (args, 0, is_tracepoint);
15447
15448 if (num_printed == 0)
15449 {
15450 if (args == NULL || *args == '\0')
15451 ui_out_message (uiout, 0, "No tracepoints.\n");
15452 else
15453 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
15454 }
15455
15456 default_collect_info ();
15457}
15458
15459/* The 'enable trace' command enables tracepoints.
15460 Not supported by all targets. */
15461static void
15462enable_trace_command (char *args, int from_tty)
15463{
15464 enable_command (args, from_tty);
15465}
15466
15467/* The 'disable trace' command disables tracepoints.
15468 Not supported by all targets. */
15469static void
15470disable_trace_command (char *args, int from_tty)
15471{
15472 disable_command (args, from_tty);
15473}
15474
15475/* Remove a tracepoint (or all if no argument). */
15476static void
15477delete_trace_command (char *arg, int from_tty)
15478{
15479 struct breakpoint *b, *b_tmp;
15480
15481 dont_repeat ();
15482
15483 if (arg == 0)
15484 {
15485 int breaks_to_delete = 0;
15486
15487 /* Delete all breakpoints if no argument.
15488 Do not delete internal or call-dummy breakpoints, these
15489 have to be deleted with an explicit breakpoint number
15490 argument. */
15491 ALL_TRACEPOINTS (b)
15492 if (is_tracepoint (b) && user_breakpoint_p (b))
15493 {
15494 breaks_to_delete = 1;
15495 break;
15496 }
15497
15498 /* Ask user only if there are some breakpoints to delete. */
15499 if (!from_tty
15500 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
15501 {
15502 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15503 if (is_tracepoint (b) && user_breakpoint_p (b))
15504 delete_breakpoint (b);
15505 }
15506 }
15507 else
15508 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
15509}
15510
15511/* Helper function for trace_pass_command. */
15512
15513static void
15514trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
15515{
15516 tp->pass_count = count;
15517 observer_notify_breakpoint_modified (&tp->base);
15518 if (from_tty)
15519 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
15520 tp->base.number, count);
15521}
15522
15523/* Set passcount for tracepoint.
15524
15525 First command argument is passcount, second is tracepoint number.
15526 If tracepoint number omitted, apply to most recently defined.
15527 Also accepts special argument "all". */
15528
15529static void
15530trace_pass_command (char *args, int from_tty)
15531{
15532 struct tracepoint *t1;
15533 unsigned int count;
15534
15535 if (args == 0 || *args == 0)
15536 error (_("passcount command requires an "
15537 "argument (count + optional TP num)"));
15538
15539 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
15540
15541 args = skip_spaces (args);
15542 if (*args && strncasecmp (args, "all", 3) == 0)
15543 {
15544 struct breakpoint *b;
15545
15546 args += 3; /* Skip special argument "all". */
15547 if (*args)
15548 error (_("Junk at end of arguments."));
15549
15550 ALL_TRACEPOINTS (b)
15551 {
15552 t1 = (struct tracepoint *) b;
15553 trace_pass_set_count (t1, count, from_tty);
15554 }
15555 }
15556 else if (*args == '\0')
15557 {
15558 t1 = get_tracepoint_by_number (&args, NULL);
15559 if (t1)
15560 trace_pass_set_count (t1, count, from_tty);
15561 }
15562 else
15563 {
15564 struct get_number_or_range_state state;
15565
15566 init_number_or_range (&state, args);
15567 while (!state.finished)
15568 {
15569 t1 = get_tracepoint_by_number (&args, &state);
15570 if (t1)
15571 trace_pass_set_count (t1, count, from_tty);
15572 }
15573 }
15574}
15575
15576struct tracepoint *
15577get_tracepoint (int num)
15578{
15579 struct breakpoint *t;
15580
15581 ALL_TRACEPOINTS (t)
15582 if (t->number == num)
15583 return (struct tracepoint *) t;
15584
15585 return NULL;
15586}
15587
15588/* Find the tracepoint with the given target-side number (which may be
15589 different from the tracepoint number after disconnecting and
15590 reconnecting). */
15591
15592struct tracepoint *
15593get_tracepoint_by_number_on_target (int num)
15594{
15595 struct breakpoint *b;
15596
15597 ALL_TRACEPOINTS (b)
15598 {
15599 struct tracepoint *t = (struct tracepoint *) b;
15600
15601 if (t->number_on_target == num)
15602 return t;
15603 }
15604
15605 return NULL;
15606}
15607
15608/* Utility: parse a tracepoint number and look it up in the list.
15609 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
15610 If the argument is missing, the most recent tracepoint
15611 (tracepoint_count) is returned. */
15612
15613struct tracepoint *
15614get_tracepoint_by_number (char **arg,
15615 struct get_number_or_range_state *state)
15616{
15617 struct breakpoint *t;
15618 int tpnum;
15619 char *instring = arg == NULL ? NULL : *arg;
15620
15621 if (state)
15622 {
15623 gdb_assert (!state->finished);
15624 tpnum = get_number_or_range (state);
15625 }
15626 else if (arg == NULL || *arg == NULL || ! **arg)
15627 tpnum = tracepoint_count;
15628 else
15629 tpnum = get_number (arg);
15630
15631 if (tpnum <= 0)
15632 {
15633 if (instring && *instring)
15634 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
15635 instring);
15636 else
15637 printf_filtered (_("No previous tracepoint\n"));
15638 return NULL;
15639 }
15640
15641 ALL_TRACEPOINTS (t)
15642 if (t->number == tpnum)
15643 {
15644 return (struct tracepoint *) t;
15645 }
15646
15647 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15648 return NULL;
15649}
15650
15651void
15652print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15653{
15654 if (b->thread != -1)
15655 fprintf_unfiltered (fp, " thread %d", b->thread);
15656
15657 if (b->task != 0)
15658 fprintf_unfiltered (fp, " task %d", b->task);
15659
15660 fprintf_unfiltered (fp, "\n");
15661}
15662
15663/* Save information on user settable breakpoints (watchpoints, etc) to
15664 a new script file named FILENAME. If FILTER is non-NULL, call it
15665 on each breakpoint and only include the ones for which it returns
15666 non-zero. */
15667
15668static void
15669save_breakpoints (char *filename, int from_tty,
15670 int (*filter) (const struct breakpoint *))
15671{
15672 struct breakpoint *tp;
15673 int any = 0;
15674 struct cleanup *cleanup;
15675 struct ui_file *fp;
15676 int extra_trace_bits = 0;
15677
15678 if (filename == 0 || *filename == 0)
15679 error (_("Argument required (file name in which to save)"));
15680
15681 /* See if we have anything to save. */
15682 ALL_BREAKPOINTS (tp)
15683 {
15684 /* Skip internal and momentary breakpoints. */
15685 if (!user_breakpoint_p (tp))
15686 continue;
15687
15688 /* If we have a filter, only save the breakpoints it accepts. */
15689 if (filter && !filter (tp))
15690 continue;
15691
15692 any = 1;
15693
15694 if (is_tracepoint (tp))
15695 {
15696 extra_trace_bits = 1;
15697
15698 /* We can stop searching. */
15699 break;
15700 }
15701 }
15702
15703 if (!any)
15704 {
15705 warning (_("Nothing to save."));
15706 return;
15707 }
15708
15709 filename = tilde_expand (filename);
15710 cleanup = make_cleanup (xfree, filename);
15711 fp = gdb_fopen (filename, "w");
15712 if (!fp)
15713 error (_("Unable to open file '%s' for saving (%s)"),
15714 filename, safe_strerror (errno));
15715 make_cleanup_ui_file_delete (fp);
15716
15717 if (extra_trace_bits)
15718 save_trace_state_variables (fp);
15719
15720 ALL_BREAKPOINTS (tp)
15721 {
15722 /* Skip internal and momentary breakpoints. */
15723 if (!user_breakpoint_p (tp))
15724 continue;
15725
15726 /* If we have a filter, only save the breakpoints it accepts. */
15727 if (filter && !filter (tp))
15728 continue;
15729
15730 tp->ops->print_recreate (tp, fp);
15731
15732 /* Note, we can't rely on tp->number for anything, as we can't
15733 assume the recreated breakpoint numbers will match. Use $bpnum
15734 instead. */
15735
15736 if (tp->cond_string)
15737 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
15738
15739 if (tp->ignore_count)
15740 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
15741
15742 if (tp->type != bp_dprintf && tp->commands)
15743 {
15744 struct gdb_exception exception;
15745
15746 fprintf_unfiltered (fp, " commands\n");
15747
15748 ui_out_redirect (current_uiout, fp);
15749 TRY
15750 {
15751 print_command_lines (current_uiout, tp->commands->commands, 2);
15752 }
15753 CATCH (ex, RETURN_MASK_ALL)
15754 {
15755 ui_out_redirect (current_uiout, NULL);
15756 throw_exception (ex);
15757 }
15758 END_CATCH
15759
15760 ui_out_redirect (current_uiout, NULL);
15761 fprintf_unfiltered (fp, " end\n");
15762 }
15763
15764 if (tp->enable_state == bp_disabled)
15765 fprintf_unfiltered (fp, "disable $bpnum\n");
15766
15767 /* If this is a multi-location breakpoint, check if the locations
15768 should be individually disabled. Watchpoint locations are
15769 special, and not user visible. */
15770 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15771 {
15772 struct bp_location *loc;
15773 int n = 1;
15774
15775 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15776 if (!loc->enabled)
15777 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
15778 }
15779 }
15780
15781 if (extra_trace_bits && *default_collect)
15782 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
15783
15784 if (from_tty)
15785 printf_filtered (_("Saved to file '%s'.\n"), filename);
15786 do_cleanups (cleanup);
15787}
15788
15789/* The `save breakpoints' command. */
15790
15791static void
15792save_breakpoints_command (char *args, int from_tty)
15793{
15794 save_breakpoints (args, from_tty, NULL);
15795}
15796
15797/* The `save tracepoints' command. */
15798
15799static void
15800save_tracepoints_command (char *args, int from_tty)
15801{
15802 save_breakpoints (args, from_tty, is_tracepoint);
15803}
15804
15805/* Create a vector of all tracepoints. */
15806
15807VEC(breakpoint_p) *
15808all_tracepoints (void)
15809{
15810 VEC(breakpoint_p) *tp_vec = 0;
15811 struct breakpoint *tp;
15812
15813 ALL_TRACEPOINTS (tp)
15814 {
15815 VEC_safe_push (breakpoint_p, tp_vec, tp);
15816 }
15817
15818 return tp_vec;
15819}
15820
15821\f
15822/* This help string is used to consolidate all the help string for specifying
15823 locations used by several commands. */
15824
15825#define LOCATION_HELP_STRING \
15826"Linespecs are colon-separated lists of location parameters, such as\n\
15827source filename, function name, label name, and line number.\n\
15828Example: To specify the start of a label named \"the_top\" in the\n\
15829function \"fact\" in the file \"factorial.c\", use\n\
15830\"factorial.c:fact:the_top\".\n\
15831\n\
15832Address locations begin with \"*\" and specify an exact address in the\n\
15833program. Example: To specify the fourth byte past the start function\n\
15834\"main\", use \"*main + 4\".\n\
15835\n\
15836Explicit locations are similar to linespecs but use an option/argument\n\
15837syntax to specify location parameters.\n\
15838Example: To specify the start of the label named \"the_top\" in the\n\
15839function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
15840-function fact -label the_top\".\n"
15841
15842/* This help string is used for the break, hbreak, tbreak and thbreak
15843 commands. It is defined as a macro to prevent duplication.
15844 COMMAND should be a string constant containing the name of the
15845 command. */
15846
15847#define BREAK_ARGS_HELP(command) \
15848command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15849PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15850probe point. Accepted values are `-probe' (for a generic, automatically\n\
15851guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15852`-probe-dtrace' (for a DTrace probe).\n\
15853LOCATION may be a linespec, address, or explicit location as described\n\
15854below.\n\
15855\n\
15856With no LOCATION, uses current execution address of the selected\n\
15857stack frame. This is useful for breaking on return to a stack frame.\n\
15858\n\
15859THREADNUM is the number from \"info threads\".\n\
15860CONDITION is a boolean expression.\n\
15861\n" LOCATION_HELP_STRING "\n\
15862Multiple breakpoints at one place are permitted, and useful if their\n\
15863conditions are different.\n\
15864\n\
15865Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15866
15867/* List of subcommands for "catch". */
15868static struct cmd_list_element *catch_cmdlist;
15869
15870/* List of subcommands for "tcatch". */
15871static struct cmd_list_element *tcatch_cmdlist;
15872
15873void
15874add_catch_command (char *name, char *docstring,
15875 cmd_sfunc_ftype *sfunc,
15876 completer_ftype *completer,
15877 void *user_data_catch,
15878 void *user_data_tcatch)
15879{
15880 struct cmd_list_element *command;
15881
15882 command = add_cmd (name, class_breakpoint, NULL, docstring,
15883 &catch_cmdlist);
15884 set_cmd_sfunc (command, sfunc);
15885 set_cmd_context (command, user_data_catch);
15886 set_cmd_completer (command, completer);
15887
15888 command = add_cmd (name, class_breakpoint, NULL, docstring,
15889 &tcatch_cmdlist);
15890 set_cmd_sfunc (command, sfunc);
15891 set_cmd_context (command, user_data_tcatch);
15892 set_cmd_completer (command, completer);
15893}
15894
15895static void
15896save_command (char *arg, int from_tty)
15897{
15898 printf_unfiltered (_("\"save\" must be followed by "
15899 "the name of a save subcommand.\n"));
15900 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
15901}
15902
15903struct breakpoint *
15904iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15905 void *data)
15906{
15907 struct breakpoint *b, *b_tmp;
15908
15909 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15910 {
15911 if ((*callback) (b, data))
15912 return b;
15913 }
15914
15915 return NULL;
15916}
15917
15918/* Zero if any of the breakpoint's locations could be a location where
15919 functions have been inlined, nonzero otherwise. */
15920
15921static int
15922is_non_inline_function (struct breakpoint *b)
15923{
15924 /* The shared library event breakpoint is set on the address of a
15925 non-inline function. */
15926 if (b->type == bp_shlib_event)
15927 return 1;
15928
15929 return 0;
15930}
15931
15932/* Nonzero if the specified PC cannot be a location where functions
15933 have been inlined. */
15934
15935int
15936pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc,
15937 const struct target_waitstatus *ws)
15938{
15939 struct breakpoint *b;
15940 struct bp_location *bl;
15941
15942 ALL_BREAKPOINTS (b)
15943 {
15944 if (!is_non_inline_function (b))
15945 continue;
15946
15947 for (bl = b->loc; bl != NULL; bl = bl->next)
15948 {
15949 if (!bl->shlib_disabled
15950 && bpstat_check_location (bl, aspace, pc, ws))
15951 return 1;
15952 }
15953 }
15954
15955 return 0;
15956}
15957
15958/* Remove any references to OBJFILE which is going to be freed. */
15959
15960void
15961breakpoint_free_objfile (struct objfile *objfile)
15962{
15963 struct bp_location **locp, *loc;
15964
15965 ALL_BP_LOCATIONS (loc, locp)
15966 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
15967 loc->symtab = NULL;
15968}
15969
15970void
15971initialize_breakpoint_ops (void)
15972{
15973 static int initialized = 0;
15974
15975 struct breakpoint_ops *ops;
15976
15977 if (initialized)
15978 return;
15979 initialized = 1;
15980
15981 /* The breakpoint_ops structure to be inherit by all kinds of
15982 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15983 internal and momentary breakpoints, etc.). */
15984 ops = &bkpt_base_breakpoint_ops;
15985 *ops = base_breakpoint_ops;
15986 ops->re_set = bkpt_re_set;
15987 ops->insert_location = bkpt_insert_location;
15988 ops->remove_location = bkpt_remove_location;
15989 ops->breakpoint_hit = bkpt_breakpoint_hit;
15990 ops->create_sals_from_location = bkpt_create_sals_from_location;
15991 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
15992 ops->decode_location = bkpt_decode_location;
15993
15994 /* The breakpoint_ops structure to be used in regular breakpoints. */
15995 ops = &bkpt_breakpoint_ops;
15996 *ops = bkpt_base_breakpoint_ops;
15997 ops->re_set = bkpt_re_set;
15998 ops->resources_needed = bkpt_resources_needed;
15999 ops->print_it = bkpt_print_it;
16000 ops->print_mention = bkpt_print_mention;
16001 ops->print_recreate = bkpt_print_recreate;
16002
16003 /* Ranged breakpoints. */
16004 ops = &ranged_breakpoint_ops;
16005 *ops = bkpt_breakpoint_ops;
16006 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
16007 ops->resources_needed = resources_needed_ranged_breakpoint;
16008 ops->print_it = print_it_ranged_breakpoint;
16009 ops->print_one = print_one_ranged_breakpoint;
16010 ops->print_one_detail = print_one_detail_ranged_breakpoint;
16011 ops->print_mention = print_mention_ranged_breakpoint;
16012 ops->print_recreate = print_recreate_ranged_breakpoint;
16013
16014 /* Internal breakpoints. */
16015 ops = &internal_breakpoint_ops;
16016 *ops = bkpt_base_breakpoint_ops;
16017 ops->re_set = internal_bkpt_re_set;
16018 ops->check_status = internal_bkpt_check_status;
16019 ops->print_it = internal_bkpt_print_it;
16020 ops->print_mention = internal_bkpt_print_mention;
16021
16022 /* Momentary breakpoints. */
16023 ops = &momentary_breakpoint_ops;
16024 *ops = bkpt_base_breakpoint_ops;
16025 ops->re_set = momentary_bkpt_re_set;
16026 ops->check_status = momentary_bkpt_check_status;
16027 ops->print_it = momentary_bkpt_print_it;
16028 ops->print_mention = momentary_bkpt_print_mention;
16029
16030 /* Momentary breakpoints for bp_longjmp and bp_exception. */
16031 ops = &longjmp_breakpoint_ops;
16032 *ops = momentary_breakpoint_ops;
16033 ops->dtor = longjmp_bkpt_dtor;
16034
16035 /* Probe breakpoints. */
16036 ops = &bkpt_probe_breakpoint_ops;
16037 *ops = bkpt_breakpoint_ops;
16038 ops->insert_location = bkpt_probe_insert_location;
16039 ops->remove_location = bkpt_probe_remove_location;
16040 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
16041 ops->decode_location = bkpt_probe_decode_location;
16042
16043 /* Watchpoints. */
16044 ops = &watchpoint_breakpoint_ops;
16045 *ops = base_breakpoint_ops;
16046 ops->dtor = dtor_watchpoint;
16047 ops->re_set = re_set_watchpoint;
16048 ops->insert_location = insert_watchpoint;
16049 ops->remove_location = remove_watchpoint;
16050 ops->breakpoint_hit = breakpoint_hit_watchpoint;
16051 ops->check_status = check_status_watchpoint;
16052 ops->resources_needed = resources_needed_watchpoint;
16053 ops->works_in_software_mode = works_in_software_mode_watchpoint;
16054 ops->print_it = print_it_watchpoint;
16055 ops->print_mention = print_mention_watchpoint;
16056 ops->print_recreate = print_recreate_watchpoint;
16057 ops->explains_signal = explains_signal_watchpoint;
16058
16059 /* Masked watchpoints. */
16060 ops = &masked_watchpoint_breakpoint_ops;
16061 *ops = watchpoint_breakpoint_ops;
16062 ops->insert_location = insert_masked_watchpoint;
16063 ops->remove_location = remove_masked_watchpoint;
16064 ops->resources_needed = resources_needed_masked_watchpoint;
16065 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
16066 ops->print_it = print_it_masked_watchpoint;
16067 ops->print_one_detail = print_one_detail_masked_watchpoint;
16068 ops->print_mention = print_mention_masked_watchpoint;
16069 ops->print_recreate = print_recreate_masked_watchpoint;
16070
16071 /* Tracepoints. */
16072 ops = &tracepoint_breakpoint_ops;
16073 *ops = base_breakpoint_ops;
16074 ops->re_set = tracepoint_re_set;
16075 ops->breakpoint_hit = tracepoint_breakpoint_hit;
16076 ops->print_one_detail = tracepoint_print_one_detail;
16077 ops->print_mention = tracepoint_print_mention;
16078 ops->print_recreate = tracepoint_print_recreate;
16079 ops->create_sals_from_location = tracepoint_create_sals_from_location;
16080 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
16081 ops->decode_location = tracepoint_decode_location;
16082
16083 /* Probe tracepoints. */
16084 ops = &tracepoint_probe_breakpoint_ops;
16085 *ops = tracepoint_breakpoint_ops;
16086 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
16087 ops->decode_location = tracepoint_probe_decode_location;
16088
16089 /* Static tracepoints with marker (`-m'). */
16090 ops = &strace_marker_breakpoint_ops;
16091 *ops = tracepoint_breakpoint_ops;
16092 ops->create_sals_from_location = strace_marker_create_sals_from_location;
16093 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
16094 ops->decode_location = strace_marker_decode_location;
16095
16096 /* Fork catchpoints. */
16097 ops = &catch_fork_breakpoint_ops;
16098 *ops = base_breakpoint_ops;
16099 ops->insert_location = insert_catch_fork;
16100 ops->remove_location = remove_catch_fork;
16101 ops->breakpoint_hit = breakpoint_hit_catch_fork;
16102 ops->print_it = print_it_catch_fork;
16103 ops->print_one = print_one_catch_fork;
16104 ops->print_mention = print_mention_catch_fork;
16105 ops->print_recreate = print_recreate_catch_fork;
16106
16107 /* Vfork catchpoints. */
16108 ops = &catch_vfork_breakpoint_ops;
16109 *ops = base_breakpoint_ops;
16110 ops->insert_location = insert_catch_vfork;
16111 ops->remove_location = remove_catch_vfork;
16112 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
16113 ops->print_it = print_it_catch_vfork;
16114 ops->print_one = print_one_catch_vfork;
16115 ops->print_mention = print_mention_catch_vfork;
16116 ops->print_recreate = print_recreate_catch_vfork;
16117
16118 /* Exec catchpoints. */
16119 ops = &catch_exec_breakpoint_ops;
16120 *ops = base_breakpoint_ops;
16121 ops->dtor = dtor_catch_exec;
16122 ops->insert_location = insert_catch_exec;
16123 ops->remove_location = remove_catch_exec;
16124 ops->breakpoint_hit = breakpoint_hit_catch_exec;
16125 ops->print_it = print_it_catch_exec;
16126 ops->print_one = print_one_catch_exec;
16127 ops->print_mention = print_mention_catch_exec;
16128 ops->print_recreate = print_recreate_catch_exec;
16129
16130 /* Solib-related catchpoints. */
16131 ops = &catch_solib_breakpoint_ops;
16132 *ops = base_breakpoint_ops;
16133 ops->dtor = dtor_catch_solib;
16134 ops->insert_location = insert_catch_solib;
16135 ops->remove_location = remove_catch_solib;
16136 ops->breakpoint_hit = breakpoint_hit_catch_solib;
16137 ops->check_status = check_status_catch_solib;
16138 ops->print_it = print_it_catch_solib;
16139 ops->print_one = print_one_catch_solib;
16140 ops->print_mention = print_mention_catch_solib;
16141 ops->print_recreate = print_recreate_catch_solib;
16142
16143 ops = &dprintf_breakpoint_ops;
16144 *ops = bkpt_base_breakpoint_ops;
16145 ops->re_set = dprintf_re_set;
16146 ops->resources_needed = bkpt_resources_needed;
16147 ops->print_it = bkpt_print_it;
16148 ops->print_mention = bkpt_print_mention;
16149 ops->print_recreate = dprintf_print_recreate;
16150 ops->after_condition_true = dprintf_after_condition_true;
16151 ops->breakpoint_hit = dprintf_breakpoint_hit;
16152}
16153
16154/* Chain containing all defined "enable breakpoint" subcommands. */
16155
16156static struct cmd_list_element *enablebreaklist = NULL;
16157
16158void
16159_initialize_breakpoint (void)
16160{
16161 struct cmd_list_element *c;
16162
16163 initialize_breakpoint_ops ();
16164
16165 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
16166 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
16167 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
16168
16169 breakpoint_objfile_key
16170 = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes);
16171
16172 breakpoint_chain = 0;
16173 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
16174 before a breakpoint is set. */
16175 breakpoint_count = 0;
16176
16177 tracepoint_count = 0;
16178
16179 add_com ("ignore", class_breakpoint, ignore_command, _("\
16180Set ignore-count of breakpoint number N to COUNT.\n\
16181Usage is `ignore N COUNT'."));
16182
16183 add_com ("commands", class_breakpoint, commands_command, _("\
16184Set commands to be executed when a breakpoint is hit.\n\
16185Give breakpoint number as argument after \"commands\".\n\
16186With no argument, the targeted breakpoint is the last one set.\n\
16187The commands themselves follow starting on the next line.\n\
16188Type a line containing \"end\" to indicate the end of them.\n\
16189Give \"silent\" as the first line to make the breakpoint silent;\n\
16190then no output is printed when it is hit, except what the commands print."));
16191
16192 c = add_com ("condition", class_breakpoint, condition_command, _("\
16193Specify breakpoint number N to break only if COND is true.\n\
16194Usage is `condition N COND', where N is an integer and COND is an\n\
16195expression to be evaluated whenever breakpoint N is reached."));
16196 set_cmd_completer (c, condition_completer);
16197
16198 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
16199Set a temporary breakpoint.\n\
16200Like \"break\" except the breakpoint is only temporary,\n\
16201so it will be deleted when hit. Equivalent to \"break\" followed\n\
16202by using \"enable delete\" on the breakpoint number.\n\
16203\n"
16204BREAK_ARGS_HELP ("tbreak")));
16205 set_cmd_completer (c, location_completer);
16206
16207 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
16208Set a hardware assisted breakpoint.\n\
16209Like \"break\" except the breakpoint requires hardware support,\n\
16210some target hardware may not have this support.\n\
16211\n"
16212BREAK_ARGS_HELP ("hbreak")));
16213 set_cmd_completer (c, location_completer);
16214
16215 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
16216Set a temporary hardware assisted breakpoint.\n\
16217Like \"hbreak\" except the breakpoint is only temporary,\n\
16218so it will be deleted when hit.\n\
16219\n"
16220BREAK_ARGS_HELP ("thbreak")));
16221 set_cmd_completer (c, location_completer);
16222
16223 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
16224Enable some breakpoints.\n\
16225Give breakpoint numbers (separated by spaces) as arguments.\n\
16226With no subcommand, breakpoints are enabled until you command otherwise.\n\
16227This is used to cancel the effect of the \"disable\" command.\n\
16228With a subcommand you can enable temporarily."),
16229 &enablelist, "enable ", 1, &cmdlist);
16230
16231 add_com_alias ("en", "enable", class_breakpoint, 1);
16232
16233 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
16234Enable some breakpoints.\n\
16235Give breakpoint numbers (separated by spaces) as arguments.\n\
16236This is used to cancel the effect of the \"disable\" command.\n\
16237May be abbreviated to simply \"enable\".\n"),
16238 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
16239
16240 add_cmd ("once", no_class, enable_once_command, _("\
16241Enable breakpoints for one hit. Give breakpoint numbers.\n\
16242If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
16243 &enablebreaklist);
16244
16245 add_cmd ("delete", no_class, enable_delete_command, _("\
16246Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16247If a breakpoint is hit while enabled in this fashion, it is deleted."),
16248 &enablebreaklist);
16249
16250 add_cmd ("count", no_class, enable_count_command, _("\
16251Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16252If a breakpoint is hit while enabled in this fashion,\n\
16253the count is decremented; when it reaches zero, the breakpoint is disabled."),
16254 &enablebreaklist);
16255
16256 add_cmd ("delete", no_class, enable_delete_command, _("\
16257Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16258If a breakpoint is hit while enabled in this fashion, it is deleted."),
16259 &enablelist);
16260
16261 add_cmd ("once", no_class, enable_once_command, _("\
16262Enable breakpoints for one hit. Give breakpoint numbers.\n\
16263If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
16264 &enablelist);
16265
16266 add_cmd ("count", no_class, enable_count_command, _("\
16267Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16268If a breakpoint is hit while enabled in this fashion,\n\
16269the count is decremented; when it reaches zero, the breakpoint is disabled."),
16270 &enablelist);
16271
16272 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
16273Disable some breakpoints.\n\
16274Arguments are breakpoint numbers with spaces in between.\n\
16275To disable all breakpoints, give no argument.\n\
16276A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
16277 &disablelist, "disable ", 1, &cmdlist);
16278 add_com_alias ("dis", "disable", class_breakpoint, 1);
16279 add_com_alias ("disa", "disable", class_breakpoint, 1);
16280
16281 add_cmd ("breakpoints", class_alias, disable_command, _("\
16282Disable some breakpoints.\n\
16283Arguments are breakpoint numbers with spaces in between.\n\
16284To disable all breakpoints, give no argument.\n\
16285A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
16286This command may be abbreviated \"disable\"."),
16287 &disablelist);
16288
16289 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
16290Delete some breakpoints or auto-display expressions.\n\
16291Arguments are breakpoint numbers with spaces in between.\n\
16292To delete all breakpoints, give no argument.\n\
16293\n\
16294Also a prefix command for deletion of other GDB objects.\n\
16295The \"unset\" command is also an alias for \"delete\"."),
16296 &deletelist, "delete ", 1, &cmdlist);
16297 add_com_alias ("d", "delete", class_breakpoint, 1);
16298 add_com_alias ("del", "delete", class_breakpoint, 1);
16299
16300 add_cmd ("breakpoints", class_alias, delete_command, _("\
16301Delete some breakpoints or auto-display expressions.\n\
16302Arguments are breakpoint numbers with spaces in between.\n\
16303To delete all breakpoints, give no argument.\n\
16304This command may be abbreviated \"delete\"."),
16305 &deletelist);
16306
16307 add_com ("clear", class_breakpoint, clear_command, _("\
16308Clear breakpoint at specified location.\n\
16309Argument may be a linespec, explicit, or address location as described below.\n\
16310\n\
16311With no argument, clears all breakpoints in the line that the selected frame\n\
16312is executing in.\n"
16313"\n" LOCATION_HELP_STRING "\n\
16314See also the \"delete\" command which clears breakpoints by number."));
16315 add_com_alias ("cl", "clear", class_breakpoint, 1);
16316
16317 c = add_com ("break", class_breakpoint, break_command, _("\
16318Set breakpoint at specified location.\n"
16319BREAK_ARGS_HELP ("break")));
16320 set_cmd_completer (c, location_completer);
16321
16322 add_com_alias ("b", "break", class_run, 1);
16323 add_com_alias ("br", "break", class_run, 1);
16324 add_com_alias ("bre", "break", class_run, 1);
16325 add_com_alias ("brea", "break", class_run, 1);
16326
16327 if (dbx_commands)
16328 {
16329 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
16330Break in function/address or break at a line in the current file."),
16331 &stoplist, "stop ", 1, &cmdlist);
16332 add_cmd ("in", class_breakpoint, stopin_command,
16333 _("Break in function or address."), &stoplist);
16334 add_cmd ("at", class_breakpoint, stopat_command,
16335 _("Break at a line in the current file."), &stoplist);
16336 add_com ("status", class_info, breakpoints_info, _("\
16337Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
16338The \"Type\" column indicates one of:\n\
16339\tbreakpoint - normal breakpoint\n\
16340\twatchpoint - watchpoint\n\
16341The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16342the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16343breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16344address and file/line number respectively.\n\
16345\n\
16346Convenience variable \"$_\" and default examine address for \"x\"\n\
16347are set to the address of the last breakpoint listed unless the command\n\
16348is prefixed with \"server \".\n\n\
16349Convenience variable \"$bpnum\" contains the number of the last\n\
16350breakpoint set."));
16351 }
16352
16353 add_info ("breakpoints", breakpoints_info, _("\
16354Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
16355The \"Type\" column indicates one of:\n\
16356\tbreakpoint - normal breakpoint\n\
16357\twatchpoint - watchpoint\n\
16358The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16359the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16360breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16361address and file/line number respectively.\n\
16362\n\
16363Convenience variable \"$_\" and default examine address for \"x\"\n\
16364are set to the address of the last breakpoint listed unless the command\n\
16365is prefixed with \"server \".\n\n\
16366Convenience variable \"$bpnum\" contains the number of the last\n\
16367breakpoint set."));
16368
16369 add_info_alias ("b", "breakpoints", 1);
16370
16371 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
16372Status of all breakpoints, or breakpoint number NUMBER.\n\
16373The \"Type\" column indicates one of:\n\
16374\tbreakpoint - normal breakpoint\n\
16375\twatchpoint - watchpoint\n\
16376\tlongjmp - internal breakpoint used to step through longjmp()\n\
16377\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
16378\tuntil - internal breakpoint used by the \"until\" command\n\
16379\tfinish - internal breakpoint used by the \"finish\" command\n\
16380The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16381the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16382breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16383address and file/line number respectively.\n\
16384\n\
16385Convenience variable \"$_\" and default examine address for \"x\"\n\
16386are set to the address of the last breakpoint listed unless the command\n\
16387is prefixed with \"server \".\n\n\
16388Convenience variable \"$bpnum\" contains the number of the last\n\
16389breakpoint set."),
16390 &maintenanceinfolist);
16391
16392 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
16393Set catchpoints to catch events."),
16394 &catch_cmdlist, "catch ",
16395 0/*allow-unknown*/, &cmdlist);
16396
16397 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
16398Set temporary catchpoints to catch events."),
16399 &tcatch_cmdlist, "tcatch ",
16400 0/*allow-unknown*/, &cmdlist);
16401
16402 add_catch_command ("fork", _("Catch calls to fork."),
16403 catch_fork_command_1,
16404 NULL,
16405 (void *) (uintptr_t) catch_fork_permanent,
16406 (void *) (uintptr_t) catch_fork_temporary);
16407 add_catch_command ("vfork", _("Catch calls to vfork."),
16408 catch_fork_command_1,
16409 NULL,
16410 (void *) (uintptr_t) catch_vfork_permanent,
16411 (void *) (uintptr_t) catch_vfork_temporary);
16412 add_catch_command ("exec", _("Catch calls to exec."),
16413 catch_exec_command_1,
16414 NULL,
16415 CATCH_PERMANENT,
16416 CATCH_TEMPORARY);
16417 add_catch_command ("load", _("Catch loads of shared libraries.\n\
16418Usage: catch load [REGEX]\n\
16419If REGEX is given, only stop for libraries matching the regular expression."),
16420 catch_load_command_1,
16421 NULL,
16422 CATCH_PERMANENT,
16423 CATCH_TEMPORARY);
16424 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
16425Usage: catch unload [REGEX]\n\
16426If REGEX is given, only stop for libraries matching the regular expression."),
16427 catch_unload_command_1,
16428 NULL,
16429 CATCH_PERMANENT,
16430 CATCH_TEMPORARY);
16431
16432 c = add_com ("watch", class_breakpoint, watch_command, _("\
16433Set a watchpoint for an expression.\n\
16434Usage: watch [-l|-location] EXPRESSION\n\
16435A watchpoint stops execution of your program whenever the value of\n\
16436an expression changes.\n\
16437If -l or -location is given, this evaluates EXPRESSION and watches\n\
16438the memory to which it refers."));
16439 set_cmd_completer (c, expression_completer);
16440
16441 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
16442Set a read watchpoint for an expression.\n\
16443Usage: rwatch [-l|-location] EXPRESSION\n\
16444A watchpoint stops execution of your program whenever the value of\n\
16445an expression is read.\n\
16446If -l or -location is given, this evaluates EXPRESSION and watches\n\
16447the memory to which it refers."));
16448 set_cmd_completer (c, expression_completer);
16449
16450 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
16451Set a watchpoint for an expression.\n\
16452Usage: awatch [-l|-location] EXPRESSION\n\
16453A watchpoint stops execution of your program whenever the value of\n\
16454an expression is either read or written.\n\
16455If -l or -location is given, this evaluates EXPRESSION and watches\n\
16456the memory to which it refers."));
16457 set_cmd_completer (c, expression_completer);
16458
16459 add_info ("watchpoints", watchpoints_info, _("\
16460Status of specified watchpoints (all watchpoints if no argument)."));
16461
16462 /* XXX: cagney/2005-02-23: This should be a boolean, and should
16463 respond to changes - contrary to the description. */
16464 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
16465 &can_use_hw_watchpoints, _("\
16466Set debugger's willingness to use watchpoint hardware."), _("\
16467Show debugger's willingness to use watchpoint hardware."), _("\
16468If zero, gdb will not use hardware for new watchpoints, even if\n\
16469such is available. (However, any hardware watchpoints that were\n\
16470created before setting this to nonzero, will continue to use watchpoint\n\
16471hardware.)"),
16472 NULL,
16473 show_can_use_hw_watchpoints,
16474 &setlist, &showlist);
16475
16476 can_use_hw_watchpoints = 1;
16477
16478 /* Tracepoint manipulation commands. */
16479
16480 c = add_com ("trace", class_breakpoint, trace_command, _("\
16481Set a tracepoint at specified location.\n\
16482\n"
16483BREAK_ARGS_HELP ("trace") "\n\
16484Do \"help tracepoints\" for info on other tracepoint commands."));
16485 set_cmd_completer (c, location_completer);
16486
16487 add_com_alias ("tp", "trace", class_alias, 0);
16488 add_com_alias ("tr", "trace", class_alias, 1);
16489 add_com_alias ("tra", "trace", class_alias, 1);
16490 add_com_alias ("trac", "trace", class_alias, 1);
16491
16492 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
16493Set a fast tracepoint at specified location.\n\
16494\n"
16495BREAK_ARGS_HELP ("ftrace") "\n\
16496Do \"help tracepoints\" for info on other tracepoint commands."));
16497 set_cmd_completer (c, location_completer);
16498
16499 c = add_com ("strace", class_breakpoint, strace_command, _("\
16500Set a static tracepoint at location or marker.\n\
16501\n\
16502strace [LOCATION] [if CONDITION]\n\
16503LOCATION may be a linespec, explicit, or address location (described below) \n\
16504or -m MARKER_ID.\n\n\
16505If a marker id is specified, probe the marker with that name. With\n\
16506no LOCATION, uses current execution address of the selected stack frame.\n\
16507Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
16508This collects arbitrary user data passed in the probe point call to the\n\
16509tracing library. You can inspect it when analyzing the trace buffer,\n\
16510by printing the $_sdata variable like any other convenience variable.\n\
16511\n\
16512CONDITION is a boolean expression.\n\
16513\n" LOCATION_HELP_STRING "\n\
16514Multiple tracepoints at one place are permitted, and useful if their\n\
16515conditions are different.\n\
16516\n\
16517Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
16518Do \"help tracepoints\" for info on other tracepoint commands."));
16519 set_cmd_completer (c, location_completer);
16520
16521 add_info ("tracepoints", tracepoints_info, _("\
16522Status of specified tracepoints (all tracepoints if no argument).\n\
16523Convenience variable \"$tpnum\" contains the number of the\n\
16524last tracepoint set."));
16525
16526 add_info_alias ("tp", "tracepoints", 1);
16527
16528 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
16529Delete specified tracepoints.\n\
16530Arguments are tracepoint numbers, separated by spaces.\n\
16531No argument means delete all tracepoints."),
16532 &deletelist);
16533 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
16534
16535 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
16536Disable specified tracepoints.\n\
16537Arguments are tracepoint numbers, separated by spaces.\n\
16538No argument means disable all tracepoints."),
16539 &disablelist);
16540 deprecate_cmd (c, "disable");
16541
16542 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
16543Enable specified tracepoints.\n\
16544Arguments are tracepoint numbers, separated by spaces.\n\
16545No argument means enable all tracepoints."),
16546 &enablelist);
16547 deprecate_cmd (c, "enable");
16548
16549 add_com ("passcount", class_trace, trace_pass_command, _("\
16550Set the passcount for a tracepoint.\n\
16551The trace will end when the tracepoint has been passed 'count' times.\n\
16552Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
16553if TPNUM is omitted, passcount refers to the last tracepoint defined."));
16554
16555 add_prefix_cmd ("save", class_breakpoint, save_command,
16556 _("Save breakpoint definitions as a script."),
16557 &save_cmdlist, "save ",
16558 0/*allow-unknown*/, &cmdlist);
16559
16560 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
16561Save current breakpoint definitions as a script.\n\
16562This includes all types of breakpoints (breakpoints, watchpoints,\n\
16563catchpoints, tracepoints). Use the 'source' command in another debug\n\
16564session to restore them."),
16565 &save_cmdlist);
16566 set_cmd_completer (c, filename_completer);
16567
16568 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
16569Save current tracepoint definitions as a script.\n\
16570Use the 'source' command in another debug session to restore them."),
16571 &save_cmdlist);
16572 set_cmd_completer (c, filename_completer);
16573
16574 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
16575 deprecate_cmd (c, "save tracepoints");
16576
16577 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
16578Breakpoint specific settings\n\
16579Configure various breakpoint-specific variables such as\n\
16580pending breakpoint behavior"),
16581 &breakpoint_set_cmdlist, "set breakpoint ",
16582 0/*allow-unknown*/, &setlist);
16583 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
16584Breakpoint specific settings\n\
16585Configure various breakpoint-specific variables such as\n\
16586pending breakpoint behavior"),
16587 &breakpoint_show_cmdlist, "show breakpoint ",
16588 0/*allow-unknown*/, &showlist);
16589
16590 add_setshow_auto_boolean_cmd ("pending", no_class,
16591 &pending_break_support, _("\
16592Set debugger's behavior regarding pending breakpoints."), _("\
16593Show debugger's behavior regarding pending breakpoints."), _("\
16594If on, an unrecognized breakpoint location will cause gdb to create a\n\
16595pending breakpoint. If off, an unrecognized breakpoint location results in\n\
16596an error. If auto, an unrecognized breakpoint location results in a\n\
16597user-query to see if a pending breakpoint should be created."),
16598 NULL,
16599 show_pending_break_support,
16600 &breakpoint_set_cmdlist,
16601 &breakpoint_show_cmdlist);
16602
16603 pending_break_support = AUTO_BOOLEAN_AUTO;
16604
16605 add_setshow_boolean_cmd ("auto-hw", no_class,
16606 &automatic_hardware_breakpoints, _("\
16607Set automatic usage of hardware breakpoints."), _("\
16608Show automatic usage of hardware breakpoints."), _("\
16609If set, the debugger will automatically use hardware breakpoints for\n\
16610breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
16611a warning will be emitted for such breakpoints."),
16612 NULL,
16613 show_automatic_hardware_breakpoints,
16614 &breakpoint_set_cmdlist,
16615 &breakpoint_show_cmdlist);
16616
16617 add_setshow_boolean_cmd ("always-inserted", class_support,
16618 &always_inserted_mode, _("\
16619Set mode for inserting breakpoints."), _("\
16620Show mode for inserting breakpoints."), _("\
16621When this mode is on, breakpoints are inserted immediately as soon as\n\
16622they're created, kept inserted even when execution stops, and removed\n\
16623only when the user deletes them. When this mode is off (the default),\n\
16624breakpoints are inserted only when execution continues, and removed\n\
16625when execution stops."),
16626 NULL,
16627 &show_always_inserted_mode,
16628 &breakpoint_set_cmdlist,
16629 &breakpoint_show_cmdlist);
16630
16631 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
16632 condition_evaluation_enums,
16633 &condition_evaluation_mode_1, _("\
16634Set mode of breakpoint condition evaluation."), _("\
16635Show mode of breakpoint condition evaluation."), _("\
16636When this is set to \"host\", breakpoint conditions will be\n\
16637evaluated on the host's side by GDB. When it is set to \"target\",\n\
16638breakpoint conditions will be downloaded to the target (if the target\n\
16639supports such feature) and conditions will be evaluated on the target's side.\n\
16640If this is set to \"auto\" (default), this will be automatically set to\n\
16641\"target\" if it supports condition evaluation, otherwise it will\n\
16642be set to \"gdb\""),
16643 &set_condition_evaluation_mode,
16644 &show_condition_evaluation_mode,
16645 &breakpoint_set_cmdlist,
16646 &breakpoint_show_cmdlist);
16647
16648 add_com ("break-range", class_breakpoint, break_range_command, _("\
16649Set a breakpoint for an address range.\n\
16650break-range START-LOCATION, END-LOCATION\n\
16651where START-LOCATION and END-LOCATION can be one of the following:\n\
16652 LINENUM, for that line in the current file,\n\
16653 FILE:LINENUM, for that line in that file,\n\
16654 +OFFSET, for that number of lines after the current line\n\
16655 or the start of the range\n\
16656 FUNCTION, for the first line in that function,\n\
16657 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16658 *ADDRESS, for the instruction at that address.\n\
16659\n\
16660The breakpoint will stop execution of the inferior whenever it executes\n\
16661an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16662range (including START-LOCATION and END-LOCATION)."));
16663
16664 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
16665Set a dynamic printf at specified location.\n\
16666dprintf location,format string,arg1,arg2,...\n\
16667location may be a linespec, explicit, or address location.\n"
16668"\n" LOCATION_HELP_STRING));
16669 set_cmd_completer (c, location_completer);
16670
16671 add_setshow_enum_cmd ("dprintf-style", class_support,
16672 dprintf_style_enums, &dprintf_style, _("\
16673Set the style of usage for dynamic printf."), _("\
16674Show the style of usage for dynamic printf."), _("\
16675This setting chooses how GDB will do a dynamic printf.\n\
16676If the value is \"gdb\", then the printing is done by GDB to its own\n\
16677console, as with the \"printf\" command.\n\
16678If the value is \"call\", the print is done by calling a function in your\n\
16679program; by default printf(), but you can choose a different function or\n\
16680output stream by setting dprintf-function and dprintf-channel."),
16681 update_dprintf_commands, NULL,
16682 &setlist, &showlist);
16683
16684 dprintf_function = xstrdup ("printf");
16685 add_setshow_string_cmd ("dprintf-function", class_support,
16686 &dprintf_function, _("\
16687Set the function to use for dynamic printf"), _("\
16688Show the function to use for dynamic printf"), NULL,
16689 update_dprintf_commands, NULL,
16690 &setlist, &showlist);
16691
16692 dprintf_channel = xstrdup ("");
16693 add_setshow_string_cmd ("dprintf-channel", class_support,
16694 &dprintf_channel, _("\
16695Set the channel to use for dynamic printf"), _("\
16696Show the channel to use for dynamic printf"), NULL,
16697 update_dprintf_commands, NULL,
16698 &setlist, &showlist);
16699
16700 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16701 &disconnected_dprintf, _("\
16702Set whether dprintf continues after GDB disconnects."), _("\
16703Show whether dprintf continues after GDB disconnects."), _("\
16704Use this to let dprintf commands continue to hit and produce output\n\
16705even if GDB disconnects or detaches from the target."),
16706 NULL,
16707 NULL,
16708 &setlist, &showlist);
16709
16710 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16711agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16712(target agent only) This is useful for formatted output in user-defined commands."));
16713
16714 automatic_hardware_breakpoints = 1;
16715
16716 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
16717 observer_attach_thread_exit (remove_threaded_breakpoints);
16718}
This page took 0.080303 seconds and 4 git commands to generate.